@gooddata/api-client-tiger 11.32.0-alpha.0 → 11.32.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -132,6 +132,7 @@ export interface AiConversationResponse {
132
132
  * Last activity timestamp (ISO-8601 UTC).
133
133
  */
134
134
  'lastActivityAt': string;
135
+ 'agentId'?: string | null;
135
136
  }
136
137
  export interface AiConversationResponseList {
137
138
  /**
@@ -957,11 +958,13 @@ export declare function ConversationsAiAxiosParamCreator_GetConversationApiV1AiW
957
958
  * @summary Get Conversations
958
959
  * @param {string} workspaceId
959
960
  * @param {boolean} [isPreview]
961
+ * @param {number} [page]
962
+ * @param {number} [size]
960
963
  * @param {*} [options] Override http request option.
961
964
  * @param {Configuration} [configuration] Optional configuration.
962
965
  * @throws {RequiredError}
963
966
  */
964
- export declare function ConversationsAiAxiosParamCreator_GetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(workspaceId: string, isPreview?: boolean, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
967
+ export declare function ConversationsAiAxiosParamCreator_GetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(workspaceId: string, isPreview?: boolean, page?: number, size?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
965
968
  /**
966
969
  *
967
970
  * @summary Post Conversations
@@ -1115,6 +1118,18 @@ export interface ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChat
1115
1118
  * @memberof ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet
1116
1119
  */
1117
1120
  readonly isPreview?: boolean;
1121
+ /**
1122
+ *
1123
+ * @type {number}
1124
+ * @memberof ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet
1125
+ */
1126
+ readonly page?: number;
1127
+ /**
1128
+ *
1129
+ * @type {number}
1130
+ * @memberof ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet
1131
+ */
1132
+ readonly size?: number;
1118
1133
  }
1119
1134
  /**
1120
1135
  * Request parameters for postConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost operation in ConversationsAi.
@@ -1264,6 +1279,17 @@ export declare class ItemsAi extends BaseAPI implements ItemsAiInterface {
1264
1279
  * @throws {RequiredError}
1265
1280
  */
1266
1281
  export declare function KnowledgeAiAxiosParamCreator_CreateDocument(workspaceId: string, file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1282
+ /**
1283
+ * Upload a new org-scoped knowledge document.
1284
+ * @summary Upload Document Org
1285
+ * @param {File} file
1286
+ * @param {string} [title]
1287
+ * @param {Array<string>} [scopes]
1288
+ * @param {*} [options] Override http request option.
1289
+ * @param {Configuration} [configuration] Optional configuration.
1290
+ * @throws {RequiredError}
1291
+ */
1292
+ export declare function KnowledgeAiAxiosParamCreator_CreateOrgDocument(file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1267
1293
  /**
1268
1294
  * Delete a knowledge document and all its chunks.
1269
1295
  * @summary Delete Document
@@ -1274,6 +1300,15 @@ export declare function KnowledgeAiAxiosParamCreator_CreateDocument(workspaceId:
1274
1300
  * @throws {RequiredError}
1275
1301
  */
1276
1302
  export declare function KnowledgeAiAxiosParamCreator_DeleteDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1303
+ /**
1304
+ * Delete an org-scoped knowledge document and all its chunks.
1305
+ * @summary Delete Document Org
1306
+ * @param {string} documentId
1307
+ * @param {*} [options] Override http request option.
1308
+ * @param {Configuration} [configuration] Optional configuration.
1309
+ * @throws {RequiredError}
1310
+ */
1311
+ export declare function KnowledgeAiAxiosParamCreator_DeleteOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1277
1312
  /**
1278
1313
  * Download a knowledge document\'s raw file.
1279
1314
  * @summary Download Document
@@ -1284,6 +1319,15 @@ export declare function KnowledgeAiAxiosParamCreator_DeleteDocument(workspaceId:
1284
1319
  * @throws {RequiredError}
1285
1320
  */
1286
1321
  export declare function KnowledgeAiAxiosParamCreator_DownloadDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1322
+ /**
1323
+ * Download an org-scoped knowledge document\'s raw file.
1324
+ * @summary Download Document Org
1325
+ * @param {string} documentId
1326
+ * @param {*} [options] Override http request option.
1327
+ * @param {Configuration} [configuration] Optional configuration.
1328
+ * @throws {RequiredError}
1329
+ */
1330
+ export declare function KnowledgeAiAxiosParamCreator_DownloadOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1287
1331
  /**
1288
1332
  * Get a single knowledge document\'s metadata.
1289
1333
  * @summary Get Document
@@ -1294,6 +1338,15 @@ export declare function KnowledgeAiAxiosParamCreator_DownloadDocument(workspaceI
1294
1338
  * @throws {RequiredError}
1295
1339
  */
1296
1340
  export declare function KnowledgeAiAxiosParamCreator_GetDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1341
+ /**
1342
+ * Get a single org-scoped knowledge document\'s metadata.
1343
+ * @summary Get Document Org
1344
+ * @param {string} documentId
1345
+ * @param {*} [options] Override http request option.
1346
+ * @param {Configuration} [configuration] Optional configuration.
1347
+ * @throws {RequiredError}
1348
+ */
1349
+ export declare function KnowledgeAiAxiosParamCreator_GetOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1297
1350
  /**
1298
1351
  * List knowledge documents accessible from the workspace.
1299
1352
  * @summary List Documents
@@ -1309,6 +1362,20 @@ export declare function KnowledgeAiAxiosParamCreator_GetDocument(workspaceId: st
1309
1362
  * @throws {RequiredError}
1310
1363
  */
1311
1364
  export declare function KnowledgeAiAxiosParamCreator_ListDocuments(workspaceId: string, scopes?: Array<string>, size?: number, pageToken?: string, metaInclude?: string, state?: 'enabled' | 'disabled', query?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1365
+ /**
1366
+ * List org-scoped knowledge documents.
1367
+ * @summary List Documents Org
1368
+ * @param {Array<string>} [scopes]
1369
+ * @param {number} [size]
1370
+ * @param {string} [pageToken]
1371
+ * @param {string} [metaInclude]
1372
+ * @param {'enabled' | 'disabled'} [state]
1373
+ * @param {string} [query]
1374
+ * @param {*} [options] Override http request option.
1375
+ * @param {Configuration} [configuration] Optional configuration.
1376
+ * @throws {RequiredError}
1377
+ */
1378
+ export declare function KnowledgeAiAxiosParamCreator_ListOrgDocuments(scopes?: Array<string>, size?: number, pageToken?: string, metaInclude?: string, state?: 'enabled' | 'disabled', query?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1312
1379
  /**
1313
1380
  * Patch a knowledge document\'s metadata without re-uploading content.
1314
1381
  * @summary Patch Document
@@ -1320,6 +1387,16 @@ export declare function KnowledgeAiAxiosParamCreator_ListDocuments(workspaceId:
1320
1387
  * @throws {RequiredError}
1321
1388
  */
1322
1389
  export declare function KnowledgeAiAxiosParamCreator_PatchDocument(workspaceId: string, documentId: string, aiPatchDocumentRequest: AiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1390
+ /**
1391
+ * Patch an org-scoped knowledge document\'s metadata.
1392
+ * @summary Patch Document Org
1393
+ * @param {string} documentId
1394
+ * @param {AiPatchDocumentRequest} aiPatchDocumentRequest
1395
+ * @param {*} [options] Override http request option.
1396
+ * @param {Configuration} [configuration] Optional configuration.
1397
+ * @throws {RequiredError}
1398
+ */
1399
+ export declare function KnowledgeAiAxiosParamCreator_PatchOrgDocument(documentId: string, aiPatchDocumentRequest: AiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1323
1400
  /**
1324
1401
  * Search the knowledge base using semantic similarity.
1325
1402
  * @summary Search Documents
@@ -1333,6 +1410,18 @@ export declare function KnowledgeAiAxiosParamCreator_PatchDocument(workspaceId:
1333
1410
  * @throws {RequiredError}
1334
1411
  */
1335
1412
  export declare function KnowledgeAiAxiosParamCreator_SearchKnowledge(workspaceId: string, query: string, limit?: number, minScore?: number, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1413
+ /**
1414
+ * Search org-scoped knowledge documents using semantic similarity.
1415
+ * @summary Search Documents Org
1416
+ * @param {string} query
1417
+ * @param {number} [limit]
1418
+ * @param {number} [minScore]
1419
+ * @param {Array<string>} [scopes]
1420
+ * @param {*} [options] Override http request option.
1421
+ * @param {Configuration} [configuration] Optional configuration.
1422
+ * @throws {RequiredError}
1423
+ */
1424
+ export declare function KnowledgeAiAxiosParamCreator_SearchOrgKnowledge(query: string, limit?: number, minScore?: number, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1336
1425
  /**
1337
1426
  * Upload or replace a knowledge document.
1338
1427
  * @summary Upsert Document
@@ -1345,6 +1434,17 @@ export declare function KnowledgeAiAxiosParamCreator_SearchKnowledge(workspaceId
1345
1434
  * @throws {RequiredError}
1346
1435
  */
1347
1436
  export declare function KnowledgeAiAxiosParamCreator_UpsertDocument(workspaceId: string, file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1437
+ /**
1438
+ * Upload or replace an org-scoped knowledge document.
1439
+ * @summary Upsert Document Org
1440
+ * @param {File} file
1441
+ * @param {string} [title]
1442
+ * @param {Array<string>} [scopes]
1443
+ * @param {*} [options] Override http request option.
1444
+ * @param {Configuration} [configuration] Optional configuration.
1445
+ * @throws {RequiredError}
1446
+ */
1447
+ export declare function KnowledgeAiAxiosParamCreator_UpsertOrgDocument(file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
1348
1448
  /**
1349
1449
  * Upload a new knowledge document. Returns 409 if filename already exists.
1350
1450
  * @summary Upload Document
@@ -1356,6 +1456,17 @@ export declare function KnowledgeAiAxiosParamCreator_UpsertDocument(workspaceId:
1356
1456
  * @throws {RequiredError}
1357
1457
  */
1358
1458
  export declare function KnowledgeAi_CreateDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiCreateDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiUploadDocumentResponse>;
1459
+ /**
1460
+ * Upload a new org-scoped knowledge document.
1461
+ * @summary Upload Document Org
1462
+ * @param {AxiosInstance} axios Axios instance.
1463
+ * @param {string} basePath Base path.
1464
+ * @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
1465
+ * @param {*} [options] Override http request option.
1466
+ * @param {Configuration} [configuration] Optional configuration.
1467
+ * @throws {RequiredError}
1468
+ */
1469
+ export declare function KnowledgeAi_CreateOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiUploadDocumentResponse>;
1359
1470
  /**
1360
1471
  * Delete a knowledge document and all its chunks.
1361
1472
  * @summary Delete Document
@@ -1367,6 +1478,17 @@ export declare function KnowledgeAi_CreateDocument(axios: AxiosInstance, basePat
1367
1478
  * @throws {RequiredError}
1368
1479
  */
1369
1480
  export declare function KnowledgeAi_DeleteDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDeleteDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiDeleteDocumentResponse>;
1481
+ /**
1482
+ * Delete an org-scoped knowledge document and all its chunks.
1483
+ * @summary Delete Document Org
1484
+ * @param {AxiosInstance} axios Axios instance.
1485
+ * @param {string} basePath Base path.
1486
+ * @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
1487
+ * @param {*} [options] Override http request option.
1488
+ * @param {Configuration} [configuration] Optional configuration.
1489
+ * @throws {RequiredError}
1490
+ */
1491
+ export declare function KnowledgeAi_DeleteOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiDeleteDocumentResponse>;
1370
1492
  /**
1371
1493
  * Download a knowledge document\'s raw file.
1372
1494
  * @summary Download Document
@@ -1378,6 +1500,17 @@ export declare function KnowledgeAi_DeleteDocument(axios: AxiosInstance, basePat
1378
1500
  * @throws {RequiredError}
1379
1501
  */
1380
1502
  export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
1503
+ /**
1504
+ * Download an org-scoped knowledge document\'s raw file.
1505
+ * @summary Download Document Org
1506
+ * @param {AxiosInstance} axios Axios instance.
1507
+ * @param {string} basePath Base path.
1508
+ * @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
1509
+ * @param {*} [options] Override http request option.
1510
+ * @param {Configuration} [configuration] Optional configuration.
1511
+ * @throws {RequiredError}
1512
+ */
1513
+ export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
1381
1514
  /**
1382
1515
  * Get a single knowledge document\'s metadata.
1383
1516
  * @summary Get Document
@@ -1389,6 +1522,17 @@ export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, baseP
1389
1522
  * @throws {RequiredError}
1390
1523
  */
1391
1524
  export declare function KnowledgeAi_GetDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiGetDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiDocumentMetadataResponse>;
1525
+ /**
1526
+ * Get a single org-scoped knowledge document\'s metadata.
1527
+ * @summary Get Document Org
1528
+ * @param {AxiosInstance} axios Axios instance.
1529
+ * @param {string} basePath Base path.
1530
+ * @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
1531
+ * @param {*} [options] Override http request option.
1532
+ * @param {Configuration} [configuration] Optional configuration.
1533
+ * @throws {RequiredError}
1534
+ */
1535
+ export declare function KnowledgeAi_GetOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiDocumentMetadataResponse>;
1392
1536
  /**
1393
1537
  * List knowledge documents accessible from the workspace.
1394
1538
  * @summary List Documents
@@ -1400,6 +1544,17 @@ export declare function KnowledgeAi_GetDocument(axios: AxiosInstance, basePath:
1400
1544
  * @throws {RequiredError}
1401
1545
  */
1402
1546
  export declare function KnowledgeAi_ListDocuments(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiListDocumentsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiListDocumentsResponse>;
1547
+ /**
1548
+ * List org-scoped knowledge documents.
1549
+ * @summary List Documents Org
1550
+ * @param {AxiosInstance} axios Axios instance.
1551
+ * @param {string} basePath Base path.
1552
+ * @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
1553
+ * @param {*} [options] Override http request option.
1554
+ * @param {Configuration} [configuration] Optional configuration.
1555
+ * @throws {RequiredError}
1556
+ */
1557
+ export declare function KnowledgeAi_ListOrgDocuments(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiListDocumentsResponse>;
1403
1558
  /**
1404
1559
  * Patch a knowledge document\'s metadata without re-uploading content.
1405
1560
  * @summary Patch Document
@@ -1411,6 +1566,17 @@ export declare function KnowledgeAi_ListDocuments(axios: AxiosInstance, basePath
1411
1566
  * @throws {RequiredError}
1412
1567
  */
1413
1568
  export declare function KnowledgeAi_PatchDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiDocumentMetadataResponse>;
1569
+ /**
1570
+ * Patch an org-scoped knowledge document\'s metadata.
1571
+ * @summary Patch Document Org
1572
+ * @param {AxiosInstance} axios Axios instance.
1573
+ * @param {string} basePath Base path.
1574
+ * @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
1575
+ * @param {*} [options] Override http request option.
1576
+ * @param {Configuration} [configuration] Optional configuration.
1577
+ * @throws {RequiredError}
1578
+ */
1579
+ export declare function KnowledgeAi_PatchOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiDocumentMetadataResponse>;
1414
1580
  /**
1415
1581
  * Search the knowledge base using semantic similarity.
1416
1582
  * @summary Search Documents
@@ -1422,6 +1588,17 @@ export declare function KnowledgeAi_PatchDocument(axios: AxiosInstance, basePath
1422
1588
  * @throws {RequiredError}
1423
1589
  */
1424
1590
  export declare function KnowledgeAi_SearchKnowledge(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiSearchKnowledgeRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiSearchDocumentsResponse>;
1591
+ /**
1592
+ * Search org-scoped knowledge documents using semantic similarity.
1593
+ * @summary Search Documents Org
1594
+ * @param {AxiosInstance} axios Axios instance.
1595
+ * @param {string} basePath Base path.
1596
+ * @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
1597
+ * @param {*} [options] Override http request option.
1598
+ * @param {Configuration} [configuration] Optional configuration.
1599
+ * @throws {RequiredError}
1600
+ */
1601
+ export declare function KnowledgeAi_SearchOrgKnowledge(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiSearchDocumentsResponse>;
1425
1602
  /**
1426
1603
  * Upload or replace a knowledge document.
1427
1604
  * @summary Upsert Document
@@ -1433,6 +1610,17 @@ export declare function KnowledgeAi_SearchKnowledge(axios: AxiosInstance, basePa
1433
1610
  * @throws {RequiredError}
1434
1611
  */
1435
1612
  export declare function KnowledgeAi_UpsertDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiUpsertDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiUploadDocumentResponse>;
1613
+ /**
1614
+ * Upload or replace an org-scoped knowledge document.
1615
+ * @summary Upsert Document Org
1616
+ * @param {AxiosInstance} axios Axios instance.
1617
+ * @param {string} basePath Base path.
1618
+ * @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
1619
+ * @param {*} [options] Override http request option.
1620
+ * @param {Configuration} [configuration] Optional configuration.
1621
+ * @throws {RequiredError}
1622
+ */
1623
+ export declare function KnowledgeAi_UpsertOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiUploadDocumentResponse>;
1436
1624
  /**
1437
1625
  * KnowledgeAi - interface
1438
1626
  * @export
@@ -1448,6 +1636,15 @@ export interface KnowledgeAiInterface {
1448
1636
  * @memberof KnowledgeAiInterface
1449
1637
  */
1450
1638
  createDocument(requestParameters: KnowledgeAiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
1639
+ /**
1640
+ * Upload a new org-scoped knowledge document.
1641
+ * @summary Upload Document Org
1642
+ * @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
1643
+ * @param {*} [options] Override http request option.
1644
+ * @throws {RequiredError}
1645
+ * @memberof KnowledgeAiInterface
1646
+ */
1647
+ createOrgDocument(requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
1451
1648
  /**
1452
1649
  * Delete a knowledge document and all its chunks.
1453
1650
  * @summary Delete Document
@@ -1457,6 +1654,15 @@ export interface KnowledgeAiInterface {
1457
1654
  * @memberof KnowledgeAiInterface
1458
1655
  */
1459
1656
  deleteDocument(requestParameters: KnowledgeAiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
1657
+ /**
1658
+ * Delete an org-scoped knowledge document and all its chunks.
1659
+ * @summary Delete Document Org
1660
+ * @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
1661
+ * @param {*} [options] Override http request option.
1662
+ * @throws {RequiredError}
1663
+ * @memberof KnowledgeAiInterface
1664
+ */
1665
+ deleteOrgDocument(requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
1460
1666
  /**
1461
1667
  * Download a knowledge document\'s raw file.
1462
1668
  * @summary Download Document
@@ -1466,6 +1672,15 @@ export interface KnowledgeAiInterface {
1466
1672
  * @memberof KnowledgeAiInterface
1467
1673
  */
1468
1674
  downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
1675
+ /**
1676
+ * Download an org-scoped knowledge document\'s raw file.
1677
+ * @summary Download Document Org
1678
+ * @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
1679
+ * @param {*} [options] Override http request option.
1680
+ * @throws {RequiredError}
1681
+ * @memberof KnowledgeAiInterface
1682
+ */
1683
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
1469
1684
  /**
1470
1685
  * Get a single knowledge document\'s metadata.
1471
1686
  * @summary Get Document
@@ -1475,6 +1690,15 @@ export interface KnowledgeAiInterface {
1475
1690
  * @memberof KnowledgeAiInterface
1476
1691
  */
1477
1692
  getDocument(requestParameters: KnowledgeAiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
1693
+ /**
1694
+ * Get a single org-scoped knowledge document\'s metadata.
1695
+ * @summary Get Document Org
1696
+ * @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
1697
+ * @param {*} [options] Override http request option.
1698
+ * @throws {RequiredError}
1699
+ * @memberof KnowledgeAiInterface
1700
+ */
1701
+ getOrgDocument(requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
1478
1702
  /**
1479
1703
  * List knowledge documents accessible from the workspace.
1480
1704
  * @summary List Documents
@@ -1484,6 +1708,15 @@ export interface KnowledgeAiInterface {
1484
1708
  * @memberof KnowledgeAiInterface
1485
1709
  */
1486
1710
  listDocuments(requestParameters: KnowledgeAiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
1711
+ /**
1712
+ * List org-scoped knowledge documents.
1713
+ * @summary List Documents Org
1714
+ * @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
1715
+ * @param {*} [options] Override http request option.
1716
+ * @throws {RequiredError}
1717
+ * @memberof KnowledgeAiInterface
1718
+ */
1719
+ listOrgDocuments(requestParameters: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
1487
1720
  /**
1488
1721
  * Patch a knowledge document\'s metadata without re-uploading content.
1489
1722
  * @summary Patch Document
@@ -1493,6 +1726,15 @@ export interface KnowledgeAiInterface {
1493
1726
  * @memberof KnowledgeAiInterface
1494
1727
  */
1495
1728
  patchDocument(requestParameters: KnowledgeAiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
1729
+ /**
1730
+ * Patch an org-scoped knowledge document\'s metadata.
1731
+ * @summary Patch Document Org
1732
+ * @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
1733
+ * @param {*} [options] Override http request option.
1734
+ * @throws {RequiredError}
1735
+ * @memberof KnowledgeAiInterface
1736
+ */
1737
+ patchOrgDocument(requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
1496
1738
  /**
1497
1739
  * Search the knowledge base using semantic similarity.
1498
1740
  * @summary Search Documents
@@ -1502,6 +1744,15 @@ export interface KnowledgeAiInterface {
1502
1744
  * @memberof KnowledgeAiInterface
1503
1745
  */
1504
1746
  searchKnowledge(requestParameters: KnowledgeAiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
1747
+ /**
1748
+ * Search org-scoped knowledge documents using semantic similarity.
1749
+ * @summary Search Documents Org
1750
+ * @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
1751
+ * @param {*} [options] Override http request option.
1752
+ * @throws {RequiredError}
1753
+ * @memberof KnowledgeAiInterface
1754
+ */
1755
+ searchOrgKnowledge(requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
1505
1756
  /**
1506
1757
  * Upload or replace a knowledge document.
1507
1758
  * @summary Upsert Document
@@ -1511,6 +1762,15 @@ export interface KnowledgeAiInterface {
1511
1762
  * @memberof KnowledgeAiInterface
1512
1763
  */
1513
1764
  upsertDocument(requestParameters: KnowledgeAiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
1765
+ /**
1766
+ * Upload or replace an org-scoped knowledge document.
1767
+ * @summary Upsert Document Org
1768
+ * @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
1769
+ * @param {*} [options] Override http request option.
1770
+ * @throws {RequiredError}
1771
+ * @memberof KnowledgeAiInterface
1772
+ */
1773
+ upsertOrgDocument(requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
1514
1774
  }
1515
1775
  /**
1516
1776
  * Request parameters for createDocument operation in KnowledgeAi.
@@ -1543,6 +1803,31 @@ export interface KnowledgeAiCreateDocumentRequest {
1543
1803
  */
1544
1804
  readonly scopes?: Array<string>;
1545
1805
  }
1806
+ /**
1807
+ * Request parameters for createOrgDocument operation in KnowledgeAi.
1808
+ * @export
1809
+ * @interface KnowledgeAiCreateOrgDocumentRequest
1810
+ */
1811
+ export interface KnowledgeAiCreateOrgDocumentRequest {
1812
+ /**
1813
+ *
1814
+ * @type {File}
1815
+ * @memberof KnowledgeAiCreateOrgDocument
1816
+ */
1817
+ readonly file: File;
1818
+ /**
1819
+ *
1820
+ * @type {string}
1821
+ * @memberof KnowledgeAiCreateOrgDocument
1822
+ */
1823
+ readonly title?: string;
1824
+ /**
1825
+ *
1826
+ * @type {Array<string>}
1827
+ * @memberof KnowledgeAiCreateOrgDocument
1828
+ */
1829
+ readonly scopes?: Array<string>;
1830
+ }
1546
1831
  /**
1547
1832
  * Request parameters for deleteDocument operation in KnowledgeAi.
1548
1833
  * @export
@@ -1562,6 +1847,19 @@ export interface KnowledgeAiDeleteDocumentRequest {
1562
1847
  */
1563
1848
  readonly documentId: string;
1564
1849
  }
1850
+ /**
1851
+ * Request parameters for deleteOrgDocument operation in KnowledgeAi.
1852
+ * @export
1853
+ * @interface KnowledgeAiDeleteOrgDocumentRequest
1854
+ */
1855
+ export interface KnowledgeAiDeleteOrgDocumentRequest {
1856
+ /**
1857
+ *
1858
+ * @type {string}
1859
+ * @memberof KnowledgeAiDeleteOrgDocument
1860
+ */
1861
+ readonly documentId: string;
1862
+ }
1565
1863
  /**
1566
1864
  * Request parameters for downloadDocument operation in KnowledgeAi.
1567
1865
  * @export
@@ -1581,6 +1879,19 @@ export interface KnowledgeAiDownloadDocumentRequest {
1581
1879
  */
1582
1880
  readonly documentId: string;
1583
1881
  }
1882
+ /**
1883
+ * Request parameters for downloadOrgDocument operation in KnowledgeAi.
1884
+ * @export
1885
+ * @interface KnowledgeAiDownloadOrgDocumentRequest
1886
+ */
1887
+ export interface KnowledgeAiDownloadOrgDocumentRequest {
1888
+ /**
1889
+ *
1890
+ * @type {string}
1891
+ * @memberof KnowledgeAiDownloadOrgDocument
1892
+ */
1893
+ readonly documentId: string;
1894
+ }
1584
1895
  /**
1585
1896
  * Request parameters for getDocument operation in KnowledgeAi.
1586
1897
  * @export
@@ -1600,6 +1911,19 @@ export interface KnowledgeAiGetDocumentRequest {
1600
1911
  */
1601
1912
  readonly documentId: string;
1602
1913
  }
1914
+ /**
1915
+ * Request parameters for getOrgDocument operation in KnowledgeAi.
1916
+ * @export
1917
+ * @interface KnowledgeAiGetOrgDocumentRequest
1918
+ */
1919
+ export interface KnowledgeAiGetOrgDocumentRequest {
1920
+ /**
1921
+ *
1922
+ * @type {string}
1923
+ * @memberof KnowledgeAiGetOrgDocument
1924
+ */
1925
+ readonly documentId: string;
1926
+ }
1603
1927
  /**
1604
1928
  * Request parameters for listDocuments operation in KnowledgeAi.
1605
1929
  * @export
@@ -1649,6 +1973,49 @@ export interface KnowledgeAiListDocumentsRequest {
1649
1973
  */
1650
1974
  readonly query?: string;
1651
1975
  }
1976
+ /**
1977
+ * Request parameters for listOrgDocuments operation in KnowledgeAi.
1978
+ * @export
1979
+ * @interface KnowledgeAiListOrgDocumentsRequest
1980
+ */
1981
+ export interface KnowledgeAiListOrgDocumentsRequest {
1982
+ /**
1983
+ *
1984
+ * @type {Array<string>}
1985
+ * @memberof KnowledgeAiListOrgDocuments
1986
+ */
1987
+ readonly scopes?: Array<string>;
1988
+ /**
1989
+ *
1990
+ * @type {number}
1991
+ * @memberof KnowledgeAiListOrgDocuments
1992
+ */
1993
+ readonly size?: number;
1994
+ /**
1995
+ *
1996
+ * @type {string}
1997
+ * @memberof KnowledgeAiListOrgDocuments
1998
+ */
1999
+ readonly pageToken?: string;
2000
+ /**
2001
+ *
2002
+ * @type {string}
2003
+ * @memberof KnowledgeAiListOrgDocuments
2004
+ */
2005
+ readonly metaInclude?: string;
2006
+ /**
2007
+ *
2008
+ * @type {'enabled' | 'disabled'}
2009
+ * @memberof KnowledgeAiListOrgDocuments
2010
+ */
2011
+ readonly state?: 'enabled' | 'disabled';
2012
+ /**
2013
+ *
2014
+ * @type {string}
2015
+ * @memberof KnowledgeAiListOrgDocuments
2016
+ */
2017
+ readonly query?: string;
2018
+ }
1652
2019
  /**
1653
2020
  * Request parameters for patchDocument operation in KnowledgeAi.
1654
2021
  * @export
@@ -1674,6 +2041,25 @@ export interface KnowledgeAiPatchDocumentRequest {
1674
2041
  */
1675
2042
  readonly aiPatchDocumentRequest: AiPatchDocumentRequest;
1676
2043
  }
2044
+ /**
2045
+ * Request parameters for patchOrgDocument operation in KnowledgeAi.
2046
+ * @export
2047
+ * @interface KnowledgeAiPatchOrgDocumentRequest
2048
+ */
2049
+ export interface KnowledgeAiPatchOrgDocumentRequest {
2050
+ /**
2051
+ *
2052
+ * @type {string}
2053
+ * @memberof KnowledgeAiPatchOrgDocument
2054
+ */
2055
+ readonly documentId: string;
2056
+ /**
2057
+ *
2058
+ * @type {AiPatchDocumentRequest}
2059
+ * @memberof KnowledgeAiPatchOrgDocument
2060
+ */
2061
+ readonly aiPatchDocumentRequest: AiPatchDocumentRequest;
2062
+ }
1677
2063
  /**
1678
2064
  * Request parameters for searchKnowledge operation in KnowledgeAi.
1679
2065
  * @export
@@ -1711,6 +2097,37 @@ export interface KnowledgeAiSearchKnowledgeRequest {
1711
2097
  */
1712
2098
  readonly scopes?: Array<string>;
1713
2099
  }
2100
+ /**
2101
+ * Request parameters for searchOrgKnowledge operation in KnowledgeAi.
2102
+ * @export
2103
+ * @interface KnowledgeAiSearchOrgKnowledgeRequest
2104
+ */
2105
+ export interface KnowledgeAiSearchOrgKnowledgeRequest {
2106
+ /**
2107
+ *
2108
+ * @type {string}
2109
+ * @memberof KnowledgeAiSearchOrgKnowledge
2110
+ */
2111
+ readonly query: string;
2112
+ /**
2113
+ *
2114
+ * @type {number}
2115
+ * @memberof KnowledgeAiSearchOrgKnowledge
2116
+ */
2117
+ readonly limit?: number;
2118
+ /**
2119
+ *
2120
+ * @type {number}
2121
+ * @memberof KnowledgeAiSearchOrgKnowledge
2122
+ */
2123
+ readonly minScore?: number;
2124
+ /**
2125
+ *
2126
+ * @type {Array<string>}
2127
+ * @memberof KnowledgeAiSearchOrgKnowledge
2128
+ */
2129
+ readonly scopes?: Array<string>;
2130
+ }
1714
2131
  /**
1715
2132
  * Request parameters for upsertDocument operation in KnowledgeAi.
1716
2133
  * @export
@@ -1742,6 +2159,31 @@ export interface KnowledgeAiUpsertDocumentRequest {
1742
2159
  */
1743
2160
  readonly scopes?: Array<string>;
1744
2161
  }
2162
+ /**
2163
+ * Request parameters for upsertOrgDocument operation in KnowledgeAi.
2164
+ * @export
2165
+ * @interface KnowledgeAiUpsertOrgDocumentRequest
2166
+ */
2167
+ export interface KnowledgeAiUpsertOrgDocumentRequest {
2168
+ /**
2169
+ *
2170
+ * @type {File}
2171
+ * @memberof KnowledgeAiUpsertOrgDocument
2172
+ */
2173
+ readonly file: File;
2174
+ /**
2175
+ *
2176
+ * @type {string}
2177
+ * @memberof KnowledgeAiUpsertOrgDocument
2178
+ */
2179
+ readonly title?: string;
2180
+ /**
2181
+ *
2182
+ * @type {Array<string>}
2183
+ * @memberof KnowledgeAiUpsertOrgDocument
2184
+ */
2185
+ readonly scopes?: Array<string>;
2186
+ }
1745
2187
  /**
1746
2188
  * KnowledgeAi - object-oriented interface
1747
2189
  * @export
@@ -1758,6 +2200,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
1758
2200
  * @memberof KnowledgeAi
1759
2201
  */
1760
2202
  createDocument(requestParameters: KnowledgeAiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
2203
+ /**
2204
+ * Upload a new org-scoped knowledge document.
2205
+ * @summary Upload Document Org
2206
+ * @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
2207
+ * @param {*} [options] Override http request option.
2208
+ * @throws {RequiredError}
2209
+ * @memberof KnowledgeAi
2210
+ */
2211
+ createOrgDocument(requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
1761
2212
  /**
1762
2213
  * Delete a knowledge document and all its chunks.
1763
2214
  * @summary Delete Document
@@ -1767,6 +2218,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
1767
2218
  * @memberof KnowledgeAi
1768
2219
  */
1769
2220
  deleteDocument(requestParameters: KnowledgeAiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
2221
+ /**
2222
+ * Delete an org-scoped knowledge document and all its chunks.
2223
+ * @summary Delete Document Org
2224
+ * @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
2225
+ * @param {*} [options] Override http request option.
2226
+ * @throws {RequiredError}
2227
+ * @memberof KnowledgeAi
2228
+ */
2229
+ deleteOrgDocument(requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
1770
2230
  /**
1771
2231
  * Download a knowledge document\'s raw file.
1772
2232
  * @summary Download Document
@@ -1776,6 +2236,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
1776
2236
  * @memberof KnowledgeAi
1777
2237
  */
1778
2238
  downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
2239
+ /**
2240
+ * Download an org-scoped knowledge document\'s raw file.
2241
+ * @summary Download Document Org
2242
+ * @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
2243
+ * @param {*} [options] Override http request option.
2244
+ * @throws {RequiredError}
2245
+ * @memberof KnowledgeAi
2246
+ */
2247
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
1779
2248
  /**
1780
2249
  * Get a single knowledge document\'s metadata.
1781
2250
  * @summary Get Document
@@ -1785,6 +2254,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
1785
2254
  * @memberof KnowledgeAi
1786
2255
  */
1787
2256
  getDocument(requestParameters: KnowledgeAiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
2257
+ /**
2258
+ * Get a single org-scoped knowledge document\'s metadata.
2259
+ * @summary Get Document Org
2260
+ * @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
2261
+ * @param {*} [options] Override http request option.
2262
+ * @throws {RequiredError}
2263
+ * @memberof KnowledgeAi
2264
+ */
2265
+ getOrgDocument(requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
1788
2266
  /**
1789
2267
  * List knowledge documents accessible from the workspace.
1790
2268
  * @summary List Documents
@@ -1794,6 +2272,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
1794
2272
  * @memberof KnowledgeAi
1795
2273
  */
1796
2274
  listDocuments(requestParameters: KnowledgeAiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
2275
+ /**
2276
+ * List org-scoped knowledge documents.
2277
+ * @summary List Documents Org
2278
+ * @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
2279
+ * @param {*} [options] Override http request option.
2280
+ * @throws {RequiredError}
2281
+ * @memberof KnowledgeAi
2282
+ */
2283
+ listOrgDocuments(requestParameters?: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
1797
2284
  /**
1798
2285
  * Patch a knowledge document\'s metadata without re-uploading content.
1799
2286
  * @summary Patch Document
@@ -1803,6 +2290,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
1803
2290
  * @memberof KnowledgeAi
1804
2291
  */
1805
2292
  patchDocument(requestParameters: KnowledgeAiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
2293
+ /**
2294
+ * Patch an org-scoped knowledge document\'s metadata.
2295
+ * @summary Patch Document Org
2296
+ * @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
2297
+ * @param {*} [options] Override http request option.
2298
+ * @throws {RequiredError}
2299
+ * @memberof KnowledgeAi
2300
+ */
2301
+ patchOrgDocument(requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
1806
2302
  /**
1807
2303
  * Search the knowledge base using semantic similarity.
1808
2304
  * @summary Search Documents
@@ -1812,6 +2308,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
1812
2308
  * @memberof KnowledgeAi
1813
2309
  */
1814
2310
  searchKnowledge(requestParameters: KnowledgeAiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
2311
+ /**
2312
+ * Search org-scoped knowledge documents using semantic similarity.
2313
+ * @summary Search Documents Org
2314
+ * @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
2315
+ * @param {*} [options] Override http request option.
2316
+ * @throws {RequiredError}
2317
+ * @memberof KnowledgeAi
2318
+ */
2319
+ searchOrgKnowledge(requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
1815
2320
  /**
1816
2321
  * Upload or replace a knowledge document.
1817
2322
  * @summary Upsert Document
@@ -1821,6 +2326,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
1821
2326
  * @memberof KnowledgeAi
1822
2327
  */
1823
2328
  upsertDocument(requestParameters: KnowledgeAiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
2329
+ /**
2330
+ * Upload or replace an org-scoped knowledge document.
2331
+ * @summary Upsert Document Org
2332
+ * @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
2333
+ * @param {*} [options] Override http request option.
2334
+ * @throws {RequiredError}
2335
+ * @memberof KnowledgeAi
2336
+ */
2337
+ upsertOrgDocument(requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
1824
2338
  }
1825
2339
  /**
1826
2340
  *