From 204715f175dfe790fbb8a7bb9b1fecb740720658 Mon Sep 17 00:00:00 2001
From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com>
Date: Tue, 24 Mar 2026 16:45:50 +0000
Subject: [PATCH] SDK regeneration
---
.fern/metadata.json | 2 +-
reference.md | 6 +-
src/BaseClient.ts | 4 +-
.../resources/items/client/Client.ts | 50 ++-
.../requests/ItemsListItemsLiveRequest.ts | 6 +-
.../client/requests/ItemsListItemsRequest.ts | 6 +-
.../types/ItemsListItemsLiveRequestSortBy.ts | 2 +
.../types/ItemsListItemsRequestSortBy.ts | 2 +
src/api/resources/sites/client/Client.ts | 2 +
.../ItemsListItemsLiveRequestCreatedOn.ts | 8 +
.../ItemsListItemsLiveRequestLastUpdated.ts | 8 +
.../types/ItemsListItemsRequestCreatedOn.ts | 8 +
.../types/ItemsListItemsRequestLastUpdated.ts | 8 +
src/api/types/index.ts | 4 +
.../types/ItemsListItemsLiveRequestSortBy.ts | 4 +-
.../types/ItemsListItemsRequestSortBy.ts | 4 +-
.../ItemsListItemsLiveRequestCreatedOn.ts | 20 ++
.../ItemsListItemsLiveRequestLastUpdated.ts | 20 ++
.../types/ItemsListItemsRequestCreatedOn.ts | 20 ++
.../types/ItemsListItemsRequestLastUpdated.ts | 20 ++
src/serialization/types/index.ts | 4 +
src/version.ts | 2 +-
tests/wire/collections.test.ts | 4 +-
tests/wire/collections/items.test.ts | 4 +-
tests/wire/orders.test.ts | 320 +++++++++---------
tests/wire/sites.test.ts | 26 +-
yarn.lock | 90 ++---
27 files changed, 419 insertions(+), 235 deletions(-)
create mode 100644 src/api/types/ItemsListItemsLiveRequestCreatedOn.ts
create mode 100644 src/api/types/ItemsListItemsLiveRequestLastUpdated.ts
create mode 100644 src/api/types/ItemsListItemsRequestCreatedOn.ts
create mode 100644 src/api/types/ItemsListItemsRequestLastUpdated.ts
create mode 100644 src/serialization/types/ItemsListItemsLiveRequestCreatedOn.ts
create mode 100644 src/serialization/types/ItemsListItemsLiveRequestLastUpdated.ts
create mode 100644 src/serialization/types/ItemsListItemsRequestCreatedOn.ts
create mode 100644 src/serialization/types/ItemsListItemsRequestLastUpdated.ts
diff --git a/.fern/metadata.json b/.fern/metadata.json
index b5cc660b..a87d3af0 100644
--- a/.fern/metadata.json
+++ b/.fern/metadata.json
@@ -34,6 +34,6 @@
}
}
},
- "originGitCommit": "f0174d404a2635415e858ef151cf9202df3e3d02",
+ "originGitCommit": "297f18129a1b2c249c35ce1bac943f1f58528d08",
"sdkVersion": "3.3.5"
}
diff --git a/reference.md b/reference.md
index 1b8d26b2..5bd0100c 100644
--- a/reference.md
+++ b/reference.md
@@ -537,6 +537,8 @@ Publishes a site to one or more more domains.
To publish to a specific custom domain, use the domain IDs from the [Get Custom Domains](/data/reference/sites/get-custom-domain) endpoint.
+You must include at least one of the `customDomains` or `publishToWebflowSubdomain` properties in the request body.
+
This endpoint has a specific rate limit of one successful publish queue per minute.
Required scope | `sites:write`
@@ -4874,7 +4876,7 @@ await client.collections.items.listItems("580e63fc8c9a982ac9b8b745", {
limit: 1,
name: "name",
slug: "slug",
- sortBy: "lastPublished",
+ sortBy: "createdOn",
sortOrder: "asc"
});
@@ -5270,7 +5272,7 @@ await client.collections.items.listItemsLive("580e63fc8c9a982ac9b8b745", {
limit: 1,
name: "name",
slug: "slug",
- sortBy: "lastPublished",
+ sortBy: "createdOn",
sortOrder: "asc"
});
diff --git a/src/BaseClient.ts b/src/BaseClient.ts
index c73d5fc3..f6c4cc10 100644
--- a/src/BaseClient.ts
+++ b/src/BaseClient.ts
@@ -51,8 +51,8 @@ export function normalizeClientOptions> {
- const { cmsLocaleId, offset, limit, name, slug, lastPublished, sortBy, sortOrder } = request;
+ const { cmsLocaleId, offset, limit, name, slug, createdOn, lastPublished, lastUpdated, sortBy, sortOrder } =
+ request;
const _queryParams: Record = {
cmsLocaleId,
offset,
limit,
name,
slug,
+ createdOn:
+ createdOn != null
+ ? serializers.ItemsListItemsRequestCreatedOn.jsonOrThrow(createdOn, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ omitUndefined: true,
+ breadcrumbsPrefix: ["request", "createdOn"],
+ })
+ : createdOn,
lastPublished:
lastPublished != null
? serializers.ItemsListItemsRequestLastPublished.jsonOrThrow(lastPublished, {
@@ -79,6 +90,16 @@ export class ItemsClient {
breadcrumbsPrefix: ["request", "lastPublished"],
})
: lastPublished,
+ lastUpdated:
+ lastUpdated != null
+ ? serializers.ItemsListItemsRequestLastUpdated.jsonOrThrow(lastUpdated, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ omitUndefined: true,
+ breadcrumbsPrefix: ["request", "lastUpdated"],
+ })
+ : lastUpdated,
sortBy:
sortBy != null
? serializers.collections.ItemsListItemsRequestSortBy.jsonOrThrow(sortBy, {
@@ -787,7 +808,7 @@ export class ItemsClient {
* limit: 1,
* name: "name",
* slug: "slug",
- * sortBy: "lastPublished",
+ * sortBy: "createdOn",
* sortOrder: "asc"
* })
*/
@@ -804,13 +825,24 @@ export class ItemsClient {
request: Webflow.collections.ItemsListItemsLiveRequest = {},
requestOptions?: ItemsClient.RequestOptions,
): Promise> {
- const { cmsLocaleId, offset, limit, name, slug, lastPublished, sortBy, sortOrder } = request;
+ const { cmsLocaleId, offset, limit, name, slug, createdOn, lastPublished, lastUpdated, sortBy, sortOrder } =
+ request;
const _queryParams: Record = {
cmsLocaleId,
offset,
limit,
name,
slug,
+ createdOn:
+ createdOn != null
+ ? serializers.ItemsListItemsLiveRequestCreatedOn.jsonOrThrow(createdOn, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ omitUndefined: true,
+ breadcrumbsPrefix: ["request", "createdOn"],
+ })
+ : createdOn,
lastPublished:
lastPublished != null
? serializers.ItemsListItemsLiveRequestLastPublished.jsonOrThrow(lastPublished, {
@@ -821,6 +853,16 @@ export class ItemsClient {
breadcrumbsPrefix: ["request", "lastPublished"],
})
: lastPublished,
+ lastUpdated:
+ lastUpdated != null
+ ? serializers.ItemsListItemsLiveRequestLastUpdated.jsonOrThrow(lastUpdated, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ omitUndefined: true,
+ breadcrumbsPrefix: ["request", "lastUpdated"],
+ })
+ : lastUpdated,
sortBy:
sortBy != null
? serializers.collections.ItemsListItemsLiveRequestSortBy.jsonOrThrow(sortBy, {
diff --git a/src/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.ts b/src/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.ts
index 6c1c6cee..9dc47f76 100644
--- a/src/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.ts
+++ b/src/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.ts
@@ -10,7 +10,7 @@ import type * as Webflow from "../../../../../../index";
* limit: 1,
* name: "name",
* slug: "slug",
- * sortBy: "lastPublished",
+ * sortBy: "createdOn",
* sortOrder: "asc"
* }
*/
@@ -25,8 +25,12 @@ export interface ItemsListItemsLiveRequest {
name?: string;
/** Filter by the exact slug of the item */
slug?: string;
+ /** Filter by the creation date of the item(s) */
+ createdOn?: Webflow.ItemsListItemsLiveRequestCreatedOn;
/** Filter by the last published date of the item(s) */
lastPublished?: Webflow.ItemsListItemsLiveRequestLastPublished;
+ /** Filter by the last updated date of the item(s) */
+ lastUpdated?: Webflow.ItemsListItemsLiveRequestLastUpdated;
/** Sort results by the provided value */
sortBy?: Webflow.collections.ItemsListItemsLiveRequestSortBy;
/** Sorts the results by asc or desc */
diff --git a/src/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.ts b/src/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.ts
index d93bfd2a..af6c474b 100644
--- a/src/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.ts
+++ b/src/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.ts
@@ -10,7 +10,7 @@ import type * as Webflow from "../../../../../../index";
* limit: 1,
* name: "name",
* slug: "slug",
- * sortBy: "lastPublished",
+ * sortBy: "createdOn",
* sortOrder: "asc"
* }
*/
@@ -25,8 +25,12 @@ export interface ItemsListItemsRequest {
name?: string;
/** Filter by the exact slug of the item */
slug?: string;
+ /** Filter by the creation date of the item(s) */
+ createdOn?: Webflow.ItemsListItemsRequestCreatedOn;
/** Filter by the last published date of the item(s) */
lastPublished?: Webflow.ItemsListItemsRequestLastPublished;
+ /** Filter by the last updated date of the item(s) */
+ lastUpdated?: Webflow.ItemsListItemsRequestLastUpdated;
/** Sort results by the provided value */
sortBy?: Webflow.collections.ItemsListItemsRequestSortBy;
/** Sorts the results by asc or desc */
diff --git a/src/api/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.ts b/src/api/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.ts
index 62738ae3..cd8c7e9f 100644
--- a/src/api/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.ts
+++ b/src/api/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.ts
@@ -1,7 +1,9 @@
// This file was auto-generated by Fern from our API Definition.
export const ItemsListItemsLiveRequestSortBy = {
+ CreatedOn: "createdOn",
LastPublished: "lastPublished",
+ LastUpdated: "lastUpdated",
Name: "name",
Slug: "slug",
} as const;
diff --git a/src/api/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.ts b/src/api/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.ts
index c4c612ce..9ec14702 100644
--- a/src/api/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.ts
+++ b/src/api/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.ts
@@ -1,7 +1,9 @@
// This file was auto-generated by Fern from our API Definition.
export const ItemsListItemsRequestSortBy = {
+ CreatedOn: "createdOn",
LastPublished: "lastPublished",
+ LastUpdated: "lastUpdated",
Name: "name",
Slug: "slug",
} as const;
diff --git a/src/api/resources/sites/client/Client.ts b/src/api/resources/sites/client/Client.ts
index 20dbf050..ae2ebd17 100644
--- a/src/api/resources/sites/client/Client.ts
+++ b/src/api/resources/sites/client/Client.ts
@@ -829,6 +829,8 @@ export class SitesClient {
*
* To publish to a specific custom domain, use the domain IDs from the [Get Custom Domains](/data/reference/sites/get-custom-domain) endpoint.
*
+ * You must include at least one of the `customDomains` or `publishToWebflowSubdomain` properties in the request body.
+ *
* This endpoint has a specific rate limit of one successful publish queue per minute.
*
* Required scope | `sites:write`
diff --git a/src/api/types/ItemsListItemsLiveRequestCreatedOn.ts b/src/api/types/ItemsListItemsLiveRequestCreatedOn.ts
new file mode 100644
index 00000000..ac78c035
--- /dev/null
+++ b/src/api/types/ItemsListItemsLiveRequestCreatedOn.ts
@@ -0,0 +1,8 @@
+// This file was auto-generated by Fern from our API Definition.
+
+export interface ItemsListItemsLiveRequestCreatedOn {
+ /** Filter items created before this date */
+ lte?: Date;
+ /** Filter items created after this date */
+ gte?: Date;
+}
diff --git a/src/api/types/ItemsListItemsLiveRequestLastUpdated.ts b/src/api/types/ItemsListItemsLiveRequestLastUpdated.ts
new file mode 100644
index 00000000..b6460edb
--- /dev/null
+++ b/src/api/types/ItemsListItemsLiveRequestLastUpdated.ts
@@ -0,0 +1,8 @@
+// This file was auto-generated by Fern from our API Definition.
+
+export interface ItemsListItemsLiveRequestLastUpdated {
+ /** Filter items last updated before this date */
+ lte?: Date;
+ /** Filter items last updated after this date */
+ gte?: Date;
+}
diff --git a/src/api/types/ItemsListItemsRequestCreatedOn.ts b/src/api/types/ItemsListItemsRequestCreatedOn.ts
new file mode 100644
index 00000000..135be75a
--- /dev/null
+++ b/src/api/types/ItemsListItemsRequestCreatedOn.ts
@@ -0,0 +1,8 @@
+// This file was auto-generated by Fern from our API Definition.
+
+export interface ItemsListItemsRequestCreatedOn {
+ /** Filter items created before this date */
+ lte?: Date;
+ /** Filter items created after this date */
+ gte?: Date;
+}
diff --git a/src/api/types/ItemsListItemsRequestLastUpdated.ts b/src/api/types/ItemsListItemsRequestLastUpdated.ts
new file mode 100644
index 00000000..8d38e4ad
--- /dev/null
+++ b/src/api/types/ItemsListItemsRequestLastUpdated.ts
@@ -0,0 +1,8 @@
+// This file was auto-generated by Fern from our API Definition.
+
+export interface ItemsListItemsRequestLastUpdated {
+ /** Filter items last updated before this date */
+ lte?: Date;
+ /** Filter items last updated after this date */
+ gte?: Date;
+}
diff --git a/src/api/types/index.ts b/src/api/types/index.ts
index 3f2c22d3..58e0f2b7 100644
--- a/src/api/types/index.ts
+++ b/src/api/types/index.ts
@@ -98,8 +98,12 @@ export * from "./InvalidDomain";
export * from "./InvalidScopes";
export * from "./InventoryItem";
export * from "./InventoryItemInventoryType";
+export * from "./ItemsListItemsLiveRequestCreatedOn";
export * from "./ItemsListItemsLiveRequestLastPublished";
+export * from "./ItemsListItemsLiveRequestLastUpdated";
+export * from "./ItemsListItemsRequestCreatedOn";
export * from "./ItemsListItemsRequestLastPublished";
+export * from "./ItemsListItemsRequestLastUpdated";
export * from "./ListCustomCodeBlocks";
export * from "./Locale";
export * from "./Locales";
diff --git a/src/serialization/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.ts b/src/serialization/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.ts
index 695cd759..71e242c7 100644
--- a/src/serialization/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.ts
+++ b/src/serialization/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.ts
@@ -7,8 +7,8 @@ import type * as serializers from "../../../../../index";
export const ItemsListItemsLiveRequestSortBy: core.serialization.Schema<
serializers.collections.ItemsListItemsLiveRequestSortBy.Raw,
Webflow.collections.ItemsListItemsLiveRequestSortBy
-> = core.serialization.enum_(["lastPublished", "name", "slug"]);
+> = core.serialization.enum_(["createdOn", "lastPublished", "lastUpdated", "name", "slug"]);
export declare namespace ItemsListItemsLiveRequestSortBy {
- export type Raw = "lastPublished" | "name" | "slug";
+ export type Raw = "createdOn" | "lastPublished" | "lastUpdated" | "name" | "slug";
}
diff --git a/src/serialization/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.ts b/src/serialization/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.ts
index 3da20a13..4c7fec75 100644
--- a/src/serialization/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.ts
+++ b/src/serialization/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.ts
@@ -7,8 +7,8 @@ import type * as serializers from "../../../../../index";
export const ItemsListItemsRequestSortBy: core.serialization.Schema<
serializers.collections.ItemsListItemsRequestSortBy.Raw,
Webflow.collections.ItemsListItemsRequestSortBy
-> = core.serialization.enum_(["lastPublished", "name", "slug"]);
+> = core.serialization.enum_(["createdOn", "lastPublished", "lastUpdated", "name", "slug"]);
export declare namespace ItemsListItemsRequestSortBy {
- export type Raw = "lastPublished" | "name" | "slug";
+ export type Raw = "createdOn" | "lastPublished" | "lastUpdated" | "name" | "slug";
}
diff --git a/src/serialization/types/ItemsListItemsLiveRequestCreatedOn.ts b/src/serialization/types/ItemsListItemsLiveRequestCreatedOn.ts
new file mode 100644
index 00000000..625dc376
--- /dev/null
+++ b/src/serialization/types/ItemsListItemsLiveRequestCreatedOn.ts
@@ -0,0 +1,20 @@
+// This file was auto-generated by Fern from our API Definition.
+
+import type * as Webflow from "../../api/index";
+import * as core from "../../core";
+import type * as serializers from "../index";
+
+export const ItemsListItemsLiveRequestCreatedOn: core.serialization.ObjectSchema<
+ serializers.ItemsListItemsLiveRequestCreatedOn.Raw,
+ Webflow.ItemsListItemsLiveRequestCreatedOn
+> = core.serialization.object({
+ lte: core.serialization.date().optional(),
+ gte: core.serialization.date().optional(),
+});
+
+export declare namespace ItemsListItemsLiveRequestCreatedOn {
+ export interface Raw {
+ lte?: string | null;
+ gte?: string | null;
+ }
+}
diff --git a/src/serialization/types/ItemsListItemsLiveRequestLastUpdated.ts b/src/serialization/types/ItemsListItemsLiveRequestLastUpdated.ts
new file mode 100644
index 00000000..27c2e3ac
--- /dev/null
+++ b/src/serialization/types/ItemsListItemsLiveRequestLastUpdated.ts
@@ -0,0 +1,20 @@
+// This file was auto-generated by Fern from our API Definition.
+
+import type * as Webflow from "../../api/index";
+import * as core from "../../core";
+import type * as serializers from "../index";
+
+export const ItemsListItemsLiveRequestLastUpdated: core.serialization.ObjectSchema<
+ serializers.ItemsListItemsLiveRequestLastUpdated.Raw,
+ Webflow.ItemsListItemsLiveRequestLastUpdated
+> = core.serialization.object({
+ lte: core.serialization.date().optional(),
+ gte: core.serialization.date().optional(),
+});
+
+export declare namespace ItemsListItemsLiveRequestLastUpdated {
+ export interface Raw {
+ lte?: string | null;
+ gte?: string | null;
+ }
+}
diff --git a/src/serialization/types/ItemsListItemsRequestCreatedOn.ts b/src/serialization/types/ItemsListItemsRequestCreatedOn.ts
new file mode 100644
index 00000000..c309ef37
--- /dev/null
+++ b/src/serialization/types/ItemsListItemsRequestCreatedOn.ts
@@ -0,0 +1,20 @@
+// This file was auto-generated by Fern from our API Definition.
+
+import type * as Webflow from "../../api/index";
+import * as core from "../../core";
+import type * as serializers from "../index";
+
+export const ItemsListItemsRequestCreatedOn: core.serialization.ObjectSchema<
+ serializers.ItemsListItemsRequestCreatedOn.Raw,
+ Webflow.ItemsListItemsRequestCreatedOn
+> = core.serialization.object({
+ lte: core.serialization.date().optional(),
+ gte: core.serialization.date().optional(),
+});
+
+export declare namespace ItemsListItemsRequestCreatedOn {
+ export interface Raw {
+ lte?: string | null;
+ gte?: string | null;
+ }
+}
diff --git a/src/serialization/types/ItemsListItemsRequestLastUpdated.ts b/src/serialization/types/ItemsListItemsRequestLastUpdated.ts
new file mode 100644
index 00000000..78e9f3b4
--- /dev/null
+++ b/src/serialization/types/ItemsListItemsRequestLastUpdated.ts
@@ -0,0 +1,20 @@
+// This file was auto-generated by Fern from our API Definition.
+
+import type * as Webflow from "../../api/index";
+import * as core from "../../core";
+import type * as serializers from "../index";
+
+export const ItemsListItemsRequestLastUpdated: core.serialization.ObjectSchema<
+ serializers.ItemsListItemsRequestLastUpdated.Raw,
+ Webflow.ItemsListItemsRequestLastUpdated
+> = core.serialization.object({
+ lte: core.serialization.date().optional(),
+ gte: core.serialization.date().optional(),
+});
+
+export declare namespace ItemsListItemsRequestLastUpdated {
+ export interface Raw {
+ lte?: string | null;
+ gte?: string | null;
+ }
+}
diff --git a/src/serialization/types/index.ts b/src/serialization/types/index.ts
index 3f2c22d3..58e0f2b7 100644
--- a/src/serialization/types/index.ts
+++ b/src/serialization/types/index.ts
@@ -98,8 +98,12 @@ export * from "./InvalidDomain";
export * from "./InvalidScopes";
export * from "./InventoryItem";
export * from "./InventoryItemInventoryType";
+export * from "./ItemsListItemsLiveRequestCreatedOn";
export * from "./ItemsListItemsLiveRequestLastPublished";
+export * from "./ItemsListItemsLiveRequestLastUpdated";
+export * from "./ItemsListItemsRequestCreatedOn";
export * from "./ItemsListItemsRequestLastPublished";
+export * from "./ItemsListItemsRequestLastUpdated";
export * from "./ListCustomCodeBlocks";
export * from "./Locale";
export * from "./Locales";
diff --git a/src/version.ts b/src/version.ts
index 09d1b129..7f892b69 100644
--- a/src/version.ts
+++ b/src/version.ts
@@ -1 +1 @@
-export const SDK_VERSION = "3.3.4";
+export const SDK_VERSION = "3.3.5";
diff --git a/tests/wire/collections.test.ts b/tests/wire/collections.test.ts
index 811e18b0..cb7a8ce7 100644
--- a/tests/wire/collections.test.ts
+++ b/tests/wire/collections.test.ts
@@ -588,7 +588,7 @@ describe("CollectionsClient", () => {
id: "4f5e6d7c8b9a0e1d2c3b4a5f",
isRequired: false,
isEditable: true,
- type: "Color",
+ type: "DateTime",
slug: "first-mentioned",
displayName: "First Mentioned",
helpText: "Date of the first mention of the subject.",
@@ -757,7 +757,7 @@ describe("CollectionsClient", () => {
id: "4f5e6d7c8b9a0e1d2c3b4a5f",
isRequired: false,
isEditable: true,
- type: "Color",
+ type: "DateTime",
slug: "first-mentioned",
displayName: "First Mentioned",
helpText: "Date of the first mention of the subject.",
diff --git a/tests/wire/collections/items.test.ts b/tests/wire/collections/items.test.ts
index 6056dcdc..2103ac16 100644
--- a/tests/wire/collections/items.test.ts
+++ b/tests/wire/collections/items.test.ts
@@ -62,7 +62,7 @@ describe("ItemsClient", () => {
limit: 1,
name: "name",
slug: "slug",
- sortBy: "lastPublished",
+ sortBy: "createdOn",
sortOrder: "asc",
});
expect(response).toEqual({
@@ -1385,7 +1385,7 @@ describe("ItemsClient", () => {
limit: 1,
name: "name",
slug: "slug",
- sortBy: "lastPublished",
+ sortBy: "createdOn",
sortOrder: "asc",
});
expect(response).toEqual({
diff --git a/tests/wire/orders.test.ts b/tests/wire/orders.test.ts
index 5ef3ecef..3af41564 100644
--- a/tests/wire/orders.test.ts
+++ b/tests/wire/orders.test.ts
@@ -22,9 +22,9 @@ describe("OrdersClient", () => {
"Customer requested gift wrapping and a personalized note saying: Happy Birthday, Ford! 🎉 Please ensure the item is packed with extra bubble wrap for safe transit.",
orderComment: 'Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉',
acceptedOn: "2024-04-10T13:16:21Z",
- customerPaid: { unit: "USD", value: "5892", string: "$ 211.55 USD" },
- netAmount: { unit: "USD", value: "5892", string: "$ 200.89 USD" },
- applicationFee: { unit: "USD", value: "5892", string: "$ 4.23 USD" },
+ customerPaid: { unit: "USD", value: "21155", string: "$ 211.55 USD" },
+ netAmount: { unit: "USD", value: "20089", string: "$ 200.89 USD" },
+ applicationFee: { unit: "USD", value: "423", string: "$ 4.23 USD" },
allAddresses: [
{
type: "billing",
@@ -75,7 +75,7 @@ describe("OrdersClient", () => {
purchasedItems: [
{
count: 2,
- rowTotal: { unit: "USD", value: "5892", string: "$ 111.22 USD" },
+ rowTotal: { unit: "USD", value: "11122", string: "$ 111.22 USD" },
productId: "66072fb61b89448912e26791",
productName: "Luxurious Fresh Ball",
productSlug: "luxurious-fresh-ball",
@@ -86,7 +86,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2672c_image14.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ variantPrice: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
weight: 11,
width: 82,
height: 70,
@@ -94,7 +94,7 @@ describe("OrdersClient", () => {
},
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 83.09 USD" },
+ rowTotal: { unit: "USD", value: "8309", string: "$ 83.09 USD" },
productId: "66072fb61b89448912e2678b",
productName: "Incredible Bronze Towels",
productSlug: "incredible-bronze-towels",
@@ -105,7 +105,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e26729_image16.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 83.09 USD" },
+ variantPrice: { unit: "USD", value: "8309", string: "$ 83.09 USD" },
width: 19,
height: 72,
length: 18,
@@ -137,7 +137,7 @@ describe("OrdersClient", () => {
type: "tax",
name: "State Taxes",
description: "CA Taxes (6.25%)",
- price: { unit: "USD", value: "5892", string: "$3.44" },
+ price: { unit: "USD", value: "344", string: "$3.44" },
},
],
total: { unit: "USD", value: "5892", string: "$58.92" },
@@ -157,9 +157,9 @@ describe("OrdersClient", () => {
orderComment: "",
acceptedOn: "2024-03-29T21:29:21Z",
refundedOn: "2024-04-08T18:25:04Z",
- customerPaid: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
- netAmount: { unit: "USD", value: "5892", string: "$ 112.62 USD" },
- applicationFee: { unit: "USD", value: "5892", string: "$ 2.37 USD" },
+ customerPaid: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
+ netAmount: { unit: "USD", value: "11262", string: "$ 112.62 USD" },
+ applicationFee: { unit: "USD", value: "237", string: "$ 2.37 USD" },
allAddresses: [
{
type: "billing",
@@ -209,7 +209,7 @@ describe("OrdersClient", () => {
purchasedItems: [
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ rowTotal: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
productId: "66072fb61b89448912e26791",
productName: "Luxurious Fresh Ball",
productSlug: "luxurious-fresh-ball",
@@ -220,7 +220,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2672c_image14.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ variantPrice: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
weight: 11,
width: 82,
height: 70,
@@ -228,7 +228,7 @@ describe("OrdersClient", () => {
},
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ rowTotal: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
productId: "66072fb61b89448912e26799",
productName: "Recycled Steel Gloves",
productSlug: "recycled-steel-gloves",
@@ -239,7 +239,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2671e_image2.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ variantPrice: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
weight: 38,
width: 76,
height: 85,
@@ -268,28 +268,28 @@ describe("OrdersClient", () => {
hasDownloads: false,
paymentProcessor: "stripe",
totals: {
- subtotal: { unit: "USD", value: "5892", string: "$ 109.05 USD" },
+ subtotal: { unit: "USD", value: "10905", string: "$ 109.05 USD" },
extras: [
{
type: "tax",
name: "State Taxes",
description: "NY Taxes (4.00%)",
- price: { unit: "USD", value: "5892", string: "$ 4.36 USD" },
+ price: { unit: "USD", value: "436", string: "$ 4.36 USD" },
},
{
type: "tax",
name: "City Taxes",
description: "NEW YORK Taxes (4.88%)",
- price: { unit: "USD", value: "5892", string: "$ 5.32 USD" },
+ price: { unit: "USD", value: "532", string: "$ 5.32 USD" },
},
{
type: "shipping",
name: "Flat",
description: "",
- price: { unit: "USD", value: "5892", string: "$ 0.00 USD" },
+ price: { unit: "USD", value: "0", string: "$ 0.00 USD" },
},
],
- total: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
+ total: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
},
downloadFiles: [
{
@@ -326,17 +326,17 @@ describe("OrdersClient", () => {
acceptedOn: new Date("2024-04-10T13:16:21.000Z"),
customerPaid: {
unit: "USD",
- value: "5892",
+ value: "21155",
string: "$ 211.55 USD",
},
netAmount: {
unit: "USD",
- value: "5892",
+ value: "20089",
string: "$ 200.89 USD",
},
applicationFee: {
unit: "USD",
- value: "5892",
+ value: "423",
string: "$ 4.23 USD",
},
allAddresses: [
@@ -394,7 +394,7 @@ describe("OrdersClient", () => {
count: 2,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "11122",
string: "$ 111.22 USD",
},
productId: "66072fb61b89448912e26791",
@@ -409,7 +409,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
weight: 11,
@@ -421,7 +421,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "8309",
string: "$ 83.09 USD",
},
productId: "66072fb61b89448912e2678b",
@@ -436,7 +436,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "8309",
string: "$ 83.09 USD",
},
width: 19,
@@ -485,7 +485,7 @@ describe("OrdersClient", () => {
description: "CA Taxes (6.25%)",
price: {
unit: "USD",
- value: "5892",
+ value: "344",
string: "$3.44",
},
},
@@ -513,17 +513,17 @@ describe("OrdersClient", () => {
refundedOn: new Date("2024-04-08T18:25:04.000Z"),
customerPaid: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
netAmount: {
unit: "USD",
- value: "5892",
+ value: "11262",
string: "$ 112.62 USD",
},
applicationFee: {
unit: "USD",
- value: "5892",
+ value: "237",
string: "$ 2.37 USD",
},
allAddresses: [
@@ -580,7 +580,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
productId: "66072fb61b89448912e26791",
@@ -595,7 +595,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
weight: 11,
@@ -607,7 +607,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
productId: "66072fb61b89448912e26799",
@@ -622,7 +622,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
weight: 38,
@@ -664,7 +664,7 @@ describe("OrdersClient", () => {
totals: {
subtotal: {
unit: "USD",
- value: "5892",
+ value: "10905",
string: "$ 109.05 USD",
},
extras: [
@@ -674,7 +674,7 @@ describe("OrdersClient", () => {
description: "NY Taxes (4.00%)",
price: {
unit: "USD",
- value: "5892",
+ value: "436",
string: "$ 4.36 USD",
},
},
@@ -684,7 +684,7 @@ describe("OrdersClient", () => {
description: "NEW YORK Taxes (4.88%)",
price: {
unit: "USD",
- value: "5892",
+ value: "532",
string: "$ 5.32 USD",
},
},
@@ -694,14 +694,14 @@ describe("OrdersClient", () => {
description: "",
price: {
unit: "USD",
- value: "5892",
+ value: "0",
string: "$ 0.00 USD",
},
},
],
total: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
},
@@ -896,9 +896,9 @@ describe("OrdersClient", () => {
disputedOn: "2024-03-29T21:29:21Z",
disputeUpdatedOn: "2024-03-29T21:29:21Z",
disputeLastStatus: "charge_refunded",
- customerPaid: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
- netAmount: { unit: "USD", value: "5892", string: "$ 112.62 USD" },
- applicationFee: { unit: "USD", value: "5892", string: "$ 2.37 USD" },
+ customerPaid: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
+ netAmount: { unit: "USD", value: "11262", string: "$ 112.62 USD" },
+ applicationFee: { unit: "USD", value: "237", string: "$ 2.37 USD" },
allAddresses: [
{
type: "billing",
@@ -952,7 +952,7 @@ describe("OrdersClient", () => {
purchasedItems: [
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ rowTotal: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
productId: "66072fb61b89448912e26791",
productName: "Luxurious Fresh Ball",
productSlug: "luxurious-fresh-ball",
@@ -963,7 +963,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2672c_image14.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ variantPrice: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
weight: 11,
width: 82,
height: 70,
@@ -971,7 +971,7 @@ describe("OrdersClient", () => {
},
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ rowTotal: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
productId: "66072fb61b89448912e26799",
productName: "Recycled Steel Gloves",
productSlug: "recycled-steel-gloves",
@@ -982,7 +982,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2671e_image2.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ variantPrice: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
weight: 38,
width: 76,
height: 85,
@@ -1006,28 +1006,28 @@ describe("OrdersClient", () => {
hasDownloads: false,
paymentProcessor: "stripe",
totals: {
- subtotal: { unit: "USD", value: "5892", string: "$ 109.05 USD" },
+ subtotal: { unit: "USD", value: "10905", string: "$ 109.05 USD" },
extras: [
{
type: "tax",
name: "State Taxes",
description: "NY Taxes (4.00%)",
- price: { unit: "USD", value: "5892", string: "$ 4.36 USD" },
+ price: { unit: "USD", value: "436", string: "$ 4.36 USD" },
},
{
type: "tax",
name: "City Taxes",
description: "NEW YORK Taxes (4.88%)",
- price: { unit: "USD", value: "5892", string: "$ 5.32 USD" },
+ price: { unit: "USD", value: "532", string: "$ 5.32 USD" },
},
{
type: "shipping",
name: "Flat",
description: "",
- price: { unit: "USD", value: "5892", string: "$ 0.00 USD" },
+ price: { unit: "USD", value: "0", string: "$ 0.00 USD" },
},
],
- total: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
+ total: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
},
downloadFiles: [
{
@@ -1060,17 +1060,17 @@ describe("OrdersClient", () => {
disputeLastStatus: "charge_refunded",
customerPaid: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
netAmount: {
unit: "USD",
- value: "5892",
+ value: "11262",
string: "$ 112.62 USD",
},
applicationFee: {
unit: "USD",
- value: "5892",
+ value: "237",
string: "$ 2.37 USD",
},
allAddresses: [
@@ -1131,7 +1131,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
productId: "66072fb61b89448912e26791",
@@ -1146,7 +1146,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
weight: 11,
@@ -1158,7 +1158,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
productId: "66072fb61b89448912e26799",
@@ -1173,7 +1173,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
weight: 38,
@@ -1215,7 +1215,7 @@ describe("OrdersClient", () => {
totals: {
subtotal: {
unit: "USD",
- value: "5892",
+ value: "10905",
string: "$ 109.05 USD",
},
extras: [
@@ -1225,7 +1225,7 @@ describe("OrdersClient", () => {
description: "NY Taxes (4.00%)",
price: {
unit: "USD",
- value: "5892",
+ value: "436",
string: "$ 4.36 USD",
},
},
@@ -1235,7 +1235,7 @@ describe("OrdersClient", () => {
description: "NEW YORK Taxes (4.88%)",
price: {
unit: "USD",
- value: "5892",
+ value: "532",
string: "$ 5.32 USD",
},
},
@@ -1245,14 +1245,14 @@ describe("OrdersClient", () => {
description: "",
price: {
unit: "USD",
- value: "5892",
+ value: "0",
string: "$ 0.00 USD",
},
},
],
total: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
},
@@ -1440,9 +1440,9 @@ describe("OrdersClient", () => {
disputedOn: "2024-03-29T21:29:21Z",
disputeUpdatedOn: "2024-03-29T21:29:21Z",
disputeLastStatus: "charge_refunded",
- customerPaid: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
- netAmount: { unit: "USD", value: "5892", string: "$ 112.62 USD" },
- applicationFee: { unit: "USD", value: "5892", string: "$ 2.37 USD" },
+ customerPaid: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
+ netAmount: { unit: "USD", value: "11262", string: "$ 112.62 USD" },
+ applicationFee: { unit: "USD", value: "237", string: "$ 2.37 USD" },
allAddresses: [
{
type: "billing",
@@ -1496,7 +1496,7 @@ describe("OrdersClient", () => {
purchasedItems: [
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ rowTotal: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
productId: "66072fb61b89448912e26791",
productName: "Luxurious Fresh Ball",
productSlug: "luxurious-fresh-ball",
@@ -1507,7 +1507,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2672c_image14.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ variantPrice: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
weight: 11,
width: 82,
height: 70,
@@ -1515,7 +1515,7 @@ describe("OrdersClient", () => {
},
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ rowTotal: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
productId: "66072fb61b89448912e26799",
productName: "Recycled Steel Gloves",
productSlug: "recycled-steel-gloves",
@@ -1526,7 +1526,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2671e_image2.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ variantPrice: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
weight: 38,
width: 76,
height: 85,
@@ -1550,28 +1550,28 @@ describe("OrdersClient", () => {
hasDownloads: false,
paymentProcessor: "stripe",
totals: {
- subtotal: { unit: "USD", value: "5892", string: "$ 109.05 USD" },
+ subtotal: { unit: "USD", value: "10905", string: "$ 109.05 USD" },
extras: [
{
type: "tax",
name: "State Taxes",
description: "NY Taxes (4.00%)",
- price: { unit: "USD", value: "5892", string: "$ 4.36 USD" },
+ price: { unit: "USD", value: "436", string: "$ 4.36 USD" },
},
{
type: "tax",
name: "City Taxes",
description: "NEW YORK Taxes (4.88%)",
- price: { unit: "USD", value: "5892", string: "$ 5.32 USD" },
+ price: { unit: "USD", value: "532", string: "$ 5.32 USD" },
},
{
type: "shipping",
name: "Flat",
description: "",
- price: { unit: "USD", value: "5892", string: "$ 0.00 USD" },
+ price: { unit: "USD", value: "0", string: "$ 0.00 USD" },
},
],
- total: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
+ total: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
},
downloadFiles: [
{
@@ -1605,17 +1605,17 @@ describe("OrdersClient", () => {
disputeLastStatus: "charge_refunded",
customerPaid: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
netAmount: {
unit: "USD",
- value: "5892",
+ value: "11262",
string: "$ 112.62 USD",
},
applicationFee: {
unit: "USD",
- value: "5892",
+ value: "237",
string: "$ 2.37 USD",
},
allAddresses: [
@@ -1676,7 +1676,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
productId: "66072fb61b89448912e26791",
@@ -1691,7 +1691,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
weight: 11,
@@ -1703,7 +1703,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
productId: "66072fb61b89448912e26799",
@@ -1718,7 +1718,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
weight: 38,
@@ -1760,7 +1760,7 @@ describe("OrdersClient", () => {
totals: {
subtotal: {
unit: "USD",
- value: "5892",
+ value: "10905",
string: "$ 109.05 USD",
},
extras: [
@@ -1770,7 +1770,7 @@ describe("OrdersClient", () => {
description: "NY Taxes (4.00%)",
price: {
unit: "USD",
- value: "5892",
+ value: "436",
string: "$ 4.36 USD",
},
},
@@ -1780,7 +1780,7 @@ describe("OrdersClient", () => {
description: "NEW YORK Taxes (4.88%)",
price: {
unit: "USD",
- value: "5892",
+ value: "532",
string: "$ 5.32 USD",
},
},
@@ -1790,14 +1790,14 @@ describe("OrdersClient", () => {
description: "",
price: {
unit: "USD",
- value: "5892",
+ value: "0",
string: "$ 0.00 USD",
},
},
],
total: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
},
@@ -1992,9 +1992,9 @@ describe("OrdersClient", () => {
disputedOn: "2024-03-29T21:29:21Z",
disputeUpdatedOn: "2024-03-29T21:29:21Z",
disputeLastStatus: "charge_refunded",
- customerPaid: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
- netAmount: { unit: "USD", value: "5892", string: "$ 112.62 USD" },
- applicationFee: { unit: "USD", value: "5892", string: "$ 2.37 USD" },
+ customerPaid: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
+ netAmount: { unit: "USD", value: "11262", string: "$ 112.62 USD" },
+ applicationFee: { unit: "USD", value: "237", string: "$ 2.37 USD" },
allAddresses: [
{
type: "billing",
@@ -2048,7 +2048,7 @@ describe("OrdersClient", () => {
purchasedItems: [
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ rowTotal: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
productId: "66072fb61b89448912e26791",
productName: "Luxurious Fresh Ball",
productSlug: "luxurious-fresh-ball",
@@ -2059,7 +2059,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2672c_image14.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ variantPrice: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
weight: 11,
width: 82,
height: 70,
@@ -2067,7 +2067,7 @@ describe("OrdersClient", () => {
},
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ rowTotal: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
productId: "66072fb61b89448912e26799",
productName: "Recycled Steel Gloves",
productSlug: "recycled-steel-gloves",
@@ -2078,7 +2078,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2671e_image2.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ variantPrice: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
weight: 38,
width: 76,
height: 85,
@@ -2102,28 +2102,28 @@ describe("OrdersClient", () => {
hasDownloads: false,
paymentProcessor: "stripe",
totals: {
- subtotal: { unit: "USD", value: "5892", string: "$ 109.05 USD" },
+ subtotal: { unit: "USD", value: "10905", string: "$ 109.05 USD" },
extras: [
{
type: "tax",
name: "State Taxes",
description: "NY Taxes (4.00%)",
- price: { unit: "USD", value: "5892", string: "$ 4.36 USD" },
+ price: { unit: "USD", value: "436", string: "$ 4.36 USD" },
},
{
type: "tax",
name: "City Taxes",
description: "NEW YORK Taxes (4.88%)",
- price: { unit: "USD", value: "5892", string: "$ 5.32 USD" },
+ price: { unit: "USD", value: "532", string: "$ 5.32 USD" },
},
{
type: "shipping",
name: "Flat",
description: "",
- price: { unit: "USD", value: "5892", string: "$ 0.00 USD" },
+ price: { unit: "USD", value: "0", string: "$ 0.00 USD" },
},
],
- total: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
+ total: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
},
downloadFiles: [
{
@@ -2157,17 +2157,17 @@ describe("OrdersClient", () => {
disputeLastStatus: "charge_refunded",
customerPaid: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
netAmount: {
unit: "USD",
- value: "5892",
+ value: "11262",
string: "$ 112.62 USD",
},
applicationFee: {
unit: "USD",
- value: "5892",
+ value: "237",
string: "$ 2.37 USD",
},
allAddresses: [
@@ -2228,7 +2228,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
productId: "66072fb61b89448912e26791",
@@ -2243,7 +2243,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
weight: 11,
@@ -2255,7 +2255,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
productId: "66072fb61b89448912e26799",
@@ -2270,7 +2270,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
weight: 38,
@@ -2312,7 +2312,7 @@ describe("OrdersClient", () => {
totals: {
subtotal: {
unit: "USD",
- value: "5892",
+ value: "10905",
string: "$ 109.05 USD",
},
extras: [
@@ -2322,7 +2322,7 @@ describe("OrdersClient", () => {
description: "NY Taxes (4.00%)",
price: {
unit: "USD",
- value: "5892",
+ value: "436",
string: "$ 4.36 USD",
},
},
@@ -2332,7 +2332,7 @@ describe("OrdersClient", () => {
description: "NEW YORK Taxes (4.88%)",
price: {
unit: "USD",
- value: "5892",
+ value: "532",
string: "$ 5.32 USD",
},
},
@@ -2342,14 +2342,14 @@ describe("OrdersClient", () => {
description: "",
price: {
unit: "USD",
- value: "5892",
+ value: "0",
string: "$ 0.00 USD",
},
},
],
total: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
},
@@ -2544,9 +2544,9 @@ describe("OrdersClient", () => {
disputedOn: "2024-03-29T21:29:21Z",
disputeUpdatedOn: "2024-03-29T21:29:21Z",
disputeLastStatus: "charge_refunded",
- customerPaid: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
- netAmount: { unit: "USD", value: "5892", string: "$ 112.62 USD" },
- applicationFee: { unit: "USD", value: "5892", string: "$ 2.37 USD" },
+ customerPaid: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
+ netAmount: { unit: "USD", value: "11262", string: "$ 112.62 USD" },
+ applicationFee: { unit: "USD", value: "237", string: "$ 2.37 USD" },
allAddresses: [
{
type: "billing",
@@ -2600,7 +2600,7 @@ describe("OrdersClient", () => {
purchasedItems: [
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ rowTotal: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
productId: "66072fb61b89448912e26791",
productName: "Luxurious Fresh Ball",
productSlug: "luxurious-fresh-ball",
@@ -2611,7 +2611,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2672c_image14.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ variantPrice: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
weight: 11,
width: 82,
height: 70,
@@ -2619,7 +2619,7 @@ describe("OrdersClient", () => {
},
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ rowTotal: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
productId: "66072fb61b89448912e26799",
productName: "Recycled Steel Gloves",
productSlug: "recycled-steel-gloves",
@@ -2630,7 +2630,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2671e_image2.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ variantPrice: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
weight: 38,
width: 76,
height: 85,
@@ -2654,28 +2654,28 @@ describe("OrdersClient", () => {
hasDownloads: false,
paymentProcessor: "stripe",
totals: {
- subtotal: { unit: "USD", value: "5892", string: "$ 109.05 USD" },
+ subtotal: { unit: "USD", value: "10905", string: "$ 109.05 USD" },
extras: [
{
type: "tax",
name: "State Taxes",
description: "NY Taxes (4.00%)",
- price: { unit: "USD", value: "5892", string: "$ 4.36 USD" },
+ price: { unit: "USD", value: "436", string: "$ 4.36 USD" },
},
{
type: "tax",
name: "City Taxes",
description: "NEW YORK Taxes (4.88%)",
- price: { unit: "USD", value: "5892", string: "$ 5.32 USD" },
+ price: { unit: "USD", value: "532", string: "$ 5.32 USD" },
},
{
type: "shipping",
name: "Flat",
description: "",
- price: { unit: "USD", value: "5892", string: "$ 0.00 USD" },
+ price: { unit: "USD", value: "0", string: "$ 0.00 USD" },
},
],
- total: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
+ total: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
},
downloadFiles: [
{
@@ -2708,17 +2708,17 @@ describe("OrdersClient", () => {
disputeLastStatus: "charge_refunded",
customerPaid: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
netAmount: {
unit: "USD",
- value: "5892",
+ value: "11262",
string: "$ 112.62 USD",
},
applicationFee: {
unit: "USD",
- value: "5892",
+ value: "237",
string: "$ 2.37 USD",
},
allAddresses: [
@@ -2779,7 +2779,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
productId: "66072fb61b89448912e26791",
@@ -2794,7 +2794,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
weight: 11,
@@ -2806,7 +2806,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
productId: "66072fb61b89448912e26799",
@@ -2821,7 +2821,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
weight: 38,
@@ -2863,7 +2863,7 @@ describe("OrdersClient", () => {
totals: {
subtotal: {
unit: "USD",
- value: "5892",
+ value: "10905",
string: "$ 109.05 USD",
},
extras: [
@@ -2873,7 +2873,7 @@ describe("OrdersClient", () => {
description: "NY Taxes (4.00%)",
price: {
unit: "USD",
- value: "5892",
+ value: "436",
string: "$ 4.36 USD",
},
},
@@ -2883,7 +2883,7 @@ describe("OrdersClient", () => {
description: "NEW YORK Taxes (4.88%)",
price: {
unit: "USD",
- value: "5892",
+ value: "532",
string: "$ 5.32 USD",
},
},
@@ -2893,14 +2893,14 @@ describe("OrdersClient", () => {
description: "",
price: {
unit: "USD",
- value: "5892",
+ value: "0",
string: "$ 0.00 USD",
},
},
],
total: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
},
@@ -3088,9 +3088,9 @@ describe("OrdersClient", () => {
disputedOn: "2024-03-29T21:29:21Z",
disputeUpdatedOn: "2024-03-29T21:29:21Z",
disputeLastStatus: "charge_refunded",
- customerPaid: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
- netAmount: { unit: "USD", value: "5892", string: "$ 112.62 USD" },
- applicationFee: { unit: "USD", value: "5892", string: "$ 2.37 USD" },
+ customerPaid: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
+ netAmount: { unit: "USD", value: "11262", string: "$ 112.62 USD" },
+ applicationFee: { unit: "USD", value: "237", string: "$ 2.37 USD" },
allAddresses: [
{
type: "billing",
@@ -3144,7 +3144,7 @@ describe("OrdersClient", () => {
purchasedItems: [
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ rowTotal: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
productId: "66072fb61b89448912e26791",
productName: "Luxurious Fresh Ball",
productSlug: "luxurious-fresh-ball",
@@ -3155,7 +3155,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2672c_image14.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 55.61 USD" },
+ variantPrice: { unit: "USD", value: "5561", string: "$ 55.61 USD" },
weight: 11,
width: 82,
height: 70,
@@ -3163,7 +3163,7 @@ describe("OrdersClient", () => {
},
{
count: 1,
- rowTotal: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ rowTotal: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
productId: "66072fb61b89448912e26799",
productName: "Recycled Steel Gloves",
productSlug: "recycled-steel-gloves",
@@ -3174,7 +3174,7 @@ describe("OrdersClient", () => {
variantImage: {
url: "https://dev-assets.website-files.com/66072f39417a2a35b2589cc7/66072fb51b89448912e2671e_image2.jpeg",
},
- variantPrice: { unit: "USD", value: "5892", string: "$ 53.44 USD" },
+ variantPrice: { unit: "USD", value: "5344", string: "$ 53.44 USD" },
weight: 38,
width: 76,
height: 85,
@@ -3198,28 +3198,28 @@ describe("OrdersClient", () => {
hasDownloads: false,
paymentProcessor: "stripe",
totals: {
- subtotal: { unit: "USD", value: "5892", string: "$ 109.05 USD" },
+ subtotal: { unit: "USD", value: "10905", string: "$ 109.05 USD" },
extras: [
{
type: "tax",
name: "State Taxes",
description: "NY Taxes (4.00%)",
- price: { unit: "USD", value: "5892", string: "$ 4.36 USD" },
+ price: { unit: "USD", value: "436", string: "$ 4.36 USD" },
},
{
type: "tax",
name: "City Taxes",
description: "NEW YORK Taxes (4.88%)",
- price: { unit: "USD", value: "5892", string: "$ 5.32 USD" },
+ price: { unit: "USD", value: "532", string: "$ 5.32 USD" },
},
{
type: "shipping",
name: "Flat",
description: "",
- price: { unit: "USD", value: "5892", string: "$ 0.00 USD" },
+ price: { unit: "USD", value: "0", string: "$ 0.00 USD" },
},
],
- total: { unit: "USD", value: "5892", string: "$ 118.73 USD" },
+ total: { unit: "USD", value: "11873", string: "$ 118.73 USD" },
},
downloadFiles: [
{
@@ -3253,17 +3253,17 @@ describe("OrdersClient", () => {
disputeLastStatus: "charge_refunded",
customerPaid: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
netAmount: {
unit: "USD",
- value: "5892",
+ value: "11262",
string: "$ 112.62 USD",
},
applicationFee: {
unit: "USD",
- value: "5892",
+ value: "237",
string: "$ 2.37 USD",
},
allAddresses: [
@@ -3324,7 +3324,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
productId: "66072fb61b89448912e26791",
@@ -3339,7 +3339,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5561",
string: "$ 55.61 USD",
},
weight: 11,
@@ -3351,7 +3351,7 @@ describe("OrdersClient", () => {
count: 1,
rowTotal: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
productId: "66072fb61b89448912e26799",
@@ -3366,7 +3366,7 @@ describe("OrdersClient", () => {
},
variantPrice: {
unit: "USD",
- value: "5892",
+ value: "5344",
string: "$ 53.44 USD",
},
weight: 38,
@@ -3408,7 +3408,7 @@ describe("OrdersClient", () => {
totals: {
subtotal: {
unit: "USD",
- value: "5892",
+ value: "10905",
string: "$ 109.05 USD",
},
extras: [
@@ -3418,7 +3418,7 @@ describe("OrdersClient", () => {
description: "NY Taxes (4.00%)",
price: {
unit: "USD",
- value: "5892",
+ value: "436",
string: "$ 4.36 USD",
},
},
@@ -3428,7 +3428,7 @@ describe("OrdersClient", () => {
description: "NEW YORK Taxes (4.88%)",
price: {
unit: "USD",
- value: "5892",
+ value: "532",
string: "$ 5.32 USD",
},
},
@@ -3438,14 +3438,14 @@ describe("OrdersClient", () => {
description: "",
price: {
unit: "USD",
- value: "5892",
+ value: "0",
string: "$ 0.00 USD",
},
},
],
total: {
unit: "USD",
- value: "5892",
+ value: "11873",
string: "$ 118.73 USD",
},
},
diff --git a/tests/wire/sites.test.ts b/tests/wire/sites.test.ts
index de88ff3c..febbdc99 100644
--- a/tests/wire/sites.test.ts
+++ b/tests/wire/sites.test.ts
@@ -19,7 +19,10 @@ describe("SitesClient", () => {
createdOn: "2024-10-15T20:24:38Z",
displayName: "The Hitchiker's Guide",
shortName: "hitchikers-guide",
+ lastPublished: "2024-11-15T20:24:38Z",
lastUpdated: "2024-10-15T20:24:38Z",
+ previewUrl: "https://preview.mysite.com",
+ timeZone: "America/Los_Angeles",
parentFolderId: "670ece123598db72d9648be1",
customDomains: [
{ id: "589a331aa51e760df7ccb89d", url: "test-api-domain.com", lastPublished: "2022-12-07T16:51:37Z" },
@@ -45,7 +48,10 @@ describe("SitesClient", () => {
createdOn: new Date("2024-10-15T20:24:38.000Z"),
displayName: "The Hitchiker's Guide",
shortName: "hitchikers-guide",
+ lastPublished: new Date("2024-11-15T20:24:38.000Z"),
lastUpdated: new Date("2024-10-15T20:24:38.000Z"),
+ previewUrl: "https://preview.mysite.com",
+ timeZone: "America/Los_Angeles",
parentFolderId: "670ece123598db72d9648be1",
customDomains: [
{
@@ -228,7 +234,7 @@ describe("SitesClient", () => {
lastPublished: "2023-04-02T12:42:00Z",
lastUpdated: "2016-10-24T19:43:17Z",
previewUrl: "https://dev-assets.website-files.com/42e63e98c9a982ac9b8b741/197910121200.png",
- timeZone: "DeepSpace/InfiniteImprobability",
+ timeZone: "America/Los_Angeles",
parentFolderId: "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6",
customDomains: [
{
@@ -280,7 +286,7 @@ describe("SitesClient", () => {
lastPublished: "2023-04-02T12:45:00Z",
lastUpdated: "2016-10-24T19:43:17Z",
previewUrl: "https://dev-assets.website-files.com/42e63e98c9a982ac9b8b742/198110121200.png",
- timeZone: "DeepSpace/Depression",
+ timeZone: "America/Los_Angeles",
customDomains: [
{ id: "589a331aa51e760df7ccb89f", url: "marvin.blog", lastPublished: "2022-12-07T16:51:37Z" },
],
@@ -318,7 +324,7 @@ describe("SitesClient", () => {
lastPublished: "2023-04-02T12:50:00Z",
lastUpdated: "2016-10-24T19:43:17Z",
previewUrl: "https://dev-assets.website-files.com/42e63e98c9a982ac9b8b743/198210121200.png",
- timeZone: "Vogsphere/PoetryHall",
+ timeZone: "America/Los_Angeles",
customDomains: [
{
id: "589a331aa51e760df7ccb8a0",
@@ -367,7 +373,7 @@ describe("SitesClient", () => {
lastPublished: new Date("2023-04-02T12:42:00.000Z"),
lastUpdated: new Date("2016-10-24T19:43:17.000Z"),
previewUrl: "https://dev-assets.website-files.com/42e63e98c9a982ac9b8b741/197910121200.png",
- timeZone: "DeepSpace/InfiniteImprobability",
+ timeZone: "America/Los_Angeles",
parentFolderId: "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6",
customDomains: [
{
@@ -419,7 +425,7 @@ describe("SitesClient", () => {
lastPublished: new Date("2023-04-02T12:45:00.000Z"),
lastUpdated: new Date("2016-10-24T19:43:17.000Z"),
previewUrl: "https://dev-assets.website-files.com/42e63e98c9a982ac9b8b742/198110121200.png",
- timeZone: "DeepSpace/Depression",
+ timeZone: "America/Los_Angeles",
customDomains: [
{
id: "589a331aa51e760df7ccb89f",
@@ -461,7 +467,7 @@ describe("SitesClient", () => {
lastPublished: new Date("2023-04-02T12:50:00.000Z"),
lastUpdated: new Date("2016-10-24T19:43:17.000Z"),
previewUrl: "https://dev-assets.website-files.com/42e63e98c9a982ac9b8b743/198210121200.png",
- timeZone: "Vogsphere/PoetryHall",
+ timeZone: "America/Los_Angeles",
customDomains: [
{
id: "589a331aa51e760df7ccb8a0",
@@ -564,7 +570,7 @@ describe("SitesClient", () => {
lastUpdated: "2023-04-02T12:42:00Z",
previewUrl:
"https://screenshots.webflow.com/sites/6258612d1ee792848f805dcf/20231219211811_d5990556c743f33b7071300a03bf67e6.png",
- timeZone: "Magrathea/FactoryFloor",
+ timeZone: "America/Los_Angeles",
parentFolderId: "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6",
customDomains: [
{
@@ -619,7 +625,7 @@ describe("SitesClient", () => {
lastUpdated: new Date("2023-04-02T12:42:00.000Z"),
previewUrl:
"https://screenshots.webflow.com/sites/6258612d1ee792848f805dcf/20231219211811_d5990556c743f33b7071300a03bf67e6.png",
- timeZone: "Magrathea/FactoryFloor",
+ timeZone: "America/Los_Angeles",
parentFolderId: "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6",
customDomains: [
{
@@ -869,7 +875,7 @@ describe("SitesClient", () => {
lastUpdated: "2023-04-02T12:42:00Z",
previewUrl:
"https://screenshots.webflow.com/sites/6258612d1ee792848f805dcf/20231219211811_d5990556c743f33b7071300a03bf67e6.png",
- timeZone: "Magrathea/FactoryFloor",
+ timeZone: "America/Los_Angeles",
parentFolderId: "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6",
customDomains: [
{
@@ -925,7 +931,7 @@ describe("SitesClient", () => {
lastUpdated: new Date("2023-04-02T12:42:00.000Z"),
previewUrl:
"https://screenshots.webflow.com/sites/6258612d1ee792848f805dcf/20231219211811_d5990556c743f33b7071300a03bf67e6.png",
- timeZone: "Magrathea/FactoryFloor",
+ timeZone: "America/Los_Angeles",
parentFolderId: "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6",
customDomains: [
{
diff --git a/yarn.lock b/yarn.lock
index 725e14ac..0c3f3777 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -102,17 +102,17 @@
integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==
"@babel/helpers@^7.28.6":
- version "7.28.6"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.6.tgz#fca903a313ae675617936e8998b814c415cbf5d7"
- integrity sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==
+ version "7.29.2"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.29.2.tgz#9cfbccb02b8e229892c0b07038052cc1a8709c49"
+ integrity sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==
dependencies:
"@babel/template" "^7.28.6"
- "@babel/types" "^7.28.6"
+ "@babel/types" "^7.29.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.28.6", "@babel/parser@^7.29.0":
- version "7.29.0"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.29.0.tgz#669ef345add7d057e92b7ed15f0bac07611831b6"
- integrity sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==
+ version "7.29.2"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.29.2.tgz#58bd50b9a7951d134988a1ae177a35ef9a703ba1"
+ integrity sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==
dependencies:
"@babel/types" "^7.29.0"
@@ -1175,9 +1175,9 @@ base64-js@^1.3.1:
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
baseline-browser-mapping@^2.9.0:
- version "2.10.7"
- resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.7.tgz#2c017adffe4f7bbe93c2e55526cc1869d36f588c"
- integrity sha512-1ghYO3HnxGec0TCGBXiDLVns4eCSx4zJpxnHrlqFQajmhfKMQBzUGDdkMK7fUW7PTHTeLf+j87aTuKuuwWzMGw==
+ version "2.10.10"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.10.tgz#e74bd066724c1d8d7d8ea75fc3be25389a7a5c56"
+ integrity sha512-sUoJ3IMxx4AyRqO4MLeHlnGDkyXRoUG0/AI9fjK+vS72ekpV0yWVY7O0BVjmBcRtkNcsAO2QDZ4tdKKGoI6YaQ==
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
version "4.12.3"
@@ -1349,9 +1349,9 @@ camelcase@^6.2.0:
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-lite@^1.0.30001759:
- version "1.0.30001778"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001778.tgz#79a8a124e3473a20b70616497b987c30d06570a0"
- integrity sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==
+ version "1.0.30001781"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001781.tgz#344b47c03eb8168b79c3c158b872bcfbdd02a400"
+ integrity sha512-RdwNCyMsNBftLjW6w01z8bKEvT6e/5tpPVEgtn22TiLGlstHOVecsX2KHFkD5e/vRnIE4EGzpuIODb3mtswtkw==
chalk@^4.0.0, chalk@^4.1.0:
version "4.1.2"
@@ -1642,9 +1642,9 @@ dunder-proto@^1.0.1:
gopd "^1.2.0"
electron-to-chromium@^1.5.263:
- version "1.5.313"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.313.tgz#193e9ae2c2ab6915acb41e833068381e4ef0b3e4"
- integrity sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==
+ version "1.5.322"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.322.tgz#9c24e49f7098ca19bc87c0e9c7e0ad6ffe4fddca"
+ integrity sha512-vFU34OcrvMcH66T+dYC3G4nURmgfDVewMIu6Q2urXpumAPSMmzvcn04KVVV8Opikq8Vs5nUbO/8laNhNRqSzYw==
elliptic@^6.5.3, elliptic@^6.6.1:
version "6.6.1"
@@ -1670,9 +1670,9 @@ emoji-regex@^8.0.0:
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
enhanced-resolve@^5.0.0, enhanced-resolve@^5.20.0:
- version "5.20.0"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.20.0.tgz#323c2a70d2aa7fb4bdfd6d3c24dfc705c581295d"
- integrity sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==
+ version "5.20.1"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz#eeeb3966bea62c348c40a0cc9e7912e2557d0be0"
+ integrity sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.3.0"
@@ -1973,9 +1973,9 @@ graceful-fs@^4.1.2, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
graphql@^16.8.1:
- version "16.13.1"
- resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.13.1.tgz#38ae5c76fbc4a009e0004dca6c76c370a1da7b54"
- integrity sha512-gGgrVCoDKlIZ8fIqXBBb0pPKqDgki0Z/FSKNiQzSGj2uEYHr1tq5wmBegGwJx6QB5S5cM0khSBpi/JFHMCvsmQ==
+ version "16.13.2"
+ resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.13.2.tgz#4d2b73df5796b201f1bc2765f5d7067f689cb55f"
+ integrity sha512-5bJ+nf/UCpAjHM8i06fl7eLyVC9iuNAjm9qzkiu2ZGhM0VscSvS6WDPfAwkdkBuoXGM9FJSbKl6wylMwP9Ktig==
handlebars@^4.7.8:
version "4.7.8"
@@ -3035,9 +3035,9 @@ picocolors@^1.1.1:
integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
- integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.2.tgz#5a942915e26b372dc0f0e6753149a16e6b1c5601"
+ integrity sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==
pirates@^4.0.4:
version "4.0.7"
@@ -3441,9 +3441,9 @@ symbol-tree@^3.2.4:
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
tapable@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz#7e3ea6d5ca31ba8e078b560f0d83ce9a14aa8be6"
- integrity sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.2.tgz#86755feabad08d82a26b891db044808c6ad00f15"
+ integrity sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==
terser-webpack-plugin@^5.3.17:
version "5.4.0"
@@ -3456,9 +3456,9 @@ terser-webpack-plugin@^5.3.17:
terser "^5.31.1"
terser@^5.31.1:
- version "5.46.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.46.0.tgz#1b81e560d584bbdd74a8ede87b4d9477b0ff9695"
- integrity sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.46.1.tgz#40e4b1e35d5f13130f82793a8b3eeb7ec3a92eee"
+ integrity sha512-vzCjQO/rgUuK9sf8VJZvjqiqiHFaZLnOiimmUuOKODxWL8mm/xua7viT7aqX7dgPY60otQjUotzFMmCB4VdmqQ==
dependencies:
"@jridgewell/source-map" "^0.3.3"
acorn "^8.15.0"
@@ -3474,17 +3474,17 @@ test-exclude@^6.0.0:
glob "^7.1.4"
minimatch "^3.0.4"
-tldts-core@^7.0.25:
- version "7.0.25"
- resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-7.0.25.tgz#eaee57facdfb5528383d961f5586d49784519de5"
- integrity sha512-ZjCZK0rppSBu7rjHYDYsEaMOIbbT+nWF57hKkv4IUmZWBNrBWBOjIElc0mKRgLM8bm7x/BBlof6t2gi/Oq/Asw==
+tldts-core@^7.0.27:
+ version "7.0.27"
+ resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-7.0.27.tgz#4be95bd03b318f2232ea4c1554c4ae9980c77f69"
+ integrity sha512-YQ7uPjgWUibIK6DW5lrKujGwUKhLevU4hcGbP5O6TcIUb+oTjJYJVWPS4nZsIHrEEEG6myk/oqAJUEQmpZrHsg==
tldts@^7.0.5:
- version "7.0.25"
- resolved "https://registry.yarnpkg.com/tldts/-/tldts-7.0.25.tgz#e9034876e09b2ad92db547a9307ae6fa65400f8d"
- integrity sha512-keinCnPbwXEUG3ilrWQZU+CqcTTzHq9m2HhoUP2l7Xmi8l1LuijAXLpAJ5zRW+ifKTNscs4NdCkfkDCBYm352w==
+ version "7.0.27"
+ resolved "https://registry.yarnpkg.com/tldts/-/tldts-7.0.27.tgz#43c3fc6123eb07a3e12ae1868a9f2d1a5889028c"
+ integrity sha512-I4FZcVFcqCRuT0ph6dCDpPuO4Xgzvh+spkcTr1gK7peIvxWauoloVO0vuy1FQnijT63ss6AsHB6+OIM4aXHbPg==
dependencies:
- tldts-core "^7.0.25"
+ tldts-core "^7.0.27"
tmpl@1.0.5:
version "1.0.5"
@@ -3518,9 +3518,9 @@ tough-cookie@^4.1.2:
url-parse "^1.5.3"
tough-cookie@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-6.0.0.tgz#11e418b7864a2c0d874702bc8ce0f011261940e5"
- integrity sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-6.0.1.tgz#a495f833836609ed983c19bc65639cfbceb54c76"
+ integrity sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==
dependencies:
tldts "^7.0.5"
@@ -3794,9 +3794,9 @@ write-file-atomic@^4.0.2:
signal-exit "^3.0.7"
ws@^8.11.0:
- version "8.19.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.19.0.tgz#ddc2bdfa5b9ad860204f5a72a4863a8895fd8c8b"
- integrity sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==
+ version "8.20.0"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.20.0.tgz#4cd9532358eba60bc863aad1623dfb045a4d4af8"
+ integrity sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==
xml-name-validator@^4.0.0:
version "4.0.0"