@naturali/sdk 0.110.1 → 0.111.1
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 +5 -2
- package/dist/index.d.cts +21 -2
- package/dist/index.d.mts +21 -2
- package/dist/index.mjs +5 -2
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1055,6 +1055,7 @@ var Admin = class {
|
|
|
1055
1055
|
* Puts the account on a rung of the infra ladder. Needs the `admin` role.
|
|
1056
1056
|
* `PUT` because an account is on exactly one rung at a time, but the change is **recorded rather than overwritten**: the plan history is append-only and the newest line is the account's plan. Setting the rung it already holds still writes a line — a re-confirmation is an act worth a record, and the `reason` given with it would otherwise have nowhere to go. Read the history back with `GET` on this path.
|
|
1057
1057
|
* The rung is what the feature gate and the resource caps resolve against. Downgrading is the same call with a lower rung; what becomes of resources a lower plan would not hold is a separate mechanism that is not built.
|
|
1058
|
+
* A rung whose content-retention window a contract sets — `enterprise` — **requires `retention_days`**, since nothing else can answer what that window is and an unanswered one bounds nothing. Every other rung sets its own and refuses the field.
|
|
1058
1059
|
*
|
|
1059
1060
|
*/
|
|
1060
1061
|
static grantUserPlan(options) {
|
|
@@ -1434,6 +1435,7 @@ var ApiKeys = class {
|
|
|
1434
1435
|
*
|
|
1435
1436
|
* Creates an API key. When `project_id` is set the key is scoped to that project (the default and recommended stance); omit it for an account-scoped key. `capabilities` narrows what the key may do; when omitted the key inherits the creator's capabilities. The raw `key` (nat_sk_…) is returned only in this response.
|
|
1436
1437
|
* A project-scoped key requires the `admin` role in that project: the key is a standing credential for everything the project can do, so handing one out is an administrative act rather than something a read-only `member` can do for themselves. An account-scoped key requires a credential that is not itself confined to one project.
|
|
1438
|
+
* A connected app cannot create keys at all: a grant is revocable and a key is not, so a key minted under a grant would still work after the app was disconnected. Reading and revoking keys stay available.
|
|
1437
1439
|
*
|
|
1438
1440
|
*/
|
|
1439
1441
|
static createApiKey(options) {
|
|
@@ -1487,6 +1489,7 @@ var ApiKeys = class {
|
|
|
1487
1489
|
* Rotate an API key
|
|
1488
1490
|
*
|
|
1489
1491
|
* Issues a new secret for the same key record (same id, scope and capabilities) and invalidates the previous secret. The new raw `key` is returned only in this response.
|
|
1492
|
+
* Refused for a connected app, like creation: rotation returns a raw secret for a key the caller need never have held, so it reaches the same place by another door.
|
|
1490
1493
|
*
|
|
1491
1494
|
*/
|
|
1492
1495
|
static rotateApiKey(options) {
|
|
@@ -4236,9 +4239,9 @@ var Users = class {
|
|
|
4236
4239
|
/**
|
|
4237
4240
|
* Get the current account's billing standing
|
|
4238
4241
|
*
|
|
4239
|
-
* The plan the account is on and the credit it has left — the
|
|
4242
|
+
* The plan the account is on, how long its projects may keep content, and the credit it has left — the figures the platform already enforces against, readable by the account they are enforced against.
|
|
4240
4243
|
*
|
|
4241
|
-
* A managed-model generation is refused with `402 insufficient_credit` while `credit_balance_usd` is negative, and a feature or a resource count outside the plan is refused with `403`.
|
|
4244
|
+
* A managed-model generation is refused with `402 insufficient_credit` while `credit_balance_usd` is negative, and a feature or a resource count outside the plan is refused with `403`, as is a retention window wider than `retention_days`. Every refusal names what is missing; this is where the numbers behind them are read.
|
|
4242
4245
|
*
|
|
4243
4246
|
* Answers for the caller's own account only, and always the account the credential resolves to — an API key answers for the user that minted it. The plan gating a *project* is that project's billing owner's, so a member of someone else's project reads their own rung here, not that project's.
|
|
4244
4247
|
*
|
package/dist/index.d.cts
CHANGED
|
@@ -487,6 +487,10 @@ type AdminUser = User & {
|
|
|
487
487
|
* The rung of the infra ladder the account is on. `free` for an account with no subscription. It gates the feature lines and the resource counts of the pricing table.
|
|
488
488
|
*/
|
|
489
489
|
plan: 'free' | 'pro' | 'business' | 'enterprise';
|
|
490
|
+
/**
|
|
491
|
+
* The longest content-retention window this account's projects may keep content for, in days. On a plan whose window a contract sets, this is the figure recorded with the grant; `null` means nothing bounds it. Resolved the same way the refusal is — the widest window held during the current billing cycle.
|
|
492
|
+
*/
|
|
493
|
+
retention_days: number | null;
|
|
490
494
|
/**
|
|
491
495
|
* Model credit left, in US dollars — the ledger's sum, less the part of a past cycle's allowance that lapsed. `0` for an account that has never been credited, and negative for one that has overspent, which refuses its managed generations.
|
|
492
496
|
*/
|
|
@@ -508,6 +512,10 @@ type UserPlanGrant = {
|
|
|
508
512
|
* The rung to put the account on.
|
|
509
513
|
*/
|
|
510
514
|
plan: 'free' | 'pro' | 'business' | 'enterprise';
|
|
515
|
+
/**
|
|
516
|
+
* The content-retention window the contract negotiated, in days. **Required on `enterprise`**, whose window the pricing table leaves to a contract: without one nothing bounds what the account's projects store, so it is refused rather than defaulted. Send `null` for a contract that keeps content indefinitely — that is a decision the field records, not the absence of one. **Refused on every other rung**, whose window the plan itself sets.
|
|
517
|
+
*/
|
|
518
|
+
retention_days?: number | null;
|
|
511
519
|
/**
|
|
512
520
|
* Why the account was moved. Recorded on the line and never edited, so it is the only account of intent the history carries.
|
|
513
521
|
*/
|
|
@@ -522,6 +530,10 @@ type PlanEvent = {
|
|
|
522
530
|
* The rung the account was put on by this line.
|
|
523
531
|
*/
|
|
524
532
|
plan: 'free' | 'pro' | 'business' | 'enterprise';
|
|
533
|
+
/**
|
|
534
|
+
* The contract window recorded with this line, in days. `null` on every rung whose window the plan itself sets, and on a contract that keeps content indefinitely — `plan` is what tells the two apart.
|
|
535
|
+
*/
|
|
536
|
+
retention_days: number | null;
|
|
525
537
|
reason: string | null;
|
|
526
538
|
/**
|
|
527
539
|
* The operator who recorded it. Null for a line no person wrote.
|
|
@@ -6305,6 +6317,10 @@ type UserBilling = {
|
|
|
6305
6317
|
* The rung of the infra subscription this account is on. `free` for an account with no subscription, which is also the least-privileged rung. It gates the feature lines and the resource counts of the pricing table.
|
|
6306
6318
|
*/
|
|
6307
6319
|
plan: 'free' | 'pro' | 'business' | 'enterprise';
|
|
6320
|
+
/**
|
|
6321
|
+
* The longest window a project of this account may keep trace and generation content for, in days. A `PATCH` asking for a wider one — `null` included, which keeps content indefinitely — is refused with `403 plan_limit_reached`; anything shorter is always allowed. On a plan whose window a contract sets, this is that contract's figure, and `null` means nothing bounds it. A plan change that shortens the window applies at the end of the billing cycle, so this reads as the widest window held during the current one.
|
|
6322
|
+
*/
|
|
6323
|
+
retention_days: number | null;
|
|
6308
6324
|
/**
|
|
6309
6325
|
* Model credit left, in US dollars — granted and purchased credit plus the plan's monthly allowance, less managed-model spend. A managed generation is refused while this is negative; a zero balance still generates, and the generation that crosses zero is absorbed. Only as current as `spend_reconciled_at`, so read the two together.
|
|
6310
6326
|
*/
|
|
@@ -19059,6 +19075,7 @@ declare class Admin {
|
|
|
19059
19075
|
* Puts the account on a rung of the infra ladder. Needs the `admin` role.
|
|
19060
19076
|
* `PUT` because an account is on exactly one rung at a time, but the change is **recorded rather than overwritten**: the plan history is append-only and the newest line is the account's plan. Setting the rung it already holds still writes a line — a re-confirmation is an act worth a record, and the `reason` given with it would otherwise have nowhere to go. Read the history back with `GET` on this path.
|
|
19061
19077
|
* The rung is what the feature gate and the resource caps resolve against. Downgrading is the same call with a lower rung; what becomes of resources a lower plan would not hold is a separate mechanism that is not built.
|
|
19078
|
+
* A rung whose content-retention window a contract sets — `enterprise` — **requires `retention_days`**, since nothing else can answer what that window is and an unanswered one bounds nothing. Every other rung sets its own and refuses the field.
|
|
19062
19079
|
*
|
|
19063
19080
|
*/
|
|
19064
19081
|
static grantUserPlan<ThrowOnError extends boolean = false>(options: Options<GrantUserPlanData, ThrowOnError>): RequestResult<GrantUserPlanResponses, GrantUserPlanErrors, ThrowOnError>;
|
|
@@ -19260,6 +19277,7 @@ declare class ApiKeys {
|
|
|
19260
19277
|
*
|
|
19261
19278
|
* Creates an API key. When `project_id` is set the key is scoped to that project (the default and recommended stance); omit it for an account-scoped key. `capabilities` narrows what the key may do; when omitted the key inherits the creator's capabilities. The raw `key` (nat_sk_…) is returned only in this response.
|
|
19262
19279
|
* A project-scoped key requires the `admin` role in that project: the key is a standing credential for everything the project can do, so handing one out is an administrative act rather than something a read-only `member` can do for themselves. An account-scoped key requires a credential that is not itself confined to one project.
|
|
19280
|
+
* A connected app cannot create keys at all: a grant is revocable and a key is not, so a key minted under a grant would still work after the app was disconnected. Reading and revoking keys stay available.
|
|
19263
19281
|
*
|
|
19264
19282
|
*/
|
|
19265
19283
|
static createApiKey<ThrowOnError extends boolean = false>(options: Options<CreateApiKeyData, ThrowOnError>): RequestResult<CreateApiKeyResponses, CreateApiKeyErrors, ThrowOnError>;
|
|
@@ -19285,6 +19303,7 @@ declare class ApiKeys {
|
|
|
19285
19303
|
* Rotate an API key
|
|
19286
19304
|
*
|
|
19287
19305
|
* Issues a new secret for the same key record (same id, scope and capabilities) and invalidates the previous secret. The new raw `key` is returned only in this response.
|
|
19306
|
+
* Refused for a connected app, like creation: rotation returns a raw secret for a key the caller need never have held, so it reaches the same place by another door.
|
|
19288
19307
|
*
|
|
19289
19308
|
*/
|
|
19290
19309
|
static rotateApiKey<ThrowOnError extends boolean = false>(options: Options<RotateApiKeyData, ThrowOnError>): RequestResult<RotateApiKeyResponses, RotateApiKeyErrors, ThrowOnError>;
|
|
@@ -20702,9 +20721,9 @@ declare class Users {
|
|
|
20702
20721
|
/**
|
|
20703
20722
|
* Get the current account's billing standing
|
|
20704
20723
|
*
|
|
20705
|
-
* The plan the account is on and the credit it has left — the
|
|
20724
|
+
* The plan the account is on, how long its projects may keep content, and the credit it has left — the figures the platform already enforces against, readable by the account they are enforced against.
|
|
20706
20725
|
*
|
|
20707
|
-
* A managed-model generation is refused with `402 insufficient_credit` while `credit_balance_usd` is negative, and a feature or a resource count outside the plan is refused with `403`.
|
|
20726
|
+
* A managed-model generation is refused with `402 insufficient_credit` while `credit_balance_usd` is negative, and a feature or a resource count outside the plan is refused with `403`, as is a retention window wider than `retention_days`. Every refusal names what is missing; this is where the numbers behind them are read.
|
|
20708
20727
|
*
|
|
20709
20728
|
* Answers for the caller's own account only, and always the account the credential resolves to — an API key answers for the user that minted it. The plan gating a *project* is that project's billing owner's, so a member of someone else's project reads their own rung here, not that project's.
|
|
20710
20729
|
*
|
package/dist/index.d.mts
CHANGED
|
@@ -487,6 +487,10 @@ type AdminUser = User & {
|
|
|
487
487
|
* The rung of the infra ladder the account is on. `free` for an account with no subscription. It gates the feature lines and the resource counts of the pricing table.
|
|
488
488
|
*/
|
|
489
489
|
plan: 'free' | 'pro' | 'business' | 'enterprise';
|
|
490
|
+
/**
|
|
491
|
+
* The longest content-retention window this account's projects may keep content for, in days. On a plan whose window a contract sets, this is the figure recorded with the grant; `null` means nothing bounds it. Resolved the same way the refusal is — the widest window held during the current billing cycle.
|
|
492
|
+
*/
|
|
493
|
+
retention_days: number | null;
|
|
490
494
|
/**
|
|
491
495
|
* Model credit left, in US dollars — the ledger's sum, less the part of a past cycle's allowance that lapsed. `0` for an account that has never been credited, and negative for one that has overspent, which refuses its managed generations.
|
|
492
496
|
*/
|
|
@@ -508,6 +512,10 @@ type UserPlanGrant = {
|
|
|
508
512
|
* The rung to put the account on.
|
|
509
513
|
*/
|
|
510
514
|
plan: 'free' | 'pro' | 'business' | 'enterprise';
|
|
515
|
+
/**
|
|
516
|
+
* The content-retention window the contract negotiated, in days. **Required on `enterprise`**, whose window the pricing table leaves to a contract: without one nothing bounds what the account's projects store, so it is refused rather than defaulted. Send `null` for a contract that keeps content indefinitely — that is a decision the field records, not the absence of one. **Refused on every other rung**, whose window the plan itself sets.
|
|
517
|
+
*/
|
|
518
|
+
retention_days?: number | null;
|
|
511
519
|
/**
|
|
512
520
|
* Why the account was moved. Recorded on the line and never edited, so it is the only account of intent the history carries.
|
|
513
521
|
*/
|
|
@@ -522,6 +530,10 @@ type PlanEvent = {
|
|
|
522
530
|
* The rung the account was put on by this line.
|
|
523
531
|
*/
|
|
524
532
|
plan: 'free' | 'pro' | 'business' | 'enterprise';
|
|
533
|
+
/**
|
|
534
|
+
* The contract window recorded with this line, in days. `null` on every rung whose window the plan itself sets, and on a contract that keeps content indefinitely — `plan` is what tells the two apart.
|
|
535
|
+
*/
|
|
536
|
+
retention_days: number | null;
|
|
525
537
|
reason: string | null;
|
|
526
538
|
/**
|
|
527
539
|
* The operator who recorded it. Null for a line no person wrote.
|
|
@@ -6305,6 +6317,10 @@ type UserBilling = {
|
|
|
6305
6317
|
* The rung of the infra subscription this account is on. `free` for an account with no subscription, which is also the least-privileged rung. It gates the feature lines and the resource counts of the pricing table.
|
|
6306
6318
|
*/
|
|
6307
6319
|
plan: 'free' | 'pro' | 'business' | 'enterprise';
|
|
6320
|
+
/**
|
|
6321
|
+
* The longest window a project of this account may keep trace and generation content for, in days. A `PATCH` asking for a wider one — `null` included, which keeps content indefinitely — is refused with `403 plan_limit_reached`; anything shorter is always allowed. On a plan whose window a contract sets, this is that contract's figure, and `null` means nothing bounds it. A plan change that shortens the window applies at the end of the billing cycle, so this reads as the widest window held during the current one.
|
|
6322
|
+
*/
|
|
6323
|
+
retention_days: number | null;
|
|
6308
6324
|
/**
|
|
6309
6325
|
* Model credit left, in US dollars — granted and purchased credit plus the plan's monthly allowance, less managed-model spend. A managed generation is refused while this is negative; a zero balance still generates, and the generation that crosses zero is absorbed. Only as current as `spend_reconciled_at`, so read the two together.
|
|
6310
6326
|
*/
|
|
@@ -19059,6 +19075,7 @@ declare class Admin {
|
|
|
19059
19075
|
* Puts the account on a rung of the infra ladder. Needs the `admin` role.
|
|
19060
19076
|
* `PUT` because an account is on exactly one rung at a time, but the change is **recorded rather than overwritten**: the plan history is append-only and the newest line is the account's plan. Setting the rung it already holds still writes a line — a re-confirmation is an act worth a record, and the `reason` given with it would otherwise have nowhere to go. Read the history back with `GET` on this path.
|
|
19061
19077
|
* The rung is what the feature gate and the resource caps resolve against. Downgrading is the same call with a lower rung; what becomes of resources a lower plan would not hold is a separate mechanism that is not built.
|
|
19078
|
+
* A rung whose content-retention window a contract sets — `enterprise` — **requires `retention_days`**, since nothing else can answer what that window is and an unanswered one bounds nothing. Every other rung sets its own and refuses the field.
|
|
19062
19079
|
*
|
|
19063
19080
|
*/
|
|
19064
19081
|
static grantUserPlan<ThrowOnError extends boolean = false>(options: Options<GrantUserPlanData, ThrowOnError>): RequestResult<GrantUserPlanResponses, GrantUserPlanErrors, ThrowOnError>;
|
|
@@ -19260,6 +19277,7 @@ declare class ApiKeys {
|
|
|
19260
19277
|
*
|
|
19261
19278
|
* Creates an API key. When `project_id` is set the key is scoped to that project (the default and recommended stance); omit it for an account-scoped key. `capabilities` narrows what the key may do; when omitted the key inherits the creator's capabilities. The raw `key` (nat_sk_…) is returned only in this response.
|
|
19262
19279
|
* A project-scoped key requires the `admin` role in that project: the key is a standing credential for everything the project can do, so handing one out is an administrative act rather than something a read-only `member` can do for themselves. An account-scoped key requires a credential that is not itself confined to one project.
|
|
19280
|
+
* A connected app cannot create keys at all: a grant is revocable and a key is not, so a key minted under a grant would still work after the app was disconnected. Reading and revoking keys stay available.
|
|
19263
19281
|
*
|
|
19264
19282
|
*/
|
|
19265
19283
|
static createApiKey<ThrowOnError extends boolean = false>(options: Options<CreateApiKeyData, ThrowOnError>): RequestResult<CreateApiKeyResponses, CreateApiKeyErrors, ThrowOnError>;
|
|
@@ -19285,6 +19303,7 @@ declare class ApiKeys {
|
|
|
19285
19303
|
* Rotate an API key
|
|
19286
19304
|
*
|
|
19287
19305
|
* Issues a new secret for the same key record (same id, scope and capabilities) and invalidates the previous secret. The new raw `key` is returned only in this response.
|
|
19306
|
+
* Refused for a connected app, like creation: rotation returns a raw secret for a key the caller need never have held, so it reaches the same place by another door.
|
|
19288
19307
|
*
|
|
19289
19308
|
*/
|
|
19290
19309
|
static rotateApiKey<ThrowOnError extends boolean = false>(options: Options<RotateApiKeyData, ThrowOnError>): RequestResult<RotateApiKeyResponses, RotateApiKeyErrors, ThrowOnError>;
|
|
@@ -20702,9 +20721,9 @@ declare class Users {
|
|
|
20702
20721
|
/**
|
|
20703
20722
|
* Get the current account's billing standing
|
|
20704
20723
|
*
|
|
20705
|
-
* The plan the account is on and the credit it has left — the
|
|
20724
|
+
* The plan the account is on, how long its projects may keep content, and the credit it has left — the figures the platform already enforces against, readable by the account they are enforced against.
|
|
20706
20725
|
*
|
|
20707
|
-
* A managed-model generation is refused with `402 insufficient_credit` while `credit_balance_usd` is negative, and a feature or a resource count outside the plan is refused with `403`.
|
|
20726
|
+
* A managed-model generation is refused with `402 insufficient_credit` while `credit_balance_usd` is negative, and a feature or a resource count outside the plan is refused with `403`, as is a retention window wider than `retention_days`. Every refusal names what is missing; this is where the numbers behind them are read.
|
|
20708
20727
|
*
|
|
20709
20728
|
* Answers for the caller's own account only, and always the account the credential resolves to — an API key answers for the user that minted it. The plan gating a *project* is that project's billing owner's, so a member of someone else's project reads their own rung here, not that project's.
|
|
20710
20729
|
*
|
package/dist/index.mjs
CHANGED
|
@@ -1054,6 +1054,7 @@ var Admin = class {
|
|
|
1054
1054
|
* Puts the account on a rung of the infra ladder. Needs the `admin` role.
|
|
1055
1055
|
* `PUT` because an account is on exactly one rung at a time, but the change is **recorded rather than overwritten**: the plan history is append-only and the newest line is the account's plan. Setting the rung it already holds still writes a line — a re-confirmation is an act worth a record, and the `reason` given with it would otherwise have nowhere to go. Read the history back with `GET` on this path.
|
|
1056
1056
|
* The rung is what the feature gate and the resource caps resolve against. Downgrading is the same call with a lower rung; what becomes of resources a lower plan would not hold is a separate mechanism that is not built.
|
|
1057
|
+
* A rung whose content-retention window a contract sets — `enterprise` — **requires `retention_days`**, since nothing else can answer what that window is and an unanswered one bounds nothing. Every other rung sets its own and refuses the field.
|
|
1057
1058
|
*
|
|
1058
1059
|
*/
|
|
1059
1060
|
static grantUserPlan(options) {
|
|
@@ -1433,6 +1434,7 @@ var ApiKeys = class {
|
|
|
1433
1434
|
*
|
|
1434
1435
|
* Creates an API key. When `project_id` is set the key is scoped to that project (the default and recommended stance); omit it for an account-scoped key. `capabilities` narrows what the key may do; when omitted the key inherits the creator's capabilities. The raw `key` (nat_sk_…) is returned only in this response.
|
|
1435
1436
|
* A project-scoped key requires the `admin` role in that project: the key is a standing credential for everything the project can do, so handing one out is an administrative act rather than something a read-only `member` can do for themselves. An account-scoped key requires a credential that is not itself confined to one project.
|
|
1437
|
+
* A connected app cannot create keys at all: a grant is revocable and a key is not, so a key minted under a grant would still work after the app was disconnected. Reading and revoking keys stay available.
|
|
1436
1438
|
*
|
|
1437
1439
|
*/
|
|
1438
1440
|
static createApiKey(options) {
|
|
@@ -1486,6 +1488,7 @@ var ApiKeys = class {
|
|
|
1486
1488
|
* Rotate an API key
|
|
1487
1489
|
*
|
|
1488
1490
|
* Issues a new secret for the same key record (same id, scope and capabilities) and invalidates the previous secret. The new raw `key` is returned only in this response.
|
|
1491
|
+
* Refused for a connected app, like creation: rotation returns a raw secret for a key the caller need never have held, so it reaches the same place by another door.
|
|
1489
1492
|
*
|
|
1490
1493
|
*/
|
|
1491
1494
|
static rotateApiKey(options) {
|
|
@@ -4235,9 +4238,9 @@ var Users = class {
|
|
|
4235
4238
|
/**
|
|
4236
4239
|
* Get the current account's billing standing
|
|
4237
4240
|
*
|
|
4238
|
-
* The plan the account is on and the credit it has left — the
|
|
4241
|
+
* The plan the account is on, how long its projects may keep content, and the credit it has left — the figures the platform already enforces against, readable by the account they are enforced against.
|
|
4239
4242
|
*
|
|
4240
|
-
* A managed-model generation is refused with `402 insufficient_credit` while `credit_balance_usd` is negative, and a feature or a resource count outside the plan is refused with `403`.
|
|
4243
|
+
* A managed-model generation is refused with `402 insufficient_credit` while `credit_balance_usd` is negative, and a feature or a resource count outside the plan is refused with `403`, as is a retention window wider than `retention_days`. Every refusal names what is missing; this is where the numbers behind them are read.
|
|
4241
4244
|
*
|
|
4242
4245
|
* Answers for the caller's own account only, and always the account the credential resolves to — an API key answers for the user that minted it. The plan gating a *project* is that project's billing owner's, so a member of someone else's project reads their own rung here, not that project's.
|
|
4243
4246
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturali/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.111.1",
|
|
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.111.1"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"generate": "tsx scripts/generate.ts",
|