From e56e33f78545eaab9db9efb0c5568f5d161e8c16 Mon Sep 17 00:00:00 2001 From: Ian Krieger <48930920+IanKrieger@users.noreply.github.com> Date: Tue, 13 Aug 2024 11:20:28 -0400 Subject: [PATCH 1/3] chore(graphql): update mutation naming convention (#1313) Updating naming conventions to match other ads manager specific graphql mutations --- src/auth/components/AdvertiserDetailsForm.tsx | 4 +- src/graphql-client/gql.ts | 4 +- src/graphql-client/graphql.ts | 63 +-- src/graphql/ads-serve.graphql.schema.json | 435 ++++++------------ 4 files changed, 159 insertions(+), 347 deletions(-) diff --git a/src/auth/components/AdvertiserDetailsForm.tsx b/src/auth/components/AdvertiserDetailsForm.tsx index b800f5e33..3ad3c9662 100644 --- a/src/auth/components/AdvertiserDetailsForm.tsx +++ b/src/auth/components/AdvertiserDetailsForm.tsx @@ -22,8 +22,8 @@ import { useMutation, useQuery } from "@apollo/client"; import { graphql } from "@/graphql-client/index"; export const Advertiser_Update = graphql(` - mutation UpdateAdvertiser($input: UpdateSelfServeAdvertiserInput!) { - updateSelfServeAdvertiser(updateAdvertiserInput: $input) { + mutation UpdateAdvertiser($input: AdsManagerUpdateAdvertiserInput!) { + adsManagerUpdateAdvertiser(adsManagerUpdateAdvertiserInput: $input) { id publicKey } diff --git a/src/graphql-client/gql.ts b/src/graphql-client/gql.ts index 846a9fb88..bf66a84b3 100644 --- a/src/graphql-client/gql.ts +++ b/src/graphql-client/gql.ts @@ -13,7 +13,7 @@ import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document- * Therefore it is highly recommended to use the babel or swc plugin for production. */ const documents = { - "\n mutation UpdateAdvertiser($input: UpdateSelfServeAdvertiserInput!) {\n updateSelfServeAdvertiser(updateAdvertiserInput: $input) {\n id\n publicKey\n }\n }\n": types.UpdateAdvertiserDocument, + "\n mutation UpdateAdvertiser($input: AdsManagerUpdateAdvertiserInput!) {\n adsManagerUpdateAdvertiser(adsManagerUpdateAdvertiserInput: $input) {\n id\n publicKey\n }\n }\n": types.UpdateAdvertiserDocument, "\n mutation AdsManagerUpdateCreativeState($id: String!, $state: String!) {\n adsManagerUpdateCreativeState(id: $id, state: $state) {\n id\n }\n }\n": types.AdsManagerUpdateCreativeStateDocument, "\n mutation AdsManagerUpdateCreativePayload(\n $input: AdsManagerUpdateCreativeInput!\n ) {\n adsManagerUpdateCreativePayload(adsManagerUpdateCreativeInput: $input) {\n id\n }\n }\n": types.AdsManagerUpdateCreativePayloadDocument, "\n mutation UpdateAdSetState($id: String!, $state: AdSetState!) {\n adsManagerUpdateAdSetState(id: $id, state: $state) {\n id\n }\n }\n ": types.UpdateAdSetStateDocument, @@ -55,7 +55,7 @@ export function graphql(source: string): unknown; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n mutation UpdateAdvertiser($input: UpdateSelfServeAdvertiserInput!) {\n updateSelfServeAdvertiser(updateAdvertiserInput: $input) {\n id\n publicKey\n }\n }\n"): (typeof documents)["\n mutation UpdateAdvertiser($input: UpdateSelfServeAdvertiserInput!) {\n updateSelfServeAdvertiser(updateAdvertiserInput: $input) {\n id\n publicKey\n }\n }\n"]; +export function graphql(source: "\n mutation UpdateAdvertiser($input: AdsManagerUpdateAdvertiserInput!) {\n adsManagerUpdateAdvertiser(adsManagerUpdateAdvertiserInput: $input) {\n id\n publicKey\n }\n }\n"): (typeof documents)["\n mutation UpdateAdvertiser($input: AdsManagerUpdateAdvertiserInput!) {\n adsManagerUpdateAdvertiser(adsManagerUpdateAdvertiserInput: $input) {\n id\n publicKey\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/src/graphql-client/graphql.ts b/src/graphql-client/graphql.ts index a6bbdb5bc..527ea7747 100644 --- a/src/graphql-client/graphql.ts +++ b/src/graphql-client/graphql.ts @@ -43,7 +43,6 @@ export type Ad = { /** @deprecated rewardPaymentTokenValue has been moved to ad set */ rewardPaymentTokenValue: Scalars['Numeric']['output']; state: Scalars['String']['output']; - webhooks: Array; }; export type AdSet = { @@ -147,6 +146,14 @@ export type AdsManagerUpdateAdSetInput = { segmentCodes?: InputMaybe>; }; +export type AdsManagerUpdateAdvertiserInput = { + /** Agreed to Terms And Conditions - Advertiser Facing Dashboard */ + agreed?: InputMaybe; + billingAddress?: InputMaybe; + id: Scalars['String']['input']; + publicKey?: InputMaybe; +}; + export type AdsManagerUpdateCampaignInput = { adSets?: InputMaybe; budget?: InputMaybe; @@ -195,6 +202,7 @@ export type Advertiser = { marketingChannel?: Maybe; modifiedAt: Scalars['DateTime']['output']; name: Scalars['String']['output']; + ofacCompliant: Scalars['Boolean']['output']; phone?: Maybe; prices: Array; publicKey?: Maybe; @@ -525,7 +533,6 @@ export type CreateAdInput = { creativeId?: InputMaybe; creativeSetId?: InputMaybe; id?: InputMaybe; - webhooks?: InputMaybe>; }; export type CreateAdSetInput = { @@ -900,11 +907,11 @@ export type Metrics = { export type Mutation = { __typename?: 'Mutation'; adsManagerUpdateAdSetState: AdSet; + adsManagerUpdateAdvertiser: Advertiser; adsManagerUpdateCampaign: Campaign; adsManagerUpdateCampaignState: Campaign; adsManagerUpdateCreativePayload: Creative; adsManagerUpdateCreativeState: Creative; - approveAdvertiser: Advertiser; approveAdvertiserRegistration: Advertiser; approveCampaign: Campaign; createAdSet: AdSet; @@ -917,12 +924,10 @@ export type Mutation = { /** Logically deletes the ad */ deleteAd: Ad; forceCampaignValidation?: Maybe; - rejectAdvertiser: Advertiser; rejectAdvertiserRegistration: Registration; rejectCampaign: Campaign; rejectCreative: Creative; - /** @deprecated This actually updates the state of the creative, not the ad as its name suggests! */ - updateAd: Ad; + sendLoginEmail: Scalars['Boolean']['output']; updateAdSet: AdSet; updateAdvertiser: Advertiser; updateCampaign: Campaign; @@ -939,6 +944,11 @@ export type MutationAdsManagerUpdateAdSetStateArgs = { }; +export type MutationAdsManagerUpdateAdvertiserArgs = { + adsManagerUpdateAdvertiserInput: AdsManagerUpdateAdvertiserInput; +}; + + export type MutationAdsManagerUpdateCampaignArgs = { adsManagerUpdateCampaignInput: AdsManagerUpdateCampaignInput; }; @@ -961,11 +971,6 @@ export type MutationAdsManagerUpdateCreativeStateArgs = { }; -export type MutationApproveAdvertiserArgs = { - id: Scalars['String']['input']; -}; - - export type MutationApproveAdvertiserRegistrationArgs = { id: Scalars['String']['input']; }; @@ -1021,12 +1026,6 @@ export type MutationForceCampaignValidationArgs = { }; -export type MutationRejectAdvertiserArgs = { - id: Scalars['String']['input']; - reason: Scalars['String']['input']; -}; - - export type MutationRejectAdvertiserRegistrationArgs = { code?: InputMaybe; id: Scalars['String']['input']; @@ -1046,8 +1045,8 @@ export type MutationRejectCreativeArgs = { }; -export type MutationUpdateAdArgs = { - updateAdInput: UpdateAdInput; +export type MutationSendLoginEmailArgs = { + id: Scalars['String']['input']; }; @@ -1566,14 +1565,6 @@ export type TargetUrlValidation = { redirects: Array; }; -export type UpdateAdInput = { - creativeId?: InputMaybe; - creativeSetId?: InputMaybe; - id?: InputMaybe; - state?: InputMaybe; - webhooks?: InputMaybe>; -}; - export type UpdateAdSetInput = { ads?: InputMaybe>; bannedKeywords?: InputMaybe>; @@ -1627,6 +1618,7 @@ export type UpdateAdvertiserInput = { id: Scalars['String']['input']; marketingChannel?: InputMaybe; name?: InputMaybe; + ofacCompliant?: InputMaybe; phone?: InputMaybe; publicKey?: InputMaybe; referrer?: InputMaybe; @@ -1732,23 +1724,12 @@ export type WallpaperInput = { imageUrl: Scalars['String']['input']; }; -export type Webhook = { - __typename?: 'Webhook'; - type: Scalars['String']['output']; - url: Scalars['String']['output']; -}; - -export type CreateWebhookInput = { - type: Scalars['String']['input']; - url: Scalars['String']['input']; -}; - export type UpdateAdvertiserMutationVariables = Exact<{ - input: UpdateSelfServeAdvertiserInput; + input: AdsManagerUpdateAdvertiserInput; }>; -export type UpdateAdvertiserMutation = { __typename?: 'Mutation', updateSelfServeAdvertiser: { __typename?: 'Advertiser', id: string, publicKey?: string | null } }; +export type UpdateAdvertiserMutation = { __typename?: 'Mutation', adsManagerUpdateAdvertiser: { __typename?: 'Advertiser', id: string, publicKey?: string | null } }; export type AdsManagerUpdateCreativeStateMutationVariables = Exact<{ id: Scalars['String']['input']; @@ -2078,7 +2059,7 @@ export const HourlyValuesFragmentDoc = {"kind":"Document","definitions":[{"kind" export const CampaignOverviewFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CampaignOverview"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Campaign"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"CampaignSummary"}},{"kind":"Field","name":{"kind":"Name","value":"adSets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"conversions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"extractExternalId"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CampaignSummary"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Campaign"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"state"}},{"kind":"Field","name":{"kind":"Name","value":"dailyCap"}},{"kind":"Field","name":{"kind":"Name","value":"priority"}},{"kind":"Field","name":{"kind":"Name","value":"passThroughRate"}},{"kind":"Field","name":{"kind":"Name","value":"pacingOverride"}},{"kind":"Field","name":{"kind":"Name","value":"pacingStrategy"}},{"kind":"Field","name":{"kind":"Name","value":"externalId"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"budget"}},{"kind":"Field","name":{"kind":"Name","value":"paymentType"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"startAt"}},{"kind":"Field","name":{"kind":"Name","value":"endAt"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"format"}},{"kind":"Field","name":{"kind":"Name","value":"dayProportion"}},{"kind":"Field","name":{"kind":"Name","value":"brandedKeywords"}},{"kind":"Field","name":{"kind":"Name","value":"advertiser"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]} as unknown as DocumentNode; export const SearchProspectsLandingPageListFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SearchProspectsLandingPageList"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SearchLandingPageWithStats"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"rank"}},{"kind":"Field","name":{"kind":"Name","value":"lastSeen"}},{"kind":"Field","name":{"kind":"Name","value":"favicon"}},{"kind":"Field","name":{"kind":"Name","value":"creatives"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"body"}},{"kind":"Field","name":{"kind":"Name","value":"lastSeen"}}]}}]}}]} as unknown as DocumentNode; export const SearchProspectsLandingPageDetailFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SearchProspectsLandingPageDetail"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SearchLandingPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"queries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"query"}}]}}]}}]} as unknown as DocumentNode; -export const UpdateAdvertiserDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateAdvertiser"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UpdateSelfServeAdvertiserInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateSelfServeAdvertiser"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"updateAdvertiserInput"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicKey"}}]}}]}}]} as unknown as DocumentNode; +export const UpdateAdvertiserDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateAdvertiser"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AdsManagerUpdateAdvertiserInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"adsManagerUpdateAdvertiser"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"adsManagerUpdateAdvertiserInput"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"publicKey"}}]}}]}}]} as unknown as DocumentNode; export const AdsManagerUpdateCreativeStateDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"AdsManagerUpdateCreativeState"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"state"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"adsManagerUpdateCreativeState"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"state"},"value":{"kind":"Variable","name":{"kind":"Name","value":"state"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; export const AdsManagerUpdateCreativePayloadDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"AdsManagerUpdateCreativePayload"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AdsManagerUpdateCreativeInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"adsManagerUpdateCreativePayload"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"adsManagerUpdateCreativeInput"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; export const UpdateAdSetStateDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateAdSetState"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"state"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AdSetState"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"adsManagerUpdateAdSetState"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"state"},"value":{"kind":"Variable","name":{"kind":"Name","value":"state"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; diff --git a/src/graphql/ads-serve.graphql.schema.json b/src/graphql/ads-serve.graphql.schema.json index b1272f1c0..58c9cab47 100644 --- a/src/graphql/ads-serve.graphql.schema.json +++ b/src/graphql/ads-serve.graphql.schema.json @@ -189,30 +189,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "webhooks", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -1325,6 +1301,70 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "AdsManagerUpdateAdvertiserInput", + "description": null, + "isOneOf": false, + "fields": null, + "inputFields": [ + { + "name": "agreed", + "description": "Agreed to Terms And Conditions - Advertiser Facing Dashboard", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "billingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateAddressInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "AdsManagerUpdateCampaignInput", @@ -1884,6 +1924,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "ofacCompliant", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "phone", "description": null, @@ -4632,26 +4688,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "webhooks", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "createWebhookInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -8627,6 +8663,39 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "adsManagerUpdateAdvertiser", + "description": null, + "args": [ + { + "name": "adsManagerUpdateAdvertiserInput", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AdsManagerUpdateAdvertiserInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Advertiser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "adsManagerUpdateCampaign", "description": null, @@ -8791,39 +8860,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "approveAdvertiser", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Advertiser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "approveAdvertiserRegistration", "description": null, @@ -9183,55 +9219,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "rejectAdvertiser", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reason", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Advertiser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "rejectAdvertiserRegistration", "description": null, @@ -9388,18 +9375,18 @@ "deprecationReason": null }, { - "name": "updateAd", + "name": "sendLoginEmail", "description": null, "args": [ { - "name": "updateAdInput", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateAdInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -9412,13 +9399,13 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Ad", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, - "isDeprecated": true, - "deprecationReason": "This actually updates the state of the creative, not the ad as its name suggests!" + "isDeprecated": false, + "deprecationReason": null }, { "name": "updateAdSet", @@ -13696,86 +13683,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateAdInput", - "description": null, - "isOneOf": false, - "fields": null, - "inputFields": [ - { - "name": "creativeId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "creativeSetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhooks", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "createWebhookInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "UpdateAdSetInput", @@ -14423,6 +14330,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "ofacCompliant", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "phone", "description": null, @@ -15472,50 +15391,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "OBJECT", - "name": "Webhook", - "description": null, - "isOneOf": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", "name": "__Directive", @@ -16442,50 +16317,6 @@ } ], "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "createWebhookInput", - "description": null, - "isOneOf": false, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null } ], "directives": [ From beb41990fb70eb9ddd7e55194a77600486e9e062 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 10:03:40 -0400 Subject: [PATCH 2/3] chore(deps): update dependency vite-tsconfig-paths to v5 (#1317) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [vite-tsconfig-paths](https://togithub.com/aleclarson/vite-tsconfig-paths) | [`4.3.2` -> `5.0.1`](https://renovatebot.com/diffs/npm/vite-tsconfig-paths/4.3.2/5.0.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite-tsconfig-paths/5.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-tsconfig-paths/5.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-tsconfig-paths/4.3.2/5.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-tsconfig-paths/4.3.2/5.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
aleclarson/vite-tsconfig-paths (vite-tsconfig-paths) ### [`v5.0.1`](https://togithub.com/aleclarson/vite-tsconfig-paths/compare/v5.0.0...v5.0.1) [Compare Source](https://togithub.com/aleclarson/vite-tsconfig-paths/compare/v5.0.0...v5.0.1) ### [`v5.0.0`](https://togithub.com/aleclarson/vite-tsconfig-paths/releases/tag/v5.0.0) [Compare Source](https://togithub.com/aleclarson/vite-tsconfig-paths/compare/v4.3.2...v5.0.0) This package is now ESM only in order to align with Vite: https://vitejs.dev/guide/migration#deprecate-cjs-node-api If your project is using CommonJS, you can rename your Vite config to use the `.mjs` or `.mts` extension (depending on whether you use TypeScript or not). If you're not using Vite v5.0.0+, you may want to pin your dependency to v4 of this plugin.
--- ### Configuration ๐Ÿ“… **Schedule**: Branch creation - "* 0-4 * * 3" (UTC), Automerge - At any time (no schedule defined). ๐Ÿšฆ **Automerge**: Disabled by config. Please merge this manually once you are satisfied. โ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. ๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/brave/ads-ui). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 27973ce75..36853f94b 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ "typescript-eslint": "8.0.0", "vite": "5.3.5", "vite-plugin-checker": "0.7.2", - "vite-tsconfig-paths": "4.3.2", + "vite-tsconfig-paths": "5.0.1", "vitest": "2.0.5" }, "engines": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3ecf66f38..ec4d67086 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -214,8 +214,8 @@ importers: specifier: 0.7.2 version: 0.7.2(eslint@8.57.0)(optionator@0.9.4)(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)) vite-tsconfig-paths: - specifier: 4.3.2 - version: 4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)) + specifier: 5.0.1 + version: 5.0.1(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)) vitest: specifier: 2.0.5 version: 2.0.5(@types/node@20.13.0) @@ -4219,8 +4219,8 @@ packages: vue-tsc: optional: true - vite-tsconfig-paths@4.3.2: - resolution: {integrity: sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA==} + vite-tsconfig-paths@5.0.1: + resolution: {integrity: sha512-yqwv+LstU7NwPeNqajZzLEBVpUFU6Dugtb2P84FXuvaoYA+/70l9MHE+GYfYAycVyPSDYZ7mjOFuYBRqlEpTig==} peerDependencies: vite: '*' peerDependenciesMeta: @@ -9077,7 +9077,7 @@ snapshots: optionator: 0.9.4 typescript: 5.5.4 - vite-tsconfig-paths@4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)): + vite-tsconfig-paths@5.0.1(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)): dependencies: debug: 4.3.6 globrex: 0.1.2 From 505caf886d973ea3b392d5465c843081efe31f1e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 10:12:21 -0400 Subject: [PATCH 3/3] chore(deps): update all non-major dependencies (#1316) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | Pending | |---|---|---|---|---|---|---|---|---| | [@apollo/client](https://www.apollographql.com/docs/react/) ([source](https://togithub.com/apollographql/apollo-client)) | [`3.11.2` -> `3.11.4`](https://renovatebot.com/diffs/npm/@apollo%2fclient/3.11.2/3.11.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@apollo%2fclient/3.11.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@apollo%2fclient/3.11.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@apollo%2fclient/3.11.2/3.11.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@apollo%2fclient/3.11.2/3.11.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@lingui/cli](https://togithub.com/lingui/js-lingui) | [`4.11.2` -> `4.11.3`](https://renovatebot.com/diffs/npm/@lingui%2fcli/4.11.2/4.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@lingui%2fcli/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@lingui%2fcli/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@lingui%2fcli/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@lingui%2fcli/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch | | | [@lingui/conf](https://togithub.com/lingui/js-lingui) | [`4.11.2` -> `4.11.3`](https://renovatebot.com/diffs/npm/@lingui%2fconf/4.11.2/4.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@lingui%2fconf/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@lingui%2fconf/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@lingui%2fconf/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@lingui%2fconf/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@lingui/core](https://togithub.com/lingui/js-lingui) | [`4.11.2` -> `4.11.3`](https://renovatebot.com/diffs/npm/@lingui%2fcore/4.11.2/4.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@lingui%2fcore/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@lingui%2fcore/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@lingui%2fcore/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@lingui%2fcore/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@lingui/detect-locale](https://togithub.com/lingui/js-lingui) | [`4.11.2` -> `4.11.3`](https://renovatebot.com/diffs/npm/@lingui%2fdetect-locale/4.11.2/4.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@lingui%2fdetect-locale/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@lingui%2fdetect-locale/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@lingui%2fdetect-locale/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@lingui%2fdetect-locale/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@lingui/format-po](https://togithub.com/lingui/js-lingui) | [`4.11.2` -> `4.11.3`](https://renovatebot.com/diffs/npm/@lingui%2fformat-po/4.11.2/4.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@lingui%2fformat-po/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@lingui%2fformat-po/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@lingui%2fformat-po/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@lingui%2fformat-po/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@lingui/macro](https://togithub.com/lingui/js-lingui) | [`4.11.2` -> `4.11.3`](https://renovatebot.com/diffs/npm/@lingui%2fmacro/4.11.2/4.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@lingui%2fmacro/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@lingui%2fmacro/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@lingui%2fmacro/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@lingui%2fmacro/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@lingui/react](https://togithub.com/lingui/js-lingui) | [`4.11.2` -> `4.11.3`](https://renovatebot.com/diffs/npm/@lingui%2freact/4.11.2/4.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@lingui%2freact/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@lingui%2freact/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@lingui%2freact/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@lingui%2freact/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@lingui/vite-plugin](https://togithub.com/lingui/js-lingui) | [`4.11.2` -> `4.11.3`](https://renovatebot.com/diffs/npm/@lingui%2fvite-plugin/4.11.2/4.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@lingui%2fvite-plugin/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@lingui%2fvite-plugin/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@lingui%2fvite-plugin/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@lingui%2fvite-plugin/4.11.2/4.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch | | | [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-icons-material)) | [`5.16.6` -> `5.16.7`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.16.6/5.16.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2ficons-material/5.16.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2ficons-material/5.16.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2ficons-material/5.16.6/5.16.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2ficons-material/5.16.6/5.16.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@mui/material](https://mui.com/material-ui/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-material)) | [`5.16.6` -> `5.16.7`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.16.6/5.16.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.16.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.16.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fmaterial/5.16.6/5.16.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fmaterial/5.16.6/5.16.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@mui/x-data-grid](https://mui.com/x/react-data-grid/) ([source](https://togithub.com/mui/mui-x/tree/HEAD/packages/x-data-grid)) | [`7.12.0` -> `7.12.1`](https://renovatebot.com/diffs/npm/@mui%2fx-data-grid/7.12.0/7.12.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fx-data-grid/7.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fx-data-grid/7.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fx-data-grid/7.12.0/7.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fx-data-grid/7.12.0/7.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [@mui/x-date-pickers](https://mui.com/x/react-date-pickers/) ([source](https://togithub.com/mui/mui-x/tree/HEAD/packages/x-date-pickers)) | [`7.12.0` -> `7.12.1`](https://renovatebot.com/diffs/npm/@mui%2fx-date-pickers/7.12.0/7.12.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fx-date-pickers/7.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fx-date-pickers/7.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fx-date-pickers/7.12.0/7.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fx-date-pickers/7.12.0/7.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [github/codeql-action](https://togithub.com/github/codeql-action) | `v3.25.15` -> `v3.26.0` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/github%2fcodeql-action/v3.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/github%2fcodeql-action/v3.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/github%2fcodeql-action/v3.25.15/v3.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/github%2fcodeql-action/v3.25.15/v3.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | action | minor | `v3.26.1` | | [knip](https://knip.dev) ([source](https://togithub.com/webpro-nl/knip/tree/HEAD/packages/knip)) | [`5.27.0` -> `5.27.2`](https://renovatebot.com/diffs/npm/knip/5.27.0/5.27.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/knip/5.27.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/knip/5.27.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/knip/5.27.0/5.27.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/knip/5.27.0/5.27.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch | | | [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint)) | [`8.0.0` -> `8.0.1`](https://renovatebot.com/diffs/npm/typescript-eslint/8.0.0/8.0.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript-eslint/8.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript-eslint/8.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript-eslint/8.0.0/8.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript-eslint/8.0.0/8.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch | `8.1.0` | | [vite](https://vitejs.dev) ([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite)) | [`5.3.5` -> `5.4.0`](https://renovatebot.com/diffs/npm/vite/5.3.5/5.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.3.5/5.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.3.5/5.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | | --- ### Release Notes
apollographql/apollo-client (@​apollo/client) ### [`v3.11.4`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3114) [Compare Source](https://togithub.com/apollographql/apollo-client/compare/v3.11.3...v3.11.4) ##### Patch Changes - [#​11994](https://togithub.com/apollographql/apollo-client/pull/11994) [`41b17e5`](https://togithub.com/apollographql/apollo-client/commit/41b17e5950f4db5ef9e32ded5bb327b3bf19e6e8) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Update the `Modifier` function type to allow `cache.modify` to return deeply partial data. - [#​11989](https://togithub.com/apollographql/apollo-client/pull/11989) [`e609156`](https://togithub.com/apollographql/apollo-client/commit/e609156c4989def88ae1a28b2e0f0378077a5528) Thanks [@​phryneas](https://togithub.com/phryneas)! - Fix a potential crash when calling `clearStore` while a query was running. Previously, calling `client.clearStore()` while a query was running had one of these results: - `useQuery` would stay in a `loading: true` state. - `useLazyQuery` would stay in a `loading: true` state, but also crash with a `"Cannot read property 'data' of undefined"` error. Now, in both cases, the hook will enter an error state with a `networkError`, and the promise returned by the `useLazyQuery` `execute` function will return a result in an error state. - [#​11994](https://togithub.com/apollographql/apollo-client/pull/11994) [`41b17e5`](https://togithub.com/apollographql/apollo-client/commit/41b17e5950f4db5ef9e32ded5bb327b3bf19e6e8) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Prevent accidental distribution on `cache.modify` field modifiers when a field is a union type array. ### [`v3.11.3`](https://togithub.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3113) [Compare Source](https://togithub.com/apollographql/apollo-client/compare/v3.11.2...v3.11.3) ##### Patch Changes - [#​11984](https://togithub.com/apollographql/apollo-client/pull/11984) [`5db1659`](https://togithub.com/apollographql/apollo-client/commit/5db1659dc07e3de697894fc1c6f00a151d068291) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Fix an issue where multiple fetches with results that returned errors would sometimes set the `data` property with an `errorPolicy` of `none`. - [#​11974](https://togithub.com/apollographql/apollo-client/pull/11974) [`c95848e`](https://togithub.com/apollographql/apollo-client/commit/c95848e859fb7ce0b3b9439ac71dff880f991450) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Fix an issue where `fetchMore` would write its result data to the cache when using it with a `no-cache` fetch policy. - [#​11974](https://togithub.com/apollographql/apollo-client/pull/11974) [`c95848e`](https://togithub.com/apollographql/apollo-client/commit/c95848e859fb7ce0b3b9439ac71dff880f991450) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - Fix an issue where executing `fetchMore` with a `no-cache` fetch policy could sometimes result in multiple network requests. - [#​11974](https://togithub.com/apollographql/apollo-client/pull/11974) [`c95848e`](https://togithub.com/apollographql/apollo-client/commit/c95848e859fb7ce0b3b9439ac71dff880f991450) Thanks [@​jerelmiller](https://togithub.com/jerelmiller)! - ##### Potentially disruptive change When calling `fetchMore` with a query that has a `no-cache` fetch policy, `fetchMore` will now throw if an `updateQuery` function is not provided. This provides a mechanism to merge the results from the `fetchMore` call with the query's previous result.
lingui/js-lingui (@​lingui/cli) ### [`v4.11.3`](https://togithub.com/lingui/js-lingui/blob/HEAD/CHANGELOG.md#4113-2024-08-09) [Compare Source](https://togithub.com/lingui/js-lingui/compare/v4.11.2...v4.11.3) ##### Bug Fixes - **cli:** add pnpm detection to command suggestions ([#​1989](https://togithub.com/lingui/js-lingui/issues/1989)) ([287a688](https://togithub.com/lingui/js-lingui/commit/287a68848d84134db10fbd373138ec8bbbf2889e)) - **extract:** escape special regex characters used in file-based routing systems when files are passed in options ([#​1984](https://togithub.com/lingui/js-lingui/issues/1984)) ([fd92d20](https://togithub.com/lingui/js-lingui/commit/fd92d203ba299816150556aee46620d2e3f7794a))
mui/material-ui (@​mui/icons-material) ### [`v5.16.7`](https://togithub.com/mui/material-ui/compare/v5.16.6...v5.16.7) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.16.6...v5.16.7)
mui/material-ui (@​mui/material) ### [`v5.16.7`](https://togithub.com/mui/material-ui/compare/v5.16.6...v5.16.7) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.16.6...v5.16.7)
mui/mui-x (@​mui/x-data-grid) ### [`v7.12.1`](https://togithub.com/mui/mui-x/blob/HEAD/CHANGELOG.md#7121) [Compare Source](https://togithub.com/mui/mui-x/compare/v7.12.0...v7.12.1) *Aug 8, 2024* We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights โœจ: - ๐ŸŽจ Charts get a new component to display color mapping in the legend - ๐Ÿš€ The `@mui/x-charts-pro` is released in alpha version ๐Ÿงช. This new package introduces two main features: - The Heatmap component - The zoom interaction on the bar, line, and scatter charts - ๐ŸŒ Improve Dutch (nl-NL) locale on the Date and Time Pickers - ๐Ÿž Bugfixes ##### Data Grid ##### `@mui/x-data-grid@7.12.1` - \[DataGrid] Fix `checkboxSelectionVisibleOnly` behavior with server-side pagination ([#​14083](https://togithub.com/mui/mui-x/issues/14083)) [@​MBilalShafi](https://togithub.com/MBilalShafi) - \[DataGrid] Fix `columnHeadersContainerRef` being `undefined` before mount ([#​14051](https://togithub.com/mui/mui-x/issues/14051)) [@​samwato](https://togithub.com/samwato) - \[DataGrid] Support Yarn PnP ([#​14126](https://togithub.com/mui/mui-x/issues/14126)) [@​cherniavskii](https://togithub.com/cherniavskii) ##### `@mui/x-data-grid-pro@7.12.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan") Same changes as in `@mui/x-data-grid@7.12.1`. ##### `@mui/x-data-grid-premium@7.12.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link "Premium plan") Same changes as in `@mui/x-data-grid-pro@7.12.1`. ##### Date and Time Pickers ##### `@mui/x-date-pickers@7.12.1` - \[l10n] Improve Dutch (nlNL) locale (pickers) ([#​14036](https://togithub.com/mui/mui-x/issues/14036)) [@​Robin1896](https://togithub.com/Robin1896) ##### `@mui/x-date-pickers-pro@7.12.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan") Same changes as in `@mui/x-date-pickers@7.12.1`. ##### Charts ##### `@mui/x-charts@7.12.1` - \[charts] Fix charts vendor publish config ([#​14073](https://togithub.com/mui/mui-x/issues/14073)) [@​JCQuintas](https://togithub.com/JCQuintas) - \[charts] Move `plugins` to `PluginProvider` ([#​14056](https://togithub.com/mui/mui-x/issues/14056)) [@​JCQuintas](https://togithub.com/JCQuintas) ##### `@mui/x-date-charts-pro@7.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan") Same changes as in `@mui/x-charts@7.12.1`, plus: - \[charts-pro] Release the pro package in alpha ([#​13859](https://togithub.com/mui/mui-x/issues/13859)) [@​alexfauquette](https://togithub.com/alexfauquette) ##### Tree View ##### `@mui/x-tree-view@7.12.1` ##### Docs - \[docs] Add a warning to promote the usage of `updateRows` ([#​14027](https://togithub.com/mui/mui-x/issues/14027)) [@​MBilalShafi](https://togithub.com/MBilalShafi) - \[docs] Disable ad in `Rich Tree View-Ordering` page ([#​14123](https://togithub.com/mui/mui-x/issues/14123)) [@​oliviertassinari](https://togithub.com/oliviertassinari) - \[docs] Redesign Date and Time Pickers overview page ([#​13241](https://togithub.com/mui/mui-x/issues/13241)) [@​noraleonte](https://togithub.com/noraleonte) - \[CHANGELOG] Polish details [@​oliviertassinari](https://togithub.com/oliviertassinari) - \[code-infra] Use concurrency 1 in CircleCI ([#​14110](https://togithub.com/mui/mui-x/issues/14110)) [@​JCQuintas](https://togithub.com/JCQuintas) - \[infra] Re-added the removal of `Latest Version` section ([#​14132](https://togithub.com/mui/mui-x/issues/14132)) [@​michelengelen](https://togithub.com/michelengelen)
github/codeql-action (github/codeql-action) ### [`v3.26.0`](https://togithub.com/github/codeql-action/compare/v3.25.15...v3.26.0) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.15...v3.26.0)
webpro-nl/knip (knip) ### [`v5.27.2`](https://togithub.com/webpro-nl/knip/compare/5.27.1...5e07bbcb1a5e00a31aaa226293c29a8587ec584e) [Compare Source](https://togithub.com/webpro-nl/knip/compare/5.27.1...5.27.2) ### [`v5.27.1`](https://togithub.com/webpro-nl/knip/releases/tag/5.27.1) [Compare Source](https://togithub.com/webpro-nl/knip/compare/5.27.0...5.27.1) - Use `pathsBasePath` if available to make `compilerOptions.paths` absolute (fixes [#​748](https://togithub.com/webpro-nl/knip/issues/748)) ([`6c866d2`](https://togithub.com/webpro-nl/knip/commit/6c866d26)) - Format docs ([`d0d5f97`](https://togithub.com/webpro-nl/knip/commit/d0d5f970)) - Increase enhanced-resolve cache duration ([`c7fa02e`](https://togithub.com/webpro-nl/knip/commit/c7fa02e1)) - Add test coverage for tsconfig.json w/ module:commonjs ([`3d5a536`](https://togithub.com/webpro-nl/knip/commit/3d5a5363)) - Add non-standard CJS require calls in TS files as entry files (as require.resolve) ([`f8f0d66`](https://togithub.com/webpro-nl/knip/commit/f8f0d669)) - Update docs ([`b2ea3a9`](https://togithub.com/webpro-nl/knip/commit/b2ea3a9a)) - Fix regression issue template ([`f6066d6`](https://togithub.com/webpro-nl/knip/commit/f6066d69)) - Aid ts issues ([`9eff1bb`](https://togithub.com/webpro-nl/knip/commit/9eff1bb1)) - Enable more tests in Bun ([`953d6f6`](https://togithub.com/webpro-nl/knip/commit/953d6f61)) - Update lockfile ([`4d8b35b`](https://togithub.com/webpro-nl/knip/commit/4d8b35b8)) - Replace resolve with enhanced-resolve ([`39e0f22`](https://togithub.com/webpro-nl/knip/commit/39e0f223)) - Temp exclude unlisted in typescript integration test ([`76752c8`](https://togithub.com/webpro-nl/knip/commit/76752c88)) - Inline playwright types ([`ea099cc`](https://togithub.com/webpro-nl/knip/commit/ea099cc0)) - Add Vue example to compilers in docs ([#​733](https://togithub.com/webpro-nl/knip/issues/733)) ([`949ddd8`](https://togithub.com/webpro-nl/knip/commit/949ddd8b)) - Minor refactor ([`8c21df5`](https://togithub.com/webpro-nl/knip/commit/8c21df51)) - Fix omitted expressions in Promise.all imports (resolves [#​725](https://togithub.com/webpro-nl/knip/issues/725)) ([`858c0b7`](https://togithub.com/webpro-nl/knip/commit/858c0b73)) - Clean up `tryResolve` etc. ([`e20a9e9`](https://togithub.com/webpro-nl/knip/commit/e20a9e9a)) - fix: pnpm workspace fixes ([#​738](https://togithub.com/webpro-nl/knip/issues/738)) ([`d5003d1`](https://togithub.com/webpro-nl/knip/commit/d5003d1b)) - Update .gitattributes to exclude binary files ([`b9b8f4d`](https://togithub.com/webpro-nl/knip/commit/b9b8f4da)) - Revert "CRLF will be replaced by LF the next time Git touches it" ([`0fdb4c9`](https://togithub.com/webpro-nl/knip/commit/0fdb4c93)) - Upgrade Astro ([`ccb7523`](https://togithub.com/webpro-nl/knip/commit/ccb7523f)) - Use latest tsx again ([`2b7d053`](https://togithub.com/webpro-nl/knip/commit/2b7d0537)) - Add `bun create @​knip/config` to installation instructions ([`fb19915`](https://togithub.com/webpro-nl/knip/commit/fb199152))
typescript-eslint/typescript-eslint (typescript-eslint) ### [`v8.0.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#801-2024-08-05) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v8.0.0...v8.0.1) This was a version bump only for typescript-eslint to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
vitejs/vite (vite) ### [`v5.4.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#540-2024-08-07) - fix(build): windows platform build output path error ([#​17818](https://togithub.com/vitejs/vite/issues/17818)) ([6ae0615](https://togithub.com/vitejs/vite/commit/6ae0615416762dd1b89393316308cf8edf115c34)), closes [#​17818](https://togithub.com/vitejs/vite/issues/17818) - fix(deps): update launch-editor to consume fix for windows paths ([#​17828](https://togithub.com/vitejs/vite/issues/17828)) ([cf2f90d](https://togithub.com/vitejs/vite/commit/cf2f90d4b9f9b16b8009b0f9d0d9f7e71e98c54d)), closes [#​17828](https://togithub.com/vitejs/vite/issues/17828) - fix(ssr): fix `global` variable name conflict ([#​17809](https://togithub.com/vitejs/vite/issues/17809)) ([6aa2206](https://togithub.com/vitejs/vite/commit/6aa220607b4f5457c1ef9ff68d75885a9abbdaf6)), closes [#​17809](https://togithub.com/vitejs/vite/issues/17809) - fix(worker): fix `importScripts` injection breaking iife code ([#​17827](https://togithub.com/vitejs/vite/issues/17827)) ([bb4ba9f](https://togithub.com/vitejs/vite/commit/bb4ba9f448da01782f585369f80c4517da087000)), closes [#​17827](https://togithub.com/vitejs/vite/issues/17827) - chore: bump typescript-eslint to v8 ([#​17624](https://togithub.com/vitejs/vite/issues/17624)) ([d1891fd](https://togithub.com/vitejs/vite/commit/d1891fda026d27f53409dec97e156a59da609196)), closes [#​17624](https://togithub.com/vitejs/vite/issues/17624) - chore(deps): update all non-major dependencies ([#​17820](https://togithub.com/vitejs/vite/issues/17820)) ([bb2f8bb](https://togithub.com/vitejs/vite/commit/bb2f8bb55fdd64e4f16831ff98921c221a5e734a)), closes [#​17820](https://togithub.com/vitejs/vite/issues/17820) - perf(ssr): do a single-pass over AST with node cache arrays ([#​17812](https://togithub.com/vitejs/vite/issues/17812)) ([81327eb](https://togithub.com/vitejs/vite/commit/81327eb980c308474a586a9cb9c0c5fff10eba34)), closes [#​17812](https://togithub.com/vitejs/vite/issues/17812)
--- ### Configuration ๐Ÿ“… **Schedule**: Branch creation - "* 0-4 * * 3" (UTC), Automerge - At any time (no schedule defined). ๐Ÿšฆ **Automerge**: Disabled by config. Please merge this manually once you are satisfied. โ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. ๐Ÿ‘ป **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/brave/ads-ui). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 6 +- package.json | 32 +- pnpm-lock.yaml | 408 ++++++++++++++------------ 3 files changed, 237 insertions(+), 209 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5b1b8b963..a06cdca61 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # v3.25.15 + uses: github/codeql-action/init@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa # v3.26.0 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -53,7 +53,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # v3.25.15 + uses: github/codeql-action/autobuild@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa # v3.26.0 # โ„น๏ธ Command-line programs to run using the OS shell. # ๐Ÿ“š https://git.io/JvXDl @@ -67,4 +67,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # v3.25.15 + uses: github/codeql-action/analyze@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa # v3.26.0 diff --git a/package.json b/package.json index 36853f94b..542c96e0d 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "dependencies": { - "@apollo/client": "3.11.2", + "@apollo/client": "3.11.4", "@emotion/react": "11.13.0", "@emotion/styled": "11.13.0", "@fontsource/inter": "5.0.20", @@ -12,17 +12,17 @@ "@fontsource/poppins": "5.0.14", "@graphql-typed-document-node/core": "3.2.0", "@jonkoops/matomo-tracker-react": "0.7.0", - "@lingui/conf": "4.11.2", - "@lingui/core": "4.11.2", - "@lingui/detect-locale": "4.11.2", - "@lingui/format-po": "4.11.2", - "@lingui/macro": "4.11.2", - "@lingui/react": "4.11.2", - "@mui/icons-material": "5.16.6", + "@lingui/conf": "4.11.3", + "@lingui/core": "4.11.3", + "@lingui/detect-locale": "4.11.3", + "@lingui/format-po": "4.11.3", + "@lingui/macro": "4.11.3", + "@lingui/react": "4.11.3", + "@mui/icons-material": "5.16.7", "@mui/lab": "5.0.0-alpha.173", - "@mui/material": "5.16.6", - "@mui/x-data-grid": "7.12.0", - "@mui/x-date-pickers": "7.12.0", + "@mui/material": "5.16.7", + "@mui/x-data-grid": "7.12.1", + "@mui/x-date-pickers": "7.12.1", "bignumber.js": "9.1.2", "dayjs": "1.11.12", "formik": "2.4.6", @@ -65,8 +65,8 @@ "@graphql-codegen/client-preset": "4.3.3", "@graphql-codegen/introspection": "4.0.3", "@graphql-eslint/eslint-plugin": "3.20.1", - "@lingui/cli": "4.11.2", - "@lingui/vite-plugin": "4.11.2", + "@lingui/cli": "4.11.3", + "@lingui/vite-plugin": "4.11.3", "@parcel/watcher": "2.4.1", "@types/lodash": "4.17.7", "@types/papaparse": "5.3.14", @@ -83,13 +83,13 @@ "eslint-plugin-react": "7.35.0", "eslint-plugin-react-hooks": "4.6.2", "husky": "9.1.4", - "knip": "5.27.0", + "knip": "5.27.2", "lint-staged": "15.2.8", "npm-run-all2": "6.2.2", "prettier": "3.3.3", "typescript": "5.5.4", - "typescript-eslint": "8.0.0", - "vite": "5.3.5", + "typescript-eslint": "8.0.1", + "vite": "5.4.0", "vite-plugin-checker": "0.7.2", "vite-tsconfig-paths": "5.0.1", "vitest": "2.0.5" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ec4d67086..19d9a5cb6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: .: dependencies: '@apollo/client': - specifier: 3.11.2 - version: 3.11.2(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 3.11.4 + version: 3.11.4(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: 11.13.0 version: 11.13.0(@types/react@18.3.3)(react@18.3.1) @@ -36,38 +36,38 @@ importers: specifier: 0.7.0 version: 0.7.0(react@18.3.1) '@lingui/conf': - specifier: 4.11.2 - version: 4.11.2(typescript@5.5.4) + specifier: 4.11.3 + version: 4.11.3(typescript@5.5.4) '@lingui/core': - specifier: 4.11.2 - version: 4.11.2 + specifier: 4.11.3 + version: 4.11.3 '@lingui/detect-locale': - specifier: 4.11.2 - version: 4.11.2 + specifier: 4.11.3 + version: 4.11.3 '@lingui/format-po': - specifier: 4.11.2 - version: 4.11.2(typescript@5.5.4) + specifier: 4.11.3 + version: 4.11.3(typescript@5.5.4) '@lingui/macro': - specifier: 4.11.2 - version: 4.11.2(@lingui/react@4.11.2(react@18.3.1))(babel-plugin-macros@3.1.0)(typescript@5.5.4) + specifier: 4.11.3 + version: 4.11.3(@lingui/react@4.11.3(react@18.3.1))(babel-plugin-macros@3.1.0)(typescript@5.5.4) '@lingui/react': - specifier: 4.11.2 - version: 4.11.2(react@18.3.1) + specifier: 4.11.3 + version: 4.11.3(react@18.3.1) '@mui/icons-material': - specifier: 5.16.6 - version: 5.16.6(@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + specifier: 5.16.7 + version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.173 - version: 5.0.0-alpha.173(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.173(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': - specifier: 5.16.6 - version: 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 5.16.7 + version: 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-data-grid': - specifier: 7.12.0 - version: 7.12.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 7.12.1 + version: 7.12.1(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/x-date-pickers': - specifier: 7.12.0 - version: 7.12.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(date-fns@3.6.0)(dayjs@1.11.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 7.12.1 + version: 7.12.1(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(date-fns@3.6.0)(dayjs@1.11.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) bignumber.js: specifier: 9.1.2 version: 9.1.2 @@ -136,11 +136,11 @@ importers: specifier: 3.20.1 version: 3.20.1(@babel/core@7.24.6)(@types/node@20.13.0)(graphql@16.9.0) '@lingui/cli': - specifier: 4.11.2 - version: 4.11.2(typescript@5.5.4) + specifier: 4.11.3 + version: 4.11.3(typescript@5.5.4) '@lingui/vite-plugin': - specifier: 4.11.2 - version: 4.11.2(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)) + specifier: 4.11.3 + version: 4.11.3(typescript@5.5.4)(vite@5.4.0(@types/node@20.13.0)) '@parcel/watcher': specifier: 2.4.1 version: 2.4.1 @@ -164,10 +164,10 @@ importers: version: 1.8.8 '@vitejs/plugin-basic-ssl': specifier: 1.1.0 - version: 1.1.0(vite@5.3.5(@types/node@20.13.0)) + version: 1.1.0(vite@5.4.0(@types/node@20.13.0)) '@vitejs/plugin-react': specifier: 4.3.1 - version: 4.3.1(vite@5.3.5(@types/node@20.13.0)) + version: 4.3.1(vite@5.4.0(@types/node@20.13.0)) babel-plugin-macros: specifier: 3.1.0 version: 3.1.0 @@ -190,8 +190,8 @@ importers: specifier: 9.1.4 version: 9.1.4 knip: - specifier: 5.27.0 - version: 5.27.0(@types/node@20.13.0)(typescript@5.5.4) + specifier: 5.27.2 + version: 5.27.2(@types/node@20.13.0)(typescript@5.5.4) lint-staged: specifier: 15.2.8 version: 15.2.8 @@ -205,17 +205,17 @@ importers: specifier: 5.5.4 version: 5.5.4 typescript-eslint: - specifier: 8.0.0 - version: 8.0.0(eslint@8.57.0)(typescript@5.5.4) + specifier: 8.0.1 + version: 8.0.1(eslint@8.57.0)(typescript@5.5.4) vite: - specifier: 5.3.5 - version: 5.3.5(@types/node@20.13.0) + specifier: 5.4.0 + version: 5.4.0(@types/node@20.13.0) vite-plugin-checker: specifier: 0.7.2 - version: 0.7.2(eslint@8.57.0)(optionator@0.9.4)(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)) + version: 0.7.2(eslint@8.57.0)(optionator@0.9.4)(typescript@5.5.4)(vite@5.4.0(@types/node@20.13.0)) vite-tsconfig-paths: specifier: 5.0.1 - version: 5.0.1(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)) + version: 5.0.1(typescript@5.5.4)(vite@5.4.0(@types/node@20.13.0)) vitest: specifier: 2.0.5 version: 2.0.5(@types/node@20.13.0) @@ -226,8 +226,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@apollo/client@3.11.2': - resolution: {integrity: sha512-HVcsJChOVut6gmmf5YukTG52EXg0cxq0LU7I/0yZPcfcJOPW2cpVqveaxZt+B1fL6ZKrYVdSa2nfuK0oSpv0Yw==} + '@apollo/client@3.11.4': + resolution: {integrity: sha512-bmgYKkULpym8wt8aXlAZ1heaYo0skLJ5ru0qJ+JCRoo03Pe+yIDbBCnqlDw6Mjj76hFkDw3HwFMgZC2Hxp30Mg==} peerDependencies: graphql: ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 @@ -1274,50 +1274,50 @@ packages: '@kamilkisiela/fast-url-parser@1.1.4': resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==} - '@lingui/babel-plugin-extract-messages@4.11.2': - resolution: {integrity: sha512-CjIUy55ICw2nQpJeO9Yhoc65nbDje3b/8Ghbux8OUMbtEYguMKi1pA21eYPYDjTUnjglVTDtapEtLN0iNPWHdg==} + '@lingui/babel-plugin-extract-messages@4.11.3': + resolution: {integrity: sha512-wLiquhtxE7qUmoKl4UStFI1XgrCkk9zwxc8z62LPpbutkyxO21B5k8fBUGlgWoKJaXbpvS8VIU8j2663q99JnQ==} engines: {node: '>=16.0.0'} - '@lingui/cli@4.11.2': - resolution: {integrity: sha512-onwASvA6KffAos+ceP1K1Hx0mPg6vb3s9Rw7VXSyaUQih225GXlrTZbYKOZkM1XgfMmhN+7kgFrRaqxjiKnLLQ==} + '@lingui/cli@4.11.3': + resolution: {integrity: sha512-ykJLmQciK81I0Cd/iLg8dSpESV9Hnsbw5+G98IEAf4exvoUGRJ2UzkeNc/HeGx3D5Fg+TI8YNWwCbZ7NAOsDCQ==} engines: {node: '>=16.0.0'} hasBin: true - '@lingui/conf@4.11.2': - resolution: {integrity: sha512-Kw45dRa3biV8CLg50R0e4vCfU750H5fFJ8zBUAIEtWkksKsRDOvf3l1qxfUF76xuLSCPhdLjYfnmW0FqMe/kdg==} + '@lingui/conf@4.11.3': + resolution: {integrity: sha512-KwUJDrbzlZEXmlmqttpB/Sd9hiIo0sqccsZaYTHzW/uULZT9T11aw/f6RcPLCVJeSKazg/7dJhR1cKlxKzvjKA==} engines: {node: '>=16.0.0'} - '@lingui/core@4.11.2': - resolution: {integrity: sha512-5wFmpHeDbLXEqaEUwlayS4SoqrCbDI3/bVRlwhmdNCeUcUYWh+7dTDlQnp4tPek1x1dEppABIkdN/0qLDdKcBQ==} + '@lingui/core@4.11.3': + resolution: {integrity: sha512-IjJxn0Kvzv+ICnGlMqn8wRIQLikCJVrolb1oyi6GqtbiuPiwKYeU0D6Hbe146lMaTN8juc3tOCBS+Fr02XqFIQ==} engines: {node: '>=16.0.0'} - '@lingui/detect-locale@4.11.2': - resolution: {integrity: sha512-oLeiH63k04PYMBWU8qLZUCDJTpTaZkr9rMBQpg6BIGt20Ga253+j33ZmTgewVgY7XxXEQWMJRqMqu8F/VfMpcQ==} + '@lingui/detect-locale@4.11.3': + resolution: {integrity: sha512-5QJsNOzRcuT97gkgMk/yUqt52adXdd+yzs/29yleWpFEANO/Z9Zt/ozwdpThf8zeFsi8TM5GRZFQ1ScpKxuPOQ==} engines: {node: '>=16.0.0'} - '@lingui/format-po@4.11.2': - resolution: {integrity: sha512-o5TxpiIjtwObkOipsuNw3zaiHlikhivFfd70paps4Nb5w0Fiaa6pKqvLmIqgsxx7/bgmySr0S/vu8hpAerr4Kg==} + '@lingui/format-po@4.11.3': + resolution: {integrity: sha512-RgEkoo0aEAk7X1xGrApcpqkz6GLdzkRLGw2jo3mmCVR0P7P9sWbJL/cd01GmR+HzAOo8Zx5oIayaKh9iyJS8tA==} engines: {node: '>=16.0.0'} - '@lingui/macro@4.11.2': - resolution: {integrity: sha512-hipoxMwwD5uKl9t6PHK7Ey/yb6pIgRyFLal2TfkqOH/HCsDR9j6Dusj74szJqzpclJv7zfWgJxk52X/pb+OYpg==} + '@lingui/macro@4.11.3': + resolution: {integrity: sha512-D0me8ZRtH0ylSavhKZu0FYf5mJ1y6kDMMPjYVDyiT5ooOI/5jjv9LIAqrdYGCBygnwsxOG1dzDw6+3s5GTs+Bg==} engines: {node: '>=16.0.0'} peerDependencies: '@lingui/react': ^4.0.0 babel-plugin-macros: 2 || 3 - '@lingui/message-utils@4.11.2': - resolution: {integrity: sha512-3oJk7ZKExk4NVa4d3CM0z0iNqIokaFOWeu7lYVzu0oEX7DP6OxNjlCAtObIhJCB0FdIPz8sXxhDkyDHFj+eIvw==} + '@lingui/message-utils@4.11.3': + resolution: {integrity: sha512-ZSw3OoKbknOw3nSrqt194g2F8r0guKow9csb46zlL7zX/yOWCaj767wvSvMoglZtVvurfQs4NPv2cohYlWORNw==} engines: {node: '>=16.0.0'} - '@lingui/react@4.11.2': - resolution: {integrity: sha512-OKHCg3yPW2xhYWoY2kOz+eP7qpdkab+4tERUvJ9QJ9bzQ6OnPLCagaRftB3nqdKuWzKoA5F2VG2QLUhF7DjpGA==} + '@lingui/react@4.11.3': + resolution: {integrity: sha512-FuorwDsz5zDpUNpyj7J8ZKqJrrVxOz1EtQ3aJGJsmnTtVO01N3nR3ckMzpYvZ71XXdDEvhUC9ihmiKbFvpaZ/w==} engines: {node: '>=16.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@lingui/vite-plugin@4.11.2': - resolution: {integrity: sha512-Z2EqvJZKtm1oioGgIVoTeHQos+tsOauvmSj41prhbHBpWq4OxuMutqho+sJPbE27lVDIAO5ac3NknqXQGEAd3A==} + '@lingui/vite-plugin@4.11.3': + resolution: {integrity: sha512-CNPtcXN/pdM8jXKLZFwazCczK7DagwcLvYL8WRt6m0wxpaMcR2s15/Sp/S6gL0PN8OXHykSzcg9nBMgXfgMaHw==} engines: {node: '>=16.0.0'} peerDependencies: vite: ^3 || ^4 || ^5.0.9 @@ -1336,11 +1336,11 @@ packages: '@types/react': optional: true - '@mui/core-downloads-tracker@5.16.6': - resolution: {integrity: sha512-kytg6LheUG42V8H/o/Ptz3olSO5kUXW9zF0ox18VnblX6bO2yif1FPItgc3ey1t5ansb1+gbe7SatntqusQupg==} + '@mui/core-downloads-tracker@5.16.7': + resolution: {integrity: sha512-RtsCt4Geed2/v74sbihWzzRs+HsIQCfclHeORh5Ynu2fS4icIKozcSubwuG7vtzq2uW3fOR1zITSP84TNt2GoQ==} - '@mui/icons-material@5.16.6': - resolution: {integrity: sha512-ceNGjoXheH9wbIFa1JHmSc9QVjJUvh18KvHrR4/FkJCSi9HXJ+9ee1kUhCOEFfuxNF8UB6WWVrIUOUgRd70t0A==} + '@mui/icons-material@5.16.7': + resolution: {integrity: sha512-UrGwDJCXEszbDI7yV047BYU5A28eGJ79keTCP4cc74WyncuVrnurlmIRxaHL8YK+LI1Kzq+/JM52IAkNnv4u+Q==} engines: {node: '>=12.0.0'} peerDependencies: '@mui/material': ^5.0.0 @@ -1368,8 +1368,8 @@ packages: '@types/react': optional: true - '@mui/material@5.16.6': - resolution: {integrity: sha512-0LUIKBOIjiFfzzFNxXZBRAyr9UQfmTAFzbt6ziOU2FDXhorNN2o3N9/32mNJbCA8zJo2FqFU6d3dtoqUDyIEfA==} + '@mui/material@5.16.7': + resolution: {integrity: sha512-cwwVQxBhK60OIOqZOVLFt55t01zmarKJiJUWbk0+8s/Ix5IaUzAShqlJchxsIQ4mSrWqgcKCCXKtIlG5H+/Jmg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -1408,8 +1408,8 @@ packages: '@emotion/styled': optional: true - '@mui/system@5.16.6': - resolution: {integrity: sha512-5xgyJjBIMPw8HIaZpfbGAaFYPwImQn7Nyh+wwKWhvkoIeDosQ1ZMVrbTclefi7G8hNmqhip04duYwYpbBFnBgw==} + '@mui/system@5.16.7': + resolution: {integrity: sha512-Jncvs/r/d/itkxh7O7opOunTqbbSSzMTHzZkNLM+FjAOg+cYAZHrPDlYe1ZGKUYORwwb2XexlWnpZp0kZ4AHuA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -1442,16 +1442,23 @@ packages: '@types/react': optional: true - '@mui/x-data-grid@7.12.0': - resolution: {integrity: sha512-5cS/v0PFMfm2na6iC77eeM/63m+gu4YYQcFycvGY6i5qm6ZywHzdcyXxx13FENKPclY1p9i19f4t4iuYW2F9Eg==} + '@mui/x-data-grid@7.12.1': + resolution: {integrity: sha512-/l9AslZKoHFfOultD2ehWIxRGuBI0RUwbhVbpAPwNP3ouDbTH0eyWfd5f6KCGhcUbG6xfceiOuTNr7uaPHqKiA==} engines: {node: '>=14.0.0'} peerDependencies: + '@emotion/react': ^11.9.0 + '@emotion/styled': ^11.8.1 '@mui/material': ^5.15.14 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true - '@mui/x-date-pickers@7.12.0': - resolution: {integrity: sha512-WU5C7QNfSpJ9cP8vl2sY7q35NW+0TUMgEy+sl98fcPhLckq3cgV1wnVxoZnQZ3BxVQAtx+7ag/MpefU03vJcVw==} + '@mui/x-date-pickers@7.12.1': + resolution: {integrity: sha512-Zj8kt3SCQbJp1qhMi+A3I4KqB8i5OY2Q11mdOEathFhqN/SQm1sUjIa1G09cGP1dPDgK1a6KM6qJGNtcw/nuWA==} engines: {node: '>=14.0.0'} peerDependencies: '@emotion/react': ^11.9.0 @@ -1769,8 +1776,8 @@ packages: '@types/yargs@17.0.32': resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} - '@typescript-eslint/eslint-plugin@8.0.0': - resolution: {integrity: sha512-STIZdwEQRXAHvNUS6ILDf5z3u95Gc8jzywunxSNqX00OooIemaaNIA0vEgynJlycL5AjabYLLrIyHd4iazyvtg==} + '@typescript-eslint/eslint-plugin@8.0.1': + resolution: {integrity: sha512-5g3Y7GDFsJAnY4Yhvk8sZtFfV6YNF2caLzjrRPUBzewjPCaj0yokePB4LJSobyCzGMzjZZYFbwuzbfDHlimXbQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 @@ -1780,8 +1787,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@8.0.0': - resolution: {integrity: sha512-pS1hdZ+vnrpDIxuFXYQpLTILglTjSYJ9MbetZctrUawogUsPdz31DIIRZ9+rab0LhYNTsk88w4fIzVheiTbWOQ==} + '@typescript-eslint/parser@8.0.1': + resolution: {integrity: sha512-5IgYJ9EO/12pOUwiBKFkpU7rS3IU21mtXzB81TNwq2xEybcmAZrE9qwDtsb5uQd9aVO9o0fdabFyAmKveXyujg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -1794,12 +1801,12 @@ packages: resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/scope-manager@8.0.0': - resolution: {integrity: sha512-V0aa9Csx/ZWWv2IPgTfY7T4agYwJyILESu/PVqFtTFz9RIS823mAze+NbnBI8xiwdX3iqeQbcTYlvB04G9wyQw==} + '@typescript-eslint/scope-manager@8.0.1': + resolution: {integrity: sha512-NpixInP5dm7uukMiRyiHjRKkom5RIFA4dfiHvalanD2cF0CLUuQqxfg8PtEUo9yqJI2bBhF+pcSafqnG3UBnRQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.0.0': - resolution: {integrity: sha512-mJAFP2mZLTBwAn5WI4PMakpywfWFH5nQZezUQdSKV23Pqo6o9iShQg1hP2+0hJJXP2LnZkWPphdIq4juYYwCeg==} + '@typescript-eslint/type-utils@8.0.1': + resolution: {integrity: sha512-+/UT25MWvXeDX9YaHv1IS6KI1fiuTto43WprE7pgSMswHbn1Jm9GEM4Txp+X74ifOWV8emu2AWcbLhpJAvD5Ng==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -1811,8 +1818,8 @@ packages: resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/types@8.0.0': - resolution: {integrity: sha512-wgdSGs9BTMWQ7ooeHtu5quddKKs5Z5dS+fHLbrQI+ID0XWJLODGMHRfhwImiHoeO2S5Wir2yXuadJN6/l4JRxw==} + '@typescript-eslint/types@8.0.1': + resolution: {integrity: sha512-PpqTVT3yCA/bIgJ12czBuE3iBlM3g4inRSC5J0QOdQFAn07TYrYEQBBKgXH1lQpglup+Zy6c1fxuwTk4MTNKIw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript-eslint/typescript-estree@5.62.0': @@ -1824,8 +1831,8 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@8.0.0': - resolution: {integrity: sha512-5b97WpKMX+Y43YKi4zVcCVLtK5F98dFls3Oxui8LbnmRsseKenbbDinmvxrWegKDMmlkIq/XHuyy0UGLtpCDKg==} + '@typescript-eslint/typescript-estree@8.0.1': + resolution: {integrity: sha512-8V9hriRvZQXPWU3bbiUV4Epo7EvgM6RTs+sUmxp5G//dBGy402S7Fx0W0QkB2fb4obCF8SInoUzvTYtc3bkb5w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -1839,8 +1846,8 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - '@typescript-eslint/utils@8.0.0': - resolution: {integrity: sha512-k/oS/A/3QeGLRvOWCg6/9rATJL5rec7/5s1YmdS0ZU6LHveJyGFwBvLhSRBv6i9xaj7etmosp+l+ViN1I9Aj/Q==} + '@typescript-eslint/utils@8.0.1': + resolution: {integrity: sha512-CBFR0G0sCt0+fzfnKaciu9IBsKvEKYwN9UZ+eeogK1fYHg4Qxk1yf/wLQkLXlq8wbU2dFlgAesxt8Gi76E8RTA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -1849,8 +1856,8 @@ packages: resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/visitor-keys@8.0.0': - resolution: {integrity: sha512-oN0K4nkHuOyF3PVMyETbpP5zp6wfyOvm7tWhTMfoqxSSsPmJIh6JNASuZDlODE8eE+0EB9uar+6+vxr9DBTYOA==} + '@typescript-eslint/visitor-keys@8.0.1': + resolution: {integrity: sha512-W5E+o0UfUcK5EgchLZsyVWqARmsM7v54/qEq6PY3YI5arkgmCzHiuk0zKSJJbm71V0xdRna4BGomkCTXz2/LkQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.2.0': @@ -2181,8 +2188,8 @@ packages: resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} engines: {node: '>=6'} - cli-table@0.3.6: - resolution: {integrity: sha512-ZkNZbnZjKERTY5NwC2SeMeLeifSPq/pubeRoTpdr3WchLlnZg6hEgvHkK5zL7KNFdd9PmHN8lxrENUwI3cE8vQ==} + cli-table@0.3.11: + resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==} engines: {node: '>= 0.2.0'} cli-truncate@2.1.0: @@ -2408,6 +2415,10 @@ packages: emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + enhanced-resolve@5.17.1: + resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} + engines: {node: '>=10.13.0'} + environment@1.1.0: resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} engines: {node: '>=18'} @@ -3127,8 +3138,8 @@ packages: keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - knip@5.27.0: - resolution: {integrity: sha512-W8+jhO7i5pXRUqOzhJGm2DT5/d9aQjyrYTCSojqJxFOvi7ku/nHKzpBO3WNf4eflJo0t3zitmUkM69g53qoZQw==} + knip@5.27.2: + resolution: {integrity: sha512-Mya1XEDq1oygibQf0uocQd02Fil8RtvNVhcFAcxypjcc6zakT7wsJtS0xvuwEitilfI0tiFC9PghmJQ3DMKuTg==} engines: {node: '>=18.6.0'} hasBin: true peerDependencies: @@ -3542,8 +3553,8 @@ packages: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} - postcss@8.4.39: - resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} + postcss@8.4.41: + resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==} engines: {node: ^10 || ^12 || >=14} prelude-ls@1.2.1: @@ -3982,6 +3993,10 @@ packages: resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} engines: {node: '>=0.10'} + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} @@ -4106,8 +4121,8 @@ packages: resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} engines: {node: '>= 0.4'} - typescript-eslint@8.0.0: - resolution: {integrity: sha512-yQWBJutWL1PmpmDddIOl9/Mi6vZjqNCjqSGBMQ4vsc2Aiodk0SnbQQWPXbSy0HNuKCuGkw1+u4aQ2mO40TdhDQ==} + typescript-eslint@8.0.1: + resolution: {integrity: sha512-V3Y+MdfhawxEjE16dWpb7/IOgeXnLwAEEkS7v8oDqNcR1oYlqWhGH/iHqHdKVdpWme1VPZ0SoywXAkCqawj2eQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -4227,8 +4242,8 @@ packages: vite: optional: true - vite@5.3.5: - resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==} + vite@5.4.0: + resolution: {integrity: sha512-5xokfMX0PIiwCMCMb9ZJcMyh5wbBun0zUzKib+L65vAZ8GY9ePZMXxFrHbr/Kyll2+LSCY7xtERPpxkBDKngwg==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -4236,6 +4251,7 @@ packages: less: '*' lightningcss: ^1.21.0 sass: '*' + sass-embedded: '*' stylus: '*' sugarss: '*' terser: ^5.4.0 @@ -4248,6 +4264,8 @@ packages: optional: true sass: optional: true + sass-embedded: + optional: true stylus: optional: true sugarss: @@ -4452,7 +4470,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@apollo/client@3.11.2(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@apollo/client@3.11.4(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) '@wry/caches': 1.0.1 @@ -5787,24 +5805,24 @@ snapshots: '@kamilkisiela/fast-url-parser@1.1.4': {} - '@lingui/babel-plugin-extract-messages@4.11.2': {} + '@lingui/babel-plugin-extract-messages@4.11.3': {} - '@lingui/cli@4.11.2(typescript@5.5.4)': + '@lingui/cli@4.11.3(typescript@5.5.4)': dependencies: '@babel/core': 7.24.6 '@babel/generator': 7.24.6 '@babel/parser': 7.24.6 '@babel/runtime': 7.25.0 '@babel/types': 7.24.6 - '@lingui/babel-plugin-extract-messages': 4.11.2 - '@lingui/conf': 4.11.2(typescript@5.5.4) - '@lingui/core': 4.11.2 - '@lingui/format-po': 4.11.2(typescript@5.5.4) - '@lingui/message-utils': 4.11.2 + '@lingui/babel-plugin-extract-messages': 4.11.3 + '@lingui/conf': 4.11.3(typescript@5.5.4) + '@lingui/core': 4.11.3 + '@lingui/format-po': 4.11.3(typescript@5.5.4) + '@lingui/message-utils': 4.11.3 babel-plugin-macros: 3.1.0 chalk: 4.1.2 chokidar: 3.5.1 - cli-table: 0.3.6 + cli-table: 0.3.11 commander: 10.0.1 convert-source-map: 2.0.0 date-fns: 3.6.0 @@ -5824,7 +5842,7 @@ snapshots: - supports-color - typescript - '@lingui/conf@4.11.2(typescript@5.5.4)': + '@lingui/conf@4.11.3(typescript@5.5.4)': dependencies: '@babel/runtime': 7.25.0 chalk: 4.1.2 @@ -5835,51 +5853,51 @@ snapshots: transitivePeerDependencies: - typescript - '@lingui/core@4.11.2': + '@lingui/core@4.11.3': dependencies: '@babel/runtime': 7.25.0 - '@lingui/message-utils': 4.11.2 + '@lingui/message-utils': 4.11.3 unraw: 3.0.0 - '@lingui/detect-locale@4.11.2': {} + '@lingui/detect-locale@4.11.3': {} - '@lingui/format-po@4.11.2(typescript@5.5.4)': + '@lingui/format-po@4.11.3(typescript@5.5.4)': dependencies: - '@lingui/conf': 4.11.2(typescript@5.5.4) - '@lingui/message-utils': 4.11.2 + '@lingui/conf': 4.11.3(typescript@5.5.4) + '@lingui/message-utils': 4.11.3 date-fns: 3.6.0 pofile: 1.1.4 transitivePeerDependencies: - typescript - '@lingui/macro@4.11.2(@lingui/react@4.11.2(react@18.3.1))(babel-plugin-macros@3.1.0)(typescript@5.5.4)': + '@lingui/macro@4.11.3(@lingui/react@4.11.3(react@18.3.1))(babel-plugin-macros@3.1.0)(typescript@5.5.4)': dependencies: '@babel/runtime': 7.25.0 '@babel/types': 7.24.6 - '@lingui/conf': 4.11.2(typescript@5.5.4) - '@lingui/core': 4.11.2 - '@lingui/message-utils': 4.11.2 - '@lingui/react': 4.11.2(react@18.3.1) + '@lingui/conf': 4.11.3(typescript@5.5.4) + '@lingui/core': 4.11.3 + '@lingui/message-utils': 4.11.3 + '@lingui/react': 4.11.3(react@18.3.1) babel-plugin-macros: 3.1.0 transitivePeerDependencies: - typescript - '@lingui/message-utils@4.11.2': + '@lingui/message-utils@4.11.3': dependencies: '@messageformat/parser': 5.1.0 js-sha256: 0.10.1 - '@lingui/react@4.11.2(react@18.3.1)': + '@lingui/react@4.11.3(react@18.3.1)': dependencies: '@babel/runtime': 7.25.0 - '@lingui/core': 4.11.2 + '@lingui/core': 4.11.3 react: 18.3.1 - '@lingui/vite-plugin@4.11.2(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0))': + '@lingui/vite-plugin@4.11.3(typescript@5.5.4)(vite@5.4.0(@types/node@20.13.0))': dependencies: - '@lingui/cli': 4.11.2(typescript@5.5.4) - '@lingui/conf': 4.11.2(typescript@5.5.4) - vite: 5.3.5(@types/node@20.13.0) + '@lingui/cli': 4.11.3(typescript@5.5.4) + '@lingui/conf': 4.11.3(typescript@5.5.4) + vite: 5.4.0(@types/node@20.13.0) transitivePeerDependencies: - supports-color - typescript @@ -5902,22 +5920,22 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@mui/core-downloads-tracker@5.16.6': {} + '@mui/core-downloads-tracker@5.16.7': {} - '@mui/icons-material@5.16.6(@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': + '@mui/icons-material@5.16.7(@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.0 - '@mui/material': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/material': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 optionalDependencies: '@types/react': 18.3.3 - '@mui/lab@5.0.0-alpha.173(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/lab@5.0.0-alpha.173(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.0 '@mui/base': 5.0.0-beta.40(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/material': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + '@mui/material': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mui/types': 7.2.15(@types/react@18.3.3) '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.3.1) clsx: 2.1.1 @@ -5929,11 +5947,11 @@ snapshots: '@emotion/styled': 11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@types/react': 18.3.3 - '@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.0 - '@mui/core-downloads-tracker': 5.16.6 - '@mui/system': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + '@mui/core-downloads-tracker': 5.16.7 + '@mui/system': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mui/types': 7.2.15(@types/react@18.3.3) '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.3.1) '@popperjs/core': 2.11.8 @@ -5970,7 +5988,7 @@ snapshots: '@emotion/react': 11.13.0(@types/react@18.3.3)(react@18.3.1) '@emotion/styled': 11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) - '@mui/system@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': + '@mui/system@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.0 '@mui/private-theming': 5.16.6(@types/react@18.3.3)(react@18.3.1) @@ -6002,11 +6020,11 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@mui/x-data-grid@7.12.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-data-grid@7.12.1(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.0 - '@mui/material': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + '@mui/material': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.3.1) '@mui/x-internals': 7.12.0(@types/react@18.3.3)(react@18.3.1) clsx: 2.1.1 @@ -6014,16 +6032,17 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) reselect: 4.1.8 + optionalDependencies: + '@emotion/react': 11.13.0(@types/react@18.3.3)(react@18.3.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - - '@emotion/react' - - '@emotion/styled' - '@types/react' - '@mui/x-date-pickers@7.12.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(date-fns@3.6.0)(dayjs@1.11.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/x-date-pickers@7.12.1(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(date-fns@3.6.0)(dayjs@1.11.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.0 - '@mui/material': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + '@mui/material': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.3.1) '@types/react-transition-group': 4.4.10 clsx: 2.1.1 @@ -6293,14 +6312,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@8.0.1(@typescript-eslint/parser@8.0.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 8.0.0(eslint@8.57.0)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 8.0.0 - '@typescript-eslint/type-utils': 8.0.0(eslint@8.57.0)(typescript@5.5.4) - '@typescript-eslint/utils': 8.0.0(eslint@8.57.0)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.0.0 + '@typescript-eslint/parser': 8.0.1(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.0.1 + '@typescript-eslint/type-utils': 8.0.1(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.0.1(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.0.1 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -6311,12 +6330,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.0.0(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/parser@8.0.1(eslint@8.57.0)(typescript@5.5.4)': dependencies: - '@typescript-eslint/scope-manager': 8.0.0 - '@typescript-eslint/types': 8.0.0 - '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.0.0 + '@typescript-eslint/scope-manager': 8.0.1 + '@typescript-eslint/types': 8.0.1 + '@typescript-eslint/typescript-estree': 8.0.1(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.0.1 debug: 4.3.6 eslint: 8.57.0 optionalDependencies: @@ -6329,15 +6348,15 @@ snapshots: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - '@typescript-eslint/scope-manager@8.0.0': + '@typescript-eslint/scope-manager@8.0.1': dependencies: - '@typescript-eslint/types': 8.0.0 - '@typescript-eslint/visitor-keys': 8.0.0 + '@typescript-eslint/types': 8.0.1 + '@typescript-eslint/visitor-keys': 8.0.1 - '@typescript-eslint/type-utils@8.0.0(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/type-utils@8.0.1(eslint@8.57.0)(typescript@5.5.4)': dependencies: - '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4) - '@typescript-eslint/utils': 8.0.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/typescript-estree': 8.0.1(typescript@5.5.4) + '@typescript-eslint/utils': 8.0.1(eslint@8.57.0)(typescript@5.5.4) debug: 4.3.6 ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: @@ -6348,7 +6367,7 @@ snapshots: '@typescript-eslint/types@5.62.0': {} - '@typescript-eslint/types@8.0.0': {} + '@typescript-eslint/types@8.0.1': {} '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.4)': dependencies: @@ -6364,10 +6383,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.0.0(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@8.0.1(typescript@5.5.4)': dependencies: - '@typescript-eslint/types': 8.0.0 - '@typescript-eslint/visitor-keys': 8.0.0 + '@typescript-eslint/types': 8.0.1 + '@typescript-eslint/visitor-keys': 8.0.1 debug: 4.3.6 globby: 11.1.0 is-glob: 4.0.3 @@ -6394,12 +6413,12 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@8.0.0(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/utils@8.0.1(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@typescript-eslint/scope-manager': 8.0.0 - '@typescript-eslint/types': 8.0.0 - '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.0.1 + '@typescript-eslint/types': 8.0.1 + '@typescript-eslint/typescript-estree': 8.0.1(typescript@5.5.4) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -6410,25 +6429,25 @@ snapshots: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.0.0': + '@typescript-eslint/visitor-keys@8.0.1': dependencies: - '@typescript-eslint/types': 8.0.0 + '@typescript-eslint/types': 8.0.1 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} - '@vitejs/plugin-basic-ssl@1.1.0(vite@5.3.5(@types/node@20.13.0))': + '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.0(@types/node@20.13.0))': dependencies: - vite: 5.3.5(@types/node@20.13.0) + vite: 5.4.0(@types/node@20.13.0) - '@vitejs/plugin-react@4.3.1(vite@5.3.5(@types/node@20.13.0))': + '@vitejs/plugin-react@4.3.1(vite@5.4.0(@types/node@20.13.0))': dependencies: '@babel/core': 7.24.6 '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6) '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.3.5(@types/node@20.13.0) + vite: 5.4.0(@types/node@20.13.0) transitivePeerDependencies: - supports-color @@ -6855,7 +6874,7 @@ snapshots: cli-spinners@2.9.2: {} - cli-table@0.3.6: + cli-table@0.3.11: dependencies: colors: 1.0.3 @@ -7067,6 +7086,11 @@ snapshots: emoji-regex@8.0.0: {} + enhanced-resolve@5.17.1: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + environment@1.1.0: {} error-ex@1.3.2: @@ -7974,12 +7998,13 @@ snapshots: dependencies: json-buffer: 3.0.1 - knip@5.27.0(@types/node@20.13.0)(typescript@5.5.4): + knip@5.27.2(@types/node@20.13.0)(typescript@5.5.4): dependencies: '@nodelib/fs.walk': 1.2.8 '@snyk/github-codeowners': 1.1.0 '@types/node': 20.13.0 easy-table: 1.2.0 + enhanced-resolve: 5.17.1 fast-glob: 3.3.2 jiti: 1.21.6 js-yaml: 4.1.0 @@ -7987,7 +8012,6 @@ snapshots: picocolors: 1.0.1 picomatch: 4.0.2 pretty-ms: 9.0.0 - resolve: 1.22.8 smol-toml: 1.1.4 strip-json-comments: 5.0.1 summary: 2.1.0 @@ -8391,7 +8415,7 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss@8.4.39: + postcss@8.4.41: dependencies: nanoid: 3.3.7 picocolors: 1.0.1 @@ -8865,6 +8889,8 @@ snapshots: symbol-observable@4.0.0: {} + tapable@2.2.1: {} + text-table@0.2.0: {} through@2.3.8: {} @@ -8972,11 +8998,11 @@ snapshots: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - typescript-eslint@8.0.0(eslint@8.57.0)(typescript@5.5.4): + typescript-eslint@8.0.1(eslint@8.57.0)(typescript@5.5.4): dependencies: - '@typescript-eslint/eslint-plugin': 8.0.0(@typescript-eslint/parser@8.0.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) - '@typescript-eslint/parser': 8.0.0(eslint@8.57.0)(typescript@5.5.4) - '@typescript-eslint/utils': 8.0.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/eslint-plugin': 8.0.1(@typescript-eslint/parser@8.0.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/parser': 8.0.1(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.0.1(eslint@8.57.0)(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: @@ -9044,18 +9070,19 @@ snapshots: debug: 4.3.6 pathe: 1.1.2 tinyrainbow: 1.2.0 - vite: 5.3.5(@types/node@20.13.0) + vite: 5.4.0(@types/node@20.13.0) transitivePeerDependencies: - '@types/node' - less - lightningcss - sass + - sass-embedded - stylus - sugarss - supports-color - terser - vite-plugin-checker@0.7.2(eslint@8.57.0)(optionator@0.9.4)(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)): + vite-plugin-checker@0.7.2(eslint@8.57.0)(optionator@0.9.4)(typescript@5.5.4)(vite@5.4.0(@types/node@20.13.0)): dependencies: '@babel/code-frame': 7.24.6 ansi-escapes: 4.3.2 @@ -9067,7 +9094,7 @@ snapshots: npm-run-path: 4.0.1 strip-ansi: 6.0.1 tiny-invariant: 1.3.3 - vite: 5.3.5(@types/node@20.13.0) + vite: 5.4.0(@types/node@20.13.0) vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.11 @@ -9077,21 +9104,21 @@ snapshots: optionator: 0.9.4 typescript: 5.5.4 - vite-tsconfig-paths@5.0.1(typescript@5.5.4)(vite@5.3.5(@types/node@20.13.0)): + vite-tsconfig-paths@5.0.1(typescript@5.5.4)(vite@5.4.0(@types/node@20.13.0)): dependencies: debug: 4.3.6 globrex: 0.1.2 tsconfck: 3.1.0(typescript@5.5.4) optionalDependencies: - vite: 5.3.5(@types/node@20.13.0) + vite: 5.4.0(@types/node@20.13.0) transitivePeerDependencies: - supports-color - typescript - vite@5.3.5(@types/node@20.13.0): + vite@5.4.0(@types/node@20.13.0): dependencies: esbuild: 0.21.5 - postcss: 8.4.39 + postcss: 8.4.41 rollup: 4.18.0 optionalDependencies: '@types/node': 20.13.0 @@ -9115,7 +9142,7 @@ snapshots: tinybench: 2.8.0 tinypool: 1.0.0 tinyrainbow: 1.2.0 - vite: 5.3.5(@types/node@20.13.0) + vite: 5.4.0(@types/node@20.13.0) vite-node: 2.0.5(@types/node@20.13.0) why-is-node-running: 2.3.0 optionalDependencies: @@ -9124,6 +9151,7 @@ snapshots: - less - lightningcss - sass + - sass-embedded - stylus - sugarss - supports-color