@gpt-core/client 0.7.0 → 0.7.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.
- package/dist/index.d.mts +822 -6706
- package/dist/index.d.ts +822 -6706
- package/dist/index.js +544 -9
- package/dist/index.mjs +544 -9
- package/package.json +13 -4
package/dist/index.js
CHANGED
|
@@ -589,15 +589,6 @@ var jsonBodySerializer = {
|
|
|
589
589
|
)
|
|
590
590
|
};
|
|
591
591
|
|
|
592
|
-
// src/_internal/core/params.gen.ts
|
|
593
|
-
var extraPrefixesMap = {
|
|
594
|
-
$body_: "body",
|
|
595
|
-
$headers_: "headers",
|
|
596
|
-
$path_: "path",
|
|
597
|
-
$query_: "query"
|
|
598
|
-
};
|
|
599
|
-
var extraPrefixes = Object.entries(extraPrefixesMap);
|
|
600
|
-
|
|
601
592
|
// src/_internal/core/serverSentEvents.gen.ts
|
|
602
593
|
var createSseClient = ({
|
|
603
594
|
onRequest,
|
|
@@ -1412,6 +1403,7 @@ var client = createClient(
|
|
|
1412
1403
|
|
|
1413
1404
|
// src/_internal/sdk.gen.ts
|
|
1414
1405
|
var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
1406
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1415
1407
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1416
1408
|
url: "/ai/search/advanced",
|
|
1417
1409
|
...options,
|
|
@@ -1421,21 +1413,31 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
|
1421
1413
|
}
|
|
1422
1414
|
});
|
|
1423
1415
|
var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
|
|
1416
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1424
1417
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1425
1418
|
url: "/extraction/documents/{id}",
|
|
1426
1419
|
...options
|
|
1427
1420
|
});
|
|
1428
1421
|
var getExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
1422
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1429
1423
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1430
1424
|
url: "/extraction/documents/{id}",
|
|
1431
1425
|
...options
|
|
1432
1426
|
});
|
|
1433
1427
|
var getThreads = (options) => (options.client ?? client).get({
|
|
1428
|
+
querySerializer: {
|
|
1429
|
+
parameters: {
|
|
1430
|
+
filter: { object: { style: "form" } },
|
|
1431
|
+
page: { object: { style: "form" } },
|
|
1432
|
+
fields: { object: { style: "form" } }
|
|
1433
|
+
}
|
|
1434
|
+
},
|
|
1434
1435
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1435
1436
|
url: "/threads",
|
|
1436
1437
|
...options
|
|
1437
1438
|
});
|
|
1438
1439
|
var postThreads = (options) => (options.client ?? client).post({
|
|
1440
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1439
1441
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1440
1442
|
url: "/threads",
|
|
1441
1443
|
...options,
|
|
@@ -1445,26 +1447,36 @@ var postThreads = (options) => (options.client ?? client).post({
|
|
|
1445
1447
|
}
|
|
1446
1448
|
});
|
|
1447
1449
|
var getExtractionSchemasWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1450
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1448
1451
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1449
1452
|
url: "/extraction/schemas/workspace/{workspace_id}",
|
|
1450
1453
|
...options
|
|
1451
1454
|
});
|
|
1452
1455
|
var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
|
|
1456
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1453
1457
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1454
1458
|
url: "/llm_analytics/costs",
|
|
1455
1459
|
...options
|
|
1456
1460
|
});
|
|
1457
1461
|
var getTrainingSessionsAgentsByAgentIdSessions = (options) => (options.client ?? client).get({
|
|
1462
|
+
querySerializer: {
|
|
1463
|
+
parameters: {
|
|
1464
|
+
filter: { object: { style: "form" } },
|
|
1465
|
+
fields: { object: { style: "form" } }
|
|
1466
|
+
}
|
|
1467
|
+
},
|
|
1458
1468
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1459
1469
|
url: "/training_sessions/agents/{agent_id}/sessions",
|
|
1460
1470
|
...options
|
|
1461
1471
|
});
|
|
1462
1472
|
var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1473
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1463
1474
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1464
1475
|
url: "/ai/chunks/document/{document_id}",
|
|
1465
1476
|
...options
|
|
1466
1477
|
});
|
|
1467
1478
|
var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
1479
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1468
1480
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1469
1481
|
url: "/wallet/credits",
|
|
1470
1482
|
...options,
|
|
@@ -1474,11 +1486,18 @@ var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
|
1474
1486
|
}
|
|
1475
1487
|
});
|
|
1476
1488
|
var getWorkspaces = (options) => (options.client ?? client).get({
|
|
1489
|
+
querySerializer: {
|
|
1490
|
+
parameters: {
|
|
1491
|
+
filter: { object: { style: "form" } },
|
|
1492
|
+
fields: { object: { style: "form" } }
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1477
1495
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1478
1496
|
url: "/workspaces",
|
|
1479
1497
|
...options
|
|
1480
1498
|
});
|
|
1481
1499
|
var postWorkspaces = (options) => (options.client ?? client).post({
|
|
1500
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1482
1501
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1483
1502
|
url: "/workspaces",
|
|
1484
1503
|
...options,
|
|
@@ -1488,11 +1507,13 @@ var postWorkspaces = (options) => (options.client ?? client).post({
|
|
|
1488
1507
|
}
|
|
1489
1508
|
});
|
|
1490
1509
|
var getDocumentsStats = (options) => (options.client ?? client).get({
|
|
1510
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1491
1511
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1492
1512
|
url: "/documents/stats",
|
|
1493
1513
|
...options
|
|
1494
1514
|
});
|
|
1495
1515
|
var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client).patch({
|
|
1516
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1496
1517
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1497
1518
|
url: "/extraction/documents/{id}/dismiss",
|
|
1498
1519
|
...options,
|
|
@@ -1502,6 +1523,7 @@ var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client
|
|
|
1502
1523
|
}
|
|
1503
1524
|
});
|
|
1504
1525
|
var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
1526
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1505
1527
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1506
1528
|
url: "/objects/register",
|
|
1507
1529
|
...options,
|
|
@@ -1511,11 +1533,13 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
|
1511
1533
|
}
|
|
1512
1534
|
});
|
|
1513
1535
|
var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
|
|
1536
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1514
1537
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1515
1538
|
url: "/llm_analytics/workspace",
|
|
1516
1539
|
...options
|
|
1517
1540
|
});
|
|
1518
1541
|
var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?? client).patch({
|
|
1542
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1519
1543
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1520
1544
|
url: "/extraction/documents/{id}/dismiss-training",
|
|
1521
1545
|
...options,
|
|
@@ -1525,16 +1549,24 @@ var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?
|
|
|
1525
1549
|
}
|
|
1526
1550
|
});
|
|
1527
1551
|
var getSearchIndexes = (options) => (options.client ?? client).get({
|
|
1552
|
+
querySerializer: {
|
|
1553
|
+
parameters: {
|
|
1554
|
+
filter: { object: { style: "form" } },
|
|
1555
|
+
fields: { object: { style: "form" } }
|
|
1556
|
+
}
|
|
1557
|
+
},
|
|
1528
1558
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1529
1559
|
url: "/search/indexes",
|
|
1530
1560
|
...options
|
|
1531
1561
|
});
|
|
1532
1562
|
var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
|
|
1563
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1533
1564
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1534
1565
|
url: "/credit-packages/slug/{slug}",
|
|
1535
1566
|
...options
|
|
1536
1567
|
});
|
|
1537
1568
|
var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
1569
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1538
1570
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1539
1571
|
url: "/extraction/batches",
|
|
1540
1572
|
...options,
|
|
@@ -1544,11 +1576,13 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
|
1544
1576
|
}
|
|
1545
1577
|
});
|
|
1546
1578
|
var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
|
|
1579
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1547
1580
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1548
1581
|
url: "/llm_analytics/platform",
|
|
1549
1582
|
...options
|
|
1550
1583
|
});
|
|
1551
1584
|
var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client).patch({
|
|
1585
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1552
1586
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1553
1587
|
url: "/extraction/documents/{id}/exclude",
|
|
1554
1588
|
...options,
|
|
@@ -1558,6 +1592,7 @@ var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client
|
|
|
1558
1592
|
}
|
|
1559
1593
|
});
|
|
1560
1594
|
var postPayments = (options) => (options.client ?? client).post({
|
|
1595
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1561
1596
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1562
1597
|
url: "/payments",
|
|
1563
1598
|
...options,
|
|
@@ -1567,11 +1602,18 @@ var postPayments = (options) => (options.client ?? client).post({
|
|
|
1567
1602
|
}
|
|
1568
1603
|
});
|
|
1569
1604
|
var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1605
|
+
querySerializer: {
|
|
1606
|
+
parameters: {
|
|
1607
|
+
filter: { object: { style: "form" } },
|
|
1608
|
+
fields: { object: { style: "form" } }
|
|
1609
|
+
}
|
|
1610
|
+
},
|
|
1570
1611
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1571
1612
|
url: "/extraction/batches/workspace/{workspace_id}",
|
|
1572
1613
|
...options
|
|
1573
1614
|
});
|
|
1574
1615
|
var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1616
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1575
1617
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1576
1618
|
url: "/api_keys/{id}/revoke",
|
|
1577
1619
|
...options,
|
|
@@ -1581,16 +1623,19 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1581
1623
|
}
|
|
1582
1624
|
});
|
|
1583
1625
|
var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
|
|
1626
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1584
1627
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1585
1628
|
url: "/invitations/consume/{token}",
|
|
1586
1629
|
...options
|
|
1587
1630
|
});
|
|
1588
1631
|
var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
|
|
1632
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1589
1633
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1590
1634
|
url: "/extraction/documents/{id}/status",
|
|
1591
1635
|
...options
|
|
1592
1636
|
});
|
|
1593
1637
|
var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
|
|
1638
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1594
1639
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1595
1640
|
url: "/extraction/documents/{id}/status",
|
|
1596
1641
|
...options,
|
|
@@ -1600,6 +1645,7 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
|
|
|
1600
1645
|
}
|
|
1601
1646
|
});
|
|
1602
1647
|
var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
|
|
1648
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1603
1649
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1604
1650
|
url: "/extraction/documents/{id}/finish_upload",
|
|
1605
1651
|
...options,
|
|
@@ -1609,6 +1655,7 @@ var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? c
|
|
|
1609
1655
|
}
|
|
1610
1656
|
});
|
|
1611
1657
|
var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1658
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1612
1659
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1613
1660
|
url: "/workspaces/{id}/allocate",
|
|
1614
1661
|
...options,
|
|
@@ -1618,6 +1665,7 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
|
|
|
1618
1665
|
}
|
|
1619
1666
|
});
|
|
1620
1667
|
var postThreadsActive = (options) => (options.client ?? client).post({
|
|
1668
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1621
1669
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1622
1670
|
url: "/threads/active",
|
|
1623
1671
|
...options,
|
|
@@ -1627,6 +1675,7 @@ var postThreadsActive = (options) => (options.client ?? client).post({
|
|
|
1627
1675
|
}
|
|
1628
1676
|
});
|
|
1629
1677
|
var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1678
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1630
1679
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1631
1680
|
url: "/invitations/{id}/revoke",
|
|
1632
1681
|
...options,
|
|
@@ -1636,6 +1685,7 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1636
1685
|
}
|
|
1637
1686
|
});
|
|
1638
1687
|
var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options) => (options.client ?? client).post({
|
|
1688
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1639
1689
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1640
1690
|
url: "/workspaces/{workspace_id}/extraction/documents/dismiss-all-trained",
|
|
1641
1691
|
...options,
|
|
@@ -1645,11 +1695,19 @@ var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options)
|
|
|
1645
1695
|
}
|
|
1646
1696
|
});
|
|
1647
1697
|
var getConfigs = (options) => (options.client ?? client).get({
|
|
1698
|
+
querySerializer: {
|
|
1699
|
+
parameters: {
|
|
1700
|
+
filter: { object: { style: "form" } },
|
|
1701
|
+
page: { object: { style: "form" } },
|
|
1702
|
+
fields: { object: { style: "form" } }
|
|
1703
|
+
}
|
|
1704
|
+
},
|
|
1648
1705
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1649
1706
|
url: "/configs",
|
|
1650
1707
|
...options
|
|
1651
1708
|
});
|
|
1652
1709
|
var postConfigs = (options) => (options.client ?? client).post({
|
|
1710
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1653
1711
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1654
1712
|
url: "/configs",
|
|
1655
1713
|
...options,
|
|
@@ -1659,6 +1717,7 @@ var postConfigs = (options) => (options.client ?? client).post({
|
|
|
1659
1717
|
}
|
|
1660
1718
|
});
|
|
1661
1719
|
var postTokens = (options) => (options.client ?? client).post({
|
|
1720
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1662
1721
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1663
1722
|
url: "/tokens",
|
|
1664
1723
|
...options,
|
|
@@ -1668,16 +1727,19 @@ var postTokens = (options) => (options.client ?? client).post({
|
|
|
1668
1727
|
}
|
|
1669
1728
|
});
|
|
1670
1729
|
var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
|
|
1730
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1671
1731
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1672
1732
|
url: "/training_examples/{id}",
|
|
1673
1733
|
...options
|
|
1674
1734
|
});
|
|
1675
1735
|
var getTrainingExamplesById = (options) => (options.client ?? client).get({
|
|
1736
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1676
1737
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1677
1738
|
url: "/training_examples/{id}",
|
|
1678
1739
|
...options
|
|
1679
1740
|
});
|
|
1680
1741
|
var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
1742
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1681
1743
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1682
1744
|
url: "/training_examples/{id}",
|
|
1683
1745
|
...options,
|
|
@@ -1687,11 +1749,13 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
|
1687
1749
|
}
|
|
1688
1750
|
});
|
|
1689
1751
|
var deleteSearchSavedById = (options) => (options.client ?? client).delete({
|
|
1752
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1690
1753
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1691
1754
|
url: "/search/saved/{id}",
|
|
1692
1755
|
...options
|
|
1693
1756
|
});
|
|
1694
1757
|
var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
1758
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1695
1759
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1696
1760
|
url: "/users/{id}/admin/email",
|
|
1697
1761
|
...options,
|
|
@@ -1701,11 +1765,19 @@ var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
|
1701
1765
|
}
|
|
1702
1766
|
});
|
|
1703
1767
|
var getExtractionDocumentsWorkspaceByWorkspaceIdTrained = (options) => (options.client ?? client).get({
|
|
1768
|
+
querySerializer: {
|
|
1769
|
+
parameters: {
|
|
1770
|
+
filter: { object: { style: "form" } },
|
|
1771
|
+
page: { object: { style: "form" } },
|
|
1772
|
+
fields: { object: { style: "form" } }
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1704
1775
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1705
1776
|
url: "/extraction/documents/workspace/{workspace_id}/trained",
|
|
1706
1777
|
...options
|
|
1707
1778
|
});
|
|
1708
1779
|
var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
|
|
1780
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1709
1781
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1710
1782
|
url: "/users/auth/reset-password",
|
|
1711
1783
|
...options,
|
|
@@ -1715,11 +1787,13 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1715
1787
|
}
|
|
1716
1788
|
});
|
|
1717
1789
|
var getBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
1790
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1718
1791
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1719
1792
|
url: "/buckets/{id}/stats",
|
|
1720
1793
|
...options
|
|
1721
1794
|
});
|
|
1722
1795
|
var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? client).patch({
|
|
1796
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1723
1797
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1724
1798
|
url: "/notification_methods/{id}/set_primary",
|
|
1725
1799
|
...options,
|
|
@@ -1729,11 +1803,13 @@ var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? cli
|
|
|
1729
1803
|
}
|
|
1730
1804
|
});
|
|
1731
1805
|
var getBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
1806
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1732
1807
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1733
1808
|
url: "/buckets/{id}/objects",
|
|
1734
1809
|
...options
|
|
1735
1810
|
});
|
|
1736
1811
|
var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
1812
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1737
1813
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1738
1814
|
url: "/invitations/{id}/resend",
|
|
1739
1815
|
...options,
|
|
@@ -1743,11 +1819,18 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
|
1743
1819
|
}
|
|
1744
1820
|
});
|
|
1745
1821
|
var getSearchSaved = (options) => (options.client ?? client).get({
|
|
1822
|
+
querySerializer: {
|
|
1823
|
+
parameters: {
|
|
1824
|
+
filter: { object: { style: "form" } },
|
|
1825
|
+
fields: { object: { style: "form" } }
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1746
1828
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1747
1829
|
url: "/search/saved",
|
|
1748
1830
|
...options
|
|
1749
1831
|
});
|
|
1750
1832
|
var postSearchSaved = (options) => (options.client ?? client).post({
|
|
1833
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1751
1834
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1752
1835
|
url: "/search/saved",
|
|
1753
1836
|
...options,
|
|
@@ -1757,26 +1840,31 @@ var postSearchSaved = (options) => (options.client ?? client).post({
|
|
|
1757
1840
|
}
|
|
1758
1841
|
});
|
|
1759
1842
|
var deleteFieldTemplatesById = (options) => (options.client ?? client).delete({
|
|
1843
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1760
1844
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1761
1845
|
url: "/field_templates/{id}",
|
|
1762
1846
|
...options
|
|
1763
1847
|
});
|
|
1764
1848
|
var getFieldTemplatesById = (options) => (options.client ?? client).get({
|
|
1849
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1765
1850
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1766
1851
|
url: "/field_templates/{id}",
|
|
1767
1852
|
...options
|
|
1768
1853
|
});
|
|
1769
1854
|
var getWorkspacesByWorkspaceIdTrainingAnalytics = (options) => (options.client ?? client).get({
|
|
1855
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1770
1856
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1771
1857
|
url: "/workspaces/{workspace_id}/training/analytics",
|
|
1772
1858
|
...options
|
|
1773
1859
|
});
|
|
1774
1860
|
var getUserProfilesMe = (options) => (options.client ?? client).get({
|
|
1861
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1775
1862
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1776
1863
|
url: "/user_profiles/me",
|
|
1777
1864
|
...options
|
|
1778
1865
|
});
|
|
1779
1866
|
var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
1867
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1780
1868
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1781
1869
|
url: "/invitations/invite",
|
|
1782
1870
|
...options,
|
|
@@ -1786,11 +1874,18 @@ var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
|
1786
1874
|
}
|
|
1787
1875
|
});
|
|
1788
1876
|
var getAgentVersions = (options) => (options.client ?? client).get({
|
|
1877
|
+
querySerializer: {
|
|
1878
|
+
parameters: {
|
|
1879
|
+
filter: { object: { style: "form" } },
|
|
1880
|
+
fields: { object: { style: "form" } }
|
|
1881
|
+
}
|
|
1882
|
+
},
|
|
1789
1883
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1790
1884
|
url: "/agent_versions",
|
|
1791
1885
|
...options
|
|
1792
1886
|
});
|
|
1793
1887
|
var postAgentVersions = (options) => (options.client ?? client).post({
|
|
1888
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1794
1889
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1795
1890
|
url: "/agent_versions",
|
|
1796
1891
|
...options,
|
|
@@ -1800,16 +1895,19 @@ var postAgentVersions = (options) => (options.client ?? client).post({
|
|
|
1800
1895
|
}
|
|
1801
1896
|
});
|
|
1802
1897
|
var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
1898
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1803
1899
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1804
1900
|
url: "/webhook_configs/{id}",
|
|
1805
1901
|
...options
|
|
1806
1902
|
});
|
|
1807
1903
|
var getWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
1904
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1808
1905
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1809
1906
|
url: "/webhook_configs/{id}",
|
|
1810
1907
|
...options
|
|
1811
1908
|
});
|
|
1812
1909
|
var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
1910
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1813
1911
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1814
1912
|
url: "/webhook_configs/{id}",
|
|
1815
1913
|
...options,
|
|
@@ -1819,6 +1917,7 @@ var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
|
1819
1917
|
}
|
|
1820
1918
|
});
|
|
1821
1919
|
var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
|
|
1920
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1822
1921
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1823
1922
|
url: "/invitations/accept_by_token",
|
|
1824
1923
|
...options,
|
|
@@ -1828,11 +1927,13 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
|
|
|
1828
1927
|
}
|
|
1829
1928
|
});
|
|
1830
1929
|
var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
|
|
1930
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1831
1931
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1832
1932
|
url: "/extraction/batches/{id}/upload-urls",
|
|
1833
1933
|
...options
|
|
1834
1934
|
});
|
|
1835
1935
|
var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1936
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1836
1937
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1837
1938
|
url: "/documents/bulk_delete",
|
|
1838
1939
|
...options,
|
|
@@ -1842,11 +1943,13 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
|
1842
1943
|
}
|
|
1843
1944
|
});
|
|
1844
1945
|
var getAgentVersionsById = (options) => (options.client ?? client).get({
|
|
1946
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1845
1947
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1846
1948
|
url: "/agent_versions/{id}",
|
|
1847
1949
|
...options
|
|
1848
1950
|
});
|
|
1849
1951
|
var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
1952
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1850
1953
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1851
1954
|
url: "/ai/chunks/search",
|
|
1852
1955
|
...options,
|
|
@@ -1856,6 +1959,7 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
|
1856
1959
|
}
|
|
1857
1960
|
});
|
|
1858
1961
|
var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
1962
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1859
1963
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1860
1964
|
url: "/threads/{id}/messages",
|
|
1861
1965
|
...options,
|
|
@@ -1865,6 +1969,7 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
|
1865
1969
|
}
|
|
1866
1970
|
});
|
|
1867
1971
|
var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
1972
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1868
1973
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1869
1974
|
url: "/agents/clone_for_workspace",
|
|
1870
1975
|
...options,
|
|
@@ -1874,6 +1979,7 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
|
1874
1979
|
}
|
|
1875
1980
|
});
|
|
1876
1981
|
var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
1982
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1877
1983
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1878
1984
|
url: "/invitations/{id}/accept",
|
|
1879
1985
|
...options,
|
|
@@ -1883,21 +1989,25 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
|
1883
1989
|
}
|
|
1884
1990
|
});
|
|
1885
1991
|
var getCreditPackagesById = (options) => (options.client ?? client).get({
|
|
1992
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1886
1993
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1887
1994
|
url: "/credit-packages/{id}",
|
|
1888
1995
|
...options
|
|
1889
1996
|
});
|
|
1890
1997
|
var getUsersById = (options) => (options.client ?? client).get({
|
|
1998
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1891
1999
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1892
2000
|
url: "/users/{id}",
|
|
1893
2001
|
...options
|
|
1894
2002
|
});
|
|
1895
2003
|
var getExtractionResultsById = (options) => (options.client ?? client).get({
|
|
2004
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1896
2005
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1897
2006
|
url: "/extraction/results/{id}",
|
|
1898
2007
|
...options
|
|
1899
2008
|
});
|
|
1900
2009
|
var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
2010
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1901
2011
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1902
2012
|
url: "/agents/{id}/validate",
|
|
1903
2013
|
...options,
|
|
@@ -1907,6 +2017,7 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
|
1907
2017
|
}
|
|
1908
2018
|
});
|
|
1909
2019
|
var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
2020
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1910
2021
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1911
2022
|
url: "/webhook_configs/{id}/test",
|
|
1912
2023
|
...options,
|
|
@@ -1916,11 +2027,13 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
|
1916
2027
|
}
|
|
1917
2028
|
});
|
|
1918
2029
|
var getUsersMe = (options) => (options.client ?? client).get({
|
|
2030
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1919
2031
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1920
2032
|
url: "/users/me",
|
|
1921
2033
|
...options
|
|
1922
2034
|
});
|
|
1923
2035
|
var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
|
|
2036
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1924
2037
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1925
2038
|
url: "/users/auth/register_with_oidc",
|
|
1926
2039
|
...options,
|
|
@@ -1930,6 +2043,7 @@ var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post
|
|
|
1930
2043
|
}
|
|
1931
2044
|
});
|
|
1932
2045
|
var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
2046
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1933
2047
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1934
2048
|
url: "/tenants/{id}/credit",
|
|
1935
2049
|
...options,
|
|
@@ -1939,16 +2053,25 @@ var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
|
1939
2053
|
}
|
|
1940
2054
|
});
|
|
1941
2055
|
var getTransactionsById = (options) => (options.client ?? client).get({
|
|
2056
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1942
2057
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1943
2058
|
url: "/transactions/{id}",
|
|
1944
2059
|
...options
|
|
1945
2060
|
});
|
|
1946
2061
|
var getTenantMemberships = (options) => (options.client ?? client).get({
|
|
2062
|
+
querySerializer: {
|
|
2063
|
+
parameters: {
|
|
2064
|
+
filter: { object: { style: "form" } },
|
|
2065
|
+
page: { object: { style: "form" } },
|
|
2066
|
+
fields: { object: { style: "form" } }
|
|
2067
|
+
}
|
|
2068
|
+
},
|
|
1947
2069
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1948
2070
|
url: "/tenant-memberships",
|
|
1949
2071
|
...options
|
|
1950
2072
|
});
|
|
1951
2073
|
var postTenantMemberships = (options) => (options.client ?? client).post({
|
|
2074
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1952
2075
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1953
2076
|
url: "/tenant-memberships",
|
|
1954
2077
|
...options,
|
|
@@ -1967,6 +2090,7 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
|
|
|
1967
2090
|
}
|
|
1968
2091
|
});
|
|
1969
2092
|
var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client).patch({
|
|
2093
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1970
2094
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1971
2095
|
url: "/extraction/documents/{id}/include",
|
|
1972
2096
|
...options,
|
|
@@ -1976,21 +2100,25 @@ var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client
|
|
|
1976
2100
|
}
|
|
1977
2101
|
});
|
|
1978
2102
|
var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
2103
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1979
2104
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1980
2105
|
url: "/llm_analytics/summary",
|
|
1981
2106
|
...options
|
|
1982
2107
|
});
|
|
1983
2108
|
var deleteExtractionSchemaFieldsById = (options) => (options.client ?? client).delete({
|
|
2109
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1984
2110
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1985
2111
|
url: "/extraction/schema-fields/{id}",
|
|
1986
2112
|
...options
|
|
1987
2113
|
});
|
|
1988
2114
|
var getExtractionSchemaFieldsById = (options) => (options.client ?? client).get({
|
|
2115
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1989
2116
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1990
2117
|
url: "/extraction/schema-fields/{id}",
|
|
1991
2118
|
...options
|
|
1992
2119
|
});
|
|
1993
2120
|
var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).patch({
|
|
2121
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1994
2122
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1995
2123
|
url: "/extraction/schema-fields/{id}",
|
|
1996
2124
|
...options,
|
|
@@ -2000,6 +2128,7 @@ var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).pa
|
|
|
2000
2128
|
}
|
|
2001
2129
|
});
|
|
2002
2130
|
var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
2131
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2003
2132
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2004
2133
|
url: "/storage/sign_download",
|
|
2005
2134
|
...options,
|
|
@@ -2009,26 +2138,31 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
|
2009
2138
|
}
|
|
2010
2139
|
});
|
|
2011
2140
|
var deleteTrainingSessionsById = (options) => (options.client ?? client).delete({
|
|
2141
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2012
2142
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2013
2143
|
url: "/training_sessions/{id}",
|
|
2014
2144
|
...options
|
|
2015
2145
|
});
|
|
2016
2146
|
var getTrainingSessionsById = (options) => (options.client ?? client).get({
|
|
2147
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2017
2148
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2018
2149
|
url: "/training_sessions/{id}",
|
|
2019
2150
|
...options
|
|
2020
2151
|
});
|
|
2021
2152
|
var deleteNotificationMethodsById = (options) => (options.client ?? client).delete({
|
|
2153
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2022
2154
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2023
2155
|
url: "/notification_methods/{id}",
|
|
2024
2156
|
...options
|
|
2025
2157
|
});
|
|
2026
2158
|
var getNotificationMethodsById = (options) => (options.client ?? client).get({
|
|
2159
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2027
2160
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2028
2161
|
url: "/notification_methods/{id}",
|
|
2029
2162
|
...options
|
|
2030
2163
|
});
|
|
2031
2164
|
var patchNotificationMethodsById = (options) => (options.client ?? client).patch({
|
|
2165
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2032
2166
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2033
2167
|
url: "/notification_methods/{id}",
|
|
2034
2168
|
...options,
|
|
@@ -2038,31 +2172,64 @@ var patchNotificationMethodsById = (options) => (options.client ?? client).patch
|
|
|
2038
2172
|
}
|
|
2039
2173
|
});
|
|
2040
2174
|
var getWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
2175
|
+
querySerializer: {
|
|
2176
|
+
parameters: {
|
|
2177
|
+
filter: { object: { style: "form" } },
|
|
2178
|
+
page: { object: { style: "form" } },
|
|
2179
|
+
fields: { object: { style: "form" } }
|
|
2180
|
+
}
|
|
2181
|
+
},
|
|
2041
2182
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2042
2183
|
url: "/webhook_deliveries",
|
|
2043
2184
|
...options
|
|
2044
2185
|
});
|
|
2045
2186
|
var getSearch = (options) => (options.client ?? client).get({
|
|
2187
|
+
querySerializer: {
|
|
2188
|
+
parameters: {
|
|
2189
|
+
filter: { object: { style: "form" } },
|
|
2190
|
+
fields: { object: { style: "form" } }
|
|
2191
|
+
}
|
|
2192
|
+
},
|
|
2046
2193
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2047
2194
|
url: "/search",
|
|
2048
2195
|
...options
|
|
2049
2196
|
});
|
|
2050
2197
|
var getInvitations = (options) => (options.client ?? client).get({
|
|
2198
|
+
querySerializer: {
|
|
2199
|
+
parameters: {
|
|
2200
|
+
filter: { object: { style: "form" } },
|
|
2201
|
+
fields: { object: { style: "form" } }
|
|
2202
|
+
}
|
|
2203
|
+
},
|
|
2051
2204
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2052
2205
|
url: "/invitations",
|
|
2053
2206
|
...options
|
|
2054
2207
|
});
|
|
2055
2208
|
var getSearchSemantic = (options) => (options.client ?? client).get({
|
|
2209
|
+
querySerializer: {
|
|
2210
|
+
parameters: {
|
|
2211
|
+
filter: { object: { style: "form" } },
|
|
2212
|
+
fields: { object: { style: "form" } }
|
|
2213
|
+
}
|
|
2214
|
+
},
|
|
2056
2215
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2057
2216
|
url: "/search/semantic",
|
|
2058
2217
|
...options
|
|
2059
2218
|
});
|
|
2060
2219
|
var getMessages = (options) => (options.client ?? client).get({
|
|
2220
|
+
querySerializer: {
|
|
2221
|
+
parameters: {
|
|
2222
|
+
filter: { object: { style: "form" } },
|
|
2223
|
+
page: { object: { style: "form" } },
|
|
2224
|
+
fields: { object: { style: "form" } }
|
|
2225
|
+
}
|
|
2226
|
+
},
|
|
2061
2227
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2062
2228
|
url: "/messages",
|
|
2063
2229
|
...options
|
|
2064
2230
|
});
|
|
2065
2231
|
var postMessages = (options) => (options.client ?? client).post({
|
|
2232
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2066
2233
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2067
2234
|
url: "/messages",
|
|
2068
2235
|
...options,
|
|
@@ -2072,11 +2239,19 @@ var postMessages = (options) => (options.client ?? client).post({
|
|
|
2072
2239
|
}
|
|
2073
2240
|
});
|
|
2074
2241
|
var getNotificationPreferences = (options) => (options.client ?? client).get({
|
|
2242
|
+
querySerializer: {
|
|
2243
|
+
parameters: {
|
|
2244
|
+
filter: { object: { style: "form" } },
|
|
2245
|
+
page: { object: { style: "form" } },
|
|
2246
|
+
fields: { object: { style: "form" } }
|
|
2247
|
+
}
|
|
2248
|
+
},
|
|
2075
2249
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2076
2250
|
url: "/notification_preferences",
|
|
2077
2251
|
...options
|
|
2078
2252
|
});
|
|
2079
2253
|
var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
2254
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2080
2255
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2081
2256
|
url: "/notification_preferences",
|
|
2082
2257
|
...options,
|
|
@@ -2086,11 +2261,19 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
|
2086
2261
|
}
|
|
2087
2262
|
});
|
|
2088
2263
|
var getApplications = (options) => (options.client ?? client).get({
|
|
2264
|
+
querySerializer: {
|
|
2265
|
+
parameters: {
|
|
2266
|
+
filter: { object: { style: "form" } },
|
|
2267
|
+
page: { object: { style: "form" } },
|
|
2268
|
+
fields: { object: { style: "form" } }
|
|
2269
|
+
}
|
|
2270
|
+
},
|
|
2089
2271
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2090
2272
|
url: "/applications",
|
|
2091
2273
|
...options
|
|
2092
2274
|
});
|
|
2093
2275
|
var postApplications = (options) => (options.client ?? client).post({
|
|
2276
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2094
2277
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2095
2278
|
url: "/applications",
|
|
2096
2279
|
...options,
|
|
@@ -2109,16 +2292,19 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
|
|
|
2109
2292
|
}
|
|
2110
2293
|
});
|
|
2111
2294
|
var deleteThreadsById = (options) => (options.client ?? client).delete({
|
|
2295
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2112
2296
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2113
2297
|
url: "/threads/{id}",
|
|
2114
2298
|
...options
|
|
2115
2299
|
});
|
|
2116
2300
|
var getThreadsById = (options) => (options.client ?? client).get({
|
|
2301
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2117
2302
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2118
2303
|
url: "/threads/{id}",
|
|
2119
2304
|
...options
|
|
2120
2305
|
});
|
|
2121
2306
|
var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
2307
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2122
2308
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2123
2309
|
url: "/threads/{id}",
|
|
2124
2310
|
...options,
|
|
@@ -2128,11 +2314,19 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
|
2128
2314
|
}
|
|
2129
2315
|
});
|
|
2130
2316
|
var getLlmAnalytics = (options) => (options.client ?? client).get({
|
|
2317
|
+
querySerializer: {
|
|
2318
|
+
parameters: {
|
|
2319
|
+
filter: { object: { style: "form" } },
|
|
2320
|
+
page: { object: { style: "form" } },
|
|
2321
|
+
fields: { object: { style: "form" } }
|
|
2322
|
+
}
|
|
2323
|
+
},
|
|
2131
2324
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2132
2325
|
url: "/llm_analytics",
|
|
2133
2326
|
...options
|
|
2134
2327
|
});
|
|
2135
2328
|
var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
2329
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2136
2330
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2137
2331
|
url: "/llm_analytics",
|
|
2138
2332
|
...options,
|
|
@@ -2142,6 +2336,7 @@ var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
|
2142
2336
|
}
|
|
2143
2337
|
});
|
|
2144
2338
|
var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
|
|
2339
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2145
2340
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2146
2341
|
url: "/users/{id}/reset-password",
|
|
2147
2342
|
...options,
|
|
@@ -2151,6 +2346,7 @@ var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch(
|
|
|
2151
2346
|
}
|
|
2152
2347
|
});
|
|
2153
2348
|
var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
|
|
2349
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2154
2350
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2155
2351
|
url: "/documents/presigned_upload",
|
|
2156
2352
|
...options,
|
|
@@ -2160,11 +2356,13 @@ var postDocumentsPresignedUpload = (options) => (options.client ?? client).post(
|
|
|
2160
2356
|
}
|
|
2161
2357
|
});
|
|
2162
2358
|
var getMessagesSearch = (options) => (options.client ?? client).get({
|
|
2359
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2163
2360
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2164
2361
|
url: "/messages/search",
|
|
2165
2362
|
...options
|
|
2166
2363
|
});
|
|
2167
2364
|
var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
2365
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2168
2366
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2169
2367
|
url: "/agents/{id}/teach",
|
|
2170
2368
|
...options,
|
|
@@ -2174,11 +2372,19 @@ var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
|
2174
2372
|
}
|
|
2175
2373
|
});
|
|
2176
2374
|
var getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue = (options) => (options.client ?? client).get({
|
|
2375
|
+
querySerializer: {
|
|
2376
|
+
parameters: {
|
|
2377
|
+
filter: { object: { style: "form" } },
|
|
2378
|
+
page: { object: { style: "form" } },
|
|
2379
|
+
fields: { object: { style: "form" } }
|
|
2380
|
+
}
|
|
2381
|
+
},
|
|
2177
2382
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2178
2383
|
url: "/extraction/documents/workspace/{workspace_id}/review_queue",
|
|
2179
2384
|
...options
|
|
2180
2385
|
});
|
|
2181
2386
|
var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
|
|
2387
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2182
2388
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2183
2389
|
url: "/extraction/documents/upload",
|
|
2184
2390
|
...options,
|
|
@@ -2188,6 +2394,7 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
|
|
|
2188
2394
|
}
|
|
2189
2395
|
});
|
|
2190
2396
|
var patchExtractionResultsByIdCorrections = (options) => (options.client ?? client).patch({
|
|
2397
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2191
2398
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2192
2399
|
url: "/extraction/results/{id}/corrections",
|
|
2193
2400
|
...options,
|
|
@@ -2197,21 +2404,25 @@ var patchExtractionResultsByIdCorrections = (options) => (options.client ?? clie
|
|
|
2197
2404
|
}
|
|
2198
2405
|
});
|
|
2199
2406
|
var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
2407
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2200
2408
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2201
2409
|
url: "/extraction/results/document/{document_id}",
|
|
2202
2410
|
...options
|
|
2203
2411
|
});
|
|
2204
2412
|
var deleteWorkspacesById = (options) => (options.client ?? client).delete({
|
|
2413
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2205
2414
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2206
2415
|
url: "/workspaces/{id}",
|
|
2207
2416
|
...options
|
|
2208
2417
|
});
|
|
2209
2418
|
var getWorkspacesById = (options) => (options.client ?? client).get({
|
|
2419
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2210
2420
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2211
2421
|
url: "/workspaces/{id}",
|
|
2212
2422
|
...options
|
|
2213
2423
|
});
|
|
2214
2424
|
var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
2425
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2215
2426
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2216
2427
|
url: "/workspaces/{id}",
|
|
2217
2428
|
...options,
|
|
@@ -2221,11 +2432,19 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
|
2221
2432
|
}
|
|
2222
2433
|
});
|
|
2223
2434
|
var getTenants = (options) => (options.client ?? client).get({
|
|
2435
|
+
querySerializer: {
|
|
2436
|
+
parameters: {
|
|
2437
|
+
filter: { object: { style: "form" } },
|
|
2438
|
+
page: { object: { style: "form" } },
|
|
2439
|
+
fields: { object: { style: "form" } }
|
|
2440
|
+
}
|
|
2441
|
+
},
|
|
2224
2442
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2225
2443
|
url: "/tenants",
|
|
2226
2444
|
...options
|
|
2227
2445
|
});
|
|
2228
2446
|
var postTenants = (options) => (options.client ?? client).post({
|
|
2447
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2229
2448
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2230
2449
|
url: "/tenants",
|
|
2231
2450
|
...options,
|
|
@@ -2235,6 +2454,7 @@ var postTenants = (options) => (options.client ?? client).post({
|
|
|
2235
2454
|
}
|
|
2236
2455
|
});
|
|
2237
2456
|
var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
|
|
2457
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2238
2458
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2239
2459
|
url: "/tenants/{id}/remove-storage",
|
|
2240
2460
|
...options,
|
|
@@ -2244,31 +2464,49 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
|
|
|
2244
2464
|
}
|
|
2245
2465
|
});
|
|
2246
2466
|
var getNotificationLogsById = (options) => (options.client ?? client).get({
|
|
2467
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2247
2468
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2248
2469
|
url: "/notification_logs/{id}",
|
|
2249
2470
|
...options
|
|
2250
2471
|
});
|
|
2251
2472
|
var getExtractionDocumentsByIdView = (options) => (options.client ?? client).get({
|
|
2473
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2252
2474
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2253
2475
|
url: "/extraction/documents/{id}/view",
|
|
2254
2476
|
...options
|
|
2255
2477
|
});
|
|
2256
2478
|
var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
2479
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2257
2480
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2258
2481
|
url: "/webhook_deliveries/{id}",
|
|
2259
2482
|
...options
|
|
2260
2483
|
});
|
|
2261
2484
|
var getAuditLogs = (options) => (options.client ?? client).get({
|
|
2485
|
+
querySerializer: {
|
|
2486
|
+
parameters: {
|
|
2487
|
+
filter: { object: { style: "form" } },
|
|
2488
|
+
page: { object: { style: "form" } },
|
|
2489
|
+
fields: { object: { style: "form" } }
|
|
2490
|
+
}
|
|
2491
|
+
},
|
|
2262
2492
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2263
2493
|
url: "/audit-logs",
|
|
2264
2494
|
...options
|
|
2265
2495
|
});
|
|
2266
2496
|
var getAiGraphEdges = (options) => (options.client ?? client).get({
|
|
2497
|
+
querySerializer: {
|
|
2498
|
+
parameters: {
|
|
2499
|
+
filter: { object: { style: "form" } },
|
|
2500
|
+
page: { object: { style: "form" } },
|
|
2501
|
+
fields: { object: { style: "form" } }
|
|
2502
|
+
}
|
|
2503
|
+
},
|
|
2267
2504
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2268
2505
|
url: "/ai/graph/edges",
|
|
2269
2506
|
...options
|
|
2270
2507
|
});
|
|
2271
2508
|
var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
2509
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2272
2510
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2273
2511
|
url: "/ai/graph/edges",
|
|
2274
2512
|
...options,
|
|
@@ -2278,11 +2516,19 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
|
2278
2516
|
}
|
|
2279
2517
|
});
|
|
2280
2518
|
var getTrainingExamples = (options) => (options.client ?? client).get({
|
|
2519
|
+
querySerializer: {
|
|
2520
|
+
parameters: {
|
|
2521
|
+
filter: { object: { style: "form" } },
|
|
2522
|
+
page: { object: { style: "form" } },
|
|
2523
|
+
fields: { object: { style: "form" } }
|
|
2524
|
+
}
|
|
2525
|
+
},
|
|
2281
2526
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2282
2527
|
url: "/training_examples",
|
|
2283
2528
|
...options
|
|
2284
2529
|
});
|
|
2285
2530
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
2531
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2286
2532
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2287
2533
|
url: "/training_examples",
|
|
2288
2534
|
...options,
|
|
@@ -2292,6 +2538,7 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
2292
2538
|
}
|
|
2293
2539
|
});
|
|
2294
2540
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
2541
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2295
2542
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2296
2543
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
2297
2544
|
...options
|
|
@@ -2302,11 +2549,19 @@ var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
|
|
|
2302
2549
|
...options
|
|
2303
2550
|
});
|
|
2304
2551
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
2552
|
+
querySerializer: {
|
|
2553
|
+
parameters: {
|
|
2554
|
+
filter: { object: { style: "form" } },
|
|
2555
|
+
page: { object: { style: "form" } },
|
|
2556
|
+
fields: { object: { style: "form" } }
|
|
2557
|
+
}
|
|
2558
|
+
},
|
|
2305
2559
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2306
2560
|
url: "/buckets",
|
|
2307
2561
|
...options
|
|
2308
2562
|
});
|
|
2309
2563
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
2564
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2310
2565
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2311
2566
|
url: "/buckets",
|
|
2312
2567
|
...options,
|
|
@@ -2316,16 +2571,19 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
2316
2571
|
}
|
|
2317
2572
|
});
|
|
2318
2573
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
2574
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2319
2575
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2320
2576
|
url: "/plans/{id}",
|
|
2321
2577
|
...options
|
|
2322
2578
|
});
|
|
2323
2579
|
var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
|
|
2580
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2324
2581
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2325
2582
|
url: "/tenants/{tenant_id}/stats",
|
|
2326
2583
|
...options
|
|
2327
2584
|
});
|
|
2328
2585
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
2586
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2329
2587
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2330
2588
|
url: "/wallet/addons",
|
|
2331
2589
|
...options,
|
|
@@ -2335,6 +2593,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
2335
2593
|
}
|
|
2336
2594
|
});
|
|
2337
2595
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
2596
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2338
2597
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2339
2598
|
url: "/users/auth/magic_link/login",
|
|
2340
2599
|
...options,
|
|
@@ -2344,11 +2603,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
2344
2603
|
}
|
|
2345
2604
|
});
|
|
2346
2605
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
2606
|
+
querySerializer: {
|
|
2607
|
+
parameters: {
|
|
2608
|
+
filter: { object: { style: "form" } },
|
|
2609
|
+
page: { object: { style: "form" } },
|
|
2610
|
+
fields: { object: { style: "form" } }
|
|
2611
|
+
}
|
|
2612
|
+
},
|
|
2347
2613
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2348
2614
|
url: "/api_keys",
|
|
2349
2615
|
...options
|
|
2350
2616
|
});
|
|
2351
2617
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
2618
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2352
2619
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2353
2620
|
url: "/api_keys",
|
|
2354
2621
|
...options,
|
|
@@ -2358,6 +2625,7 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
2358
2625
|
}
|
|
2359
2626
|
});
|
|
2360
2627
|
var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
2628
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2361
2629
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2362
2630
|
url: "/users/{id}/admin",
|
|
2363
2631
|
...options,
|
|
@@ -2367,16 +2635,19 @@ var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
|
2367
2635
|
}
|
|
2368
2636
|
});
|
|
2369
2637
|
var deleteAgentsById = (options) => (options.client ?? client).delete({
|
|
2638
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2370
2639
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2371
2640
|
url: "/agents/{id}",
|
|
2372
2641
|
...options
|
|
2373
2642
|
});
|
|
2374
2643
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
2644
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2375
2645
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2376
2646
|
url: "/agents/{id}",
|
|
2377
2647
|
...options
|
|
2378
2648
|
});
|
|
2379
2649
|
var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
2650
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2380
2651
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2381
2652
|
url: "/agents/{id}",
|
|
2382
2653
|
...options,
|
|
@@ -2386,16 +2657,19 @@ var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
|
2386
2657
|
}
|
|
2387
2658
|
});
|
|
2388
2659
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
2660
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2389
2661
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2390
2662
|
url: "/api_keys/{id}",
|
|
2391
2663
|
...options
|
|
2392
2664
|
});
|
|
2393
2665
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
2666
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2394
2667
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2395
2668
|
url: "/api_keys/{id}",
|
|
2396
2669
|
...options
|
|
2397
2670
|
});
|
|
2398
2671
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
2672
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2399
2673
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2400
2674
|
url: "/api_keys/{id}",
|
|
2401
2675
|
...options,
|
|
@@ -2414,11 +2688,19 @@ var postTrainingExamplesSearch = (options) => (options.client ?? client).post({
|
|
|
2414
2688
|
}
|
|
2415
2689
|
});
|
|
2416
2690
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
2691
|
+
querySerializer: {
|
|
2692
|
+
parameters: {
|
|
2693
|
+
filter: { object: { style: "form" } },
|
|
2694
|
+
page: { object: { style: "form" } },
|
|
2695
|
+
fields: { object: { style: "form" } }
|
|
2696
|
+
}
|
|
2697
|
+
},
|
|
2417
2698
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2418
2699
|
url: "/ai/conversations",
|
|
2419
2700
|
...options
|
|
2420
2701
|
});
|
|
2421
2702
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
2703
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2422
2704
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2423
2705
|
url: "/ai/conversations",
|
|
2424
2706
|
...options,
|
|
@@ -2428,6 +2710,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
2428
2710
|
}
|
|
2429
2711
|
});
|
|
2430
2712
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
2713
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2431
2714
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2432
2715
|
url: "/ai/search",
|
|
2433
2716
|
...options,
|
|
@@ -2437,11 +2720,13 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
2437
2720
|
}
|
|
2438
2721
|
});
|
|
2439
2722
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
2723
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2440
2724
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2441
2725
|
url: "/ai/graph/nodes/{id}",
|
|
2442
2726
|
...options
|
|
2443
2727
|
});
|
|
2444
2728
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
2729
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2445
2730
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2446
2731
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
2447
2732
|
...options,
|
|
@@ -2451,16 +2736,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
2451
2736
|
}
|
|
2452
2737
|
});
|
|
2453
2738
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
2739
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2454
2740
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2455
2741
|
url: "/applications/{id}",
|
|
2456
2742
|
...options
|
|
2457
2743
|
});
|
|
2458
2744
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
2745
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2459
2746
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2460
2747
|
url: "/applications/{id}",
|
|
2461
2748
|
...options
|
|
2462
2749
|
});
|
|
2463
2750
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
2751
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2464
2752
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2465
2753
|
url: "/applications/{id}",
|
|
2466
2754
|
...options,
|
|
@@ -2470,21 +2758,41 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
2470
2758
|
}
|
|
2471
2759
|
});
|
|
2472
2760
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
2761
|
+
querySerializer: {
|
|
2762
|
+
parameters: {
|
|
2763
|
+
filter: { object: { style: "form" } },
|
|
2764
|
+
fields: { object: { style: "form" } }
|
|
2765
|
+
}
|
|
2766
|
+
},
|
|
2473
2767
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2474
2768
|
url: "/search/health",
|
|
2475
2769
|
...options
|
|
2476
2770
|
});
|
|
2477
2771
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
2772
|
+
querySerializer: {
|
|
2773
|
+
parameters: {
|
|
2774
|
+
filter: { object: { style: "form" } },
|
|
2775
|
+
fields: { object: { style: "form" } }
|
|
2776
|
+
}
|
|
2777
|
+
},
|
|
2478
2778
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2479
2779
|
url: "/transactions",
|
|
2480
2780
|
...options
|
|
2481
2781
|
});
|
|
2482
2782
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
2783
|
+
querySerializer: {
|
|
2784
|
+
parameters: {
|
|
2785
|
+
filter: { object: { style: "form" } },
|
|
2786
|
+
page: { object: { style: "form" } },
|
|
2787
|
+
fields: { object: { style: "form" } }
|
|
2788
|
+
}
|
|
2789
|
+
},
|
|
2483
2790
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2484
2791
|
url: "/user_profiles",
|
|
2485
2792
|
...options
|
|
2486
2793
|
});
|
|
2487
2794
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
2795
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2488
2796
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2489
2797
|
url: "/user_profiles",
|
|
2490
2798
|
...options,
|
|
@@ -2494,6 +2802,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
2494
2802
|
}
|
|
2495
2803
|
});
|
|
2496
2804
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
2805
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2497
2806
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2498
2807
|
url: "/users/{id}/confirm-email",
|
|
2499
2808
|
...options,
|
|
@@ -2503,11 +2812,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
2503
2812
|
}
|
|
2504
2813
|
});
|
|
2505
2814
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
2815
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2506
2816
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2507
2817
|
url: "/threads/search",
|
|
2508
2818
|
...options
|
|
2509
2819
|
});
|
|
2510
2820
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
2821
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2511
2822
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2512
2823
|
url: "/wallet/plan",
|
|
2513
2824
|
...options,
|
|
@@ -2517,11 +2828,13 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
2517
2828
|
}
|
|
2518
2829
|
});
|
|
2519
2830
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
2831
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2520
2832
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2521
2833
|
url: "/plans/slug/{slug}",
|
|
2522
2834
|
...options
|
|
2523
2835
|
});
|
|
2524
2836
|
var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client).patch({
|
|
2837
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2525
2838
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2526
2839
|
url: "/extraction/documents/{id}/restore",
|
|
2527
2840
|
...options,
|
|
@@ -2531,16 +2844,25 @@ var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client
|
|
|
2531
2844
|
}
|
|
2532
2845
|
});
|
|
2533
2846
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
2847
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2534
2848
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2535
2849
|
url: "/llm_analytics/{id}",
|
|
2536
2850
|
...options
|
|
2537
2851
|
});
|
|
2538
2852
|
var getExtractionSchemaFields = (options) => (options.client ?? client).get({
|
|
2853
|
+
querySerializer: {
|
|
2854
|
+
parameters: {
|
|
2855
|
+
filter: { object: { style: "form" } },
|
|
2856
|
+
page: { object: { style: "form" } },
|
|
2857
|
+
fields: { object: { style: "form" } }
|
|
2858
|
+
}
|
|
2859
|
+
},
|
|
2539
2860
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2540
2861
|
url: "/extraction/schema-fields",
|
|
2541
2862
|
...options
|
|
2542
2863
|
});
|
|
2543
2864
|
var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
2865
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2544
2866
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2545
2867
|
url: "/extraction/schema-fields",
|
|
2546
2868
|
...options,
|
|
@@ -2550,6 +2872,7 @@ var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
|
2550
2872
|
}
|
|
2551
2873
|
});
|
|
2552
2874
|
var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? client).patch({
|
|
2875
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2553
2876
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2554
2877
|
url: "/extraction/documents/{id}/mark_trained",
|
|
2555
2878
|
...options,
|
|
@@ -2559,6 +2882,7 @@ var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? cl
|
|
|
2559
2882
|
}
|
|
2560
2883
|
});
|
|
2561
2884
|
var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).patch({
|
|
2885
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2562
2886
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2563
2887
|
url: "/applications/{id}/grant-credits",
|
|
2564
2888
|
...options,
|
|
@@ -2568,16 +2892,29 @@ var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).
|
|
|
2568
2892
|
}
|
|
2569
2893
|
});
|
|
2570
2894
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
2895
|
+
querySerializer: {
|
|
2896
|
+
parameters: {
|
|
2897
|
+
filter: { object: { style: "form" } },
|
|
2898
|
+
fields: { object: { style: "form" } }
|
|
2899
|
+
}
|
|
2900
|
+
},
|
|
2571
2901
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2572
2902
|
url: "/search/status",
|
|
2573
2903
|
...options
|
|
2574
2904
|
});
|
|
2575
2905
|
var getTenantsByTenantIdWorkspaceStats = (options) => (options.client ?? client).get({
|
|
2906
|
+
querySerializer: {
|
|
2907
|
+
parameters: {
|
|
2908
|
+
filter: { object: { style: "form" } },
|
|
2909
|
+
fields: { object: { style: "form" } }
|
|
2910
|
+
}
|
|
2911
|
+
},
|
|
2576
2912
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2577
2913
|
url: "/tenants/{tenant_id}/workspace_stats",
|
|
2578
2914
|
...options
|
|
2579
2915
|
});
|
|
2580
2916
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
2917
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2581
2918
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2582
2919
|
url: "/api_keys/{id}/allocate",
|
|
2583
2920
|
...options,
|
|
@@ -2587,6 +2924,7 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
2587
2924
|
}
|
|
2588
2925
|
});
|
|
2589
2926
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
2927
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2590
2928
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2591
2929
|
url: "/users/auth/login",
|
|
2592
2930
|
...options,
|
|
@@ -2596,6 +2934,7 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
2596
2934
|
}
|
|
2597
2935
|
});
|
|
2598
2936
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
2937
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2599
2938
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2600
2939
|
url: "/ai/embed",
|
|
2601
2940
|
...options,
|
|
@@ -2605,11 +2944,18 @@ var postAiEmbed = (options) => (options.client ?? client).post({
|
|
|
2605
2944
|
}
|
|
2606
2945
|
});
|
|
2607
2946
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
2947
|
+
querySerializer: {
|
|
2948
|
+
parameters: {
|
|
2949
|
+
filter: { object: { style: "form" } },
|
|
2950
|
+
fields: { object: { style: "form" } }
|
|
2951
|
+
}
|
|
2952
|
+
},
|
|
2608
2953
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2609
2954
|
url: "/workspaces/mine",
|
|
2610
2955
|
...options
|
|
2611
2956
|
});
|
|
2612
2957
|
var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
2958
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2613
2959
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2614
2960
|
url: "/tenants/isv",
|
|
2615
2961
|
...options,
|
|
@@ -2619,6 +2965,7 @@ var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
|
2619
2965
|
}
|
|
2620
2966
|
});
|
|
2621
2967
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
2968
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2622
2969
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2623
2970
|
url: "/search/reindex",
|
|
2624
2971
|
...options,
|
|
@@ -2628,6 +2975,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
2628
2975
|
}
|
|
2629
2976
|
});
|
|
2630
2977
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
2978
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2631
2979
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2632
2980
|
url: "/extraction/results/{id}/regenerate",
|
|
2633
2981
|
...options,
|
|
@@ -2637,6 +2985,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
2637
2985
|
}
|
|
2638
2986
|
});
|
|
2639
2987
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
2988
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2640
2989
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2641
2990
|
url: "/users/auth/confirm",
|
|
2642
2991
|
...options,
|
|
@@ -2646,11 +2995,19 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
2646
2995
|
}
|
|
2647
2996
|
});
|
|
2648
2997
|
var getExtractionSchemas = (options) => (options.client ?? client).get({
|
|
2998
|
+
querySerializer: {
|
|
2999
|
+
parameters: {
|
|
3000
|
+
filter: { object: { style: "form" } },
|
|
3001
|
+
page: { object: { style: "form" } },
|
|
3002
|
+
fields: { object: { style: "form" } }
|
|
3003
|
+
}
|
|
3004
|
+
},
|
|
2649
3005
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2650
3006
|
url: "/extraction/schemas",
|
|
2651
3007
|
...options
|
|
2652
3008
|
});
|
|
2653
3009
|
var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
3010
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2654
3011
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2655
3012
|
url: "/extraction/schemas",
|
|
2656
3013
|
...options,
|
|
@@ -2660,11 +3017,18 @@ var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
|
2660
3017
|
}
|
|
2661
3018
|
});
|
|
2662
3019
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
3020
|
+
querySerializer: {
|
|
3021
|
+
parameters: {
|
|
3022
|
+
filter: { object: { style: "form" } },
|
|
3023
|
+
fields: { object: { style: "form" } }
|
|
3024
|
+
}
|
|
3025
|
+
},
|
|
2663
3026
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2664
3027
|
url: "/storage/stats",
|
|
2665
3028
|
...options
|
|
2666
3029
|
});
|
|
2667
3030
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
3031
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2668
3032
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2669
3033
|
url: "/tenants/{id}/buy-storage",
|
|
2670
3034
|
...options,
|
|
@@ -2674,11 +3038,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
2674
3038
|
}
|
|
2675
3039
|
});
|
|
2676
3040
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
3041
|
+
querySerializer: {
|
|
3042
|
+
parameters: {
|
|
3043
|
+
filter: { object: { style: "form" } },
|
|
3044
|
+
page: { object: { style: "form" } },
|
|
3045
|
+
fields: { object: { style: "form" } }
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
2677
3048
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2678
3049
|
url: "/workspace-memberships",
|
|
2679
3050
|
...options
|
|
2680
3051
|
});
|
|
2681
3052
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
3053
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2682
3054
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2683
3055
|
url: "/workspace-memberships",
|
|
2684
3056
|
...options,
|
|
@@ -2688,11 +3060,13 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
2688
3060
|
}
|
|
2689
3061
|
});
|
|
2690
3062
|
var getTenantsByTenantIdDocumentStats = (options) => (options.client ?? client).get({
|
|
3063
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2691
3064
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2692
3065
|
url: "/tenants/{tenant_id}/document_stats",
|
|
2693
3066
|
...options
|
|
2694
3067
|
});
|
|
2695
3068
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
3069
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2696
3070
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2697
3071
|
url: "/users/auth/magic_link/request",
|
|
2698
3072
|
...options,
|
|
@@ -2702,6 +3076,7 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
2702
3076
|
}
|
|
2703
3077
|
});
|
|
2704
3078
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
3079
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2705
3080
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2706
3081
|
url: "/users/auth/register",
|
|
2707
3082
|
...options,
|
|
@@ -2720,16 +3095,19 @@ var postTrainingExamplesBulk = (options) => (options.client ?? client).post({
|
|
|
2720
3095
|
}
|
|
2721
3096
|
});
|
|
2722
3097
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
3098
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2723
3099
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2724
3100
|
url: "/buckets/{id}",
|
|
2725
3101
|
...options
|
|
2726
3102
|
});
|
|
2727
3103
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
3104
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2728
3105
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2729
3106
|
url: "/buckets/{id}",
|
|
2730
3107
|
...options
|
|
2731
3108
|
});
|
|
2732
3109
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
3110
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2733
3111
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2734
3112
|
url: "/buckets/{id}",
|
|
2735
3113
|
...options,
|
|
@@ -2739,11 +3117,18 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
2739
3117
|
}
|
|
2740
3118
|
});
|
|
2741
3119
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
3120
|
+
querySerializer: {
|
|
3121
|
+
parameters: {
|
|
3122
|
+
filter: { object: { style: "form" } },
|
|
3123
|
+
fields: { object: { style: "form" } }
|
|
3124
|
+
}
|
|
3125
|
+
},
|
|
2742
3126
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2743
3127
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
2744
3128
|
...options
|
|
2745
3129
|
});
|
|
2746
3130
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
3131
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2747
3132
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2748
3133
|
url: "/extraction/documents/begin_upload",
|
|
2749
3134
|
...options,
|
|
@@ -2753,21 +3138,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
2753
3138
|
}
|
|
2754
3139
|
});
|
|
2755
3140
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
3141
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2756
3142
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2757
3143
|
url: "/ai/graph/edges/{id}",
|
|
2758
3144
|
...options
|
|
2759
3145
|
});
|
|
2760
3146
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
3147
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2761
3148
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2762
3149
|
url: "/tenants/{id}",
|
|
2763
3150
|
...options
|
|
2764
3151
|
});
|
|
2765
3152
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
3153
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2766
3154
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2767
3155
|
url: "/tenants/{id}",
|
|
2768
3156
|
...options
|
|
2769
3157
|
});
|
|
2770
3158
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
3159
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2771
3160
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2772
3161
|
url: "/tenants/{id}",
|
|
2773
3162
|
...options,
|
|
@@ -2777,11 +3166,19 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
2777
3166
|
}
|
|
2778
3167
|
});
|
|
2779
3168
|
var getPlans = (options) => (options.client ?? client).get({
|
|
3169
|
+
querySerializer: {
|
|
3170
|
+
parameters: {
|
|
3171
|
+
filter: { object: { style: "form" } },
|
|
3172
|
+
page: { object: { style: "form" } },
|
|
3173
|
+
fields: { object: { style: "form" } }
|
|
3174
|
+
}
|
|
3175
|
+
},
|
|
2780
3176
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2781
3177
|
url: "/plans",
|
|
2782
3178
|
...options
|
|
2783
3179
|
});
|
|
2784
3180
|
var patchExtractionSchemasByIdFields = (options) => (options.client ?? client).patch({
|
|
3181
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2785
3182
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2786
3183
|
url: "/extraction/schemas/{id}/fields",
|
|
2787
3184
|
...options,
|
|
@@ -2791,11 +3188,13 @@ var patchExtractionSchemasByIdFields = (options) => (options.client ?? client).p
|
|
|
2791
3188
|
}
|
|
2792
3189
|
});
|
|
2793
3190
|
var getExtractionSchemasById = (options) => (options.client ?? client).get({
|
|
3191
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2794
3192
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2795
3193
|
url: "/extraction/schemas/{id}",
|
|
2796
3194
|
...options
|
|
2797
3195
|
});
|
|
2798
3196
|
var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
3197
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2799
3198
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2800
3199
|
url: "/extraction/schemas/{id}",
|
|
2801
3200
|
...options,
|
|
@@ -2805,6 +3204,7 @@ var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
|
2805
3204
|
}
|
|
2806
3205
|
});
|
|
2807
3206
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
3207
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2808
3208
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2809
3209
|
url: "/agents/{id}/test",
|
|
2810
3210
|
...options,
|
|
@@ -2814,16 +3214,24 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
2814
3214
|
}
|
|
2815
3215
|
});
|
|
2816
3216
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
3217
|
+
querySerializer: {
|
|
3218
|
+
parameters: {
|
|
3219
|
+
filter: { object: { style: "form" } },
|
|
3220
|
+
fields: { object: { style: "form" } }
|
|
3221
|
+
}
|
|
3222
|
+
},
|
|
2817
3223
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2818
3224
|
url: "/extraction/documents",
|
|
2819
3225
|
...options
|
|
2820
3226
|
});
|
|
2821
3227
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
3228
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2822
3229
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2823
3230
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2824
3231
|
...options
|
|
2825
3232
|
});
|
|
2826
3233
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
3234
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2827
3235
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2828
3236
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2829
3237
|
...options,
|
|
@@ -2833,6 +3241,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
2833
3241
|
}
|
|
2834
3242
|
});
|
|
2835
3243
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
3244
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2836
3245
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2837
3246
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
2838
3247
|
...options,
|
|
@@ -2842,11 +3251,18 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
2842
3251
|
}
|
|
2843
3252
|
});
|
|
2844
3253
|
var getFieldTemplates = (options) => (options.client ?? client).get({
|
|
3254
|
+
querySerializer: {
|
|
3255
|
+
parameters: {
|
|
3256
|
+
filter: { object: { style: "form" } },
|
|
3257
|
+
fields: { object: { style: "form" } }
|
|
3258
|
+
}
|
|
3259
|
+
},
|
|
2845
3260
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2846
3261
|
url: "/field_templates",
|
|
2847
3262
|
...options
|
|
2848
3263
|
});
|
|
2849
3264
|
var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
3265
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2850
3266
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2851
3267
|
url: "/field_templates",
|
|
2852
3268
|
...options,
|
|
@@ -2856,11 +3272,19 @@ var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
|
2856
3272
|
}
|
|
2857
3273
|
});
|
|
2858
3274
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
3275
|
+
querySerializer: {
|
|
3276
|
+
parameters: {
|
|
3277
|
+
filter: { object: { style: "form" } },
|
|
3278
|
+
page: { object: { style: "form" } },
|
|
3279
|
+
fields: { object: { style: "form" } }
|
|
3280
|
+
}
|
|
3281
|
+
},
|
|
2859
3282
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2860
3283
|
url: "/ai/messages",
|
|
2861
3284
|
...options
|
|
2862
3285
|
});
|
|
2863
3286
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
3287
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2864
3288
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2865
3289
|
url: "/ai/messages",
|
|
2866
3290
|
...options,
|
|
@@ -2870,6 +3294,7 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
2870
3294
|
}
|
|
2871
3295
|
});
|
|
2872
3296
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
3297
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2873
3298
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2874
3299
|
url: "/storage/sign_upload",
|
|
2875
3300
|
...options,
|
|
@@ -2879,6 +3304,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
2879
3304
|
}
|
|
2880
3305
|
});
|
|
2881
3306
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
3307
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2882
3308
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2883
3309
|
url: "/webhook_deliveries/{id}/retry",
|
|
2884
3310
|
...options,
|
|
@@ -2888,11 +3314,19 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
2888
3314
|
}
|
|
2889
3315
|
});
|
|
2890
3316
|
var getNotificationMethods = (options) => (options.client ?? client).get({
|
|
3317
|
+
querySerializer: {
|
|
3318
|
+
parameters: {
|
|
3319
|
+
filter: { object: { style: "form" } },
|
|
3320
|
+
page: { object: { style: "form" } },
|
|
3321
|
+
fields: { object: { style: "form" } }
|
|
3322
|
+
}
|
|
3323
|
+
},
|
|
2891
3324
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2892
3325
|
url: "/notification_methods",
|
|
2893
3326
|
...options
|
|
2894
3327
|
});
|
|
2895
3328
|
var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
3329
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2896
3330
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2897
3331
|
url: "/notification_methods",
|
|
2898
3332
|
...options,
|
|
@@ -2902,6 +3336,7 @@ var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
|
2902
3336
|
}
|
|
2903
3337
|
});
|
|
2904
3338
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
3339
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2905
3340
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2906
3341
|
url: "/threads/{id}/summarize",
|
|
2907
3342
|
...options,
|
|
@@ -2911,6 +3346,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
2911
3346
|
}
|
|
2912
3347
|
});
|
|
2913
3348
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
3349
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2914
3350
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2915
3351
|
url: "/configs/{key}",
|
|
2916
3352
|
...options,
|
|
@@ -2920,6 +3356,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
2920
3356
|
}
|
|
2921
3357
|
});
|
|
2922
3358
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
3359
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2923
3360
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2924
3361
|
url: "/api_keys/{id}/rotate",
|
|
2925
3362
|
...options,
|
|
@@ -2929,6 +3366,7 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
2929
3366
|
}
|
|
2930
3367
|
});
|
|
2931
3368
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
3369
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2932
3370
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2933
3371
|
url: "/extraction/results",
|
|
2934
3372
|
...options,
|
|
@@ -2938,6 +3376,7 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
2938
3376
|
}
|
|
2939
3377
|
});
|
|
2940
3378
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
3379
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2941
3380
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2942
3381
|
url: "/agents/{id}/clone",
|
|
2943
3382
|
...options,
|
|
@@ -2947,16 +3386,19 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
2947
3386
|
}
|
|
2948
3387
|
});
|
|
2949
3388
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
3389
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2950
3390
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2951
3391
|
url: "/ai/conversations/{id}",
|
|
2952
3392
|
...options
|
|
2953
3393
|
});
|
|
2954
3394
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
3395
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2955
3396
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2956
3397
|
url: "/ai/conversations/{id}",
|
|
2957
3398
|
...options
|
|
2958
3399
|
});
|
|
2959
3400
|
var postExtractionSchemasBulkCreate = (options) => (options.client ?? client).post({
|
|
3401
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2960
3402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2961
3403
|
url: "/extraction/schemas/bulk_create",
|
|
2962
3404
|
...options,
|
|
@@ -2966,16 +3408,19 @@ var postExtractionSchemasBulkCreate = (options) => (options.client ?? client).po
|
|
|
2966
3408
|
}
|
|
2967
3409
|
});
|
|
2968
3410
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
3411
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2969
3412
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2970
3413
|
url: "/user_profiles/{id}",
|
|
2971
3414
|
...options
|
|
2972
3415
|
});
|
|
2973
3416
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
3417
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2974
3418
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2975
3419
|
url: "/user_profiles/{id}",
|
|
2976
3420
|
...options
|
|
2977
3421
|
});
|
|
2978
3422
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
3423
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2979
3424
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2980
3425
|
url: "/user_profiles/{id}",
|
|
2981
3426
|
...options,
|
|
@@ -2985,26 +3430,43 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
2985
3430
|
}
|
|
2986
3431
|
});
|
|
2987
3432
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
3433
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2988
3434
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2989
3435
|
url: "/objects/{id}",
|
|
2990
3436
|
...options
|
|
2991
3437
|
});
|
|
2992
3438
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
3439
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2993
3440
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2994
3441
|
url: "/objects/{id}",
|
|
2995
3442
|
...options
|
|
2996
3443
|
});
|
|
2997
3444
|
var getExtractionDocumentsWorkspaceByWorkspaceIdExcluded = (options) => (options.client ?? client).get({
|
|
3445
|
+
querySerializer: {
|
|
3446
|
+
parameters: {
|
|
3447
|
+
filter: { object: { style: "form" } },
|
|
3448
|
+
page: { object: { style: "form" } },
|
|
3449
|
+
fields: { object: { style: "form" } }
|
|
3450
|
+
}
|
|
3451
|
+
},
|
|
2998
3452
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2999
3453
|
url: "/extraction/documents/workspace/{workspace_id}/excluded",
|
|
3000
3454
|
...options
|
|
3001
3455
|
});
|
|
3002
3456
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
3457
|
+
querySerializer: {
|
|
3458
|
+
parameters: {
|
|
3459
|
+
filter: { object: { style: "form" } },
|
|
3460
|
+
page: { object: { style: "form" } },
|
|
3461
|
+
fields: { object: { style: "form" } }
|
|
3462
|
+
}
|
|
3463
|
+
},
|
|
3003
3464
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3004
3465
|
url: "/webhook_configs",
|
|
3005
3466
|
...options
|
|
3006
3467
|
});
|
|
3007
3468
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
3469
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3008
3470
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3009
3471
|
url: "/webhook_configs",
|
|
3010
3472
|
...options,
|
|
@@ -3014,6 +3476,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
3014
3476
|
}
|
|
3015
3477
|
});
|
|
3016
3478
|
var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post({
|
|
3479
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3017
3480
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3018
3481
|
url: "/agents/{id}/publish_version",
|
|
3019
3482
|
...options,
|
|
@@ -3023,6 +3486,7 @@ var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post(
|
|
|
3023
3486
|
}
|
|
3024
3487
|
});
|
|
3025
3488
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
3489
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3026
3490
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3027
3491
|
url: "/objects/bulk-destroy",
|
|
3028
3492
|
...options,
|
|
@@ -3032,21 +3496,30 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
3032
3496
|
}
|
|
3033
3497
|
});
|
|
3034
3498
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
3499
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3035
3500
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3036
3501
|
url: "/applications/by-slug/{slug}",
|
|
3037
3502
|
...options
|
|
3038
3503
|
});
|
|
3039
3504
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
3505
|
+
querySerializer: {
|
|
3506
|
+
parameters: {
|
|
3507
|
+
filter: { object: { style: "form" } },
|
|
3508
|
+
fields: { object: { style: "form" } }
|
|
3509
|
+
}
|
|
3510
|
+
},
|
|
3040
3511
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3041
3512
|
url: "/notification_logs",
|
|
3042
3513
|
...options
|
|
3043
3514
|
});
|
|
3044
3515
|
var getWallet = (options) => (options.client ?? client).get({
|
|
3516
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3045
3517
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3046
3518
|
url: "/wallet",
|
|
3047
3519
|
...options
|
|
3048
3520
|
});
|
|
3049
3521
|
var patchExtractionSchemasByIdActivate = (options) => (options.client ?? client).patch({
|
|
3522
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3050
3523
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3051
3524
|
url: "/extraction/schemas/{id}/activate",
|
|
3052
3525
|
...options,
|
|
@@ -3056,16 +3529,19 @@ var patchExtractionSchemasByIdActivate = (options) => (options.client ?? client)
|
|
|
3056
3529
|
}
|
|
3057
3530
|
});
|
|
3058
3531
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
3532
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3059
3533
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3060
3534
|
url: "/messages/{id}",
|
|
3061
3535
|
...options
|
|
3062
3536
|
});
|
|
3063
3537
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
3538
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3064
3539
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3065
3540
|
url: "/messages/{id}",
|
|
3066
3541
|
...options
|
|
3067
3542
|
});
|
|
3068
3543
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
3544
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3069
3545
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3070
3546
|
url: "/messages/{id}",
|
|
3071
3547
|
...options,
|
|
@@ -3075,26 +3551,36 @@ var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
|
3075
3551
|
}
|
|
3076
3552
|
});
|
|
3077
3553
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
3554
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3078
3555
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3079
3556
|
url: "/llm_analytics/usage",
|
|
3080
3557
|
...options
|
|
3081
3558
|
});
|
|
3082
3559
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
3560
|
+
querySerializer: {
|
|
3561
|
+
parameters: {
|
|
3562
|
+
filter: { object: { style: "form" } },
|
|
3563
|
+
fields: { object: { style: "form" } }
|
|
3564
|
+
}
|
|
3565
|
+
},
|
|
3083
3566
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3084
3567
|
url: "/search/stats",
|
|
3085
3568
|
...options
|
|
3086
3569
|
});
|
|
3087
3570
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
3571
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3088
3572
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3089
3573
|
url: "/notification_preferences/{id}",
|
|
3090
3574
|
...options
|
|
3091
3575
|
});
|
|
3092
3576
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
3577
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3093
3578
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3094
3579
|
url: "/notification_preferences/{id}",
|
|
3095
3580
|
...options
|
|
3096
3581
|
});
|
|
3097
3582
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
3583
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3098
3584
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3099
3585
|
url: "/notification_preferences/{id}",
|
|
3100
3586
|
...options,
|
|
@@ -3104,11 +3590,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
3104
3590
|
}
|
|
3105
3591
|
});
|
|
3106
3592
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
3593
|
+
querySerializer: {
|
|
3594
|
+
parameters: {
|
|
3595
|
+
filter: { object: { style: "form" } },
|
|
3596
|
+
page: { object: { style: "form" } },
|
|
3597
|
+
fields: { object: { style: "form" } }
|
|
3598
|
+
}
|
|
3599
|
+
},
|
|
3107
3600
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3108
3601
|
url: "/ai/graph/nodes",
|
|
3109
3602
|
...options
|
|
3110
3603
|
});
|
|
3111
3604
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
3605
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3112
3606
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3113
3607
|
url: "/ai/graph/nodes",
|
|
3114
3608
|
...options,
|
|
@@ -3118,11 +3612,19 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
3118
3612
|
}
|
|
3119
3613
|
});
|
|
3120
3614
|
var getAgents = (options) => (options.client ?? client).get({
|
|
3615
|
+
querySerializer: {
|
|
3616
|
+
parameters: {
|
|
3617
|
+
filter: { object: { style: "form" } },
|
|
3618
|
+
page: { object: { style: "form" } },
|
|
3619
|
+
fields: { object: { style: "form" } }
|
|
3620
|
+
}
|
|
3621
|
+
},
|
|
3121
3622
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3122
3623
|
url: "/agents",
|
|
3123
3624
|
...options
|
|
3124
3625
|
});
|
|
3125
3626
|
var postAgents = (options) => (options.client ?? client).post({
|
|
3627
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3126
3628
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3127
3629
|
url: "/agents",
|
|
3128
3630
|
...options,
|
|
@@ -3132,6 +3634,7 @@ var postAgents = (options) => (options.client ?? client).post({
|
|
|
3132
3634
|
}
|
|
3133
3635
|
});
|
|
3134
3636
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
3637
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3135
3638
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3136
3639
|
url: "/users/register_isv",
|
|
3137
3640
|
...options,
|
|
@@ -3141,16 +3644,25 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
3141
3644
|
}
|
|
3142
3645
|
});
|
|
3143
3646
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
3647
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3144
3648
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3145
3649
|
url: "/extraction/batches/{id}",
|
|
3146
3650
|
...options
|
|
3147
3651
|
});
|
|
3148
3652
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
3653
|
+
querySerializer: {
|
|
3654
|
+
parameters: {
|
|
3655
|
+
filter: { object: { style: "form" } },
|
|
3656
|
+
page: { object: { style: "form" } },
|
|
3657
|
+
fields: { object: { style: "form" } }
|
|
3658
|
+
}
|
|
3659
|
+
},
|
|
3149
3660
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3150
3661
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
3151
3662
|
...options
|
|
3152
3663
|
});
|
|
3153
3664
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
3665
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3154
3666
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3155
3667
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
3156
3668
|
...options,
|
|
@@ -3160,11 +3672,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
3160
3672
|
}
|
|
3161
3673
|
});
|
|
3162
3674
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
3675
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3163
3676
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3164
3677
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
3165
3678
|
...options
|
|
3166
3679
|
});
|
|
3167
3680
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
3681
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3168
3682
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3169
3683
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
3170
3684
|
...options,
|
|
@@ -3174,16 +3688,37 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
3174
3688
|
}
|
|
3175
3689
|
});
|
|
3176
3690
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
3691
|
+
querySerializer: {
|
|
3692
|
+
parameters: {
|
|
3693
|
+
filter: { object: { style: "form" } },
|
|
3694
|
+
page: { object: { style: "form" } },
|
|
3695
|
+
fields: { object: { style: "form" } }
|
|
3696
|
+
}
|
|
3697
|
+
},
|
|
3177
3698
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3178
3699
|
url: "/credit-packages",
|
|
3179
3700
|
...options
|
|
3180
3701
|
});
|
|
3181
3702
|
var getUsers = (options) => (options.client ?? client).get({
|
|
3703
|
+
querySerializer: {
|
|
3704
|
+
parameters: {
|
|
3705
|
+
filter: { object: { style: "form" } },
|
|
3706
|
+
page: { object: { style: "form" } },
|
|
3707
|
+
fields: { object: { style: "form" } }
|
|
3708
|
+
}
|
|
3709
|
+
},
|
|
3182
3710
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3183
3711
|
url: "/users",
|
|
3184
3712
|
...options
|
|
3185
3713
|
});
|
|
3186
3714
|
var getObjects = (options) => (options.client ?? client).get({
|
|
3715
|
+
querySerializer: {
|
|
3716
|
+
parameters: {
|
|
3717
|
+
filter: { object: { style: "form" } },
|
|
3718
|
+
page: { object: { style: "form" } },
|
|
3719
|
+
fields: { object: { style: "form" } }
|
|
3720
|
+
}
|
|
3721
|
+
},
|
|
3187
3722
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3188
3723
|
url: "/objects",
|
|
3189
3724
|
...options
|