@human2human/sdk 0.2.0 → 0.3.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/README.md +61 -16
- package/dist/client.d.ts +9 -3
- package/dist/client.js +11 -6
- package/dist/environment.d.ts +1 -1
- package/dist/environment.js +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/resources/agent/build/index.d.ts +3 -0
- package/dist/resources/agent/build/index.js +3 -0
- package/dist/resources/agent/build/resource-client.d.ts +3 -0
- package/dist/resources/agent/build/resource-client.js +3 -0
- package/dist/resources/agent/build/workflow/index.d.ts +3 -0
- package/dist/resources/agent/build/workflow/index.js +3 -0
- package/dist/resources/agent/build/workflow/resource-client.d.ts +8 -1
- package/dist/resources/agent/build/workflow/resource-client.js +8 -1
- package/dist/resources/agent/index.d.ts +3 -0
- package/dist/resources/agent/index.js +3 -0
- package/dist/resources/agent/resource-client.d.ts +3 -0
- package/dist/resources/agent/resource-client.js +3 -0
- package/dist/resources/auth/index.d.ts +3 -0
- package/dist/resources/auth/index.js +3 -0
- package/dist/resources/auth/login/index.d.ts +3 -0
- package/dist/resources/auth/login/index.js +3 -0
- package/dist/resources/auth/login/resource-client.d.ts +6 -1
- package/dist/resources/auth/login/resource-client.js +6 -1
- package/dist/resources/auth/refresh/index.d.ts +3 -0
- package/dist/resources/auth/refresh/index.js +3 -0
- package/dist/resources/auth/refresh/resource-client.d.ts +6 -1
- package/dist/resources/auth/refresh/resource-client.js +6 -1
- package/dist/resources/auth/resource-client.d.ts +3 -0
- package/dist/resources/auth/resource-client.js +3 -0
- package/dist/resources/chats/index.d.ts +3 -0
- package/dist/resources/chats/index.js +3 -0
- package/dist/resources/chats/resource-client.d.ts +6 -3
- package/dist/resources/chats/resource-client.js +6 -3
- package/dist/resources/feeds/index.d.ts +3 -0
- package/dist/resources/feeds/index.js +3 -0
- package/dist/resources/feeds/items/index.d.ts +3 -0
- package/dist/resources/feeds/items/index.js +3 -0
- package/dist/resources/feeds/items/resource-client.d.ts +7 -0
- package/dist/resources/feeds/items/resource-client.js +7 -0
- package/dist/resources/feeds/resource-client.d.ts +9 -0
- package/dist/resources/feeds/resource-client.js +9 -0
- package/dist/resources/feeds/vector/index.d.ts +3 -0
- package/dist/resources/feeds/vector/index.js +3 -0
- package/dist/resources/feeds/vector/resource-client.d.ts +3 -0
- package/dist/resources/feeds/vector/resource-client.js +3 -0
- package/dist/resources/feeds/vector/search/index.d.ts +3 -0
- package/dist/resources/feeds/vector/search/index.js +3 -0
- package/dist/resources/feeds/vector/search/resource-client.d.ts +5 -0
- package/dist/resources/feeds/vector/search/resource-client.js +5 -0
- package/dist/resources/index.d.ts +2 -1
- package/dist/resources/index.js +3 -2
- package/dist/resources/integrations/api/index.d.ts +3 -0
- package/dist/resources/integrations/api/index.js +3 -0
- package/dist/resources/integrations/api/operations/index.d.ts +3 -0
- package/dist/resources/integrations/api/operations/index.js +3 -0
- package/dist/resources/integrations/api/operations/resource-client.d.ts +11 -0
- package/dist/resources/integrations/api/operations/resource-client.js +11 -0
- package/dist/resources/integrations/api/resource-client.d.ts +9 -0
- package/dist/resources/integrations/api/resource-client.js +9 -0
- package/dist/resources/integrations/api/secrets/index.d.ts +3 -0
- package/dist/resources/integrations/api/secrets/index.js +3 -0
- package/dist/resources/integrations/api/secrets/resource-client.d.ts +9 -0
- package/dist/resources/integrations/api/secrets/resource-client.js +9 -0
- package/dist/resources/integrations/index.d.ts +3 -0
- package/dist/resources/integrations/index.js +3 -0
- package/dist/resources/integrations/resource-client.d.ts +3 -0
- package/dist/resources/integrations/resource-client.js +3 -0
- package/dist/resources/memory/index.d.ts +5 -0
- package/dist/resources/memory/index.js +42 -0
- package/dist/resources/memory/resource-client.d.ts +10 -0
- package/dist/resources/memory/resource-client.js +20 -0
- package/dist/resources/memory/tables/index.d.ts +7 -0
- package/dist/resources/memory/tables/index.js +43 -0
- package/dist/resources/memory/tables/mutate/index.d.ts +5 -0
- package/dist/resources/memory/tables/mutate/index.js +8 -0
- package/dist/resources/memory/tables/mutate/request-types.d.ts +33 -0
- package/dist/resources/memory/tables/mutate/request-types.js +77 -0
- package/dist/resources/memory/tables/mutate/resource-client.d.ts +17 -0
- package/dist/resources/memory/tables/mutate/resource-client.js +33 -0
- package/dist/resources/memory/tables/query/index.d.ts +5 -0
- package/dist/resources/memory/tables/query/index.js +8 -0
- package/dist/resources/memory/tables/query/request-types.d.ts +37 -0
- package/dist/resources/memory/tables/query/request-types.js +80 -0
- package/dist/resources/memory/tables/query/resource-client.d.ts +17 -0
- package/dist/resources/memory/tables/query/resource-client.js +33 -0
- package/dist/resources/memory/tables/request-types.d.ts +105 -0
- package/dist/resources/memory/tables/request-types.js +171 -0
- package/dist/resources/memory/tables/resource-client.d.ts +47 -0
- package/dist/resources/memory/tables/resource-client.js +144 -0
- package/dist/resources/search-groups/index.d.ts +3 -0
- package/dist/resources/search-groups/index.js +3 -0
- package/dist/resources/search-groups/items/index.d.ts +3 -0
- package/dist/resources/search-groups/items/index.js +3 -0
- package/dist/resources/search-groups/items/resource-client.d.ts +9 -0
- package/dist/resources/search-groups/items/resource-client.js +9 -0
- package/dist/resources/search-groups/resource-client.d.ts +9 -0
- package/dist/resources/search-groups/resource-client.js +9 -0
- package/dist/resources/subscriptions/events/index.d.ts +5 -0
- package/dist/resources/subscriptions/events/index.js +8 -0
- package/dist/resources/subscriptions/events/request-types.d.ts +115 -0
- package/dist/resources/subscriptions/events/request-types.js +179 -0
- package/dist/resources/subscriptions/events/resource-client.d.ts +41 -0
- package/dist/resources/subscriptions/events/resource-client.js +132 -0
- package/dist/resources/subscriptions/index.d.ts +5 -0
- package/dist/resources/subscriptions/index.js +42 -0
- package/dist/resources/subscriptions/resource-client.d.ts +10 -0
- package/dist/resources/subscriptions/resource-client.js +20 -0
- package/dist/resources/tools/code-execution/index.d.ts +3 -0
- package/dist/resources/tools/code-execution/index.js +3 -0
- package/dist/resources/tools/code-execution/resource-client.d.ts +6 -1
- package/dist/resources/tools/code-execution/resource-client.js +6 -1
- package/dist/resources/tools/dictionary-search/index.d.ts +3 -0
- package/dist/resources/tools/dictionary-search/index.js +3 -0
- package/dist/resources/tools/dictionary-search/resource-client.d.ts +6 -1
- package/dist/resources/tools/dictionary-search/resource-client.js +6 -1
- package/dist/resources/tools/format/index.d.ts +3 -0
- package/dist/resources/tools/format/index.js +3 -0
- package/dist/resources/tools/format/resource-client.d.ts +6 -1
- package/dist/resources/tools/format/resource-client.js +6 -1
- package/dist/resources/tools/index.d.ts +3 -0
- package/dist/resources/tools/index.js +3 -0
- package/dist/resources/tools/internet-search/index.d.ts +3 -0
- package/dist/resources/tools/internet-search/index.js +3 -0
- package/dist/resources/tools/internet-search/resource-client.d.ts +6 -1
- package/dist/resources/tools/internet-search/resource-client.js +6 -1
- package/dist/resources/tools/memory-query/index.d.ts +3 -0
- package/dist/resources/tools/memory-query/index.js +3 -0
- package/dist/resources/tools/memory-query/resource-client.d.ts +6 -1
- package/dist/resources/tools/memory-query/resource-client.js +6 -1
- package/dist/resources/tools/meta-tagger/index.d.ts +3 -0
- package/dist/resources/tools/meta-tagger/index.js +3 -0
- package/dist/resources/tools/meta-tagger/resource-client.d.ts +6 -1
- package/dist/resources/tools/meta-tagger/resource-client.js +6 -1
- package/dist/resources/tools/resource-client.d.ts +6 -1
- package/dist/resources/tools/resource-client.js +6 -1
- package/dist/resources/tools/standard-llm/index.d.ts +3 -0
- package/dist/resources/tools/standard-llm/index.js +3 -0
- package/dist/resources/tools/standard-llm/resource-client.d.ts +6 -1
- package/dist/resources/tools/standard-llm/resource-client.js +6 -1
- package/dist/resources/tools/structured-output/index.d.ts +3 -0
- package/dist/resources/tools/structured-output/index.js +3 -0
- package/dist/resources/tools/structured-output/resource-client.d.ts +6 -1
- package/dist/resources/tools/structured-output/resource-client.js +6 -1
- package/dist/resources/workflows/dispatch/index.d.ts +3 -0
- package/dist/resources/workflows/dispatch/index.js +3 -0
- package/dist/resources/workflows/dispatch/resource-client.d.ts +6 -1
- package/dist/resources/workflows/dispatch/resource-client.js +6 -1
- package/dist/resources/workflows/index.d.ts +6 -0
- package/dist/resources/workflows/index.js +6 -1
- package/dist/resources/workflows/invoke/index.d.ts +3 -0
- package/dist/resources/workflows/invoke/index.js +3 -0
- package/dist/resources/workflows/invoke/resource-client.d.ts +6 -1
- package/dist/resources/workflows/invoke/resource-client.js +6 -1
- package/dist/resources/workflows/request-types.d.ts +148 -0
- package/dist/resources/workflows/request-types.js +218 -0
- package/dist/resources/workflows/resource-client.d.ts +52 -1
- package/dist/resources/workflows/resource-client.js +152 -0
- package/dist/resources/workflows/runs/dispatch/index.d.ts +5 -0
- package/dist/resources/workflows/runs/dispatch/index.js +8 -0
- package/dist/resources/workflows/runs/dispatch/request-types.d.ts +25 -0
- package/dist/resources/workflows/runs/dispatch/request-types.js +70 -0
- package/dist/resources/workflows/runs/dispatch/resource-client.d.ts +17 -0
- package/dist/resources/workflows/runs/dispatch/resource-client.js +30 -0
- package/dist/resources/workflows/runs/index.d.ts +6 -0
- package/dist/resources/workflows/runs/index.js +42 -0
- package/dist/resources/workflows/runs/request-types.d.ts +115 -0
- package/dist/resources/workflows/runs/request-types.js +179 -0
- package/dist/resources/workflows/runs/resource-client.d.ts +44 -0
- package/dist/resources/workflows/runs/resource-client.js +151 -0
- package/dist/resources/workflows/versions/index.d.ts +5 -0
- package/dist/resources/workflows/versions/index.js +8 -0
- package/dist/resources/workflows/versions/request-types.d.ts +188 -0
- package/dist/resources/workflows/versions/request-types.js +250 -0
- package/dist/resources/workflows/versions/resource-client.d.ts +49 -0
- package/dist/resources/workflows/versions/resource-client.js +152 -0
- package/dist/types/index.d.ts +58 -3
- package/dist/types/index.js +3 -0
- package/dist/types/memory-tables-create-body.d.ts +37 -0
- package/dist/types/memory-tables-create-body.js +80 -0
- package/dist/types/memory-tables-create-response.d.ts +37 -0
- package/dist/types/memory-tables-create-response.js +92 -0
- package/dist/types/memory-tables-delete-response.d.ts +37 -0
- package/dist/types/memory-tables-delete-response.js +92 -0
- package/dist/types/memory-tables-get-response.d.ts +37 -0
- package/dist/types/memory-tables-get-response.js +92 -0
- package/dist/types/memory-tables-list-response-item.d.ts +37 -0
- package/dist/types/memory-tables-list-response-item.js +92 -0
- package/dist/types/memory-tables-mutate-create-body-mutation-type-enum.d.ts +7 -0
- package/dist/types/memory-tables-mutate-create-body-mutation-type-enum.js +5 -0
- package/dist/types/memory-tables-mutate-create-body-mutation.d.ts +37 -0
- package/dist/types/memory-tables-mutate-create-body-mutation.js +80 -0
- package/dist/types/memory-tables-mutate-create-body.d.ts +33 -0
- package/dist/types/memory-tables-mutate-create-body.js +77 -0
- package/dist/types/memory-tables-mutate-create-response-data-item.d.ts +29 -0
- package/dist/types/memory-tables-mutate-create-response-data-item.js +76 -0
- package/dist/types/memory-tables-mutate-create-response-errors-item.d.ts +24 -0
- package/dist/types/memory-tables-mutate-create-response-errors-item.js +74 -0
- package/dist/types/memory-tables-mutate-create-response.d.ts +39 -0
- package/dist/types/memory-tables-mutate-create-response.js +90 -0
- package/dist/types/memory-tables-query-create-body.d.ts +37 -0
- package/dist/types/memory-tables-query-create-body.js +80 -0
- package/dist/types/memory-tables-query-create-response-row.d.ts +29 -0
- package/dist/types/memory-tables-query-create-response-row.js +76 -0
- package/dist/types/memory-tables-query-create-response-rows-item.d.ts +29 -0
- package/dist/types/memory-tables-query-create-response-rows-item.js +76 -0
- package/dist/types/memory-tables-query-create-response.d.ts +36 -0
- package/dist/types/memory-tables-query-create-response.js +86 -0
- package/dist/types/subscriptions-events-create-body-consumer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-create-body-consumer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-create-body-producer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-create-body-producer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-create-body.d.ts +47 -0
- package/dist/types/subscriptions-events-create-body.js +88 -0
- package/dist/types/subscriptions-events-create-response-consumer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-create-response-consumer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-create-response-producer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-create-response-producer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-create-response.d.ts +51 -0
- package/dist/types/subscriptions-events-create-response.js +96 -0
- package/dist/types/subscriptions-events-delete-response-consumer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-delete-response-consumer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-delete-response-producer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-delete-response-producer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-delete-response.d.ts +51 -0
- package/dist/types/subscriptions-events-delete-response.js +96 -0
- package/dist/types/subscriptions-events-get-response-consumer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-get-response-consumer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-get-response-producer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-get-response-producer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-get-response.d.ts +51 -0
- package/dist/types/subscriptions-events-get-response.js +96 -0
- package/dist/types/subscriptions-events-list-response-item-consumer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-list-response-item-consumer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-list-response-item-producer-type-enum.d.ts +7 -0
- package/dist/types/subscriptions-events-list-response-item-producer-type-enum.js +5 -0
- package/dist/types/subscriptions-events-list-response-item.d.ts +51 -0
- package/dist/types/subscriptions-events-list-response-item.js +96 -0
- package/dist/types/workflows-create-body.d.ts +42 -0
- package/dist/types/workflows-create-body.js +84 -0
- package/dist/types/workflows-create-response.d.ts +62 -0
- package/dist/types/workflows-create-response.js +100 -0
- package/dist/types/workflows-delete-response.d.ts +62 -0
- package/dist/types/workflows-delete-response.js +100 -0
- package/dist/types/workflows-get-response.d.ts +62 -0
- package/dist/types/workflows-get-response.js +100 -0
- package/dist/types/workflows-list-response-item.d.ts +62 -0
- package/dist/types/workflows-list-response-item.js +100 -0
- package/dist/types/workflows-patch-body.d.ts +37 -0
- package/dist/types/workflows-patch-body.js +80 -0
- package/dist/types/workflows-patch-response.d.ts +62 -0
- package/dist/types/workflows-patch-response.js +100 -0
- package/dist/types/workflows-runs-create-body-execution-type-enum.d.ts +7 -0
- package/dist/types/workflows-runs-create-body-execution-type-enum.js +5 -0
- package/dist/types/workflows-runs-create-body.d.ts +37 -0
- package/dist/types/workflows-runs-create-body.js +80 -0
- package/dist/types/workflows-runs-create-response-status-enum.d.ts +7 -0
- package/dist/types/workflows-runs-create-response-status-enum.js +5 -0
- package/dist/types/workflows-runs-create-response.d.ts +28 -0
- package/dist/types/workflows-runs-create-response.js +86 -0
- package/dist/types/workflows-runs-delete-response-status-enum.d.ts +7 -0
- package/dist/types/workflows-runs-delete-response-status-enum.js +5 -0
- package/dist/types/workflows-runs-delete-response.d.ts +28 -0
- package/dist/types/workflows-runs-delete-response.js +86 -0
- package/dist/types/workflows-runs-dispatch-create-response.d.ts +30 -0
- package/dist/types/workflows-runs-dispatch-create-response.js +74 -0
- package/dist/types/workflows-runs-get-response-status-enum.d.ts +7 -0
- package/dist/types/workflows-runs-get-response-status-enum.js +5 -0
- package/dist/types/workflows-runs-get-response.d.ts +28 -0
- package/dist/types/workflows-runs-get-response.js +86 -0
- package/dist/types/workflows-runs-list-response-item-status-enum.d.ts +7 -0
- package/dist/types/workflows-runs-list-response-item-status-enum.js +5 -0
- package/dist/types/workflows-runs-list-response-item.d.ts +28 -0
- package/dist/types/workflows-runs-list-response-item.js +86 -0
- package/dist/types/workflows-versions-create-body.d.ts +47 -0
- package/dist/types/workflows-versions-create-body.js +88 -0
- package/dist/types/workflows-versions-create-response.d.ts +67 -0
- package/dist/types/workflows-versions-create-response.js +104 -0
- package/dist/types/workflows-versions-delete-response.d.ts +67 -0
- package/dist/types/workflows-versions-delete-response.js +104 -0
- package/dist/types/workflows-versions-get-response.d.ts +67 -0
- package/dist/types/workflows-versions-get-response.js +104 -0
- package/dist/types/workflows-versions-list-response-item.d.ts +67 -0
- package/dist/types/workflows-versions-list-response-item.js +104 -0
- package/dist/types/workflows-versions-patch-body.d.ts +47 -0
- package/dist/types/workflows-versions-patch-body.js +88 -0
- package/dist/types/workflows-versions-patch-response.d.ts +67 -0
- package/dist/types/workflows-versions-patch-response.js +104 -0
- package/package.json +2 -2
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
import { ApiPromise, CoreClient, CoreResourceClient, RequestOptions, ResourceClientOptions } from "make-api-request-js";
|
|
5
5
|
import * as requests from "../../../resources/feeds/items/request-types";
|
|
6
6
|
import * as types from "../../../types";
|
|
7
|
+
/**
|
|
8
|
+
* Generated by Sideko (sideko.dev)
|
|
9
|
+
**/
|
|
7
10
|
/**
|
|
8
11
|
* Generated by Sideko (sideko.dev)
|
|
9
12
|
**/
|
|
@@ -12,12 +15,16 @@ export declare class ItemsClient extends CoreResourceClient {
|
|
|
12
15
|
/**
|
|
13
16
|
* Get a specific feed item by ID
|
|
14
17
|
*
|
|
18
|
+
* Retrieve a feed item by ID, including its stored payload data.
|
|
19
|
+
*
|
|
15
20
|
* GET /feeds/items/{id}
|
|
16
21
|
*/
|
|
17
22
|
get(request: requests.GetRequest, opts?: RequestOptions): ApiPromise<types.FeedsItemsGetResponse>;
|
|
18
23
|
/**
|
|
19
24
|
* Create a new feed item for an API feed
|
|
20
25
|
*
|
|
26
|
+
* Create a new feed item, persist its payload, and optionally trigger workflow runs for the associated feed.
|
|
27
|
+
*
|
|
21
28
|
* POST /feeds/items
|
|
22
29
|
*/
|
|
23
30
|
create(request?: requests.CreateRequest, opts?: RequestOptions): ApiPromise<types.FeedsItemsCreateResponse>;
|
|
@@ -8,6 +8,9 @@ const make_api_request_js_1 = require("make-api-request-js");
|
|
|
8
8
|
const feeds_items_create_body_1 = require("../../../types/feeds-items-create-body");
|
|
9
9
|
const feeds_items_create_response_1 = require("../../../types/feeds-items-create-response");
|
|
10
10
|
const feeds_items_get_response_1 = require("../../../types/feeds-items-get-response");
|
|
11
|
+
/**
|
|
12
|
+
* Generated by Sideko (sideko.dev)
|
|
13
|
+
**/
|
|
11
14
|
/**
|
|
12
15
|
* Generated by Sideko (sideko.dev)
|
|
13
16
|
**/
|
|
@@ -18,6 +21,8 @@ class ItemsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
18
21
|
/**
|
|
19
22
|
* Get a specific feed item by ID
|
|
20
23
|
*
|
|
24
|
+
* Retrieve a feed item by ID, including its stored payload data.
|
|
25
|
+
*
|
|
21
26
|
* GET /feeds/items/{id}
|
|
22
27
|
*/
|
|
23
28
|
get(request, opts) {
|
|
@@ -32,6 +37,8 @@ class ItemsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
32
37
|
/**
|
|
33
38
|
* Create a new feed item for an API feed
|
|
34
39
|
*
|
|
40
|
+
* Create a new feed item, persist its payload, and optionally trigger workflow runs for the associated feed.
|
|
41
|
+
*
|
|
35
42
|
* POST /feeds/items
|
|
36
43
|
*/
|
|
37
44
|
create(request = {}, opts) {
|
|
@@ -6,6 +6,9 @@ import { ItemsClient } from "../../resources/feeds/items";
|
|
|
6
6
|
import * as requests from "../../resources/feeds/request-types";
|
|
7
7
|
import { VectorClient } from "../../resources/feeds/vector";
|
|
8
8
|
import * as types from "../../types";
|
|
9
|
+
/**
|
|
10
|
+
* Generated by Sideko (sideko.dev)
|
|
11
|
+
**/
|
|
9
12
|
/**
|
|
10
13
|
* Generated by Sideko (sideko.dev)
|
|
11
14
|
**/
|
|
@@ -18,18 +21,24 @@ export declare class FeedsClient extends CoreResourceClient {
|
|
|
18
21
|
/**
|
|
19
22
|
* List all feeds
|
|
20
23
|
*
|
|
24
|
+
* Retrieve all feeds owned by the authenticated user.
|
|
25
|
+
*
|
|
21
26
|
* GET /feeds
|
|
22
27
|
*/
|
|
23
28
|
list(opts?: RequestOptions): ApiPromise<types.FeedsListResponseItem[]>;
|
|
24
29
|
/**
|
|
25
30
|
* Get a specific feed by ID
|
|
26
31
|
*
|
|
32
|
+
* Retrieve a single feed by its ID.
|
|
33
|
+
*
|
|
27
34
|
* GET /feeds/{id}
|
|
28
35
|
*/
|
|
29
36
|
get(request: requests.GetRequest, opts?: RequestOptions): ApiPromise<types.FeedsGetResponse>;
|
|
30
37
|
/**
|
|
31
38
|
* Create a new feed
|
|
32
39
|
*
|
|
40
|
+
* Create a new feed and configure its source details based on the selected feed type.
|
|
41
|
+
*
|
|
33
42
|
* POST /feeds
|
|
34
43
|
*/
|
|
35
44
|
create(request?: requests.CreateRequest, opts?: RequestOptions): ApiPromise<types.FeedsCreateResponse>;
|
|
@@ -43,6 +43,9 @@ const feeds_create_body_1 = require("../../types/feeds-create-body");
|
|
|
43
43
|
const feeds_create_response_1 = require("../../types/feeds-create-response");
|
|
44
44
|
const feeds_get_response_1 = require("../../types/feeds-get-response");
|
|
45
45
|
const feeds_list_response_item_1 = require("../../types/feeds-list-response-item");
|
|
46
|
+
/**
|
|
47
|
+
* Generated by Sideko (sideko.dev)
|
|
48
|
+
**/
|
|
46
49
|
/**
|
|
47
50
|
* Generated by Sideko (sideko.dev)
|
|
48
51
|
**/
|
|
@@ -65,6 +68,8 @@ class FeedsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
65
68
|
/**
|
|
66
69
|
* List all feeds
|
|
67
70
|
*
|
|
71
|
+
* Retrieve all feeds owned by the authenticated user.
|
|
72
|
+
*
|
|
68
73
|
* GET /feeds
|
|
69
74
|
*/
|
|
70
75
|
list(opts) {
|
|
@@ -79,6 +84,8 @@ class FeedsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
79
84
|
/**
|
|
80
85
|
* Get a specific feed by ID
|
|
81
86
|
*
|
|
87
|
+
* Retrieve a single feed by its ID.
|
|
88
|
+
*
|
|
82
89
|
* GET /feeds/{id}
|
|
83
90
|
*/
|
|
84
91
|
get(request, opts) {
|
|
@@ -93,6 +100,8 @@ class FeedsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
93
100
|
/**
|
|
94
101
|
* Create a new feed
|
|
95
102
|
*
|
|
103
|
+
* Create a new feed and configure its source details based on the selected feed type.
|
|
104
|
+
*
|
|
96
105
|
* POST /feeds
|
|
97
106
|
*/
|
|
98
107
|
create(request = {}, opts) {
|
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
**/
|
|
4
4
|
import { CoreClient, CoreResourceClient, ResourceClientOptions } from "make-api-request-js";
|
|
5
5
|
import { SearchClient } from "../../../resources/feeds/vector/search";
|
|
6
|
+
/**
|
|
7
|
+
* Generated by Sideko (sideko.dev)
|
|
8
|
+
**/
|
|
6
9
|
/**
|
|
7
10
|
* Generated by Sideko (sideko.dev)
|
|
8
11
|
**/
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
import { ApiPromise, CoreClient, CoreResourceClient, RequestOptions, ResourceClientOptions } from "make-api-request-js";
|
|
5
5
|
import * as requests from "../../../../resources/feeds/vector/search/request-types";
|
|
6
6
|
import * as types from "../../../../types";
|
|
7
|
+
/**
|
|
8
|
+
* Generated by Sideko (sideko.dev)
|
|
9
|
+
**/
|
|
7
10
|
/**
|
|
8
11
|
* Generated by Sideko (sideko.dev)
|
|
9
12
|
**/
|
|
@@ -12,6 +15,8 @@ export declare class SearchClient extends CoreResourceClient {
|
|
|
12
15
|
/**
|
|
13
16
|
* Run a query against feed embeddings
|
|
14
17
|
*
|
|
18
|
+
* Search feed embeddings for semantically relevant items within the provided date range.
|
|
19
|
+
*
|
|
15
20
|
* POST /feeds/{id}/vector/search
|
|
16
21
|
*/
|
|
17
22
|
create(request: requests.CreateRequest, opts?: RequestOptions): ApiPromise<types.FeedsVectorSearchCreateResponseItem[]>;
|
|
@@ -41,6 +41,9 @@ const make_api_request_js_1 = require("make-api-request-js");
|
|
|
41
41
|
const z = __importStar(require("zod"));
|
|
42
42
|
const feeds_vector_search_create_body_1 = require("../../../../types/feeds-vector-search-create-body");
|
|
43
43
|
const feeds_vector_search_create_response_item_1 = require("../../../../types/feeds-vector-search-create-response-item");
|
|
44
|
+
/**
|
|
45
|
+
* Generated by Sideko (sideko.dev)
|
|
46
|
+
**/
|
|
44
47
|
/**
|
|
45
48
|
* Generated by Sideko (sideko.dev)
|
|
46
49
|
**/
|
|
@@ -51,6 +54,8 @@ class SearchClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
51
54
|
/**
|
|
52
55
|
* Run a query against feed embeddings
|
|
53
56
|
*
|
|
57
|
+
* Search feed embeddings for semantically relevant items within the provided date range.
|
|
58
|
+
*
|
|
54
59
|
* POST /feeds/{id}/vector/search
|
|
55
60
|
*/
|
|
56
61
|
create(request, opts) {
|
|
@@ -3,9 +3,10 @@ export * as auth from "./auth";
|
|
|
3
3
|
export * as chats from "./chats";
|
|
4
4
|
export * as feeds from "./feeds";
|
|
5
5
|
export * as integrations from "./integrations";
|
|
6
|
+
export * as memory from "./memory";
|
|
6
7
|
export * as searchGroups from "./search-groups";
|
|
8
|
+
export * as subscriptions from "./subscriptions";
|
|
7
9
|
export * as tools from "./tools";
|
|
8
|
-
export * as workflow from "./workflow";
|
|
9
10
|
export * as workflows from "./workflows";
|
|
10
11
|
/**
|
|
11
12
|
* Generated by Sideko (sideko.dev)
|
package/dist/resources/index.js
CHANGED
|
@@ -33,15 +33,16 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.workflows = exports.
|
|
36
|
+
exports.workflows = exports.tools = exports.subscriptions = exports.searchGroups = exports.memory = exports.integrations = exports.feeds = exports.chats = exports.auth = exports.agent = void 0;
|
|
37
37
|
exports.agent = __importStar(require("./agent"));
|
|
38
38
|
exports.auth = __importStar(require("./auth"));
|
|
39
39
|
exports.chats = __importStar(require("./chats"));
|
|
40
40
|
exports.feeds = __importStar(require("./feeds"));
|
|
41
41
|
exports.integrations = __importStar(require("./integrations"));
|
|
42
|
+
exports.memory = __importStar(require("./memory"));
|
|
42
43
|
exports.searchGroups = __importStar(require("./search-groups"));
|
|
44
|
+
exports.subscriptions = __importStar(require("./subscriptions"));
|
|
43
45
|
exports.tools = __importStar(require("./tools"));
|
|
44
|
-
exports.workflow = __importStar(require("./workflow"));
|
|
45
46
|
exports.workflows = __importStar(require("./workflows"));
|
|
46
47
|
/**
|
|
47
48
|
* Generated by Sideko (sideko.dev)
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
import { ApiPromise, CoreClient, CoreResourceClient, RequestOptions, ResourceClientOptions } from "make-api-request-js";
|
|
5
5
|
import * as requests from "../../../../resources/integrations/api/operations/request-types";
|
|
6
6
|
import * as types from "../../../../types";
|
|
7
|
+
/**
|
|
8
|
+
* Generated by Sideko (sideko.dev)
|
|
9
|
+
**/
|
|
7
10
|
/**
|
|
8
11
|
* Generated by Sideko (sideko.dev)
|
|
9
12
|
**/
|
|
@@ -12,24 +15,32 @@ export declare class OperationsClient extends CoreResourceClient {
|
|
|
12
15
|
/**
|
|
13
16
|
* Delete an API operation
|
|
14
17
|
*
|
|
18
|
+
* Delete an API operation by its ID.
|
|
19
|
+
*
|
|
15
20
|
* DELETE /integrations/api/{id}/operations/{operationId}
|
|
16
21
|
*/
|
|
17
22
|
delete(request: requests.DeleteRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiOperationsDeleteResponse>;
|
|
18
23
|
/**
|
|
19
24
|
* Get an API operation by ID
|
|
20
25
|
*
|
|
26
|
+
* Retrieve a single API operation by its ID.
|
|
27
|
+
*
|
|
21
28
|
* GET /integrations/api/{id}/operations/{operationId}
|
|
22
29
|
*/
|
|
23
30
|
get(request: requests.GetRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiOperationsGetResponse>;
|
|
24
31
|
/**
|
|
25
32
|
* Update an API operation
|
|
26
33
|
*
|
|
34
|
+
* Update an existing API operation by its ID.
|
|
35
|
+
*
|
|
27
36
|
* PATCH /integrations/api/{id}/operations/{operationId}
|
|
28
37
|
*/
|
|
29
38
|
patch(request: requests.PatchRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiOperationsPatchResponse>;
|
|
30
39
|
/**
|
|
31
40
|
* Create a new API operation
|
|
32
41
|
*
|
|
42
|
+
* Create a new API operation under the specified API integration.
|
|
43
|
+
*
|
|
33
44
|
* POST /integrations/api/{id}/operations
|
|
34
45
|
*/
|
|
35
46
|
create(request: requests.CreateRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiOperationsCreateResponse>;
|
|
@@ -11,6 +11,9 @@ const integrations_api_operations_delete_response_1 = require("../../../../types
|
|
|
11
11
|
const integrations_api_operations_get_response_1 = require("../../../../types/integrations-api-operations-get-response");
|
|
12
12
|
const integrations_api_operations_patch_body_1 = require("../../../../types/integrations-api-operations-patch-body");
|
|
13
13
|
const integrations_api_operations_patch_response_1 = require("../../../../types/integrations-api-operations-patch-response");
|
|
14
|
+
/**
|
|
15
|
+
* Generated by Sideko (sideko.dev)
|
|
16
|
+
**/
|
|
14
17
|
/**
|
|
15
18
|
* Generated by Sideko (sideko.dev)
|
|
16
19
|
**/
|
|
@@ -21,6 +24,8 @@ class OperationsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
21
24
|
/**
|
|
22
25
|
* Delete an API operation
|
|
23
26
|
*
|
|
27
|
+
* Delete an API operation by its ID.
|
|
28
|
+
*
|
|
24
29
|
* DELETE /integrations/api/{id}/operations/{operationId}
|
|
25
30
|
*/
|
|
26
31
|
delete(request, opts) {
|
|
@@ -35,6 +40,8 @@ class OperationsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
35
40
|
/**
|
|
36
41
|
* Get an API operation by ID
|
|
37
42
|
*
|
|
43
|
+
* Retrieve a single API operation by its ID.
|
|
44
|
+
*
|
|
38
45
|
* GET /integrations/api/{id}/operations/{operationId}
|
|
39
46
|
*/
|
|
40
47
|
get(request, opts) {
|
|
@@ -49,6 +56,8 @@ class OperationsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
49
56
|
/**
|
|
50
57
|
* Update an API operation
|
|
51
58
|
*
|
|
59
|
+
* Update an existing API operation by its ID.
|
|
60
|
+
*
|
|
52
61
|
* PATCH /integrations/api/{id}/operations/{operationId}
|
|
53
62
|
*/
|
|
54
63
|
patch(request, opts) {
|
|
@@ -67,6 +76,8 @@ class OperationsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
67
76
|
/**
|
|
68
77
|
* Create a new API operation
|
|
69
78
|
*
|
|
79
|
+
* Create a new API operation under the specified API integration.
|
|
80
|
+
*
|
|
70
81
|
* POST /integrations/api/{id}/operations
|
|
71
82
|
*/
|
|
72
83
|
create(request, opts) {
|
|
@@ -6,6 +6,9 @@ import { OperationsClient } from "../../../resources/integrations/api/operations
|
|
|
6
6
|
import * as requests from "../../../resources/integrations/api/request-types";
|
|
7
7
|
import { SecretsClient } from "../../../resources/integrations/api/secrets";
|
|
8
8
|
import * as types from "../../../types";
|
|
9
|
+
/**
|
|
10
|
+
* Generated by Sideko (sideko.dev)
|
|
11
|
+
**/
|
|
9
12
|
/**
|
|
10
13
|
* Generated by Sideko (sideko.dev)
|
|
11
14
|
**/
|
|
@@ -18,18 +21,24 @@ export declare class ApiClient extends CoreResourceClient {
|
|
|
18
21
|
/**
|
|
19
22
|
* Delete an API integration
|
|
20
23
|
*
|
|
24
|
+
* Delete an API integration by its ID.
|
|
25
|
+
*
|
|
21
26
|
* DELETE /integrations/api/{id}
|
|
22
27
|
*/
|
|
23
28
|
delete(request: requests.DeleteRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiDeleteResponse>;
|
|
24
29
|
/**
|
|
25
30
|
* Get an API integration by ID
|
|
26
31
|
*
|
|
32
|
+
* Retrieve a single API integration by its ID.
|
|
33
|
+
*
|
|
27
34
|
* GET /integrations/api/{id}
|
|
28
35
|
*/
|
|
29
36
|
get(request: requests.GetRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiGetResponse>;
|
|
30
37
|
/**
|
|
31
38
|
* Create a new API integration
|
|
32
39
|
*
|
|
40
|
+
* Create a new API integration for the authenticated user.
|
|
41
|
+
*
|
|
33
42
|
* POST /integrations/api
|
|
34
43
|
*/
|
|
35
44
|
create(request?: requests.CreateRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiCreateResponse>;
|
|
@@ -9,6 +9,9 @@ const integrations_api_create_body_1 = require("../../../types/integrations-api-
|
|
|
9
9
|
const integrations_api_create_response_1 = require("../../../types/integrations-api-create-response");
|
|
10
10
|
const integrations_api_delete_response_1 = require("../../../types/integrations-api-delete-response");
|
|
11
11
|
const integrations_api_get_response_1 = require("../../../types/integrations-api-get-response");
|
|
12
|
+
/**
|
|
13
|
+
* Generated by Sideko (sideko.dev)
|
|
14
|
+
**/
|
|
12
15
|
/**
|
|
13
16
|
* Generated by Sideko (sideko.dev)
|
|
14
17
|
**/
|
|
@@ -31,6 +34,8 @@ class ApiClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
31
34
|
/**
|
|
32
35
|
* Delete an API integration
|
|
33
36
|
*
|
|
37
|
+
* Delete an API integration by its ID.
|
|
38
|
+
*
|
|
34
39
|
* DELETE /integrations/api/{id}
|
|
35
40
|
*/
|
|
36
41
|
delete(request, opts) {
|
|
@@ -45,6 +50,8 @@ class ApiClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
45
50
|
/**
|
|
46
51
|
* Get an API integration by ID
|
|
47
52
|
*
|
|
53
|
+
* Retrieve a single API integration by its ID.
|
|
54
|
+
*
|
|
48
55
|
* GET /integrations/api/{id}
|
|
49
56
|
*/
|
|
50
57
|
get(request, opts) {
|
|
@@ -59,6 +66,8 @@ class ApiClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
59
66
|
/**
|
|
60
67
|
* Create a new API integration
|
|
61
68
|
*
|
|
69
|
+
* Create a new API integration for the authenticated user.
|
|
70
|
+
*
|
|
62
71
|
* POST /integrations/api
|
|
63
72
|
*/
|
|
64
73
|
create(request = {}, opts) {
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
import { ApiPromise, CoreClient, CoreResourceClient, RequestOptions, ResourceClientOptions } from "make-api-request-js";
|
|
5
5
|
import * as requests from "../../../../resources/integrations/api/secrets/request-types";
|
|
6
6
|
import * as types from "../../../../types";
|
|
7
|
+
/**
|
|
8
|
+
* Generated by Sideko (sideko.dev)
|
|
9
|
+
**/
|
|
7
10
|
/**
|
|
8
11
|
* Generated by Sideko (sideko.dev)
|
|
9
12
|
**/
|
|
@@ -12,18 +15,24 @@ export declare class SecretsClient extends CoreResourceClient {
|
|
|
12
15
|
/**
|
|
13
16
|
* Delete an API secret
|
|
14
17
|
*
|
|
18
|
+
* Delete an API secret from the specified API integration.
|
|
19
|
+
*
|
|
15
20
|
* DELETE /integrations/api/{id}/secrets/{secretId}
|
|
16
21
|
*/
|
|
17
22
|
delete(request: requests.DeleteRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiSecretsDeleteResponse>;
|
|
18
23
|
/**
|
|
19
24
|
* Get all API secrets for an API integration
|
|
20
25
|
*
|
|
26
|
+
* Retrieve all API secrets configured for the specified API integration.
|
|
27
|
+
*
|
|
21
28
|
* GET /integrations/api/{id}/secrets
|
|
22
29
|
*/
|
|
23
30
|
list(request: requests.ListRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiSecretsListResponseItem[]>;
|
|
24
31
|
/**
|
|
25
32
|
* Create a new API secret
|
|
26
33
|
*
|
|
34
|
+
* Create and encrypt a new API secret for the specified API integration.
|
|
35
|
+
*
|
|
27
36
|
* POST /integrations/api/{id}/secrets
|
|
28
37
|
*/
|
|
29
38
|
create(request: requests.CreateRequest, opts?: RequestOptions): ApiPromise<types.IntegrationsApiSecretsCreateResponse>;
|
|
@@ -43,6 +43,9 @@ const integrations_api_secrets_create_body_1 = require("../../../../types/integr
|
|
|
43
43
|
const integrations_api_secrets_create_response_1 = require("../../../../types/integrations-api-secrets-create-response");
|
|
44
44
|
const integrations_api_secrets_delete_response_1 = require("../../../../types/integrations-api-secrets-delete-response");
|
|
45
45
|
const integrations_api_secrets_list_response_item_1 = require("../../../../types/integrations-api-secrets-list-response-item");
|
|
46
|
+
/**
|
|
47
|
+
* Generated by Sideko (sideko.dev)
|
|
48
|
+
**/
|
|
46
49
|
/**
|
|
47
50
|
* Generated by Sideko (sideko.dev)
|
|
48
51
|
**/
|
|
@@ -53,6 +56,8 @@ class SecretsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
53
56
|
/**
|
|
54
57
|
* Delete an API secret
|
|
55
58
|
*
|
|
59
|
+
* Delete an API secret from the specified API integration.
|
|
60
|
+
*
|
|
56
61
|
* DELETE /integrations/api/{id}/secrets/{secretId}
|
|
57
62
|
*/
|
|
58
63
|
delete(request, opts) {
|
|
@@ -67,6 +72,8 @@ class SecretsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
67
72
|
/**
|
|
68
73
|
* Get all API secrets for an API integration
|
|
69
74
|
*
|
|
75
|
+
* Retrieve all API secrets configured for the specified API integration.
|
|
76
|
+
*
|
|
70
77
|
* GET /integrations/api/{id}/secrets
|
|
71
78
|
*/
|
|
72
79
|
list(request, opts) {
|
|
@@ -81,6 +88,8 @@ class SecretsClient extends make_api_request_js_1.CoreResourceClient {
|
|
|
81
88
|
/**
|
|
82
89
|
* Create a new API secret
|
|
83
90
|
*
|
|
91
|
+
* Create and encrypt a new API secret for the specified API integration.
|
|
92
|
+
*
|
|
84
93
|
* POST /integrations/api/{id}/secrets
|
|
85
94
|
*/
|
|
86
95
|
create(request, opts) {
|
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.IntegrationsClient = void 0;
|
|
7
7
|
const make_api_request_js_1 = require("make-api-request-js");
|
|
8
|
+
/**
|
|
9
|
+
* Generated by Sideko (sideko.dev)
|
|
10
|
+
**/
|
|
8
11
|
/**
|
|
9
12
|
* Generated by Sideko (sideko.dev)
|
|
10
13
|
**/
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by Sideko (sideko.dev)
|
|
4
|
+
**/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.tables = exports.MemoryClient = void 0;
|
|
40
|
+
var resource_client_1 = require("./resource-client");
|
|
41
|
+
Object.defineProperty(exports, "MemoryClient", { enumerable: true, get: function () { return resource_client_1.MemoryClient; } });
|
|
42
|
+
exports.tables = __importStar(require("./tables"));
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by Sideko (sideko.dev)
|
|
3
|
+
**/
|
|
4
|
+
import { CoreClient, CoreResourceClient, ResourceClientOptions } from "make-api-request-js";
|
|
5
|
+
import { TablesClient } from "../../resources/memory/tables";
|
|
6
|
+
export declare class MemoryClient extends CoreResourceClient {
|
|
7
|
+
private _tablesLazy?;
|
|
8
|
+
constructor(coreClient: CoreClient, opts: ResourceClientOptions);
|
|
9
|
+
get tables(): TablesClient;
|
|
10
|
+
}
|