From a3f51b4ab55b09e46da55dba3633235f2b6ae1f6 Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 22:02:07 +0000 Subject: [PATCH] Release 6.0.0-alpha.3 --- README.md | 12 ++--- package.json | 4 +- .../resources/accessTokens/client/Client.ts | 6 +-- .../client/Client.ts | 6 +-- .../resources/form1099Int/client/Client.ts | 48 +++++++++---------- src/api/resources/form1099K/client/Client.ts | 48 +++++++++---------- .../resources/form1099Misc/client/Client.ts | 48 +++++++++---------- .../resources/form1099Nec/client/Client.ts | 48 +++++++++---------- src/api/resources/formW8Ben/client/Client.ts | 18 +++---- src/api/resources/formW8BenE/client/Client.ts | 18 +++---- src/api/resources/formW9/client/Client.ts | 18 +++---- src/api/resources/mailings/client/Client.ts | 24 +++++----- .../resources/taxTreaties/client/Client.ts | 6 +-- .../tinVerifications/client/Client.ts | 18 +++---- src/api/resources/users/client/Client.ts | 24 +++++----- 15 files changed, 173 insertions(+), 173 deletions(-) diff --git a/README.md b/README.md index 1bba907c..96962aa8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Abound TypeScript Library [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-SDK%20generated%20by%20Fern-brightgreen)](https://github.com/fern-api/fern) -[![npm shield](https://img.shields.io/npm/v/abound)](https://www.npmjs.com/package/abound) +[![npm shield](https://img.shields.io/npm/v/@withabound/node-sdk)](https://www.npmjs.com/package/@withabound/node-sdk) The Abound TypeScript library provides convenient access to the Abound API from TypeScript. @@ -12,7 +12,7 @@ API reference documentation is available [here](https://docs.withabound.com). ## Installation ```sh -npm i -s abound +npm i -s @withabound/node-sdk ``` ## Usage @@ -20,7 +20,7 @@ npm i -s abound Instantiate and use the client with the following: ```typescript -import { AboundClient, Abound } from "abound"; +import { AboundClient, Abound } from "@withabound/node-sdk"; const client = new AboundClient({ sampleKey: "YOUR_SAMPLE_KEY" }); await client.form1099Nec.create({ @@ -70,7 +70,7 @@ The SDK exports all request and response types as TypeScript interfaces. Simply following namespace: ```typescript -import { Abound } from "abound"; +import { Abound } from "@withabound/node-sdk"; const request: Abound.AccessTokenRequestSchema = { ... @@ -83,7 +83,7 @@ When the API returns a non-success status code (4xx or 5xx response), a subclass will be thrown. ```typescript -import { AboundError } from "abound"; +import { AboundError } from "@withabound/node-sdk"; try { await client.form1099Nec.create(...); @@ -158,7 +158,7 @@ The SDK provides a way for your to customize the underlying HTTP client / Fetch unsupported environment, this provides a way for you to break glass and ensure the SDK works. ```typescript -import { AboundClient } from "abound"; +import { AboundClient } from "@withabound/node-sdk"; const client = new AboundClient({ ... diff --git a/package.json b/package.json index af4facf7..44f6b473 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "abound", - "version": "6.0.0-alpha.2", + "name": "@withabound/node-sdk", + "version": "6.0.0-alpha.3", "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 0508021e..cc241e70 100644 --- a/src/api/resources/accessTokens/client/Client.ts +++ b/src/api/resources/accessTokens/client/Client.ts @@ -58,9 +58,9 @@ export class AccessTokens { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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/electronicDeliveryConsents/client/Client.ts b/src/api/resources/electronicDeliveryConsents/client/Client.ts index b4e6f55b..ab554b54 100644 --- a/src/api/resources/electronicDeliveryConsents/client/Client.ts +++ b/src/api/resources/electronicDeliveryConsents/client/Client.ts @@ -77,9 +77,9 @@ export class ElectronicDeliveryConsents { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 ac691f43..7f49efc3 100644 --- a/src/api/resources/form1099Int/client/Client.ts +++ b/src/api/resources/form1099Int/client/Client.ts @@ -81,9 +81,9 @@ export class Form1099Int { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -212,9 +212,9 @@ export class Form1099Int { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -320,9 +320,9 @@ export class Form1099Int { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -407,9 +407,9 @@ export class Form1099Int { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -527,9 +527,9 @@ export class Form1099Int { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -614,9 +614,9 @@ export class Form1099Int { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -697,9 +697,9 @@ export class Form1099Int { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -779,9 +779,9 @@ export class Form1099Int { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 645875ed..e41f36cc 100644 --- a/src/api/resources/form1099K/client/Client.ts +++ b/src/api/resources/form1099K/client/Client.ts @@ -81,9 +81,9 @@ export class Form1099K { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -220,9 +220,9 @@ export class Form1099K { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -328,9 +328,9 @@ export class Form1099K { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -415,9 +415,9 @@ export class Form1099K { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -543,9 +543,9 @@ export class Form1099K { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -630,9 +630,9 @@ export class Form1099K { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -713,9 +713,9 @@ export class Form1099K { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -795,9 +795,9 @@ export class Form1099K { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 807b23ae..2b69d8ab 100644 --- a/src/api/resources/form1099Misc/client/Client.ts +++ b/src/api/resources/form1099Misc/client/Client.ts @@ -81,9 +81,9 @@ export class Form1099Misc { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -213,9 +213,9 @@ export class Form1099Misc { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -321,9 +321,9 @@ export class Form1099Misc { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -408,9 +408,9 @@ export class Form1099Misc { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -529,9 +529,9 @@ export class Form1099Misc { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -616,9 +616,9 @@ export class Form1099Misc { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -699,9 +699,9 @@ export class Form1099Misc { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -781,9 +781,9 @@ export class Form1099Misc { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 ffaad56c..89e15b1c 100644 --- a/src/api/resources/form1099Nec/client/Client.ts +++ b/src/api/resources/form1099Nec/client/Client.ts @@ -81,9 +81,9 @@ export class Form1099Nec { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -201,9 +201,9 @@ export class Form1099Nec { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -309,9 +309,9 @@ export class Form1099Nec { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -396,9 +396,9 @@ export class Form1099Nec { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -503,9 +503,9 @@ export class Form1099Nec { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -590,9 +590,9 @@ export class Form1099Nec { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -673,9 +673,9 @@ export class Form1099Nec { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -755,9 +755,9 @@ export class Form1099Nec { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 25a23901..d8ad7e66 100644 --- a/src/api/resources/formW8Ben/client/Client.ts +++ b/src/api/resources/formW8Ben/client/Client.ts @@ -73,9 +73,9 @@ export class FormW8Ben { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -192,9 +192,9 @@ export class FormW8Ben { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -275,9 +275,9 @@ export class FormW8Ben { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 ff530fb5..1e831b17 100644 --- a/src/api/resources/formW8BenE/client/Client.ts +++ b/src/api/resources/formW8BenE/client/Client.ts @@ -73,9 +73,9 @@ export class FormW8BenE { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -192,9 +192,9 @@ export class FormW8BenE { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -275,9 +275,9 @@ export class FormW8BenE { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 5f4ab70a..7705187f 100644 --- a/src/api/resources/formW9/client/Client.ts +++ b/src/api/resources/formW9/client/Client.ts @@ -73,9 +73,9 @@ export class FormW9 { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -181,9 +181,9 @@ export class FormW9 { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -265,9 +265,9 @@ export class FormW9 { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 0248390d..99b4fd59 100644 --- a/src/api/resources/mailings/client/Client.ts +++ b/src/api/resources/mailings/client/Client.ts @@ -69,9 +69,9 @@ export class Mailings { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -152,9 +152,9 @@ export class Mailings { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -258,9 +258,9 @@ export class Mailings { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -342,9 +342,9 @@ export class Mailings { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 5b678286..eae26127 100644 --- a/src/api/resources/taxTreaties/client/Client.ts +++ b/src/api/resources/taxTreaties/client/Client.ts @@ -61,9 +61,9 @@ export class TaxTreaties { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 f2faf662..1675a1db 100644 --- a/src/api/resources/tinVerifications/client/Client.ts +++ b/src/api/resources/tinVerifications/client/Client.ts @@ -73,9 +73,9 @@ export class TinVerifications { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -162,9 +162,9 @@ export class TinVerifications { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -246,9 +246,9 @@ export class TinVerifications { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "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 aa33e651..228a15b6 100644 --- a/src/api/resources/users/client/Client.ts +++ b/src/api/resources/users/client/Client.ts @@ -69,9 +69,9 @@ export class Users { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -158,9 +158,9 @@ export class Users { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "Idempotency-Key": idempotencyKey != null ? idempotencyKey : undefined, @@ -244,9 +244,9 @@ export class Users { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -330,9 +330,9 @@ export class Users { headers: { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", - "X-Fern-SDK-Name": "abound", - "X-Fern-SDK-Version": "6.0.0-alpha.2", - "User-Agent": "abound/6.0.0-alpha.2", + "X-Fern-SDK-Name": "@withabound/node-sdk", + "X-Fern-SDK-Version": "6.0.0-alpha.3", + "User-Agent": "@withabound/node-sdk/6.0.0-alpha.3", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, },