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