@stigg/typescript-mcp 0.1.0-beta.17 → 0.1.0-beta.18
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/code-tool-worker.d.mts.map +1 -1
- package/code-tool-worker.d.ts.map +1 -1
- package/code-tool-worker.js +4 -0
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +4 -0
- package/code-tool-worker.mjs.map +1 -1
- package/local-docs-search.d.mts.map +1 -1
- package/local-docs-search.d.ts.map +1 -1
- package/local-docs-search.js +180 -0
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +180 -0
- package/local-docs-search.mjs.map +1 -1
- package/methods.d.mts.map +1 -1
- package/methods.d.ts.map +1 -1
- package/methods.js +24 -0
- package/methods.js.map +1 -1
- package/methods.mjs +24 -0
- package/methods.mjs.map +1 -1
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/code-tool-worker.ts +4 -0
- package/src/local-docs-search.ts +218 -0
- package/src/methods.ts +24 -0
- package/src/server.ts +1 -1
package/local-docs-search.mjs
CHANGED
|
@@ -2486,6 +2486,186 @@ const EMBEDDED_METHODS = [
|
|
|
2486
2486
|
},
|
|
2487
2487
|
},
|
|
2488
2488
|
},
|
|
2489
|
+
{
|
|
2490
|
+
name: 'trigger_sync',
|
|
2491
|
+
endpoint: '/api/v1/data-export/sync',
|
|
2492
|
+
httpMethod: 'post',
|
|
2493
|
+
summary: 'Trigger data-export sync',
|
|
2494
|
+
description: 'Trigger a sync for one destination or all destinations under the provider entity.',
|
|
2495
|
+
stainlessPath: '(resource) v1.events.data_export > (method) trigger_sync',
|
|
2496
|
+
qualified: 'client.v1.events.dataExport.triggerSync',
|
|
2497
|
+
params: ['destinationId?: string;'],
|
|
2498
|
+
response: '{ data: { results: { destinationId: string; triggered: boolean; errorMessage?: string; transferId?: string; }[]; }; }',
|
|
2499
|
+
markdown: "## trigger_sync\n\n`client.v1.events.dataExport.triggerSync(destinationId?: string): { data: object; }`\n\n**post** `/api/v1/data-export/sync`\n\nTrigger a sync for one destination or all destinations under the provider entity.\n\n### Parameters\n\n- `destinationId?: string`\n Provider destination ID to sync. Omit to sync all destinations.\n\n### Returns\n\n- `{ data: { results: { destinationId: string; triggered: boolean; errorMessage?: string; transferId?: string; }[]; }; }`\n Response object\n\n - `data: { results: { destinationId: string; triggered: boolean; errorMessage?: string; transferId?: string; }[]; }`\n\n### Example\n\n```typescript\nimport Stigg from '@stigg/typescript';\n\nconst client = new Stigg();\n\nconst response = await client.v1.events.dataExport.triggerSync();\n\nconsole.log(response);\n```",
|
|
2500
|
+
perLanguage: {
|
|
2501
|
+
typescript: {
|
|
2502
|
+
method: 'client.v1.events.dataExport.triggerSync',
|
|
2503
|
+
example: "import Stigg from '@stigg/typescript';\n\nconst client = new Stigg({\n apiKey: process.env['STIGG_API_KEY'], // This is the default and can be omitted\n});\n\nconst response = await client.v1.events.dataExport.triggerSync();\n\nconsole.log(response.data);",
|
|
2504
|
+
},
|
|
2505
|
+
python: {
|
|
2506
|
+
method: 'v1.events.data_export.trigger_sync',
|
|
2507
|
+
example: 'import os\nfrom stigg import Stigg\n\nclient = Stigg(\n api_key=os.environ.get("STIGG_API_KEY"), # This is the default and can be omitted\n)\nresponse = client.v1.events.data_export.trigger_sync()\nprint(response.data)',
|
|
2508
|
+
},
|
|
2509
|
+
java: {
|
|
2510
|
+
method: 'v1().events().dataExport().triggerSync',
|
|
2511
|
+
example: 'package io.stigg.example;\n\nimport io.stigg.client.StiggClient;\nimport io.stigg.client.okhttp.StiggOkHttpClient;\nimport io.stigg.models.v1.events.dataexport.DataExportTriggerSyncParams;\nimport io.stigg.models.v1.events.dataexport.DataExportTriggerSyncResponse;\n\npublic final class Main {\n private Main() {}\n\n public static void main(String[] args) {\n StiggClient client = StiggOkHttpClient.fromEnv();\n\n DataExportTriggerSyncResponse response = client.v1().events().dataExport().triggerSync();\n }\n}',
|
|
2512
|
+
},
|
|
2513
|
+
go: {
|
|
2514
|
+
method: 'client.V1.Events.DataExport.TriggerSync',
|
|
2515
|
+
example: 'package main\n\nimport (\n\t"context"\n\t"fmt"\n\n\t"github.com/stiggio/stigg-go"\n\t"github.com/stiggio/stigg-go/option"\n)\n\nfunc main() {\n\tclient := stigg.NewClient(\n\t\toption.WithAPIKey("My API Key"),\n\t)\n\tresponse, err := client.V1.Events.DataExport.TriggerSync(context.TODO(), stigg.V1EventDataExportTriggerSyncParams{})\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf("%+v\\n", response.Data)\n}\n',
|
|
2516
|
+
},
|
|
2517
|
+
ruby: {
|
|
2518
|
+
method: 'v1.events.data_export.trigger_sync',
|
|
2519
|
+
example: 'require "stigg"\n\nstigg = Stigg::Client.new(api_key: "My API Key")\n\nresponse = stigg.v1.events.data_export.trigger_sync\n\nputs(response)',
|
|
2520
|
+
},
|
|
2521
|
+
cli: {
|
|
2522
|
+
method: 'data_export trigger_sync',
|
|
2523
|
+
example: "stigg v1:events:data-export trigger-sync \\\n --api-key 'My API Key'",
|
|
2524
|
+
},
|
|
2525
|
+
csharp: {
|
|
2526
|
+
method: 'V1.Events.DataExport.TriggerSync',
|
|
2527
|
+
example: 'DataExportTriggerSyncParams parameters = new();\n\nvar response = await client.V1.Events.DataExport.TriggerSync(parameters);\n\nConsole.WriteLine(response);',
|
|
2528
|
+
},
|
|
2529
|
+
http: {
|
|
2530
|
+
example: "curl https://api.stigg.io/api/v1/data-export/sync \\\n -H 'Content-Type: application/json' \\\n -H \"X-API-KEY: $STIGG_API_KEY\" \\\n -d '{}'",
|
|
2531
|
+
},
|
|
2532
|
+
},
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
name: 'mint_scoped_token',
|
|
2536
|
+
endpoint: '/api/v1/data-export/scoped-token',
|
|
2537
|
+
httpMethod: 'post',
|
|
2538
|
+
summary: 'Mint data-export scoped token',
|
|
2539
|
+
description: 'Mint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT integration if needed.',
|
|
2540
|
+
stainlessPath: '(resource) v1.events.data_export > (method) mint_scoped_token',
|
|
2541
|
+
qualified: 'client.v1.events.dataExport.mintScopedToken',
|
|
2542
|
+
params: ['applicationOrigin: string;', 'destinationType?: string;'],
|
|
2543
|
+
response: '{ data: { token: string; expiresAt: string; providerMetadata: object; }; }',
|
|
2544
|
+
markdown: "## mint_scoped_token\n\n`client.v1.events.dataExport.mintScopedToken(applicationOrigin: string, destinationType?: string): { data: object; }`\n\n**post** `/api/v1/data-export/scoped-token`\n\nMint a scoped JWT for the FE embedded SDK. Lazy-creates the DATA_EXPORT integration if needed.\n\n### Parameters\n\n- `applicationOrigin: string`\n FE origin the resulting JWT is bound to (provider-side anti-fraud)\n\n- `destinationType?: string`\n Pin the token to a specific warehouse connect flow\n\n### Returns\n\n- `{ data: { token: string; expiresAt: string; providerMetadata: object; }; }`\n Response object\n\n - `data: { token: string; expiresAt: string; providerMetadata: object; }`\n\n### Example\n\n```typescript\nimport Stigg from '@stigg/typescript';\n\nconst client = new Stigg();\n\nconst response = await client.v1.events.dataExport.mintScopedToken({ applicationOrigin: 'x' });\n\nconsole.log(response);\n```",
|
|
2545
|
+
perLanguage: {
|
|
2546
|
+
typescript: {
|
|
2547
|
+
method: 'client.v1.events.dataExport.mintScopedToken',
|
|
2548
|
+
example: "import Stigg from '@stigg/typescript';\n\nconst client = new Stigg({\n apiKey: process.env['STIGG_API_KEY'], // This is the default and can be omitted\n});\n\nconst response = await client.v1.events.dataExport.mintScopedToken({ applicationOrigin: 'x' });\n\nconsole.log(response.data);",
|
|
2549
|
+
},
|
|
2550
|
+
python: {
|
|
2551
|
+
method: 'v1.events.data_export.mint_scoped_token',
|
|
2552
|
+
example: 'import os\nfrom stigg import Stigg\n\nclient = Stigg(\n api_key=os.environ.get("STIGG_API_KEY"), # This is the default and can be omitted\n)\nresponse = client.v1.events.data_export.mint_scoped_token(\n application_origin="x",\n)\nprint(response.data)',
|
|
2553
|
+
},
|
|
2554
|
+
java: {
|
|
2555
|
+
method: 'v1().events().dataExport().mintScopedToken',
|
|
2556
|
+
example: 'package io.stigg.example;\n\nimport io.stigg.client.StiggClient;\nimport io.stigg.client.okhttp.StiggOkHttpClient;\nimport io.stigg.models.v1.events.dataexport.DataExportMintScopedTokenParams;\nimport io.stigg.models.v1.events.dataexport.DataExportMintScopedTokenResponse;\n\npublic final class Main {\n private Main() {}\n\n public static void main(String[] args) {\n StiggClient client = StiggOkHttpClient.fromEnv();\n\n DataExportMintScopedTokenParams params = DataExportMintScopedTokenParams.builder()\n .applicationOrigin("x")\n .build();\n DataExportMintScopedTokenResponse response = client.v1().events().dataExport().mintScopedToken(params);\n }\n}',
|
|
2557
|
+
},
|
|
2558
|
+
go: {
|
|
2559
|
+
method: 'client.V1.Events.DataExport.MintScopedToken',
|
|
2560
|
+
example: 'package main\n\nimport (\n\t"context"\n\t"fmt"\n\n\t"github.com/stiggio/stigg-go"\n\t"github.com/stiggio/stigg-go/option"\n)\n\nfunc main() {\n\tclient := stigg.NewClient(\n\t\toption.WithAPIKey("My API Key"),\n\t)\n\tresponse, err := client.V1.Events.DataExport.MintScopedToken(context.TODO(), stigg.V1EventDataExportMintScopedTokenParams{\n\t\tApplicationOrigin: "x",\n\t})\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf("%+v\\n", response.Data)\n}\n',
|
|
2561
|
+
},
|
|
2562
|
+
ruby: {
|
|
2563
|
+
method: 'v1.events.data_export.mint_scoped_token',
|
|
2564
|
+
example: 'require "stigg"\n\nstigg = Stigg::Client.new(api_key: "My API Key")\n\nresponse = stigg.v1.events.data_export.mint_scoped_token(application_origin: "x")\n\nputs(response)',
|
|
2565
|
+
},
|
|
2566
|
+
cli: {
|
|
2567
|
+
method: 'data_export mint_scoped_token',
|
|
2568
|
+
example: "stigg v1:events:data-export mint-scoped-token \\\n --api-key 'My API Key' \\\n --application-origin x",
|
|
2569
|
+
},
|
|
2570
|
+
csharp: {
|
|
2571
|
+
method: 'V1.Events.DataExport.MintScopedToken',
|
|
2572
|
+
example: 'DataExportMintScopedTokenParams parameters = new() { ApplicationOrigin = "x" };\n\nvar response = await client.V1.Events.DataExport.MintScopedToken(parameters);\n\nConsole.WriteLine(response);',
|
|
2573
|
+
},
|
|
2574
|
+
http: {
|
|
2575
|
+
example: 'curl https://api.stigg.io/api/v1/data-export/scoped-token \\\n -H \'Content-Type: application/json\' \\\n -H "X-API-KEY: $STIGG_API_KEY" \\\n -d \'{\n "applicationOrigin": "x"\n }\'',
|
|
2576
|
+
},
|
|
2577
|
+
},
|
|
2578
|
+
},
|
|
2579
|
+
{
|
|
2580
|
+
name: 'create',
|
|
2581
|
+
endpoint: '/api/v1/data-export/destinations',
|
|
2582
|
+
httpMethod: 'post',
|
|
2583
|
+
summary: 'Add data-export destination',
|
|
2584
|
+
description: "Register a destination on the environment's DATA_EXPORT integration. Lazy-creates the integration row + provider recipient on first call. Idempotent on destinationId.",
|
|
2585
|
+
stainlessPath: '(resource) v1.events.data_export.destinations > (method) create',
|
|
2586
|
+
qualified: 'client.v1.events.dataExport.destinations.create',
|
|
2587
|
+
params: ['destinationId: string;', 'destinationType: string;'],
|
|
2588
|
+
response: '{ data: { destinations: { connectedAt: string; destinationId: string; type: string; }[]; }; }',
|
|
2589
|
+
markdown: "## create\n\n`client.v1.events.dataExport.destinations.create(destinationId: string, destinationType: string): { data: object; }`\n\n**post** `/api/v1/data-export/destinations`\n\nRegister a destination on the environment's DATA_EXPORT integration. Lazy-creates the integration row + provider recipient on first call. Idempotent on destinationId.\n\n### Parameters\n\n- `destinationId: string`\n The provider destination ID returned by the embedded SDK on connect\n\n- `destinationType: string`\n The destination type (e.g. snowflake, bigquery)\n\n### Returns\n\n- `{ data: { destinations: { connectedAt: string; destinationId: string; type: string; }[]; }; }`\n Response object\n\n - `data: { destinations: { connectedAt: string; destinationId: string; type: string; }[]; }`\n\n### Example\n\n```typescript\nimport Stigg from '@stigg/typescript';\n\nconst client = new Stigg();\n\nconst destination = await client.v1.events.dataExport.destinations.create({ destinationId: 'x', destinationType: 'x' });\n\nconsole.log(destination);\n```",
|
|
2590
|
+
perLanguage: {
|
|
2591
|
+
typescript: {
|
|
2592
|
+
method: 'client.v1.events.dataExport.destinations.create',
|
|
2593
|
+
example: "import Stigg from '@stigg/typescript';\n\nconst client = new Stigg({\n apiKey: process.env['STIGG_API_KEY'], // This is the default and can be omitted\n});\n\nconst destination = await client.v1.events.dataExport.destinations.create({\n destinationId: 'x',\n destinationType: 'x',\n});\n\nconsole.log(destination.data);",
|
|
2594
|
+
},
|
|
2595
|
+
python: {
|
|
2596
|
+
method: 'v1.events.data_export.destinations.create',
|
|
2597
|
+
example: 'import os\nfrom stigg import Stigg\n\nclient = Stigg(\n api_key=os.environ.get("STIGG_API_KEY"), # This is the default and can be omitted\n)\ndestination = client.v1.events.data_export.destinations.create(\n destination_id="x",\n destination_type="x",\n)\nprint(destination.data)',
|
|
2598
|
+
},
|
|
2599
|
+
java: {
|
|
2600
|
+
method: 'v1().events().dataExport().destinations().create',
|
|
2601
|
+
example: 'package io.stigg.example;\n\nimport io.stigg.client.StiggClient;\nimport io.stigg.client.okhttp.StiggOkHttpClient;\nimport io.stigg.models.v1.events.dataexport.destinations.DestinationCreateParams;\nimport io.stigg.models.v1.events.dataexport.destinations.DestinationCreateResponse;\n\npublic final class Main {\n private Main() {}\n\n public static void main(String[] args) {\n StiggClient client = StiggOkHttpClient.fromEnv();\n\n DestinationCreateParams params = DestinationCreateParams.builder()\n .destinationId("x")\n .destinationType("x")\n .build();\n DestinationCreateResponse destination = client.v1().events().dataExport().destinations().create(params);\n }\n}',
|
|
2602
|
+
},
|
|
2603
|
+
go: {
|
|
2604
|
+
method: 'client.V1.Events.DataExport.Destinations.New',
|
|
2605
|
+
example: 'package main\n\nimport (\n\t"context"\n\t"fmt"\n\n\t"github.com/stiggio/stigg-go"\n\t"github.com/stiggio/stigg-go/option"\n)\n\nfunc main() {\n\tclient := stigg.NewClient(\n\t\toption.WithAPIKey("My API Key"),\n\t)\n\tdestination, err := client.V1.Events.DataExport.Destinations.New(context.TODO(), stigg.V1EventDataExportDestinationNewParams{\n\t\tDestinationID: "x",\n\t\tDestinationType: "x",\n\t})\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf("%+v\\n", destination.Data)\n}\n',
|
|
2606
|
+
},
|
|
2607
|
+
ruby: {
|
|
2608
|
+
method: 'v1.events.data_export.destinations.create',
|
|
2609
|
+
example: 'require "stigg"\n\nstigg = Stigg::Client.new(api_key: "My API Key")\n\ndestination = stigg.v1.events.data_export.destinations.create(destination_id: "x", destination_type: "x")\n\nputs(destination)',
|
|
2610
|
+
},
|
|
2611
|
+
cli: {
|
|
2612
|
+
method: 'destinations create',
|
|
2613
|
+
example: "stigg v1:events:data-export:destinations create \\\n --api-key 'My API Key' \\\n --destination-id x \\\n --destination-type x",
|
|
2614
|
+
},
|
|
2615
|
+
csharp: {
|
|
2616
|
+
method: 'V1.Events.DataExport.Destinations.Create',
|
|
2617
|
+
example: 'DestinationCreateParams parameters = new()\n{\n DestinationID = "x",\n DestinationType = "x",\n};\n\nvar destination = await client.V1.Events.DataExport.Destinations.Create(parameters);\n\nConsole.WriteLine(destination);',
|
|
2618
|
+
},
|
|
2619
|
+
http: {
|
|
2620
|
+
example: 'curl https://api.stigg.io/api/v1/data-export/destinations \\\n -H \'Content-Type: application/json\' \\\n -H "X-API-KEY: $STIGG_API_KEY" \\\n -d \'{\n "destinationId": "x",\n "destinationType": "x"\n }\'',
|
|
2621
|
+
},
|
|
2622
|
+
},
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
name: 'delete',
|
|
2626
|
+
endpoint: '/api/v1/data-export/destinations/{destinationId}',
|
|
2627
|
+
httpMethod: 'delete',
|
|
2628
|
+
summary: 'Remove data-export destination',
|
|
2629
|
+
description: 'Remove a destination from the DATA_EXPORT integration metadata. Idempotent.',
|
|
2630
|
+
stainlessPath: '(resource) v1.events.data_export.destinations > (method) delete',
|
|
2631
|
+
qualified: 'client.v1.events.dataExport.destinations.delete',
|
|
2632
|
+
params: ['destinationId: string;'],
|
|
2633
|
+
response: '{ data: { destinations: { connectedAt: string; destinationId: string; type: string; }[]; }; }',
|
|
2634
|
+
markdown: "## delete\n\n`client.v1.events.dataExport.destinations.delete(destinationId: string): { data: object; }`\n\n**delete** `/api/v1/data-export/destinations/{destinationId}`\n\nRemove a destination from the DATA_EXPORT integration metadata. Idempotent.\n\n### Parameters\n\n- `destinationId: string`\n\n### Returns\n\n- `{ data: { destinations: { connectedAt: string; destinationId: string; type: string; }[]; }; }`\n Response object\n\n - `data: { destinations: { connectedAt: string; destinationId: string; type: string; }[]; }`\n\n### Example\n\n```typescript\nimport Stigg from '@stigg/typescript';\n\nconst client = new Stigg();\n\nconst destination = await client.v1.events.dataExport.destinations.delete('x');\n\nconsole.log(destination);\n```",
|
|
2635
|
+
perLanguage: {
|
|
2636
|
+
typescript: {
|
|
2637
|
+
method: 'client.v1.events.dataExport.destinations.delete',
|
|
2638
|
+
example: "import Stigg from '@stigg/typescript';\n\nconst client = new Stigg({\n apiKey: process.env['STIGG_API_KEY'], // This is the default and can be omitted\n});\n\nconst destination = await client.v1.events.dataExport.destinations.delete('x');\n\nconsole.log(destination.data);",
|
|
2639
|
+
},
|
|
2640
|
+
python: {
|
|
2641
|
+
method: 'v1.events.data_export.destinations.delete',
|
|
2642
|
+
example: 'import os\nfrom stigg import Stigg\n\nclient = Stigg(\n api_key=os.environ.get("STIGG_API_KEY"), # This is the default and can be omitted\n)\ndestination = client.v1.events.data_export.destinations.delete(\n "x",\n)\nprint(destination.data)',
|
|
2643
|
+
},
|
|
2644
|
+
java: {
|
|
2645
|
+
method: 'v1().events().dataExport().destinations().delete',
|
|
2646
|
+
example: 'package io.stigg.example;\n\nimport io.stigg.client.StiggClient;\nimport io.stigg.client.okhttp.StiggOkHttpClient;\nimport io.stigg.models.v1.events.dataexport.destinations.DestinationDeleteParams;\nimport io.stigg.models.v1.events.dataexport.destinations.DestinationDeleteResponse;\n\npublic final class Main {\n private Main() {}\n\n public static void main(String[] args) {\n StiggClient client = StiggOkHttpClient.fromEnv();\n\n DestinationDeleteResponse destination = client.v1().events().dataExport().destinations().delete("x");\n }\n}',
|
|
2647
|
+
},
|
|
2648
|
+
go: {
|
|
2649
|
+
method: 'client.V1.Events.DataExport.Destinations.Delete',
|
|
2650
|
+
example: 'package main\n\nimport (\n\t"context"\n\t"fmt"\n\n\t"github.com/stiggio/stigg-go"\n\t"github.com/stiggio/stigg-go/option"\n)\n\nfunc main() {\n\tclient := stigg.NewClient(\n\t\toption.WithAPIKey("My API Key"),\n\t)\n\tdestination, err := client.V1.Events.DataExport.Destinations.Delete(context.TODO(), "x")\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf("%+v\\n", destination.Data)\n}\n',
|
|
2651
|
+
},
|
|
2652
|
+
ruby: {
|
|
2653
|
+
method: 'v1.events.data_export.destinations.delete',
|
|
2654
|
+
example: 'require "stigg"\n\nstigg = Stigg::Client.new(api_key: "My API Key")\n\ndestination = stigg.v1.events.data_export.destinations.delete("x")\n\nputs(destination)',
|
|
2655
|
+
},
|
|
2656
|
+
cli: {
|
|
2657
|
+
method: 'destinations delete',
|
|
2658
|
+
example: "stigg v1:events:data-export:destinations delete \\\n --api-key 'My API Key' \\\n --destination-id x",
|
|
2659
|
+
},
|
|
2660
|
+
csharp: {
|
|
2661
|
+
method: 'V1.Events.DataExport.Destinations.Delete',
|
|
2662
|
+
example: 'DestinationDeleteParams parameters = new() { DestinationID = "x" };\n\nvar destination = await client.V1.Events.DataExport.Destinations.Delete(parameters);\n\nConsole.WriteLine(destination);',
|
|
2663
|
+
},
|
|
2664
|
+
http: {
|
|
2665
|
+
example: 'curl https://api.stigg.io/api/v1/data-export/destinations/$DESTINATION_ID \\\n -X DELETE \\\n -H "X-API-KEY: $STIGG_API_KEY"',
|
|
2666
|
+
},
|
|
2667
|
+
},
|
|
2668
|
+
},
|
|
2489
2669
|
{
|
|
2490
2670
|
name: 'get_usage',
|
|
2491
2671
|
endpoint: '/api/v1/credits/usage',
|