@gpt-core/client 0.4.8 → 0.5.0
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 +12 -512
- package/dist/index.d.ts +12 -512
- package/dist/index.js +0 -14
- package/dist/index.mjs +0 -12
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -155,8 +155,6 @@ __export(index_exports, {
|
|
|
155
155
|
getWebhookConfigsById: () => getWebhookConfigsById,
|
|
156
156
|
getWebhookDeliveries: () => getWebhookDeliveries,
|
|
157
157
|
getWebhookDeliveriesById: () => getWebhookDeliveriesById,
|
|
158
|
-
getWebhookEvents: () => getWebhookEvents,
|
|
159
|
-
getWebhookEventsById: () => getWebhookEventsById,
|
|
160
158
|
getWorkspaceMemberships: () => getWorkspaceMemberships,
|
|
161
159
|
getWorkspaces: () => getWorkspaces,
|
|
162
160
|
getWorkspacesById: () => getWorkspacesById,
|
|
@@ -1937,16 +1935,6 @@ var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
|
1937
1935
|
url: "/ai/graph/nodes/{id}",
|
|
1938
1936
|
...options
|
|
1939
1937
|
});
|
|
1940
|
-
var getWebhookEventsById = (options) => (options.client ?? client).get({
|
|
1941
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1942
|
-
url: "/webhook_events/{id}",
|
|
1943
|
-
...options
|
|
1944
|
-
});
|
|
1945
|
-
var getWebhookEvents = (options) => (options.client ?? client).get({
|
|
1946
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1947
|
-
url: "/webhook_events",
|
|
1948
|
-
...options
|
|
1949
|
-
});
|
|
1950
1938
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
1951
1939
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1952
1940
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
@@ -3038,8 +3026,6 @@ async function collectStreamedMessage(stream) {
|
|
|
3038
3026
|
getWebhookConfigsById,
|
|
3039
3027
|
getWebhookDeliveries,
|
|
3040
3028
|
getWebhookDeliveriesById,
|
|
3041
|
-
getWebhookEvents,
|
|
3042
|
-
getWebhookEventsById,
|
|
3043
3029
|
getWorkspaceMemberships,
|
|
3044
3030
|
getWorkspaces,
|
|
3045
3031
|
getWorkspacesById,
|
package/dist/index.mjs
CHANGED
|
@@ -1661,16 +1661,6 @@ var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
|
1661
1661
|
url: "/ai/graph/nodes/{id}",
|
|
1662
1662
|
...options
|
|
1663
1663
|
});
|
|
1664
|
-
var getWebhookEventsById = (options) => (options.client ?? client).get({
|
|
1665
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1666
|
-
url: "/webhook_events/{id}",
|
|
1667
|
-
...options
|
|
1668
|
-
});
|
|
1669
|
-
var getWebhookEvents = (options) => (options.client ?? client).get({
|
|
1670
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1671
|
-
url: "/webhook_events",
|
|
1672
|
-
...options
|
|
1673
|
-
});
|
|
1674
1664
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
1675
1665
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1676
1666
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
@@ -2761,8 +2751,6 @@ export {
|
|
|
2761
2751
|
getWebhookConfigsById,
|
|
2762
2752
|
getWebhookDeliveries,
|
|
2763
2753
|
getWebhookDeliveriesById,
|
|
2764
|
-
getWebhookEvents,
|
|
2765
|
-
getWebhookEventsById,
|
|
2766
2754
|
getWorkspaceMemberships,
|
|
2767
2755
|
getWorkspaces,
|
|
2768
2756
|
getWorkspacesById,
|
package/package.json
CHANGED