ConfluenceLoaderOptions
Auto-generated API reference for ConfluenceLoaderOptions.
Interface: ConfluenceLoaderOptions
Defined in: loaders.ts:122
Document loaders: small async functions that return
InputDocument[] ready to pipe into RAG.ingest. Every loader
is framework-agnostic and accepts a custom fetch for tests.
#Extends
#Properties
#authorization?
optionalauthorization?:string
Defined in: loaders.ts:126
#baseUrl
baseUrl:
string
Defined in: loaders.ts:123
#fetch?
optionalfetch?: {(input,init?):Promise<Response>; (input,init?):Promise<Response>; }
Defined in: loaders.ts:10
#Call Signature
(
input,init?):Promise<Response>
Parameters
input
RequestInfo | URL
init?
RequestInit
Returns
Promise<Response>
#Call Signature
(
input,init?):Promise<Response>
Parameters
input
string | Request | URL
init?
RequestInit
Returns
Promise<Response>
#Inherited from
#token?
optionaltoken?:string
Defined in: loaders.ts:125
Basic auth token <email:api-token> in base64, OR pass authorization header directly.