From a917ec585ee90a6f55ea68423871e839cda4bd73 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 05:03:37 +0000 Subject: [PATCH] [fern-generated] Update SDK Generated by Fern CLI Version: unknown Generators: - fernapi/fern-typescript-sdk: 3.66.5 --- .fern/replay.lock | 10 + .fernignore | 5 +- .gitattributes | 1 + src/management/api/requests/requests.ts | 25 +- .../users/resources/roles/client/Client.ts | 9 + src/management/api/types/types.ts | 102 +++++++- .../tests/wire/resourceServers.test.ts | 4 + .../wire/users/authenticationMethods.test.ts | 10 + src/management/tests/wire/users/roles.test.ts | 42 ++- yarn.lock | 240 +++++++++--------- 10 files changed, 320 insertions(+), 128 deletions(-) create mode 100644 .fern/replay.lock create mode 100644 .gitattributes diff --git a/.fern/replay.lock b/.fern/replay.lock new file mode 100644 index 0000000000..44510b5f38 --- /dev/null +++ b/.fern/replay.lock @@ -0,0 +1,10 @@ +# DO NOT EDIT MANUALLY - Managed by Fern Replay +version: "1.0" +generations: + - commit_sha: a7ff7c0f098c10c81b49de0e3024d0e645a16359 + tree_hash: 29fcbbd3fe86fe216c9a65b8819538f9226d544b + timestamp: 2026-05-12T05:03:34.426Z + cli_version: unknown + generator_versions: {} +current_generation: a7ff7c0f098c10c81b49de0e3024d0e645a16359 +patches: [] diff --git a/.fernignore b/.fernignore index 54eb941da2..76e5061160 100644 --- a/.fernignore +++ b/.fernignore @@ -48,4 +48,7 @@ eslint.config.mjs .prettierignore CONTRIBUTING.md -.fern/ \ No newline at end of file +.fern/ +.fern/replay.lock +.fern/replay.yml +.gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..74928d6a47 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +.fern/replay.lock linguist-generated=true diff --git a/src/management/api/requests/requests.ts b/src/management/api/requests/requests.ts index 65a1d8687e..3aa721d8c0 100644 --- a/src/management/api/requests/requests.ts +++ b/src/management/api/requests/requests.ts @@ -1312,6 +1312,8 @@ export interface RevokeRefreshTokensRequestContent { user_id?: string; /** Revoke all refresh tokens for this client. */ client_id?: string; + /** Resource server identifier (audience) to scope the revocation. Must be used with both `user_id` and `client_id`. */ + audience?: string; } /** @@ -1366,6 +1368,8 @@ export interface CreateResourceServerRequestContent { allow_offline_access?: boolean; /** Whether Online Refresh Tokens can be issued for this API (true) or not (false). */ allow_online_access?: boolean; + /** Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). */ + allow_online_access_with_ephemeral_sessions?: boolean; /** Expiration value (in seconds) for access tokens issued for this API from the token endpoint. */ token_lifetime?: number; token_dialect?: Management.ResourceServerTokenDialectSchemaEnum; @@ -1410,6 +1414,8 @@ export interface UpdateResourceServerRequestContent { allow_offline_access?: boolean; /** Whether Online Refresh Tokens can be issued for this API (true) or not (false). */ allow_online_access?: boolean; + /** Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). */ + allow_online_access_with_ephemeral_sessions?: boolean; /** Expiration value (in seconds) for access tokens issued for this API from the token endpoint. */ token_lifetime?: number; token_dialect?: Management.ResourceServerTokenDialectSchemaEnum; @@ -1665,7 +1671,7 @@ export interface VerifyEmailTicketRequestContent { * {} */ export interface ChangePasswordTicketRequestContent { - /** URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using client_id or organization_id. */ + /** URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using organization_id. May be specified together with client_id when the tenant has a custom password reset page enabled and a password-reset-post-challenge Action bound. */ result_url?: string; /** user_id of for whom the ticket should be created. */ user_id?: string; @@ -3747,12 +3753,25 @@ export interface CreateUserAuthenticationMethodRequestContent { /** Applies to email authentication methods only. The email address used to send verification messages. */ email?: string; preferred_authentication_method?: Management.PreferredAuthenticationMethodEnum; - /** Applies to webauthn authentication methods only. The id of the credential. */ + /** Applies to webauthn/passkey authentication methods only. The id of the credential. */ key_id?: string; - /** Applies to webauthn authentication methods only. The public key, which is encoded as base64. */ + /** Applies to webauthn/passkey authentication methods only. The public key, which is encoded as base64. */ public_key?: string; + /** Applies to passkeys only. Authenticator Attestation Globally Unique Identifier */ + aaguid?: string; /** Applies to webauthn authentication methods only. The relying party identifier. */ relying_party_identifier?: string; + credential_device_type?: Management.CredentialDeviceTypeEnum; + /** Applies to passkeys only. Whether the credential was backed up. */ + credential_backed_up?: boolean; + /** Applies to passkeys only. The ID of the user identity linked with the authentication method. */ + identity_user_id?: string; + /** Applies to passkeys only. The user-agent of the browser used to create the passkey. */ + user_agent?: string; + /** Applies to passkeys only. The user handle of the user identity. */ + user_handle?: string; + /** Applies to passkeys only. The transports used by clients to communicate with the authenticator. */ + transports?: string[]; } /** diff --git a/src/management/api/resources/users/resources/roles/client/Client.ts b/src/management/api/resources/users/resources/roles/client/Client.ts index 8a146d7b18..caf8686bd5 100644 --- a/src/management/api/resources/users/resources/roles/client/Client.ts +++ b/src/management/api/resources/users/resources/roles/client/Client.ts @@ -31,8 +31,10 @@ export class RolesClient { * @param {Management.ListUserRolesRequestParameters} request * @param {RolesClient.RequestOptions} requestOptions - Request-specific configuration. * + * @throws {@link Management.BadRequestError} * @throws {@link Management.UnauthorizedError} * @throws {@link Management.ForbiddenError} + * @throws {@link Management.NotFoundError} * @throws {@link Management.TooManyRequestsError} * * @example @@ -91,6 +93,11 @@ export class RolesClient { } if (_response.error.reason === "status-code") { switch (_response.error.statusCode) { + case 400: + throw new Management.BadRequestError( + _response.error.body as unknown, + _response.rawResponse, + ); case 401: throw new Management.UnauthorizedError( _response.error.body as unknown, @@ -98,6 +105,8 @@ export class RolesClient { ); case 403: throw new Management.ForbiddenError(_response.error.body as unknown, _response.rawResponse); + case 404: + throw new Management.NotFoundError(_response.error.body as unknown, _response.rawResponse); case 429: throw new Management.TooManyRequestsError( _response.error.body as unknown, diff --git a/src/management/api/types/types.ts b/src/management/api/types/types.ts index 5d6c1b0d16..41aa53b690 100644 --- a/src/management/api/types/types.ts +++ b/src/management/api/types/types.ts @@ -1425,6 +1425,22 @@ export const AuthenticationTypeEnum = { } as const; export type AuthenticationTypeEnum = (typeof AuthenticationTypeEnum)[keyof typeof AuthenticationTypeEnum]; +/** + * Bad Request + */ +export interface BadRequestSchema { + message: string; + statusCode: string; + error: BadRequestSchema.Error_; +} + +export namespace BadRequestSchema { + export const Error_ = { + BadRequest: "Bad Request", + } as const; + export type Error_ = (typeof Error_)[keyof typeof Error_]; +} + /** * List of IP addresses or CIDR blocks to allowlist */ @@ -6121,7 +6137,7 @@ export type ConnectionRequireRequestUriRegistration = boolean; export type ConnectionRequiresUsername = boolean; export interface ConnectionResponseCommon extends Management.CreateConnectionCommon { - id?: Management.ConnectionId | undefined; + id: Management.ConnectionId; realms?: Management.ConnectionRealms | undefined; } @@ -7846,7 +7862,7 @@ export interface CreateClientResponseContent { } export interface CreateConnectionCommon { - name?: Management.ConnectionName | undefined; + name: Management.ConnectionName; /** Use of this property is NOT RECOMMENDED. Use the PATCH /v2/connections/{id}/clients endpoint to enable the connection for a set of clients. */ enabled_clients?: string[] | undefined; display_name?: Management.ConnectionDisplayName | undefined; @@ -9730,6 +9746,8 @@ export interface CreateResourceServerResponseContent { allow_offline_access?: boolean | undefined; /** Whether Online Refresh Tokens can be issued for this API (true) or not (false). */ allow_online_access?: boolean | undefined; + /** Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). */ + allow_online_access_with_ephemeral_sessions?: boolean | undefined; /** Whether to skip user consent for applications flagged as first party (true) or not (false). */ skip_consent_for_verifiable_first_party_clients?: boolean | undefined; /** Expiration value (in seconds) for access tokens issued for this API from the token endpoint. */ @@ -9892,6 +9910,17 @@ export interface CreateUserAuthenticationMethodResponseContent { aaguid?: string | undefined; /** Applies to webauthn authenticators only. The relying party identifier. */ relying_party_identifier?: string | undefined; + credential_device_type?: Management.CredentialDeviceTypeEnum | undefined; + /** Applies to passkeys only. Whether the credential was backed up. */ + credential_backed_up?: boolean | undefined; + /** Applies to passkeys only. The ID of the user identity linked with the authentication method. */ + identity_user_id?: string | undefined; + /** Applies to passkeys only. The user-agent of the browser used to create the passkey. */ + user_agent?: string | undefined; + /** Applies to passkeys only. The user handle of the user identity. */ + user_handle?: string | undefined; + /** Applies to passkeys only. The transports used by clients to communicate with the authenticator. */ + transports?: string[] | undefined; /** Authentication method creation date */ created_at?: string | undefined; } @@ -9992,6 +10021,13 @@ export const CreatedUserAuthenticationMethodTypeEnum = { export type CreatedUserAuthenticationMethodTypeEnum = (typeof CreatedUserAuthenticationMethodTypeEnum)[keyof typeof CreatedUserAuthenticationMethodTypeEnum]; +/** Applies to passkeys only. The kind of device the credential is stored on as defined by backup eligibility. "single_device" credentials cannot be backed up and synced to another device, "multi_device" credentials can be backed up if enabled by the end-user. */ +export const CredentialDeviceTypeEnum = { + SingleDevice: "single_device", + MultiDevice: "multi_device", +} as const; +export type CredentialDeviceTypeEnum = (typeof CredentialDeviceTypeEnum)[keyof typeof CredentialDeviceTypeEnum]; + export interface CredentialId { /** Credential ID */ id: string; @@ -17201,6 +17237,22 @@ export interface FlowsVaultConnectionSummary { fingerprint: string; } +/** + * Forbidden + */ +export interface ForbiddenSchema { + message: string; + statusCode: string; + error: ForbiddenSchema.Error_; +} + +export namespace ForbiddenSchema { + export const Error_ = { + Forbidden: "Forbidden", + } as const; + export type Error_ = (typeof Error_)[keyof typeof Error_]; +} + export type FormBlock = | Management.FormBlockDivider | Management.FormBlockHtml @@ -19344,6 +19396,8 @@ export interface GetResourceServerResponseContent { allow_offline_access?: boolean | undefined; /** Whether Online Refresh Tokens can be issued for this API (true) or not (false). */ allow_online_access?: boolean | undefined; + /** Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). */ + allow_online_access_with_ephemeral_sessions?: boolean | undefined; /** Whether to skip user consent for applications flagged as first party (true) or not (false). */ skip_consent_for_verifiable_first_party_clients?: boolean | undefined; /** Expiration value (in seconds) for access tokens issued for this API from the token endpoint. */ @@ -19669,6 +19723,10 @@ export interface GetUserAuthenticationMethodResponseContent { identity_user_id?: string | undefined; /** Applies to passkeys only. The user-agent of the browser used to create the passkey. */ user_agent?: string | undefined; + /** Applies to passkeys only. The user handle of the user identity. */ + user_handle?: string | undefined; + /** Applies to passkeys only. The transports used by clients to communicate with the authenticator. */ + transports?: string[] | undefined; /** Applies to passkey authentication methods only. Authenticator Attestation Globally Unique Identifier. */ aaguid?: string | undefined; /** Applies to webauthn/passkey authentication methods only. The credential's relying party identifier. */ @@ -22100,6 +22158,8 @@ export interface ResourceServer { allow_offline_access?: boolean | undefined; /** Whether Online Refresh Tokens can be issued for this API (true) or not (false). */ allow_online_access?: boolean | undefined; + /** Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). */ + allow_online_access_with_ephemeral_sessions?: boolean | undefined; /** Whether to skip user consent for applications flagged as first party (true) or not (false). */ skip_consent_for_verifiable_first_party_clients?: boolean | undefined; /** Expiration value (in seconds) for access tokens issued for this API from the token endpoint. */ @@ -23679,6 +23739,22 @@ export interface TokenQuotaConfiguration { [key: string]: any; } +/** + * Too Many Requests + */ +export interface TooManyRequestsSchema { + message: string; + statusCode: string; + error: TooManyRequestsSchema.Error_; +} + +export namespace TooManyRequestsSchema { + export const Error_ = { + TooManyRequests: "Too Many Requests", + } as const; + export type Error_ = (typeof Error_)[keyof typeof Error_]; +} + export interface TwilioProviderConfiguration { default_from?: string | undefined; mssid?: string | undefined; @@ -23697,6 +23773,22 @@ export const TwilioProviderDeliveryMethodEnum = { export type TwilioProviderDeliveryMethodEnum = (typeof TwilioProviderDeliveryMethodEnum)[keyof typeof TwilioProviderDeliveryMethodEnum]; +/** + * Unauthorized + */ +export interface UnauthorizedSchema { + message: string; + statusCode: string; + error: UnauthorizedSchema.Error_; +} + +export namespace UnauthorizedSchema { + export const Error_ = { + Unauthorized: "Unauthorized", + } as const; + export type Error_ = (typeof Error_)[keyof typeof Error_]; +} + /** Which login experience to use. Can be `new` or `classic`. */ export const UniversalLoginExperienceEnum = { New: "new", @@ -24940,6 +25032,8 @@ export interface UpdateResourceServerResponseContent { allow_offline_access?: boolean | undefined; /** Whether Online Refresh Tokens can be issued for this API (true) or not (false). */ allow_online_access?: boolean | undefined; + /** Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). */ + allow_online_access_with_ephemeral_sessions?: boolean | undefined; /** Whether to skip user consent for applications flagged as first party (true) or not (false). */ skip_consent_for_verifiable_first_party_clients?: boolean | undefined; /** Expiration value (in seconds) for access tokens issued for this API from the token endpoint. */ @@ -25448,6 +25542,10 @@ export interface UserAuthenticationMethod { identity_user_id?: string | undefined; /** Applies to passkeys only. The user-agent of the browser used to create the passkey. */ user_agent?: string | undefined; + /** Applies to passkeys only. The user handle of the user identity. */ + user_handle?: string | undefined; + /** Applies to passkeys only. The transports used by clients to communicate with the authenticator. */ + transports?: string[] | undefined; /** Applies to passkey authentication methods only. Authenticator Attestation Globally Unique Identifier. */ aaguid?: string | undefined; /** Applies to webauthn/passkey authentication methods only. The credential's relying party identifier. */ diff --git a/src/management/tests/wire/resourceServers.test.ts b/src/management/tests/wire/resourceServers.test.ts index 0f2758afcb..f1503489ff 100644 --- a/src/management/tests/wire/resourceServers.test.ts +++ b/src/management/tests/wire/resourceServers.test.ts @@ -24,6 +24,7 @@ describe("ResourceServersClient", () => { signing_secret: "signing_secret", allow_offline_access: true, allow_online_access: true, + allow_online_access_with_ephemeral_sessions: true, skip_consent_for_verifiable_first_party_clients: true, token_lifetime: 1, token_lifetime_for_web: 1, @@ -154,6 +155,7 @@ describe("ResourceServersClient", () => { signing_secret: "signing_secret", allow_offline_access: true, allow_online_access: true, + allow_online_access_with_ephemeral_sessions: true, skip_consent_for_verifiable_first_party_clients: true, token_lifetime: 1, token_lifetime_for_web: 1, @@ -310,6 +312,7 @@ describe("ResourceServersClient", () => { signing_secret: "signing_secret", allow_offline_access: true, allow_online_access: true, + allow_online_access_with_ephemeral_sessions: true, skip_consent_for_verifiable_first_party_clients: true, token_lifetime: 1, token_lifetime_for_web: 1, @@ -536,6 +539,7 @@ describe("ResourceServersClient", () => { signing_secret: "signing_secret", allow_offline_access: true, allow_online_access: true, + allow_online_access_with_ephemeral_sessions: true, skip_consent_for_verifiable_first_party_clients: true, token_lifetime: 1, token_lifetime_for_web: 1, diff --git a/src/management/tests/wire/users/authenticationMethods.test.ts b/src/management/tests/wire/users/authenticationMethods.test.ts index f6e46d12d9..3729858d18 100644 --- a/src/management/tests/wire/users/authenticationMethods.test.ts +++ b/src/management/tests/wire/users/authenticationMethods.test.ts @@ -33,6 +33,8 @@ describe("AuthenticationMethodsClient", () => { credential_backed_up: true, identity_user_id: "identity_user_id", user_agent: "user_agent", + user_handle: "user_handle", + transports: ["transports"], aaguid: "aaguid", relying_party_identifier: "relying_party_identifier", }, @@ -172,6 +174,12 @@ describe("AuthenticationMethodsClient", () => { public_key: "public_key", aaguid: "aaguid", relying_party_identifier: "relying_party_identifier", + credential_device_type: "single_device", + credential_backed_up: true, + identity_user_id: "identity_user_id", + user_agent: "user_agent", + user_handle: "user_handle", + transports: ["transports"], created_at: "2024-01-15T09:30:00Z", }; @@ -605,6 +613,8 @@ describe("AuthenticationMethodsClient", () => { credential_backed_up: true, identity_user_id: "identity_user_id", user_agent: "user_agent", + user_handle: "user_handle", + transports: ["transports"], aaguid: "aaguid", relying_party_identifier: "relying_party_identifier", }; diff --git a/src/management/tests/wire/users/roles.test.ts b/src/management/tests/wire/users/roles.test.ts index 58d80e0e2f..298fe0d5ab 100644 --- a/src/management/tests/wire/users/roles.test.ts +++ b/src/management/tests/wire/users/roles.test.ts @@ -43,6 +43,25 @@ describe("RolesClient", () => { const rawResponseBody = { key: "value" }; + server + .mockEndpoint({ once: false }) + .get("/users/id/roles") + .respondWith() + .statusCode(400) + .jsonBody(rawResponseBody) + .build(); + + await expect(async () => { + return await client.users.roles.list("id"); + }).rejects.toThrow(Management.BadRequestError); + }); + + test("list (3)", async () => { + const server = mockServerPool.createServer(); + const client = new ManagementClient({ maxRetries: 0, token: "test", environment: server.baseUrl }); + + const rawResponseBody = { key: "value" }; + server .mockEndpoint({ once: false }) .get("/users/id/roles") @@ -56,7 +75,7 @@ describe("RolesClient", () => { }).rejects.toThrow(Management.UnauthorizedError); }); - test("list (3)", async () => { + test("list (4)", async () => { const server = mockServerPool.createServer(); const client = new ManagementClient({ maxRetries: 0, token: "test", environment: server.baseUrl }); @@ -75,7 +94,26 @@ describe("RolesClient", () => { }).rejects.toThrow(Management.ForbiddenError); }); - test("list (4)", async () => { + test("list (5)", async () => { + const server = mockServerPool.createServer(); + const client = new ManagementClient({ maxRetries: 0, token: "test", environment: server.baseUrl }); + + const rawResponseBody = { key: "value" }; + + server + .mockEndpoint({ once: false }) + .get("/users/id/roles") + .respondWith() + .statusCode(404) + .jsonBody(rawResponseBody) + .build(); + + await expect(async () => { + return await client.users.roles.list("id"); + }).rejects.toThrow(Management.NotFoundError); + }); + + test("list (6)", async () => { const server = mockServerPool.createServer(); const client = new ManagementClient({ maxRetries: 0, token: "test", environment: server.baseUrl }); diff --git a/yarn.lock b/yarn.lock index 309f7b838c..36b43abfaa 100644 --- a/yarn.lock +++ b/yarn.lock @@ -694,9 +694,9 @@ strict-event-emitter "^0.5.1" "@mswjs/interceptors@^0.41.0": - version "0.41.8" - resolved "https://registry.yarnpkg.com/@mswjs/interceptors/-/interceptors-0.41.8.tgz#85ef74560f15d401dfe13798e6dabac15e457d6a" - integrity sha512-pRLMNKTSGRoLq+KnEB/7OY5vijw1XmcheAAOiv6pj7W1FG32kAGqj1C/RK/cqxRGr1Fh+zBi8sDur8kj3EQv6A== + version "0.41.9" + resolved "https://registry.yarnpkg.com/@mswjs/interceptors/-/interceptors-0.41.9.tgz#9d90bbd60d1ddc30dbcbb827a9bb2e470493530d" + integrity sha512-VVPPgHyQ6ShqnrmDWuxjmUIsO9gWyOZFmuOfLd9LfBGQJwZfy0gvv9pbHSJuoFNIYC7ZDX9aoFwowjcdSC4E8w== dependencies: "@open-draft/deferred-promise" "^2.2.0" "@open-draft/logger" "^0.3.0" @@ -847,9 +847,9 @@ "@types/json-schema" "*" "@types/estree@*", "@types/estree@^1.0.6", "@types/estree@^1.0.8": - version "1.0.8" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e" - integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w== + version "1.0.9" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.9.tgz#cf3f0e876d7bee15a93ab925b82bf570a3904a24" + integrity sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg== "@types/graceful-fs@^4.1.3": version "4.1.9" @@ -907,11 +907,11 @@ integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/node@*": - version "25.6.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.6.0.tgz#4e09bad9b469871f2d0f68140198cbd714f4edca" - integrity sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ== + version "25.7.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.7.0.tgz#7498f82e90dbdce7c34b75aaaa256c498a0ebe6c" + integrity sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg== dependencies: - undici-types "~7.19.0" + undici-types "~7.21.0" "@types/node@^18.19.70": version "18.19.130" @@ -953,99 +953,99 @@ "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^8.38.0": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.2.tgz#f37b2c189a0177141fe3de3b08f2a83991bfdbfa" - integrity sha512-j/bwmkBvHUtPNxzuWe5z6BEk3q54YRyGlBXkSsmfoih7zNrBvl5A9A98anlp/7JbyZcWIJ8KXo/3Tq/DjFLtuQ== + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.3.tgz#5d6da7e7b236b46452fa00d3904bb6f59615bfde" + integrity sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw== dependencies: "@eslint-community/regexpp" "^4.12.2" - "@typescript-eslint/scope-manager" "8.59.2" - "@typescript-eslint/type-utils" "8.59.2" - "@typescript-eslint/utils" "8.59.2" - "@typescript-eslint/visitor-keys" "8.59.2" + "@typescript-eslint/scope-manager" "8.59.3" + "@typescript-eslint/type-utils" "8.59.3" + "@typescript-eslint/utils" "8.59.3" + "@typescript-eslint/visitor-keys" "8.59.3" ignore "^7.0.5" natural-compare "^1.4.0" ts-api-utils "^2.5.0" "@typescript-eslint/parser@^8.38.0": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.59.2.tgz#e2fd0084baa5dd0c24cd789af1c72cbc3a7a1c62" - integrity sha512-plR3pp6D+SSUn1HM7xvSkx12/DhoHInI2YF35KAcVFNZvlC0gtrWqx7Qq1oH2Ssgi0vlFRCTbP+DZc7B9+TtsQ== - dependencies: - "@typescript-eslint/scope-manager" "8.59.2" - "@typescript-eslint/types" "8.59.2" - "@typescript-eslint/typescript-estree" "8.59.2" - "@typescript-eslint/visitor-keys" "8.59.2" + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.59.3.tgz#f46cbc70ae0a25119ef94eac9ecd46714788e1a1" + integrity sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg== + dependencies: + "@typescript-eslint/scope-manager" "8.59.3" + "@typescript-eslint/types" "8.59.3" + "@typescript-eslint/typescript-estree" "8.59.3" + "@typescript-eslint/visitor-keys" "8.59.3" debug "^4.4.3" -"@typescript-eslint/project-service@8.59.2": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.59.2.tgz#f8b8cbf8692e3a51c2c394acf8cf6900f7e755af" - integrity sha512-+2hqvEkeyf/0FBor67duF0Ll7Ot8jyKzDQOSrxazF/danillRq2DwR9dLptsXpoZQqxE1UisSmoZewrlPas9Vw== +"@typescript-eslint/project-service@8.59.3": + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.59.3.tgz#1be5ae152aad987a156c9a1a9b4256e75cfbbe0c" + integrity sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng== dependencies: - "@typescript-eslint/tsconfig-utils" "^8.59.2" - "@typescript-eslint/types" "^8.59.2" + "@typescript-eslint/tsconfig-utils" "^8.59.3" + "@typescript-eslint/types" "^8.59.3" debug "^4.4.3" -"@typescript-eslint/scope-manager@8.59.2": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.59.2.tgz#63cbd0af2e3180949d6be81122cc555bc71e736d" - integrity sha512-JzfyEpEtOU89CcFSwyNS3mu4MLvLSXqnmX05+aKBDM+TdR5jzcGOEBwxwGNxrEQ7p/z6kK2WyioCGBf2zZBnvg== +"@typescript-eslint/scope-manager@8.59.3": + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.59.3.tgz#91a60f66803fe9dae0696fbab2451f5723f119d2" + integrity sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA== dependencies: - "@typescript-eslint/types" "8.59.2" - "@typescript-eslint/visitor-keys" "8.59.2" + "@typescript-eslint/types" "8.59.3" + "@typescript-eslint/visitor-keys" "8.59.3" -"@typescript-eslint/tsconfig-utils@8.59.2", "@typescript-eslint/tsconfig-utils@^8.59.2": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.2.tgz#6e92bc412083753185a79c9f1431e78169d9232f" - integrity sha512-BKK4alN7oi4C/zv4VqHQ+uRU+lTa6JGIZ7s1juw7b3RHo9OfKB+bKX3u0iVZetdsUCBBkSbdWbarJbmN0fTeSw== +"@typescript-eslint/tsconfig-utils@8.59.3", "@typescript-eslint/tsconfig-utils@^8.59.3": + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.3.tgz#88ca9036b42ccdd1e630cfdafd2e042c2ca6a835" + integrity sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw== -"@typescript-eslint/type-utils@8.59.2": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.59.2.tgz#a60a1192a804fa472a92c41656853ac6a9ba7176" - integrity sha512-nhqaj1nmTdVVl/BP5omXNRGO38jn5iosis2vbdmupF2txCf8ylWT8lx+JlvMYYVqzGVKtjojUFoQ3JRWK+mfzQ== +"@typescript-eslint/type-utils@8.59.3": + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.59.3.tgz#421fb2448bdfeb301d134a01cd02503f67fd8192" + integrity sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ== dependencies: - "@typescript-eslint/types" "8.59.2" - "@typescript-eslint/typescript-estree" "8.59.2" - "@typescript-eslint/utils" "8.59.2" + "@typescript-eslint/types" "8.59.3" + "@typescript-eslint/typescript-estree" "8.59.3" + "@typescript-eslint/utils" "8.59.3" debug "^4.4.3" ts-api-utils "^2.5.0" -"@typescript-eslint/types@8.59.2", "@typescript-eslint/types@^8.59.2": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.59.2.tgz#01caabcd7e4715c33ad5e11cab260829714d6b9c" - integrity sha512-e82GVOE8Ps3E++Egvb6Y3Dw0S10u8NkQ9KXmtRhCWJJ8kDhOJTvtMAWnFL16kB1583goCWXsr0NieKCZMs2/0Q== +"@typescript-eslint/types@8.59.3", "@typescript-eslint/types@^8.59.3": + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.59.3.tgz#b7ca539c5e302fdde9a7cadb73caed107ef8f2cd" + integrity sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg== -"@typescript-eslint/typescript-estree@8.59.2": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.2.tgz#6a217ef65b18dbd12c718fc86a675d1d7a1414cc" - integrity sha512-o0XPGNwcWw+FIwStOWn+BwBuEmL6QXP0rsvAFg7ET1dey1Nr6Wb1ac8p5HEsK0ygO/6mUxlk+YWQD9xcb/nnXg== +"@typescript-eslint/typescript-estree@8.59.3": + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.3.tgz#e6bb1408e00b47e431427a40268db4e86cb121ab" + integrity sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg== dependencies: - "@typescript-eslint/project-service" "8.59.2" - "@typescript-eslint/tsconfig-utils" "8.59.2" - "@typescript-eslint/types" "8.59.2" - "@typescript-eslint/visitor-keys" "8.59.2" + "@typescript-eslint/project-service" "8.59.3" + "@typescript-eslint/tsconfig-utils" "8.59.3" + "@typescript-eslint/types" "8.59.3" + "@typescript-eslint/visitor-keys" "8.59.3" debug "^4.4.3" minimatch "^10.2.2" semver "^7.7.3" tinyglobby "^0.2.15" ts-api-utils "^2.5.0" -"@typescript-eslint/utils@8.59.2": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.59.2.tgz#ff619a6a3075f4017fa91b8610b752a8ca3366aa" - integrity sha512-Juw3EinkXqjaffxz6roowvV7GZT/kET5vSKKZT6upl5TXdWkLkYmNPXwDDL2Vkt2DPn0nODIS4egC/0AGxKo/Q== +"@typescript-eslint/utils@8.59.3": + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.59.3.tgz#f693f979deb4dc3994de03ff8b23976d625c36c5" + integrity sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg== dependencies: "@eslint-community/eslint-utils" "^4.9.1" - "@typescript-eslint/scope-manager" "8.59.2" - "@typescript-eslint/types" "8.59.2" - "@typescript-eslint/typescript-estree" "8.59.2" + "@typescript-eslint/scope-manager" "8.59.3" + "@typescript-eslint/types" "8.59.3" + "@typescript-eslint/typescript-estree" "8.59.3" -"@typescript-eslint/visitor-keys@8.59.2": - version "8.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.2.tgz#5ccc486913cd347883d69158836b1189a660bfe6" - integrity sha512-NwjLUnGy8/Zfx23fl50tRC8rYaYnM52xNRYFAXvmiil9yh1+K6aRVQMnzW6gQB/1DLgWt977lYQn7C+wtgXZiA== +"@typescript-eslint/visitor-keys@8.59.3": + version "8.59.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.3.tgz#820843b1b5ca4290009cf189382abcf6fe00dfa6" + integrity sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg== dependencies: - "@typescript-eslint/types" "8.59.2" + "@typescript-eslint/types" "8.59.3" eslint-visitor-keys "^5.0.0" "@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1": @@ -1404,9 +1404,9 @@ balanced-match@^4.0.2: integrity sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA== baseline-browser-mapping@^2.10.12: - version "2.10.27" - resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.27.tgz#fee941c2a0b42cdf83c6427e4c830b1d0bdab2c3" - integrity sha512-zEs/ufmZoUd7WftKpKyXaT6RFxpQ5Qm9xytKRHvJfxFV9DFJkZph9RvJ1LcOUi0Z1ZVijMte65JbILeV+8QQEA== + version "2.10.29" + resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.29.tgz#47bdc13027af28d341f367a4f35a07ce872e27b4" + integrity sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ== brace-expansion@^1.1.7: version "1.1.14" @@ -1417,9 +1417,9 @@ brace-expansion@^1.1.7: concat-map "0.0.1" brace-expansion@^5.0.5: - version "5.0.5" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.5.tgz#dcc3a37116b79f3e1b46db994ced5d570e930fdb" - integrity sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ== + version "5.0.6" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.6.tgz#ec68fe0a641a29d8711579caf641d05bae1f2285" + integrity sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g== dependencies: balanced-match "^4.0.2" @@ -1484,9 +1484,9 @@ camelcase@^6.2.0: integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001782: - version "1.0.30001791" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001791.tgz#dfb93d85c40ad380c57123e72e10f3c575786b51" - integrity sha512-yk0l/YSrOnFZk3UROpDLQD9+kC1l4meK/wed583AXrzoarMGJcbRi2Q4RaUYbKxYAsZ8sWmaSa/DsLmdBeI1vQ== + version "1.0.30001792" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz#ca8bb9be244835a335e2018272ce7223691873c5" + integrity sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw== chalk@^4.0.0, chalk@^4.1.0: version "4.1.2" @@ -1711,9 +1711,9 @@ dunder-proto@^1.0.1: gopd "^1.2.0" electron-to-chromium@^1.5.328: - version "1.5.349" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.349.tgz#9b9c6a6d84d1107557c18a9336099ce0ee890e5b" - integrity sha512-QsWVGyRuY07Aqb234QytTfwd5d9AJlfNIQ5wIOl1L+PZDzI9d9+Fn0FRale/QYlFxt/bUnB0/nLd1jFPGxGK1A== + version "1.5.353" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.353.tgz#01e8a8e25a0bf13e631106045f177d0568ca91c2" + integrity sha512-kOrWphBi8TOZyiJZqsgqIle0lw+tzmnQK83pV9dZUd01Nm2POECSyFQMAuarzZdYqQW7FH9RaYOuaRo3h+bQ3w== emittery@^0.13.1: version "0.13.1" @@ -1731,9 +1731,9 @@ emoji-regex@^8.0.0: integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== enhanced-resolve@^5.0.0, enhanced-resolve@^5.20.0: - version "5.21.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.21.0.tgz#bb8e6fabaf74930de70e61397798750429e5b1ae" - integrity sha512-otxSQPw4lkOZWkHpB3zaEQs6gWYEsmX4xQF68ElXC/TWvGxGMSGOvoNbaLXm6/cS/fSfHtsEdw90y20PCd+sCA== + version "5.21.3" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.21.3.tgz#fa7fed23679e9169dfb705b8e201924421c4414a" + integrity sha512-QyL119InA+XXEkNLNTPCXPugSvOfhwv0JOlGNzvxs0hZaiHLNvXSpudUWsOlsXGWJh8G6ckCScEkVHfX3kw/2Q== dependencies: graceful-fs "^4.2.4" tapable "^2.3.3" @@ -2103,9 +2103,9 @@ get-caller-file@^2.0.5: integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-east-asian-width@^1.0.0, get-east-asian-width@^1.3.1, get-east-asian-width@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.5.0.tgz#ce7008fe345edcf5497a6f557cfa54bc318a9ce7" - integrity sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA== + version "1.6.0" + resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz#216900f91df11a8b2c198c3e1d93d6c035a776b9" + integrity sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA== get-intrinsic@^1.2.6: version "1.3.0" @@ -2181,9 +2181,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.2" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.13.2.tgz#4d2b73df5796b201f1bc2765f5d7067f689cb55f" - integrity sha512-5bJ+nf/UCpAjHM8i06fl7eLyVC9iuNAjm9qzkiu2ZGhM0VscSvS6WDPfAwkdkBuoXGM9FJSbKl6wylMwP9Ktig== + version "16.14.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.14.0.tgz#f1128a74b16a34d1245c8436bb07b488d87b83e1" + integrity sha512-BBvQ/406p+4CZbTpCbVPSxfzrZrbnuWSP1ELYgyS6B+hNeKzgrdB4JczCa5VZUBQrDa9hUngm0KnexY6pJRN5Q== handlebars@^4.7.9: version "4.7.9" @@ -2214,7 +2214,7 @@ has-tostringtag@^1.0.2: dependencies: has-symbols "^1.0.3" -hasown@^2.0.2: +hasown@^2.0.2, hasown@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.3.tgz#5e5c2b15b60370a4c7930c383dfb76bf17bc403c" integrity sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg== @@ -2322,11 +2322,11 @@ is-arrayish@^0.2.1: integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-core-module@^2.16.1: - version "2.16.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4" - integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w== + version "2.16.2" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.2.tgz#3e07450a8080ebce3fbf0cac494f4d2ab324e082" + integrity sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA== dependencies: - hasown "^2.0.2" + hasown "^2.0.3" is-extglob@^2.1.1: version "2.1.1" @@ -3177,9 +3177,9 @@ neo-async@^2.6.2: integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== nock@^14.0.6: - version "14.0.14" - resolved "https://registry.yarnpkg.com/nock/-/nock-14.0.14.tgz#877044b2de4a6844115d285cdbd24d423d30f58e" - integrity sha512-PKk7tex0O3RRXUZC5XDKJ9yM3rYRPS13myduT85VIIYDBnib42Fpxoe6KxRSzqB4iL2NDxkcJ2yiskZ18hGLEQ== + version "14.0.15" + resolved "https://registry.yarnpkg.com/nock/-/nock-14.0.15.tgz#23f9978fb20d8b3607dc263f4978cb89648f550b" + integrity sha512-S0a47C9pLvcYx/Ugf0H30BVBEcUgMMBDk9VJIDlJ8XGrfH2QDUD4Tgdp45qDIiHttokBG+IbsOtsvIjGR/j3bg== dependencies: "@mswjs/interceptors" "^0.41.0" json-stringify-safe "^5.0.1" @@ -3411,9 +3411,9 @@ psl@^1.1.33: punycode "^2.3.1" publint@^0.3.12: - version "0.3.18" - resolved "https://registry.yarnpkg.com/publint/-/publint-0.3.18.tgz#c4b20f20f9cf07c4c60770cce625873e42240295" - integrity sha512-JRJFeBTrfx4qLwEuGFPk+haJOJN97KnPuK01yj+4k/Wj5BgoOK5uNsivporiqBjk2JDaslg7qJOhGRnpltGeog== + version "0.3.20" + resolved "https://registry.yarnpkg.com/publint/-/publint-0.3.20.tgz#c3f6382f0ffa7c86c36d88c028063fc96fb472c8" + integrity sha512-UWqFYP7VBVCe9l/leEEGJrDs6Am4K4KapLmLi5qbt+9fA+Ny38ghdW+bw1nYfVqCK8/3kgsxjjhFjTYqYYRpyw== dependencies: "@publint/pack" "^0.1.4" package-manager-detector "^1.6.0" @@ -3545,9 +3545,9 @@ semver@^6.3.0, semver@^6.3.1: integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.7.3, semver@^7.7.4: - version "7.7.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" - integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== + version "7.8.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.8.0.tgz#ed0661039fcbcda2ce71f01fa6adbefaa77040df" + integrity sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA== shebang-command@^2.0.0: version "2.0.0" @@ -3750,9 +3750,9 @@ tapable@^2.3.0, tapable@^2.3.3: integrity sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A== terser-webpack-plugin@^5.3.17: - version "5.5.0" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.5.0.tgz#d92b8e2c892dd09c683c38120394267e8d8660ef" - integrity sha512-UYhptBwhWvfIjKd/UuFo6D8uq9xpGLDK+z8EDsj/zWhrTaH34cKEbrkMKfV5YWqGBvAYA3tlzZbs2R+qYrbQJA== + version "5.6.0" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.6.0.tgz#8e7caad248183ab9e91ff08a83b0fc9f0439c3c3" + integrity sha512-Eum+5ajkaOhf5KbM26osvv21kLD7BaGqQ1UA4Ami4arYwylmGUQTgHFpHDdmJod1q4QXa66p0to/FBKID+J1vA== dependencies: "@jridgewell/trace-mapping" "^0.3.25" jest-worker "^27.4.5" @@ -3760,9 +3760,9 @@ terser-webpack-plugin@^5.3.17: terser "^5.31.1" terser@^5.31.1: - version "5.46.2" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.46.2.tgz#b9529672d5b0024c7959571c83b82f65077b2a4f" - integrity sha512-uxfo9fPcSgLDYob/w1FuL0c99MWiJDnv+5qXSQc5+Ki5NjVNsYi66INnMFBjf6uFz6OnX12piJQPF4IpjJTNTw== + version "5.47.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.47.1.tgz#99b298e51bc41214304847de1429ec92fd1f7648" + integrity sha512-tPbLXTI6ohPASb/1YViL428oEHu6/qv1OxqYnfaonVCFHqx4+wCd95pHrQWsL5X4pl90CTyW9piSAsS2L0VoMw== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.15.0" @@ -3933,10 +3933,10 @@ undici-types@~5.26.4: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== -undici-types@~7.19.0: - version "7.19.2" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.19.2.tgz#1b67fc26d0f157a0cba3a58a5b5c1e2276b8ba2a" - integrity sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg== +undici-types@~7.21.0: + version "7.21.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.21.0.tgz#433f7dd1b5daa9ab4dacb721a5e11a8de51eadda" + integrity sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ== undici@^7.12.0: version "7.25.0" @@ -4155,9 +4155,9 @@ yallist@^3.0.2: integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== yaml@^2.8.2, yaml@^2.8.3: - version "2.8.4" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.4.tgz#4b5f411dd25f9544914d8673d4da7f29248e5e2e" - integrity sha512-ml/JPOj9fOQK8RNnWojA67GbZ0ApXAUlN2UQclwv2eVgTgn7O9gg9o7paZWKMp4g0H3nTLtS9LVzhkpOFIKzog== + version "2.9.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.9.0.tgz#78274afd93598a1dfdd6130df6a566defcbf9aa4" + integrity sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA== yargs-parser@^21.1.1: version "21.1.1"