From 9ea750bc3bff9a271a0ab84e65a26ed0f84c6d81 Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:44:54 +0000 Subject: [PATCH] SDK regeneration --- .mock/definition/__package__.yml | 42 ++++--- .mock/definition/collections/items.yml | 15 ++- .mock/fern.config.json | 2 +- package.json | 2 +- .../resources/accessGroups/client/Client.ts | 4 +- src/api/resources/assets/client/Client.ts | 32 ++--- .../resources/collections/client/Client.ts | 16 +-- .../resources/fields/client/Client.ts | 12 +- .../resources/items/client/Client.ts | 67 +++++----- .../items/types/ItemsCreateItemLiveRequest.ts | 2 +- .../resources/items/types/MultipleItems.ts | 4 +- .../items/types/MultipleLiveItems.ts | 10 ++ .../resources/items/types/index.ts | 1 + src/api/resources/ecommerce/client/Client.ts | 4 +- src/api/resources/forms/client/Client.ts | 20 +-- src/api/resources/inventory/client/Client.ts | 8 +- src/api/resources/orders/client/Client.ts | 24 ++-- src/api/resources/pages/client/Client.ts | 20 +-- .../pages/resources/scripts/client/Client.ts | 12 +- src/api/resources/products/client/Client.ts | 24 ++-- src/api/resources/scripts/client/Client.ts | 12 +- src/api/resources/sites/client/Client.ts | 16 +-- .../resources/activityLogs/client/Client.ts | 4 +- .../sites/resources/scripts/client/Client.ts | 16 +-- src/api/resources/token/client/Client.ts | 8 +- src/api/resources/users/client/Client.ts | 20 +-- src/api/resources/webhooks/client/Client.ts | 16 +-- src/api/types/CollectionItem.ts | 6 +- src/api/types/CollectionItemPostSingle.ts | 10 +- .../items/types/ItemsCreateItemLiveRequest.ts | 6 +- .../resources/items/types/MultipleItems.ts | 6 +- .../items/types/MultipleLiveItems.ts | 21 ++++ .../resources/items/types/index.ts | 1 + src/version.ts | 2 +- yarn.lock | 116 +++++++++++++----- 35 files changed, 350 insertions(+), 231 deletions(-) create mode 100644 src/api/resources/collections/resources/items/types/MultipleLiveItems.ts create mode 100644 src/serialization/resources/collections/resources/items/types/MultipleLiveItems.ts diff --git a/.mock/definition/__package__.yml b/.mock/definition/__package__.yml index a84481f7..667df1ba 100644 --- a/.mock/definition/__package__.yml +++ b/.mock/definition/__package__.yml @@ -564,10 +564,19 @@ types: inline: true CollectionItem: docs: > - The fields that define the schema for a given Item are based on the - Collection that Item belongs to. Beyond the user defined fields, there are - a handful of additional fields that are automatically created for all - items + A Collection Item represents a single entry in your collection. Each item + includes: + + + - **System metadata** - Automatically managed fields like IDs and + timestamp
+ + - **Status flags** - Controls for managing content state: `isDraft`, + `isArchived `
+ + - **Content fields** - Stored in `fieldData`. Each item needs a `name` and + `slug`, and may include additional fields matching your collection's + schema definition. properties: id: type: optional @@ -636,10 +645,19 @@ types: inline: true CollectionItemPostSingle: docs: > - The fields that define the schema for a given Item are based on the - Collection that Item belongs to. Beyond the user defined fields, there are - a handful of additional fields that are automatically created for all - items + A Collection Item represents a single entry in your collection. Each item + includes: + + + - **System metadata** - Automatically managed fields like IDs and + timestamp
+ + - **Status flags** - Controls for managing content state: `isDraft`, + `isArchived `
+ + - **Content fields** - Stored in `fieldData`. Each item needs a `name` and + `slug`, and may include additional fields matching your collection's + schema definition. properties: id: type: optional @@ -658,11 +676,11 @@ types: docs: The date the item was created isArchived: type: optional - docs: Boolean determining if the Item is set to archived + docs: Boolean determining if the Item is in an archived state. default: false isDraft: type: optional - docs: Boolean determining if the Item is set to draft + docs: Boolean determining if the Item is in a draft state. default: false fieldData: CollectionItemPostSingleFieldData source: @@ -706,11 +724,9 @@ types: isArchived: type: optional docs: Boolean determining if the Item is set to archived - default: false isDraft: type: optional docs: Boolean determining if the Item is set to draft - default: false fieldData: optional source: openapi: ../../../referenced-specs/v2.yml @@ -808,11 +824,9 @@ types: isArchived: type: optional docs: Boolean determining if the Item is set to archived - default: false isDraft: type: optional docs: Boolean determining if the Item is set to draft - default: false fieldData: optional source: openapi: ../../../referenced-specs/v2.yml diff --git a/.mock/definition/collections/items.yml b/.mock/definition/collections/items.yml index 51c66e67..f4bf2439 100644 --- a/.mock/definition/collections/items.yml +++ b/.mock/definition/collections/items.yml @@ -15,8 +15,8 @@ types: Multiple Items: properties: items: - type: optional> - docs: List of collection items to create + type: optional> + docs: An array of items to create source: openapi: ../../../referenced-specs/v2.yml inline: true @@ -51,11 +51,19 @@ types: - desc source: openapi: ../../../referenced-specs/v2.yml + Multiple Live Items: + properties: + items: + type: optional> + docs: List of collection items to create + source: + openapi: ../../../referenced-specs/v2.yml + inline: true ItemsCreateItemLiveRequest: discriminated: false union: - root.CollectionItem - - Multiple Items + - Multiple Live Items source: openapi: ../../../referenced-specs/v2.yml ItemsDeleteItemsLiveRequestItemsItem: @@ -319,6 +327,7 @@ service: - root.BadRequestError - root.UnauthorizedError - root.NotFoundError + - root.ConflictError - root.TooManyRequestsError - root.InternalServerError examples: diff --git a/.mock/fern.config.json b/.mock/fern.config.json index 6ff3ad70..757dd2f7 100644 --- a/.mock/fern.config.json +++ b/.mock/fern.config.json @@ -1,4 +1,4 @@ { "organization" : "webflow", - "version" : "0.45.2" + "version" : "0.45.3" } \ No newline at end of file diff --git a/package.json b/package.json index c7c31d51..28450eea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "webflow-api", - "version": "3.0.1", + "version": "3.0.2", "private": false, "repository": "https://github.com/webflow/js-webflow-api", "main": "./index.js", diff --git a/src/api/resources/accessGroups/client/Client.ts b/src/api/resources/accessGroups/client/Client.ts index d135d4b0..350ef95e 100644 --- a/src/api/resources/accessGroups/client/Client.ts +++ b/src/api/resources/accessGroups/client/Client.ts @@ -78,8 +78,8 @@ export class AccessGroups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/assets/client/Client.ts b/src/api/resources/assets/client/Client.ts index a2e14b03..54cc69d7 100644 --- a/src/api/resources/assets/client/Client.ts +++ b/src/api/resources/assets/client/Client.ts @@ -58,8 +58,8 @@ export class Assets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -187,8 +187,8 @@ export class Assets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -309,8 +309,8 @@ export class Assets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -426,8 +426,8 @@ export class Assets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -542,8 +542,8 @@ export class Assets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -664,8 +664,8 @@ export class Assets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -790,8 +790,8 @@ export class Assets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -917,8 +917,8 @@ export class Assets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/collections/client/Client.ts b/src/api/resources/collections/client/Client.ts index 56c634f2..5b27a92e 100644 --- a/src/api/resources/collections/client/Client.ts +++ b/src/api/resources/collections/client/Client.ts @@ -60,8 +60,8 @@ export class Collections { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -186,8 +186,8 @@ export class Collections { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -310,8 +310,8 @@ export class Collections { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -427,8 +427,8 @@ export class Collections { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/collections/resources/fields/client/Client.ts b/src/api/resources/collections/resources/fields/client/Client.ts index d3a319dc..40b73f6a 100644 --- a/src/api/resources/collections/resources/fields/client/Client.ts +++ b/src/api/resources/collections/resources/fields/client/Client.ts @@ -75,8 +75,8 @@ export class Fields { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -200,8 +200,8 @@ export class Fields { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -324,8 +324,8 @@ export class Fields { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/collections/resources/items/client/Client.ts b/src/api/resources/collections/resources/items/client/Client.ts index ffaa2453..dcbe7333 100644 --- a/src/api/resources/collections/resources/items/client/Client.ts +++ b/src/api/resources/collections/resources/items/client/Client.ts @@ -93,8 +93,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -246,8 +246,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -356,6 +356,7 @@ export class Items { * @throws {@link Webflow.BadRequestError} * @throws {@link Webflow.UnauthorizedError} * @throws {@link Webflow.NotFoundError} + * @throws {@link Webflow.ConflictError} * @throws {@link Webflow.TooManyRequestsError} * @throws {@link Webflow.InternalServerError} * @@ -377,8 +378,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -422,6 +423,8 @@ export class Items { breadcrumbsPrefix: ["response"], }) ); + case 409: + throw new Webflow.ConflictError(_response.error.body); case 429: throw new Webflow.TooManyRequestsError( serializers.Error_.parseOrThrow(_response.error.body, { @@ -553,8 +556,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -712,8 +715,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -865,8 +868,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -996,8 +999,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1172,8 +1175,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1328,8 +1331,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1465,8 +1468,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1598,8 +1601,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1726,8 +1729,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1863,8 +1866,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1998,8 +2001,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -2126,8 +2129,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -2258,8 +2261,8 @@ export class Items { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.ts b/src/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.ts index d59fe0bd..99e6e7d2 100644 --- a/src/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.ts +++ b/src/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.ts @@ -4,4 +4,4 @@ import * as Webflow from "../../../../../index"; -export type ItemsCreateItemLiveRequest = Webflow.CollectionItem | Webflow.collections.MultipleItems; +export type ItemsCreateItemLiveRequest = Webflow.CollectionItem | Webflow.collections.MultipleLiveItems; diff --git a/src/api/resources/collections/resources/items/types/MultipleItems.ts b/src/api/resources/collections/resources/items/types/MultipleItems.ts index fc463307..2c774eaa 100644 --- a/src/api/resources/collections/resources/items/types/MultipleItems.ts +++ b/src/api/resources/collections/resources/items/types/MultipleItems.ts @@ -5,6 +5,6 @@ import * as Webflow from "../../../../../index"; export interface MultipleItems { - /** List of collection items to create */ - items?: Webflow.CollectionItem[]; + /** An array of items to create */ + items?: Webflow.CollectionItemPostSingle[]; } diff --git a/src/api/resources/collections/resources/items/types/MultipleLiveItems.ts b/src/api/resources/collections/resources/items/types/MultipleLiveItems.ts new file mode 100644 index 00000000..f794cfed --- /dev/null +++ b/src/api/resources/collections/resources/items/types/MultipleLiveItems.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as Webflow from "../../../../../index"; + +export interface MultipleLiveItems { + /** List of collection items to create */ + items?: Webflow.CollectionItem[]; +} diff --git a/src/api/resources/collections/resources/items/types/index.ts b/src/api/resources/collections/resources/items/types/index.ts index 1cb02f3a..91a33ac5 100644 --- a/src/api/resources/collections/resources/items/types/index.ts +++ b/src/api/resources/collections/resources/items/types/index.ts @@ -5,6 +5,7 @@ export * from "./ItemsCreateItemRequest"; export * from "./ItemsDeleteItemsRequestItemsItem"; export * from "./ItemsListItemsLiveRequestSortBy"; export * from "./ItemsListItemsLiveRequestSortOrder"; +export * from "./MultipleLiveItems"; export * from "./ItemsCreateItemLiveRequest"; export * from "./ItemsDeleteItemsLiveRequestItemsItem"; export * from "./SingleCmsItem"; diff --git a/src/api/resources/ecommerce/client/Client.ts b/src/api/resources/ecommerce/client/Client.ts index 2d791b19..8ef13eca 100644 --- a/src/api/resources/ecommerce/client/Client.ts +++ b/src/api/resources/ecommerce/client/Client.ts @@ -63,8 +63,8 @@ export class Ecommerce { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/forms/client/Client.ts b/src/api/resources/forms/client/Client.ts index 881b0a83..ac032aa3 100644 --- a/src/api/resources/forms/client/Client.ts +++ b/src/api/resources/forms/client/Client.ts @@ -75,8 +75,8 @@ export class Forms { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -198,8 +198,8 @@ export class Forms { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -333,8 +333,8 @@ export class Forms { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -457,8 +457,8 @@ export class Forms { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -585,8 +585,8 @@ export class Forms { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/inventory/client/Client.ts b/src/api/resources/inventory/client/Client.ts index e325d3db..fa344820 100644 --- a/src/api/resources/inventory/client/Client.ts +++ b/src/api/resources/inventory/client/Client.ts @@ -65,8 +65,8 @@ export class Inventory { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -204,8 +204,8 @@ export class Inventory { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/orders/client/Client.ts b/src/api/resources/orders/client/Client.ts index 55aaed0f..3ab1064e 100644 --- a/src/api/resources/orders/client/Client.ts +++ b/src/api/resources/orders/client/Client.ts @@ -79,8 +79,8 @@ export class Orders { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -205,8 +205,8 @@ export class Orders { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -339,8 +339,8 @@ export class Orders { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -476,8 +476,8 @@ export class Orders { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -611,8 +611,8 @@ export class Orders { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -744,8 +744,8 @@ export class Orders { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/pages/client/Client.ts b/src/api/resources/pages/client/Client.ts index 9b979d59..8181172e 100644 --- a/src/api/resources/pages/client/Client.ts +++ b/src/api/resources/pages/client/Client.ts @@ -80,8 +80,8 @@ export class Pages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -211,8 +211,8 @@ export class Pages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -366,8 +366,8 @@ export class Pages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -513,8 +513,8 @@ export class Pages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -659,8 +659,8 @@ export class Pages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/pages/resources/scripts/client/Client.ts b/src/api/resources/pages/resources/scripts/client/Client.ts index d37fa59a..e1ff1f19 100644 --- a/src/api/resources/pages/resources/scripts/client/Client.ts +++ b/src/api/resources/pages/resources/scripts/client/Client.ts @@ -67,8 +67,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -208,8 +208,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -336,8 +336,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/products/client/Client.ts b/src/api/resources/products/client/Client.ts index 409ff6d4..e75102c0 100644 --- a/src/api/resources/products/client/Client.ts +++ b/src/api/resources/products/client/Client.ts @@ -78,8 +78,8 @@ export class Products { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -219,8 +219,8 @@ export class Products { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -353,8 +353,8 @@ export class Products { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -487,8 +487,8 @@ export class Products { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -628,8 +628,8 @@ export class Products { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -773,8 +773,8 @@ export class Products { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/scripts/client/Client.ts b/src/api/resources/scripts/client/Client.ts index 29c5914d..5c476ab4 100644 --- a/src/api/resources/scripts/client/Client.ts +++ b/src/api/resources/scripts/client/Client.ts @@ -65,8 +65,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -201,8 +201,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -340,8 +340,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/sites/client/Client.ts b/src/api/resources/sites/client/Client.ts index 3d7e6f56..9e04812e 100644 --- a/src/api/resources/sites/client/Client.ts +++ b/src/api/resources/sites/client/Client.ts @@ -57,8 +57,8 @@ export class Sites { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -162,8 +162,8 @@ export class Sites { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -279,8 +279,8 @@ export class Sites { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -405,8 +405,8 @@ export class Sites { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/sites/resources/activityLogs/client/Client.ts b/src/api/resources/sites/resources/activityLogs/client/Client.ts index 6a880613..d8ca510e 100644 --- a/src/api/resources/sites/resources/activityLogs/client/Client.ts +++ b/src/api/resources/sites/resources/activityLogs/client/Client.ts @@ -70,8 +70,8 @@ export class ActivityLogs { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/sites/resources/scripts/client/Client.ts b/src/api/resources/sites/resources/scripts/client/Client.ts index 4f185a56..04d7f9e7 100644 --- a/src/api/resources/sites/resources/scripts/client/Client.ts +++ b/src/api/resources/sites/resources/scripts/client/Client.ts @@ -63,8 +63,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -204,8 +204,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -328,8 +328,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -458,8 +458,8 @@ export class Scripts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/token/client/Client.ts b/src/api/resources/token/client/Client.ts index 76ea155f..0eeec4fe 100644 --- a/src/api/resources/token/client/Client.ts +++ b/src/api/resources/token/client/Client.ts @@ -54,8 +54,8 @@ export class Token { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -135,8 +135,8 @@ export class Token { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/users/client/Client.ts b/src/api/resources/users/client/Client.ts index 5e7bb583..451c894e 100644 --- a/src/api/resources/users/client/Client.ts +++ b/src/api/resources/users/client/Client.ts @@ -78,8 +78,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -200,8 +200,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -323,8 +323,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -456,8 +456,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -594,8 +594,8 @@ export class Users { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/webhooks/client/Client.ts b/src/api/resources/webhooks/client/Client.ts index 2e35090c..ea8c6c05 100644 --- a/src/api/resources/webhooks/client/Client.ts +++ b/src/api/resources/webhooks/client/Client.ts @@ -58,8 +58,8 @@ export class Webhooks { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -191,8 +191,8 @@ export class Webhooks { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -313,8 +313,8 @@ export class Webhooks { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -430,8 +430,8 @@ export class Webhooks { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "webflow-api", - "X-Fern-SDK-Version": "3.0.1", - "User-Agent": "webflow-api/3.0.1", + "X-Fern-SDK-Version": "3.0.2", + "User-Agent": "webflow-api/3.0.2", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/types/CollectionItem.ts b/src/api/types/CollectionItem.ts index e2713fa4..2783d84b 100644 --- a/src/api/types/CollectionItem.ts +++ b/src/api/types/CollectionItem.ts @@ -5,7 +5,11 @@ import * as Webflow from "../index"; /** - * The fields that define the schema for a given Item are based on the Collection that Item belongs to. Beyond the user defined fields, there are a handful of additional fields that are automatically created for all items + * A Collection Item represents a single entry in your collection. Each item includes: + * + * - **System metadata** - Automatically managed fields like IDs and timestamp
+ * - **Status flags** - Controls for managing content state: `isDraft`, `isArchived `
+ * - **Content fields** - Stored in `fieldData`. Each item needs a `name` and `slug`, and may include additional fields matching your collection's schema definition. */ export interface CollectionItem { /** Unique identifier for the Item */ diff --git a/src/api/types/CollectionItemPostSingle.ts b/src/api/types/CollectionItemPostSingle.ts index 8ba8f220..98b0bd28 100644 --- a/src/api/types/CollectionItemPostSingle.ts +++ b/src/api/types/CollectionItemPostSingle.ts @@ -5,7 +5,11 @@ import * as Webflow from "../index"; /** - * The fields that define the schema for a given Item are based on the Collection that Item belongs to. Beyond the user defined fields, there are a handful of additional fields that are automatically created for all items + * A Collection Item represents a single entry in your collection. Each item includes: + * + * - **System metadata** - Automatically managed fields like IDs and timestamp
+ * - **Status flags** - Controls for managing content state: `isDraft`, `isArchived `
+ * - **Content fields** - Stored in `fieldData`. Each item needs a `name` and `slug`, and may include additional fields matching your collection's schema definition. */ export interface CollectionItemPostSingle { /** Unique identifier for the Item */ @@ -18,9 +22,9 @@ export interface CollectionItemPostSingle { lastUpdated?: string; /** The date the item was created */ createdOn?: string; - /** Boolean determining if the Item is set to archived */ + /** Boolean determining if the Item is in an archived state. */ isArchived?: boolean; - /** Boolean determining if the Item is set to draft */ + /** Boolean determining if the Item is in a draft state. */ isDraft?: boolean; fieldData: Webflow.CollectionItemPostSingleFieldData; } diff --git a/src/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.ts b/src/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.ts index 4ce52623..33c48fbd 100644 --- a/src/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.ts +++ b/src/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.ts @@ -6,13 +6,13 @@ import * as serializers from "../../../../../index"; import * as Webflow from "../../../../../../api/index"; import * as core from "../../../../../../core"; import { CollectionItem } from "../../../../../types/CollectionItem"; -import { MultipleItems } from "./MultipleItems"; +import { MultipleLiveItems } from "./MultipleLiveItems"; export const ItemsCreateItemLiveRequest: core.serialization.Schema< serializers.collections.ItemsCreateItemLiveRequest.Raw, Webflow.collections.ItemsCreateItemLiveRequest -> = core.serialization.undiscriminatedUnion([CollectionItem, MultipleItems]); +> = core.serialization.undiscriminatedUnion([CollectionItem, MultipleLiveItems]); export declare namespace ItemsCreateItemLiveRequest { - type Raw = CollectionItem.Raw | MultipleItems.Raw; + type Raw = CollectionItem.Raw | MultipleLiveItems.Raw; } diff --git a/src/serialization/resources/collections/resources/items/types/MultipleItems.ts b/src/serialization/resources/collections/resources/items/types/MultipleItems.ts index 86176a26..f67237a7 100644 --- a/src/serialization/resources/collections/resources/items/types/MultipleItems.ts +++ b/src/serialization/resources/collections/resources/items/types/MultipleItems.ts @@ -5,17 +5,17 @@ import * as serializers from "../../../../../index"; import * as Webflow from "../../../../../../api/index"; import * as core from "../../../../../../core"; -import { CollectionItem } from "../../../../../types/CollectionItem"; +import { CollectionItemPostSingle } from "../../../../../types/CollectionItemPostSingle"; export const MultipleItems: core.serialization.ObjectSchema< serializers.collections.MultipleItems.Raw, Webflow.collections.MultipleItems > = core.serialization.object({ - items: core.serialization.list(CollectionItem).optional(), + items: core.serialization.list(CollectionItemPostSingle).optional(), }); export declare namespace MultipleItems { interface Raw { - items?: CollectionItem.Raw[] | null; + items?: CollectionItemPostSingle.Raw[] | null; } } diff --git a/src/serialization/resources/collections/resources/items/types/MultipleLiveItems.ts b/src/serialization/resources/collections/resources/items/types/MultipleLiveItems.ts new file mode 100644 index 00000000..99b7a0f1 --- /dev/null +++ b/src/serialization/resources/collections/resources/items/types/MultipleLiveItems.ts @@ -0,0 +1,21 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as serializers from "../../../../../index"; +import * as Webflow from "../../../../../../api/index"; +import * as core from "../../../../../../core"; +import { CollectionItem } from "../../../../../types/CollectionItem"; + +export const MultipleLiveItems: core.serialization.ObjectSchema< + serializers.collections.MultipleLiveItems.Raw, + Webflow.collections.MultipleLiveItems +> = core.serialization.object({ + items: core.serialization.list(CollectionItem).optional(), +}); + +export declare namespace MultipleLiveItems { + interface Raw { + items?: CollectionItem.Raw[] | null; + } +} diff --git a/src/serialization/resources/collections/resources/items/types/index.ts b/src/serialization/resources/collections/resources/items/types/index.ts index 1cb02f3a..91a33ac5 100644 --- a/src/serialization/resources/collections/resources/items/types/index.ts +++ b/src/serialization/resources/collections/resources/items/types/index.ts @@ -5,6 +5,7 @@ export * from "./ItemsCreateItemRequest"; export * from "./ItemsDeleteItemsRequestItemsItem"; export * from "./ItemsListItemsLiveRequestSortBy"; export * from "./ItemsListItemsLiveRequestSortOrder"; +export * from "./MultipleLiveItems"; export * from "./ItemsCreateItemLiveRequest"; export * from "./ItemsDeleteItemsLiveRequestItemsItem"; export * from "./SingleCmsItem"; diff --git a/src/version.ts b/src/version.ts index 68e5be6b..af16f128 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const SDK_VERSION = "3.0.1"; +export const SDK_VERSION = "3.0.2"; diff --git a/yarn.lock b/yarn.lock index cf95e3e8..525154e7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -482,9 +482,9 @@ chalk "^4.0.0" "@jridgewell/gen-mapping@^0.3.5": - version "0.3.5" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" - integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + version "0.3.8" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142" + integrity sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA== dependencies: "@jridgewell/set-array" "^1.2.1" "@jridgewell/sourcemap-codec" "^1.4.10" @@ -656,9 +656,9 @@ form-data "^4.0.0" "@types/node@*": - version "22.10.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.1.tgz#41ffeee127b8975a05f8c4f83fb89bcb2987d766" - integrity sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ== + version "22.10.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.2.tgz#a485426e6d1fdafc7b0d4c7b24e2c78182ddabb9" + integrity sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ== dependencies: undici-types "~6.20.0" @@ -1061,7 +1061,7 @@ buffer@^6.0.3: base64-js "^1.3.1" ieee754 "^1.2.1" -call-bind-apply-helpers@^1.0.0: +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840" integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g== @@ -1069,7 +1069,7 @@ call-bind-apply-helpers@^1.0.0: es-errors "^1.3.0" function-bind "^1.1.2" -call-bind@^1.0.7: +call-bind@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== @@ -1079,6 +1079,14 @@ call-bind@^1.0.7: get-intrinsic "^1.2.4" set-function-length "^1.2.2" +call-bound@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.2.tgz#9dbd4daf9f5f753bec3e4c8fbb8a2ecc4de6c39b" + integrity sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg== + dependencies: + call-bind "^1.0.8" + get-intrinsic "^1.2.5" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -1095,9 +1103,9 @@ camelcase@^6.2.0: integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001669: - version "1.0.30001687" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz#d0ac634d043648498eedf7a3932836beba90ebae" - integrity sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ== + version "1.0.30001688" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz#f9d3ede749f083ce0db4c13db9d828adaf2e8d0a" + integrity sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA== chalk@^4.0.0, chalk@^4.1.0: version "4.1.2" @@ -1291,9 +1299,9 @@ dunder-proto@^1.0.0: gopd "^1.2.0" electron-to-chromium@^1.5.41: - version "1.5.71" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.71.tgz#d8b5dba1e55b320f2f4e9b1ca80738f53fcfec2b" - integrity sha512-dB68l59BI75W1BUGVTAEJy45CEVuEGy9qPVVQ8pnHyHMn36PLPPoE1mjLH+lo9rKulO3HC2OhbACI/8tCqJBcA== + version "1.5.73" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz#f32956ce40947fa3c8606726a96cd8fb5bb5f720" + integrity sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg== emittery@^0.13.1: version "0.13.1" @@ -1340,6 +1348,13 @@ es-module-lexer@^1.2.1: resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.4.tgz#a8efec3a3da991e60efa6b633a7cad6ab8d26b78" integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw== +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" @@ -1508,19 +1523,21 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.2.4: - version "1.2.5" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.5.tgz#dfe7dd1b30761b464fe51bf4bb00ac7c37b681e7" - integrity sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg== +get-intrinsic@^1.2.4, get-intrinsic@^1.2.5: + version "1.2.6" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.6.tgz#43dd3dd0e7b49b82b2dfcad10dc824bf7fc265d5" + integrity sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA== dependencies: - call-bind-apply-helpers "^1.0.0" + call-bind-apply-helpers "^1.0.1" dunder-proto "^1.0.0" es-define-property "^1.0.1" es-errors "^1.3.0" + es-object-atoms "^1.0.0" function-bind "^1.1.2" gopd "^1.2.0" has-symbols "^1.1.0" hasown "^2.0.2" + math-intrinsics "^1.0.0" get-package-type@^0.1.0: version "0.1.0" @@ -2187,9 +2204,9 @@ jsdom@^20.0.0: xml-name-validator "^4.0.0" jsesc@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" - integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== + version "3.1.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" + integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: version "2.3.1" @@ -2264,6 +2281,11 @@ makeerror@1.0.12: dependencies: tmpl "1.0.5" +math-intrinsics@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.0.0.tgz#4e04bf87c85aa51e90d078dac2252b4eb5260817" + integrity sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA== + merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -2329,9 +2351,9 @@ node-int64@^0.4.0: integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== node-releases@^2.0.18: - version "2.0.18" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" - integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + version "2.0.19" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== normalize-path@^3.0.0: version "3.0.0" @@ -2350,7 +2372,7 @@ nwsapi@^2.2.2: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.16.tgz#177760bba02c351df1d2644e220c31dfec8cdb43" integrity sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ== -object-inspect@^1.13.1: +object-inspect@^1.13.3: version "1.13.3" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== @@ -2641,15 +2663,45 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +side-channel-list@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + +side-channel-map@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + +side-channel-weakmap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + side-channel-map "^1.0.1" + side-channel@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" - integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + version "1.1.0" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== dependencies: - call-bind "^1.0.7" es-errors "^1.3.0" - get-intrinsic "^1.2.4" - object-inspect "^1.13.1" + object-inspect "^1.13.3" + side-channel-list "^1.0.0" + side-channel-map "^1.0.1" + side-channel-weakmap "^1.0.2" signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7"