You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: admin-api-lib/src/admin_api_lib/extractor_api_client/openapi_client/models/confluence_parameters.py
+47-19Lines changed: 47 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -25,18 +25,40 @@
25
25
fromtypingimportOptional, Set
26
26
fromtyping_extensionsimportSelf
27
27
28
+
28
29
classConfluenceParameters(BaseModel):
29
30
""" """# noqa: E501
30
31
31
32
url: StrictStr=Field(description="url of the confluence space.")
32
33
token: StrictStr=Field(description="api key to access confluence.")
33
34
space_key: StrictStr=Field(description="the space key of the confluence pages.")
34
-
include_attachments: Optional[StrictBool] =Field(default=False, description="whether to include file attachments (e.g., images, documents) in the parsed content. Default is `false`.")
35
-
keep_markdown_format: Optional[StrictBool] =Field(default=True, description="whether to preserve markdown formatting in the output. Default is `true`.")
36
-
keep_newlines: Optional[StrictBool] =Field(default=True, description="whether to retain newline characters in the output for better readability. Default is `true`.")
37
-
document_name: StrictStr=Field(description="The name that will be used to store the confluence db in the key value db and the vectordatabase (metadata.document).")
38
-
confluence_kwargs: Optional[List[KeyValuePair]] =Field(default=None, description="Additional kwargs like verify_ssl")
0 commit comments