@naturali/sdk 0.78.6 → 0.79.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.cjs +4 -2
- package/dist/index.d.cts +41 -7
- package/dist/index.d.mts +41 -7
- package/dist/index.mjs +4 -2
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -3122,7 +3122,9 @@ var Orchestrations = class {
|
|
|
3122
3122
|
/**
|
|
3123
3123
|
* List orchestration runs
|
|
3124
3124
|
*
|
|
3125
|
-
* Returns orchestration runs the caller can access, optionally filtered by orchestration.
|
|
3125
|
+
* Returns orchestration runs the caller can access, optionally filtered by orchestration, by parent run, or by whether the run has a parent at all.
|
|
3126
|
+
*
|
|
3127
|
+
* Note when aggregating: a run's `usage` covers its whole subtree, so summing it over a list that contains both a parent and its children counts the children more than once. Pass `nested=false` to sum over runs a caller started.
|
|
3126
3128
|
*/
|
|
3127
3129
|
static listOrchestrationRuns(options) {
|
|
3128
3130
|
return (options.client ?? client).get({
|
|
@@ -3772,7 +3774,7 @@ var Tools = class {
|
|
|
3772
3774
|
*
|
|
3773
3775
|
* Directly invokes a tool and returns its output. Supported for `http`, `mcp`, and `pipeline` tools. `client` tools cannot be invoked server-side and will return 422. A `pipeline` tool runs its declared steps in order and returns the mapped `output` (or the last step's output); `action` is ignored and `input` is the pipeline input.
|
|
3774
3776
|
* For `mcp` tools the `action` field is required and identifies which tool name to invoke. For `http` tools `action` is ignored. When an `mcp` tool declares an `actions` allowlist, an action outside it is rejected with `400 VALIDATION_FAILED` ("not available on this tool") before any outbound request is made.
|
|
3775
|
-
* `preset_parameters` stored on the tool are
|
|
3777
|
+
* `preset_parameters` stored on the tool are pinned over the caller-supplied `input` before execution: a key the tool presets keeps its preset value even when `input` sets it. Keys the presets do not name are taken from `input` as sent.
|
|
3776
3778
|
*
|
|
3777
3779
|
*/
|
|
3778
3780
|
static callTool(options) {
|
package/dist/index.d.cts
CHANGED
|
@@ -1125,7 +1125,9 @@ type CreateToolRequest = {
|
|
|
1125
1125
|
*/
|
|
1126
1126
|
context_keys?: Array<string> | null;
|
|
1127
1127
|
/**
|
|
1128
|
-
* Fixed parameters
|
|
1128
|
+
* Fixed parameters pinned on every call this tool makes, whatever its type. Keys matching fields in the input schema are removed from the schema shown to the model, and a pinned value wins over one the model or a direct caller supplies for the same key.
|
|
1129
|
+
*
|
|
1130
|
+
* Values accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a pin can be the run's own value — the one account this run may act on — rather than one fixed when the tool was created. A resolved value is retyped to the parameter's declared schema type; a key missing from the call's `tool_context` fails the call with `MISSING_TOOL_CONTEXT_KEY` rather than sending the literal placeholder. `{{secret:...}}` is not resolved here. See the Tool Context reference.
|
|
1129
1131
|
*/
|
|
1130
1132
|
preset_parameters?: {
|
|
1131
1133
|
[key: string]: unknown;
|
|
@@ -3782,6 +3784,14 @@ type OrchestrationRun = {
|
|
|
3782
3784
|
metadata?: {
|
|
3783
3785
|
[key: string]: unknown;
|
|
3784
3786
|
} | null;
|
|
3787
|
+
/**
|
|
3788
|
+
* The run whose node started this one — set only on a child a `loop` or `sub_orchestration` node spawned, null for a run a caller started. A child is its own run with its own usage events, so this is what makes a delegated run's spend attributable to the run that ordered it.
|
|
3789
|
+
*/
|
|
3790
|
+
parent_orchestration_run_id?: string | null;
|
|
3791
|
+
/**
|
|
3792
|
+
* The node within `parent_orchestration_run_id` that started this run. Null when `parent_orchestration_run_id` is null.
|
|
3793
|
+
*/
|
|
3794
|
+
parent_node_id?: string | null;
|
|
3785
3795
|
/**
|
|
3786
3796
|
* Terminal node artifact(s) when the run has succeeded.
|
|
3787
3797
|
*/
|
|
@@ -3793,9 +3803,17 @@ type OrchestrationRun = {
|
|
|
3793
3803
|
*/
|
|
3794
3804
|
node_executions?: Array<NodeExecution>;
|
|
3795
3805
|
/**
|
|
3796
|
-
*
|
|
3806
|
+
* What the run cost: token counts and `cost_usd` summed across every metered generation it produced **and every run it started** through `loop` / `sub_orchestration` nodes, at any depth. Present on the single-run read; omitted from run list responses.
|
|
3807
|
+
*
|
|
3808
|
+
* A nested child is a run record of its own, so this figure spans several of them. Two consequences: summing `usage` across a list that mixes parents and children double-counts (filter with `nested=false`), and the per-event receipt at `/v1/projects/{project_id}/usage/receipt` stays scoped to one run — its line items carry a `node_id` from one graph only.
|
|
3797
3809
|
*/
|
|
3798
3810
|
usage?: RunUsageTotals;
|
|
3811
|
+
/**
|
|
3812
|
+
* The same roll-up restricted to **this run's own nodes**, excluding every nested run it started. Equal to `usage` for a run with no children; below it for a run that delegates. Present on the single-run read; omitted from run list responses.
|
|
3813
|
+
*
|
|
3814
|
+
* This is the field to read to see where cost sits in a run tree — own versus subtree — without walking the children.
|
|
3815
|
+
*/
|
|
3816
|
+
usage_own?: RunUsageTotals;
|
|
3799
3817
|
required_action?: RequiredAction | null;
|
|
3800
3818
|
started_at?: Date | null;
|
|
3801
3819
|
completed_at?: Date | null;
|
|
@@ -4622,7 +4640,9 @@ type Tool = {
|
|
|
4622
4640
|
*/
|
|
4623
4641
|
context_keys?: Array<string> | null;
|
|
4624
4642
|
/**
|
|
4625
|
-
* Fixed parameters
|
|
4643
|
+
* Fixed parameters pinned on every call this tool makes, whatever its type. Keys matching fields in the input schema are removed from the schema shown to the model, and a pinned value wins over one the model or a direct caller supplies for the same key.
|
|
4644
|
+
*
|
|
4645
|
+
* Values accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a pin can be the run's own value — the one account this run may act on — rather than one fixed when the tool was created. A resolved value is retyped to the parameter's declared schema type; a key missing from the call's `tool_context` fails the call with `MISSING_TOOL_CONTEXT_KEY` rather than sending the literal placeholder. `{{secret:...}}` is not resolved here. See the Tool Context reference.
|
|
4626
4646
|
*/
|
|
4627
4647
|
preset_parameters?: {
|
|
4628
4648
|
[key: string]: unknown;
|
|
@@ -4688,7 +4708,9 @@ type UpdateToolRequest = {
|
|
|
4688
4708
|
*/
|
|
4689
4709
|
context_keys?: Array<string> | null;
|
|
4690
4710
|
/**
|
|
4691
|
-
* Fixed parameters
|
|
4711
|
+
* Fixed parameters pinned on every call this tool makes, whatever its type. Keys matching fields in the input schema are removed from the schema shown to the model, and a pinned value wins over one the model or a direct caller supplies for the same key.
|
|
4712
|
+
*
|
|
4713
|
+
* Values accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a pin can be the run's own value — the one account this run may act on — rather than one fixed when the tool was created. A resolved value is retyped to the parameter's declared schema type; a key missing from the call's `tool_context` fails the call with `MISSING_TOOL_CONTEXT_KEY` rather than sending the literal placeholder. `{{secret:...}}` is not resolved here. See the Tool Context reference.
|
|
4692
4714
|
*/
|
|
4693
4715
|
preset_parameters?: {
|
|
4694
4716
|
[key: string]: unknown;
|
|
@@ -4717,7 +4739,7 @@ type CallToolRequest = {
|
|
|
4717
4739
|
*/
|
|
4718
4740
|
action?: string;
|
|
4719
4741
|
/**
|
|
4720
|
-
* Input parameters for the tool call. These are merged with the tool's `preset_parameters` before execution
|
|
4742
|
+
* Input parameters for the tool call. These are merged with the tool's `preset_parameters` before execution; a preset value wins over the same key sent here.
|
|
4721
4743
|
*
|
|
4722
4744
|
*/
|
|
4723
4745
|
input?: {
|
|
@@ -13499,6 +13521,16 @@ type ListOrchestrationRunsData = {
|
|
|
13499
13521
|
* Filter by orchestration public ID (orch_...)
|
|
13500
13522
|
*/
|
|
13501
13523
|
orchestration_id?: string;
|
|
13524
|
+
/**
|
|
13525
|
+
* Filter to the runs one specific parent run's `loop` / `sub_orchestration` nodes started (run_...). This is how a caller holding a parent names the individual children behind its `usage`.
|
|
13526
|
+
*/
|
|
13527
|
+
parent_orchestration_run_id?: string;
|
|
13528
|
+
/**
|
|
13529
|
+
* Filter by whether the run was started by another run. `false` returns only the runs a caller started (no parent), which is the set to sum `usage` over; `true` returns only the runs a `loop` / `sub_orchestration` node started, across every parent. Omit to return both.
|
|
13530
|
+
*
|
|
13531
|
+
* Contradicting `parent_orchestration_run_id` with `nested=false` is a `400`; any value other than `true` or `false` is a `400`.
|
|
13532
|
+
*/
|
|
13533
|
+
nested?: boolean;
|
|
13502
13534
|
/**
|
|
13503
13535
|
* Maximum number of results to return
|
|
13504
13536
|
*/
|
|
@@ -18033,7 +18065,9 @@ declare class Orchestrations {
|
|
|
18033
18065
|
/**
|
|
18034
18066
|
* List orchestration runs
|
|
18035
18067
|
*
|
|
18036
|
-
* Returns orchestration runs the caller can access, optionally filtered by orchestration.
|
|
18068
|
+
* Returns orchestration runs the caller can access, optionally filtered by orchestration, by parent run, or by whether the run has a parent at all.
|
|
18069
|
+
*
|
|
18070
|
+
* Note when aggregating: a run's `usage` covers its whole subtree, so summing it over a list that contains both a parent and its children counts the children more than once. Pass `nested=false` to sum over runs a caller started.
|
|
18037
18071
|
*/
|
|
18038
18072
|
static listOrchestrationRuns<ThrowOnError extends boolean = false>(options: Options<ListOrchestrationRunsData, ThrowOnError>): RequestResult<ListOrchestrationRunsResponses, ListOrchestrationRunsErrors, ThrowOnError>;
|
|
18039
18073
|
/**
|
|
@@ -18359,7 +18393,7 @@ declare class Tools {
|
|
|
18359
18393
|
*
|
|
18360
18394
|
* Directly invokes a tool and returns its output. Supported for `http`, `mcp`, and `pipeline` tools. `client` tools cannot be invoked server-side and will return 422. A `pipeline` tool runs its declared steps in order and returns the mapped `output` (or the last step's output); `action` is ignored and `input` is the pipeline input.
|
|
18361
18395
|
* For `mcp` tools the `action` field is required and identifies which tool name to invoke. For `http` tools `action` is ignored. When an `mcp` tool declares an `actions` allowlist, an action outside it is rejected with `400 VALIDATION_FAILED` ("not available on this tool") before any outbound request is made.
|
|
18362
|
-
* `preset_parameters` stored on the tool are
|
|
18396
|
+
* `preset_parameters` stored on the tool are pinned over the caller-supplied `input` before execution: a key the tool presets keeps its preset value even when `input` sets it. Keys the presets do not name are taken from `input` as sent.
|
|
18363
18397
|
*
|
|
18364
18398
|
*/
|
|
18365
18399
|
static callTool<ThrowOnError extends boolean = false>(options: Options<CallToolData, ThrowOnError>): RequestResult<CallToolResponses, CallToolErrors, ThrowOnError>;
|
package/dist/index.d.mts
CHANGED
|
@@ -1125,7 +1125,9 @@ type CreateToolRequest = {
|
|
|
1125
1125
|
*/
|
|
1126
1126
|
context_keys?: Array<string> | null;
|
|
1127
1127
|
/**
|
|
1128
|
-
* Fixed parameters
|
|
1128
|
+
* Fixed parameters pinned on every call this tool makes, whatever its type. Keys matching fields in the input schema are removed from the schema shown to the model, and a pinned value wins over one the model or a direct caller supplies for the same key.
|
|
1129
|
+
*
|
|
1130
|
+
* Values accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a pin can be the run's own value — the one account this run may act on — rather than one fixed when the tool was created. A resolved value is retyped to the parameter's declared schema type; a key missing from the call's `tool_context` fails the call with `MISSING_TOOL_CONTEXT_KEY` rather than sending the literal placeholder. `{{secret:...}}` is not resolved here. See the Tool Context reference.
|
|
1129
1131
|
*/
|
|
1130
1132
|
preset_parameters?: {
|
|
1131
1133
|
[key: string]: unknown;
|
|
@@ -3782,6 +3784,14 @@ type OrchestrationRun = {
|
|
|
3782
3784
|
metadata?: {
|
|
3783
3785
|
[key: string]: unknown;
|
|
3784
3786
|
} | null;
|
|
3787
|
+
/**
|
|
3788
|
+
* The run whose node started this one — set only on a child a `loop` or `sub_orchestration` node spawned, null for a run a caller started. A child is its own run with its own usage events, so this is what makes a delegated run's spend attributable to the run that ordered it.
|
|
3789
|
+
*/
|
|
3790
|
+
parent_orchestration_run_id?: string | null;
|
|
3791
|
+
/**
|
|
3792
|
+
* The node within `parent_orchestration_run_id` that started this run. Null when `parent_orchestration_run_id` is null.
|
|
3793
|
+
*/
|
|
3794
|
+
parent_node_id?: string | null;
|
|
3785
3795
|
/**
|
|
3786
3796
|
* Terminal node artifact(s) when the run has succeeded.
|
|
3787
3797
|
*/
|
|
@@ -3793,9 +3803,17 @@ type OrchestrationRun = {
|
|
|
3793
3803
|
*/
|
|
3794
3804
|
node_executions?: Array<NodeExecution>;
|
|
3795
3805
|
/**
|
|
3796
|
-
*
|
|
3806
|
+
* What the run cost: token counts and `cost_usd` summed across every metered generation it produced **and every run it started** through `loop` / `sub_orchestration` nodes, at any depth. Present on the single-run read; omitted from run list responses.
|
|
3807
|
+
*
|
|
3808
|
+
* A nested child is a run record of its own, so this figure spans several of them. Two consequences: summing `usage` across a list that mixes parents and children double-counts (filter with `nested=false`), and the per-event receipt at `/v1/projects/{project_id}/usage/receipt` stays scoped to one run — its line items carry a `node_id` from one graph only.
|
|
3797
3809
|
*/
|
|
3798
3810
|
usage?: RunUsageTotals;
|
|
3811
|
+
/**
|
|
3812
|
+
* The same roll-up restricted to **this run's own nodes**, excluding every nested run it started. Equal to `usage` for a run with no children; below it for a run that delegates. Present on the single-run read; omitted from run list responses.
|
|
3813
|
+
*
|
|
3814
|
+
* This is the field to read to see where cost sits in a run tree — own versus subtree — without walking the children.
|
|
3815
|
+
*/
|
|
3816
|
+
usage_own?: RunUsageTotals;
|
|
3799
3817
|
required_action?: RequiredAction | null;
|
|
3800
3818
|
started_at?: Date | null;
|
|
3801
3819
|
completed_at?: Date | null;
|
|
@@ -4622,7 +4640,9 @@ type Tool = {
|
|
|
4622
4640
|
*/
|
|
4623
4641
|
context_keys?: Array<string> | null;
|
|
4624
4642
|
/**
|
|
4625
|
-
* Fixed parameters
|
|
4643
|
+
* Fixed parameters pinned on every call this tool makes, whatever its type. Keys matching fields in the input schema are removed from the schema shown to the model, and a pinned value wins over one the model or a direct caller supplies for the same key.
|
|
4644
|
+
*
|
|
4645
|
+
* Values accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a pin can be the run's own value — the one account this run may act on — rather than one fixed when the tool was created. A resolved value is retyped to the parameter's declared schema type; a key missing from the call's `tool_context` fails the call with `MISSING_TOOL_CONTEXT_KEY` rather than sending the literal placeholder. `{{secret:...}}` is not resolved here. See the Tool Context reference.
|
|
4626
4646
|
*/
|
|
4627
4647
|
preset_parameters?: {
|
|
4628
4648
|
[key: string]: unknown;
|
|
@@ -4688,7 +4708,9 @@ type UpdateToolRequest = {
|
|
|
4688
4708
|
*/
|
|
4689
4709
|
context_keys?: Array<string> | null;
|
|
4690
4710
|
/**
|
|
4691
|
-
* Fixed parameters
|
|
4711
|
+
* Fixed parameters pinned on every call this tool makes, whatever its type. Keys matching fields in the input schema are removed from the schema shown to the model, and a pinned value wins over one the model or a direct caller supplies for the same key.
|
|
4712
|
+
*
|
|
4713
|
+
* Values accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a pin can be the run's own value — the one account this run may act on — rather than one fixed when the tool was created. A resolved value is retyped to the parameter's declared schema type; a key missing from the call's `tool_context` fails the call with `MISSING_TOOL_CONTEXT_KEY` rather than sending the literal placeholder. `{{secret:...}}` is not resolved here. See the Tool Context reference.
|
|
4692
4714
|
*/
|
|
4693
4715
|
preset_parameters?: {
|
|
4694
4716
|
[key: string]: unknown;
|
|
@@ -4717,7 +4739,7 @@ type CallToolRequest = {
|
|
|
4717
4739
|
*/
|
|
4718
4740
|
action?: string;
|
|
4719
4741
|
/**
|
|
4720
|
-
* Input parameters for the tool call. These are merged with the tool's `preset_parameters` before execution
|
|
4742
|
+
* Input parameters for the tool call. These are merged with the tool's `preset_parameters` before execution; a preset value wins over the same key sent here.
|
|
4721
4743
|
*
|
|
4722
4744
|
*/
|
|
4723
4745
|
input?: {
|
|
@@ -13499,6 +13521,16 @@ type ListOrchestrationRunsData = {
|
|
|
13499
13521
|
* Filter by orchestration public ID (orch_...)
|
|
13500
13522
|
*/
|
|
13501
13523
|
orchestration_id?: string;
|
|
13524
|
+
/**
|
|
13525
|
+
* Filter to the runs one specific parent run's `loop` / `sub_orchestration` nodes started (run_...). This is how a caller holding a parent names the individual children behind its `usage`.
|
|
13526
|
+
*/
|
|
13527
|
+
parent_orchestration_run_id?: string;
|
|
13528
|
+
/**
|
|
13529
|
+
* Filter by whether the run was started by another run. `false` returns only the runs a caller started (no parent), which is the set to sum `usage` over; `true` returns only the runs a `loop` / `sub_orchestration` node started, across every parent. Omit to return both.
|
|
13530
|
+
*
|
|
13531
|
+
* Contradicting `parent_orchestration_run_id` with `nested=false` is a `400`; any value other than `true` or `false` is a `400`.
|
|
13532
|
+
*/
|
|
13533
|
+
nested?: boolean;
|
|
13502
13534
|
/**
|
|
13503
13535
|
* Maximum number of results to return
|
|
13504
13536
|
*/
|
|
@@ -18033,7 +18065,9 @@ declare class Orchestrations {
|
|
|
18033
18065
|
/**
|
|
18034
18066
|
* List orchestration runs
|
|
18035
18067
|
*
|
|
18036
|
-
* Returns orchestration runs the caller can access, optionally filtered by orchestration.
|
|
18068
|
+
* Returns orchestration runs the caller can access, optionally filtered by orchestration, by parent run, or by whether the run has a parent at all.
|
|
18069
|
+
*
|
|
18070
|
+
* Note when aggregating: a run's `usage` covers its whole subtree, so summing it over a list that contains both a parent and its children counts the children more than once. Pass `nested=false` to sum over runs a caller started.
|
|
18037
18071
|
*/
|
|
18038
18072
|
static listOrchestrationRuns<ThrowOnError extends boolean = false>(options: Options<ListOrchestrationRunsData, ThrowOnError>): RequestResult<ListOrchestrationRunsResponses, ListOrchestrationRunsErrors, ThrowOnError>;
|
|
18039
18073
|
/**
|
|
@@ -18359,7 +18393,7 @@ declare class Tools {
|
|
|
18359
18393
|
*
|
|
18360
18394
|
* Directly invokes a tool and returns its output. Supported for `http`, `mcp`, and `pipeline` tools. `client` tools cannot be invoked server-side and will return 422. A `pipeline` tool runs its declared steps in order and returns the mapped `output` (or the last step's output); `action` is ignored and `input` is the pipeline input.
|
|
18361
18395
|
* For `mcp` tools the `action` field is required and identifies which tool name to invoke. For `http` tools `action` is ignored. When an `mcp` tool declares an `actions` allowlist, an action outside it is rejected with `400 VALIDATION_FAILED` ("not available on this tool") before any outbound request is made.
|
|
18362
|
-
* `preset_parameters` stored on the tool are
|
|
18396
|
+
* `preset_parameters` stored on the tool are pinned over the caller-supplied `input` before execution: a key the tool presets keeps its preset value even when `input` sets it. Keys the presets do not name are taken from `input` as sent.
|
|
18363
18397
|
*
|
|
18364
18398
|
*/
|
|
18365
18399
|
static callTool<ThrowOnError extends boolean = false>(options: Options<CallToolData, ThrowOnError>): RequestResult<CallToolResponses, CallToolErrors, ThrowOnError>;
|
package/dist/index.mjs
CHANGED
|
@@ -3121,7 +3121,9 @@ var Orchestrations = class {
|
|
|
3121
3121
|
/**
|
|
3122
3122
|
* List orchestration runs
|
|
3123
3123
|
*
|
|
3124
|
-
* Returns orchestration runs the caller can access, optionally filtered by orchestration.
|
|
3124
|
+
* Returns orchestration runs the caller can access, optionally filtered by orchestration, by parent run, or by whether the run has a parent at all.
|
|
3125
|
+
*
|
|
3126
|
+
* Note when aggregating: a run's `usage` covers its whole subtree, so summing it over a list that contains both a parent and its children counts the children more than once. Pass `nested=false` to sum over runs a caller started.
|
|
3125
3127
|
*/
|
|
3126
3128
|
static listOrchestrationRuns(options) {
|
|
3127
3129
|
return (options.client ?? client).get({
|
|
@@ -3771,7 +3773,7 @@ var Tools = class {
|
|
|
3771
3773
|
*
|
|
3772
3774
|
* Directly invokes a tool and returns its output. Supported for `http`, `mcp`, and `pipeline` tools. `client` tools cannot be invoked server-side and will return 422. A `pipeline` tool runs its declared steps in order and returns the mapped `output` (or the last step's output); `action` is ignored and `input` is the pipeline input.
|
|
3773
3775
|
* For `mcp` tools the `action` field is required and identifies which tool name to invoke. For `http` tools `action` is ignored. When an `mcp` tool declares an `actions` allowlist, an action outside it is rejected with `400 VALIDATION_FAILED` ("not available on this tool") before any outbound request is made.
|
|
3774
|
-
* `preset_parameters` stored on the tool are
|
|
3776
|
+
* `preset_parameters` stored on the tool are pinned over the caller-supplied `input` before execution: a key the tool presets keeps its preset value even when `input` sets it. Keys the presets do not name are taken from `input` as sent.
|
|
3775
3777
|
*
|
|
3776
3778
|
*/
|
|
3777
3779
|
static callTool(options) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturali/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.79.0",
|
|
4
4
|
"description": "TypeScript SDK for the naturali.ai API, generated from its OpenAPI specs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"tsx": "^4.23.1",
|
|
38
38
|
"typescript": "~6.0.3",
|
|
39
39
|
"vitest": "^4.1.10",
|
|
40
|
-
"@naturali/api": "0.
|
|
40
|
+
"@naturali/api": "0.79.0"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"generate": "tsx scripts/generate.ts",
|