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