@seekora-ai/admin-api 1.2.12 → 1.2.14

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/esm/api.js CHANGED
@@ -92,6 +92,10 @@ export const ConnectorUpdateTaskRequestWriteActionEnum = {
92
92
  InsertOnly: 'insert_only',
93
93
  UpdateOnly: 'update_only'
94
94
  };
95
+ export const ConnectorUpdateTransformationRequestTransformTypeEnum = {
96
+ Code: 'code',
97
+ Nocode: 'nocode'
98
+ };
95
99
  export const ConnectorsCreateConnectorRequestConnectorTypeEnum = {
96
100
  Import: 'import',
97
101
  Export: 'export'
@@ -1579,6 +1583,333 @@ export class AdminAnalyticsApi extends BaseAPI {
1579
1583
  return AdminAnalyticsApiFp(this.configuration).v1AdminAnalyticsTestModePost(body, options).then((request) => request(this.axios, this.basePath));
1580
1584
  }
1581
1585
  }
1586
+ /**
1587
+ * AdminConnectorWebhooksApi - axios parameter creator
1588
+ * @export
1589
+ */
1590
+ export const AdminConnectorWebhooksApiAxiosParamCreator = function (configuration) {
1591
+ return {
1592
+ /**
1593
+ * Re-publish a previously recorded delivery through the forge.webhook exchange. A new external_id is minted so the worker processes the replay end-to-end.
1594
+ * @summary Replay a recorded webhook delivery
1595
+ * @param {string} sourceUuid Connector source UUID
1596
+ * @param {string} deliveryUuid Delivery UUID to replay
1597
+ * @param {*} [options] Override http request option.
1598
+ * @throws {RequiredError}
1599
+ */
1600
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost: (sourceUuid_1, deliveryUuid_1, ...args_1) => __awaiter(this, [sourceUuid_1, deliveryUuid_1, ...args_1], void 0, function* (sourceUuid, deliveryUuid, options = {}) {
1601
+ // verify required parameter 'sourceUuid' is not null or undefined
1602
+ assertParamExists('adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost', 'sourceUuid', sourceUuid);
1603
+ // verify required parameter 'deliveryUuid' is not null or undefined
1604
+ assertParamExists('adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost', 'deliveryUuid', deliveryUuid);
1605
+ const localVarPath = `/admin/connectors/sources/{source_uuid}/webhooks/deliveries/{delivery_uuid}/replay`
1606
+ .replace(`{${"source_uuid"}}`, encodeURIComponent(String(sourceUuid)))
1607
+ .replace(`{${"delivery_uuid"}}`, encodeURIComponent(String(deliveryUuid)));
1608
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1609
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1610
+ let baseOptions;
1611
+ if (configuration) {
1612
+ baseOptions = configuration.baseOptions;
1613
+ }
1614
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1615
+ const localVarHeaderParameter = {};
1616
+ const localVarQueryParameter = {};
1617
+ // authentication BearerAuth required
1618
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
1619
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1620
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1621
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1622
+ return {
1623
+ url: toPathString(localVarUrlObj),
1624
+ options: localVarRequestOptions,
1625
+ };
1626
+ }),
1627
+ /**
1628
+ * Paginated list of recent webhook deliveries for a connector source. body_base64 is redacted; use replay to send a delivery through the pipeline again.
1629
+ * @summary List recent webhook deliveries
1630
+ * @param {string} sourceUuid Connector source UUID
1631
+ * @param {string} [status] Filter by delivery status (pending, processed, failed)
1632
+ * @param {number} [limit] Page size (default 50, max 200)
1633
+ * @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
1634
+ * @param {*} [options] Override http request option.
1635
+ * @throws {RequiredError}
1636
+ */
1637
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet: (sourceUuid_1, status_1, limit_1, beforeUuid_1, ...args_1) => __awaiter(this, [sourceUuid_1, status_1, limit_1, beforeUuid_1, ...args_1], void 0, function* (sourceUuid, status, limit, beforeUuid, options = {}) {
1638
+ // verify required parameter 'sourceUuid' is not null or undefined
1639
+ assertParamExists('adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet', 'sourceUuid', sourceUuid);
1640
+ const localVarPath = `/admin/connectors/sources/{source_uuid}/webhooks/deliveries`
1641
+ .replace(`{${"source_uuid"}}`, encodeURIComponent(String(sourceUuid)));
1642
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1643
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1644
+ let baseOptions;
1645
+ if (configuration) {
1646
+ baseOptions = configuration.baseOptions;
1647
+ }
1648
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1649
+ const localVarHeaderParameter = {};
1650
+ const localVarQueryParameter = {};
1651
+ // authentication BearerAuth required
1652
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
1653
+ if (status !== undefined) {
1654
+ localVarQueryParameter['status'] = status;
1655
+ }
1656
+ if (limit !== undefined) {
1657
+ localVarQueryParameter['limit'] = limit;
1658
+ }
1659
+ if (beforeUuid !== undefined) {
1660
+ localVarQueryParameter['before_uuid'] = beforeUuid;
1661
+ }
1662
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1663
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1664
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1665
+ return {
1666
+ url: toPathString(localVarUrlObj),
1667
+ options: localVarRequestOptions,
1668
+ };
1669
+ }),
1670
+ /**
1671
+ * Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
1672
+ * @summary Resubscribe webhooks for a connector source
1673
+ * @param {string} sourceUuid Connector source UUID
1674
+ * @param {*} [options] Override http request option.
1675
+ * @throws {RequiredError}
1676
+ */
1677
+ adminConnectorsSourcesSourceUuidWebhooksResubscribePost: (sourceUuid_1, ...args_1) => __awaiter(this, [sourceUuid_1, ...args_1], void 0, function* (sourceUuid, options = {}) {
1678
+ // verify required parameter 'sourceUuid' is not null or undefined
1679
+ assertParamExists('adminConnectorsSourcesSourceUuidWebhooksResubscribePost', 'sourceUuid', sourceUuid);
1680
+ const localVarPath = `/admin/connectors/sources/{source_uuid}/webhooks/resubscribe`
1681
+ .replace(`{${"source_uuid"}}`, encodeURIComponent(String(sourceUuid)));
1682
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1683
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1684
+ let baseOptions;
1685
+ if (configuration) {
1686
+ baseOptions = configuration.baseOptions;
1687
+ }
1688
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1689
+ const localVarHeaderParameter = {};
1690
+ const localVarQueryParameter = {};
1691
+ // authentication BearerAuth required
1692
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
1693
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1694
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1695
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1696
+ return {
1697
+ url: toPathString(localVarUrlObj),
1698
+ options: localVarRequestOptions,
1699
+ };
1700
+ }),
1701
+ /**
1702
+ * Iterates every active connector source in the org and re-runs register_webhooks for each. Per-source errors are captured individually — one failure does not block the others.
1703
+ * @summary Resubscribe webhooks for every connector source
1704
+ * @param {*} [options] Override http request option.
1705
+ * @throws {RequiredError}
1706
+ */
1707
+ adminConnectorsWebhooksResubscribeAllPost: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
1708
+ const localVarPath = `/admin/connectors/webhooks/resubscribe-all`;
1709
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1710
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1711
+ let baseOptions;
1712
+ if (configuration) {
1713
+ baseOptions = configuration.baseOptions;
1714
+ }
1715
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1716
+ const localVarHeaderParameter = {};
1717
+ const localVarQueryParameter = {};
1718
+ // authentication BearerAuth required
1719
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
1720
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1721
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1722
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1723
+ return {
1724
+ url: toPathString(localVarUrlObj),
1725
+ options: localVarRequestOptions,
1726
+ };
1727
+ }),
1728
+ };
1729
+ };
1730
+ /**
1731
+ * AdminConnectorWebhooksApi - functional programming interface
1732
+ * @export
1733
+ */
1734
+ export const AdminConnectorWebhooksApiFp = function (configuration) {
1735
+ const localVarAxiosParamCreator = AdminConnectorWebhooksApiAxiosParamCreator(configuration);
1736
+ return {
1737
+ /**
1738
+ * Re-publish a previously recorded delivery through the forge.webhook exchange. A new external_id is minted so the worker processes the replay end-to-end.
1739
+ * @summary Replay a recorded webhook delivery
1740
+ * @param {string} sourceUuid Connector source UUID
1741
+ * @param {string} deliveryUuid Delivery UUID to replay
1742
+ * @param {*} [options] Override http request option.
1743
+ * @throws {RequiredError}
1744
+ */
1745
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid, deliveryUuid, options) {
1746
+ return __awaiter(this, void 0, void 0, function* () {
1747
+ var _a, _b, _c;
1748
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid, deliveryUuid, options);
1749
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1750
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AdminConnectorWebhooksApi.adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1751
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1752
+ });
1753
+ },
1754
+ /**
1755
+ * Paginated list of recent webhook deliveries for a connector source. body_base64 is redacted; use replay to send a delivery through the pipeline again.
1756
+ * @summary List recent webhook deliveries
1757
+ * @param {string} sourceUuid Connector source UUID
1758
+ * @param {string} [status] Filter by delivery status (pending, processed, failed)
1759
+ * @param {number} [limit] Page size (default 50, max 200)
1760
+ * @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
1761
+ * @param {*} [options] Override http request option.
1762
+ * @throws {RequiredError}
1763
+ */
1764
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid, status, limit, beforeUuid, options) {
1765
+ return __awaiter(this, void 0, void 0, function* () {
1766
+ var _a, _b, _c;
1767
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid, status, limit, beforeUuid, options);
1768
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1769
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AdminConnectorWebhooksApi.adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1770
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1771
+ });
1772
+ },
1773
+ /**
1774
+ * Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
1775
+ * @summary Resubscribe webhooks for a connector source
1776
+ * @param {string} sourceUuid Connector source UUID
1777
+ * @param {*} [options] Override http request option.
1778
+ * @throws {RequiredError}
1779
+ */
1780
+ adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid, options) {
1781
+ return __awaiter(this, void 0, void 0, function* () {
1782
+ var _a, _b, _c;
1783
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid, options);
1784
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1785
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AdminConnectorWebhooksApi.adminConnectorsSourcesSourceUuidWebhooksResubscribePost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1786
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1787
+ });
1788
+ },
1789
+ /**
1790
+ * Iterates every active connector source in the org and re-runs register_webhooks for each. Per-source errors are captured individually — one failure does not block the others.
1791
+ * @summary Resubscribe webhooks for every connector source
1792
+ * @param {*} [options] Override http request option.
1793
+ * @throws {RequiredError}
1794
+ */
1795
+ adminConnectorsWebhooksResubscribeAllPost(options) {
1796
+ return __awaiter(this, void 0, void 0, function* () {
1797
+ var _a, _b, _c;
1798
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminConnectorsWebhooksResubscribeAllPost(options);
1799
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1800
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AdminConnectorWebhooksApi.adminConnectorsWebhooksResubscribeAllPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1801
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1802
+ });
1803
+ },
1804
+ };
1805
+ };
1806
+ /**
1807
+ * AdminConnectorWebhooksApi - factory interface
1808
+ * @export
1809
+ */
1810
+ export const AdminConnectorWebhooksApiFactory = function (configuration, basePath, axios) {
1811
+ const localVarFp = AdminConnectorWebhooksApiFp(configuration);
1812
+ return {
1813
+ /**
1814
+ * Re-publish a previously recorded delivery through the forge.webhook exchange. A new external_id is minted so the worker processes the replay end-to-end.
1815
+ * @summary Replay a recorded webhook delivery
1816
+ * @param {string} sourceUuid Connector source UUID
1817
+ * @param {string} deliveryUuid Delivery UUID to replay
1818
+ * @param {*} [options] Override http request option.
1819
+ * @throws {RequiredError}
1820
+ */
1821
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid, deliveryUuid, options) {
1822
+ return localVarFp.adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid, deliveryUuid, options).then((request) => request(axios, basePath));
1823
+ },
1824
+ /**
1825
+ * Paginated list of recent webhook deliveries for a connector source. body_base64 is redacted; use replay to send a delivery through the pipeline again.
1826
+ * @summary List recent webhook deliveries
1827
+ * @param {string} sourceUuid Connector source UUID
1828
+ * @param {string} [status] Filter by delivery status (pending, processed, failed)
1829
+ * @param {number} [limit] Page size (default 50, max 200)
1830
+ * @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
1831
+ * @param {*} [options] Override http request option.
1832
+ * @throws {RequiredError}
1833
+ */
1834
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid, status, limit, beforeUuid, options) {
1835
+ return localVarFp.adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid, status, limit, beforeUuid, options).then((request) => request(axios, basePath));
1836
+ },
1837
+ /**
1838
+ * Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
1839
+ * @summary Resubscribe webhooks for a connector source
1840
+ * @param {string} sourceUuid Connector source UUID
1841
+ * @param {*} [options] Override http request option.
1842
+ * @throws {RequiredError}
1843
+ */
1844
+ adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid, options) {
1845
+ return localVarFp.adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid, options).then((request) => request(axios, basePath));
1846
+ },
1847
+ /**
1848
+ * Iterates every active connector source in the org and re-runs register_webhooks for each. Per-source errors are captured individually — one failure does not block the others.
1849
+ * @summary Resubscribe webhooks for every connector source
1850
+ * @param {*} [options] Override http request option.
1851
+ * @throws {RequiredError}
1852
+ */
1853
+ adminConnectorsWebhooksResubscribeAllPost(options) {
1854
+ return localVarFp.adminConnectorsWebhooksResubscribeAllPost(options).then((request) => request(axios, basePath));
1855
+ },
1856
+ };
1857
+ };
1858
+ /**
1859
+ * AdminConnectorWebhooksApi - object-oriented interface
1860
+ * @export
1861
+ * @class AdminConnectorWebhooksApi
1862
+ * @extends {BaseAPI}
1863
+ */
1864
+ export class AdminConnectorWebhooksApi extends BaseAPI {
1865
+ /**
1866
+ * Re-publish a previously recorded delivery through the forge.webhook exchange. A new external_id is minted so the worker processes the replay end-to-end.
1867
+ * @summary Replay a recorded webhook delivery
1868
+ * @param {string} sourceUuid Connector source UUID
1869
+ * @param {string} deliveryUuid Delivery UUID to replay
1870
+ * @param {*} [options] Override http request option.
1871
+ * @throws {RequiredError}
1872
+ * @memberof AdminConnectorWebhooksApi
1873
+ */
1874
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid, deliveryUuid, options) {
1875
+ return AdminConnectorWebhooksApiFp(this.configuration).adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost(sourceUuid, deliveryUuid, options).then((request) => request(this.axios, this.basePath));
1876
+ }
1877
+ /**
1878
+ * Paginated list of recent webhook deliveries for a connector source. body_base64 is redacted; use replay to send a delivery through the pipeline again.
1879
+ * @summary List recent webhook deliveries
1880
+ * @param {string} sourceUuid Connector source UUID
1881
+ * @param {string} [status] Filter by delivery status (pending, processed, failed)
1882
+ * @param {number} [limit] Page size (default 50, max 200)
1883
+ * @param {string} [beforeUuid] Cursor: return rows older than the delivery with this UUID
1884
+ * @param {*} [options] Override http request option.
1885
+ * @throws {RequiredError}
1886
+ * @memberof AdminConnectorWebhooksApi
1887
+ */
1888
+ adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid, status, limit, beforeUuid, options) {
1889
+ return AdminConnectorWebhooksApiFp(this.configuration).adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet(sourceUuid, status, limit, beforeUuid, options).then((request) => request(this.axios, this.basePath));
1890
+ }
1891
+ /**
1892
+ * Re-run the register_webhooks post-install hook for one connector source. Idempotent via ON CONFLICT (source_id, topic) DO UPDATE.
1893
+ * @summary Resubscribe webhooks for a connector source
1894
+ * @param {string} sourceUuid Connector source UUID
1895
+ * @param {*} [options] Override http request option.
1896
+ * @throws {RequiredError}
1897
+ * @memberof AdminConnectorWebhooksApi
1898
+ */
1899
+ adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid, options) {
1900
+ return AdminConnectorWebhooksApiFp(this.configuration).adminConnectorsSourcesSourceUuidWebhooksResubscribePost(sourceUuid, options).then((request) => request(this.axios, this.basePath));
1901
+ }
1902
+ /**
1903
+ * Iterates every active connector source in the org and re-runs register_webhooks for each. Per-source errors are captured individually — one failure does not block the others.
1904
+ * @summary Resubscribe webhooks for every connector source
1905
+ * @param {*} [options] Override http request option.
1906
+ * @throws {RequiredError}
1907
+ * @memberof AdminConnectorWebhooksApi
1908
+ */
1909
+ adminConnectorsWebhooksResubscribeAllPost(options) {
1910
+ return AdminConnectorWebhooksApiFp(this.configuration).adminConnectorsWebhooksResubscribeAllPost(options).then((request) => request(this.axios, this.basePath));
1911
+ }
1912
+ }
1582
1913
  /**
1583
1914
  * AdminNotificationTemplatesApi - axios parameter creator
1584
1915
  * @export
@@ -20349,7 +20680,7 @@ export const ConnectorAdminAuthApiAxiosParamCreator = function (configuration) {
20349
20680
  };
20350
20681
  }),
20351
20682
  /**
20352
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
20683
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
20353
20684
  * @summary Validate connector authentication credentials
20354
20685
  * @param {string} uuid Authentication UUID
20355
20686
  * @param {*} [options] Override http request option.
@@ -20469,7 +20800,7 @@ export const ConnectorAdminAuthApiFp = function (configuration) {
20469
20800
  });
20470
20801
  },
20471
20802
  /**
20472
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
20803
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
20473
20804
  * @summary Validate connector authentication credentials
20474
20805
  * @param {string} uuid Authentication UUID
20475
20806
  * @param {*} [options] Override http request option.
@@ -20544,7 +20875,7 @@ export const ConnectorAdminAuthApiFactory = function (configuration, basePath, a
20544
20875
  return localVarFp.adminConnectorAuthUuidPut(uuid, connectorUpdateAuthRequest, options).then((request) => request(axios, basePath));
20545
20876
  },
20546
20877
  /**
20547
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
20878
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
20548
20879
  * @summary Validate connector authentication credentials
20549
20880
  * @param {string} uuid Authentication UUID
20550
20881
  * @param {*} [options] Override http request option.
@@ -20618,7 +20949,7 @@ export class ConnectorAdminAuthApi extends BaseAPI {
20618
20949
  return ConnectorAdminAuthApiFp(this.configuration).adminConnectorAuthUuidPut(uuid, connectorUpdateAuthRequest, options).then((request) => request(this.axios, this.basePath));
20619
20950
  }
20620
20951
  /**
20621
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
20952
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
20622
20953
  * @summary Validate connector authentication credentials
20623
20954
  * @param {string} uuid Authentication UUID
20624
20955
  * @param {*} [options] Override http request option.
@@ -22562,7 +22893,7 @@ export const ConnectorAdminSourcesApiAxiosParamCreator = function (configuration
22562
22893
  };
22563
22894
  }),
22564
22895
  /**
22565
- * Dispatches a connectivity check to the go-worker. Returns immediately with a job ID.
22896
+ * Runs a synchronous connection check against the source\'s stored config + credentials. Returns the forge check result directly — no polling required. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
22566
22897
  * @summary Check source connectivity
22567
22898
  * @param {string} uuid Source UUID
22568
22899
  * @param {*} [options] Override http request option.
@@ -22624,7 +22955,7 @@ export const ConnectorAdminSourcesApiAxiosParamCreator = function (configuration
22624
22955
  };
22625
22956
  }),
22626
22957
  /**
22627
- * Dispatches a catalog discovery job to the go-worker. Returns the pending catalog immediately.
22958
+ * Runs a synchronous schema discovery against the source\'s stored config + credentials. Persists the catalog to connector_sources.discovered_catalog and returns it directly. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
22628
22959
  * @summary Discover source stream catalog
22629
22960
  * @param {string} uuid Source UUID
22630
22961
  * @param {*} [options] Override http request option.
@@ -22813,7 +23144,7 @@ export const ConnectorAdminSourcesApiFp = function (configuration) {
22813
23144
  });
22814
23145
  },
22815
23146
  /**
22816
- * Dispatches a connectivity check to the go-worker. Returns immediately with a job ID.
23147
+ * Runs a synchronous connection check against the source\'s stored config + credentials. Returns the forge check result directly — no polling required. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
22817
23148
  * @summary Check source connectivity
22818
23149
  * @param {string} uuid Source UUID
22819
23150
  * @param {*} [options] Override http request option.
@@ -22845,7 +23176,7 @@ export const ConnectorAdminSourcesApiFp = function (configuration) {
22845
23176
  });
22846
23177
  },
22847
23178
  /**
22848
- * Dispatches a catalog discovery job to the go-worker. Returns the pending catalog immediately.
23179
+ * Runs a synchronous schema discovery against the source\'s stored config + credentials. Persists the catalog to connector_sources.discovered_catalog and returns it directly. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
22849
23180
  * @summary Discover source stream catalog
22850
23181
  * @param {string} uuid Source UUID
22851
23182
  * @param {*} [options] Override http request option.
@@ -22949,7 +23280,7 @@ export const ConnectorAdminSourcesApiFactory = function (configuration, basePath
22949
23280
  return localVarFp.adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest, options).then((request) => request(axios, basePath));
22950
23281
  },
22951
23282
  /**
22952
- * Dispatches a connectivity check to the go-worker. Returns immediately with a job ID.
23283
+ * Runs a synchronous connection check against the source\'s stored config + credentials. Returns the forge check result directly — no polling required. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
22953
23284
  * @summary Check source connectivity
22954
23285
  * @param {string} uuid Source UUID
22955
23286
  * @param {*} [options] Override http request option.
@@ -22969,7 +23300,7 @@ export const ConnectorAdminSourcesApiFactory = function (configuration, basePath
22969
23300
  return localVarFp.adminConnectorSourcesUuidDelete(uuid, options).then((request) => request(axios, basePath));
22970
23301
  },
22971
23302
  /**
22972
- * Dispatches a catalog discovery job to the go-worker. Returns the pending catalog immediately.
23303
+ * Runs a synchronous schema discovery against the source\'s stored config + credentials. Persists the catalog to connector_sources.discovered_catalog and returns it directly. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
22973
23304
  * @summary Discover source stream catalog
22974
23305
  * @param {string} uuid Source UUID
22975
23306
  * @param {*} [options] Override http request option.
@@ -23052,7 +23383,7 @@ export class ConnectorAdminSourcesApi extends BaseAPI {
23052
23383
  return ConnectorAdminSourcesApiFp(this.configuration).adminConnectorSourcesTestConnectionPost(connectorTestConnectionRequest, options).then((request) => request(this.axios, this.basePath));
23053
23384
  }
23054
23385
  /**
23055
- * Dispatches a connectivity check to the go-worker. Returns immediately with a job ID.
23386
+ * Runs a synchronous connection check against the source\'s stored config + credentials. Returns the forge check result directly — no polling required. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
23056
23387
  * @summary Check source connectivity
23057
23388
  * @param {string} uuid Source UUID
23058
23389
  * @param {*} [options] Override http request option.
@@ -23074,7 +23405,7 @@ export class ConnectorAdminSourcesApi extends BaseAPI {
23074
23405
  return ConnectorAdminSourcesApiFp(this.configuration).adminConnectorSourcesUuidDelete(uuid, options).then((request) => request(this.axios, this.basePath));
23075
23406
  }
23076
23407
  /**
23077
- * Dispatches a catalog discovery job to the go-worker. Returns the pending catalog immediately.
23408
+ * Runs a synchronous schema discovery against the source\'s stored config + credentials. Persists the catalog to connector_sources.discovered_catalog and returns it directly. Falls back to the legacy RabbitMQ dispatch path only when the check service is not wired.
23078
23409
  * @summary Discover source stream catalog
23079
23410
  * @param {string} uuid Source UUID
23080
23411
  * @param {*} [options] Override http request option.
@@ -28693,7 +29024,7 @@ export const ConnectorsApiAxiosParamCreator = function (configuration) {
28693
29024
  };
28694
29025
  }),
28695
29026
  /**
28696
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
29027
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
28697
29028
  * @summary Validate connector authentication credentials
28698
29029
  * @param {string} uuid Authentication UUID
28699
29030
  * @param {*} [options] Override http request option.
@@ -29949,7 +30280,7 @@ export const ConnectorsApiFp = function (configuration) {
29949
30280
  });
29950
30281
  },
29951
30282
  /**
29952
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
30283
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
29953
30284
  * @summary Validate connector authentication credentials
29954
30285
  * @param {string} uuid Authentication UUID
29955
30286
  * @param {*} [options] Override http request option.
@@ -30653,7 +30984,7 @@ export const ConnectorsApiFactory = function (configuration, basePath, axios) {
30653
30984
  return localVarFp.v1ConnectorsAuthUuidPut(uuid, connectorUpdateAuthRequest, options).then((request) => request(axios, basePath));
30654
30985
  },
30655
30986
  /**
30656
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
30987
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
30657
30988
  * @summary Validate connector authentication credentials
30658
30989
  * @param {string} uuid Authentication UUID
30659
30990
  * @param {*} [options] Override http request option.
@@ -31173,7 +31504,7 @@ export class ConnectorsApi extends BaseAPI {
31173
31504
  return ConnectorsApiFp(this.configuration).v1ConnectorsAuthUuidPut(uuid, connectorUpdateAuthRequest, options).then((request) => request(this.axios, this.basePath));
31174
31505
  }
31175
31506
  /**
31176
- * Decrypts and validates stored credentials. Updates is_valid and last_validated_at.
31507
+ * Runs a live provider probe (forge Source.Check) against stored credentials. Returns a structured CheckResult and persists the outcome to connector_authentications.
31177
31508
  * @summary Validate connector authentication credentials
31178
31509
  * @param {string} uuid Authentication UUID
31179
31510
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/admin-api",
3
- "version": "1.2.12",
3
+ "version": "1.2.14",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file