diff --git a/.fern/metadata.json b/.fern/metadata.json index b5cc660b..48390c0a 100644 --- a/.fern/metadata.json +++ b/.fern/metadata.json @@ -34,6 +34,6 @@ } } }, - "originGitCommit": "f0174d404a2635415e858ef151cf9202df3e3d02", + "originGitCommit": "90425b79d9cb0ed3abfd0e7c76956b0cf68b8b81", "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/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/yarn.lock b/yarn.lock index 725e14ac..335d14ec 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.321" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.321.tgz#57a80554e2e7fd65e3689d320f52a64723472d5d" + integrity sha512-L2C7Q279W2D/J4PLZLk7sebOILDSWos7bMsMNN06rK482umHUrh/3lM8G7IlHFOYip2oAg5nha1rCMxr/rs6ZQ== 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" @@ -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.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.1.tgz#545d994d143f0d970dc6113a9dbecfa1ad1c7bff" + integrity sha512-b+u3CEM6FjDHru+nhUSjDofpWSBp2rINziJWgApm72wwGasQ/wKXftZe4tI2Y5HPv6OpzXSZHOFq87H4vfsgsw== 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"