From 2468530b23edf032deed7921fc87033cee9b4e52 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 14:35:45 +0000 Subject: [PATCH] [fern-generated] Update SDK Generated by Fern CLI Version: unknown Generators: - fernapi/fern-typescript-node-sdk: 3.70.7 --- .fern/metadata.json | 6 +- package.json | 2 +- src/BaseClient.ts | 4 +- .../requests/CheckoutDataRequestBody.ts | 1 + .../requests/PublishPlanVersionRequestBody.ts | 1 + src/api/types/PlanChangeResponseData.ts | 2 + src/api/types/RulesEngineSchemaVersion.ts | 2 +- .../requests/CheckoutDataRequestBody.ts | 2 + .../requests/PublishPlanVersionRequestBody.ts | 2 + .../types/PlanChangeResponseData.ts | 3 + .../types/RulesEngineSchemaVersion.ts | 4 +- tests/wire/accounts.test.ts | 12 +- tests/wire/billing.test.ts | 8 +- tests/wire/companies.test.ts | 48 ++++- tests/wire/components.test.ts | 8 +- tests/wire/credits.test.ts | 44 ++--- tests/wire/entitlements.test.ts | 20 +- tests/wire/features.test.ts | 8 +- tests/wire/planmigrations.test.ts | 8 +- tests/wire/plans.test.ts | 8 +- tests/wire/webhooks.test.ts | 8 +- yarn.lock | 186 +++++++++--------- 22 files changed, 210 insertions(+), 177 deletions(-) diff --git a/.fern/metadata.json b/.fern/metadata.json index aa3b830f..d8ca8e89 100644 --- a/.fern/metadata.json +++ b/.fern/metadata.json @@ -53,10 +53,10 @@ ] } }, - "originGitCommit": "26286134afce586aa5dbd02bffc9f25da6217032", + "originGitCommit": "deb8532a1f84f6daa08b5c611a66a5ec92f53f0e", "originGitCommitIsDirty": false, "invokedBy": "ci", - "requestedVersion": "1.5.2", + "requestedVersion": "1.5.3", "ciProvider": "github", - "sdkVersion": "1.5.2" + "sdkVersion": "1.5.3" } diff --git a/package.json b/package.json index c36b4b5e..4a24a72f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@schematichq/schematic-typescript-node", - "version": "1.5.2", + "version": "1.5.3", "private": false, "repository": { "type": "git", diff --git a/src/BaseClient.ts b/src/BaseClient.ts index 6aefd0cb..fc05abf9 100644 --- a/src/BaseClient.ts +++ b/src/BaseClient.ts @@ -60,8 +60,8 @@ export function normalizeClientOptions = core.serialization.object({ companyId: core.serialization.property("company_id", core.serialization.string()), + currency: core.serialization.string().optional(), selectedPlanId: core.serialization.property("selected_plan_id", core.serialization.string().optional()), }); export declare namespace CheckoutDataRequestBody { export interface Raw { company_id: string; + currency?: string | null; selected_plan_id?: string | null; } } diff --git a/src/serialization/resources/plans/client/requests/PublishPlanVersionRequestBody.ts b/src/serialization/resources/plans/client/requests/PublishPlanVersionRequestBody.ts index ae08525c..3b9a11eb 100644 --- a/src/serialization/resources/plans/client/requests/PublishPlanVersionRequestBody.ts +++ b/src/serialization/resources/plans/client/requests/PublishPlanVersionRequestBody.ts @@ -11,6 +11,7 @@ export const PublishPlanVersionRequestBody: core.serialization.Schema< Schematic.PublishPlanVersionRequestBody > = core.serialization.object({ activationStrategy: core.serialization.property("activation_strategy", CustomPlanActivationStrategy.optional()), + couponExternalId: core.serialization.property("coupon_external_id", core.serialization.string().optional()), customerEmail: core.serialization.property("customer_email", core.serialization.string().optional()), daysUntilDue: core.serialization.property("days_until_due", core.serialization.number().optional()), excludedCompanyIds: core.serialization.property( @@ -23,6 +24,7 @@ export const PublishPlanVersionRequestBody: core.serialization.Schema< export declare namespace PublishPlanVersionRequestBody { export interface Raw { activation_strategy?: CustomPlanActivationStrategy.Raw | null; + coupon_external_id?: string | null; customer_email?: string | null; days_until_due?: number | null; excluded_company_ids: string[]; diff --git a/src/serialization/types/PlanChangeResponseData.ts b/src/serialization/types/PlanChangeResponseData.ts index af402b98..39657130 100644 --- a/src/serialization/types/PlanChangeResponseData.ts +++ b/src/serialization/types/PlanChangeResponseData.ts @@ -7,6 +7,7 @@ import { ActorType } from "./ActorType"; import { ApiKeyResponseData } from "./ApiKeyResponseData"; import { AuditLogListResponseData } from "./AuditLogListResponseData"; import { CompanyResponseData } from "./CompanyResponseData"; +import { IntegrationResponseData } from "./IntegrationResponseData"; import { PlanChangeAction } from "./PlanChangeAction"; import { PlanChangeBasePlanAction } from "./PlanChangeBasePlanAction"; import { PlanChangeSubscriptionAction } from "./PlanChangeSubscriptionAction"; @@ -32,6 +33,7 @@ export const PlanChangeResponseData: core.serialization.ObjectSchema< createdAt: core.serialization.property("created_at", core.serialization.date()), environmentId: core.serialization.property("environment_id", core.serialization.string()), id: core.serialization.string(), + integration: IntegrationResponseData.optional(), isVersionUpgrade: core.serialization.property("is_version_upgrade", core.serialization.boolean()), previousBasePlan: core.serialization.property("previous_base_plan", PlanSnapshotView.optional()), previousBasePlanVersion: core.serialization.property( @@ -65,6 +67,7 @@ export declare namespace PlanChangeResponseData { created_at: string; environment_id: string; id: string; + integration?: IntegrationResponseData.Raw | null; is_version_upgrade: boolean; previous_base_plan?: PlanSnapshotView.Raw | null; previous_base_plan_version?: PlanVersionSnapshotView.Raw | null; diff --git a/src/serialization/types/RulesEngineSchemaVersion.ts b/src/serialization/types/RulesEngineSchemaVersion.ts index 4438b75d..4b20dc14 100644 --- a/src/serialization/types/RulesEngineSchemaVersion.ts +++ b/src/serialization/types/RulesEngineSchemaVersion.ts @@ -7,8 +7,8 @@ import type * as serializers from "../index"; export const RulesEngineSchemaVersion: core.serialization.Schema< serializers.RulesEngineSchemaVersion.Raw, Schematic.RulesEngineSchemaVersion -> = core.serialization.enum_(["v97288f60", "placeholder-for-fern-compatibility"]); +> = core.serialization.enum_(["v5b3e7220", "placeholder-for-fern-compatibility"]); export declare namespace RulesEngineSchemaVersion { - export type Raw = "v97288f60" | "placeholder-for-fern-compatibility"; + export type Raw = "v5b3e7220" | "placeholder-for-fern-compatibility"; } diff --git a/tests/wire/accounts.test.ts b/tests/wire/accounts.test.ts index f2b135c1..313cd754 100644 --- a/tests/wire/accounts.test.ts +++ b/tests/wire/accounts.test.ts @@ -257,7 +257,7 @@ describe("AccountsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { ids: ["ids"], limit: 1000000, offset: 1000000, q: "q" }, }; @@ -277,7 +277,7 @@ describe("AccountsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { ids: ["ids"], @@ -1145,7 +1145,7 @@ describe("AccountsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { environment_id: "environment_id", limit: 1000000, offset: 1000000, require_environment: true }, }; @@ -1159,7 +1159,7 @@ describe("AccountsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { environmentId: "environment_id", @@ -1619,7 +1619,7 @@ describe("AccountsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { actor_type: "api_key", end_time: "2024-01-15T09:30:00Z", @@ -1644,7 +1644,7 @@ describe("AccountsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { actorType: "api_key", diff --git a/tests/wire/billing.test.ts b/tests/wire/billing.test.ts index d9d5c6d6..6008fc51 100644 --- a/tests/wire/billing.test.ts +++ b/tests/wire/billing.test.ts @@ -989,7 +989,7 @@ describe("BillingClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { company_ids: ["company_ids"], limit: 1000000, @@ -1018,7 +1018,7 @@ describe("BillingClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { companyIds: ["company_ids"], @@ -3833,7 +3833,7 @@ describe("BillingClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { ids: ["ids"], is_active: true, @@ -3876,7 +3876,7 @@ describe("BillingClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { ids: ["ids"], diff --git a/tests/wire/companies.test.ts b/tests/wire/companies.test.ts index f31c1d67..1e2a2a1d 100644 --- a/tests/wire/companies.test.ts +++ b/tests/wire/companies.test.ts @@ -2414,7 +2414,7 @@ describe("CompaniesClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { credit_type_ids: ["credit_type_ids"], has_scheduled_downgrade: true, @@ -2465,7 +2465,7 @@ describe("CompaniesClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { creditTypeIds: ["credit_type_ids"], @@ -8797,7 +8797,7 @@ describe("CompaniesClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { entity_type: "company", ids: ["ids"], limit: 1000000, offset: 1000000, q: "q" }, }; @@ -8818,7 +8818,7 @@ describe("CompaniesClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { entityType: "company", @@ -9533,7 +9533,7 @@ describe("CompaniesClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { entity_type: "company", ids: ["ids"], @@ -9564,7 +9564,7 @@ describe("CompaniesClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { entityType: "company", @@ -9861,6 +9861,13 @@ describe("CompaniesClient", () => { created_at: "2024-01-15T09:30:00Z", environment_id: "environment_id", id: "id", + integration: { + created_at: "2024-01-15T09:30:00Z", + id: "id", + state: "active", + type: "clerk", + updated_at: "2024-01-15T09:30:00Z", + }, is_version_upgrade: true, previous_base_plan: { deleted: true, @@ -9972,6 +9979,13 @@ describe("CompaniesClient", () => { createdAt: new Date("2024-01-15T09:30:00.000Z"), environmentId: "environment_id", id: "id", + integration: { + createdAt: new Date("2024-01-15T09:30:00.000Z"), + id: "id", + state: "active", + type: "clerk", + updatedAt: new Date("2024-01-15T09:30:00.000Z"), + }, isVersionUpgrade: true, previousBasePlan: { deleted: true, @@ -10157,6 +10171,13 @@ describe("CompaniesClient", () => { created_at: "2024-01-15T09:30:00Z", environment_id: "environment_id", id: "id", + integration: { + created_at: "2024-01-15T09:30:00Z", + id: "id", + state: "active", + type: "clerk", + updated_at: "2024-01-15T09:30:00Z", + }, is_version_upgrade: true, previous_base_plan: { deleted: true, description: "description", icon: "icon", id: "id", name: "name" }, previous_base_plan_version: { id: "id", name: "name", version: 1000000 }, @@ -10292,6 +10313,13 @@ describe("CompaniesClient", () => { createdAt: new Date("2024-01-15T09:30:00.000Z"), environmentId: "environment_id", id: "id", + integration: { + createdAt: new Date("2024-01-15T09:30:00.000Z"), + id: "id", + state: "active", + type: "clerk", + updatedAt: new Date("2024-01-15T09:30:00.000Z"), + }, isVersionUpgrade: true, previousBasePlan: { deleted: true, @@ -10923,7 +10951,7 @@ describe("CompaniesClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { ids: ["ids"], limit: 1000000, @@ -10946,7 +10974,7 @@ describe("CompaniesClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { ids: ["ids"], @@ -11929,7 +11957,7 @@ describe("CompaniesClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { company_id: "company_id", ids: ["ids"], @@ -11952,7 +11980,7 @@ describe("CompaniesClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { companyId: "company_id", diff --git a/tests/wire/components.test.ts b/tests/wire/components.test.ts index 70865c60..8a30464e 100644 --- a/tests/wire/components.test.ts +++ b/tests/wire/components.test.ts @@ -670,7 +670,7 @@ describe("ComponentsClient", () => { const server = mockServerPool.createServer(); const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); - const rawResponseBody = { data: { count: 1 }, params: { limit: 1000000, offset: 1000000, q: "q" } }; + const rawResponseBody = { data: { count: 1000000 }, params: { limit: 1000000, offset: 1000000, q: "q" } }; server.mockEndpoint().get("/components/count").respondWith().statusCode(200).jsonBody(rawResponseBody).build(); @@ -681,7 +681,7 @@ describe("ComponentsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { limit: 1000000, @@ -1353,7 +1353,7 @@ describe("ComponentsClient", () => { credit_name: "credit_name", grant_reason: "adjustment", id: "id", - quantity: 1000000, + quantity: 1.1, quantity_remaining: 1.1, quantity_used: 1.1, renewal_enabled: true, @@ -2664,7 +2664,7 @@ describe("ComponentsClient", () => { creditName: "credit_name", grantReason: "adjustment", id: "id", - quantity: 1000000, + quantity: 1.1, quantityRemaining: 1.1, quantityUsed: 1.1, renewalEnabled: true, diff --git a/tests/wire/credits.test.ts b/tests/wire/credits.test.ts index cd279f3a..7a4b9eed 100644 --- a/tests/wire/credits.test.ts +++ b/tests/wire/credits.test.ts @@ -2172,7 +2172,7 @@ describe("CreditsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { bundle_type: "fixed", credit_id: "credit_id", @@ -2201,7 +2201,7 @@ describe("CreditsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { bundleType: "fixed", @@ -2314,7 +2314,7 @@ describe("CreditsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { ids: ["ids"], limit: 1000000, name: "name", offset: 1000000 }, }; @@ -2334,7 +2334,7 @@ describe("CreditsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { ids: ["ids"], @@ -2470,7 +2470,7 @@ describe("CreditsClient", () => { provider_type: "metronome", scheme: "per_unit", }, - quantity: 1000000, + quantity: 1.1, quantity_remaining: 1.1, quantity_used: 1.1, renewal_enabled: true, @@ -2533,7 +2533,7 @@ describe("CreditsClient", () => { providerType: "metronome", scheme: "per_unit", }, - quantity: 1000000, + quantity: 1.1, quantityRemaining: 1.1, quantityUsed: 1.1, renewalEnabled: true, @@ -2698,7 +2698,7 @@ describe("CreditsClient", () => { provider_type: "metronome", scheme: "per_unit", }, - quantity: 1000000, + quantity: 1.1, quantity_remaining: 1.1, quantity_used: 1.1, renewal_enabled: true, @@ -2766,7 +2766,7 @@ describe("CreditsClient", () => { providerType: "metronome", scheme: "per_unit", }, - quantity: 1000000, + quantity: 1.1, quantityRemaining: 1.1, quantityUsed: 1.1, renewalEnabled: true, @@ -2951,7 +2951,7 @@ describe("CreditsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { company_id: "company_id", dir: "asc", limit: 1000000, offset: 1000000, order: "created_at" }, }; @@ -2972,7 +2972,7 @@ describe("CreditsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { companyId: "company_id", @@ -3108,7 +3108,7 @@ describe("CreditsClient", () => { provider_type: "metronome", scheme: "per_unit", }, - quantity: 1000000, + quantity: 1.1, quantity_remaining: 1.1, quantity_used: 1.1, renewal_enabled: true, @@ -3176,7 +3176,7 @@ describe("CreditsClient", () => { providerType: "metronome", scheme: "per_unit", }, - quantity: 1000000, + quantity: 1.1, quantityRemaining: 1.1, quantityUsed: 1.1, renewalEnabled: true, @@ -3311,7 +3311,7 @@ describe("CreditsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { credit_id: "credit_id", ids: ["ids"], limit: 1000000, offset: 1000000 }, }; @@ -3331,7 +3331,7 @@ describe("CreditsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { creditId: "credit_id", @@ -3466,7 +3466,7 @@ describe("CreditsClient", () => { provider_type: "metronome", scheme: "per_unit", }, - quantity: 1000000, + quantity: 1.1, quantity_remaining: 1.1, quantity_used: 1.1, renewal_enabled: true, @@ -3533,7 +3533,7 @@ describe("CreditsClient", () => { providerType: "metronome", scheme: "per_unit", }, - quantity: 1000000, + quantity: 1.1, quantityRemaining: 1.1, quantityUsed: 1.1, renewalEnabled: true, @@ -5386,7 +5386,7 @@ describe("CreditsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { credit_id: "credit_id", ids: ["ids"], @@ -5419,7 +5419,7 @@ describe("CreditsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { creditId: "credit_id", @@ -5556,7 +5556,7 @@ describe("CreditsClient", () => { from_grant_id: "from_grant_id", grant_expires_at: "2024-01-15T09:30:00Z", grant_id: "grant_id", - grant_quantity: 1000000, + grant_quantity: 1.1, grant_quantity_remaining: 1.1, grant_reason: "adjustment", grant_valid_from: "2024-01-15T09:30:00Z", @@ -5632,7 +5632,7 @@ describe("CreditsClient", () => { fromGrantId: "from_grant_id", grantExpiresAt: new Date("2024-01-15T09:30:00.000Z"), grantId: "grant_id", - grantQuantity: 1000000, + grantQuantity: 1.1, grantQuantityRemaining: 1.1, grantReason: "adjustment", grantValidFrom: new Date("2024-01-15T09:30:00.000Z"), @@ -5769,7 +5769,7 @@ describe("CreditsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { billing_credit_id: "billing_credit_id", company_id: "company_id", @@ -5802,7 +5802,7 @@ describe("CreditsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { billingCreditId: "billing_credit_id", diff --git a/tests/wire/entitlements.test.ts b/tests/wire/entitlements.test.ts index 1a090d2d..c4b06e48 100644 --- a/tests/wire/entitlements.test.ts +++ b/tests/wire/entitlements.test.ts @@ -3075,7 +3075,7 @@ describe("EntitlementsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { company_id: "company_id", company_ids: ["company_ids"], @@ -3110,7 +3110,7 @@ describe("EntitlementsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { companyId: "company_id", @@ -4122,7 +4122,7 @@ describe("EntitlementsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { feature_id: "feature_id", limit: 1000000, offset: 1000000, q: "q" }, }; @@ -4142,7 +4142,7 @@ describe("EntitlementsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { featureId: "feature_id", @@ -4964,7 +4964,7 @@ describe("EntitlementsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { company_id: "company_id", company_keys: { key: "value" }, @@ -4998,7 +4998,7 @@ describe("EntitlementsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { companyId: "company_id", @@ -5801,7 +5801,7 @@ describe("EntitlementsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { feature_id: "feature_id", limit: 1000000, offset: 1000000, q: "q" }, }; @@ -5821,7 +5821,7 @@ describe("EntitlementsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { featureId: "feature_id", @@ -8628,7 +8628,7 @@ describe("EntitlementsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { feature_id: "feature_id", feature_ids: ["feature_ids"], @@ -8667,7 +8667,7 @@ describe("EntitlementsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { featureId: "feature_id", diff --git a/tests/wire/features.test.ts b/tests/wire/features.test.ts index 8bb9c1c3..96565f2a 100644 --- a/tests/wire/features.test.ts +++ b/tests/wire/features.test.ts @@ -2000,7 +2000,7 @@ describe("FeaturesClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { boolean_require_event: true, feature_type: ["boolean"], @@ -2031,7 +2031,7 @@ describe("FeaturesClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { booleanRequireEvent: true, @@ -5184,7 +5184,7 @@ describe("FeaturesClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { feature_id: "feature_id", ids: ["ids"], limit: 1000000, offset: 1000000, q: "q" }, }; @@ -5199,7 +5199,7 @@ describe("FeaturesClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { featureId: "feature_id", diff --git a/tests/wire/planmigrations.test.ts b/tests/wire/planmigrations.test.ts index 662e3882..dce43932 100644 --- a/tests/wire/planmigrations.test.ts +++ b/tests/wire/planmigrations.test.ts @@ -318,7 +318,7 @@ describe("PlanmigrationsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { limit: 1000000, migration_id: "migration_id", offset: 1000000, q: "q", status: "completed" }, }; @@ -339,7 +339,7 @@ describe("PlanmigrationsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { limit: 1000000, @@ -1184,7 +1184,7 @@ describe("PlanmigrationsClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { limit: 1000000, offset: 1000000, plan_version_id: "plan_version_id", status: "completed" }, }; @@ -1204,7 +1204,7 @@ describe("PlanmigrationsClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { limit: 1000000, diff --git a/tests/wire/plans.test.ts b/tests/wire/plans.test.ts index c5c46010..b6ea8578 100644 --- a/tests/wire/plans.test.ts +++ b/tests/wire/plans.test.ts @@ -6136,7 +6136,7 @@ describe("PlansClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { limit: 1000000, offset: 1000000, plan_id: "plan_id", q: "q" }, }; @@ -6156,7 +6156,7 @@ describe("PlansClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { limit: 1000000, @@ -6277,7 +6277,7 @@ describe("PlansClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { company_id: "company_id", company_scoped_only: true, @@ -6322,7 +6322,7 @@ describe("PlansClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { companyId: "company_id", diff --git a/tests/wire/webhooks.test.ts b/tests/wire/webhooks.test.ts index f6702452..88535cf9 100644 --- a/tests/wire/webhooks.test.ts +++ b/tests/wire/webhooks.test.ts @@ -303,7 +303,7 @@ describe("WebhooksClient", () => { const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); const rawResponseBody = { - data: { count: 1 }, + data: { count: 1000000 }, params: { ids: ["ids"], limit: 1000000, offset: 1000000, q: "q", webhook_id: "webhook_id" }, }; @@ -324,7 +324,7 @@ describe("WebhooksClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { ids: ["ids"], @@ -1309,7 +1309,7 @@ describe("WebhooksClient", () => { const server = mockServerPool.createServer(); const client = new SchematicClient({ maxRetries: 0, apiKey: "test", environment: server.baseUrl }); - const rawResponseBody = { data: { count: 1 }, params: { limit: 1000000, offset: 1000000, q: "q" } }; + const rawResponseBody = { data: { count: 1000000 }, params: { limit: 1000000, offset: 1000000, q: "q" } }; server.mockEndpoint().get("/webhooks/count").respondWith().statusCode(200).jsonBody(rawResponseBody).build(); @@ -1320,7 +1320,7 @@ describe("WebhooksClient", () => { }); expect(response).toEqual({ data: { - count: 1, + count: 1000000, }, params: { limit: 1000000, diff --git a/yarn.lock b/yarn.lock index d6633aeb..12aea7e2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -338,30 +338,30 @@ dependencies: statuses "^2.0.1" -"@cloudflare/workerd-darwin-64@1.20260617.1": - version "1.20260617.1" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260617.1.tgz#88582f9d662ea61839632ada60fc97dbc6a47435" - integrity sha512-jWwmgEVVWbsHNrLSNXzwjJaH90VzRxq1cWkQFUidxyeUPnMxemeNE8I9qFAfrpzGgE11e9sKDcE3ettJW08swQ== - -"@cloudflare/workerd-darwin-arm64@1.20260617.1": - version "1.20260617.1" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260617.1.tgz#a3946057489c11e15cfa58517a7ee3791c1cc9d9" - integrity sha512-LHH7b565g9znfCUOkwbec6FG2rmRbsgCy6aJiU9KN662mNheWl5sw/iKleiFSiljPKQQP3HkjnC/NSkdgi/aSA== - -"@cloudflare/workerd-linux-64@1.20260617.1": - version "1.20260617.1" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260617.1.tgz#3a621cb652b7ea62d84f69ed1c30d4c85b2d6d4d" - integrity sha512-FMnaAKXe4Cfd8TQurCVd9fs2XQVBFRCsP+Id/SRdUv89MlwYu9zXfoyx6BxM+brPTIUK38SHbo8iaxiwzLi9JQ== - -"@cloudflare/workerd-linux-arm64@1.20260617.1": - version "1.20260617.1" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260617.1.tgz#f30038c11fb71a592f0adba86559ab0af63f2808" - integrity sha512-MRoifFYcqbxxIIQy7PqO5tFY/qPFSnjXzakWl0sO93l+HLyG35jRAgOi6jfqa4kBxc7gKKtH861DcewjxUfkjA== - -"@cloudflare/workerd-windows-64@1.20260617.1": - version "1.20260617.1" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260617.1.tgz#0e6b42e24dcad3f5114e9131a96e010c0095a846" - integrity sha512-rgBV9wQrv0OSKgCTTbhFUFY3sLGNANZ88aqaLvtmEn2gmbFVb1J4PDGochVUdB7NSEp4D/ghHva6/8SZmbONpw== +"@cloudflare/workerd-darwin-64@1.20260625.1": + version "1.20260625.1" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260625.1.tgz#848268aaf751867b3ce290560453b37db7ce0751" + integrity sha512-naCfBv0WnnTQIQPTniqMoUlklOIFjrAcSn1X+IAOhY8aFLF/xGYtFjs1eEE8sFib3ZuChGGpU23FFORVczqr0A== + +"@cloudflare/workerd-darwin-arm64@1.20260625.1": + version "1.20260625.1" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260625.1.tgz#642cb1b30e17bdad4ec2ff620d5ed2f064006c93" + integrity sha512-jmH6zjp6Wrux46+qtFwDwrj+vd7s5bdwEqeGvdnwE0a4IEeAhKs0L42HQOyID+g5lkrHq9m55+AbhtmRAm63Pw== + +"@cloudflare/workerd-linux-64@1.20260625.1": + version "1.20260625.1" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260625.1.tgz#2c8257889ffc50ab50ffcdb09a1360419e510bd7" + integrity sha512-MiQkpA/dX8d83Zp64pzHUKfd6ca4cvwxnNobSP6CnXvfESvnNI9pfa+nfwnParla36sPmnYntNkjR7NjRuDeKQ== + +"@cloudflare/workerd-linux-arm64@1.20260625.1": + version "1.20260625.1" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260625.1.tgz#208697b86ae4018c495232df9c039c6f08582b5d" + integrity sha512-LxxW7Qv60Xvv37+w6gUSDpYZziyqMy+cZWd9IvSA5ehVgKAxmzEaYPMiSZlxk32nbIWL9u/tfjXYCOKJ4Lo+XQ== + +"@cloudflare/workerd-windows-64@1.20260625.1": + version "1.20260625.1" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260625.1.tgz#3731787487ae5ea731f71ace736ff5f10bcb76ee" + integrity sha512-LH6iIX1HHaTwVKV5VokDxxUErXJzQoNZFRwVm7Vx/3fB/ApcTcRCUaMqcxI4as94jEUqg+pmX5czOndiveohow== "@cspotcode/source-map-support@0.8.1": version "0.8.1" @@ -1168,9 +1168,9 @@ form-data "^4.0.4" "@types/node@*": - version "26.0.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-26.0.0.tgz#d4aece9e9412e9f2008d59bc2d74f5279316b665" - integrity sha512-vf2YFi1iY9lHGwNJMs01biZFbKJkrZR1T6/MlzjhJLPdntOHLhTrDSnSVcdtvjihi4VQNlrFRIxLsDBlQpAipA== + version "26.0.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-26.0.1.tgz#4a60e2c7a6d68bd261e265f8983bfe1601263ce3" + integrity sha512-fc3KiUoBt6kie0N9bIW3E47vZsuaMf0PM2AaUpLCLT0s/LvX1nxAim6Fc049cNxODPpGm6qRAuUOB86SkRuPQw== dependencies: undici-types "~8.3.0" @@ -1539,9 +1539,9 @@ base64-js@^1.3.1: integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== baseline-browser-mapping@^2.10.38: - version "2.10.38" - resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.38.tgz#c84d093c4bf7325c5053c279d90f153c66526042" - integrity sha512-31/02mVB4yuQU6adKk5SlY6m+mxDwUq5KZkyYgnLrrKl7TEm1+3PyDtDBz2kOv/wxZz41GHsvV1A/u6RmiyBvw== + version "2.10.40" + resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.40.tgz#f372c8eb36ff4ad0b5e7ae467014abef124554ba" + integrity sha512-BSSLZ9/Cjjv7Gtj5B68ZzXcXUg8iOf3fme+FCuh8rC/Go+Kmh8cox7M3A8dolou16s64QjLPOSdngh7GxXvkSw== brace-expansion@^1.1.7: version "1.1.15" @@ -1620,9 +1620,9 @@ camelcase@^6.2.0: integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001799: - version "1.0.30001799" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz#5c909138c27f1a61219d3e092071c1cc7d32dc55" - integrity sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw== + version "1.0.30001800" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001800.tgz#b896c773e1c39400809415162bb5320371291b36" + integrity sha512-MMHtuAz9Ys840zAY5F4k6fV5GaivZ9sPk+nz0mY+GYVzRBnYkN0mpqkSR92oWRQ19yQWo4HvBV/FnC16AJX8MA== chalk@^4.0.0, chalk@^4.1.0: version "4.1.2" @@ -1832,9 +1832,9 @@ dunder-proto@^1.0.1: gopd "^1.2.0" electron-to-chromium@^1.5.376: - version "1.5.376" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.376.tgz#16a9d4b72cb16c416aa73a879d92b047b96797ac" - integrity sha512-cUVA7/RvbFTEuw/i3obUwDTRIXojaxkResf+ibByPFxjc6XK3VNtcQXV0NSbAlJ0FMjcJGgftVVB4Qo184EXvA== + version "1.5.382" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.382.tgz#e76f05d3ec337524b9c61761ebbc16fe91ecf5b4" + integrity sha512-8ETaWbV6SZOrno+G93Ffd9ENsMtetqdnqj4nlfxFW90Sm5GgnuV28Kf62hqQVD6VUgzm7qFQKsTsAPmeUiU3Ug== emittery@^0.13.1: version "0.13.1" @@ -1846,10 +1846,10 @@ emoji-regex@^8.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -enhanced-resolve@^5.22.0: - version "5.24.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.24.0.tgz#cf14b9768a774cb6a5087220c0dc6e55df6ec35a" - integrity sha512-SkE2t82KlkkxQRVMVLAGKxLfORGQfrkx5dkj+vlgXRVNEdPc4eZcR+J/Fvj8C+yKSFH5L0q3NFlyufOVQnCcYQ== +enhanced-resolve@^5.22.2: + version "5.24.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.24.1.tgz#b2439adf5d31d7e4764de1f9ecf942d6cd3fc874" + integrity sha512-7DdUaTjmNwMcH2gLr1qycesKII3BK4RLy/mdAb7x10Lq7bR4aNKHt1BR1ZALSv0rPM/hF5wYF0PhGop/rJm8vw== dependencies: graceful-fs "^4.2.4" tapable "^2.3.3" @@ -1882,9 +1882,9 @@ es-errors@^1.3.0: integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== es-module-lexer@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-2.1.0.tgz#1dfcbb5ea3bbfb63f28e1fc3676c3676d1c9624c" - integrity sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ== + version "2.2.0" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-2.2.0.tgz#fe824f12e3f28bde741bb572b5a182786eaf3764" + integrity sha512-3lGxdTXCLfe1MYfTz1y2ksAAUM4NAOP6rPEjxGJVKO7TZ5+tvHCaQWGpC4Y3IXvW3ece0Cz1cIP4FWBxOnGCTQ== es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: version "1.1.2" @@ -2043,9 +2043,9 @@ fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.1.0: integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-uri@^3.0.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.1.2.tgz#8af3d4fc9d3e71b11572cc2673b514a7d1a8c8ec" - integrity sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ== + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.1.3.tgz#f695a40f006aba505631573a0021ddb21194ad11" + integrity sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg== fb-watchman@^2.0.0: version "2.0.2" @@ -2149,11 +2149,6 @@ get-stream@^6.0.0: resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - glob@^7.1.3, glob@^7.1.4: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" @@ -2781,9 +2776,9 @@ js-tokens@^4.0.0: integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@^3.13.1: - version "3.14.2" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.2.tgz#77485ce1dd7f33c061fd1b16ecea23b55fcb04b0" - integrity sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg== + version "3.15.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.15.0.tgz#586e5214eafe3e893756a41e979b50d89d3e4a67" + integrity sha512-ttBQIIQPDeLjpPOohtUdXuXUVoA2uIB6fEH9HyJ7234s5mBJ5wTx20njxplLZQgLaOfpmPQA7X2t5AX6tIPbog== dependencies: argparse "^1.0.7" esprima "^4.0.0" @@ -2944,14 +2939,14 @@ mimic-fn@^2.1.0: integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== miniflare@^4.20260421.0: - version "4.20260617.1" - resolved "https://registry.yarnpkg.com/miniflare/-/miniflare-4.20260617.1.tgz#a5cf3d80e23ff55d0cf19b04aed314bb33cc0f3e" - integrity sha512-Go3/gzStm99QHptsSgU+q1S+xDfLoRgwjJNY80kaTVi0ENhTyqKq+sc4xZiWBSbM7uUcJwmzm8+QFKtcYLJ9nw== + version "4.20260625.0" + resolved "https://registry.yarnpkg.com/miniflare/-/miniflare-4.20260625.0.tgz#22d2a9494b6c8f52f64ba40fb65e254933491ed4" + integrity sha512-3kKXwRUObJsnBYPBgR0NiNZYKF/yv8GFyha1cx2EeAEraxNODgRVcyeRo+F1ok1tg5Mg7iUpOWSkknQTHuFhwA== dependencies: "@cspotcode/source-map-support" "0.8.1" sharp "0.34.5" undici "7.28.0" - workerd "1.20260617.1" + workerd "1.20260625.1" ws "8.21.0" youch "4.1.0-beta.10" @@ -2967,6 +2962,16 @@ minimist@^1.2.5: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== +minimizer-webpack-plugin@^5.6.1: + version "5.6.1" + resolved "https://registry.yarnpkg.com/minimizer-webpack-plugin/-/minimizer-webpack-plugin-5.6.1.tgz#289922a4c96c4ed1ddb76b8a00bd8074e89a2f7f" + integrity sha512-DoeAZz8Q1C1znwsUzej1fdoi4jCf7/+Em27ouLqfK/+3m8G+D7yDhUwrc3CNhjSzGUN1kn7Iv4sWmjflQHenpw== + dependencies: + "@jridgewell/trace-mapping" "^0.3.25" + jest-worker "^27.4.5" + schema-utils "^4.3.0" + terser "^5.31.1" + ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" @@ -3025,9 +3030,9 @@ node-int64@^0.4.0: integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== node-releases@^2.0.48: - version "2.0.48" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.48.tgz#4da73d040ada751fc9959d993f27de48792e3b7d" - integrity sha512-1uz8041X6LoI6ZSdZacM9lVY28vuzDlSKitnpbSNK0RfKoIJkX29NBPVEFXhnuSuEOA9Ww0xnPJ+ILWbGAv8DA== + version "2.0.50" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.50.tgz#597197a852071ce42fc2550e58e223242bcba969" + integrity sha512-J6l92tKHX6w8Jy5nO1Vuc01NoIiRGi/d6qBKVxh+IQ8Cr3b6HbVNfKiF8ZpFKufTwpwxMmce2W3iQZ861ZRyTg== normalize-path@^3.0.0: version "3.0.0" @@ -3510,16 +3515,6 @@ tapable@^2.3.0, tapable@^2.3.3: resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.3.tgz#5da7c9992c46038221267985ab28421a8879f160" integrity sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A== -terser-webpack-plugin@^5.5.0: - version "5.6.1" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.6.1.tgz#47bc41bd8b8fab8383b62ec763b7394829097e7b" - integrity sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ== - dependencies: - "@jridgewell/trace-mapping" "^0.3.25" - jest-worker "^27.4.5" - schema-utils "^4.3.0" - terser "^5.31.1" - terser@^5.31.1: version "5.48.0" resolved "https://registry.yarnpkg.com/terser/-/terser-5.48.0.tgz#8b391171cfbb7ac4a88f9f04ba1cfabc54f643db" @@ -3539,17 +3534,17 @@ test-exclude@^6.0.0: glob "^7.1.4" minimatch "^3.0.4" -tldts-core@^7.4.3: - version "7.4.3" - resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-7.4.3.tgz#d43401c0499cd884eeaf1ccf073df841a1e4e2dd" - integrity sha512-27ep5H9PzdBrNd5OFM/j3WCU8F3kPwM9D0BOaOf7uYfxMJfyr0K5Tjj69Gri+sZlh2WXd5buIm47NuPF29CDiw== +tldts-core@^7.4.5: + version "7.4.5" + resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-7.4.5.tgz#4d1a77adbf274206be79e9d5fd602089a4e99c72" + integrity sha512-pGrwzZDvPwKe+7NNUqAunb6rqTfynr0VOUhCMdqbu5xlvNiszsAJygRzwvpVycdzejlbpY+SWJOn+s75Og7FEA== tldts@^7.0.5: - version "7.4.3" - resolved "https://registry.yarnpkg.com/tldts/-/tldts-7.4.3.tgz#536c93aecffc96d41ce5627a4b7e12f9c2cfceb5" - integrity sha512-A3BDQBeeukYPzB4QdQ1DtdlUmp4x2OCH8n5UVhEWbyANxNep8GavottKzd1xYKFJKjUgMyPT7EzOfnBO55s8Sg== + version "7.4.5" + resolved "https://registry.yarnpkg.com/tldts/-/tldts-7.4.5.tgz#19648239527391393b49f0ae5eccc418f638deec" + integrity sha512-RfEzKWcq5fHUOFq7J3rl3Oz6ylKGtcHqUznzj4EcXsxLSIjJcvpbXAQtWGeJQ0xKnimR5e0Cn+cn9TssfMzm+g== dependencies: - tldts-core "^7.4.3" + tldts-core "^7.4.5" tmpl@1.0.5: version "1.0.5" @@ -3705,7 +3700,7 @@ walker@^1.0.8: dependencies: makeerror "1.0.12" -watchpack@^2.5.1: +watchpack@^2.5.2: version "2.5.2" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.5.2.tgz#e12e82d84674266fc1c6dbfe38891b92ff0522ec" integrity sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg== @@ -3728,9 +3723,9 @@ webpack-sources@^3.5.0: integrity sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ== webpack@^5.105.4: - version "5.107.2" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.107.2.tgz#dea14dcb177b46b29de15f952f7303691ee2b596" - integrity sha512-v7RhXaJbpMlV0D7hC7lb2EbnxkoeUqf9qhKr6lozx3Q48pmFrqqNRmZFUEGmi7pSwm6fCQ2H1IjvCkHqdpVdjQ== + version "5.108.3" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.108.3.tgz#39be3baba294fa9d93487199b8c7e3ce742d3498" + integrity sha512-hOpaCHmQVVY66IVTjofnH14IgSdmod2aquSGHGuYig/OIdWge01Hk2Wt988DZcwXumFUT4+FvJY5N+ikl8o/ww== dependencies: "@types/estree" "^1.0.8" "@types/json-schema" "^7.0.15" @@ -3741,19 +3736,18 @@ webpack@^5.105.4: acorn-import-phases "^1.0.3" browserslist "^4.28.1" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.22.0" + enhanced-resolve "^5.22.2" es-module-lexer "^2.1.0" eslint-scope "5.1.1" events "^3.2.0" - glob-to-regexp "^0.4.1" graceful-fs "^4.2.11" loader-runner "^4.3.2" mime-db "^1.54.0" + minimizer-webpack-plugin "^5.6.1" neo-async "^2.6.2" schema-utils "^4.3.3" tapable "^2.3.0" - terser-webpack-plugin "^5.5.0" - watchpack "^2.5.1" + watchpack "^2.5.2" webpack-sources "^3.5.0" whatwg-encoding@^2.0.0: @@ -3796,16 +3790,16 @@ wordwrap@^1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== -workerd@1.20260617.1: - version "1.20260617.1" - resolved "https://registry.yarnpkg.com/workerd/-/workerd-1.20260617.1.tgz#74fe769938f4b8ea3b465b98a26fff33ca7b35f3" - integrity sha512-Re5pl6pdowt3ZmWUzGlOuB7jbRIIPetgKalmo4cYmucQnVhpo7/3e4MfpekbhLi2EhZZz5EY9NWRu8zFzuEZew== +workerd@1.20260625.1: + version "1.20260625.1" + resolved "https://registry.yarnpkg.com/workerd/-/workerd-1.20260625.1.tgz#0cd4780ee3f2182c1680a7dffd9742eee076504b" + integrity sha512-GApQvFX52SDM6L4u0+RRnUDB1wJOnEwoXjinkmOPtIyofWBxrlZckdegJSYc1leg++lLZ3+DQ4zMVmBqYVtzfA== optionalDependencies: - "@cloudflare/workerd-darwin-64" "1.20260617.1" - "@cloudflare/workerd-darwin-arm64" "1.20260617.1" - "@cloudflare/workerd-linux-64" "1.20260617.1" - "@cloudflare/workerd-linux-arm64" "1.20260617.1" - "@cloudflare/workerd-windows-64" "1.20260617.1" + "@cloudflare/workerd-darwin-64" "1.20260625.1" + "@cloudflare/workerd-darwin-arm64" "1.20260625.1" + "@cloudflare/workerd-linux-64" "1.20260625.1" + "@cloudflare/workerd-linux-arm64" "1.20260625.1" + "@cloudflare/workerd-windows-64" "1.20260625.1" wrap-ansi@^6.2.0: version "6.2.0"