From 03cda607174899befd6917295a422cad0671936e Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 17:09:59 +0000 Subject: [PATCH] Release 6.0.2 --- .mock/definition/access-tokens.yml | 97 +++++++++++++++++++ package.json | 2 +- .../resources/accessTokens/client/Client.ts | 4 +- .../requests/AccessTokenRequestSchema.ts | 1 + .../accessTokens/types/AccessTokenSchema.ts | 5 + .../types/CustomizationsSchema.ts | 13 +++ .../accessTokens/types/DefaultsSchema.ts | 28 ++++++ .../types/PayeeTaxProfileSchema.ts | 18 ++++ .../types/SupportedTaxFormsEnum.ts | 11 +++ src/api/resources/accessTokens/types/index.ts | 4 + .../client/Client.ts | 4 +- .../resources/form1099Int/client/Client.ts | 32 +++--- src/api/resources/form1099K/client/Client.ts | 32 +++--- .../resources/form1099Misc/client/Client.ts | 32 +++--- .../resources/form1099Nec/client/Client.ts | 32 +++--- src/api/resources/formW8Ben/client/Client.ts | 12 +-- src/api/resources/formW8BenE/client/Client.ts | 12 +-- src/api/resources/formW9/client/Client.ts | 12 +-- src/api/resources/mailings/client/Client.ts | 16 +-- .../resources/taxTreaties/client/Client.ts | 4 +- .../tinVerifications/client/Client.ts | 12 +-- src/api/resources/users/client/Client.ts | 16 +-- src/version.ts | 2 +- yarn.lock | 30 +++--- 24 files changed, 304 insertions(+), 127 deletions(-) create mode 100644 src/api/resources/accessTokens/types/CustomizationsSchema.ts create mode 100644 src/api/resources/accessTokens/types/DefaultsSchema.ts create mode 100644 src/api/resources/accessTokens/types/PayeeTaxProfileSchema.ts create mode 100644 src/api/resources/accessTokens/types/SupportedTaxFormsEnum.ts diff --git a/.mock/definition/access-tokens.yml b/.mock/definition/access-tokens.yml index a4108e0..e146b61 100644 --- a/.mock/definition/access-tokens.yml +++ b/.mock/definition/access-tokens.yml @@ -2,6 +2,7 @@ imports: errors: types/errors.yml headers: types/headers.yml common: types/common.yml + payer: types/payer.yml types: AccessTokenSchema: examples: @@ -21,6 +22,101 @@ types: expiresAt: type: datetime docs: The expiration date and time of the access token in `ISO 8601` format. + customizations: optional + userId: + type: optional + docs: The unique identifier of the user associated with this access token. + CustomizationsSchema: + docs: The component customizations for this access token. + properties: + payeeTaxProfile: + type: optional + docs: The Payee Tax Profile component customizations. + PayeeTaxProfileSchema: + properties: + shouldPreloadFromUserId: + type: optional + docs: >- + Determines if Abound should preload the Payee Tax Profile by `userId` + lookup. Default is `true`. + shouldCollectElectronicDeliveryConsent: + type: optional + docs: >- + Determines if the electronic delivery consent question should be asked + in the Payee Tax Profile component. Default is `true`. + supportedTaxForms: + type: optional> + docs: >- + A list of the forms your organizaton intends to support and collect + during a Payee Tax Profile submission. Default is all forms: + `["FORM_W_9", "FORM_W_8BEN", "FORM_W_8BEN_E"]`. + defaults: + type: optional + docs: >- + Used to preload the Payee Tax Profile with default values. These + defaults will be ignored if data is preloaded by `userId`. + requestingPayer: + type: optional + docs: >- + If supplied, a Payee Tax Profile submission that creates a Form W-9 + will attach this information as the `Payer`. + DefaultsSchema: + properties: + firstName: + type: optional + docs: The payee's legal first name. + lastName: + type: optional + docs: The payee's legal last name. + businessName: + type: optional + docs: The payee's business name. + dateOfBirth: + type: optional + docs: The date, in `YYYY-MM-DD` format, the payee was born on. + address: + type: optional + docs: The legal address. + address2: + type: optional + docs: >- + The second part of the legal address, such as an apartment or suite + number. + city: + type: optional + docs: >- + The city associated with the street address. Required if `country` is + `US`. + state: + type: optional + docs: >- + The two-letter character code for this state (`CA` for California, + `ME` for Maine). Required if `country` is `US`. If foreign, use the + province. + postalCode: + type: optional + docs: >- + The postal code associated with the street address. Required to be a + 5-digit numerical value if `country` is `US`. If foreign, use the + foreign postal code. + country: + type: optional + validation: + minLength: 2 + maxLength: 2 + docs: The country adhering to `ISO 3166-2` standards. + email: + type: optional + validation: + format: email + docs: >- + The payee's email address. Abound assume's you have taken the proper + steps to verify the ownership of this email address. + SupportedTaxFormsEnum: + enum: + - FORM_W_9 + - FORM_W_8BEN + - FORM_W_8BEN_E service: auth: false base-path: '' @@ -39,6 +135,7 @@ service: expiresIn: type: integer docs: The number of seconds until the access token expires. + customizations: optional userId: type: optional docs: >- diff --git a/package.json b/package.json index 110d1fd..6d1f33f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@withabound/node-sdk", - "version": "6.0.1", + "version": "6.0.2", "private": false, "repository": "https://github.com/withabound/abound-node", "main": "./index.js", diff --git a/src/api/resources/accessTokens/client/Client.ts b/src/api/resources/accessTokens/client/Client.ts index 4f3deb5..1c6a4b7 100644 --- a/src/api/resources/accessTokens/client/Client.ts +++ b/src/api/resources/accessTokens/client/Client.ts @@ -59,8 +59,8 @@ export class AccessTokens { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, diff --git a/src/api/resources/accessTokens/client/requests/AccessTokenRequestSchema.ts b/src/api/resources/accessTokens/client/requests/AccessTokenRequestSchema.ts index 80909a5..6c8da2d 100644 --- a/src/api/resources/accessTokens/client/requests/AccessTokenRequestSchema.ts +++ b/src/api/resources/accessTokens/client/requests/AccessTokenRequestSchema.ts @@ -14,6 +14,7 @@ export interface AccessTokenRequestSchema { "Idempotency-Key"?: Abound.types.IdempotencyKey | undefined; /** The number of seconds until the access token expires. */ expiresIn: number; + customizations?: Abound.CustomizationsSchema; /** The unique identifier of the user associated with this access token. */ userId?: string; } diff --git a/src/api/resources/accessTokens/types/AccessTokenSchema.ts b/src/api/resources/accessTokens/types/AccessTokenSchema.ts index 23b5beb..8108b1b 100644 --- a/src/api/resources/accessTokens/types/AccessTokenSchema.ts +++ b/src/api/resources/accessTokens/types/AccessTokenSchema.ts @@ -2,6 +2,8 @@ * This file was auto-generated by Fern from our API Definition. */ +import * as Abound from "../../../index"; + /** * @example * { @@ -17,4 +19,7 @@ export interface AccessTokenSchema { createdAt: string; /** The expiration date and time of the access token in `ISO 8601` format. */ expiresAt: string; + customizations?: Abound.CustomizationsSchema; + /** The unique identifier of the user associated with this access token. */ + userId?: string; } diff --git a/src/api/resources/accessTokens/types/CustomizationsSchema.ts b/src/api/resources/accessTokens/types/CustomizationsSchema.ts new file mode 100644 index 0000000..a17c54b --- /dev/null +++ b/src/api/resources/accessTokens/types/CustomizationsSchema.ts @@ -0,0 +1,13 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as Abound from "../../../index"; + +/** + * The component customizations for this access token. + */ +export interface CustomizationsSchema { + /** The Payee Tax Profile component customizations. */ + payeeTaxProfile?: Abound.PayeeTaxProfileSchema; +} diff --git a/src/api/resources/accessTokens/types/DefaultsSchema.ts b/src/api/resources/accessTokens/types/DefaultsSchema.ts new file mode 100644 index 0000000..f0b0ce4 --- /dev/null +++ b/src/api/resources/accessTokens/types/DefaultsSchema.ts @@ -0,0 +1,28 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +export interface DefaultsSchema { + /** The payee's legal first name. */ + firstName?: string; + /** The payee's legal last name. */ + lastName?: string; + /** The payee's business name. */ + businessName?: string; + /** The date, in `YYYY-MM-DD` format, the payee was born on. */ + dateOfBirth?: string; + /** The legal address. */ + address?: string; + /** The second part of the legal address, such as an apartment or suite number. */ + address2?: string; + /** The city associated with the street address. Required if `country` is `US`. */ + city?: string; + /** The two-letter character code for this state (`CA` for California, `ME` for Maine). Required if `country` is `US`. If foreign, use the province. */ + state?: string; + /** The postal code associated with the street address. Required to be a 5-digit numerical value if `country` is `US`. If foreign, use the foreign postal code. */ + postalCode?: string; + /** The country adhering to `ISO 3166-2` standards. */ + country?: string; + /** The payee's email address. Abound assume's you have taken the proper steps to verify the ownership of this email address. */ + email?: string; +} diff --git a/src/api/resources/accessTokens/types/PayeeTaxProfileSchema.ts b/src/api/resources/accessTokens/types/PayeeTaxProfileSchema.ts new file mode 100644 index 0000000..4c84489 --- /dev/null +++ b/src/api/resources/accessTokens/types/PayeeTaxProfileSchema.ts @@ -0,0 +1,18 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as Abound from "../../../index"; + +export interface PayeeTaxProfileSchema { + /** Determines if Abound should preload the Payee Tax Profile by `userId` lookup. Default is `true`. */ + shouldPreloadFromUserId?: boolean; + /** Determines if the electronic delivery consent question should be asked in the Payee Tax Profile component. Default is `true`. */ + shouldCollectElectronicDeliveryConsent?: boolean; + /** A list of the forms your organizaton intends to support and collect during a Payee Tax Profile submission. Default is all forms: `["FORM_W_9", "FORM_W_8BEN", "FORM_W_8BEN_E"]`. */ + supportedTaxForms?: Abound.SupportedTaxFormsEnum[]; + /** Used to preload the Payee Tax Profile with default values. These defaults will be ignored if data is preloaded by `userId`. */ + defaults?: Abound.DefaultsSchema; + /** If supplied, a Payee Tax Profile submission that creates a Form W-9 will attach this information as the `Payer`. */ + requestingPayer?: Abound.types.PayerRequestSchema; +} diff --git a/src/api/resources/accessTokens/types/SupportedTaxFormsEnum.ts b/src/api/resources/accessTokens/types/SupportedTaxFormsEnum.ts new file mode 100644 index 0000000..21f0587 --- /dev/null +++ b/src/api/resources/accessTokens/types/SupportedTaxFormsEnum.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +export type SupportedTaxFormsEnum = "FORM_W_9" | "FORM_W_8BEN" | "FORM_W_8BEN_E"; + +export const SupportedTaxFormsEnum = { + FormW9: "FORM_W_9", + FormW8Ben: "FORM_W_8BEN", + FormW8BenE: "FORM_W_8BEN_E", +} as const; diff --git a/src/api/resources/accessTokens/types/index.ts b/src/api/resources/accessTokens/types/index.ts index 1154242..f1fdc3d 100644 --- a/src/api/resources/accessTokens/types/index.ts +++ b/src/api/resources/accessTokens/types/index.ts @@ -1 +1,5 @@ export * from "./AccessTokenSchema"; +export * from "./CustomizationsSchema"; +export * from "./PayeeTaxProfileSchema"; +export * from "./DefaultsSchema"; +export * from "./SupportedTaxFormsEnum"; diff --git a/src/api/resources/electronicDeliveryConsents/client/Client.ts b/src/api/resources/electronicDeliveryConsents/client/Client.ts index 0b2db89..920dd9d 100644 --- a/src/api/resources/electronicDeliveryConsents/client/Client.ts +++ b/src/api/resources/electronicDeliveryConsents/client/Client.ts @@ -78,8 +78,8 @@ export class ElectronicDeliveryConsents { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/form1099Int/client/Client.ts b/src/api/resources/form1099Int/client/Client.ts index 6482fd1..e79e821 100644 --- a/src/api/resources/form1099Int/client/Client.ts +++ b/src/api/resources/form1099Int/client/Client.ts @@ -82,8 +82,8 @@ export class Form1099Int { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -213,8 +213,8 @@ export class Form1099Int { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -321,8 +321,8 @@ export class Form1099Int { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -408,8 +408,8 @@ export class Form1099Int { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -528,8 +528,8 @@ export class Form1099Int { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -615,8 +615,8 @@ export class Form1099Int { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -698,8 +698,8 @@ export class Form1099Int { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -780,8 +780,8 @@ export class Form1099Int { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/form1099K/client/Client.ts b/src/api/resources/form1099K/client/Client.ts index 5cc8ae2..b1bfbe7 100644 --- a/src/api/resources/form1099K/client/Client.ts +++ b/src/api/resources/form1099K/client/Client.ts @@ -82,8 +82,8 @@ export class Form1099K { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -221,8 +221,8 @@ export class Form1099K { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -329,8 +329,8 @@ export class Form1099K { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -416,8 +416,8 @@ export class Form1099K { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -544,8 +544,8 @@ export class Form1099K { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -631,8 +631,8 @@ export class Form1099K { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -714,8 +714,8 @@ export class Form1099K { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -796,8 +796,8 @@ export class Form1099K { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/form1099Misc/client/Client.ts b/src/api/resources/form1099Misc/client/Client.ts index bee711a..35b6f99 100644 --- a/src/api/resources/form1099Misc/client/Client.ts +++ b/src/api/resources/form1099Misc/client/Client.ts @@ -82,8 +82,8 @@ export class Form1099Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -214,8 +214,8 @@ export class Form1099Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -322,8 +322,8 @@ export class Form1099Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -409,8 +409,8 @@ export class Form1099Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -530,8 +530,8 @@ export class Form1099Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -617,8 +617,8 @@ export class Form1099Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -700,8 +700,8 @@ export class Form1099Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -782,8 +782,8 @@ export class Form1099Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/form1099Nec/client/Client.ts b/src/api/resources/form1099Nec/client/Client.ts index d603bd4..14f189d 100644 --- a/src/api/resources/form1099Nec/client/Client.ts +++ b/src/api/resources/form1099Nec/client/Client.ts @@ -82,8 +82,8 @@ export class Form1099Nec { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -202,8 +202,8 @@ export class Form1099Nec { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -310,8 +310,8 @@ export class Form1099Nec { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -397,8 +397,8 @@ export class Form1099Nec { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -504,8 +504,8 @@ export class Form1099Nec { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -591,8 +591,8 @@ export class Form1099Nec { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -674,8 +674,8 @@ export class Form1099Nec { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -756,8 +756,8 @@ export class Form1099Nec { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/formW8Ben/client/Client.ts b/src/api/resources/formW8Ben/client/Client.ts index 77db4c3..93959c6 100644 --- a/src/api/resources/formW8Ben/client/Client.ts +++ b/src/api/resources/formW8Ben/client/Client.ts @@ -74,8 +74,8 @@ export class FormW8Ben { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -193,8 +193,8 @@ export class FormW8Ben { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -276,8 +276,8 @@ export class FormW8Ben { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/formW8BenE/client/Client.ts b/src/api/resources/formW8BenE/client/Client.ts index 6f0f009..57e5082 100644 --- a/src/api/resources/formW8BenE/client/Client.ts +++ b/src/api/resources/formW8BenE/client/Client.ts @@ -74,8 +74,8 @@ export class FormW8BenE { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -193,8 +193,8 @@ export class FormW8BenE { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -276,8 +276,8 @@ export class FormW8BenE { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/formW9/client/Client.ts b/src/api/resources/formW9/client/Client.ts index 9923769..b47a417 100644 --- a/src/api/resources/formW9/client/Client.ts +++ b/src/api/resources/formW9/client/Client.ts @@ -74,8 +74,8 @@ export class FormW9 { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -182,8 +182,8 @@ export class FormW9 { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -266,8 +266,8 @@ export class FormW9 { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/mailings/client/Client.ts b/src/api/resources/mailings/client/Client.ts index 794a017..341d4fd 100644 --- a/src/api/resources/mailings/client/Client.ts +++ b/src/api/resources/mailings/client/Client.ts @@ -70,8 +70,8 @@ export class Mailings { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -153,8 +153,8 @@ export class Mailings { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -259,8 +259,8 @@ export class Mailings { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -343,8 +343,8 @@ export class Mailings { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/taxTreaties/client/Client.ts b/src/api/resources/taxTreaties/client/Client.ts index 0a456d6..ea21269 100644 --- a/src/api/resources/taxTreaties/client/Client.ts +++ b/src/api/resources/taxTreaties/client/Client.ts @@ -62,8 +62,8 @@ export class TaxTreaties { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/tinVerifications/client/Client.ts b/src/api/resources/tinVerifications/client/Client.ts index 1556345..8491c5c 100644 --- a/src/api/resources/tinVerifications/client/Client.ts +++ b/src/api/resources/tinVerifications/client/Client.ts @@ -74,8 +74,8 @@ export class TinVerifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -163,8 +163,8 @@ export class TinVerifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -247,8 +247,8 @@ export class TinVerifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/users/client/Client.ts b/src/api/resources/users/client/Client.ts index de35f1e..a631416 100644 --- a/src/api/resources/users/client/Client.ts +++ b/src/api/resources/users/client/Client.ts @@ -70,8 +70,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -159,8 +159,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -245,8 +245,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -331,8 +331,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@withabound/node-sdk", - "X-Fern-SDK-Version": "6.0.1", - "User-Agent": "@withabound/node-sdk/6.0.1", + "X-Fern-SDK-Version": "6.0.2", + "User-Agent": "@withabound/node-sdk/6.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/version.ts b/src/version.ts index d05d49d..90ba370 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const SDK_VERSION = "6.0.1"; +export const SDK_VERSION = "6.0.2"; diff --git a/yarn.lock b/yarn.lock index 6cf04b7..b3425a6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -604,9 +604,9 @@ "@babel/types" "^7.20.7" "@types/estree@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" - integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== "@types/graceful-fs@^4.1.3": version "4.1.9" @@ -665,9 +665,9 @@ form-data "^4.0.0" "@types/node@*": - version "22.5.4" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.4.tgz#83f7d1f65bc2ed223bdbf57c7884f1d5a4fa84e8" - integrity sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg== + version "22.5.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.5.tgz#52f939dd0f65fc552a4ad0b392f3c466cc5d7a44" + integrity sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA== dependencies: undici-types "~6.19.2" @@ -1109,9 +1109,9 @@ camelcase@^6.2.0: integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001646: - version "1.0.30001660" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001660.tgz#31218de3463fabb44d0b7607b652e56edf2e2355" - integrity sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg== + version "1.0.30001662" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001662.tgz#3574b22dfec54a3f3b6787331da1040fe8e763ec" + integrity sha512-sgMUVwLmGseH8ZIrm1d51UbrhqMCH3jvS7gF/M6byuHOnKyLOBL7W8yz5V02OHwgLGA36o/AFhWzzh4uc5aqTA== chalk@^2.4.2: version "2.4.2" @@ -1322,9 +1322,9 @@ domexception@^4.0.0: webidl-conversions "^7.0.0" electron-to-chromium@^1.5.4: - version "1.5.22" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.22.tgz#5ae58990a35391bad7605742e52855a0f281ef82" - integrity sha512-tKYm5YHPU1djz0O+CGJ+oJIvimtsCcwR2Z9w7Skh08lUdyzXY5djods3q+z2JkWdb7tCcmM//eVavSRAiaPRNg== + version "1.5.25" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.25.tgz#492ade1cde401332b9b75aa0c55fd5e1550ca66c" + integrity sha512-kMb204zvK3PsSlgvvwzI3wBIcAw15tRkYk+NQdsjdDtcQWTp2RABbMQ9rUBy8KNEOM+/E6ep+XC3AykiWZld4g== emittery@^0.13.1: version "0.13.1" @@ -2896,9 +2896,9 @@ terser-webpack-plugin@^5.3.10: terser "^5.26.0" terser@^5.26.0: - version "5.32.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.32.0.tgz#ee811c0d2d6b741c1cc34a2bc5bcbfc1b5b1f96c" - integrity sha512-v3Gtw3IzpBJ0ugkxEX8U0W6+TnPKRRCWGh1jC/iM/e3Ki5+qvO1L1EAZ56bZasc64aXHwRHNIQEzm6//i5cemQ== + version "5.33.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.33.0.tgz#8f9149538c7468ffcb1246cfec603c16720d2db1" + integrity sha512-JuPVaB7s1gdFKPKTelwUyRq5Sid2A3Gko2S0PncwdBq7kN9Ti9HPWDQ06MPsEDGsZeVESjKEnyGy68quBk1w6g== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2"