From f83423c56e899e7daed95a76bf6828b27ff3b327 Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Fri, 23 Aug 2024 17:01:43 -0700 Subject: [PATCH 1/9] feat(setup): setting up ability to run whole graph locally; --- servers/client-api/.env.example | 7 ++- servers/client-api/README.md | 3 +- servers/client-api/config/router.yaml | 4 +- servers/client-api/config/supergraph.yaml | 76 +++++++++++++++++++++-- turbo.json | 16 ++++- 5 files changed, 95 insertions(+), 11 deletions(-) diff --git a/servers/client-api/.env.example b/servers/client-api/.env.example index 30fc17bc8..cafa86774 100644 --- a/servers/client-api/.env.example +++ b/servers/client-api/.env.example @@ -1,4 +1,7 @@ +REDIS_ENDPOINT=localhost:6379 +REDIS_PROTOCOL=redis +APP_ENVIRONMENT=local APOLLO_KEY=API_KEY_HERE -APOLLO_GRAPH_REF=pocket-client-api@development +APOLLO_GRAPH_REF=pocket-client-api@current PORT=4050 -OTLP_COLLECTOR_HOST=host.docker.internal \ No newline at end of file +OTLP_COLLECTOR_HOST=localhost \ No newline at end of file diff --git a/servers/client-api/README.md b/servers/client-api/README.md index d8aece3cf..9d33c56ee 100644 --- a/servers/client-api/README.md +++ b/servers/client-api/README.md @@ -12,7 +12,8 @@ ## Commands - `docker build -t router .` builds the router image with the tag `router` for local testing. -- `rover dev --supergraph-config supergraph.yaml --router-config router.yaml` to run the Router locally without Docker (using [Rover]). You'll need to update the `supergraph.yaml` file to point at the local versions of your subgraphs. **Make sure to set the required environment variables ahead of time!** +- `dotenv rover dev --supergraph-config ./config/supergraph.yaml --router-config ./config/router.yaml` to run the Router locally without Docker (using [Rover]). You'll need to update the `supergraph.yaml` file to point at the local versions of your subgraphs. **Make sure to set the required environment variables ahead of time!** +- Alternatively you can use the prod or dev graph if you have an api key set like: `dotenv rover dev --graph-ref pocket-client-api@current --router-config ./config/router.yaml` and override it like `dotenv rover dev --graph-ref pocket-client-api@current --router-config ./config/router.yaml --name parser-graphql-wrapper --url http://localhost:4001`. `rover dev --name parser-graphql-wrapper --url http://localhost:4001` can also be ran in a seperate terminal window anytime after the first dev command is ran. - `docker run -it --env APOLLO_KEY --env APOLLO_GRAPH_REF -p4000:4000 router` runs the same router image you'll run in production. You can now query the router at `http://localhost:4000`. - Make sure to set the env vars `APOLLO_KEY` and `APOLLO_GRAPH_REF` first - You can alternatively create a file (e.g., `.env`) and run `docker run -it --env-file .env -v $(pwd)/config/router.yaml:/config/router.yaml -v $(pwd)/rhai:/dist/rhai -p4050:4050 router --dev --config /config/router.yaml`. **Make sure not to check the `.env` file into source control!** This will enable hot reloading and dev mode but use the production schemas. diff --git a/servers/client-api/config/router.yaml b/servers/client-api/config/router.yaml index c078c1212..4f78029ad 100644 --- a/servers/client-api/config/router.yaml +++ b/servers/client-api/config/router.yaml @@ -6,7 +6,7 @@ supergraph: query_planning: cache: redis: - urls: ['rediss-cluster://${env.REDIS_ENDPOINT}'] + urls: ['${env.REDIS_PROTOCOL:-rediss-cluster}://${env.REDIS_ENDPOINT}'] ttl: 48h # optional, by default no expiration include_subgraph_errors: all: true # Propagate errors from all subgraphs @@ -80,5 +80,5 @@ apq: router: cache: redis: - urls: ['rediss-cluster://${env.REDIS_ENDPOINT}'] + urls: ['${env.REDIS_PROTOCOL:-rediss-cluster}://${env.REDIS_ENDPOINT}'] ttl: 24h # optional, by default no expiration diff --git a/servers/client-api/config/supergraph.yaml b/servers/client-api/config/supergraph.yaml index 0b073a840..6340b4894 100644 --- a/servers/client-api/config/supergraph.yaml +++ b/servers/client-api/config/supergraph.yaml @@ -1,10 +1,76 @@ -federation_version: =2.4.7 +federation_version: =2.7.0 subgraphs: - products: + # Pocket Monorepo + annotations-api: + routing_url: https://annotations-api.readitlater.com + # schema: + # subgraph_url: https://annotations-api.readitlater.com + schema: # Schema downloaded from GraphOS registry, does not poll for updates + graphref: pocket-client-api@current + subgraph: annotations-api + featureflags: + routing_url: https://featureflags.readitlater.com/graphql + schema: + subgraph_url: https://featureflags.readitlater.com/graphql + image-api: + routing_url: https://image-api.readitlater.com + schema: + subgraph_url: https://image-api.readitlater.com + list-api: + routing_url: https://list-api.readitlater.com + schema: + subgraph_url: https://list-api.readitlater.com + parser: + #routing_url: https://parser-graphql-wrapper.readitlater.com + #schema: + # subgraph_url: https://parser-graphql-wrapper.readitlater.com routing_url: http://localhost:4001 schema: subgraph_url: http://localhost:4001 - users: - routing_url: http://localhost:4002 + shareable-lists-api: + routing_url: https://shareablelistsapi.readitlater.com + schema: + subgraph_url: https://shareablelistsapi.readitlater.com + shares-api: + routing_url: https://shares-api.readitlater.com + schema: + subgraph_url: https://shares-api.readitlater.com + user: + routing_url: https://user-api.readitlater.com + schema: + subgraph_url: https://user-api.readitlater.com + user-list-search: + routing_url: https://user-list-search.readitlater.com/graphql + schema: + subgraph_url: https://user-list-search.readitlater.com/graphql + + # # Content Monorepo + collection: + routing_url: https://collection-api.readitlater.com + # schema: + # subgraph_url: https://collection-api.readitlater.com + schema: # Schema downloaded from GraphOS registry, does not poll for updates + graphref: pocket-client-api@current + subgraph: collection + curated-corpus: + routing_url: https://curated-corpus-api.readitlater.com + # schema: + # subgraph_url: https://curated-corpus-api.readitlater.com + schema: # Schema downloaded from GraphOS registry, does not poll for updates + graphref: pocket-client-api@current + subgraph: curated-corpus + # curation-tools: + # routing_url: https://curation-tools-api.readitlater.com + # schema: + # subgraph_url: https://curation-tools-api.readitlater.com + recommendation-api: + routing_url: https://recommendation-api.readitlater.com/ schema: - subgraph_url: http://localhost:4002 + subgraph_url: https://recommendation-api.readitlater.com/ + syndication: + routing_url: https://syndication-api-wrapper.readitlater.com/ + # schema: + # subgraph_url: https://syndication-api-wrapper.readitlater.com/ + schema: # Schema downloaded from GraphOS registry, does not poll for updates + graphref: pocket-client-api@current + subgraph: syndication \ No newline at end of file diff --git a/turbo.json b/turbo.json index a88b7410d..41cb26dc2 100644 --- a/turbo.json +++ b/turbo.json @@ -6,7 +6,21 @@ ".env", ".env.example" ], - "globalEnv": ["NODE_ENV", "GITHUB_TOKEN", "NPM_TOKEN", "GH_TOKEN"], + "globalEnv": [ + "NODE_ENV", + "GITHUB_TOKEN", + "NPM_TOKEN", + "GH_TOKEN", + "PARSER_BASE_ENDPOINT", + "PARSER_DATA_PATH", + "LOG_LEVEL", + "CHARACTER_MAP", + "POSITION_MAP", + "MD5_RANDOMIZER", + "LETTER_INDEX", + "SALT_1", + "SALT_2" + ], "tasks": { "build": { "dependsOn": ["^build"], From f96a447c411beeb73c5e5a0f254ce935e1d7938d Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Fri, 23 Aug 2024 17:02:20 -0700 Subject: [PATCH 2/9] feat(display): setting up the deriver logic for syndication --- servers/parser-graphql-wrapper/schema.graphql | 84 ++++++++- .../src/__generated__/resolvers-types.ts | 171 +++++++++++++----- .../src/apollo/resolvers.ts | 41 +++-- .../src/models/PocketMetadataModel.ts | 28 ++- .../src/generated/graphql/types.ts | 2 +- 5 files changed, 257 insertions(+), 69 deletions(-) diff --git a/servers/parser-graphql-wrapper/schema.graphql b/servers/parser-graphql-wrapper/schema.graphql index 4f4c38e6c..5bef6dd6d 100644 --- a/servers/parser-graphql-wrapper/schema.graphql +++ b/servers/parser-graphql-wrapper/schema.graphql @@ -19,6 +19,11 @@ See Section 5.6 of the RFC 3339 profile of the ISO 8601 standard: https://www.ie """ scalar ISOString +""" +A date in the YYYY-MM-DD format. +""" +scalar Date + """ A string formatted with CommonMark markdown, plus the strikethrough extension from GFM. @@ -169,6 +174,12 @@ type Item "The client preview/display logic for this url" preview: PocketMetadata + @requires( + fields: "syndicatedArticle { title excerpt mainImage publishedAt authorNames publisherUrl publisher { logo name } } " + ) + + "If the item has a syndicated counterpart the syndication information" + syndicatedArticle: SyndicatedArticle @external } type ArticleMarkdown { @@ -440,6 +451,33 @@ extend type CorpusItem @key(fields: "url") { Time to read in minutes. Is nullable. """ timeToRead: Int + + """ + The title of the Approved Item. + """ + title: String! @external + """ + The excerpt of the Approved Item. + """ + excerpt: String! @external + """ + The publication date for this story. + """ + datePublished: Date @external + """ + The name of the online publication that published this story. + """ + publisher: String! @external + """ + The image for this item's accompanying picture. + """ + image: Image! @external + + """ + The preview of the search result + """ + preview: PocketMetadata! + @requires(fields: "title excerpt datePublished publisher image { url }") } extend type Collection @key(fields: "slug") { """ @@ -524,7 +562,7 @@ Card preview data for Items resolved from reader view Should be used to create a view if Reader Mode cannot be rendered (e.g. the link is visited by an anonymous -Pocket user, or a Pocket User that does not have the +Pocket user, or a Pocket User that does not have the underlying Item in their Saves). Due to legal obligations we can only display Reader Mode for SavedItems. """ @@ -541,10 +579,46 @@ type PocketShare @key(fields: "targetUrl") { preview: PocketMetadata } -"""A node in a CorpusSearchConnection result""" -type CorpusSearchNode @key (fields: "url") { - """For federation only""" +""" +A node in a CorpusSearchConnection result +""" +type CorpusSearchNode @key(fields: "url") { + """ + For federation only + """ url: Url! @inaccessible - """The preview of the search result""" + """ + The preview of the search result + """ preview: PocketMetadata! } + +extend type SyndicatedArticle @external { + "Title of syndicated article" + title: String! + "Array of author names in string format" + authorNames: [String]! + + "AWSDateTime — Format: YYYY-MM-DDThh:mm:ss.sssZ" + publishedAt: String! + + "Primary image to use in surfacing this content" + mainImage: String + + "Excerpt " + excerpt: String + + "The canonical publisher URL. Automatically set at time of creation but can be changed by editor." + publisherUrl: String! + + "The manually set publisher information for this article" + publisher: Publisher +} + + +extend type Publisher @external { + "Square logo to use for the publisher" + logo: String + "Name of the publisher of the article" + name: String +} \ No newline at end of file diff --git a/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts b/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts index 0c55866a8..9ba12fb3c 100644 --- a/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts +++ b/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts @@ -20,6 +20,8 @@ export type Scalars = { Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } Float: { input: number; output: number; } + /** A date in the YYYY-MM-DD format. */ + Date: { input: any; output: any; } /** A String representing a date in the format of `yyyy-MM-dd HH:mm:ss` */ DateString: { input: any; output: any; } /** @@ -84,6 +86,16 @@ export type Collection = { export type CorpusItem = { __typename?: 'CorpusItem'; + /** The publication date for this story. */ + datePublished?: Maybe; + /** The excerpt of the Approved Item. */ + excerpt: Scalars['String']['output']; + /** The image for this item's accompanying picture. */ + image: Image; + /** The preview of the search result */ + preview: PocketMetadata; + /** The name of the online publication that published this story. */ + publisher: Scalars['String']['output']; /** * Provides short url for the given_url in the format: https://pocket.co/. * marked as beta because it's not ready yet for large client request. @@ -91,6 +103,8 @@ export type CorpusItem = { shortUrl?: Maybe; /** Time to read in minutes. Is nullable. */ timeToRead?: Maybe; + /** The title of the Approved Item. */ + title: Scalars['String']['output']; url: Scalars['Url']['output']; }; @@ -271,6 +285,8 @@ export type Item = { shortUrl?: Maybe; /** If the url is an Article, the text in SSML format for speaking, i.e. Listen */ ssml?: Maybe; + /** If the item has a syndicated counterpart the syndication information */ + syndicatedArticle?: Maybe; /** * Date this item was first parsed in Pocket * @deprecated Clients should not use this @@ -463,6 +479,14 @@ export type PocketShare = { targetUrl: Scalars['ValidUrl']['output']; }; +export type Publisher = { + __typename?: 'Publisher'; + /** Square logo to use for the publisher */ + logo?: Maybe; + /** Name of the publisher of the article */ + name?: Maybe; +}; + export type Query = { __typename?: 'Query'; /** @@ -525,6 +549,24 @@ export type ReaderViewResult = { slug: Scalars['ID']['output']; }; +export type SyndicatedArticle = { + __typename?: 'SyndicatedArticle'; + /** Array of author names in string format */ + authorNames: Array>; + /** Excerpt */ + excerpt?: Maybe; + /** Primary image to use in surfacing this content */ + mainImage?: Maybe; + /** AWSDateTime — Format: YYYY-MM-DDThh:mm:ss.sssZ */ + publishedAt: Scalars['String']['output']; + /** The manually set publisher information for this article */ + publisher?: Maybe; + /** The canonical publisher URL. Automatically set at time of creation but can be changed by editor. */ + publisherUrl: Scalars['String']['output']; + /** Title of syndicated article */ + title: Scalars['String']['output']; +}; + /** Represents content that could not be parsed into a valid Marticle* component. */ export type UnMarseable = { __typename?: 'UnMarseable'; @@ -680,8 +722,9 @@ export type ResolversTypes = ResolversObject<{ Int: ResolverTypeWrapper; CacheControlScope: CacheControlScope; Collection: ResolverTypeWrapper; - CorpusItem: ResolverTypeWrapper; + CorpusItem: ResolverTypeWrapper & { preview: ResolversTypes['PocketMetadata'] }>; CorpusSearchNode: ResolverTypeWrapper & { preview: ResolversTypes['PocketMetadata'] }>; + Date: ResolverTypeWrapper; DateString: ResolverTypeWrapper; DomainMetadata: ResolverTypeWrapper; ISOString: ResolverTypeWrapper; @@ -710,10 +753,12 @@ export type ResolversTypes = ResolversObject<{ PocketMetadata: ResolverTypeWrapper['PocketMetadata']>; PocketMetadataSource: PocketMetadataSource; PocketShare: ResolverTypeWrapper & { preview?: Maybe }>; + Publisher: ResolverTypeWrapper; Query: ResolverTypeWrapper<{}>; ReaderFallback: ResolverTypeWrapper['ReaderFallback']>; ReaderInterstitial: ResolverTypeWrapper & { itemCard?: Maybe }>; ReaderViewResult: ResolverTypeWrapper & { fallbackPage?: Maybe }>; + SyndicatedArticle: ResolverTypeWrapper; UnMarseable: ResolverTypeWrapper; Url: ResolverTypeWrapper; ValidUrl: ResolverTypeWrapper; @@ -731,8 +776,9 @@ export type ResolversParentTypes = ResolversObject<{ BulletedListElement: BulletedListElement; Int: Scalars['Int']['output']; Collection: Collection; - CorpusItem: CorpusItem; + CorpusItem: Omit & { preview: ResolversParentTypes['PocketMetadata'] }; CorpusSearchNode: Omit & { preview: ResolversParentTypes['PocketMetadata'] }; + Date: Scalars['Date']['output']; DateString: Scalars['DateString']['output']; DomainMetadata: DomainMetadata; ISOString: Scalars['ISOString']['output']; @@ -758,10 +804,12 @@ export type ResolversParentTypes = ResolversObject<{ OEmbed: Omit & { item?: Maybe }; PocketMetadata: ResolversInterfaceTypes['PocketMetadata']; PocketShare: Omit & { preview?: Maybe }; + Publisher: Publisher; Query: {}; ReaderFallback: ResolversUnionTypes['ReaderFallback']; ReaderInterstitial: Omit & { itemCard?: Maybe }; ReaderViewResult: Omit & { fallbackPage?: Maybe }; + SyndicatedArticle: SyndicatedArticle; UnMarseable: UnMarseable; Url: Scalars['Url']['output']; ValidUrl: Scalars['ValidUrl']['output']; @@ -803,9 +851,15 @@ export type CollectionResolvers = ResolversObject<{ __resolveReference?: ReferenceResolver, { __typename: 'CorpusItem' } & GraphQLRecursivePick, ContextType>; + + + + preview?: Resolver & GraphQLRecursivePick, ContextType>; + shortUrl?: Resolver, { __typename: 'CorpusItem' } & GraphQLRecursivePick, ContextType>; timeToRead?: Resolver, { __typename: 'CorpusItem' } & GraphQLRecursivePick, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; }>; @@ -816,6 +870,10 @@ export type CorpusSearchNodeResolvers; }>; +export interface DateScalarConfig extends GraphQLScalarTypeConfig { + name: 'Date'; +} + export interface DateStringScalarConfig extends GraphQLScalarTypeConfig { name: 'DateString'; } @@ -846,50 +904,51 @@ export type ImageResolvers = ResolversObject<{ __resolveReference?: ReferenceResolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; - ampUrl?: Resolver, ParentType, ContextType>; - article?: Resolver, ParentType, ContextType>; - authors?: Resolver>>, ParentType, ContextType>; - contentLength?: Resolver, ParentType, ContextType>; - datePublished?: Resolver, ParentType, ContextType>; - dateResolved?: Resolver, ParentType, ContextType>; - domain?: Resolver, ParentType, ContextType>; - domainId?: Resolver, ParentType, ContextType>; - domainMetadata?: Resolver, ParentType, ContextType>; - encoding?: Resolver, ParentType, ContextType>; - excerpt?: Resolver, ParentType, ContextType>; - givenUrl?: Resolver; - hasImage?: Resolver, ParentType, ContextType>; - hasOldDupes?: Resolver, ParentType, ContextType>; - hasVideo?: Resolver, ParentType, ContextType>; - id?: Resolver; - images?: Resolver>>, ParentType, ContextType>; - innerDomainRedirect?: Resolver, ParentType, ContextType>; - isArticle?: Resolver, ParentType, ContextType>; - isIndex?: Resolver, ParentType, ContextType>; - itemId?: Resolver; - language?: Resolver, ParentType, ContextType>; - listenDuration?: Resolver, ParentType, ContextType>; - loginRequired?: Resolver, ParentType, ContextType>; - marticle?: Resolver>, ParentType, ContextType>; - mimeType?: Resolver, ParentType, ContextType>; - normalUrl?: Resolver; - originDomainId?: Resolver, ParentType, ContextType>; - preview?: Resolver, ParentType, ContextType>; - readerSlug?: Resolver; - resolvedId?: Resolver, ParentType, ContextType>; - resolvedNormalUrl?: Resolver, ParentType, ContextType>; - resolvedUrl?: Resolver, ParentType, ContextType>; - responseCode?: Resolver, ParentType, ContextType>; - shortUrl?: Resolver, ParentType, ContextType>; - ssml?: Resolver, ParentType, ContextType>; - timeFirstParsed?: Resolver, ParentType, ContextType>; - timeToRead?: Resolver, ParentType, ContextType>; - title?: Resolver, ParentType, ContextType>; - topImage?: Resolver, ParentType, ContextType>; - topImageUrl?: Resolver, ParentType, ContextType>; - usedFallback?: Resolver, ParentType, ContextType>; - videos?: Resolver>>, ParentType, ContextType>; - wordCount?: Resolver, ParentType, ContextType>; + ampUrl?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + article?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + authors?: Resolver>>, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + contentLength?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + datePublished?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + dateResolved?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + domain?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + domainId?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + domainMetadata?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + encoding?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + excerpt?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + givenUrl?: Resolver | GraphQLRecursivePick), ContextType>; + hasImage?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + hasOldDupes?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + hasVideo?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + id?: Resolver | GraphQLRecursivePick), ContextType>; + images?: Resolver>>, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + innerDomainRedirect?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + isArticle?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + isIndex?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + itemId?: Resolver | GraphQLRecursivePick), ContextType>; + language?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + listenDuration?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + loginRequired?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + marticle?: Resolver>, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + mimeType?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + normalUrl?: Resolver | GraphQLRecursivePick), ContextType>; + originDomainId?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + preview?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick) & GraphQLRecursivePick, ContextType>; + readerSlug?: Resolver | GraphQLRecursivePick), ContextType>; + resolvedId?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + resolvedNormalUrl?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + resolvedUrl?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + responseCode?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + shortUrl?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + ssml?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + + timeFirstParsed?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + timeToRead?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + title?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + topImage?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + topImageUrl?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + usedFallback?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + videos?: Resolver>>, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + wordCount?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; __isTypeOf?: IsTypeOfResolverFn; }>; @@ -1023,6 +1082,12 @@ export type PocketShareResolvers; }>; +export type PublisherResolvers = ResolversObject<{ + logo?: Resolver, ParentType, ContextType>; + name?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}>; + export type QueryResolvers = ResolversObject<{ getItemByUrl?: Resolver, ParentType, ContextType, RequireFields>; itemByUrl?: Resolver, ParentType, ContextType, RequireFields>; @@ -1045,6 +1110,17 @@ export type ReaderViewResultResolvers; }>; +export type SyndicatedArticleResolvers = ResolversObject<{ + authorNames?: Resolver>, ParentType, ContextType>; + excerpt?: Resolver, ParentType, ContextType>; + mainImage?: Resolver, ParentType, ContextType>; + publishedAt?: Resolver; + publisher?: Resolver, ParentType, ContextType>; + publisherUrl?: Resolver; + title?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}>; + export type UnMarseableResolvers = ResolversObject<{ html?: Resolver; __isTypeOf?: IsTypeOfResolverFn; @@ -1076,6 +1152,7 @@ export type Resolvers = ResolversObject<{ Collection?: CollectionResolvers; CorpusItem?: CorpusItemResolvers; CorpusSearchNode?: CorpusSearchNodeResolvers; + Date?: GraphQLScalarType; DateString?: GraphQLScalarType; DomainMetadata?: DomainMetadataResolvers; ISOString?: GraphQLScalarType; @@ -1100,10 +1177,12 @@ export type Resolvers = ResolversObject<{ OEmbed?: OEmbedResolvers; PocketMetadata?: PocketMetadataResolvers; PocketShare?: PocketShareResolvers; + Publisher?: PublisherResolvers; Query?: QueryResolvers; ReaderFallback?: ReaderFallbackResolvers; ReaderInterstitial?: ReaderInterstitialResolvers; ReaderViewResult?: ReaderViewResultResolvers; + SyndicatedArticle?: SyndicatedArticleResolvers; UnMarseable?: UnMarseableResolvers; Url?: GraphQLScalarType; ValidUrl?: GraphQLScalarType; diff --git a/servers/parser-graphql-wrapper/src/apollo/resolvers.ts b/servers/parser-graphql-wrapper/src/apollo/resolvers.ts index 0f084cf6d..699ba4e72 100644 --- a/servers/parser-graphql-wrapper/src/apollo/resolvers.ts +++ b/servers/parser-graphql-wrapper/src/apollo/resolvers.ts @@ -47,7 +47,7 @@ export const resolvers: Resolvers = { } if ('givenUrl' in item) { - return itemFromUrl(item.givenUrl, context); + return { ...item, ...itemFromUrl(item.givenUrl, context) }; } else if ('itemId' in item) { const itemLoaderType = await context.dataLoaders.itemIdLoader.load( item.itemId, @@ -55,10 +55,11 @@ export const resolvers: Resolvers = { if (!itemLoaderType.url) { throw new Error(`No url found for itemId: ${item.itemId}`); } - return itemFromUrl(itemLoaderType.url, context); + return { ...item, ...itemFromUrl(itemLoaderType.url, context) }; } }, - article: async (parent, args, { dataSources }, info) => { + article: async (uncastParent, args, { dataSources }, info) => { + const parent = uncastParent as Item; if (parent.article) { // Use the parent resolver for article content if available // (e.g. via refreshArticle mutation), otherwise load the article @@ -78,7 +79,8 @@ export const resolvers: Resolvers = { return item.article || null; }, - marticle: async (parent, args, { dataSources }, info) => { + marticle: async (uncastParent, args, { dataSources }, info) => { + const parent = uncastParent as Item; // Note: When the Web & Android teams switch to MArticle, make all the parser article call use // MediaTypeParam.AS_COMMENTS and add back this optimization: // @@ -106,12 +108,13 @@ export const resolvers: Resolvers = { : ([] as MarticleElement[]); }, ssml: async (parent, args, { dataSources }, info) => { - if (!parent.article && parent.isArticle) { + const castParent = parent as Item; + if (!castParent.article && castParent.isArticle) { // If the field was requested via refreshArticle we need to clear the cache before we request data const clearCache = isInResolverChain('refreshItemArticle', info.path); - parent.article = ( + castParent.article = ( await dataSources.parserAPI.getItemData( - parent.givenUrl, + castParent.givenUrl, { videos: MediaTypeParam.DIV_TAG, images: MediaTypeParam.DIV_TAG, @@ -121,12 +124,14 @@ export const resolvers: Resolvers = { ) ).article; } - if (!parent.article) { + if (!castParent.article) { return null; } - return SSMLModel.generateSSML(parent); + return SSMLModel.generateSSML(parent as Item); }, - shortUrl: async (parent, args, context) => { + shortUrl: async (uncastParent, args, context) => { + const parent = uncastParent as Item; + // If the givenUrl is already a short share url, or there is a // short url key on the parent from a previous step, return the // same value to avoid another db trip @@ -147,11 +152,11 @@ export const resolvers: Resolvers = { const clearCache = isInResolverChain('refreshItemArticle', info.path); const preview = await context.dataSources.pocketMetadataModel.derivePocketMetadata( - parent, + parent as Item, context, clearCache, ); - return { ...preview, item: parent }; + return { ...preview, item: parent as Item }; }, }, MarticleComponent: { @@ -210,6 +215,18 @@ export const resolvers: Resolvers = { return null; } }, + preview: async (parent: { url: string }, _, context) => { + console.log(parent); + const item = await context.dataSources.parserAPI.getItemData(parent.url); + + const preview = + await context.dataSources.pocketMetadataModel.derivePocketMetadata( + item, + context, + false, + ); + return { ...preview, item }; + }, }, Collection: { shortUrl: async ({ slug }, args, { dataSources, dataLoaders }) => { diff --git a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts index 21cd50db5..2fb5e7d1a 100644 --- a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts +++ b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts @@ -40,11 +40,29 @@ export class PocketMetadataModel { const url = item.givenUrl; // the url we are going to key everything on. const fallbackParserPocketMetadata: ItemSummary = { id: item.id, - image: item.topImage ?? item.images?.[0], - excerpt: item.excerpt, - title: item.title ?? item.givenUrl, - authors: item.authors, - domain: item.domainMetadata, + image: item.syndicatedArticle?.mainImage + ? { + url: item.syndicatedArticle?.mainImage, + imageId: 0, + src: item.syndicatedArticle?.mainImage, + } + : (item.topImage ?? item.images?.[0]), + excerpt: item.syndicatedArticle?.excerpt ?? item.excerpt, + title: item.syndicatedArticle?.title ?? item.title ?? item.givenUrl, + authors: item.syndicatedArticle?.authorNames + ? item.syndicatedArticle.authorNames.map((author, index) => { + return { + name: author, + id: index.toFixed(), + }; + }) + : item.authors, + domain: item.syndicatedArticle?.publisher + ? { + logo: item.syndicatedArticle.publisher.logo, + name: item.syndicatedArticle.publisher.name, + } + : item.domainMetadata, datePublished: item.datePublished ? DateTime.fromSQL(item.datePublished, { zone: config.mysql.tz, diff --git a/servers/v3-proxy-api/src/generated/graphql/types.ts b/servers/v3-proxy-api/src/generated/graphql/types.ts index 2fc111b3a..8bf193fb5 100644 --- a/servers/v3-proxy-api/src/generated/graphql/types.ts +++ b/servers/v3-proxy-api/src/generated/graphql/types.ts @@ -3438,7 +3438,7 @@ export type Topic = { displayName: Scalars['String']['output']; /** If returned a note to show to the user about the topic */ displayNote?: Maybe; - /** The id of the topic */ + /** The legacy UUID id of the topic */ id: Scalars['ID']['output']; /** Whether or not clients should show this topic ot users */ isDisplayed: Scalars['Boolean']['output']; From 56caff941793f472dd6fb48f446d0f7282b9bdda Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Fri, 23 Aug 2024 17:27:54 -0700 Subject: [PATCH 3/9] feat(setup): setting up ability to run whole graph locally --- servers/parser-graphql-wrapper/schema.graphql | 1 + .../src/apollo/resolvers.ts | 13 +++++-- .../src/models/PocketMetadataModel.ts | 37 ++++++++++++++----- 3 files changed, 38 insertions(+), 13 deletions(-) diff --git a/servers/parser-graphql-wrapper/schema.graphql b/servers/parser-graphql-wrapper/schema.graphql index 5bef6dd6d..16ef3acb7 100644 --- a/servers/parser-graphql-wrapper/schema.graphql +++ b/servers/parser-graphql-wrapper/schema.graphql @@ -479,6 +479,7 @@ extend type CorpusItem @key(fields: "url") { preview: PocketMetadata! @requires(fields: "title excerpt datePublished publisher image { url }") } + extend type Collection @key(fields: "slug") { """ Provides short url for the given_url in the format: https://pocket.co/. diff --git a/servers/parser-graphql-wrapper/src/apollo/resolvers.ts b/servers/parser-graphql-wrapper/src/apollo/resolvers.ts index 699ba4e72..811d8e590 100644 --- a/servers/parser-graphql-wrapper/src/apollo/resolvers.ts +++ b/servers/parser-graphql-wrapper/src/apollo/resolvers.ts @@ -8,7 +8,12 @@ import { import { SSMLModel } from '../models/SSMLModel'; import { fallbackPage } from '../readerView'; import { PocketDefaultScalars } from '@pocket-tools/apollo-utils'; -import { Item, Resolvers, Videoness } from '../__generated__/resolvers-types'; +import { + CorpusItem, + Item, + Resolvers, + Videoness, +} from '../__generated__/resolvers-types'; import { BoolStringParam, MediaTypeParam } from '../datasources/ParserAPI'; import { extractSlugFromReadUrl, @@ -27,6 +32,7 @@ export const resolvers: Resolvers = { item, context, false, + { syndicatedArticle: item.syndicatedArticle }, ); return { url: representation.url, @@ -155,6 +161,7 @@ export const resolvers: Resolvers = { parent as Item, context, clearCache, + { syndicatedArticle: parent.syndicatedArticle }, ); return { ...preview, item: parent as Item }; }, @@ -215,8 +222,7 @@ export const resolvers: Resolvers = { return null; } }, - preview: async (parent: { url: string }, _, context) => { - console.log(parent); + preview: async (parent, _, context) => { const item = await context.dataSources.parserAPI.getItemData(parent.url); const preview = @@ -224,6 +230,7 @@ export const resolvers: Resolvers = { item, context, false, + { corpusItem: parent as CorpusItem }, ); return { ...preview, item }; }, diff --git a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts index 2fb5e7d1a..3bae603ae 100644 --- a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts +++ b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts @@ -3,6 +3,9 @@ import { PocketMetadataSource, PocketMetadata, ItemSummary, + SyndicatedArticle, + CorpusItem, + Collection, } from '../__generated__/resolvers-types'; import config from '../config'; import { DateTime } from 'luxon'; @@ -36,31 +39,42 @@ export class PocketMetadataModel { item: Item, context: IContext, refresh: boolean, + extraData: { + corpusItem?: CorpusItem; + syndicatedArticle?: SyndicatedArticle; + collection?: Collection; + } = {}, ): Promise { + const { corpusItem, syndicatedArticle, collection } = extraData; const url = item.givenUrl; // the url we are going to key everything on. const fallbackParserPocketMetadata: ItemSummary = { id: item.id, - image: item.syndicatedArticle?.mainImage + image: syndicatedArticle?.mainImage ? { - url: item.syndicatedArticle?.mainImage, + url: syndicatedArticle?.mainImage, imageId: 0, - src: item.syndicatedArticle?.mainImage, + src: syndicatedArticle?.mainImage, } : (item.topImage ?? item.images?.[0]), - excerpt: item.syndicatedArticle?.excerpt ?? item.excerpt, - title: item.syndicatedArticle?.title ?? item.title ?? item.givenUrl, - authors: item.syndicatedArticle?.authorNames - ? item.syndicatedArticle.authorNames.map((author, index) => { + excerpt: + syndicatedArticle?.excerpt ?? corpusItem?.excerpt ?? item.excerpt, + title: + syndicatedArticle?.title ?? + corpusItem?.title ?? + item.title ?? + item.givenUrl, + authors: syndicatedArticle?.authorNames + ? syndicatedArticle.authorNames.map((author, index) => { return { name: author, id: index.toFixed(), }; }) : item.authors, - domain: item.syndicatedArticle?.publisher + domain: syndicatedArticle?.publisher ? { - logo: item.syndicatedArticle.publisher.logo, - name: item.syndicatedArticle.publisher.name, + logo: syndicatedArticle.publisher.logo, + name: syndicatedArticle.publisher.name, } : item.domainMetadata, datePublished: item.datePublished @@ -69,9 +83,12 @@ export class PocketMetadataModel { }).toJSDate() : null, url: url, + //TODO: when we have a native pocket type, change the type and source source: PocketMetadataSource.PocketParser, __typename: 'ItemSummary', }; + //TODO: re-enable the other parsers once the main data is setup + return fallbackParserPocketMetadata; // First we filter to our sources. // We do this first because some sources could be behind a feature flag or not enabled From aa9ad4911b182f8a52b24ed8a81b90952098074b Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Mon, 26 Aug 2024 11:14:09 -0700 Subject: [PATCH 4/9] fix(parser): adding in collection data --- servers/parser-graphql-wrapper/schema.graphql | 18 ++- .../src/__generated__/resolvers-types.ts | 32 +++- .../src/apollo/resolvers.ts | 10 +- .../src/models/PocketMetadataModel.ts | 150 +++++++++++++----- turbo.json | 4 +- 5 files changed, 165 insertions(+), 49 deletions(-) diff --git a/servers/parser-graphql-wrapper/schema.graphql b/servers/parser-graphql-wrapper/schema.graphql index 16ef3acb7..5208de887 100644 --- a/servers/parser-graphql-wrapper/schema.graphql +++ b/servers/parser-graphql-wrapper/schema.graphql @@ -175,11 +175,15 @@ type Item "The client preview/display logic for this url" preview: PocketMetadata @requires( - fields: "syndicatedArticle { title excerpt mainImage publishedAt authorNames publisherUrl publisher { logo name } } " + fields: "syndicatedArticle { title excerpt mainImage publishedAt authorNames publisherUrl publisher { logo name } } collection { title slug excerpt publishedAt authors { name } imageUrl } " ) "If the item has a syndicated counterpart the syndication information" syndicatedArticle: SyndicatedArticle @external + + collection: Collection @external + + # corpusItem: CorpusItem @external } type ArticleMarkdown { @@ -487,6 +491,15 @@ extend type Collection @key(fields: "slug") { """ shortUrl: Url @tag(name: "beta") slug: String! @external + title: String! @external + authors: [CollectionAuthor!]! @external + excerpt: Markdown @external + publishedAt: DateString @external + imageUrl: Url @external +} + +extend type CollectionAuthor @external { + name: String! } """ @@ -507,6 +520,9 @@ enum PocketMetadataSource { POCKET_PARSER OPENGRAPH OEMBED + CURATED_CORPUS + COLLECTION + SYNDICATION } interface PocketMetadata { diff --git a/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts b/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts index 9ba12fb3c..551d2dd0a 100644 --- a/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts +++ b/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts @@ -76,12 +76,22 @@ export enum CacheControlScope { export type Collection = { __typename?: 'Collection'; + authors: Array; + excerpt?: Maybe; + imageUrl?: Maybe; + publishedAt?: Maybe; /** * Provides short url for the given_url in the format: https://pocket.co/. * marked as beta because it's not ready yet for large client request. */ shortUrl?: Maybe; slug: Scalars['String']['output']; + title: Scalars['String']['output']; +}; + +export type CollectionAuthor = { + __typename?: 'CollectionAuthor'; + name: Scalars['String']['output']; }; export type CorpusItem = { @@ -178,6 +188,7 @@ export type Item = { article?: Maybe; /** List of Authors involved with this article */ authors?: Maybe>>; + collection?: Maybe; /** * The length in bytes of the content * @deprecated Clients should not use this @@ -468,9 +479,12 @@ export type PocketMetadata = { }; export enum PocketMetadataSource { + Collection = 'COLLECTION', + CuratedCorpus = 'CURATED_CORPUS', Oembed = 'OEMBED', Opengraph = 'OPENGRAPH', - PocketParser = 'POCKET_PARSER' + PocketParser = 'POCKET_PARSER', + Syndication = 'SYNDICATION' } export type PocketShare = { @@ -722,6 +736,7 @@ export type ResolversTypes = ResolversObject<{ Int: ResolverTypeWrapper; CacheControlScope: CacheControlScope; Collection: ResolverTypeWrapper; + CollectionAuthor: ResolverTypeWrapper; CorpusItem: ResolverTypeWrapper & { preview: ResolversTypes['PocketMetadata'] }>; CorpusSearchNode: ResolverTypeWrapper & { preview: ResolversTypes['PocketMetadata'] }>; Date: ResolverTypeWrapper; @@ -776,6 +791,7 @@ export type ResolversParentTypes = ResolversObject<{ BulletedListElement: BulletedListElement; Int: Scalars['Int']['output']; Collection: Collection; + CollectionAuthor: CollectionAuthor; CorpusItem: Omit & { preview: ResolversParentTypes['PocketMetadata'] }; CorpusSearchNode: Omit & { preview: ResolversParentTypes['PocketMetadata'] }; Date: Scalars['Date']['output']; @@ -844,8 +860,18 @@ export type BulletedListElementResolvers = ResolversObject<{ __resolveReference?: ReferenceResolver, { __typename: 'Collection' } & GraphQLRecursivePick, ContextType>; + + + + shortUrl?: Resolver, { __typename: 'Collection' } & GraphQLRecursivePick, ContextType>; + + __isTypeOf?: IsTypeOfResolverFn; +}>; + +export type CollectionAuthorResolvers = ResolversObject<{ + name?: Resolver; __isTypeOf?: IsTypeOfResolverFn; }>; @@ -907,6 +933,7 @@ export type ItemResolvers, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; article?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; authors?: Resolver>>, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + contentLength?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; datePublished?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; dateResolved?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; @@ -932,7 +959,7 @@ export type ItemResolvers, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; normalUrl?: Resolver | GraphQLRecursivePick), ContextType>; originDomainId?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; - preview?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick) & GraphQLRecursivePick, ContextType>; + preview?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick) & GraphQLRecursivePick, ContextType>; readerSlug?: Resolver | GraphQLRecursivePick), ContextType>; resolvedId?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; resolvedNormalUrl?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; @@ -1150,6 +1177,7 @@ export type Resolvers = ResolversObject<{ Author?: AuthorResolvers; BulletedListElement?: BulletedListElementResolvers; Collection?: CollectionResolvers; + CollectionAuthor?: CollectionAuthorResolvers; CorpusItem?: CorpusItemResolvers; CorpusSearchNode?: CorpusSearchNodeResolvers; Date?: GraphQLScalarType; diff --git a/servers/parser-graphql-wrapper/src/apollo/resolvers.ts b/servers/parser-graphql-wrapper/src/apollo/resolvers.ts index 811d8e590..e2c0c0785 100644 --- a/servers/parser-graphql-wrapper/src/apollo/resolvers.ts +++ b/servers/parser-graphql-wrapper/src/apollo/resolvers.ts @@ -32,7 +32,10 @@ export const resolvers: Resolvers = { item, context, false, - { syndicatedArticle: item.syndicatedArticle }, + { + syndicatedArticle: item.syndicatedArticle, + collection: item.collection, + }, ); return { url: representation.url, @@ -161,7 +164,10 @@ export const resolvers: Resolvers = { parent as Item, context, clearCache, - { syndicatedArticle: parent.syndicatedArticle }, + { + syndicatedArticle: parent.syndicatedArticle, + collection: parent.collection, + }, ); return { ...preview, item: parent as Item }; }, diff --git a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts index 3bae603ae..008863c56 100644 --- a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts +++ b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts @@ -45,50 +45,20 @@ export class PocketMetadataModel { collection?: Collection; } = {}, ): Promise { - const { corpusItem, syndicatedArticle, collection } = extraData; + const { syndicatedArticle, collection } = extraData; const url = item.givenUrl; // the url we are going to key everything on. - const fallbackParserPocketMetadata: ItemSummary = { - id: item.id, - image: syndicatedArticle?.mainImage - ? { - url: syndicatedArticle?.mainImage, - imageId: 0, - src: syndicatedArticle?.mainImage, - } - : (item.topImage ?? item.images?.[0]), - excerpt: - syndicatedArticle?.excerpt ?? corpusItem?.excerpt ?? item.excerpt, - title: - syndicatedArticle?.title ?? - corpusItem?.title ?? - item.title ?? - item.givenUrl, - authors: syndicatedArticle?.authorNames - ? syndicatedArticle.authorNames.map((author, index) => { - return { - name: author, - id: index.toFixed(), - }; - }) - : item.authors, - domain: syndicatedArticle?.publisher - ? { - logo: syndicatedArticle.publisher.logo, - name: syndicatedArticle.publisher.name, - } - : item.domainMetadata, - datePublished: item.datePublished - ? DateTime.fromSQL(item.datePublished, { - zone: config.mysql.tz, - }).toJSDate() - : null, - url: url, - //TODO: when we have a native pocket type, change the type and source - source: PocketMetadataSource.PocketParser, - __typename: 'ItemSummary', - }; - //TODO: re-enable the other parsers once the main data is setup - return fallbackParserPocketMetadata; + const fallbackParserPocketMetadata = this.transformParserFallback(item); + const syndicatedArticlePocketMetadata = this.transformSyndicatedArticle( + item, + syndicatedArticle, + ); + const collectionPocketMetadata = this.transformCollection(item, collection); + if (syndicatedArticlePocketMetadata) { + return syndicatedArticlePocketMetadata; + } + if (collectionPocketMetadata) { + return collectionPocketMetadata; + } // First we filter to our sources. // We do this first because some sources could be behind a feature flag or not enabled @@ -207,4 +177,98 @@ export class PocketMetadataModel { return res == null ? null : this.fromEntity(res); } + + transformCollection( + item: Item, + collection: Collection, + ): ItemSummary | undefined { + if (!collection) { + return; + } + return { + id: item.id, + image: { + url: collection.imageUrl, + imageId: 0, + src: collection.imageUrl, + }, + excerpt: collection.excerpt, // TODO: Convert from markdown + title: collection.title, + authors: collection.authors.map((author, index) => { + return { + name: author.name, + id: index.toFixed(), + }; + }), + domain: { + logo: 'https://getpocket.com/favicon.ico', + name: 'Pocket', + }, + datePublished: item.datePublished + ? DateTime.fromSQL(item.datePublished, { + zone: config.mysql.tz, + }).toJSDate() + : null, + url: item.givenUrl, + source: PocketMetadataSource.Collection, + __typename: 'ItemSummary', + }; + } + + transformSyndicatedArticle( + item: Item, + syndicatedArticle?: SyndicatedArticle, + ): ItemSummary | undefined { + if (!syndicatedArticle) { + return; + } + + return { + id: item.id, + image: { + url: syndicatedArticle.mainImage, + imageId: 0, + src: syndicatedArticle.mainImage, + }, + excerpt: syndicatedArticle.excerpt, + title: syndicatedArticle.title, + authors: syndicatedArticle.authorNames.map((author, index) => { + return { + name: author, + id: index.toFixed(), + }; + }), + domain: { + logo: syndicatedArticle.publisher.logo, + name: syndicatedArticle.publisher.name, + }, + datePublished: item.datePublished + ? DateTime.fromSQL(item.datePublished, { + zone: config.mysql.tz, + }).toJSDate() + : null, + url: item.givenUrl, + source: PocketMetadataSource.Syndication, + __typename: 'ItemSummary', + }; + } + + transformParserFallback(item: Item): ItemSummary | undefined { + return { + id: item.id, + image: item.topImage ?? item.images?.[0], + excerpt: item.excerpt, + title: item.title ?? item.givenUrl, + authors: item.authors, + domain: item.domainMetadata, + datePublished: item.datePublished + ? DateTime.fromSQL(item.datePublished, { + zone: config.mysql.tz, + }).toJSDate() + : null, + url: item.givenUrl, + source: PocketMetadataSource.PocketParser, + __typename: 'ItemSummary', + }; + } } diff --git a/turbo.json b/turbo.json index 41cb26dc2..b5b8347ab 100644 --- a/turbo.json +++ b/turbo.json @@ -19,7 +19,9 @@ "MD5_RANDOMIZER", "LETTER_INDEX", "SALT_1", - "SALT_2" + "SALT_2", + "UNLEASH_ENDPOINT", + "UNLEASH_KEY" ], "tasks": { "build": { From 4b5fcf9b558d7939c1fb7cb92b56ff839a4a6191 Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Tue, 27 Aug 2024 08:26:19 -0700 Subject: [PATCH 5/9] fix(image): ensuring the preview de-wraps image urls --- package.json | 2 +- packages/image-utils/.npmignore | 8 + packages/image-utils/README.md | 3 + packages/image-utils/eslint.config.mjs | 3 + packages/image-utils/jest.config.js | 7 + packages/image-utils/package.json | 91 + packages/image-utils/src/index.ts | 1 + .../image-utils/src}/utils.spec.ts | 5 +- .../image-utils/src}/utils.ts | 3 +- packages/image-utils/tsconfig.json | 9 + pnpm-lock.yaml | 5311 ++++++----------- servers/image-api/package.json | 4 +- servers/image-api/src/resolvers/index.ts | 2 +- servers/parser-graphql-wrapper/package.json | 3 +- .../src/models/PocketMetadataModel.ts | 14 +- 15 files changed, 1965 insertions(+), 3501 deletions(-) create mode 100644 packages/image-utils/.npmignore create mode 100644 packages/image-utils/README.md create mode 100644 packages/image-utils/eslint.config.mjs create mode 100644 packages/image-utils/jest.config.js create mode 100644 packages/image-utils/package.json create mode 100644 packages/image-utils/src/index.ts rename {servers/image-api/src/pocketImageCache => packages/image-utils/src}/utils.spec.ts (89%) rename {servers/image-api/src/pocketImageCache => packages/image-utils/src}/utils.ts (93%) create mode 100644 packages/image-utils/tsconfig.json diff --git a/package.json b/package.json index 2def9c994..ce9ccbf7c 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "@pocket-tools/eslint-config": "workspace:*", "syncpack": "^12.4.0", "tsconfig": "workspace:*", - "turbo": "^2.0.14" + "turbo": "^2.1.0" }, "packageManager": "pnpm@9.7.1", "engines": { diff --git a/packages/image-utils/.npmignore b/packages/image-utils/.npmignore new file mode 100644 index 000000000..e254b6528 --- /dev/null +++ b/packages/image-utils/.npmignore @@ -0,0 +1,8 @@ +src +.github +.idea +.prettier* +.eslintrc.js +.tsconfig.js +*.spec.ts +*.integration.ts \ No newline at end of file diff --git a/packages/image-utils/README.md b/packages/image-utils/README.md new file mode 100644 index 000000000..d916c026e --- /dev/null +++ b/packages/image-utils/README.md @@ -0,0 +1,3 @@ +# Image Utils + +We use this repository as a place to keep code we use across our backend services that implement anything to do with image urls diff --git a/packages/image-utils/eslint.config.mjs b/packages/image-utils/eslint.config.mjs new file mode 100644 index 000000000..638ac644e --- /dev/null +++ b/packages/image-utils/eslint.config.mjs @@ -0,0 +1,3 @@ +import packages from '@pocket-tools/eslint-config/packages'; +import tseslint from 'typescript-eslint'; +export default tseslint.config(...packages); diff --git a/packages/image-utils/jest.config.js b/packages/image-utils/jest.config.js new file mode 100644 index 000000000..3dc86cb25 --- /dev/null +++ b/packages/image-utils/jest.config.js @@ -0,0 +1,7 @@ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + testMatch: ['**/?(*.)+(jest|spec).[jt]s?(x)'], + testPathIgnorePatterns: ['/dist/'], + setupFilesAfterEnv: ['jest-extended/all'], +}; diff --git a/packages/image-utils/package.json b/packages/image-utils/package.json new file mode 100644 index 000000000..51feb26ed --- /dev/null +++ b/packages/image-utils/package.json @@ -0,0 +1,91 @@ +{ + "name": "@pocket-tools/image-utils", + "version": "0.0.0-development", + "description": "Utilities for working with image urls", + "keywords": [ + "image" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/Pocket/pocket-monorepo.git" + }, + "license": "Apache-2.0", + "author": "", + "main": "dist/index.js", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", + "files": [ + "dist", + "package.json" + ], + "scripts": { + "build": "tsup src/index.ts --format cjs,esm --dts", + "dev": "pnpm run build --watch", + "format": "eslint --fix", + "lint": "eslint --fix-dry-run", + "semantic-release": "semantic-release", + "test": "jest", + "test:watch": "pnpm run test -- --watch" + }, + "release": { + "branches": [ + "main" + ], + "extends": "semantic-release-monorepo", + "plugins": [ + [ + "@semantic-release/commit-analyzer", + { + "preset": "conventionalcommits", + "parserOpts": { + "noteKeywords": [ + "BREAKING CHANGE", + "BREAKING CHANGES", + "BREAKING" + ] + } + } + ], + [ + "@semantic-release/release-notes-generator", + { + "preset": "conventionalcommits", + "parserOpts": { + "noteKeywords": [ + "BREAKING CHANGE", + "BREAKING CHANGES", + "BREAKING" + ] + }, + "writerOpts": { + "commitsSort": [ + "subject", + "scope" + ] + } + } + ], + "@semantic-release/npm", + "@semantic-release/github" + ] + }, + "dependencies": { + "parse-url": "9.2.0" + }, + "devDependencies": { + "@jest/globals": "29.7.0", + "@pocket-tools/eslint-config": "workspace:*", + "@types/jest": "29.5.12", + "@types/node": "^20.16", + "jest": "29.7.0", + "jest-extended": "4.0.2", + "semantic-release": "24.1.0", + "semantic-release-monorepo": "8.0.2", + "ts-jest": "29.2.4", + "ts-node": "10.9.2", + "tsconfig": "workspace:*", + "tsup": "8.2.4", + "typescript": "5.5.4" + }, + "peerDependencies": {} +} diff --git a/packages/image-utils/src/index.ts b/packages/image-utils/src/index.ts new file mode 100644 index 000000000..04bca77e0 --- /dev/null +++ b/packages/image-utils/src/index.ts @@ -0,0 +1 @@ +export * from './utils'; diff --git a/servers/image-api/src/pocketImageCache/utils.spec.ts b/packages/image-utils/src/utils.spec.ts similarity index 89% rename from servers/image-api/src/pocketImageCache/utils.spec.ts rename to packages/image-utils/src/utils.spec.ts index 5ed532ac5..ed8b50c64 100644 --- a/servers/image-api/src/pocketImageCache/utils.spec.ts +++ b/packages/image-utils/src/utils.spec.ts @@ -1,4 +1,3 @@ -import { NotFoundError } from '@pocket-tools/apollo-utils'; import { getOriginalUrlIfPocketImageCached } from './utils'; describe('getOriginalUrlIfPocketImageCached', () => { @@ -29,8 +28,6 @@ describe('getOriginalUrlIfPocketImageCached', () => { const url = 'https://pocket-image-cache.com/direct?resize=2000w'; expect(() => { getOriginalUrlIfPocketImageCached(url); - }).toThrowError( - new NotFoundError('Pocket image cache url is missing a source url'), - ); + }).toThrow(new Error('Source URL Missing')); }); }); diff --git a/servers/image-api/src/pocketImageCache/utils.ts b/packages/image-utils/src/utils.ts similarity index 93% rename from servers/image-api/src/pocketImageCache/utils.ts rename to packages/image-utils/src/utils.ts index 0265fe587..94125cd8b 100644 --- a/servers/image-api/src/pocketImageCache/utils.ts +++ b/packages/image-utils/src/utils.ts @@ -1,4 +1,3 @@ -import { NotFoundError } from '@pocket-tools/apollo-utils'; import parseUrl from 'parse-url'; //Functions on this page taken from Web Client. @@ -19,7 +18,7 @@ export const getOriginalUrlIfPocketImageCached = (url: string): string => { if (isEncoded) { const urlToUse = extractImageCacheUrl(url); if (!urlToUse) { - throw new NotFoundError('Pocket image cache url is missing a source url'); + throw new Error('Source URL Missing'); } return decodeURIComponent(urlToUse); } diff --git a/packages/image-utils/tsconfig.json b/packages/image-utils/tsconfig.json new file mode 100644 index 000000000..cc4df5007 --- /dev/null +++ b/packages/image-utils/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "tsconfig/library.json", + "compilerOptions": { + "outDir": "dist", + "rootDir": "src" + }, + "exclude": ["node_modules", "dist"], + "include": ["src/**/*.ts", "src/config"] +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 050e63cb6..2efd41335 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,7 +17,7 @@ importers: devDependencies: '@commitlint/cli': specifier: 19.4.0 - version: 19.4.0(@types/node@22.5.0)(typescript@5.7.0-dev.20240822) + version: 19.4.0(@types/node@22.5.0)(typescript@5.7.0-dev.20240827) '@commitlint/config-conventional': specifier: ^19.2.2 version: 19.2.2 @@ -26,13 +26,13 @@ importers: version: link:packages/eslint-config syncpack: specifier: ^12.4.0 - version: 12.4.0(typescript@5.7.0-dev.20240822) + version: 12.4.0(typescript@5.7.0-dev.20240827) tsconfig: specifier: workspace:* version: link:packages/tsconfig turbo: - specifier: ^2.0.14 - version: 2.0.14 + specifier: ^2.1.0 + version: 2.1.0 infrastructure/account-data-deleter: dependencies: @@ -56,7 +56,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -99,7 +99,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -142,7 +142,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -176,7 +176,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -219,7 +219,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -259,7 +259,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -302,7 +302,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -345,7 +345,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -388,7 +388,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -431,7 +431,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -474,7 +474,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -517,7 +517,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -560,7 +560,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -603,7 +603,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -646,7 +646,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -689,7 +689,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -732,7 +732,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -778,7 +778,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -818,7 +818,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -861,7 +861,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -926,7 +926,7 @@ importers: version: 14.0.0-beta.11 ts-jest: specifier: 29.2.4 - version: 29.2.4(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)))(typescript@5.5.4) + version: 29.2.4(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(esbuild@0.23.1)(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)))(typescript@5.5.4) ts-node: specifier: 10.9.2 version: 10.9.2(@types/node@20.16.1)(typescript@5.5.4) @@ -1088,7 +1088,7 @@ importers: version: 9.0.2 jwk-to-pem: specifier: ^2.0.5 - version: 2.0.5 + version: 2.0.6 jwks-rsa: specifier: 3.1.0 version: 3.1.0 @@ -1152,7 +1152,7 @@ importers: version: 9.0.2 jwk-to-pem: specifier: ^2.0.5 - version: 2.0.5 + version: 2.0.6 tslib: specifier: 2.6.3 version: 2.6.3 @@ -1348,7 +1348,7 @@ importers: version: 8.26.0(@opentelemetry/api@1.9.0) braze-api: specifier: ^2.9.1 - version: 2.9.1(encoding@0.1.13) + version: 2.10.0(encoding@0.1.13) fetch-retry: specifier: ^5.0.6 version: 5.0.6 @@ -1721,7 +1721,7 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -1758,7 +1758,7 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -1767,19 +1767,19 @@ importers: dependencies: '@eslint/js': specifier: ^9.7.0 - version: 9.9.0 + version: 9.9.1 eslint: specifier: ^9.7.0 - version: 9.9.0(jiti@1.21.6) + version: 9.9.1(jiti@1.21.6) eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@9.9.0(jiti@1.21.6)) + version: 9.1.0(eslint@9.9.1(jiti@1.21.6)) eslint-plugin-package-json: specifier: ^0.15.2 - version: 0.15.2(eslint@9.9.0(jiti@1.21.6))(jsonc-eslint-parser@2.4.0) + version: 0.15.2(eslint@9.9.1(jiti@1.21.6))(jsonc-eslint-parser@2.4.0) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(eslint-config-prettier@9.1.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(prettier@3.3.3) + version: 5.2.1(eslint-config-prettier@9.1.0(eslint@9.9.1(jiti@1.21.6)))(eslint@9.9.1(jiti@1.21.6))(prettier@3.3.3) jsonc-eslint-parser: specifier: ^2.4.0 version: 2.4.0 @@ -1791,7 +1791,7 @@ importers: version: 5.5.4 typescript-eslint: specifier: ^8.2.0 - version: 8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) + version: 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4) packages/feature-flags-client: dependencies: @@ -1828,7 +1828,53 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) + typescript: + specifier: 5.5.4 + version: 5.5.4 + + packages/image-utils: + dependencies: + parse-url: + specifier: 9.2.0 + version: 9.2.0 + devDependencies: + '@jest/globals': + specifier: 29.7.0 + version: 29.7.0 + '@pocket-tools/eslint-config': + specifier: workspace:* + version: link:../eslint-config + '@types/jest': + specifier: 29.5.12 + version: 29.5.12 + '@types/node': + specifier: ^20.16 + version: 20.16.1 + jest: + specifier: 29.7.0 + version: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)) + jest-extended: + specifier: 4.0.2 + version: 4.0.2(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4))) + semantic-release: + specifier: 24.1.0 + version: 24.1.0(typescript@5.5.4) + semantic-release-monorepo: + specifier: 8.0.2 + version: 8.0.2(semantic-release@24.1.0(typescript@5.5.4)) + ts-jest: + specifier: 29.2.4 + version: 29.2.4(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(esbuild@0.23.1)(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)))(typescript@5.5.4) + ts-node: + specifier: 10.9.2 + version: 10.9.2(@types/node@20.16.1)(typescript@5.5.4) + tsconfig: + specifier: workspace:* + version: link:../tsconfig + tsup: + specifier: 8.2.4 + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -1871,7 +1917,7 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -1917,7 +1963,7 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -1960,7 +2006,7 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -1993,7 +2039,7 @@ importers: version: 0.20.8(constructs@10.3.0) cdktf-cli: specifier: 0.20.8 - version: 0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + version: 0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2) constructs: specifier: 10.3.0 version: 10.3.0 @@ -2036,7 +2082,7 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -2154,7 +2200,7 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -2203,7 +2249,7 @@ importers: version: link:../tsconfig tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -2221,7 +2267,7 @@ importers: version: 2.6.3 tsup: specifier: 8.2.4 - version: 8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0) + version: 8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0) typescript: specifier: 5.5.4 version: 5.5.4 @@ -2251,7 +2297,7 @@ importers: version: 4.19.2 express-validator: specifier: ^7.1.0 - version: 7.1.0 + version: 7.2.0 knex: specifier: 3.1.0 version: 3.1.0(mysql2@3.10.3) @@ -2360,7 +2406,7 @@ importers: version: 4.19.2 express-validator: specifier: ^7.1.0 - version: 7.1.0 + version: 7.2.0 graphql: specifier: 16.8.1 version: 16.8.1 @@ -2442,7 +2488,7 @@ importers: version: 7.0.0 ts-jest: specifier: 29.2.4 - version: 29.2.4(@babel/core@7.24.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.8))(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)))(typescript@5.5.4) + version: 29.2.4(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(esbuild@0.23.1)(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)))(typescript@5.5.4) ts-node: specifier: 10.9.2 version: 10.9.2(@types/node@20.16.1)(typescript@5.5.4) @@ -2493,7 +2539,7 @@ importers: version: 9.0.2 jwk-to-pem: specifier: ^2.0.5 - version: 2.0.5 + version: 2.0.6 jwks-rsa: specifier: 3.1.0 version: 3.1.0 @@ -2511,7 +2557,7 @@ importers: version: 5.6.1 unleash-server: specifier: 5.12.7 - version: 5.12.7(core-js@3.38.1)(encoding@0.1.13)(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + version: 5.12.7(core-js@3.38.1)(encoding@0.1.13)(enzyme@3.11.0)(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) devDependencies: '@pocket-tools/eslint-config': specifier: workspace:* @@ -2579,6 +2625,9 @@ importers: '@pocket-tools/apollo-utils': specifier: workspace:* version: link:../../packages/apollo-utils + '@pocket-tools/image-utils': + specifier: workspace:* + version: link:../../packages/image-utils '@pocket-tools/sentry': specifier: workspace:* version: link:../../packages/sentry @@ -2609,9 +2658,6 @@ importers: keyv: specifier: 4.5.4 version: 4.5.4 - parse-url: - specifier: 9.2.0 - version: 9.2.0 tslib: specifier: 2.6.3 version: 2.6.3 @@ -2705,7 +2751,7 @@ importers: version: 4.19.2 express-validator: specifier: ^7.1.0 - version: 7.1.0 + version: 7.2.0 graphql: specifier: 16.8.1 version: 16.8.1 @@ -2845,6 +2891,9 @@ importers: '@pocket-tools/feature-flags-client': specifier: workspace:* version: link:../../packages/feature-flags-client + '@pocket-tools/image-utils': + specifier: workspace:* + version: link:../../packages/image-utils '@pocket-tools/int-mask': specifier: workspace:* version: link:../../packages/int-mask @@ -2998,7 +3047,7 @@ importers: version: 16.4.5 firebase-admin: specifier: ^12.0.0 - version: 12.1.0(encoding@0.1.13) + version: 12.4.0(encoding@0.1.13) lodash: specifier: 4.17.21 version: 4.17.21 @@ -3086,7 +3135,7 @@ importers: version: 4.19.2 express-validator: specifier: ^7.1.0 - version: 7.1.0 + version: 7.2.0 graphql: specifier: 16.8.1 version: 16.8.1 @@ -3192,7 +3241,7 @@ importers: version: 4.19.2 express-validator: specifier: ^7.1.0 - version: 7.1.0 + version: 7.2.0 tslib: specifier: 2.6.3 version: 2.6.3 @@ -3456,10 +3505,10 @@ importers: version: 3.632.0 '@elastic/elasticsearch': specifier: ^8.14.0 - version: 8.14.0 + version: 8.15.0 '@opensearch-project/opensearch': specifier: ^2.10.0 - version: 2.10.0 + version: 2.11.0 '@pocket-tools/apollo-cursor-pagination': specifier: 1.0.3 version: 1.0.3 @@ -3489,7 +3538,7 @@ importers: version: 4.19.2 express-validator: specifier: ^7.1.0 - version: 7.1.0 + version: 7.2.0 graphql: specifier: 16.8.1 version: 16.8.1 @@ -3601,7 +3650,7 @@ importers: dependencies: '@graphql-typed-document-node/core': specifier: 3.2.0 - version: 3.2.0(graphql@16.9.0) + version: 3.2.0(graphql@16.8.1) '@pocket-tools/apollo-utils': specifier: workspace:* version: link:../../packages/apollo-utils @@ -3619,10 +3668,10 @@ importers: version: 4.19.2 express-validator: specifier: ^7.1.0 - version: 7.1.0 + version: 7.2.0 graphql-request: specifier: ^6.1.0 - version: 6.1.0(encoding@0.1.13)(graphql@16.9.0) + version: 6.1.0(encoding@0.1.13)(graphql@16.8.1) luxon: specifier: 3.4.4 version: 3.4.4 @@ -3632,19 +3681,19 @@ importers: devDependencies: '@graphql-codegen/add': specifier: 5.0.3 - version: 5.0.3(graphql@16.9.0) + version: 5.0.3(graphql@16.8.1) '@graphql-codegen/cli': specifier: 5.0.2 - version: 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.16.1)(encoding@0.1.13)(enquirer@2.4.1)(graphql@16.9.0)(typescript@5.5.4) + version: 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.16.1)(encoding@0.1.13)(enquirer@2.4.1)(graphql@16.8.1)(typescript@5.5.4) '@graphql-codegen/typed-document-node': specifier: 5.0.9 - version: 5.0.9(encoding@0.1.13)(graphql@16.9.0) + version: 5.0.9(encoding@0.1.13)(graphql@16.8.1) '@graphql-codegen/typescript': specifier: 4.0.9 - version: 4.0.9(encoding@0.1.13)(graphql@16.9.0) + version: 4.0.9(encoding@0.1.13)(graphql@16.8.1) '@graphql-codegen/typescript-operations': specifier: 4.2.3 - version: 4.2.3(encoding@0.1.13)(graphql@16.9.0) + version: 4.2.3(encoding@0.1.13)(graphql@16.8.1) '@pocket-tools/eslint-config': specifier: workspace:* version: link:../../packages/eslint-config @@ -3687,10 +3736,6 @@ importers: packages: - '@alcalzone/ansi-tokenize@0.1.3': - resolution: {integrity: sha512-3yWxPTq3UQ/FY9p1ErPxIyfT64elWaMvM9lIHnaqpyft63tkxodF5aUElYHrdisWve5cETkh1+KBw1yJuW0aRw==} - engines: {node: '>=14.13.1'} - '@ampproject/remapping@2.3.0': resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} @@ -4041,220 +4086,98 @@ packages: aws-crt: optional: true - '@babel/code-frame@7.24.2': - resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} - engines: {node: '>=6.9.0'} - '@babel/code-frame@7.24.7': resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.24.4': - resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==} - engines: {node: '>=6.9.0'} - - '@babel/compat-data@7.24.8': - resolution: {integrity: sha512-c4IM7OTg6k1Q+AJ153e2mc2QVTezTwnb4VzquwcyiEzGnW0Kedv4do/TrkU98qPeC5LNiMt/QXwIjzYXLBpyZg==} - engines: {node: '>=6.9.0'} - - '@babel/compat-data@7.25.2': - resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==} - engines: {node: '>=6.9.0'} - - '@babel/core@7.24.5': - resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==} - engines: {node: '>=6.9.0'} - - '@babel/core@7.24.8': - resolution: {integrity: sha512-6AWcmZC/MZCO0yKys4uhg5NlxL0ESF3K6IAaoQ+xSXvPyPyxNWRafP+GDbI88Oh68O7QkJgmEtedWPM9U0pZNg==} + '@babel/compat-data@7.25.4': + resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==} engines: {node: '>=6.9.0'} '@babel/core@7.25.2': resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==} engines: {node: '>=6.9.0'} - '@babel/generator@7.24.5': - resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==} - engines: {node: '>=6.9.0'} - '@babel/generator@7.24.7': resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} engines: {node: '>=6.9.0'} - '@babel/generator@7.24.8': - resolution: {integrity: sha512-47DG+6F5SzOi0uEvK4wMShmn5yY0mVjVJoWTphdY2B4Rx9wHgjK7Yhtr0ru6nE+sn0v38mzrWOlah0p/YlHHOQ==} - engines: {node: '>=6.9.0'} - - '@babel/generator@7.25.0': - resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-annotate-as-pure@7.22.5': - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@7.23.6': - resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} + '@babel/generator@7.25.5': + resolution: {integrity: sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==} engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@7.24.8': - resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==} + '@babel/helper-annotate-as-pure@7.24.7': + resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} '@babel/helper-compilation-targets@7.25.2': resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==} engines: {node: '>=6.9.0'} - '@babel/helper-create-class-features-plugin@7.24.5': - resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==} + '@babel/helper-create-class-features-plugin@7.25.4': + resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-environment-visitor@7.22.20': - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-environment-visitor@7.24.7': - resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@7.23.0': - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@7.24.7': - resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-hoist-variables@7.22.5': - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-hoist-variables@7.24.7': - resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-member-expression-to-functions@7.24.5': - resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-imports@7.24.3': - resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} + '@babel/helper-member-expression-to-functions@7.24.8': + resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==} engines: {node: '>=6.9.0'} '@babel/helper-module-imports@7.24.7': resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} - '@babel/helper-module-transforms@7.24.5': - resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-module-transforms@7.24.8': - resolution: {integrity: sha512-m4vWKVqvkVAWLXfHCCfff2luJj86U+J0/x+0N3ArG/tP0Fq7zky2dYwMbtPmkc/oulkkbjdL3uWzuoBwQ8R00Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-module-transforms@7.25.2': resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-optimise-call-expression@7.22.5': - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + '@babel/helper-optimise-call-expression@7.24.7': + resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} engines: {node: '>=6.9.0'} - '@babel/helper-plugin-utils@7.24.5': - resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==} + '@babel/helper-plugin-utils@7.24.8': + resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==} engines: {node: '>=6.9.0'} - '@babel/helper-replace-supers@7.24.1': - resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==} + '@babel/helper-replace-supers@7.25.0': + resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-simple-access@7.24.5': - resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-simple-access@7.24.7': resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} - '@babel/helper-skip-transparent-expression-wrappers@7.22.5': - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: '>=6.9.0'} - - '@babel/helper-split-export-declaration@7.24.5': - resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==} - engines: {node: '>=6.9.0'} - - '@babel/helper-split-export-declaration@7.24.7': - resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.24.1': - resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': + resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} engines: {node: '>=6.9.0'} '@babel/helper-string-parser@7.24.8': resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.24.5': - resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.24.7': resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-option@7.23.5': - resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-option@7.24.8': resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.24.5': - resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==} - engines: {node: '>=6.9.0'} - - '@babel/helpers@7.24.8': - resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==} - engines: {node: '>=6.9.0'} - '@babel/helpers@7.25.0': resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.24.5': - resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} - engines: {node: '>=6.9.0'} - '@babel/highlight@7.24.7': resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} - '@babel/parser@7.24.5': - resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/parser@7.24.8': - resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/parser@7.25.3': - resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==} + '@babel/parser@7.25.4': + resolution: {integrity: sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==} engines: {node: '>=6.0.0'} hasBin: true @@ -4287,14 +4210,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-flow@7.24.1': - resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==} + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-flow@7.24.7': + resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-assertions@7.24.7': + resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-assertions@7.24.1': - resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==} + '@babel/plugin-syntax-import-attributes@7.24.7': + resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -4309,8 +4244,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-jsx@7.24.1': - resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==} + '@babel/plugin-syntax-jsx@7.24.7': + resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -4345,144 +4280,146 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-top-level-await@7.14.5': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-typescript@7.24.1': - resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==} + '@babel/plugin-syntax-top-level-await@7.14.5': + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-arrow-functions@7.24.1': - resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==} + '@babel/plugin-syntax-typescript@7.25.4': + resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.24.1': - resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==} + '@babel/plugin-transform-arrow-functions@7.24.7': + resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoping@7.24.5': - resolution: {integrity: sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==} + '@babel/plugin-transform-block-scoped-functions@7.24.7': + resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-classes@7.24.5': - resolution: {integrity: sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==} + '@babel/plugin-transform-block-scoping@7.25.0': + resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-computed-properties@7.24.1': - resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==} + '@babel/plugin-transform-classes@7.25.4': + resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-destructuring@7.24.5': - resolution: {integrity: sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==} + '@babel/plugin-transform-computed-properties@7.24.7': + resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-flow-strip-types@7.24.1': - resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==} + '@babel/plugin-transform-destructuring@7.24.8': + resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.24.1': - resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==} + '@babel/plugin-transform-flow-strip-types@7.25.2': + resolution: {integrity: sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-function-name@7.24.1': - resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==} + '@babel/plugin-transform-for-of@7.24.7': + resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-literals@7.24.1': - resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==} + '@babel/plugin-transform-function-name@7.25.1': + resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.24.1': - resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==} + '@babel/plugin-transform-literals@7.25.2': + resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-commonjs@7.24.1': - resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==} + '@babel/plugin-transform-member-expression-literals@7.24.7': + resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-super@7.24.1': - resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==} + '@babel/plugin-transform-modules-commonjs@7.24.8': + resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-parameters@7.24.5': - resolution: {integrity: sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==} + '@babel/plugin-transform-object-super@7.24.7': + resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-property-literals@7.24.1': - resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==} + '@babel/plugin-transform-parameters@7.24.7': + resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-display-name@7.24.1': - resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==} + '@babel/plugin-transform-property-literals@7.24.7': + resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx@7.23.4': - resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} + '@babel/plugin-transform-react-display-name@7.24.7': + resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-shorthand-properties@7.24.1': - resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==} + '@babel/plugin-transform-react-jsx@7.25.2': + resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-spread@7.24.1': - resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==} + '@babel/plugin-transform-shorthand-properties@7.24.7': + resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.24.1': - resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==} + '@babel/plugin-transform-spread@7.24.7': + resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/runtime@7.24.5': - resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==} + '@babel/plugin-transform-template-literals@7.24.7': + resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@babel/template@7.24.0': - resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} + '@babel/runtime@7.25.4': + resolution: {integrity: sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==} engines: {node: '>=6.9.0'} '@babel/template@7.24.7': @@ -4493,32 +4430,16 @@ packages: resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.24.5': - resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.24.8': - resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.25.3': - resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.24.5': - resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} + '@babel/traverse@7.25.4': + resolution: {integrity: sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==} engines: {node: '>=6.9.0'} '@babel/types@7.24.7': resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} engines: {node: '>=6.9.0'} - '@babel/types@7.24.8': - resolution: {integrity: sha512-SkSBEHwwJRU52QEVZBmMBnE5Ux2/6WU1grdYyOhpbCNxbmJrDuDCphBzKZSO3taf0zztp+qkWlymE5tVL5l0TA==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.25.2': - resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} + '@babel/types@7.25.4': + resolution: {integrity: sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==} engines: {node: '>=6.9.0'} '@bcoe/v8-coverage@0.2.3': @@ -4597,6 +4518,13 @@ packages: cdktf: ^0.20.0 constructs: ^10.3.0 + '@cfaester/enzyme-adapter-react-18@0.8.0': + resolution: {integrity: sha512-3Z3ThTUouHwz8oIyhTYQljEMNRFtlVyc3VOOHCbxs47U6cnXs8K9ygi/c1tv49s7MBlTXeIcuN+Ttd9aPtILFQ==} + peerDependencies: + enzyme: ^3.11.0 + react: '>=18' + react-dom: '>=18' + '@chevrotain/cst-dts-gen@10.5.0': resolution: {integrity: sha512-lhmC/FyqQ2o7pGK4Om+hzuDrm9rhFYIJ/AXoQBeongmn870Xeb0L6oGEiuR8nohFNL5sMaQEJWCxr1oIVIVXrw==} @@ -4703,12 +4631,12 @@ packages: peerDependencies: effect: ^3.5.7 - '@elastic/elasticsearch@8.14.0': - resolution: {integrity: sha512-MGrgCI4y+Ozssf5Q2IkVJlqt5bUMnKIICG2qxeOfrJNrVugMCBCAQypyesmSSocAtNm8IX3LxfJ3jQlFHmKe2w==} + '@elastic/elasticsearch@8.15.0': + resolution: {integrity: sha512-mG90EMdTDoT6GFSdqpUAhWK9LGuiJo6tOWqs0Usd/t15mPQDj7ZqHXfCBqNkASZpwPZpbAYVjd57S6nbUBINCg==} engines: {node: '>=18'} - '@elastic/transport@8.7.0': - resolution: {integrity: sha512-IqXT7a8DZPJtqP2qmX1I2QKmxYyN27kvSW4g6pInESE1SuGwZDp2FxHJ6W2kwmYOJwQdAt+2aWwzXO5jHo9l4A==} + '@elastic/transport@8.7.1': + resolution: {integrity: sha512-2eeMVkz57Ayxv+UAZkIKzzrUu7nm96jr3+N3kLfbBqALYe2jwDpLr9pR0jc/x9HyJKAM909YGaNlHFDZeb0+Mw==} engines: {node: '>=18'} '@emotion/is-prop-valid@1.2.2': @@ -4874,16 +4802,16 @@ packages: resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/config-array@0.17.1': - resolution: {integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==} + '@eslint/config-array@0.18.0': + resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/eslintrc@3.1.0': resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.9.0': - resolution: {integrity: sha512-hhetes6ZHP3BlXLxmd8K2SNgkhNSi+UcecbnwWKwpP7kyi/uC75DJ1lOOBO3xrC4jyojtGE3YxKZPHfk4yrgug==} + '@eslint/js@9.9.1': + resolution: {integrity: sha512-xIDQRsfg5hNBqHz04H1R3scSVwmI+KUbqjsQKHKQ1DAUSaUjYPReZZmS/5PNiKu1fUvzDd6H7DEDKACSEhu+TQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.4': @@ -4904,46 +4832,45 @@ packages: resolution: {integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'} - '@fastify/busboy@2.1.1': - resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} - engines: {node: '>=14'} + '@fastify/busboy@3.0.0': + resolution: {integrity: sha512-83rnH2nCvclWaPQQKvkJ2pdOjG4TZyEVuFDnlOF6KP08lDaaceVyw/W63mDuafQT+MKHCvXIPpE5uYWeM0rT4w==} - '@firebase/app-check-interop-types@0.3.1': - resolution: {integrity: sha512-NILZbe6RH3X1pZmJnfOfY2gLIrlKmrkUMMrrK6VSXHcSE0eQv28xFEcw16D198i9JYZpy5Kwq394My62qCMaIw==} + '@firebase/app-check-interop-types@0.3.2': + resolution: {integrity: sha512-LMs47Vinv2HBMZi49C09dJxp0QT5LwDzFaVGf/+ITHe3BlIhUiLNttkATSXplc89A2lAaeTqjgqVkiRfUGyQiQ==} - '@firebase/app-types@0.9.1': - resolution: {integrity: sha512-nFGqTYsnDFn1oXf1tCwPAc+hQPxyvBT/QB7qDjwK+IDYThOn63nGhzdUTXxVD9Ca8gUY/e5PQMngeo0ZW/E3uQ==} + '@firebase/app-types@0.9.2': + resolution: {integrity: sha512-oMEZ1TDlBz479lmABwWsWjzHwheQKiAgnuKxE0pz0IXCVx7/rtlkx1fQ6GfgK24WCrxDKMplZrT50Kh04iMbXQ==} - '@firebase/auth-interop-types@0.2.2': - resolution: {integrity: sha512-k3NA28Jfoo0+o391bFjoV9X5QLnUL1WbLhZZRbTQhZdmdGYJfX8ixtNNlHsYQ94bwG0QRbsmvkzDnzuhHrV11w==} + '@firebase/auth-interop-types@0.2.3': + resolution: {integrity: sha512-Fc9wuJGgxoxQeavybiuwgyi+0rssr76b+nHpj+eGhXFYAdudMWyfBHvFL/I5fEHniUM/UQdFzi9VXJK2iZF7FQ==} - '@firebase/component@0.6.6': - resolution: {integrity: sha512-pp7sWqHmAAlA3os6ERgoM3k5Cxff510M9RLXZ9Mc8KFKMBc2ct3RkZTWUF7ixJNvMiK/iNgRLPDrLR2gtRJ9iQ==} + '@firebase/component@0.6.8': + resolution: {integrity: sha512-LcNvxGLLGjBwB0dJUsBGCej2fqAepWyBubs4jt1Tiuns7QLbXHuyObZ4aMeBjZjWx4m8g1LoVI9QFpSaq/k4/g==} - '@firebase/database-compat@1.0.4': - resolution: {integrity: sha512-GEEDAvsSMAkqy0BIFSVtFzoOIIcKHFfDM4aXHtWL/JCaNn4OOjH7td73jDfN3ALvpIN4hQki0FcxQ89XjqaTjQ==} + '@firebase/database-compat@1.0.7': + resolution: {integrity: sha512-R/3B+VVzEFN5YcHmfWns3eitA8fHLTL03io+FIoMcTYkajFnrBdS3A+g/KceN9omP7FYYYGTQWF9lvbEx6eMEg==} - '@firebase/database-types@1.0.2': - resolution: {integrity: sha512-JRigr5JNLEHqOkI99tAGHDZF47469/cJz1tRAgGs8Feh+3ZmQy/vVChSqwMp2DuVUGp9PlmGsNSlpINJ/hDuIA==} + '@firebase/database-types@1.0.4': + resolution: {integrity: sha512-mz9ZzbH6euFXbcBo+enuJ36I5dR5w+enJHHjy9Y5ThCdKUseqfDjW3vCp1YxE9zygFCSjJJ/z1cQ+zodvUcwPQ==} - '@firebase/database@1.0.4': - resolution: {integrity: sha512-k84cXh+dtpzvY6yOhfyr1B+I1vjvSMtmlqotE0lTNVylc8m5nmOohjzpTLEQDrBWvwACX/VP5fEyajAdmnOKqA==} + '@firebase/database@1.0.7': + resolution: {integrity: sha512-wjXr5AO8RPxVVg7rRCYffT7FMtBjHRfJ9KMwi19MbOf0vBf0H9YqW3WCgcnLpXI6ehiUcU3z3qgPnnU0nK6SnA==} - '@firebase/logger@0.4.1': - resolution: {integrity: sha512-tTIixB5UJbG9ZHSGZSZdX7THr3KWOLrejZ9B7jYsm6fpwgRNngKznQKA2wgYVyvBc1ta7dGFh9NtJ8n7qfiYIw==} + '@firebase/logger@0.4.2': + resolution: {integrity: sha512-Q1VuA5M1Gjqrwom6I6NUU4lQXdo9IAQieXlujeHZWvRt1b7qQ0KwBaNAjgxG27jgF9/mUwsNmO8ptBCGVYhB0A==} - '@firebase/util@1.9.5': - resolution: {integrity: sha512-PP4pAFISDxsf70l3pEy34Mf3GkkUcVQ3MdKp6aSVb7tcpfUQxnsdV7twDd8EkfB6zZylH6wpUAoangQDmCUMqw==} + '@firebase/util@1.9.7': + resolution: {integrity: sha512-fBVNH/8bRbYjqlbIhZ+lBtdAAS4WqZumx03K06/u7fJSpz1TGjEMm1ImvKD47w+xaFKIP2ori6z8BrbakRfjJA==} '@glideapps/ts-necessities@2.2.3': resolution: {integrity: sha512-gXi0awOZLHk3TbW55GZLCPP6O+y/b5X1pBXKBVckFONSwF1z1E5ND2BGJsghQFah+pW7pkkyFb2VhUQI2qhL5w==} - '@google-cloud/firestore@7.7.0': - resolution: {integrity: sha512-41/vBFXOeSYjFI/2mJuJrDwg2umGk+FDrI/SCGzBRUe+UZWDN4GoahIbGZ19YQsY0ANNl6DRiAy4wD6JezK02g==} + '@google-cloud/firestore@7.9.0': + resolution: {integrity: sha512-c4ALHT3G08rV7Zwv8Z2KG63gZh66iKdhCBeDfCpIkLrjX6EAjTD/szMdj14M+FnQuClZLFfW5bAgoOjfNmLtJg==} engines: {node: '>=14.0.0'} - '@google-cloud/paginator@5.0.0': - resolution: {integrity: sha512-87aeg6QQcEPxGCOthnpUjvw4xAZ57G7pL8FS0C4e/81fr3FjkpUpibf1s2v5XGyGhUVGF4Jfg7yEcxqn2iUw1w==} + '@google-cloud/paginator@5.0.2': + resolution: {integrity: sha512-DJS3s0OVH4zFDB1PzjxAsHqJT6sKVbRwwML0ZBP9PbU7Yebtu/7SWMRzvO2J3nUi9pRNITCfu4LJeooM2w4pjg==} engines: {node: '>=14.0.0'} '@google-cloud/projectify@4.0.0': @@ -4954,8 +4881,8 @@ packages: resolution: {integrity: sha512-Orxzlfb9c67A15cq2JQEyVc7wEsmFBmHjZWZYQMUyJ1qivXyMwdyNOs9odi79hze+2zqdTtu1E19IM/FtqZ10g==} engines: {node: '>=14'} - '@google-cloud/storage@7.11.0': - resolution: {integrity: sha512-W+OPOCgq7a3aAMANALbJAlEnpMV9fy681JWIm7dYe5W/+nRhq/UvA477TJT5/oPNA5DgiAdMEdiitdoLpZqhJg==} + '@google-cloud/storage@7.12.1': + resolution: {integrity: sha512-Z3ZzOnF3YKLuvpkvF+TjQ6lztxcAyTILp+FjKonmVpEwPa9vFvxpZjubLR4sB6bf19i/8HL2AXRjA0YFgHFRmQ==} engines: {node: '>=14'} '@govtechsg/passport-openidconnect@1.0.2': @@ -4977,8 +4904,8 @@ packages: '@parcel/watcher': optional: true - '@graphql-codegen/client-preset@4.2.5': - resolution: {integrity: sha512-hAdB6HN8EDmkoBtr0bPUN/7NH6svzqbcTDMWBCRXPESXkl7y80po+IXrXUjsSrvhKG8xkNXgJNz/2mjwHzywcA==} + '@graphql-codegen/client-preset@4.3.3': + resolution: {integrity: sha512-IrDsSVe8bkKtxgVfKPHzjL9tYlv7KEpA59R4gZLqx/t2WIJncW1i0OMvoz9tgoZsFEs8OKKgXZbnwPZ/Qf1kEw==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -4987,13 +4914,8 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/gql-tag-operations@4.0.6': - resolution: {integrity: sha512-y6iXEDpDNjwNxJw3WZqX1/Znj0QHW7+y8O+t2V8qvbTT+3kb2lr9ntc8By7vCr6ctw9tXI4XKaJgpTstJDOwFA==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/plugin-helpers@5.0.3': - resolution: {integrity: sha512-yZ1rpULIWKBZqCDlvGIJRSyj1B2utkEdGmXZTBT/GVayP4hyRYlkd36AJV/LfEsVD8dnsKL5rLz2VTYmRNlJ5Q==} + '@graphql-codegen/gql-tag-operations@4.0.9': + resolution: {integrity: sha512-lVgu1HClel896HqZAEjynatlU6eJrYOw+rh05DPgM150xvmb7Gz5TnRHA2vfwlDNIXDaToAIpz5RFfkjjnYM1Q==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -5002,8 +4924,8 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/schema-ast@4.0.2': - resolution: {integrity: sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==} + '@graphql-codegen/schema-ast@4.1.0': + resolution: {integrity: sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -5027,11 +4949,6 @@ packages: peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@5.1.0': - resolution: {integrity: sha512-eamQxtA9bjJqI2lU5eYoA1GbdMIRT2X8m8vhWYsVQVWD3qM7sx/IqJU0kx0J3Vd4/CSd36BzL6RKwksibytDIg==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@5.3.1': resolution: {integrity: sha512-MktoBdNZhSmugiDjmFl1z6rEUUaqyxtFJYWnDilE7onkPgyw//O0M+TuPBJPBWdyV6J2ond0Hdqtq+rkghgSIQ==} peerDependencies: @@ -5049,50 +4966,50 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/code-file-loader@8.1.1': - resolution: {integrity: sha512-q4KN25EPSUztc8rA8YUU3ufh721Yk12xXDbtUA+YstczWS7a1RJlghYMFEfR1HsHSYbF7cUqkbnTKSGM3o52bQ==} + '@graphql-tools/code-file-loader@8.1.3': + resolution: {integrity: sha512-Qoo8VyU0ux7k20DkzL5wFm7Y6iqlG1GQ0xA4T3EQbm4B/qbENsMc38l76QnXYIVmIlKAnD9EAvzxPEQ8iv+ZPA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/delegate@10.0.9': - resolution: {integrity: sha512-H+jGPLB0X23wlslw1JuB3y5j35NwZLUGhmjgaLYKkquAI/rtcs4+UwoW3hZ4SCN7h2LAKDa6HhsYYCRXyhdePA==} + '@graphql-tools/delegate@10.0.21': + resolution: {integrity: sha512-UytyYVvDfLQbCYG1aQo8Vc67c1WhEjzW9ytYKEEqMJSdlwfMCujHmCz7EyH5DNjTAKapDHuQcN5VivKGap/Beg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/documents@1.0.0': - resolution: {integrity: sha512-rHGjX1vg/nZ2DKqRGfDPNC55CWZBMldEVcH+91BThRa6JeT80NqXknffLLEZLRUxyikCfkwMsk6xR3UNMqG0Rg==} + '@graphql-tools/documents@1.0.1': + resolution: {integrity: sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-graphql-ws@1.1.2': - resolution: {integrity: sha512-+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg==} + '@graphql-tools/executor-graphql-ws@1.2.0': + resolution: {integrity: sha512-tSYC1QdrabWexLrYV0UI3uRGbde9WCY/bRhq6Jc+VXMZcfq6ea6pP5NEAVTfwbhUQ4xZvJABVVbKXtKb9uTg1w==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-http@1.0.9': - resolution: {integrity: sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==} + '@graphql-tools/executor-http@1.1.6': + resolution: {integrity: sha512-wGKjJzbi6em8cWI3sry6T7kAgoxMXYNM+KlbsWczPvIsHvv1cqXlrP1lwC6f7Ja1FfWdU1ZIEgOv93ext7IDyQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-legacy-ws@1.0.6': - resolution: {integrity: sha512-lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg==} + '@graphql-tools/executor-legacy-ws@1.1.0': + resolution: {integrity: sha512-k+6ZyiaAd8SmwuzbEOfA/LVkuI1nqidhoMw+CJ7c41QGOjSMzc0VS0UZbJyeitI0n7a+uP/Meln1wjzJ2ReDtQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor@1.2.6': - resolution: {integrity: sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==} + '@graphql-tools/executor@1.3.1': + resolution: {integrity: sha512-tgJDdGf9SCAm64ofEMZdv925u6/J+eTmv36TGNLxgP2DpCJsZ6gnJ4A+0D28EazDXqJIvMiPd+3d+o3cCRCAnQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/git-loader@8.0.5': - resolution: {integrity: sha512-P97/1mhruDiA6D5WUmx3n/aeGPLWj2+4dpzDOxFGGU+z9NcI/JdygMkeFpGZNHeJfw+kHfxgPcMPnxHcyhAoVA==} + '@graphql-tools/git-loader@8.0.7': + resolution: {integrity: sha512-+s23lxHR24+zLDk9/Hfl7/8Qcal8Q1yJ8armRp1fvcJyuc0RTZv97ZoZb0tArTfME74z+kJ92Mx4SfZMd7mHSQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -5109,8 +5026,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/graphql-tag-pluck@8.3.0': - resolution: {integrity: sha512-gNqukC+s7iHC7vQZmx1SEJQmLnOguBq+aqE2zV2+o1hxkExvKqyFli1SY/9gmukFIKpKutCIj+8yLOM+jARutw==} + '@graphql-tools/graphql-tag-pluck@8.3.2': + resolution: {integrity: sha512-wJKkDjXRg2qJAVhAVE96zJGMli8Ity9mKUB7gTbvJwsAniaquRqLcTXUQ19X9qVT4ACzbbp+tAfk96b2U3tfog==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -5138,8 +5055,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/merge@9.0.4': - resolution: {integrity: sha512-MivbDLUQ+4Q8G/Hp/9V72hbn810IJDEZQ57F01sHnlrrijyadibfVhaQfW/pNH+9T/l8ySZpaR/DpL5i+ruZ+g==} + '@graphql-tools/merge@9.0.6': + resolution: {integrity: sha512-TmkzFTFVieHnqu9mPTF6RxAQltaprpDQnM5HMTPSyMLXnJGMTvdWejV0yORKj7DW1YSi791/sUnKf8HytepBFQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -5162,8 +5079,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/schema@10.0.3': - resolution: {integrity: sha512-p28Oh9EcOna6i0yLaCFOnkcBDQECVf3SCexT6ktb86QNj9idnkhI+tCxnwZDh58Qvjd2nURdkbevvoZkvxzCog==} + '@graphql-tools/schema@10.0.6': + resolution: {integrity: sha512-EIJgPRGzpvDFEjVp+RF1zNNYIC36BYuIeZ514jFoJnI6IdxyVyIRDLx/ykgMdaa1pKQerpfdqDnsF4JnZoDHSQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -5179,14 +5096,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.2.0': - resolution: {integrity: sha512-HYV7dO6pNA2nGKawygaBpk8y+vXOUjjzzO43W/Kb7EPRmXUEQKjHxPYRvQbiF72u1N3XxwGK5jnnFk9WVhUwYw==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/utils@10.3.1': - resolution: {integrity: sha512-Yhk1F0MNk4/ctgl3d0DKq++ZPovvZuh1ixWuUEVAxrFloYOAVwJ+rvGI1lsopArdJly8QXClT9lkvOxQszMw/w==} + '@graphql-tools/utils@10.5.4': + resolution: {integrity: sha512-XHnyCWSlg1ccsD8s0y6ugo5GZ5TpkTiFVNPSYms5G0s6Z/xTuSmiLBfeqgkfaCwLmLaQnRCmNDL2JRnqc2R5bQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -5207,8 +5118,8 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@grpc/grpc-js@1.10.7': - resolution: {integrity: sha512-ZMBVjSeDAz3tFSehyO6Pd08xZT1HfIwq3opbeM4cDlBh52gmwp0wVIPcQur53NN0ac68HMZ/7SF2rGRD5KmVmg==} + '@grpc/grpc-js@1.11.1': + resolution: {integrity: sha512-gyt/WayZrVPH2w/UTLansS7F9Nwld472JxxaETamrM8HNlsa+jSLNyKAZmhxI2Me4c3mQHFiS1wWHDY1g1Kthw==} engines: {node: '>=12.10.0'} '@grpc/proto-loader@0.7.13': @@ -5278,8 +5189,8 @@ packages: resolution: {integrity: sha512-RzlRISXWqIKEf83FDC9ZtJ3JvuK1l7aGpretf41BCWYrvla2wU8W8MTRNMiPrPJ+1SIqrRC1nZdZ60hD9hRXLg==} engines: {node: '>=14.18.0'} - '@inquirer/type@1.3.1': - resolution: {integrity: sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==} + '@inquirer/type@1.5.2': + resolution: {integrity: sha512-w9qFkumYDCNyDZmNQjf/n6qQuvQ4dMC3BJesY4oF+yr0CxR5vxujflAVeIcS6U336uzi9GM0kAfZlLrZ9UTkpA==} engines: {node: '>=18'} '@ioredis/as-callback@3.0.0': @@ -5381,8 +5292,8 @@ packages: resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} engines: {node: '>=6.0.0'} - '@jridgewell/sourcemap-codec@1.4.15': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} @@ -5396,12 +5307,16 @@ packages: '@jsdevtools/ono@7.1.3': resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==} + '@jsii/check-node@1.102.0': + resolution: {integrity: sha512-uyKjxCe1ou11RJz6koBr5vXtyaGjTA45hF+H88GNW96vms7jKqmYdMm067Az1OKwl38h02lQRQ2tmoEzV7u74w==} + engines: {node: '>= 14.17.0'} + '@jsii/check-node@1.98.0': resolution: {integrity: sha512-hI53TMW/fylHyY3CrJvqWvfSPJvBL82GSAB1m2CKNC0yHb0pZHCdBZnLrrr4rgTCQx8kIJjcUc0rQ/Ba3w+GaA==} engines: {node: '>= 14.17.0'} - '@jsii/spec@1.98.0': - resolution: {integrity: sha512-5FCJedjFrxKt0wrcSnXetHHTXQV6OQM2NlE/WJNvjwqlk+RYfw+BwZOBYHsoaQx1Qh0pTwN7ZM9WmEusN3GdNw==} + '@jsii/spec@1.102.0': + resolution: {integrity: sha512-/VcmoEyp7HR0xoFz47/fiyZjAv+0gHG4ZwTbgB+umbB88bTbLZadnqBL7T9OIKQbK4w8HNOaRnHwjNBIYIPxWQ==} engines: {node: '>= 14.17.0'} '@kamilkisiela/fast-url-parser@1.1.4': @@ -5446,8 +5361,8 @@ packages: resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==} engines: {node: ^16.14.0 || >=18.0.0} - '@npmcli/fs@3.1.0': - resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} + '@npmcli/fs@3.1.1': + resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} '@octokit/auth-token@5.1.1': @@ -5507,8 +5422,8 @@ packages: '@open-draft/until@2.1.0': resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==} - '@opensearch-project/opensearch@2.10.0': - resolution: {integrity: sha512-I3Ko09HvA50zyDi92fgEZfFFaNHhpvXcYLImdKTSL6eEwKqQmszqkLF2g5NTgEyb4Jh9uD2RGX8EYr9PO9zenQ==} + '@opensearch-project/opensearch@2.11.0': + resolution: {integrity: sha512-G+SZwtWRDv90IrtTSNnCt0MQjHVyqrcIXcpwN68vjHnfbun2+RHn+ux4K7dnG+s/KwWzVKIpPFoRjg2gfFX0Mw==} engines: {node: '>=10', yarn: ^1.22.10} '@opentelemetry/api-logs@0.52.1': @@ -5877,15 +5792,15 @@ packages: resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} engines: {node: '>= 10.0.0'} - '@peculiar/asn1-schema@2.3.8': - resolution: {integrity: sha512-ULB1XqHKx1WBU/tTFIA+uARuRoBVZ4pNdOA878RDrRbBfBGcSzi5HBkdScC6ZbHn8z7L8gmKCgPC1LHRrP46tA==} + '@peculiar/asn1-schema@2.3.13': + resolution: {integrity: sha512-3Xq3a01WkHRZL8X04Zsfg//mGaA21xlL4tlVn4v2xGT0JStiztATRkMwa5b+f/HXmY2smsiLXYK46Gwgzvfg3g==} '@peculiar/json-schema@1.1.12': resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==} engines: {node: '>=8.0.0'} - '@peculiar/webcrypto@1.4.6': - resolution: {integrity: sha512-YBcMfqNSwn3SujUJvAaySy5tlYbYm6tVt9SKoXu8BaTdKGROiJDgPR3TXpZdAKUfklzm3lRapJEAltiMQtBgZg==} + '@peculiar/webcrypto@1.5.0': + resolution: {integrity: sha512-BRs5XUAwiyCDQMsVA9IDvDa7UBR9gAvPHgugOeGng3YN6vJ9JYonyDc0lNczErgtCWtucjR5N7VtaonboD/ezg==} engines: {node: '>=10.12.0'} '@pkgjs/parseargs@0.11.0': @@ -5995,93 +5910,93 @@ packages: '@redocly/ajv@8.11.0': resolution: {integrity: sha512-9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw==} - '@redocly/config@0.2.0': - resolution: {integrity: sha512-r0TqTPVXrxdvhpbOntWnJofOx0rC7u+A+tfC0KFwMtw38QCNb3pwodVjeLa7MT5Uu+fcPxfO119yLBj0QHvBuQ==} + '@redocly/config@0.10.0': + resolution: {integrity: sha512-oFP8SL9qmsJ2QxwvOjI/h87hHMKq8G/RUbTSxF9/r4vbllCxzQ8Tla3xfUO/lGVVO6gZsAIsuJGXhaDagd4msg==} - '@redocly/openapi-core@1.12.0': - resolution: {integrity: sha512-2Jfxv3iIk1JUwLSnLyewJ8GAsoxubROVieg13Sjo79TjuWaUBuI49j8GZqC08ljENqyEIp0JHReDjhKs4Snrhg==} + '@redocly/openapi-core@1.21.1': + resolution: {integrity: sha512-WTsie5b+Ohx2NsmEBVCS5WF24h4XqDpb834ZR4EeE7f+Zjwn34AgaC78HP2xGydi+gFfD4PiqDGgnDPtR5s1OA==} engines: {node: '>=14.19.0', npm: '>=7.0.0'} - '@repeaterjs/repeater@3.0.5': - resolution: {integrity: sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==} + '@repeaterjs/repeater@3.0.6': + resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} - '@rollup/rollup-android-arm-eabi@4.21.0': - resolution: {integrity: sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA==} + '@rollup/rollup-android-arm-eabi@4.21.1': + resolution: {integrity: sha512-2thheikVEuU7ZxFXubPDOtspKn1x0yqaYQwvALVtEcvFhMifPADBrgRPyHV0TF3b+9BgvgjgagVyvA/UqPZHmg==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.21.0': - resolution: {integrity: sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA==} + '@rollup/rollup-android-arm64@4.21.1': + resolution: {integrity: sha512-t1lLYn4V9WgnIFHXy1d2Di/7gyzBWS8G5pQSXdZqfrdCGTwi1VasRMSS81DTYb+avDs/Zz4A6dzERki5oRYz1g==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.21.0': - resolution: {integrity: sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA==} + '@rollup/rollup-darwin-arm64@4.21.1': + resolution: {integrity: sha512-AH/wNWSEEHvs6t4iJ3RANxW5ZCK3fUnmf0gyMxWCesY1AlUj8jY7GC+rQE4wd3gwmZ9XDOpL0kcFnCjtN7FXlA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.21.0': - resolution: {integrity: sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg==} + '@rollup/rollup-darwin-x64@4.21.1': + resolution: {integrity: sha512-dO0BIz/+5ZdkLZrVgQrDdW7m2RkrLwYTh2YMFG9IpBtlC1x1NPNSXkfczhZieOlOLEqgXOFH3wYHB7PmBtf+Bg==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.21.0': - resolution: {integrity: sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA==} + '@rollup/rollup-linux-arm-gnueabihf@4.21.1': + resolution: {integrity: sha512-sWWgdQ1fq+XKrlda8PsMCfut8caFwZBmhYeoehJ05FdI0YZXk6ZyUjWLrIgbR/VgiGycrFKMMgp7eJ69HOF2pQ==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.21.0': - resolution: {integrity: sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w==} + '@rollup/rollup-linux-arm-musleabihf@4.21.1': + resolution: {integrity: sha512-9OIiSuj5EsYQlmwhmFRA0LRO0dRRjdCVZA3hnmZe1rEwRk11Jy3ECGGq3a7RrVEZ0/pCsYWx8jG3IvcrJ6RCew==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.21.0': - resolution: {integrity: sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w==} + '@rollup/rollup-linux-arm64-gnu@4.21.1': + resolution: {integrity: sha512-0kuAkRK4MeIUbzQYu63NrJmfoUVicajoRAL1bpwdYIYRcs57iyIV9NLcuyDyDXE2GiZCL4uhKSYAnyWpjZkWow==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.21.0': - resolution: {integrity: sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw==} + '@rollup/rollup-linux-arm64-musl@4.21.1': + resolution: {integrity: sha512-/6dYC9fZtfEY0vozpc5bx1RP4VrtEOhNQGb0HwvYNwXD1BBbwQ5cKIbUVVU7G2d5WRE90NfB922elN8ASXAJEA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.21.0': - resolution: {integrity: sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg==} + '@rollup/rollup-linux-powerpc64le-gnu@4.21.1': + resolution: {integrity: sha512-ltUWy+sHeAh3YZ91NUsV4Xg3uBXAlscQe8ZOXRCVAKLsivGuJsrkawYPUEyCV3DYa9urgJugMLn8Z3Z/6CeyRQ==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.21.0': - resolution: {integrity: sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg==} + '@rollup/rollup-linux-riscv64-gnu@4.21.1': + resolution: {integrity: sha512-BggMndzI7Tlv4/abrgLwa/dxNEMn2gC61DCLrTzw8LkpSKel4o+O+gtjbnkevZ18SKkeN3ihRGPuBxjaetWzWg==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.21.0': - resolution: {integrity: sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw==} + '@rollup/rollup-linux-s390x-gnu@4.21.1': + resolution: {integrity: sha512-z/9rtlGd/OMv+gb1mNSjElasMf9yXusAxnRDrBaYB+eS1shFm6/4/xDH1SAISO5729fFKUkJ88TkGPRUh8WSAA==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.21.0': - resolution: {integrity: sha512-e2hrvElFIh6kW/UNBQK/kzqMNY5mO+67YtEh9OA65RM5IJXYTWiXjX6fjIiPaqOkBthYF1EqgiZ6OXKcQsM0hg==} + '@rollup/rollup-linux-x64-gnu@4.21.1': + resolution: {integrity: sha512-kXQVcWqDcDKw0S2E0TmhlTLlUgAmMVqPrJZR+KpH/1ZaZhLSl23GZpQVmawBQGVhyP5WXIsIQ/zqbDBBYmxm5w==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.21.0': - resolution: {integrity: sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ==} + '@rollup/rollup-linux-x64-musl@4.21.1': + resolution: {integrity: sha512-CbFv/WMQsSdl+bpX6rVbzR4kAjSSBuDgCqb1l4J68UYsQNalz5wOqLGYj4ZI0thGpyX5kc+LLZ9CL+kpqDovZA==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.21.0': - resolution: {integrity: sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ==} + '@rollup/rollup-win32-arm64-msvc@4.21.1': + resolution: {integrity: sha512-3Q3brDgA86gHXWHklrwdREKIrIbxC0ZgU8lwpj0eEKGBQH+31uPqr0P2v11pn0tSIxHvcdOWxa4j+YvLNx1i6g==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.21.0': - resolution: {integrity: sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg==} + '@rollup/rollup-win32-ia32-msvc@4.21.1': + resolution: {integrity: sha512-tNg+jJcKR3Uwe4L0/wY3Ro0H+u3nrb04+tcq1GSYzBEmKLeOQF2emk1whxlzNqb6MMrQ2JOcQEpuuiPLyRcSIw==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.21.0': - resolution: {integrity: sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ==} + '@rollup/rollup-win32-x64-msvc@4.21.1': + resolution: {integrity: sha512-xGiIH95H1zU7naUyTKEyOA/I0aexNMUdO9qRv0bLKN3qu25bBdrxZHqA3PTJ24YNN/GdMzG4xkDcd/GvjuhfLg==} cpu: [x64] os: [win32] @@ -6098,8 +6013,8 @@ packages: resolution: {integrity: sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==} engines: {node: '>=18'} - '@semantic-release/github@10.1.6': - resolution: {integrity: sha512-UTW7hNp6nDeJJWrHcNx8dki95d12WVh++PH98rIr7PQxrZrnjtL0ys/rsAt9tOBTWBaCZdj6797RMLkY9tU+ug==} + '@semantic-release/github@10.1.7': + resolution: {integrity: sha512-QnhP4k1eqzYLz6a4kpWrUQeKJYXqHggveMykvUFbSquq07GF85BXvr/QLhpOD7bpDcmEfL8VnphRA7KT5i9lzQ==} engines: {node: '>=20.8.1'} peerDependencies: semantic-release: '>=20.1.0' @@ -6212,12 +6127,12 @@ packages: resolution: {integrity: sha512-DTuBFbqu4gGfajREEMrkq5jBhcnskinhr4+AnfJEk48zhVeEv3XnUKGIX98B74kxhYsIMfApGGySTn7V3b5yBA==} engines: {node: '>= 12.13.0', npm: '>= 6.12.0'} - '@slack/types@2.11.0': - resolution: {integrity: sha512-UlIrDWvuLaDly3QZhCPnwUSI/KYmV1N9LyhuH6EDKCRS1HWZhyTG3Ja46T3D0rYfqdltKYFXbJSSRPwZpwO0cQ==} + '@slack/types@2.12.0': + resolution: {integrity: sha512-yFewzUomYZ2BYaGJidPuIgjoYj5wqPDmi7DLSaGIkf+rCi4YZ2Z3DaiYIbz7qb/PL2NmamWjCvB7e9ArI5HkKg==} engines: {node: '>= 12.13.0', npm: '>= 6.12.0'} - '@slack/web-api@6.12.0': - resolution: {integrity: sha512-RPw6F8rWfGveGkZEJ4+4jUin5iazxRK2q3FpQDz/FvdgzC3nZmPyLx8WRzc6nh0w3MBjEbphNnp2VZksfhpBIQ==} + '@slack/web-api@6.12.1': + resolution: {integrity: sha512-dXHyHkvvziqkDdZlPRnUl/H2uvnUmdJ5B7kxiH1HIgHe18vcbUk1zjU/XCZgJFhxGeq5Zwa95Z+SbNW9mbRhtw==} engines: {node: '>= 12.13.0', npm: '>= 6.12.0'} '@smithy/abort-controller@3.1.1': @@ -6228,8 +6143,8 @@ packages: resolution: {integrity: sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==} engines: {node: '>=16.0.0'} - '@smithy/core@2.3.2': - resolution: {integrity: sha512-in5wwt6chDBcUv1Lw1+QzZxN9fBffi+qOixfb65yK4sDuKG7zAUO9HAFqmVzsZM3N+3tTyvZjtnDXePpvp007Q==} + '@smithy/core@2.4.0': + resolution: {integrity: sha512-cHXq+FneIF/KJbt4q4pjN186+Jf4ZB0ZOqEaZMBhT79srEyGDDBV31NqBRBjazz8ppQ1bJbDJMY9ba5wKFV36w==} engines: {node: '>=16.0.0'} '@smithy/credential-provider-imds@3.2.0': @@ -6288,8 +6203,8 @@ packages: resolution: {integrity: sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw==} engines: {node: '>=16.0.0'} - '@smithy/middleware-retry@3.0.14': - resolution: {integrity: sha512-7ZaWZJOjUxa5hgmuMspyt8v/zVsh0GXYuF7OvCmdcbVa/xbnKQoYC+uYKunAqRGTkxjOyuOCw9rmFUFOqqC0eQ==} + '@smithy/middleware-retry@3.0.15': + resolution: {integrity: sha512-iTMedvNt1ApdvkaoE8aSDuwaoc+BhvHqttbA/FO4Ty+y/S5hW6Ci/CTScG7vam4RYJWZxdTElc3MEfHRVH6cgQ==} engines: {node: '>=16.0.0'} '@smithy/middleware-serde@3.0.3': @@ -6336,8 +6251,8 @@ packages: resolution: {integrity: sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag==} engines: {node: '>=16.0.0'} - '@smithy/smithy-client@3.1.12': - resolution: {integrity: sha512-wtm8JtsycthkHy1YA4zjIh2thJgIQ9vGkoR639DBx5lLlLNU0v4GARpQZkr2WjXue74nZ7MiTSWfVrLkyD8RkA==} + '@smithy/smithy-client@3.2.0': + resolution: {integrity: sha512-pDbtxs8WOhJLJSeaF/eAbPgXg4VVYFlRcL/zoNYA5WbG3wBL06CHtBSg53ppkttDpAJ/hdiede+xApip1CwSLw==} engines: {node: '>=16.0.0'} '@smithy/types@3.3.0': @@ -6370,12 +6285,12 @@ packages: resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==} engines: {node: '>=16.0.0'} - '@smithy/util-defaults-mode-browser@3.0.14': - resolution: {integrity: sha512-0iwTgKKmAIf+vFLV8fji21Jb2px11ktKVxbX6LIDPAUJyWQqGqBVfwba7xwa1f2FZUoolYQgLvxQEpJycXuQ5w==} + '@smithy/util-defaults-mode-browser@3.0.15': + resolution: {integrity: sha512-FZ4Psa3vjp8kOXcd3HJOiDPBCWtiilLl57r0cnNtq/Ga9RSDrM5ERL6xt+tO43+2af6Pn5Yp92x2n5vPuduNfg==} engines: {node: '>= 10.0.0'} - '@smithy/util-defaults-mode-node@3.0.14': - resolution: {integrity: sha512-e9uQarJKfXApkTMMruIdxHprhcXivH1flYCe8JRDTzkkLx8dA3V5J8GZlST9yfDiRWkJpZJlUXGN9Rc9Ade3OQ==} + '@smithy/util-defaults-mode-node@3.0.15': + resolution: {integrity: sha512-KSyAAx2q6d0t6f/S4XB2+3+6aQacm3aLMhs9aLMqn18uYGUepbdssfogW5JQZpc6lXNBnp0tEnR5e9CEKmEd7A==} engines: {node: '>= 10.0.0'} '@smithy/util-endpoints@2.0.5': @@ -6467,8 +6382,8 @@ packages: '@types/babel__template@7.4.4': resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - '@types/babel__traverse@7.20.5': - resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} + '@types/babel__traverse@7.20.6': + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} '@types/body-parser@1.19.5': resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} @@ -6515,8 +6430,8 @@ packages: '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/express-serve-static-core@4.19.0': - resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==} + '@types/express-serve-static-core@4.19.5': + resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} '@types/express-session@1.18.0': resolution: {integrity: sha512-27JdDRgor6PoYlURY+Y5kCakqp5ulC0kmf7y+QwaY+hv9jEFuQOThgkjyA53RP3jmKuBsH5GR6qEfFmvb8mwOA==} @@ -6573,9 +6488,6 @@ packages: '@types/js-yaml@4.0.9': resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} - '@types/jsdom@20.0.1': - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -6702,8 +6614,8 @@ packages: '@types/serve-static@1.15.7': resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} - '@types/shimmer@1.0.5': - resolution: {integrity: sha512-9Hp0ObzwwO57DpLFF0InUjUm/II8GmKAvzbefxQTihCb7KI6yc9yzf0nLc4mVdby5N4DRCgQM2wCup9KTieeww==} + '@types/shimmer@1.2.0': + resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -6711,8 +6623,8 @@ packages: '@types/stylis@4.2.5': resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==} - '@types/superagent@8.1.7': - resolution: {integrity: sha512-NmIsd0Yj4DDhftfWvvAku482PZum4DBW7U51OvS8gvOkDDY0WT1jsVyDV3hK+vplrsYw8oDwi9QxOM7U68iwww==} + '@types/superagent@8.1.9': + resolution: {integrity: sha512-pTVjI73witn+9ILmoJdajHGW2jkSaOzhiFYF1Rd3EQ94kymLqB9PjD9ISg7WaALC7+dCHT0FGe9T2LktLq/3GQ==} '@types/supertest@6.0.2': resolution: {integrity: sha512-137ypx2lk/wTQbW6An6safu9hXmajAifU/s7szAHLN/FeIm5w7yR0Wkl9fdJMRSHwOn4HLAI0DaB2TOORuhPDg==} @@ -6732,14 +6644,14 @@ packages: '@types/wrap-ansi@3.0.0': resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} - '@types/ws@8.5.10': - resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + '@types/ws@8.5.12': + resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==} '@types/yargs-parser@21.0.3': resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - '@types/yargs@17.0.32': - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + '@types/yargs@17.0.33': + resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} '@types/yauzl@2.10.3': resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} @@ -6747,8 +6659,8 @@ packages: '@types/yoga-layout@1.9.2': resolution: {integrity: sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==} - '@typescript-eslint/eslint-plugin@8.2.0': - resolution: {integrity: sha512-02tJIs655em7fvt9gps/+4k4OsKULYGtLBPJfOsmOq1+3cdClYiF0+d6mHu6qDnTcg88wJBkcPLpQhq7FyDz0A==} + '@typescript-eslint/eslint-plugin@8.3.0': + resolution: {integrity: sha512-FLAIn63G5KH+adZosDYiutqkOkYEx0nvcwNNfJAf+c7Ae/H35qWwTYvPZUKFj5AS+WfHG/WJJfWnDnyNUlp8UA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 @@ -6758,8 +6670,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@8.2.0': - resolution: {integrity: sha512-j3Di+o0lHgPrb7FxL3fdEy6LJ/j2NE8u+AP/5cQ9SKb+JLH6V6UHDqJ+e0hXBkHP1wn1YDFjYCS9LBQsZDlDEg==} + '@typescript-eslint/parser@8.3.0': + resolution: {integrity: sha512-h53RhVyLu6AtpUzVCYLPhZGL5jzTD9fZL+SYf/+hYOx2bDkyQXztXSc4tbvKYHzfMXExMLiL9CWqJmVz6+78IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -6768,12 +6680,12 @@ packages: typescript: optional: true - '@typescript-eslint/scope-manager@8.2.0': - resolution: {integrity: sha512-OFn80B38yD6WwpoHU2Tz/fTz7CgFqInllBoC3WP+/jLbTb4gGPTy9HBSTsbDWkMdN55XlVU0mMDYAtgvlUspGw==} + '@typescript-eslint/scope-manager@8.3.0': + resolution: {integrity: sha512-mz2X8WcN2nVu5Hodku+IR8GgCOl4C0G/Z1ruaWN4dgec64kDBabuXyPAr+/RgJtumv8EEkqIzf3X2U5DUKB2eg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.2.0': - resolution: {integrity: sha512-g1CfXGFMQdT5S+0PSO0fvGXUaiSkl73U1n9LTK5aRAFnPlJ8dLKkXr4AaLFvPedW8lVDoMgLLE3JN98ZZfsj0w==} + '@typescript-eslint/type-utils@8.3.0': + resolution: {integrity: sha512-wrV6qh//nLbfXZQoj32EXKmwHf4b7L+xXLrP3FZ0GOUU72gSvLjeWUl5J5Ue5IwRxIV1TfF73j/eaBapxx99Lg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -6781,12 +6693,12 @@ packages: typescript: optional: true - '@typescript-eslint/types@8.2.0': - resolution: {integrity: sha512-6a9QSK396YqmiBKPkJtxsgZZZVjYQ6wQ/TlI0C65z7vInaETuC6HAHD98AGLC8DyIPqHytvNuS8bBVvNLKyqvQ==} + '@typescript-eslint/types@8.3.0': + resolution: {integrity: sha512-y6sSEeK+facMaAyixM36dQ5NVXTnKWunfD1Ft4xraYqxP0lC0POJmIaL/mw72CUMqjY9qfyVfXafMeaUj0noWw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.2.0': - resolution: {integrity: sha512-kiG4EDUT4dImplOsbh47B1QnNmXSoUqOjWDvCJw/o8LgfD0yr7k2uy54D5Wm0j4t71Ge1NkynGhpWdS0dEIAUA==} + '@typescript-eslint/typescript-estree@8.3.0': + resolution: {integrity: sha512-Mq7FTHl0R36EmWlCJWojIC1qn/ZWo2YiWYc1XVtasJ7FIgjo0MVv9rZWXEE7IK2CGrtwe1dVOxWwqXUdNgfRCA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -6794,14 +6706,14 @@ packages: typescript: optional: true - '@typescript-eslint/utils@8.2.0': - resolution: {integrity: sha512-O46eaYKDlV3TvAVDNcoDzd5N550ckSe8G4phko++OCSC1dYIb9LTc3HDGYdWqWIAT5qDUKphO6sd9RrpIJJPfg==} + '@typescript-eslint/utils@8.3.0': + resolution: {integrity: sha512-F77WwqxIi/qGkIGOGXNBLV7nykwfjLsdauRB/DOFPdv6LTF3BHHkBpq81/b5iMPSF055oO2BiivDJV4ChvNtXA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - '@typescript-eslint/visitor-keys@8.2.0': - resolution: {integrity: sha512-sbgsPMW9yLvS7IhCi8IpuK1oBmtbWUNP+hBdwl/I9nzqVsszGnNGti5r9dUtF5RLivHUFFIdRvLiTsPhzSyJ3Q==} + '@typescript-eslint/visitor-keys@8.3.0': + resolution: {integrity: sha512-RmZwrTbQ9QveF15m/Cl28n0LXD6ea2CjkhH5rQ55ewz3H24w+AMCJHPVYaZ8/0HoG8Z3cLLFFycRXxeO2tz9FA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@wesleytodd/openapi@0.3.0': @@ -6810,23 +6722,19 @@ packages: '@whatwg-node/events@0.0.3': resolution: {integrity: sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==} - '@whatwg-node/events@0.1.1': - resolution: {integrity: sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==} - engines: {node: '>=16.0.0'} - '@whatwg-node/fetch@0.8.8': resolution: {integrity: sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==} - '@whatwg-node/fetch@0.9.17': - resolution: {integrity: sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==} - engines: {node: '>=16.0.0'} + '@whatwg-node/fetch@0.9.21': + resolution: {integrity: sha512-Wt0jPb+04JjobK0pAAN7mEHxVHcGA9HoP3OyCsZtyAecNQeADXCZ1MihFwVwjsgaRYuGVmNlsCmLxlG6mor8Gw==} + engines: {node: '>=18.0.0'} '@whatwg-node/node-fetch@0.3.6': resolution: {integrity: sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==} - '@whatwg-node/node-fetch@0.5.11': - resolution: {integrity: sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==} - engines: {node: '>=16.0.0'} + '@whatwg-node/node-fetch@0.5.25': + resolution: {integrity: sha512-m6TrxcJlS8ptYLTQL+Ex931RFJsoCQtBQWBNHi5b0xHS0C7FJGUJl1asYZ7MdOhZqdiMVcs1lNJeHsfzyUNjOg==} + engines: {node: '>=18.0.0'} '@xmldom/xmldom@0.8.10': resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} @@ -6836,13 +6744,6 @@ packages: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true - abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - - abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} @@ -6851,9 +6752,6 @@ packages: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} - acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - acorn-import-assertions@1.9.0: resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} peerDependencies: @@ -6869,15 +6767,10 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn-walk@8.3.2: - resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} + acorn-walk@8.3.3: + resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} engines: {node: '>=0.4.0'} - acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} - engines: {node: '>=0.4.0'} - hasBin: true - acorn@8.12.1: resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} engines: {node: '>=0.4.0'} @@ -6895,8 +6788,8 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} - agentkeepalive@3.5.2: - resolution: {integrity: sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ==} + agentkeepalive@3.5.3: + resolution: {integrity: sha512-yqXL+k5rr8+ZRpOAntkaaRgWgE5o8ESAj5DyRmVTCSoZxXmqemb9Dd7T4i5UzwuERdLAJUy6XzR9zFVuf0kzkw==} engines: {node: '>= 4.0.0'} agentkeepalive@4.5.0: @@ -6922,9 +6815,6 @@ packages: ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - ajv@8.16.0: - resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} - ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} @@ -7038,6 +6928,14 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} + array.prototype.filter@1.0.4: + resolution: {integrity: sha512-r+mCJ7zXgXElgR4IRC+fkvNCeoaavWBs6EdCso5Tbcf+iEMKzBU/His60lt34WEZ9vlb8wDkZvQGcVI5GwkfoQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + arraybuffer.prototype.slice@1.0.3: resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} engines: {node: '>= 0.4'} @@ -7076,8 +6974,8 @@ packages: async@3.2.3: resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==} - async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -7086,10 +6984,6 @@ packages: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} - auto-bind@5.0.1: - resolution: {integrity: sha512-ooviqdwwgfIfNmDwo94wlshcdzfO64XV0Cg6oDsDYBJfITDz1EngD2z7DkbvCWn+XIMsIqW27sEVF6qcpJrRcg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} @@ -7098,25 +6992,22 @@ packages: resolution: {integrity: sha512-9GNFMRrEMG5y3Jvv+V4azWvc+qNWdWLTjDdhf/zgMlz8haaaLWv0xeAIWxz9PuWUBawsVxy0zZotjCdR3Xq+2w==} hasBin: true - aws-sdk@2.1614.0: - resolution: {integrity: sha512-dsfoOk/1UBGfELJ9skBma1RzfYXalK+0QdStuwKCqrYHgpF/mlf7BqYOB0acNQHzxgVxEP0LOGjWZOzWWwdGhw==} + aws-sdk@2.1683.0: + resolution: {integrity: sha512-uy53mN2oHU0Jx5tkH7qG6h/42DeMAQD5jMi/6294hVgGCa29MK/ZiFIOdkEJNS9tbB03RTabg+5i4c6DxBpG8g==} engines: {node: '>= 10.0.0'} aws-ssl-profiles@1.1.1: resolution: {integrity: sha512-+H+kuK34PfMaI9PNU/NSjBKL5hh/KDM9J72kwYeYEm0A8B1AC4fuCy3qsjnA7lxklgyXsB68yn8Z2xoZEjgwCQ==} engines: {node: '>= 6.0.0'} - aws4@1.13.0: - resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} + aws4@1.13.1: + resolution: {integrity: sha512-u5w79Rd7SU4JaIlA/zFqG+gOiuq25q5VLyZ8E+ijJeILuTxVzZgp2CaGw/UTw6pXYN9XMO9yiqj/nEHmhTG5CA==} axios-retry@4.4.0: resolution: {integrity: sha512-yewTKjzl6jSgc+2M7FCJ3LxRGgL1iiXHcj+E6h6xie6H1mTHr7yqaUroWIvVXG1UKSPwGDXxV05YxtGvrD6Paw==} peerDependencies: axios: 0.x || 1.x - axios@1.6.8: - resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==} - axios@1.7.4: resolution: {integrity: sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==} @@ -7137,8 +7028,8 @@ packages: babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} - babel-preset-current-node-syntax@1.0.1: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + babel-preset-current-node-syntax@1.1.0: + resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==} peerDependencies: '@babel/core': ^7.0.0 @@ -7210,16 +7101,12 @@ packages: brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} - braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - braze-api@2.9.1: - resolution: {integrity: sha512-yo5Jv39F5RzhUcBrLUBwZ0lvZpHuFNSQbfg+PVY6uWv17zn2ajyhO1jYW15thT3BQcsixUQ9ONEE0bg8UGKwvw==} + braze-api@2.10.0: + resolution: {integrity: sha512-kOTEsnppYxzPai30nzFcg96tGSnuwl+/tFOZDOk1hNsyBYOAPyGwpn9+Lyol1YthO4PrETINPCpn6H4fjRGsRA==} engines: {node: '>=14'} brorand@1.1.0: @@ -7228,16 +7115,6 @@ packages: browser-or-node@3.0.0: resolution: {integrity: sha512-iczIdVJzGEYhP5DqQxYM9Hh7Ztpqqi+CXZpSmX8ALFs9ecXkQIeqRyM6TfxEfMVpwhl3dSuDvxdzzo9sUOIVBQ==} - browserslist@4.23.0: - resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - browserslist@4.23.2: - resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.23.3: resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -7331,14 +7208,8 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001616: - resolution: {integrity: sha512-RHVYKov7IcdNjVHJFNY/78RdG4oGVjbayxv8u5IO74Wv7Hlq4PnJE6mo/OjFijjVFNy5ijnCt6H3IIo4t+wfEw==} - - caniuse-lite@1.0.30001641: - resolution: {integrity: sha512-Phv5thgl67bHYo1TtMY/MurjkHhV4EDaCosezRXgZ8jzA/Ub+wjxAvbGvjoFENStinwi5kCyOYV3mi5tOGykwA==} - - caniuse-lite@1.0.30001651: - resolution: {integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==} + caniuse-lite@1.0.30001653: + resolution: {integrity: sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -7408,9 +7279,9 @@ packages: cheerio-select@2.1.0: resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} - cheerio@1.0.0-rc.12: - resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} - engines: {node: '>= 6'} + cheerio@1.0.0: + resolution: {integrity: sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==} + engines: {node: '>=18.17'} chevrotain@10.5.0: resolution: {integrity: sha512-Pkv5rBY3+CsHOYfV5g/Vs5JY9WTHHDEKOlohI2XeygaZhUeqhAlldZ8Hz9cRmxu709bvS08YzxHdTPHhffc13A==} @@ -7437,8 +7308,8 @@ packages: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} - cjs-module-lexer@1.3.1: - resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} + cjs-module-lexer@1.4.0: + resolution: {integrity: sha512-N1NGmowPlGBLsOZLPvm48StN04V4YvQRL0i6b7ctrVY3epjP/ct7hFLOItz6pDIvRjwpfPxi52a2UWV2ziir8g==} classnames@2.5.1: resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} @@ -7455,10 +7326,6 @@ packages: resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} engines: {node: '>=6'} - cli-boxes@3.0.0: - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} - engines: {node: '>=10'} - cli-cursor@3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} @@ -7488,10 +7355,6 @@ packages: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} engines: {node: '>=8'} - cli-truncate@4.0.0: - resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} - engines: {node: '>=18'} - cli-width@3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} engines: {node: '>= 10'} @@ -7525,8 +7388,8 @@ packages: resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} engines: {node: '>=0.8'} - clsx@1.2.1: - resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} cluster-key-slot@1.1.2: @@ -7541,10 +7404,6 @@ packages: resolution: {integrity: sha512-VHNTVhd7KsLGOqfX3SyeO8RyYPMp1GJOg194VITk04WMYCv4plV68YWe6TJZxd9MhobjtpMRnVky01gqZsalaw==} engines: {node: '>=10'} - code-excerpt@4.0.0: - resolution: {integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - codemaker@1.98.0: resolution: {integrity: sha512-UAeICTmY7lJXf4OPnDTwKWg/DU87u67nyxuTjMON+vO8yo8C+EcPWnmmOmWtZm3wWLPsPuxyYIQxIIi/4OZ9TA==} engines: {node: '>= 14.17.0'} @@ -7606,6 +7465,9 @@ packages: resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} engines: {node: '>=18'} + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + commander@3.0.2: resolution: {integrity: sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==} @@ -7632,8 +7494,8 @@ packages: resolution: {integrity: sha512-j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA==} hasBin: true - commonmark@0.31.0: - resolution: {integrity: sha512-nuDsQ34gjmgAqjyIz6mbRWBW/XPE9wsBempAMBk2V/AA88ekztjTM46oi07J6c6Y/2Y8TdYCZi9L0pIBt/oMZw==} + commonmark@0.31.1: + resolution: {integrity: sha512-M6pbc3sRU96iiOK7rmjv/TNrXvTaOscvthUCq7YOrlvZWbqAA36fyEtBvyI3nCcEK4u+JAy9sAdtftIeXwIWig==} hasBin: true compare-func@2.0.0: @@ -7738,10 +7600,6 @@ packages: resolution: {integrity: sha512-cj09EBuObp9gZNQCzc7hByQyrs6jVGE+o9kSJmeUoj+GiPiJvi5LYqEH/Hmme4+MTLHM+Ejtq+FChpjjEnsPdQ==} engines: {node: '>= 4'} - convert-to-spaces@2.0.1: - resolution: {integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - cookie-parser@1.4.6: resolution: {integrity: sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==} engines: {node: '>= 0.8.0'} @@ -7834,8 +7692,8 @@ packages: cross-fetch@4.0.0: resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==} - cross-inspect@1.0.0: - resolution: {integrity: sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==} + cross-inspect@1.0.1: + resolution: {integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==} engines: {node: '>=16.0.0'} cross-spawn@7.0.3: @@ -7867,16 +7725,6 @@ packages: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} - cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - - cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - - cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} - csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} @@ -7892,10 +7740,6 @@ packages: resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} engines: {node: '>=12'} - data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} - data-view-buffer@1.0.1: resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} engines: {node: '>= 0.4'} @@ -7961,15 +7805,6 @@ packages: supports-color: optional: true - debug@4.3.5: - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.3.6: resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} engines: {node: '>=6.0'} @@ -7987,9 +7822,6 @@ packages: resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==} engines: {node: '>=10'} - decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - decko@1.2.0: resolution: {integrity: sha512-m8FnyHXV1QX+S1cl+KPFDIl6NMkxtKsy6+U/aYyjrOqWMuwAwYWu7ePqrsUHtDR5Y8Yk2pi/KIDSgF+vT4cPOQ==} @@ -8115,17 +7947,15 @@ packages: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} + discontinuous-range@1.0.0: + resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==} + dom-serializer@2.0.0: resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} domelementtype@2.3.0: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead - domhandler@5.0.3: resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} engines: {node: '>= 4'} @@ -8133,8 +7963,8 @@ packages: domino@2.1.6: resolution: {integrity: sha512-3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ==} - dompurify@3.1.2: - resolution: {integrity: sha512-hLGGBI1tw5N8qTELr3blKjAML/LY4ANxksbS612UiJyDfyf/2D092Pvm+S7pmeTGJRqvlJkFzBoHBQKgQlOQVg==} + dompurify@3.1.6: + resolution: {integrity: sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==} domutils@3.1.0: resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} @@ -8213,24 +8043,18 @@ packages: engines: {node: '>=0.8'} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - electron-to-chromium@1.4.757: - resolution: {integrity: sha512-jftDaCknYSSt/+KKeXzH3LX5E2CvRLm75P3Hj+J/dv3CL0qUYcOt13d5FN1NiL5IJbbhzHrb3BomeG2tkSlZmw==} - - electron-to-chromium@1.4.827: - resolution: {integrity: sha512-VY+J0e4SFcNfQy19MEoMdaIcZLmDCprqvBtkii1WTCTQHpRvf5N8+3kTYCgL/PcntvwQvmMJWTuDPsq+IlhWKQ==} - electron-to-chromium@1.5.13: resolution: {integrity: sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==} - elliptic@6.5.5: - resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==} + elliptic@6.5.7: + resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} - emoji-regex@10.3.0: - resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} + emoji-regex@10.4.0: + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -8248,6 +8072,9 @@ packages: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} + encoding-sniffer@0.2.0: + resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==} + encoding@0.1.13: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} @@ -8269,8 +8096,8 @@ packages: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} - env-ci@11.0.0: - resolution: {integrity: sha512-apikxMgkipkgTvMdRT9MNqWx5VLOci79F4VBd7Op/7OPjjoanjdAvn6fglMCCEf/1bAh8eOiuEVCUs4V3qP3nQ==} + env-ci@11.1.0: + resolution: {integrity: sha512-Z8dnwSDbV1XYM9SBF2J0GcNVvmfmfh3a49qddGIROhBoVro6MZVTji15z/sJbQ2ko2ei8n988EU1wzoLU/tF+g==} engines: {node: ^18.17 || >=20.6.1} env-paths@2.2.1: @@ -8281,6 +8108,12 @@ packages: resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} engines: {node: '>=18'} + enzyme-shallow-equal@1.0.7: + resolution: {integrity: sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg==} + + enzyme@3.11.0: + resolution: {integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==} + err-code@2.0.3: resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} @@ -8295,6 +8128,9 @@ packages: resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} engines: {node: '>= 0.4'} + es-array-method-boxes-properly@1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + es-define-property@1.0.0: resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} engines: {node: '>= 0.4'} @@ -8314,6 +8150,9 @@ packages: resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} engines: {node: '>= 0.4'} + es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} @@ -8363,11 +8202,6 @@ packages: resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} engines: {node: '>=12'} - escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - eslint-config-prettier@9.1.0: resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} hasBin: true @@ -8407,8 +8241,8 @@ packages: resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.9.0: - resolution: {integrity: sha512-JfiKJrbx0506OEerjK2Y1QlldtBxkAlLxT5OEcRF8uaQ86noDe2k31Vw9rnSWv+MXZHj7OOUV/dA0AhdLFcyvA==} + eslint@9.9.1: + resolution: {integrity: sha512-dHvhrbfr4xFQ9/dq+jcVneZMyRYLjggWjk6RVsIiHsP8Rz6yZ8LvZ//iU4TrZF+SXWG+JkNF2OyiZRvzgRDqMg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -8509,8 +8343,8 @@ packages: exponential-backoff@3.1.1: resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} - express-rate-limit@7.2.0: - resolution: {integrity: sha512-T7nul1t4TNyfZMJ7pKRKkdeVJWa2CqB8NA1P8BwYaoDI5QSBZARv5oMS43J7b7I5P+4asjVXjb7ONuwDKucahg==} + express-rate-limit@7.4.0: + resolution: {integrity: sha512-v1204w3cXu5gCDmAvgvzI6qjzZzoMWKnyVDk3ACgfswTQLYiGen+r8w0VnXnGMmzEN/g8fwIQ4JrFFd4ZP6ssg==} engines: {node: '>= 16'} peerDependencies: express: 4 || 5 || ^5.0.0-beta.1 @@ -8519,8 +8353,8 @@ packages: resolution: {integrity: sha512-m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==} engines: {node: '>= 0.8.0'} - express-validator@7.1.0: - resolution: {integrity: sha512-ePn6NXjHRZiZkwTiU1Rl2hy6aUqmi6Cb4/s8sfUsKH7j2yYl9azSpl8xEHcOj1grzzQ+UBEoLWtE1s6FDxW++g==} + express-validator@7.2.0: + resolution: {integrity: sha512-I2ByKD8panjtr8Y05l21Wph9xk7kk64UMyvJCl/fFM/3CTJq8isXYPLeKW/aZBCdb/LYNv63PwhY8khw8VWocA==} engines: {node: '>= 8.0.0'} express@4.19.2: @@ -8550,9 +8384,9 @@ packages: resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} engines: {node: '> 0.1.90'} - farmhash@3.3.1: - resolution: {integrity: sha512-XUizHanzlr/v7suBr/o85HSakOoWh6HKXZjFYl5C2+Gj0f0rkw+XTUZzrd9odDsgI9G5tRUcF4wSbKaX04T0DQ==} - engines: {node: '>=10'} + farmhash-modern@1.1.0: + resolution: {integrity: sha512-6ypT4XfgqJk/F3Yuv4SX26I3doUjt0GTG4a+JgWxXQpxXzTBq8fPUeGHfcYMMDPHJHm3yPOSjaeBwBGAHWXCdA==} + engines: {node: '>=18.0.0'} fast-check@3.20.0: resolution: {integrity: sha512-pZIjqLpOZgdSLecec4GKC3Zq5702MZ34upMKxojnNVSWA0K64V3pXOBT1Wdsrc3AphLtzRBbsi8bRWF4TUGmUg==} @@ -8577,8 +8411,8 @@ packages: fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - fast-jwt@4.0.1: - resolution: {integrity: sha512-+mdSoH0QdOdFSbbGBctJu7L1yfXRtbmjbVJ4W/PEjyvivobDena0RKwihtBkOML1P+kUJ1QuewnH8u+mROsR1w==} + fast-jwt@4.0.2: + resolution: {integrity: sha512-uSG3osRm3QNEkoCMwQ25qVs+pxn0f1n4/WLE+BmKaQZSmwhFhkkimHw7MXIPprrEF01CbNI1wL/35LRvLMfn7g==} engines: {node: '>=16'} fast-levenshtein@2.0.6: @@ -8596,10 +8430,6 @@ packages: fast-url-parser@1.1.3: resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} - fast-xml-parser@4.3.6: - resolution: {integrity: sha512-M2SovcRxD4+vC493Uc2GZVcZaj66CCJhWurC4viynVSTvrpErCShNcDz1lAho6n9REQKvL/ll4A4/fw6Y9z8nw==} - hasBin: true - fast-xml-parser@4.4.1: resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==} hasBin: true @@ -8667,10 +8497,6 @@ packages: filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} - fill-range@7.1.1: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} @@ -8714,8 +8540,8 @@ packages: resolution: {integrity: sha512-2kCCtc+JvcZ86IGAz3Z2Y0A1baIz9fL31pH/0S1IqZr9Iwnjq8izfPtrCyQKO6TLMPELLsQMre7VDqeIKCsHkA==} engines: {node: '>=18'} - firebase-admin@12.1.0: - resolution: {integrity: sha512-bU7uPKMmIXAihWxntpY/Ma9zucn5y3ec+HQPqFQ/zcEfP9Avk9E/6D8u+yT/VwKHNZyg7yDVWOoJi73TIdR4Ww==} + firebase-admin@12.4.0: + resolution: {integrity: sha512-3HOHqJxNmFv0JgK3voyMQgmcibhJN4LQfZfhnZGb6pcONnZxejki4nQ1twsoJlGaIvgQWBtO7rc5mh/cqlOJNA==} engines: {node: '>=14'} flat-cache@4.0.1: @@ -8755,8 +8581,8 @@ packages: foreach@2.0.6: resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==} - foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} form-data@2.5.1: @@ -8843,8 +8669,8 @@ packages: functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - gaxios@6.5.0: - resolution: {integrity: sha512-R9QGdv8j4/dlNoQbX3hSaK/S0rkMijqjVvW3YM06CoBdbU/VdKd159j4hePpng0KuE6Lh6JJ7UdmVGJZFcAG1w==} + gaxios@6.7.1: + resolution: {integrity: sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==} engines: {node: '>=14'} gcp-metadata@6.1.0: @@ -8911,9 +8737,6 @@ packages: git-hooks-list@1.0.3: resolution: {integrity: sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==} - git-log-parser@1.2.0: - resolution: {integrity: sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==} - git-log-parser@1.2.1: resolution: {integrity: sha512-PI+sPDvHXNPl5WNOErAK05s3j0lgwUzMN6o8cyQrDaKfT3qd7TmNJKeXX+SknI5I0QhG5fVPAEwSY4tRGDtYoQ==} @@ -8941,6 +8764,10 @@ packages: engines: {node: '>=16 || 14 >=14.18'} hasBin: true + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} deprecated: Glob versions prior to v9 are no longer supported @@ -8982,12 +8809,12 @@ packages: resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} engines: {node: '>=18'} - google-auth-library@9.9.0: - resolution: {integrity: sha512-9l+zO07h1tDJdIHN74SpnWIlNR+OuOemXlWJlLP9pXy6vFtizgpEzMuwJa4lqY9UAdiAv5DVd5ql0Am916I+aA==} + google-auth-library@9.14.0: + resolution: {integrity: sha512-Y/eq+RWVs55Io/anIsm24sDS8X79Tq948zVLGaa7+KlJYYqaGwp1YI37w48nzrNi12RgnzMrQD4NzdmCowT90g==} engines: {node: '>=14'} - google-gax@4.3.3: - resolution: {integrity: sha512-f4F2Y9X4+mqsrJuLZsuTljYuQpcBnQsCt9ScvZpdM8jGjqrcxyJi5JUiqtq0jtpdHVPzyit0N7f5t07e+kH5EA==} + google-gax@4.3.9: + resolution: {integrity: sha512-tcjQr7sXVGMdlvcG25wSv98ap1dtF4Z6mcV0rztGIddOcezw4YMb/uTXg72JPrLep+kXcVjaJjg6oo3KLf4itQ==} engines: {node: '>=14'} gopd@1.0.1: @@ -9014,8 +8841,8 @@ packages: peerDependencies: graphology-types: '>=0.24.0' - graphql-config@5.0.3: - resolution: {integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==} + graphql-config@5.1.2: + resolution: {integrity: sha512-kVwUuFz1h9u7B0nDPtnLFWN+x018niaH3zi1ChFCNfbunhDVJ911Z3YcglK5EfDfySeeH+zCa1aGxd1wMgNd7g==} engines: {node: '>= 16.0.0'} peerDependencies: cosmiconfig-toml-loader: ^1.0.0 @@ -9067,10 +8894,6 @@ packages: resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} - graphql@16.9.0: - resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==} - engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} - gtoken@7.1.0: resolution: {integrity: sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==} engines: {node: '>=14.0.0'} @@ -9110,6 +8933,10 @@ packages: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} + has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + hash-sum@2.0.0: resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} @@ -9162,9 +8989,8 @@ packages: resolution: {integrity: sha512-A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==} engines: {node: '>=14'} - html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + html-element-map@1.3.1: + resolution: {integrity: sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==} html-entities@2.5.2: resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} @@ -9172,8 +8998,8 @@ packages: html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - htmlparser2@8.0.2: - resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + htmlparser2@9.1.0: + resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} http-cache-semantics@4.1.1: resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} @@ -9212,10 +9038,6 @@ packages: resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} engines: {node: '>= 14'} - https-proxy-agent@7.0.4: - resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} - engines: {node: '>= 14'} - https-proxy-agent@7.0.5: resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} engines: {node: '>= 14'} @@ -9290,11 +9112,8 @@ packages: import-in-the-middle@1.7.1: resolution: {integrity: sha512-1LrZPDtW+atAxH42S6288qyDFNQ2YCty+2mxEPRtfazH6Z5QwkaBSTS2ods7hnVJioF6rkRfNoA6A/MstpFXLg==} - import-in-the-middle@1.8.1: - resolution: {integrity: sha512-yhRwoHtiLGvmSozNOALgjRPFI6uYsds60EoMqqnXyyv+JOIW/BrrLejuTGBt+bq0T5tLzOHrN0T7xYTm4Qt/ng==} - - import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + import-local@3.2.0: + resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} engines: {node: '>=8'} hasBin: true @@ -9384,19 +9203,6 @@ packages: '@types/react': optional: true - ink@5.0.1: - resolution: {integrity: sha512-ae4AW/t8jlkj/6Ou21H2av0wxTk8vrGzXv+v2v7j4in+bl1M5XRMVbfNghzhBokV++FjF8RBDJvYo+ttR9YVRg==} - engines: {node: '>=18'} - peerDependencies: - '@types/react': '>=18.0.0' - react: '>=18.0.0' - react-devtools-core: ^4.19.1 - peerDependenciesMeta: - '@types/react': - optional: true - react-devtools-core: - optional: true - inquirer@8.2.6: resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} engines: {node: '>=12.0.0'} @@ -9486,8 +9292,9 @@ packages: resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} hasBin: true - is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + is-core-module@2.15.1: + resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} + engines: {node: '>= 0.4'} is-data-view@1.0.1: resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} @@ -9517,14 +9324,6 @@ packages: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} - is-fullwidth-code-point@4.0.0: - resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} - engines: {node: '>=12'} - - is-fullwidth-code-point@5.0.0: - resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} - engines: {node: '>=18'} - is-generator-fn@2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} @@ -9537,11 +9336,6 @@ packages: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} - is-in-ci@0.1.0: - resolution: {integrity: sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==} - engines: {node: '>=18'} - hasBin: true - is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} @@ -9603,9 +9397,6 @@ packages: resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} engines: {node: '>=0.10.0'} - is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - is-promise@2.2.2: resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} @@ -9652,6 +9443,9 @@ packages: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} + is-subset@0.1.1: + resolution: {integrity: sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==} + is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} @@ -9741,8 +9535,8 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} - istanbul-lib-instrument@6.0.2: - resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} + istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} engines: {node: '>=10'} istanbul-lib-report@3.0.1: @@ -9814,15 +9608,6 @@ packages: resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - jest-environment-node@29.7.0: resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -9924,10 +9709,6 @@ packages: node-notifier: optional: true - jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} - hasBin: true - jiti@1.21.6: resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} hasBin: true @@ -9936,17 +9717,14 @@ packages: resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==} engines: {node: '>= 0.6.0'} - joi@17.13.1: - resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==} - joi@17.13.3: resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} - jose@4.15.5: - resolution: {integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==} + jose@4.15.9: + resolution: {integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==} - jose@5.2.4: - resolution: {integrity: sha512-6ScbIk2WWCeXkmzF6bRPmEuaqy1m8SbsRFMa/FLrSCkGIhj8OLVG/IH+XHVmNMx/KUo8cVWEE6oKR4dJ+S0Rkg==} + jose@5.8.0: + resolution: {integrity: sha512-E7CqYpL/t7MMnfGnK/eg416OsFCVUrU/Y3Vwe7QjKhu/BkS1Ms455+2xsqZQVN57/U2MHMBvEb5SrmAZWAIntA==} joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} @@ -9979,15 +9757,6 @@ packages: jsbn@1.1.0: resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} @@ -10000,8 +9769,8 @@ packages: peerDependencies: jsii-rosetta: ^1.98.0 || ~5.2.0 || ~5.3.0 || ~5.4.0 - jsii-reflect@1.98.0: - resolution: {integrity: sha512-HulKk6pQOk0zkqJXRaweV5PezvAghZAX4cuB7i0sBA0/kz1ypqB1KFhBiZ1PLeeMzAfb1/WmCF2UTu9xzQit4w==} + jsii-reflect@1.102.0: + resolution: {integrity: sha512-Lf2l8z3HSRSyouFGpDddfheP2LznKvFDKVlUWEzO+jDnQFOJOYTv4x617Yy5JIeIa9D8f70drRelOqove6hZtQ==} engines: {node: '>= 14.17.0'} hasBin: true @@ -10093,8 +9862,8 @@ packages: jwa@2.0.0: resolution: {integrity: sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==} - jwk-to-pem@2.0.5: - resolution: {integrity: sha512-L90jwellhO8jRKYwbssU9ifaMVqajzj3fpRjDKcsDzrslU9syRbFqfkXtT4B89HYAap+xsxNcxgBSB09ig+a7A==} + jwk-to-pem@2.0.6: + resolution: {integrity: sha512-zPC/5vjyR08TpknpTGW6Z3V3lDf9dU92oHbf0jJlG8tGOzslF9xk2UiO/seSx2llCUrNAe+AvmuGTICSXiYU7A==} jwks-rsa@3.1.0: resolution: {integrity: sha512-v7nqlfezb9YfHHzYII3ef2a2j1XnGeSE/bK3WfumaYCqONAIstJbrEGapz4kadScZzEt7zYCN7bucj8C0Mv/Rg==} @@ -10250,8 +10019,8 @@ packages: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} - lilconfig@3.1.1: - resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} + lilconfig@3.1.2: + resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} engines: {node: '>=14'} limiter@1.1.5: @@ -10322,12 +10091,18 @@ packages: lodash.difference@4.5.0: resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==} + lodash.escape@4.0.1: + resolution: {integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==} + lodash.escaperegexp@4.1.2: resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} lodash.flatten@4.4.0: resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} + lodash.flattendeep@4.4.0: + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + lodash.get@4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} @@ -10434,8 +10209,8 @@ packages: resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==} engines: {node: '>=8.0'} - logform@2.6.0: - resolution: {integrity: sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==} + logform@2.6.1: + resolution: {integrity: sha512-CdaO738xRapbKIMVn2m4F6KTj4j7ooJ8POVnebSgKo3KBz5axNXRAL7ZdRjIV6NOr2Uf4vjtRkxrFETOioCqSA==} engines: {node: '>= 12.0.0'} loglevel@1.9.1: @@ -10462,19 +10237,16 @@ packages: resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} engines: {node: '>=8'} - lru-cache@10.2.2: - resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} - engines: {node: 14 || >=16.14} - lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - lru-cache@4.0.2: - resolution: {integrity: sha512-uQw9OqphAGiZhkuPlpFGmdTU2tEuhxTourM/19qGJrxBPHAr/f8BT1a0i/lOclESnGatdJG/UCkP9kZB/Lh1iw==} - lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + lru-cache@7.18.3: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} @@ -10483,8 +10255,8 @@ packages: resolution: {integrity: sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==} engines: {node: '>=16.14'} - lru-memoizer@2.2.0: - resolution: {integrity: sha512-QfOZ6jNkxCcM/BkIPnFsqDhtrazLRsghi9mBwFAzol5GCvj4EkFT899Za3+QwikCg5sRX8JstioBDwOxEyzaNw==} + lru-memoizer@2.3.0: + resolution: {integrity: sha512-GXn7gyHAMhO13WSKrIiNfztwxodVsP8IoZ3XfrJV4yH2x0/OeTO/FIaAHTY5YekdGgW94njfuKmyyt1E0mR6Ug==} lru-queue@0.1.0: resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} @@ -10555,8 +10327,9 @@ packages: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} - memoizee@0.4.15: - resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} + memoizee@0.4.17: + resolution: {integrity: sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA==} + engines: {node: '>=0.12'} meow@12.1.1: resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} @@ -10593,18 +10366,18 @@ packages: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} - micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} - - micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} + mime-db@1.53.0: + resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==} + engines: {node: '>= 0.6'} + mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} @@ -10662,10 +10435,6 @@ packages: minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - minimatch@4.2.3: - resolution: {integrity: sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==} - engines: {node: '>=10'} - minimatch@5.1.6: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} @@ -10747,10 +10516,10 @@ packages: mnemonist@0.39.8: resolution: {integrity: sha512-vyWo2K3fjrUw8YeeZ1zF0fy6Mu59RHokURlld8ymdUPjMlD9EC9ov1/YPqTgqRvUN9nTr3Gqfz29LYAmu0PHPQ==} - mobx-react-lite@3.4.3: - resolution: {integrity: sha512-NkJREyFTSUXR772Qaai51BnE1voWx56LOL80xG7qkZr6vo8vEaLF3sz1JNUVh+rxmUzxYaqOhfuxTfqUh0FXUg==} + mobx-react-lite@4.0.7: + resolution: {integrity: sha512-RjwdseshK9Mg8On5tyJZHtGD+J78ZnCnRaxeQDSiciKVQDUbfZcXhmld0VMxAwvcTnPEHZySGGewm467Fcpreg==} peerDependencies: - mobx: ^6.1.0 + mobx: ^6.9.0 react: ^16.8.0 || ^17 || ^18 react-dom: '*' react-native: '*' @@ -10760,10 +10529,10 @@ packages: react-native: optional: true - mobx-react@7.6.0: - resolution: {integrity: sha512-+HQUNuh7AoQ9ZnU6c4rvbiVVl+wEkb9WqYsVDzGLng+Dqj1XntHu79PvEWKtSMoMj67vFp/ZPXcElosuJO8ckA==} + mobx-react@9.1.1: + resolution: {integrity: sha512-gVV7AdSrAAxqXOJ2bAbGa5TkPqvITSzaPiiEkzpW4rRsMhSec7C2NBCJYILADHKp2tzOAIETGRsIY0UaCV5aEw==} peerDependencies: - mobx: ^6.1.0 + mobx: ^6.9.0 react: ^16.8.0 || ^17 || ^18 react-dom: '*' react-native: '*' @@ -10783,6 +10552,9 @@ packages: resolution: {integrity: sha512-s6BdnqNoEYfViPJgkH85X5Nw5NpzxN8hoflKLweNa7vBxt2V7kaS06d74pAtqDxde8fn4r9h4dNdLiFGoNV0KA==} engines: {node: '>= 0.6.0'} + moo@0.5.2: + resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==} + morgan@1.10.0: resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==} engines: {node: '>= 0.8.0'} @@ -10829,8 +10601,8 @@ packages: resolution: {integrity: sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==} engines: {node: '>=12.0.0'} - nan@2.19.0: - resolution: {integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==} + nan@2.20.0: + resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} nanoid@3.3.7: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} @@ -10843,6 +10615,10 @@ packages: natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + nearley@2.20.1: + resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==} + hasBin: true + negotiator@0.6.3: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} engines: {node: '>= 0.6'} @@ -10867,19 +10643,15 @@ packages: resolution: {integrity: sha512-tmImk6btCUcCFHXkhqZnuSe4e/4M/YYs8qYaQGdjZSBloTXgQyuPrgjzn45zmFWpK2bDSEtIcF8olFdFxRaA1g==} engines: {node: '>= 18'} - node-abi@3.62.0: - resolution: {integrity: sha512-CPMcGa+y33xuL1E0TcNIu4YyaZCxnnvkVaEXrsosR3FxN+fV8xvb7Mzpb7IgKler10qeMkE6+Dp8qJhpzdq35g==} + node-abi@3.67.0: + resolution: {integrity: sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==} engines: {node: '>=10'} node-abort-controller@3.1.1: resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - node-addon-api@5.1.0: - resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} - - node-addon-api@7.1.0: - resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==} - engines: {node: ^16 || ^18 || >= 20} + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} node-emoji@2.1.3: resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==} @@ -10922,14 +10694,11 @@ packages: node-readfiles@0.2.0: resolution: {integrity: sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==} - node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - node-releases@2.0.18: resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} - nodemailer@6.9.13: - resolution: {integrity: sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==} + nodemailer@6.9.14: + resolution: {integrity: sha512-Dobp/ebDKBvz91sbtRKhcznLThrKxKt97GI2FAlAyy+fk19j73Uz3sBXolVtmcXjaorivqsbbbjDY+Jkt4/bQA==} engines: {node: '>=6.0.0'} nodemon@3.1.4: @@ -10937,10 +10706,6 @@ packages: engines: {node: '>=10'} hasBin: true - nopt@1.0.10: - resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==} - hasBin: true - normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} @@ -11069,9 +10834,6 @@ packages: nullthrows@1.1.1: resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - nwsapi@2.2.9: - resolution: {integrity: sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg==} - oas-kit-common@1.0.8: resolution: {integrity: sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==} @@ -11103,8 +10865,9 @@ packages: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} engines: {node: '>= 6'} - object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + object-inspect@1.13.2: + resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} + engines: {node: '>= 0.4'} object-is@1.1.6: resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} @@ -11118,6 +10881,14 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} + object.entries@1.1.8: + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} + engines: {node: '>= 0.4'} + + object.values@1.2.0: + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + engines: {node: '>= 0.4'} + obliterator@1.6.1: resolution: {integrity: sha512-9WXswnqINnnhOG/5SLimUlzuU1hFJUc8zkwyD59Sd+dPOMf05PmnYG/d6Q7HZ+KmgkZJa1PxRso6QdM3sTNHig==} @@ -11150,8 +10921,8 @@ packages: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} - oo-ascii-tree@1.98.0: - resolution: {integrity: sha512-+GE7ywhtS6MctbfcO+vZzqIxcFzucZCwmawcwCVo89DxQDakV1JFfFViTXG4A90UzTAsU4tQteGmwDtwOlOXLw==} + oo-ascii-tree@1.102.0: + resolution: {integrity: sha512-SNcZNfqtov0Af+6hx+qnliUhTOIxPUfboX/zQnc2EdmGHLXKQ3eSPQ40NopCgv4canzl5EvKGlCJaMCvk2viCQ==} engines: {node: '>= 14.17.0'} open-graph-scraper@6.5.2: @@ -11299,6 +11070,9 @@ packages: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} + package-json-from-dist@1.0.0: + resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + package-json-validator@0.6.5: resolution: {integrity: sha512-fEG8kM+EfX0j7TbTWAv6/0NRkid0fUHm2afJx35en3+IlrJ6dRQfKUCpuUl/bGM6MvQ0MxAlpaXkJtYVMp0F4A==} hasBin: true @@ -11361,6 +11135,9 @@ packages: parse5-htmlparser2-tree-adapter@7.0.0: resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} + parse5-parser-stream@7.1.2: + resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==} + parse5@5.1.1: resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} @@ -11392,10 +11169,6 @@ packages: resolution: {integrity: sha512-nxl9nrnLQmh64iTzMfyylSlRozL7kAXIaxw1fVcLYdyhNkJCRUzirRZTikXGJsg+hc4fqpneTK6iU2H1Q8THSA==} engines: {node: '>=10'} - patch-console@2.0.0: - resolution: {integrity: sha512-0YNdUceMdaQwoKce1gatDScmMo5pu/tfABfnzEqeG0gtTmd7mh/WcwgUjtAeOU7N8nFFlbQBnFK2gXW5fGvmMA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} @@ -11464,6 +11237,9 @@ packages: perfect-scrollbar@1.5.5: resolution: {integrity: sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==} + performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + pg-cloudflare@1.1.1: resolution: {integrity: sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==} @@ -11504,9 +11280,6 @@ packages: pgpass@1.0.5: resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==} - picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - picocolors@1.0.1: resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} @@ -11584,10 +11357,6 @@ packages: resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} engines: {node: ^10 || ^12 || >=14} - postcss@8.4.41: - resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==} - engines: {node: ^10 || ^12 || >=14} - postgres-array@2.0.0: resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} engines: {node: '>=4'} @@ -11692,16 +11461,12 @@ packages: proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - proto3-json-serializer@2.0.1: - resolution: {integrity: sha512-8awBvjO+FwkMd6gNoGFZyqkHZXCFd54CIYTb6De7dPaufGJ2XNW+QUNqbMr8MaAocMdb+KpsD4rxEOaTBDCffA==} + proto3-json-serializer@2.0.2: + resolution: {integrity: sha512-SAzp/O4Yh02jGdRc+uIrGoe87dkN/XtwxfZ4ZyafJHymd79ozp5VG5nyZ7ygqPM5+cpLDjjGnYFUkngonyDPOQ==} engines: {node: '>=14.0.0'} - protobufjs@7.2.6: - resolution: {integrity: sha512-dgJaEDDL6x8ASUZ1YqWciTRrdOuYNzoOf27oHNfdyvKqHr5i0FV7FSLU+aIeFjyFgVxrpTOtQUi0BLLBymZaBw==} - engines: {node: '>=12.0.0'} - - protobufjs@7.3.2: - resolution: {integrity: sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==} + protobufjs@7.4.0: + resolution: {integrity: sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==} engines: {node: '>=12.0.0'} protocols@2.0.1: @@ -11714,12 +11479,6 @@ packages: proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - - psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - pstree.remy@1.1.8: resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} @@ -11750,10 +11509,6 @@ packages: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} - qs@6.12.0: - resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==} - engines: {node: '>=0.6'} - qs@6.12.1: resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} engines: {node: '>=0.6'} @@ -11763,9 +11518,6 @@ packages: engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -11776,9 +11528,19 @@ packages: quicktype-core@23.0.170: resolution: {integrity: sha512-ZsjveG0yJUIijUx4yQshzyQ5EAXKbFSBTQJHnJ+KoSZVxcS+m3GcmDpzrdUIRYMhgLaF11ZGvLSYi5U0xcwemw==} + raf@3.4.1: + resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} + + railroad-diagrams@1.0.0: + resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==} + ramda@0.27.2: resolution: {integrity: sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==} + randexp@0.4.6: + resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==} + engines: {node: '>=0.12'} + random-bytes@1.0.0: resolution: {integrity: sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==} engines: {node: '>= 0.8'} @@ -11815,16 +11577,19 @@ packages: peerDependencies: react: ^17.0.2 - react-reconciler@0.29.2: - resolution: {integrity: sha512-zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg==} - engines: {node: '>=0.10.0'} + react-shallow-renderer@16.15.0: + resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: - react: ^18.3.1 + react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-tabs@4.3.0: - resolution: {integrity: sha512-2GfoG+f41kiBIIyd3gF+/GRCCYtamC8/2zlAcD8cqQmqI9Q+YVz7fJLHMmU9pXDVYYHpJeCgUSBJju85vu5q8Q==} + react-tabs@6.0.2: + resolution: {integrity: sha512-aQXTKolnM28k3KguGDBSAbJvcowOQr23A+CUJdzJtOSDOtTwzEaJA+1U4KwhNL9+Obe+jFS7geuvA7ICQPXOnQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-0 || ^18.0.0 + react: ^18.0.0 + + react@17.0.2: + resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} + engines: {node: '>=0.10.0'} react@18.3.1: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} @@ -11892,8 +11657,8 @@ packages: resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} engines: {node: '>=4'} - redoc@2.1.4: - resolution: {integrity: sha512-wqStZ9oPDTCmp2DMLqecxvxjltX4Bi2xfJiQq3+5Ty1g9Au7TGpJi9PPs42x7p/FxG8t+HlJ6xA7pXpWLZ+UyQ==} + redoc@2.1.5: + resolution: {integrity: sha512-POSbVg+7WLf+/5/c6GWLxL7+9t2D+1WlZdLN0a6qaCQc+ih3XYzteRBkXEN5kjrYrRNjdspfxTZkDLN5WV3Tzg==} engines: {node: '>=6.9', npm: '>=3.0.0'} peerDependencies: core-js: ^3.1.4 @@ -11946,16 +11711,13 @@ packages: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - require-in-the-middle@7.3.0: - resolution: {integrity: sha512-nQFEv9gRw6SJAwWD2LrL0NmQvAcO7FBwJbwmr2ttPAacfy0xuiOjE5zt+zM4xDyuyvUaxBi/9gb2SoCyNEVJcw==} + require-in-the-middle@7.4.0: + resolution: {integrity: sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==} engines: {node: '>=8.6.0'} require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - reserved-words@0.1.2: resolution: {integrity: sha512-0S5SrIUJ9LfpbVl4Yzij6VipUdafHrOTzvmfazSw/jeZrZtQK303OPZW+obtkaw7jQlTQppy0UvZWm9872PbRw==} @@ -12004,6 +11766,10 @@ packages: resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + ret@0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + retry-request@7.0.2: resolution: {integrity: sha512-dUOvLMJ0/JJYEn8NrpOaGNE7X3vpI5XlZS/u0ANjqtcZVKnIxP7IgCFwrKTxENw29emmwug53awKtaMm4i9g5w==} engines: {node: '>=14'} @@ -12024,16 +11790,16 @@ packages: resolution: {integrity: sha512-xcBILK2pA9oh4SiinPEZfhP8HfrB/ha+a2fTMyl7Om2WjlDVrOQy99N2MXXlUHqGJz4qEu2duXxHJjDWuK/0xg==} engines: {node: '>= 0.4.0'} - rfdc@1.3.1: - resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rollup@4.21.0: - resolution: {integrity: sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==} + rollup@4.21.1: + resolution: {integrity: sha512-ZnYyKvscThhgd3M5+Qt3pmhO4jIRR5RGzaSovB6Q7rGNrK5cUncrtLmcTTJVSdcKXyZjW8X8MB0JMSuH9bcAJg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -12041,6 +11807,9 @@ packages: resolution: {integrity: sha512-461UFH44NtSfIlS83PUg2N7OZo86BC/kB3dY77gJdsODsBhhw7+2uE0tzTINxrY9CahCUVk1VhpWCA5i1yoIEg==} engines: {node: '>= 0.8'} + rst-selector-parser@2.2.3: + resolution: {integrity: sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==} + run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -12072,8 +11841,8 @@ packages: resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} engines: {node: '>= 0.4'} - safe-stable-stringify@2.4.3: - resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} engines: {node: '>=10'} safer-buffer@2.1.2: @@ -12085,12 +11854,8 @@ packages: sax@1.2.1: resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==} - sax@1.3.0: - resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} - - saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} scheduler@0.20.2: resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} @@ -12289,14 +12054,6 @@ packages: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} engines: {node: '>=10'} - slice-ansi@5.0.0: - resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} - engines: {node: '>=12'} - - slice-ansi@7.1.0: - resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} - engines: {node: '>=18'} - slugify@1.4.7: resolution: {integrity: sha512-tf+h5W1IrjNm/9rKKj0JU2MDMruiopx0jjVA5zCdBtcGjfp0+c5rHw/zADLC3IeKlGHtVbHtpfzvYA0OYT+HKg==} engines: {node: '>=8.0.0'} @@ -12365,8 +12122,8 @@ packages: spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - spdx-license-ids@3.0.17: - resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} + spdx-license-ids@3.0.20: + resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} spdx-license-list@6.9.0: resolution: {integrity: sha512-L2jl5vc2j6jxWcNCvcVj/BW9A8yGIG02Dw+IUw0ZxDM70f7Ylf5Hq39appV1BI9yxyWQRpq2TQ1qaXvf+yjkqA==} @@ -12489,9 +12246,6 @@ packages: string.prototype.repeat@0.2.0: resolution: {integrity: sha512-1BH+X+1hSthZFW+X+JaUkjkkUPwIlLEMJBLANN3hOob3RhEk5snLWNECDnYbgn/m5c5JV7Ersu1Yubaf+05cIA==} - string.prototype.repeat@1.0.0: - resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} - string.prototype.trim@1.2.9: resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} engines: {node: '>= 0.4'} @@ -12613,8 +12367,8 @@ packages: resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} - supports-hyperlinks@3.0.0: - resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==} + supports-hyperlinks@3.1.0: + resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==} engines: {node: '>=14.18'} supports-preserve-symlinks-flag@1.0.0: @@ -12625,8 +12379,8 @@ packages: resolution: {integrity: sha512-nF7oMeL4KypldrQhac8RyHerJeGPD1p2xDh900GPvc+Nk7nWP6jX2FcC7WmkinMoAmoO774+AFXcWsW8gMWEIg==} engines: {node: '>=10'} - swagger-ui-dist@5.17.5: - resolution: {integrity: sha512-QlkO9OJlSOZbXx4bbQcV18RDmt7RgbO1fh2gL3hipFtPXEh0ejjNT+Oe5lchkTadawd6XSvnCcwFkr2xy3HtxA==} + swagger-ui-dist@5.17.14: + resolution: {integrity: sha512-CVbSfaLpstV65OnSjbXfVd6Sta3q3F7Cj/yYuvHMp1P90LztOLs6PfUnKEVAeiIVQt9u2SaPwv0LiH/OyMjHRw==} swagger2openapi@7.0.8: resolution: {integrity: sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==} @@ -12635,9 +12389,6 @@ packages: swap-case@2.0.2: resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} - symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - synckit@0.9.1: resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==} engines: {node: ^14.18.0 || >=16.0.0} @@ -12728,8 +12479,9 @@ packages: resolution: {integrity: sha512-75voc/9G4rDIJleOo4jPvN4/YC4GRZrY8yy1uU4lwrB3XEQbWve8zXoO5No4eFrGcTAMYyoY67p8jRQdtA1HbA==} engines: {node: '>=12'} - timers-ext@0.1.7: - resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==} + timers-ext@0.1.8: + resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==} + engines: {node: '>=0.12'} tiny-inflate@1.0.3: resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} @@ -12760,32 +12512,20 @@ packages: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} - touch@3.1.0: - resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} + touch@3.1.1: + resolution: {integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==} hasBin: true - tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} - tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} tr46@1.0.1: resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} - tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} - traverse@0.6.8: resolution: {integrity: sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==} engines: {node: '>= 0.4'} - traverse@0.6.9: - resolution: {integrity: sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==} - engines: {node: '>= 0.4'} - tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true @@ -12885,8 +12625,8 @@ packages: typescript: optional: true - tsx@4.17.0: - resolution: {integrity: sha512-eN4mnDA5UMKDt4YZixo9tBioibaMBpoxBkD+rIPAjVmYERSG0/dWEY1CEFuV89CgASlKL499q8AhmkMnnjtOJg==} + tsx@4.19.0: + resolution: {integrity: sha512-bV30kM7bsLZKZIOCHeMNVMJ32/LuJzLVajkQI/qf92J2Qr08ueLQvW00PUZGiuLPP760UINwupgUj8qrSCPUKg==} engines: {node: '>=18.0.0'} hasBin: true @@ -12896,38 +12636,38 @@ packages: tunnel-ssh@4.1.6: resolution: {integrity: sha512-y7+x+T3F3rkx2Zov5Tk9DGfeEBVAdWU3A/91E0Dk5rrZ/VFIlpV2uhhRuaISJUdyG0N+Lcp1fXZMXz+ovPt5vA==} - turbo-darwin-64@2.0.14: - resolution: {integrity: sha512-kwfDmjNwlNfvtrvT29+ZBg5n1Wvxl891bFHchMJyzMoR0HOE9N1NSNdSZb9wG3e7sYNIu4uDkNk+VBEqJW0HzQ==} + turbo-darwin-64@2.1.0: + resolution: {integrity: sha512-gHwpDk2gyB7qZ57gUUwDIS/IkglqEjjVtPZCTxmCRg28Tiwjui0azsLVKrnHP9UZHllozwbi28x8HXLXLEFF1w==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.0.14: - resolution: {integrity: sha512-m3LXYEshCx3wc4ZClM6gb01KYpFmtjQ9IBF3A7ofjb6ahux3xlYZJZ3uFCLAGHuvGLuJ3htfiPbwlDPTdknqqw==} + turbo-darwin-arm64@2.1.0: + resolution: {integrity: sha512-GLaqGetNC6eS4eqXgsheLOHic/OcnGCGDi5boVf+TFZTXYH6YE15L4ugZha4xHXCr1KouCLILHh+f8EHEmWylg==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.0.14: - resolution: {integrity: sha512-7vBzCPdoTtR92SNn2JMgj1FlMmyonGmpMaQdgAB1OVYtuQ6NVGoh7/lODfaILqXjpvmFSVbpBIDrKOT6EvcprQ==} + turbo-linux-64@2.1.0: + resolution: {integrity: sha512-VzBOsj7JyGoZtiNZZ6brjnY7UehRnClluw7pwznuLPzClkqOOPMd2jOcgkWxnP/xW4NBmOoFANXXrtvKBD4f2w==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.0.14: - resolution: {integrity: sha512-jwH+c0bfjpBf26K/tdEFatmnYyXwGROjbr6bZmNcL8R+IkGAc/cglL+OToqJnQZTgZvH7uDGbeSyUo7IsHyjuA==} + turbo-linux-arm64@2.1.0: + resolution: {integrity: sha512-St7svJnOO5g4F6R7Z32e10I/0M3e6qpNjEYybXwPNul9NSfnUXeky4WoKaALwqNhyJ7nYemoFpZ1d+i8hFQTHg==} cpu: [arm64] os: [linux] - turbo-windows-64@2.0.14: - resolution: {integrity: sha512-w9/XwkHSzvLjmioo6cl3S1yRfI6swxsV1j1eJwtl66JM4/pn0H2rBa855R0n7hZnmI6H5ywLt/nLt6Ae8RTDmw==} + turbo-windows-64@2.1.0: + resolution: {integrity: sha512-iSobNud2MrJ1SZ1upVPlErT8xexsr0MQtKapdfq6z0M0rBnrDGEq5bUCSScWyGu+O4+glB4br9xkTAkGFqaxqQ==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.0.14: - resolution: {integrity: sha512-XaQlyYk+Rf4xS5XWCo8XCMIpssgGGy8blzLfolN6YBp4baElIWMlkLZHDbGyiFmCbNf9I9gJI64XGRG+LVyyjA==} + turbo-windows-arm64@2.1.0: + resolution: {integrity: sha512-d61jN4rjE5PnUfF66GKrKoj8S8Ql4FGXzFFzZz4kjsHpZZzCTtqlzPZBmd1byzGYhDPTorTqG3G1USohbdyohA==} cpu: [arm64] os: [win32] - turbo@2.0.14: - resolution: {integrity: sha512-00JjdCMD/cpsjP0Izkjcm8Oaor5yUCfDwODtaLb+WyblyadkaDEisGhy3Dbd5az9n+5iLSPiUgf+WjPbns6MRg==} + turbo@2.1.0: + resolution: {integrity: sha512-A969/LO/sPHKlapIarY2VVzqQ5JnnW2/1kksZlnMEpsRD6gwOELvVL+ozfMiO7av9RILt3UeN02L17efr6HUCA==} hasBin: true turndown@7.2.0: @@ -12980,8 +12720,8 @@ packages: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} - type@2.7.2: - resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} + type@2.7.3: + resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} typed-array-buffer@1.0.2: resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} @@ -12999,15 +12739,11 @@ packages: resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} engines: {node: '>= 0.4'} - typedarray.prototype.slice@1.0.3: - resolution: {integrity: sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==} - engines: {node: '>= 0.4'} - typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - typescript-eslint@8.2.0: - resolution: {integrity: sha512-DmnqaPcML0xYwUzgNbM1XaKXpEb7BShYf2P1tkUmmcl8hyeG7Pj08Er7R9bNy6AufabywzJcOybQAtnD/c9DGw==} + typescript-eslint@8.3.0: + resolution: {integrity: sha512-EvWjwWLwwKDIJuBjk2I6UkV8KEQcwZ0VM10nR1rIunRDIP67QJTZAHBXTX0HW/oI1H10YESF8yWie8fRQxjvFA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -13025,13 +12761,13 @@ packages: engines: {node: '>=14.17'} hasBin: true - typescript@5.7.0-dev.20240822: - resolution: {integrity: sha512-JL60efPDEbshbweVXX18Ic5g+9iVbf2Nc3xh3eBGbLjrt5+x6KZzB3c2d+J5PoqOzPjbFATCT2FQ3W8vEGOXTg==} + typescript@5.7.0-dev.20240827: + resolution: {integrity: sha512-qNwNQBg18O4Z5RRGb07O562OpDlAVlytNcKfqcx8JQRJcs3p/KLHXjr0FbUbJ3SKoxA2vaQ3Zt89YLWHuCXzUw==} engines: {node: '>=14.17'} hasBin: true - ua-parser-js@1.0.37: - resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} + ua-parser-js@1.0.38: + resolution: {integrity: sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==} uglify-js@3.19.2: resolution: {integrity: sha512-S8KA6DDI47nQXJSi2ctQ629YzwOVs+bQML6DAtvy0wgNdpi+0ySpQK0g2pxBq2xfF2z3YCscu7NNA8nXT9PlIQ==} @@ -13058,14 +12794,11 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici-types@6.19.6: - resolution: {integrity: sha512-e/vggGopEfTKSvj4ihnOLTsqhrKRN3LeO6qSN/GxohhuRv8qH9bNQ4B8W7e/vFL+0XTnmHPB4/kegunZGA4Org==} - undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici@6.18.2: - resolution: {integrity: sha512-o/MQLTwRm9IVhOqhZ0NQ9oXax1ygPjw6Vs+Vq/4QRjbOAC3B1GCHy7TYxxbExKlb7bzDRzt9vBWU6BDz0RFfYg==} + undici@6.19.8: + resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==} engines: {node: '>=18.17'} unicode-emoji-modifier-base@1.0.0: @@ -13105,10 +12838,6 @@ packages: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} - universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - universalify@2.0.1: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} @@ -13133,12 +12862,6 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - update-browserslist-db@1.0.15: - resolution: {integrity: sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - update-browserslist-db@1.1.0: resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} hasBin: true @@ -13161,9 +12884,6 @@ packages: resolution: {integrity: sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - url-template@2.0.8: resolution: {integrity: sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==} @@ -13176,8 +12896,13 @@ packages: urlpattern-polyfill@8.0.2: resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==} - utf8-byte-length@1.0.4: - resolution: {integrity: sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==} + use-sync-external-store@1.2.2: + resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + utf8-byte-length@1.0.5: + resolution: {integrity: sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==} util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -13189,6 +12914,10 @@ packages: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} + uuid@10.0.0: + resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} + hasBin: true + uuid@3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. @@ -13213,8 +12942,8 @@ packages: v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - v8-to-istanbul@9.2.0: - resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} + v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} engines: {node: '>=10.12.0'} validate-npm-package-license@3.0.4: @@ -13224,10 +12953,6 @@ packages: resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - validator@13.11.0: - resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==} - engines: {node: '>= 0.10'} - validator@13.12.0: resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==} engines: {node: '>= 0.10'} @@ -13240,15 +12965,11 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} - w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} - walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - watchpack@2.4.1: - resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + watchpack@2.4.2: + resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==} engines: {node: '>=10.13.0'} wcwidth@1.0.1: @@ -13258,8 +12979,8 @@ packages: resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} engines: {node: '>= 8'} - webcrypto-core@1.7.9: - resolution: {integrity: sha512-FE+a4PPkOmBbgNDIyRmcHhgXn+2ClRl3JzJdDu/P4+B8y81LqKe6RAsI9b3lAOHe1T1BMkSjsRHTYRikImZnVA==} + webcrypto-core@1.8.0: + resolution: {integrity: sha512-kR1UQNH8MD42CYuLzvibfakG5Ew5seG85dMMoAM/1LqvckxaF6pUiidLuraIu4V+YCIFabYecUZAW0TuxAoaqw==} webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -13267,10 +12988,6 @@ packages: webidl-conversions@4.0.2: resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - websocket-driver@0.7.4: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} engines: {node: '>=0.8.0'} @@ -13279,17 +12996,17 @@ packages: resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} engines: {node: '>=0.8.0'} - whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} whatwg-mimetype@3.0.0: resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} engines: {node: '>=12'} - whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} @@ -13323,12 +13040,8 @@ packages: resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} engines: {node: '>=8'} - widest-line@5.0.0: - resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} - engines: {node: '>=18'} - - winston-transport@4.7.0: - resolution: {integrity: sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==} + winston-transport@4.7.1: + resolution: {integrity: sha512-wQCXXVgfv/wUPOfb2x0ruxzwkcZfxcktz6JIMUaPLmcNhO4bZTwA/WtDWK74xV3F2dKu8YadrFv0qhwYjVEwhA==} engines: {node: '>= 12.0.0'} winston@2.4.7: @@ -13365,10 +13078,6 @@ packages: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} engines: {node: '>=12'} - wrap-ansi@9.0.0: - resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} - engines: {node: '>=18'} - wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} @@ -13376,8 +13085,8 @@ packages: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - ws@7.5.9: - resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -13388,18 +13097,6 @@ packages: utf-8-validate: optional: true - ws@8.17.0: - resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - ws@8.18.0: resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} engines: {node: '>=10.0.0'} @@ -13416,10 +13113,6 @@ packages: resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} hasBin: true - xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - xml2js@0.6.2: resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==} engines: {node: '>=4.0.0'} @@ -13432,9 +13125,6 @@ packages: resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} engines: {node: '>=8.0'} - xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - xstate@4.38.3: resolution: {integrity: sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==} @@ -13449,9 +13139,6 @@ packages: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} - yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} @@ -13465,11 +13152,6 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - yaml@2.4.2: - resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==} - engines: {node: '>= 14'} - hasBin: true - yaml@2.5.0: resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==} engines: {node: '>= 14'} @@ -13522,9 +13204,6 @@ packages: resolution: {integrity: sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==} engines: {node: '>=8'} - yoga-wasm-web@0.3.3: - resolution: {integrity: sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==} - z-schema@5.0.5: resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==} engines: {node: '>=8.0.0'} @@ -13534,19 +13213,11 @@ packages: resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==} engines: {node: '>= 10'} - zod@3.23.6: - resolution: {integrity: sha512-RTHJlZhsRbuA8Hmp/iNL7jnfc4nZishjsanDAfEY1QpDQZCahUp3xDzl+zfweE9BklxMUcgBgS1b7Lvie/ZVwA==} - zod@3.23.8: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} snapshots: - '@alcalzone/ansi-tokenize@0.1.3': - dependencies: - ansi-styles: 6.2.1 - is-fullwidth-code-point: 4.0.0 - '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.5 @@ -13647,7 +13318,7 @@ snapshots: '@graphql-tools/schema': 9.0.19(graphql@16.8.1) '@josephg/resolvable': 1.0.1 '@types/express': 4.17.21 - '@types/express-serve-static-core': 4.19.0 + '@types/express-serve-static-core': 4.19.5 '@types/node-fetch': 2.6.11 async-retry: 1.3.3 cors: 2.8.5 @@ -13703,7 +13374,7 @@ snapshots: '@apollo/utils.keyvaluecache@3.1.0': dependencies: '@apollo/utils.logger': 3.0.0 - lru-cache: 10.2.2 + lru-cache: 10.4.3 '@apollo/utils.logger@2.0.1': {} @@ -13742,13 +13413,13 @@ snapshots: '@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/core': 7.24.8 - '@babel/generator': 7.24.8 - '@babel/parser': 7.24.8 - '@babel/runtime': 7.24.5 - '@babel/traverse': 7.24.8 - '@babel/types': 7.24.8 - babel-preset-fbjs: 3.4.0(@babel/core@7.24.8) + '@babel/core': 7.25.2 + '@babel/generator': 7.25.5 + '@babel/parser': 7.25.4 + '@babel/runtime': 7.25.4 + '@babel/traverse': 7.25.4 + '@babel/types': 7.25.4 + babel-preset-fbjs: 3.4.0(@babel/core@7.25.2) chalk: 4.1.2 fb-watchman: 2.0.2 fbjs: 3.0.5(encoding@0.1.13) @@ -13764,30 +13435,6 @@ snapshots: - encoding - supports-color - '@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@babel/core': 7.24.8 - '@babel/generator': 7.24.8 - '@babel/parser': 7.24.8 - '@babel/runtime': 7.24.5 - '@babel/traverse': 7.24.8 - '@babel/types': 7.24.8 - babel-preset-fbjs: 3.4.0(@babel/core@7.24.8) - chalk: 4.1.2 - fb-watchman: 2.0.2 - fbjs: 3.0.5(encoding@0.1.13) - glob: 7.2.3 - graphql: 16.9.0 - immutable: 3.7.6 - invariant: 2.2.4 - nullthrows: 1.1.1 - relay-runtime: 12.0.0(encoding@0.1.13) - signedsource: 1.0.0 - yargs: 15.4.1 - transitivePeerDependencies: - - encoding - - supports-color - '@ardatan/sync-fetch@0.0.1(encoding@0.1.13)': dependencies: node-fetch: 2.7.0(encoding@0.1.13) @@ -13844,27 +13491,27 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-compression': 3.0.7 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -13893,26 +13540,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -13942,26 +13589,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -13988,26 +13635,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14034,7 +13681,7 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/eventstream-serde-browser': 3.0.6 '@smithy/eventstream-serde-config-resolver': 3.0.3 '@smithy/eventstream-serde-node': 3.0.5 @@ -14043,20 +13690,20 @@ snapshots: '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14084,7 +13731,7 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/eventstream-serde-browser': 3.0.6 '@smithy/eventstream-serde-config-resolver': 3.0.3 '@smithy/eventstream-serde-node': 3.0.5 @@ -14093,20 +13740,20 @@ snapshots: '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14135,26 +13782,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14183,27 +13830,27 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/md5-js': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14230,26 +13877,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14277,26 +13924,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14320,26 +13967,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14365,26 +14012,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 '@smithy/config-resolver': 3.0.5 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/fetch-http-handler': 3.2.4 '@smithy/hash-node': 3.0.3 '@smithy/invalid-dependency': 3.0.3 '@smithy/middleware-content-length': 3.0.5 '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/middleware-stack': 3.0.3 '@smithy/node-config-provider': 3.1.4 '@smithy/node-http-handler': 3.1.4 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/url-parser': 3.0.3 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.14 - '@smithy/util-defaults-mode-node': 3.0.14 + '@smithy/util-defaults-mode-browser': 3.0.15 + '@smithy/util-defaults-mode-node': 3.0.15 '@smithy/util-endpoints': 2.0.5 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -14395,12 +14042,12 @@ snapshots: '@aws-sdk/core@3.629.0': dependencies: - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/node-config-provider': 3.1.4 '@smithy/property-provider': 3.1.3 '@smithy/protocol-http': 4.1.0 '@smithy/signature-v4': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/util-middleware': 3.0.3 fast-xml-parser: 4.4.1 @@ -14420,7 +14067,7 @@ snapshots: '@smithy/node-http-handler': 3.1.4 '@smithy/property-provider': 3.1.3 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/util-stream': 3.1.3 tslib: 2.6.3 @@ -14500,8 +14147,8 @@ snapshots: dependencies: '@aws-sdk/client-dynamodb': 3.632.0 '@aws-sdk/util-dynamodb': 3.632.0(@aws-sdk/client-dynamodb@3.632.0) - '@smithy/core': 2.3.2 - '@smithy/smithy-client': 3.1.12 + '@smithy/core': 2.4.0 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 tslib: 2.6.3 @@ -14539,11 +14186,11 @@ snapshots: '@aws-sdk/core': 3.629.0 '@aws-sdk/types': 3.609.0 '@aws-sdk/util-arn-parser': 3.568.0 - '@smithy/core': 2.3.2 + '@smithy/core': 2.4.0 '@smithy/node-config-provider': 3.1.4 '@smithy/protocol-http': 4.1.0 '@smithy/signature-v4': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/util-config-provider': 3.0.0 '@smithy/util-middleware': 3.0.3 @@ -14554,7 +14201,7 @@ snapshots: '@aws-sdk/middleware-sdk-sqs@3.622.0': dependencies: '@aws-sdk/types': 3.609.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/util-hex-encoding': 3.0.0 '@smithy/util-utf8': 3.0.0 @@ -14634,90 +14281,32 @@ snapshots: '@smithy/types': 3.3.0 tslib: 2.6.3 - '@babel/code-frame@7.24.2': - dependencies: - '@babel/highlight': 7.24.5 - picocolors: 1.0.0 - '@babel/code-frame@7.24.7': dependencies: '@babel/highlight': 7.24.7 picocolors: 1.0.1 - '@babel/compat-data@7.24.4': {} - - '@babel/compat-data@7.24.8': {} - - '@babel/compat-data@7.25.2': - optional: true - - '@babel/core@7.24.5': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) - '@babel/helpers': 7.24.5 - '@babel/parser': 7.24.5 - '@babel/template': 7.24.0 - '@babel/traverse': 7.24.5 - '@babel/types': 7.24.5 - convert-source-map: 2.0.0 - debug: 4.3.6 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/core@7.24.8': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.8 - '@babel/helper-compilation-targets': 7.24.8 - '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8) - '@babel/helpers': 7.24.8 - '@babel/parser': 7.24.8 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.8 - '@babel/types': 7.24.8 - convert-source-map: 2.0.0 - debug: 4.3.6 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@babel/compat-data@7.25.4': {} '@babel/core@7.25.2': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.24.7 - '@babel/generator': 7.25.0 + '@babel/generator': 7.25.5 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) '@babel/helpers': 7.25.0 - '@babel/parser': 7.25.3 + '@babel/parser': 7.25.4 '@babel/template': 7.25.0 - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 + '@babel/traverse': 7.25.4 + '@babel/types': 7.25.4 convert-source-map: 2.0.0 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - optional: true - - '@babel/generator@7.24.5': - dependencies: - '@babel/types': 7.24.5 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 '@babel/generator@7.24.7': dependencies: @@ -14726,119 +14315,49 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 - '@babel/generator@7.24.8': - dependencies: - '@babel/types': 7.24.8 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - - '@babel/generator@7.25.0': + '@babel/generator@7.25.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.25.4 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 - optional: true - - '@babel/helper-annotate-as-pure@7.22.5': - dependencies: - '@babel/types': 7.24.8 - - '@babel/helper-compilation-targets@7.23.6': - dependencies: - '@babel/compat-data': 7.24.4 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.23.0 - lru-cache: 5.1.1 - semver: 6.3.1 - '@babel/helper-compilation-targets@7.24.8': + '@babel/helper-annotate-as-pure@7.24.7': dependencies: - '@babel/compat-data': 7.24.8 - '@babel/helper-validator-option': 7.24.8 - browserslist: 4.23.2 - lru-cache: 5.1.1 - semver: 6.3.1 + '@babel/types': 7.25.4 '@babel/helper-compilation-targets@7.25.2': dependencies: - '@babel/compat-data': 7.25.2 + '@babel/compat-data': 7.25.4 '@babel/helper-validator-option': 7.24.8 browserslist: 4.23.3 lru-cache: 5.1.1 semver: 6.3.1 - optional: true - - '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.8) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - - '@babel/helper-environment-visitor@7.22.20': {} - - '@babel/helper-environment-visitor@7.24.7': - dependencies: - '@babel/types': 7.24.8 - - '@babel/helper-function-name@7.23.0': - dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.5 - - '@babel/helper-function-name@7.24.7': - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.8 - - '@babel/helper-hoist-variables@7.22.5': - dependencies: - '@babel/types': 7.24.5 - '@babel/helper-hoist-variables@7.24.7': + '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)': dependencies: - '@babel/types': 7.24.8 - - '@babel/helper-member-expression-to-functions@7.24.5': - dependencies: - '@babel/types': 7.24.8 - - '@babel/helper-module-imports@7.24.3': - dependencies: - '@babel/types': 7.24.5 - - '@babel/helper-module-imports@7.24.7': - dependencies: - '@babel/traverse': 7.24.8 - '@babel/types': 7.24.8 + '@babel/core': 7.25.2 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.8 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/traverse': 7.25.4 + semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)': + '@babel/helper-member-expression-to-functions@7.24.8': dependencies: - '@babel/core': 7.24.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-simple-access': 7.24.5 - '@babel/helper-split-export-declaration': 7.24.5 - '@babel/helper-validator-identifier': 7.24.7 + '@babel/traverse': 7.25.4 + '@babel/types': 7.25.4 + transitivePeerDependencies: + - supports-color - '@babel/helper-module-transforms@7.24.8(@babel/core@7.24.8)': + '@babel/helper-module-imports@7.24.7': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 + '@babel/traverse': 7.25.4 + '@babel/types': 7.25.4 transitivePeerDependencies: - supports-color @@ -14848,542 +14367,332 @@ snapshots: '@babel/helper-module-imports': 7.24.7 '@babel/helper-simple-access': 7.24.7 '@babel/helper-validator-identifier': 7.24.7 - '@babel/traverse': 7.25.3 + '@babel/traverse': 7.25.4 transitivePeerDependencies: - supports-color - optional: true - '@babel/helper-optimise-call-expression@7.22.5': + '@babel/helper-optimise-call-expression@7.24.7': dependencies: - '@babel/types': 7.24.8 - - '@babel/helper-plugin-utils@7.24.5': {} + '@babel/types': 7.25.4 - '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.5 - '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils@7.24.8': {} - '@babel/helper-simple-access@7.24.5': + '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)': dependencies: - '@babel/types': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-member-expression-to-functions': 7.24.8 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/traverse': 7.25.4 + transitivePeerDependencies: + - supports-color '@babel/helper-simple-access@7.24.7': dependencies: - '@babel/traverse': 7.24.8 - '@babel/types': 7.24.8 + '@babel/traverse': 7.25.4 + '@babel/types': 7.25.4 transitivePeerDependencies: - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.22.5': - dependencies: - '@babel/types': 7.24.8 - - '@babel/helper-split-export-declaration@7.24.5': + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': dependencies: - '@babel/types': 7.24.5 - - '@babel/helper-split-export-declaration@7.24.7': - dependencies: - '@babel/types': 7.24.8 - - '@babel/helper-string-parser@7.24.1': {} + '@babel/traverse': 7.25.4 + '@babel/types': 7.25.4 + transitivePeerDependencies: + - supports-color '@babel/helper-string-parser@7.24.8': {} - '@babel/helper-validator-identifier@7.24.5': {} - '@babel/helper-validator-identifier@7.24.7': {} - '@babel/helper-validator-option@7.23.5': {} - '@babel/helper-validator-option@7.24.8': {} - '@babel/helpers@7.24.5': - dependencies: - '@babel/template': 7.24.0 - '@babel/traverse': 7.24.5 - '@babel/types': 7.24.5 - transitivePeerDependencies: - - supports-color - - '@babel/helpers@7.24.8': - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.8 - '@babel/helpers@7.25.0': dependencies: '@babel/template': 7.25.0 - '@babel/types': 7.25.2 - optional: true + '@babel/types': 7.25.4 - '@babel/highlight@7.24.5': - dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.0 - - '@babel/highlight@7.24.7': + '@babel/highlight@7.24.7': dependencies: '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.0.1 - '@babel/parser@7.24.5': - dependencies: - '@babel/types': 7.24.5 - - '@babel/parser@7.24.8': - dependencies: - '@babel/types': 7.24.7 - - '@babel/parser@7.25.3': - dependencies: - '@babel/types': 7.25.2 - optional: true - - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.8) - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.8)': + '@babel/parser@7.25.4': dependencies: - '@babel/compat-data': 7.24.8 - '@babel/core': 7.24.8 - '@babel/helper-compilation-targets': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.8) - '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.8) + '@babel/types': 7.25.4 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5)': + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.8)': + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/compat-data': 7.25.4 + '@babel/core': 7.25.2 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2) '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.5)': + '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)': + '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.8)': + '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 - - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.8)': - dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true - - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5)': - dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.8)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.5 - optional: true + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5)': + '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.24.8)': + '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-classes@7.24.5(@babel/core@7.24.8)': + '@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.24.8 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.8) - '@babel/helper-split-export-declaration': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2) + '@babel/traverse': 7.25.4 globals: 11.12.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/template': 7.24.7 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/template': 7.25.0 - '@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.24.8)': + '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.8) + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-compilation-targets': 7.24.8 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/traverse': 7.25.4 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8) - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.24.8 '@babel/helper-simple-access': 7.24.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.8) + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2) + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-parameters@7.24.5(@babel/core@7.24.8)': + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.8)': + '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/core': 7.25.2 + '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.8) - '@babel/types': 7.24.8 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) + '@babel/types': 7.25.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.8)': + '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)': dependencies: - '@babel/core': 7.24.8 - '@babel/helper-plugin-utils': 7.24.5 + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/runtime@7.24.5': + '@babel/runtime@7.25.4': dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.24.0': - dependencies: - '@babel/code-frame': 7.24.2 - '@babel/parser': 7.24.5 - '@babel/types': 7.24.5 - '@babel/template@7.24.7': dependencies: '@babel/code-frame': 7.24.7 - '@babel/parser': 7.24.8 + '@babel/parser': 7.25.4 '@babel/types': 7.24.7 '@babel/template@7.25.0': dependencies: '@babel/code-frame': 7.24.7 - '@babel/parser': 7.25.3 - '@babel/types': 7.25.2 - optional: true - - '@babel/traverse@7.24.5': - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.24.5 - '@babel/parser': 7.24.5 - '@babel/types': 7.24.5 - debug: 4.3.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - '@babel/traverse@7.24.8': - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.8 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-hoist-variables': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/parser': 7.24.8 - '@babel/types': 7.24.8 - debug: 4.3.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/parser': 7.25.4 + '@babel/types': 7.25.4 - '@babel/traverse@7.25.3': + '@babel/traverse@7.25.4': dependencies: '@babel/code-frame': 7.24.7 - '@babel/generator': 7.25.0 - '@babel/parser': 7.25.3 + '@babel/generator': 7.25.5 + '@babel/parser': 7.25.4 '@babel/template': 7.25.0 - '@babel/types': 7.25.2 - debug: 4.3.6 + '@babel/types': 7.25.4 + debug: 4.3.6(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color - optional: true - - '@babel/types@7.24.5': - dependencies: - '@babel/helper-string-parser': 7.24.1 - '@babel/helper-validator-identifier': 7.24.5 - to-fast-properties: 2.0.0 '@babel/types@7.24.7': dependencies: @@ -15391,22 +14700,15 @@ snapshots: '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - '@babel/types@7.24.8': + '@babel/types@7.25.4': dependencies: '@babel/helper-string-parser': 7.24.8 '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - '@babel/types@7.25.2': - dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - to-fast-properties: 2.0.0 - optional: true - '@bcoe/v8-coverage@0.2.3': {} - '@cdktf/cli-core@0.20.8(encoding@0.1.13)(react@18.3.1)': + '@cdktf/cli-core@0.20.8(encoding@0.1.13)(react@17.0.2)': dependencies: '@cdktf/commons': 0.20.8(constructs@10.3.0) '@cdktf/hcl-tools': 0.20.8 @@ -15431,11 +14733,11 @@ snapshots: fs-extra: 8.1.0 https-proxy-agent: 5.0.1 indent-string: 4.0.0 - ink: 3.2.0(react@18.3.1) - ink-select-input: 4.2.2(ink@3.2.0(react@18.3.1))(react@18.3.1) - ink-spinner: 4.0.3(ink@3.2.0(react@18.3.1))(react@18.3.1) + ink: 3.2.0(react@17.0.2) + ink-select-input: 4.2.2(ink@3.2.0(react@17.0.2))(react@17.0.2) + ink-spinner: 4.0.3(ink@3.2.0(react@17.0.2))(react@17.0.2) ink-testing-library: 2.1.0 - ink-use-stdout-dimensions: 1.0.5(ink@3.2.0(react@18.3.1))(react@18.3.1) + ink-use-stdout-dimensions: 1.0.5(ink@3.2.0(react@17.0.2))(react@17.0.2) jsii: 5.4.12 jsii-pacmak: 1.98.0(jsii-rosetta@5.4.14) jsii-rosetta: 5.4.14 @@ -15517,7 +14819,7 @@ snapshots: '@cdktf/node-pty-prebuilt-multiarch@0.10.1-pre.11': dependencies: - nan: 2.19.0 + nan: 2.20.0 prebuild-install: 7.1.2 '@cdktf/provider-archive@10.1.0(cdktf@0.20.8(constructs@10.3.0))(constructs@10.3.0)': @@ -15579,6 +14881,17 @@ snapshots: cdktf: 0.20.8(constructs@10.3.0) constructs: 10.3.0 + '@cfaester/enzyme-adapter-react-18@0.8.0(enzyme@3.11.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + enzyme: 3.11.0 + enzyme-shallow-equal: 1.0.7 + function.prototype.name: 1.1.6 + has: 1.0.4 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-is: 18.3.1 + react-shallow-renderer: 16.15.0(react@18.3.1) + '@chevrotain/cst-dts-gen@10.5.0': dependencies: '@chevrotain/gast': 10.5.0 @@ -15602,11 +14915,11 @@ snapshots: dependencies: commander: 12.1.0 - '@commitlint/cli@19.4.0(@types/node@22.5.0)(typescript@5.7.0-dev.20240822)': + '@commitlint/cli@19.4.0(@types/node@22.5.0)(typescript@5.7.0-dev.20240827)': dependencies: '@commitlint/format': 19.3.0 '@commitlint/lint': 19.2.2 - '@commitlint/load': 19.4.0(@types/node@22.5.0)(typescript@5.7.0-dev.20240822) + '@commitlint/load': 19.4.0(@types/node@22.5.0)(typescript@5.7.0-dev.20240827) '@commitlint/read': 19.4.0 '@commitlint/types': 19.0.3 execa: 8.0.1 @@ -15653,15 +14966,15 @@ snapshots: '@commitlint/rules': 19.0.3 '@commitlint/types': 19.0.3 - '@commitlint/load@19.4.0(@types/node@22.5.0)(typescript@5.7.0-dev.20240822)': + '@commitlint/load@19.4.0(@types/node@22.5.0)(typescript@5.7.0-dev.20240827)': dependencies: '@commitlint/config-validator': 19.0.3 '@commitlint/execute-rule': 19.0.0 '@commitlint/resolve-extends': 19.1.0 '@commitlint/types': 19.0.3 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.7.0-dev.20240822) - cosmiconfig-typescript-loader: 5.0.0(@types/node@22.5.0)(cosmiconfig@9.0.0(typescript@5.7.0-dev.20240822))(typescript@5.7.0-dev.20240822) + cosmiconfig: 9.0.0(typescript@5.7.0-dev.20240827) + cosmiconfig-typescript-loader: 5.0.0(@types/node@22.5.0)(cosmiconfig@9.0.0(typescript@5.7.0-dev.20240827))(typescript@5.7.0-dev.20240827) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -15728,22 +15041,22 @@ snapshots: effect: 3.5.7 fast-check: 3.20.0 - '@elastic/elasticsearch@8.14.0': + '@elastic/elasticsearch@8.15.0': dependencies: - '@elastic/transport': 8.7.0 + '@elastic/transport': 8.7.1 tslib: 2.6.3 transitivePeerDependencies: - supports-color - '@elastic/transport@8.7.0': + '@elastic/transport@8.7.1': dependencies: '@opentelemetry/api': 1.9.0 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) hpagent: 1.2.0 ms: 2.1.3 secure-json-parse: 2.7.0 tslib: 2.6.3 - undici: 6.18.2 + undici: 6.19.8 transitivePeerDependencies: - supports-color @@ -15827,17 +15140,17 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@9.9.0(jiti@1.21.6))': + '@eslint-community/eslint-utils@4.4.0(eslint@9.9.1(jiti@1.21.6))': dependencies: - eslint: 9.9.0(jiti@1.21.6) + eslint: 9.9.1(jiti@1.21.6) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.11.0': {} - '@eslint/config-array@0.17.1': + '@eslint/config-array@0.18.0': dependencies: '@eslint/object-schema': 2.1.4 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -15845,7 +15158,7 @@ snapshots: '@eslint/eslintrc@3.1.0': dependencies: ajv: 6.12.6 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) espree: 10.1.0 globals: 14.0.0 ignore: 5.3.2 @@ -15856,7 +15169,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.9.0': {} + '@eslint/js@9.9.1': {} '@eslint/object-schema@2.1.4': {} @@ -15874,65 +15187,65 @@ snapshots: '@faker-js/faker@8.4.1': {} - '@fastify/busboy@2.1.1': {} + '@fastify/busboy@3.0.0': {} - '@firebase/app-check-interop-types@0.3.1': {} + '@firebase/app-check-interop-types@0.3.2': {} - '@firebase/app-types@0.9.1': {} + '@firebase/app-types@0.9.2': {} - '@firebase/auth-interop-types@0.2.2': {} + '@firebase/auth-interop-types@0.2.3': {} - '@firebase/component@0.6.6': + '@firebase/component@0.6.8': dependencies: - '@firebase/util': 1.9.5 + '@firebase/util': 1.9.7 tslib: 2.6.3 - '@firebase/database-compat@1.0.4': + '@firebase/database-compat@1.0.7': dependencies: - '@firebase/component': 0.6.6 - '@firebase/database': 1.0.4 - '@firebase/database-types': 1.0.2 - '@firebase/logger': 0.4.1 - '@firebase/util': 1.9.5 + '@firebase/component': 0.6.8 + '@firebase/database': 1.0.7 + '@firebase/database-types': 1.0.4 + '@firebase/logger': 0.4.2 + '@firebase/util': 1.9.7 tslib: 2.6.3 - '@firebase/database-types@1.0.2': + '@firebase/database-types@1.0.4': dependencies: - '@firebase/app-types': 0.9.1 - '@firebase/util': 1.9.5 + '@firebase/app-types': 0.9.2 + '@firebase/util': 1.9.7 - '@firebase/database@1.0.4': + '@firebase/database@1.0.7': dependencies: - '@firebase/app-check-interop-types': 0.3.1 - '@firebase/auth-interop-types': 0.2.2 - '@firebase/component': 0.6.6 - '@firebase/logger': 0.4.1 - '@firebase/util': 1.9.5 + '@firebase/app-check-interop-types': 0.3.2 + '@firebase/auth-interop-types': 0.2.3 + '@firebase/component': 0.6.8 + '@firebase/logger': 0.4.2 + '@firebase/util': 1.9.7 faye-websocket: 0.11.4 tslib: 2.6.3 - '@firebase/logger@0.4.1': + '@firebase/logger@0.4.2': dependencies: tslib: 2.6.3 - '@firebase/util@1.9.5': + '@firebase/util@1.9.7': dependencies: tslib: 2.6.3 '@glideapps/ts-necessities@2.2.3': {} - '@google-cloud/firestore@7.7.0(encoding@0.1.13)': + '@google-cloud/firestore@7.9.0(encoding@0.1.13)': dependencies: fast-deep-equal: 3.1.3 functional-red-black-tree: 1.0.1 - google-gax: 4.3.3(encoding@0.1.13) - protobufjs: 7.2.6 + google-gax: 4.3.9(encoding@0.1.13) + protobufjs: 7.4.0 transitivePeerDependencies: - encoding - supports-color optional: true - '@google-cloud/paginator@5.0.0': + '@google-cloud/paginator@5.0.2': dependencies: arrify: 2.0.1 extend: 3.0.2 @@ -15944,17 +15257,17 @@ snapshots: '@google-cloud/promisify@4.0.0': optional: true - '@google-cloud/storage@7.11.0(encoding@0.1.13)': + '@google-cloud/storage@7.12.1(encoding@0.1.13)': dependencies: - '@google-cloud/paginator': 5.0.0 + '@google-cloud/paginator': 5.0.2 '@google-cloud/projectify': 4.0.0 '@google-cloud/promisify': 4.0.0 abort-controller: 3.0.0 async-retry: 1.3.3 duplexify: 4.1.3 - fast-xml-parser: 4.3.6 - gaxios: 6.5.0(encoding@0.1.13) - google-auth-library: 9.9.0(encoding@0.1.13) + fast-xml-parser: 4.4.1 + gaxios: 6.7.1(encoding@0.1.13) + google-auth-library: 9.14.0(encoding@0.1.13) html-entities: 2.5.2 mime: 3.0.0 p-limit: 3.1.0 @@ -15977,99 +15290,43 @@ snapshots: graphql: 16.8.1 tslib: 2.6.3 - '@graphql-codegen/add@5.0.3(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.16.1)(encoding@0.1.13)(enquirer@2.4.1)(graphql@16.8.1)(typescript@5.5.4)': dependencies: - '@babel/generator': 7.24.5 - '@babel/template': 7.24.0 - '@babel/types': 7.24.5 - '@graphql-codegen/client-preset': 4.2.5(encoding@0.1.13)(graphql@16.8.1) + '@babel/generator': 7.25.5 + '@babel/template': 7.25.0 + '@babel/types': 7.25.4 + '@graphql-codegen/client-preset': 4.3.3(encoding@0.1.13)(graphql@16.8.1) '@graphql-codegen/core': 4.0.2(graphql@16.8.1) - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) '@graphql-tools/apollo-engine-loader': 8.0.1(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/code-file-loader': 8.1.1(graphql@16.8.1) - '@graphql-tools/git-loader': 8.0.5(graphql@16.8.1) + '@graphql-tools/code-file-loader': 8.1.3(graphql@16.8.1) + '@graphql-tools/git-loader': 8.0.7(graphql@16.8.1) '@graphql-tools/github-loader': 8.0.1(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.1) '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.1) '@graphql-tools/load': 8.0.2(graphql@16.8.1) '@graphql-tools/prisma-loader': 8.0.4(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/url-loader': 8.0.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) '@whatwg-node/fetch': 0.8.8 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.5.4) debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.8.1 - graphql-config: 5.0.3(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.5.4) + graphql-config: 5.1.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.5.4) inquirer: 8.2.6 is-glob: 4.0.3 - jiti: 1.21.0 - json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5(enquirer@2.4.1) - log-symbols: 4.1.0 - micromatch: 4.0.5 - shell-quote: 1.8.1 - string-env-interpolation: 1.0.1 - ts-log: 2.2.5 - tslib: 2.6.3 - yaml: 2.4.2 - yargs: 17.7.2 - optionalDependencies: - '@parcel/watcher': 2.4.1 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - cosmiconfig-toml-loader - - encoding - - enquirer - - supports-color - - typescript - - utf-8-validate - - '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.16.1)(encoding@0.1.13)(enquirer@2.4.1)(graphql@16.9.0)(typescript@5.5.4)': - dependencies: - '@babel/generator': 7.24.5 - '@babel/template': 7.24.0 - '@babel/types': 7.24.5 - '@graphql-codegen/client-preset': 4.2.5(encoding@0.1.13)(graphql@16.9.0) - '@graphql-codegen/core': 4.0.2(graphql@16.9.0) - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.9.0) - '@graphql-tools/apollo-engine-loader': 8.0.1(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/code-file-loader': 8.1.1(graphql@16.9.0) - '@graphql-tools/git-loader': 8.0.5(graphql@16.9.0) - '@graphql-tools/github-loader': 8.0.1(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/json-file-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/load': 8.0.2(graphql@16.9.0) - '@graphql-tools/prisma-loader': 8.0.4(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/url-loader': 8.0.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@whatwg-node/fetch': 0.8.8 - chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.5.4) - debounce: 1.2.1 - detect-indent: 6.1.0 - graphql: 16.9.0 - graphql-config: 5.0.3(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0)(typescript@5.5.4) - inquirer: 8.2.6 - is-glob: 4.0.3 - jiti: 1.21.0 + jiti: 1.21.6 json-to-pretty-yaml: 1.2.2 listr2: 4.0.5(enquirer@2.4.1) log-symbols: 4.1.0 - micromatch: 4.0.5 + micromatch: 4.0.8 shell-quote: 1.8.1 string-env-interpolation: 1.0.1 ts-log: 2.2.5 tslib: 2.6.3 - yaml: 2.4.2 + yaml: 2.5.0 yargs: 17.7.2 optionalDependencies: '@parcel/watcher': 2.4.1 @@ -16083,19 +15340,19 @@ snapshots: - typescript - utf-8-validate - '@graphql-codegen/client-preset@4.2.5(encoding@0.1.13)(graphql@16.8.1)': + '@graphql-codegen/client-preset@4.3.3(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/helper-plugin-utils': 7.24.5 - '@babel/template': 7.24.0 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/template': 7.25.0 '@graphql-codegen/add': 5.0.3(graphql@16.8.1) - '@graphql-codegen/gql-tag-operations': 4.0.6(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-codegen/gql-tag-operations': 4.0.9(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) '@graphql-codegen/typed-document-node': 5.0.9(encoding@0.1.13)(graphql@16.8.1) '@graphql-codegen/typescript': 4.0.9(encoding@0.1.13)(graphql@16.8.1) '@graphql-codegen/typescript-operations': 4.2.3(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/documents': 1.0.0(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.3.1(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/documents': 1.0.1(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 @@ -16103,47 +15360,19 @@ snapshots: - encoding - supports-color - '@graphql-codegen/client-preset@4.2.5(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@babel/helper-plugin-utils': 7.24.5 - '@babel/template': 7.24.0 - '@graphql-codegen/add': 5.0.3(graphql@16.9.0) - '@graphql-codegen/gql-tag-operations': 4.0.6(encoding@0.1.13)(graphql@16.9.0) - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.9.0) - '@graphql-codegen/typed-document-node': 5.0.9(encoding@0.1.13)(graphql@16.9.0) - '@graphql-codegen/typescript': 4.0.9(encoding@0.1.13)(graphql@16.9.0) - '@graphql-codegen/typescript-operations': 4.2.3(encoding@0.1.13)(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/documents': 1.0.0(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - '@graphql-codegen/core@4.0.2(graphql@16.8.1)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-tools/schema': 10.0.3(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) + '@graphql-tools/schema': 10.0.6(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 - '@graphql-codegen/core@4.0.2(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.9.0) - '@graphql-tools/schema': 10.0.3(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - - '@graphql-codegen/gql-tag-operations@4.0.6(encoding@0.1.13)(graphql@16.8.1)': + '@graphql-codegen/gql-tag-operations@4.0.9(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.3.1(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) auto-bind: 4.0.0 graphql: 16.8.1 tslib: 2.6.3 @@ -16151,41 +15380,9 @@ snapshots: - encoding - supports-color - '@graphql-codegen/gql-tag-operations@4.0.6(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - auto-bind: 4.0.0 - graphql: 16.9.0 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - - '@graphql-codegen/plugin-helpers@5.0.3(graphql@16.8.1)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - change-case-all: 1.0.15 - common-tags: 1.8.2 - graphql: 16.8.1 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.6.3 - - '@graphql-codegen/plugin-helpers@5.0.3(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - change-case-all: 1.0.15 - common-tags: 1.8.2 - graphql: 16.9.0 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.6.3 - '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.8.1 @@ -16193,30 +15390,13 @@ snapshots: lodash: 4.17.21 tslib: 2.6.3 - '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - change-case-all: 1.0.15 - common-tags: 1.8.2 - graphql: 16.9.0 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.6.3 - - '@graphql-codegen/schema-ast@4.0.2(graphql@16.8.1)': + '@graphql-codegen/schema-ast@4.1.0(graphql@16.8.1)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 - '@graphql-codegen/schema-ast@4.0.2(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - '@graphql-codegen/typed-document-node@5.0.9(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) @@ -16229,18 +15409,6 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typed-document-node@5.0.9(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(encoding@0.1.13)(graphql@16.9.0) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - graphql: 16.9.0 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - '@graphql-codegen/typescript-operations@4.2.3(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) @@ -16253,24 +15421,12 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typescript-operations@4.2.3(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/typescript': 4.0.9(encoding@0.1.13)(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(encoding@0.1.13)(graphql@16.9.0) - auto-bind: 4.0.0 - graphql: 16.9.0 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - '@graphql-codegen/typescript-resolvers@4.2.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) '@graphql-codegen/typescript': 4.0.9(encoding@0.1.13)(graphql@16.8.1) '@graphql-codegen/visitor-plugin-common': 5.3.1(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.3.1(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) auto-bind: 4.0.0 graphql: 16.8.1 tslib: 2.6.3 @@ -16281,7 +15437,7 @@ snapshots: '@graphql-codegen/typescript@4.0.9(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.1) + '@graphql-codegen/schema-ast': 4.1.0(graphql@16.8.1) '@graphql-codegen/visitor-plugin-common': 5.3.1(encoding@0.1.13)(graphql@16.8.1) auto-bind: 4.0.0 graphql: 16.8.1 @@ -16290,58 +15446,12 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typescript@4.0.9(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-codegen/schema-ast': 4.0.2(graphql@16.9.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(encoding@0.1.13)(graphql@16.9.0) - auto-bind: 4.0.0 - graphql: 16.9.0 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - - '@graphql-codegen/visitor-plugin-common@5.1.0(encoding@0.1.13)(graphql@16.8.1)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) - '@graphql-tools/relay-operation-optimizer': 7.0.1(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 16.8.1 - graphql-tag: 2.12.6(graphql@16.8.1) - parse-filepath: 1.0.2 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - - '@graphql-codegen/visitor-plugin-common@5.1.0(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.9.0) - '@graphql-tools/relay-operation-optimizer': 7.0.1(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 16.9.0 - graphql-tag: 2.12.6(graphql@16.9.0) - parse-filepath: 1.0.2 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - '@graphql-codegen/visitor-plugin-common@5.3.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) '@graphql-tools/relay-operation-optimizer': 7.0.1(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.3.1(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 @@ -16353,63 +15463,28 @@ snapshots: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@5.3.1(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.9.0) - '@graphql-tools/relay-operation-optimizer': 7.0.1(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/utils': 10.3.1(graphql@16.9.0) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 16.9.0 - graphql-tag: 2.12.6(graphql@16.9.0) - parse-filepath: 1.0.2 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - '@graphql-tools/apollo-engine-loader@8.0.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - '@whatwg-node/fetch': 0.9.17 + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) + '@whatwg-node/fetch': 0.9.21 graphql: 16.8.1 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-tools/apollo-engine-loader@8.0.1(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@whatwg-node/fetch': 0.9.17 - graphql: 16.9.0 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - '@graphql-tools/batch-execute@9.0.4(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - dataloader: 2.2.2 - graphql: 16.8.1 - tslib: 2.6.3 - value-or-promise: 1.0.12 - - '@graphql-tools/batch-execute@9.0.4(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) dataloader: 2.2.2 - graphql: 16.9.0 + graphql: 16.8.1 tslib: 2.6.3 value-or-promise: 1.0.12 - '@graphql-tools/code-file-loader@8.1.1(graphql@16.8.1)': + '@graphql-tools/code-file-loader@8.1.3(graphql@16.8.1)': dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) globby: 11.1.0 graphql: 16.8.1 tslib: 2.6.3 @@ -16417,80 +15492,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/code-file-loader@8.1.1(graphql@16.9.0)': - dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - globby: 11.1.0 - graphql: 16.9.0 - tslib: 2.6.3 - unixify: 1.0.0 - transitivePeerDependencies: - - supports-color - - '@graphql-tools/delegate@10.0.9(graphql@16.8.1)': + '@graphql-tools/delegate@10.0.21(graphql@16.8.1)': dependencies: '@graphql-tools/batch-execute': 9.0.4(graphql@16.8.1) - '@graphql-tools/executor': 1.2.6(graphql@16.8.1) - '@graphql-tools/schema': 10.0.3(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/executor': 1.3.1(graphql@16.8.1) + '@graphql-tools/schema': 10.0.6(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) + '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 graphql: 16.8.1 tslib: 2.6.3 - '@graphql-tools/delegate@10.0.9(graphql@16.9.0)': - dependencies: - '@graphql-tools/batch-execute': 9.0.4(graphql@16.9.0) - '@graphql-tools/executor': 1.2.6(graphql@16.9.0) - '@graphql-tools/schema': 10.0.3(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - dataloader: 2.2.2 - graphql: 16.9.0 - tslib: 2.6.3 - - '@graphql-tools/documents@1.0.0(graphql@16.8.1)': + '@graphql-tools/documents@1.0.1(graphql@16.8.1)': dependencies: graphql: 16.8.1 lodash.sortby: 4.7.0 tslib: 2.6.3 - '@graphql-tools/documents@1.0.0(graphql@16.9.0)': - dependencies: - graphql: 16.9.0 - lodash.sortby: 4.7.0 - tslib: 2.6.3 - - '@graphql-tools/executor-graphql-ws@1.1.2(graphql@16.8.1)': + '@graphql-tools/executor-graphql-ws@1.2.0(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - '@types/ws': 8.5.10 + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) + '@types/ws': 8.5.12 graphql: 16.8.1 graphql-ws: 5.16.0(graphql@16.8.1) - isomorphic-ws: 5.0.0(ws@8.17.0) + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.6.3 - ws: 8.17.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - '@graphql-tools/executor-graphql-ws@1.1.2(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@types/ws': 8.5.10 - graphql: 16.9.0 - graphql-ws: 5.16.0(graphql@16.9.0) - isomorphic-ws: 5.0.0(ws@8.17.0) - tslib: 2.6.3 - ws: 8.17.0 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.0.9(@types/node@20.16.1)(graphql@16.8.1)': + '@graphql-tools/executor-http@1.1.6(@types/node@20.16.1)(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - '@repeaterjs/repeater': 3.0.5 - '@whatwg-node/fetch': 0.9.17 + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) + '@repeaterjs/repeater': 3.0.6 + '@whatwg-node/fetch': 0.9.21 extract-files: 11.0.0 graphql: 16.8.1 meros: 1.3.0(@types/node@20.16.1) @@ -16499,80 +15535,34 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@graphql-tools/executor-http@1.0.9(@types/node@20.16.1)(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@repeaterjs/repeater': 3.0.5 - '@whatwg-node/fetch': 0.9.17 - extract-files: 11.0.0 - graphql: 16.9.0 - meros: 1.3.0(@types/node@20.16.1) - tslib: 2.6.3 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' - - '@graphql-tools/executor-legacy-ws@1.0.6(graphql@16.8.1)': + '@graphql-tools/executor-legacy-ws@1.1.0(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - '@types/ws': 8.5.10 + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) + '@types/ws': 8.5.12 graphql: 16.8.1 - isomorphic-ws: 5.0.0(ws@8.17.0) - tslib: 2.6.3 - ws: 8.17.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - '@graphql-tools/executor-legacy-ws@1.0.6(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@types/ws': 8.5.10 - graphql: 16.9.0 - isomorphic-ws: 5.0.0(ws@8.17.0) + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.6.3 - ws: 8.17.0 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - '@graphql-tools/executor@1.2.6(graphql@16.8.1)': + '@graphql-tools/executor@1.3.1(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - '@repeaterjs/repeater': 3.0.5 + '@repeaterjs/repeater': 3.0.6 graphql: 16.8.1 tslib: 2.6.3 value-or-promise: 1.0.12 - '@graphql-tools/executor@1.2.6(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) - '@repeaterjs/repeater': 3.0.5 - graphql: 16.9.0 - tslib: 2.6.3 - value-or-promise: 1.0.12 - - '@graphql-tools/git-loader@8.0.5(graphql@16.8.1)': + '@graphql-tools/git-loader@8.0.7(graphql@16.8.1)': dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 is-glob: 4.0.3 - micromatch: 4.0.5 - tslib: 2.6.3 - unixify: 1.0.0 - transitivePeerDependencies: - - supports-color - - '@graphql-tools/git-loader@8.0.5(graphql@16.9.0)': - dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - is-glob: 4.0.3 - micromatch: 4.0.5 + micromatch: 4.0.8 tslib: 2.6.3 unixify: 1.0.0 transitivePeerDependencies: @@ -16581,10 +15571,10 @@ snapshots: '@graphql-tools/github-loader@8.0.1(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 1.0.9(@types/node@20.16.1)(graphql@16.8.1) - '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - '@whatwg-node/fetch': 0.9.17 + '@graphql-tools/executor-http': 1.1.6(@types/node@20.16.1)(graphql@16.8.1) + '@graphql-tools/graphql-tag-pluck': 8.3.2(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) + '@whatwg-node/fetch': 0.9.21 graphql: 16.8.1 tslib: 2.6.3 value-or-promise: 1.0.12 @@ -16593,179 +15583,82 @@ snapshots: - encoding - supports-color - '@graphql-tools/github-loader@8.0.1(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 1.0.9(@types/node@20.16.1)(graphql@16.9.0) - '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@whatwg-node/fetch': 0.9.17 - graphql: 16.9.0 - tslib: 2.6.3 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' - - encoding - - supports-color - '@graphql-tools/graphql-file-loader@8.0.1(graphql@16.8.1)': dependencies: '@graphql-tools/import': 7.0.1(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) globby: 11.1.0 graphql: 16.8.1 tslib: 2.6.3 unixify: 1.0.0 - '@graphql-tools/graphql-file-loader@8.0.1(graphql@16.9.0)': - dependencies: - '@graphql-tools/import': 7.0.1(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - globby: 11.1.0 - graphql: 16.9.0 - tslib: 2.6.3 - unixify: 1.0.0 - - '@graphql-tools/graphql-tag-pluck@8.3.0(graphql@16.8.1)': + '@graphql-tools/graphql-tag-pluck@8.3.2(graphql@16.8.1)': dependencies: - '@babel/core': 7.24.5 - '@babel/parser': 7.24.5 - '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.5) - '@babel/traverse': 7.24.5 - '@babel/types': 7.24.5 - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@babel/core': 7.25.2 + '@babel/parser': 7.25.4 + '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.2) + '@babel/traverse': 7.25.4 + '@babel/types': 7.25.4 + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 transitivePeerDependencies: - supports-color - '@graphql-tools/graphql-tag-pluck@8.3.0(graphql@16.9.0)': - dependencies: - '@babel/core': 7.24.5 - '@babel/parser': 7.24.5 - '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.5) - '@babel/traverse': 7.24.5 - '@babel/types': 7.24.5 - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - transitivePeerDependencies: - - supports-color - '@graphql-tools/import@7.0.1(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 resolve-from: 5.0.0 tslib: 2.6.3 - '@graphql-tools/import@7.0.1(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - resolve-from: 5.0.0 - tslib: 2.6.3 - '@graphql-tools/json-file-loader@8.0.1(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) globby: 11.1.0 graphql: 16.8.1 tslib: 2.6.3 unixify: 1.0.0 - '@graphql-tools/json-file-loader@8.0.1(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - globby: 11.1.0 - graphql: 16.9.0 - tslib: 2.6.3 - unixify: 1.0.0 - '@graphql-tools/load@8.0.2(graphql@16.8.1)': dependencies: - '@graphql-tools/schema': 10.0.3(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/schema': 10.0.6(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 p-limit: 3.1.0 tslib: 2.6.3 - '@graphql-tools/load@8.0.2(graphql@16.9.0)': - dependencies: - '@graphql-tools/schema': 10.0.3(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - p-limit: 3.1.0 - tslib: 2.6.3 - '@graphql-tools/merge@8.4.2(graphql@16.8.1)': dependencies: '@graphql-tools/utils': 9.2.1(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 - '@graphql-tools/merge@9.0.4(graphql@16.8.1)': + '@graphql-tools/merge@9.0.6(graphql@16.8.1)': dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 - '@graphql-tools/merge@9.0.4(graphql@16.9.0)': - dependencies: - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - '@graphql-tools/optimize@2.0.0(graphql@16.8.1)': dependencies: graphql: 16.8.1 tslib: 2.6.3 - '@graphql-tools/optimize@2.0.0(graphql@16.9.0)': - dependencies: - graphql: 16.9.0 - tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.4(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@graphql-tools/url-loader': 8.0.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) '@types/js-yaml': 4.0.9 - '@whatwg-node/fetch': 0.9.17 + '@whatwg-node/fetch': 0.9.21 chalk: 4.1.2 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) dotenv: 16.4.5 graphql: 16.8.1 graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.4 - jose: 5.2.4 - js-yaml: 4.1.0 - lodash: 4.17.21 - scuid: 1.1.0 - tslib: 2.6.3 - yaml-ast-parser: 0.0.43 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - supports-color - - utf-8-validate - - '@graphql-tools/prisma-loader@8.0.4(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@graphql-tools/url-loader': 8.0.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@types/js-yaml': 4.0.9 - '@whatwg-node/fetch': 0.9.17 - chalk: 4.1.2 - debug: 4.3.6 - dotenv: 16.4.5 - graphql: 16.9.0 - graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.9.0) - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.4 - jose: 5.2.4 + https-proxy-agent: 7.0.5 + jose: 5.8.0 js-yaml: 4.1.0 lodash: 4.17.21 scuid: 1.1.0 @@ -16781,39 +15674,21 @@ snapshots: '@graphql-tools/relay-operation-optimizer@7.0.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/relay-operation-optimizer@7.0.1(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - supports-color - - '@graphql-tools/schema@10.0.3(graphql@16.8.1)': + '@graphql-tools/schema@10.0.6(graphql@16.8.1)': dependencies: - '@graphql-tools/merge': 9.0.4(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/merge': 9.0.6(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 value-or-promise: 1.0.12 - '@graphql-tools/schema@10.0.3(graphql@16.9.0)': - dependencies: - '@graphql-tools/merge': 9.0.4(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - value-or-promise: 1.0.12 - '@graphql-tools/schema@9.0.19(graphql@16.8.1)': dependencies: '@graphql-tools/merge': 8.4.2(graphql@16.8.1) @@ -16825,79 +15700,33 @@ snapshots: '@graphql-tools/url-loader@8.0.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/delegate': 10.0.9(graphql@16.8.1) - '@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.8.1) - '@graphql-tools/executor-http': 1.0.9(@types/node@20.16.1)(graphql@16.8.1) - '@graphql-tools/executor-legacy-ws': 1.0.6(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/delegate': 10.0.21(graphql@16.8.1) + '@graphql-tools/executor-graphql-ws': 1.2.0(graphql@16.8.1) + '@graphql-tools/executor-http': 1.1.6(@types/node@20.16.1)(graphql@16.8.1) + '@graphql-tools/executor-legacy-ws': 1.1.0(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) '@graphql-tools/wrap': 10.0.5(graphql@16.8.1) - '@types/ws': 8.5.10 - '@whatwg-node/fetch': 0.9.17 + '@types/ws': 8.5.12 + '@whatwg-node/fetch': 0.9.21 graphql: 16.8.1 - isomorphic-ws: 5.0.0(ws@8.17.0) - tslib: 2.6.3 - value-or-promise: 1.0.12 - ws: 8.17.0 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - utf-8-validate - - '@graphql-tools/url-loader@8.0.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0)': - dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/delegate': 10.0.9(graphql@16.9.0) - '@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.9.0) - '@graphql-tools/executor-http': 1.0.9(@types/node@20.16.1)(graphql@16.9.0) - '@graphql-tools/executor-legacy-ws': 1.0.6(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - '@graphql-tools/wrap': 10.0.5(graphql@16.9.0) - '@types/ws': 8.5.10 - '@whatwg-node/fetch': 0.9.17 - graphql: 16.9.0 - isomorphic-ws: 5.0.0(ws@8.17.0) + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.6.3 value-or-promise: 1.0.12 - ws: 8.17.0 + ws: 8.18.0 transitivePeerDependencies: - '@types/node' - bufferutil - encoding - utf-8-validate - '@graphql-tools/utils@10.2.0(graphql@16.8.1)': - dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - cross-inspect: 1.0.0 - dset: 3.1.3 - graphql: 16.8.1 - tslib: 2.6.3 - - '@graphql-tools/utils@10.2.0(graphql@16.9.0)': - dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) - cross-inspect: 1.0.0 - dset: 3.1.3 - graphql: 16.9.0 - tslib: 2.6.3 - - '@graphql-tools/utils@10.3.1(graphql@16.8.1)': + '@graphql-tools/utils@10.5.4(graphql@16.8.1)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - cross-inspect: 1.0.0 + cross-inspect: 1.0.1 dset: 3.1.3 graphql: 16.8.1 tslib: 2.6.3 - '@graphql-tools/utils@10.3.1(graphql@16.9.0)': - dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) - cross-inspect: 1.0.0 - dset: 3.1.3 - graphql: 16.9.0 - tslib: 2.6.3 - '@graphql-tools/utils@9.2.1(graphql@16.8.1)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) @@ -16906,31 +15735,18 @@ snapshots: '@graphql-tools/wrap@10.0.5(graphql@16.8.1)': dependencies: - '@graphql-tools/delegate': 10.0.9(graphql@16.8.1) - '@graphql-tools/schema': 10.0.3(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) + '@graphql-tools/delegate': 10.0.21(graphql@16.8.1) + '@graphql-tools/schema': 10.0.6(graphql@16.8.1) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) graphql: 16.8.1 tslib: 2.6.3 value-or-promise: 1.0.12 - '@graphql-tools/wrap@10.0.5(graphql@16.9.0)': - dependencies: - '@graphql-tools/delegate': 10.0.9(graphql@16.9.0) - '@graphql-tools/schema': 10.0.3(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - graphql: 16.9.0 - tslib: 2.6.3 - value-or-promise: 1.0.12 - '@graphql-typed-document-node/core@3.2.0(graphql@16.8.1)': dependencies: graphql: 16.8.1 - '@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)': - dependencies: - graphql: 16.9.0 - - '@grpc/grpc-js@1.10.7': + '@grpc/grpc-js@1.11.1': dependencies: '@grpc/proto-loader': 0.7.13 '@js-sdsl/ordered-map': 4.4.2 @@ -16939,7 +15755,7 @@ snapshots: dependencies: lodash.camelcase: 4.3.0 long: 5.2.3 - protobufjs: 7.2.6 + protobufjs: 7.4.0 yargs: 17.7.2 '@hapi/hoek@9.3.0': {} @@ -16955,7 +15771,7 @@ snapshots: '@inquirer/checkbox@1.5.2': dependencies: '@inquirer/core': 6.0.0 - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 ansi-escapes: 4.3.2 chalk: 4.1.2 figures: 3.2.0 @@ -16963,12 +15779,12 @@ snapshots: '@inquirer/confirm@2.0.17': dependencies: '@inquirer/core': 6.0.0 - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 chalk: 4.1.2 '@inquirer/core@2.3.1': dependencies: - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 '@types/mute-stream': 0.0.1 '@types/node': 20.16.1 '@types/wrap-ansi': 3.0.0 @@ -16985,7 +15801,7 @@ snapshots: '@inquirer/core@6.0.0': dependencies: - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 '@types/mute-stream': 0.0.4 '@types/node': 20.16.1 '@types/wrap-ansi': 3.0.0 @@ -17003,27 +15819,27 @@ snapshots: '@inquirer/editor@1.2.15': dependencies: '@inquirer/core': 6.0.0 - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 chalk: 4.1.2 external-editor: 3.1.0 '@inquirer/expand@1.1.16': dependencies: '@inquirer/core': 6.0.0 - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 chalk: 4.1.2 figures: 3.2.0 '@inquirer/input@1.2.16': dependencies: '@inquirer/core': 6.0.0 - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 chalk: 4.1.2 '@inquirer/password@1.1.16': dependencies: '@inquirer/core': 6.0.0 - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -17054,18 +15870,20 @@ snapshots: '@inquirer/rawlist@1.2.16': dependencies: '@inquirer/core': 6.0.0 - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 chalk: 4.1.2 '@inquirer/select@1.3.3': dependencies: '@inquirer/core': 6.0.0 - '@inquirer/type': 1.3.1 + '@inquirer/type': 1.5.2 ansi-escapes: 4.3.2 chalk: 4.1.2 figures: 3.2.0 - '@inquirer/type@1.3.1': {} + '@inquirer/type@1.5.2': + dependencies: + mute-stream: 1.0.0 '@ioredis/as-callback@3.0.0': {} @@ -17125,7 +15943,7 @@ snapshots: jest-util: 29.7.0 jest-validate: 29.7.0 jest-watcher: 29.7.0 - micromatch: 4.0.5 + micromatch: 4.0.8 pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 @@ -17185,7 +16003,7 @@ snapshots: glob: 7.2.3 graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 6.0.2 + istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.7 @@ -17195,7 +16013,7 @@ snapshots: slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 - v8-to-istanbul: 9.2.0 + v8-to-istanbul: 9.3.0 transitivePeerDependencies: - supports-color @@ -17225,7 +16043,7 @@ snapshots: '@jest/transform@29.7.0': dependencies: - '@babel/core': 7.24.5 + '@babel/core': 7.25.2 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 @@ -17236,7 +16054,7 @@ snapshots: jest-haste-map: 29.7.0 jest-regex-util: 29.6.3 jest-util: 29.7.0 - micromatch: 4.0.5 + micromatch: 4.0.8 pirates: 4.0.6 slash: 3.0.0 write-file-atomic: 4.0.2 @@ -17249,7 +16067,7 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 '@types/node': 20.16.1 - '@types/yargs': 17.0.32 + '@types/yargs': 17.0.33 chalk: 4.1.2 '@josephg/resolvable@1.0.1': {} @@ -17257,35 +16075,40 @@ snapshots: '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 '@jridgewell/resolve-uri@3.1.2': {} '@jridgewell/set-array@1.2.1': {} - '@jridgewell/sourcemap-codec@1.4.15': {} + '@jridgewell/sourcemap-codec@1.5.0': {} '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping@0.3.9': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/sourcemap-codec': 1.5.0 '@js-sdsl/ordered-map@4.4.2': {} '@jsdevtools/ono@7.1.3': {} + '@jsii/check-node@1.102.0': + dependencies: + chalk: 4.1.2 + semver: 7.6.3 + '@jsii/check-node@1.98.0': dependencies: chalk: 4.1.2 - semver: 7.6.2 + semver: 7.6.3 - '@jsii/spec@1.98.0': + '@jsii/spec@1.102.0': dependencies: ajv: 8.17.1 @@ -17337,14 +16160,14 @@ snapshots: agent-base: 7.1.1 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.5 - lru-cache: 10.2.2 + lru-cache: 10.4.3 socks-proxy-agent: 8.0.4 transitivePeerDependencies: - supports-color - '@npmcli/fs@3.1.0': + '@npmcli/fs@3.1.1': dependencies: - semver: 7.6.2 + semver: 7.6.3 '@octokit/auth-token@5.1.1': {} @@ -17413,10 +16236,10 @@ snapshots: '@open-draft/until@2.1.0': {} - '@opensearch-project/opensearch@2.10.0': + '@opensearch-project/opensearch@2.11.0': dependencies: - aws4: 1.13.0 - debug: 4.3.4 + aws4: 1.13.1 + debug: 4.3.6(supports-color@5.5.0) hpagent: 1.2.0 json11: 1.1.2 ms: 2.1.3 @@ -17443,7 +16266,7 @@ snapshots: '@opentelemetry/exporter-trace-otlp-grpc@0.52.1(@opentelemetry/api@1.9.0)': dependencies: - '@grpc/grpc-js': 1.10.7 + '@grpc/grpc-js': 1.11.1 '@opentelemetry/api': 1.9.0 '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) '@opentelemetry/otlp-grpc-exporter-base': 0.52.1(@opentelemetry/api@1.9.0) @@ -17568,7 +16391,7 @@ snapshots: '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) '@opentelemetry/semantic-conventions': 1.25.1 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - supports-color @@ -17673,9 +16496,9 @@ snapshots: '@opentelemetry/instrumentation@0.46.0(@opentelemetry/api@1.9.0)': dependencies: '@opentelemetry/api': 1.9.0 - '@types/shimmer': 1.0.5 + '@types/shimmer': 1.2.0 import-in-the-middle: 1.7.1 - require-in-the-middle: 7.3.0 + require-in-the-middle: 7.4.0 semver: 7.6.3 shimmer: 1.2.1 transitivePeerDependencies: @@ -17686,10 +16509,10 @@ snapshots: dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.52.1 - '@types/shimmer': 1.0.5 - import-in-the-middle: 1.8.1 - require-in-the-middle: 7.3.0 - semver: 7.6.2 + '@types/shimmer': 1.2.0 + import-in-the-middle: 1.11.0 + require-in-the-middle: 7.4.0 + semver: 7.6.3 shimmer: 1.2.1 transitivePeerDependencies: - supports-color @@ -17702,7 +16525,7 @@ snapshots: '@opentelemetry/otlp-grpc-exporter-base@0.52.1(@opentelemetry/api@1.9.0)': dependencies: - '@grpc/grpc-js': 1.10.7 + '@grpc/grpc-js': 1.11.1 '@opentelemetry/api': 1.9.0 '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) '@opentelemetry/otlp-exporter-base': 0.52.1(@opentelemetry/api@1.9.0) @@ -17717,7 +16540,7 @@ snapshots: '@opentelemetry/sdk-logs': 0.52.1(@opentelemetry/api@1.9.0) '@opentelemetry/sdk-metrics': 1.25.1(@opentelemetry/api@1.9.0) '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0) - protobufjs: 7.3.2 + protobufjs: 7.4.0 '@opentelemetry/propagation-utils@0.30.10(@opentelemetry/api@1.9.0)': dependencies: @@ -17801,7 +16624,7 @@ snapshots: '@opentelemetry/propagator-b3': 1.25.1(@opentelemetry/api@1.9.0) '@opentelemetry/propagator-jaeger': 1.25.1(@opentelemetry/api@1.9.0) '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0) - semver: 7.6.2 + semver: 7.6.3 '@opentelemetry/semantic-conventions@1.25.1': {} @@ -17850,8 +16673,8 @@ snapshots: dependencies: detect-libc: 1.0.3 is-glob: 4.0.3 - micromatch: 4.0.5 - node-addon-api: 7.1.0 + micromatch: 4.0.8 + node-addon-api: 7.1.1 optionalDependencies: '@parcel/watcher-android-arm64': 2.4.1 '@parcel/watcher-darwin-arm64': 2.4.1 @@ -17866,7 +16689,7 @@ snapshots: '@parcel/watcher-win32-ia32': 2.4.1 '@parcel/watcher-win32-x64': 2.4.1 - '@peculiar/asn1-schema@2.3.8': + '@peculiar/asn1-schema@2.3.13': dependencies: asn1js: 3.0.5 pvtsutils: 1.3.5 @@ -17876,13 +16699,13 @@ snapshots: dependencies: tslib: 2.6.3 - '@peculiar/webcrypto@1.4.6': + '@peculiar/webcrypto@1.5.0': dependencies: - '@peculiar/asn1-schema': 2.3.8 + '@peculiar/asn1-schema': 2.3.13 '@peculiar/json-schema': 1.1.12 pvtsutils: 1.3.5 tslib: 2.6.3 - webcrypto-core: 1.7.9 + webcrypto-core: 1.8.0 '@pkgjs/parseargs@0.11.0': optional: true @@ -18081,13 +16904,14 @@ snapshots: require-from-string: 2.0.2 uri-js: 4.4.1 - '@redocly/config@0.2.0': {} + '@redocly/config@0.10.0': {} - '@redocly/openapi-core@1.12.0(encoding@0.1.13)': + '@redocly/openapi-core@1.21.1(encoding@0.1.13)': dependencies: '@redocly/ajv': 8.11.0 - '@redocly/config': 0.2.0 + '@redocly/config': 0.10.0 colorette: 1.4.0 + https-proxy-agent: 7.0.5 js-levenshtein: 1.1.6 js-yaml: 4.1.0 lodash.isequal: 4.5.0 @@ -18097,55 +16921,56 @@ snapshots: yaml-ast-parser: 0.0.43 transitivePeerDependencies: - encoding + - supports-color - '@repeaterjs/repeater@3.0.5': {} + '@repeaterjs/repeater@3.0.6': {} - '@rollup/rollup-android-arm-eabi@4.21.0': + '@rollup/rollup-android-arm-eabi@4.21.1': optional: true - '@rollup/rollup-android-arm64@4.21.0': + '@rollup/rollup-android-arm64@4.21.1': optional: true - '@rollup/rollup-darwin-arm64@4.21.0': + '@rollup/rollup-darwin-arm64@4.21.1': optional: true - '@rollup/rollup-darwin-x64@4.21.0': + '@rollup/rollup-darwin-x64@4.21.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.21.0': + '@rollup/rollup-linux-arm-gnueabihf@4.21.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.21.0': + '@rollup/rollup-linux-arm-musleabihf@4.21.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.21.0': + '@rollup/rollup-linux-arm64-gnu@4.21.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.21.0': + '@rollup/rollup-linux-arm64-musl@4.21.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.21.0': + '@rollup/rollup-linux-powerpc64le-gnu@4.21.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.21.0': + '@rollup/rollup-linux-riscv64-gnu@4.21.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.21.0': + '@rollup/rollup-linux-s390x-gnu@4.21.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.21.0': + '@rollup/rollup-linux-x64-gnu@4.21.1': optional: true - '@rollup/rollup-linux-x64-musl@4.21.0': + '@rollup/rollup-linux-x64-musl@4.21.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.21.0': + '@rollup/rollup-win32-arm64-msvc@4.21.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.21.0': + '@rollup/rollup-win32-ia32-msvc@4.21.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.21.0': + '@rollup/rollup-win32-x64-msvc@4.21.1': optional: true '@sec-ant/readable-stream@0.4.1': {} @@ -18156,17 +16981,17 @@ snapshots: conventional-changelog-writer: 8.0.0 conventional-commits-filter: 5.0.0 conventional-commits-parser: 6.0.0 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) import-from-esm: 1.3.4 lodash-es: 4.17.21 - micromatch: 4.0.7 + micromatch: 4.0.8 semantic-release: 24.1.0(typescript@5.5.4) transitivePeerDependencies: - supports-color '@semantic-release/error@4.0.0': {} - '@semantic-release/github@10.1.6(semantic-release@24.1.0(typescript@5.5.4))': + '@semantic-release/github@10.1.7(semantic-release@24.1.0(typescript@5.5.4))': dependencies: '@octokit/core': 6.1.2 '@octokit/plugin-paginate-rest': 11.3.3(@octokit/core@6.1.2) @@ -18174,7 +16999,7 @@ snapshots: '@octokit/plugin-throttling': 9.3.1(@octokit/core@6.1.2) '@semantic-release/error': 4.0.0 aggregate-error: 5.0.0 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) dir-glob: 3.0.1 globby: 14.0.2 http-proxy-agent: 7.0.2 @@ -18211,7 +17036,7 @@ snapshots: conventional-changelog-writer: 8.0.0 conventional-commits-filter: 5.0.0 conventional-commits-parser: 6.0.0 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) get-stream: 7.0.1 import-from-esm: 1.3.4 into-stream: 7.0.0 @@ -18224,7 +17049,7 @@ snapshots: '@sendgrid/client@8.1.3': dependencies: '@sendgrid/helpers': 8.0.0 - axios: 1.6.8 + axios: 1.7.4 transitivePeerDependencies: - debug @@ -18363,12 +17188,12 @@ snapshots: dependencies: '@types/node': 20.16.1 - '@slack/types@2.11.0': {} + '@slack/types@2.12.0': {} - '@slack/web-api@6.12.0': + '@slack/web-api@6.12.1': dependencies: '@slack/logger': 3.0.0 - '@slack/types': 2.11.0 + '@slack/types': 2.12.0 '@types/is-stream': 1.1.0 '@types/node': 20.16.1 axios: 1.7.4 @@ -18394,15 +17219,17 @@ snapshots: '@smithy/util-middleware': 3.0.3 tslib: 2.6.3 - '@smithy/core@2.3.2': + '@smithy/core@2.4.0': dependencies: '@smithy/middleware-endpoint': 3.1.0 - '@smithy/middleware-retry': 3.0.14 + '@smithy/middleware-retry': 3.0.15 '@smithy/middleware-serde': 3.0.3 '@smithy/protocol-http': 4.1.0 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 + '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-middleware': 3.0.3 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.3 '@smithy/credential-provider-imds@3.2.0': @@ -18505,12 +17332,12 @@ snapshots: '@smithy/util-middleware': 3.0.3 tslib: 2.6.3 - '@smithy/middleware-retry@3.0.14': + '@smithy/middleware-retry@3.0.15': dependencies: '@smithy/node-config-provider': 3.1.4 '@smithy/protocol-http': 4.1.0 '@smithy/service-error-classification': 3.0.3 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 @@ -18583,7 +17410,7 @@ snapshots: '@smithy/util-utf8': 3.0.0 tslib: 2.6.3 - '@smithy/smithy-client@3.1.12': + '@smithy/smithy-client@3.2.0': dependencies: '@smithy/middleware-endpoint': 3.1.0 '@smithy/middleware-stack': 3.0.3 @@ -18630,21 +17457,21 @@ snapshots: dependencies: tslib: 2.6.3 - '@smithy/util-defaults-mode-browser@3.0.14': + '@smithy/util-defaults-mode-browser@3.0.15': dependencies: '@smithy/property-provider': 3.1.3 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 bowser: 2.11.0 tslib: 2.6.3 - '@smithy/util-defaults-mode-node@3.0.14': + '@smithy/util-defaults-mode-node@3.0.15': dependencies: '@smithy/config-resolver': 3.0.5 '@smithy/credential-provider-imds': 3.2.0 '@smithy/node-config-provider': 3.1.4 '@smithy/property-provider': 3.1.3 - '@smithy/smithy-client': 3.1.12 + '@smithy/smithy-client': 3.2.0 '@smithy/types': 3.3.0 tslib: 2.6.3 @@ -18730,7 +17557,7 @@ snapshots: mime-types: 2.1.35 mkdirp: 3.0.1 semver: 7.6.3 - tsx: 4.17.0 + tsx: 4.19.0 transitivePeerDependencies: - commander - encoding @@ -18764,24 +17591,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.24.5 - '@babel/types': 7.24.5 + '@babel/parser': 7.25.4 + '@babel/types': 7.25.4 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.5 + '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.24.5 + '@babel/types': 7.25.4 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.24.5 - '@babel/types': 7.24.5 + '@babel/parser': 7.25.4 + '@babel/types': 7.25.4 - '@types/babel__traverse@7.20.5': + '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.24.5 + '@babel/types': 7.25.4 '@types/body-parser@1.19.5': dependencies: @@ -18812,7 +17639,7 @@ snapshots: '@types/conventional-commits-parser@5.0.0': dependencies: - '@types/node': 22.5.0 + '@types/node': 20.16.1 '@types/cookiejar@2.1.5': {} @@ -18839,7 +17666,7 @@ snapshots: '@types/estree@1.0.5': {} - '@types/express-serve-static-core@4.19.0': + '@types/express-serve-static-core@4.19.5': dependencies: '@types/node': 20.16.1 '@types/qs': 6.9.15 @@ -18853,7 +17680,7 @@ snapshots: '@types/express@4.17.21': dependencies: '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.19.0 + '@types/express-serve-static-core': 4.19.5 '@types/qs': 6.9.15 '@types/serve-static': 1.15.7 @@ -18920,12 +17747,6 @@ snapshots: '@types/js-yaml@4.0.9': {} - '@types/jsdom@20.0.1': - dependencies: - '@types/node': 20.16.1 - '@types/tough-cookie': 4.0.5 - parse5: 7.1.2 - '@types/json-schema@7.0.15': {} '@types/jsonwebtoken@9.0.6': @@ -19011,7 +17832,7 @@ snapshots: '@types/node@20.16.1': dependencies: - undici-types: 6.19.6 + undici-types: 6.19.8 '@types/node@22.5.0': dependencies: @@ -19076,24 +17897,26 @@ snapshots: '@types/node': 20.16.1 '@types/send': 0.17.4 - '@types/shimmer@1.0.5': {} + '@types/shimmer@1.2.0': {} '@types/stack-utils@2.0.3': {} '@types/stylis@4.2.5': {} - '@types/superagent@8.1.7': + '@types/superagent@8.1.9': dependencies: '@types/cookiejar': 2.1.5 '@types/methods': 1.1.4 '@types/node': 20.16.1 + form-data: 4.0.0 '@types/supertest@6.0.2': dependencies: '@types/methods': 1.1.4 - '@types/superagent': 8.1.7 + '@types/superagent': 8.1.9 - '@types/tough-cookie@4.0.5': {} + '@types/tough-cookie@4.0.5': + optional: true '@types/triple-beam@1.3.5': {} @@ -19103,13 +17926,13 @@ snapshots: '@types/wrap-ansi@3.0.0': {} - '@types/ws@8.5.10': + '@types/ws@8.5.12': dependencies: '@types/node': 20.16.1 '@types/yargs-parser@21.0.3': {} - '@types/yargs@17.0.32': + '@types/yargs@17.0.33': dependencies: '@types/yargs-parser': 21.0.3 @@ -19120,15 +17943,15 @@ snapshots: '@types/yoga-layout@1.9.2': {} - '@typescript-eslint/eslint-plugin@8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@8.3.0(@typescript-eslint/parser@8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) - '@typescript-eslint/scope-manager': 8.2.0 - '@typescript-eslint/type-utils': 8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) - '@typescript-eslint/utils': 8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.2.0 - eslint: 9.9.0(jiti@1.21.6) + '@typescript-eslint/parser': 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.3.0 + '@typescript-eslint/type-utils': 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/utils': 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.3.0 + eslint: 9.9.1(jiti@1.21.6) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -19138,29 +17961,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': + '@typescript-eslint/parser@8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)': dependencies: - '@typescript-eslint/scope-manager': 8.2.0 - '@typescript-eslint/types': 8.2.0 - '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.2.0 - debug: 4.3.6 - eslint: 9.9.0(jiti@1.21.6) + '@typescript-eslint/scope-manager': 8.3.0 + '@typescript-eslint/types': 8.3.0 + '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.3.0 + debug: 4.3.6(supports-color@5.5.0) + eslint: 9.9.1(jiti@1.21.6) optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.2.0': + '@typescript-eslint/scope-manager@8.3.0': dependencies: - '@typescript-eslint/types': 8.2.0 - '@typescript-eslint/visitor-keys': 8.2.0 + '@typescript-eslint/types': 8.3.0 + '@typescript-eslint/visitor-keys': 8.3.0 - '@typescript-eslint/type-utils@8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': + '@typescript-eslint/type-utils@8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)': dependencies: - '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4) - '@typescript-eslint/utils': 8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) - debug: 4.3.6 + '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.5.4) + '@typescript-eslint/utils': 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4) + debug: 4.3.6(supports-color@5.5.0) ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 @@ -19168,14 +17991,14 @@ snapshots: - eslint - supports-color - '@typescript-eslint/types@8.2.0': {} + '@typescript-eslint/types@8.3.0': {} - '@typescript-eslint/typescript-estree@8.2.0(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@8.3.0(typescript@5.5.4)': dependencies: - '@typescript-eslint/types': 8.2.0 - '@typescript-eslint/visitor-keys': 8.2.0 - debug: 4.3.6 - globby: 11.1.0 + '@typescript-eslint/types': 8.3.0 + '@typescript-eslint/visitor-keys': 8.3.0 + debug: 4.3.6(supports-color@5.5.0) + fast-glob: 3.3.2 is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 @@ -19185,40 +18008,39 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': + '@typescript-eslint/utils@8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.6)) - '@typescript-eslint/scope-manager': 8.2.0 - '@typescript-eslint/types': 8.2.0 - '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4) - eslint: 9.9.0(jiti@1.21.6) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.3.0 + '@typescript-eslint/types': 8.3.0 + '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.5.4) + eslint: 9.9.1(jiti@1.21.6) transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/visitor-keys@8.2.0': + '@typescript-eslint/visitor-keys@8.3.0': dependencies: - '@typescript-eslint/types': 8.2.0 + '@typescript-eslint/types': 8.3.0 eslint-visitor-keys: 3.4.3 - '@wesleytodd/openapi@0.3.0(core-js@3.38.1)(encoding@0.1.13)(mobx@6.13.1)(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': + '@wesleytodd/openapi@0.3.0(core-js@3.38.1)(encoding@0.1.13)(enzyme@3.11.0)(mobx@6.13.1)(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: - ajv: 8.16.0 - ajv-formats: 2.1.1(ajv@8.16.0) + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) http-errors: 2.0.0 merge-deep: 3.0.3 path-to-regexp: 6.2.2 - redoc: 2.1.4(core-js@3.38.1)(encoding@0.1.13)(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + redoc: 2.1.5(core-js@3.38.1)(encoding@0.1.13)(enzyme@3.11.0)(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) router: 1.3.8 serve-static: 1.15.0 swagger-parser: 10.0.3(openapi-types@12.1.3) - swagger-ui-dist: 5.17.5 - yaml: 2.4.2 + swagger-ui-dist: 5.17.14 + yaml: 2.5.0 transitivePeerDependencies: - - bufferutil - - canvas - core-js - encoding + - enzyme - mobx - openapi-types - react @@ -19226,23 +18048,20 @@ snapshots: - react-native - styled-components - supports-color - - utf-8-validate '@whatwg-node/events@0.0.3': {} - '@whatwg-node/events@0.1.1': {} - '@whatwg-node/fetch@0.8.8': dependencies: - '@peculiar/webcrypto': 1.4.6 + '@peculiar/webcrypto': 1.5.0 '@whatwg-node/node-fetch': 0.3.6 busboy: 1.6.0 urlpattern-polyfill: 8.0.2 web-streams-polyfill: 3.3.3 - '@whatwg-node/fetch@0.9.17': + '@whatwg-node/fetch@0.9.21': dependencies: - '@whatwg-node/node-fetch': 0.5.11 + '@whatwg-node/node-fetch': 0.5.25 urlpattern-polyfill: 10.0.0 '@whatwg-node/node-fetch@0.3.6': @@ -19253,10 +18072,9 @@ snapshots: fast-url-parser: 1.1.3 tslib: 2.6.3 - '@whatwg-node/node-fetch@0.5.11': + '@whatwg-node/node-fetch@0.5.25': dependencies: '@kamilkisiela/fast-url-parser': 1.1.4 - '@whatwg-node/events': 0.1.1 busboy: 1.6.0 fast-querystring: 1.1.2 tslib: 2.6.3 @@ -19268,10 +18086,6 @@ snapshots: jsonparse: 1.3.1 through: 2.3.8 - abab@2.0.6: {} - - abbrev@1.1.1: {} - abort-controller@3.0.0: dependencies: event-target-shim: 5.0.1 @@ -19281,35 +18095,22 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-globals@7.0.1: - dependencies: - acorn: 8.12.1 - acorn-walk: 8.3.2 - acorn-import-assertions@1.9.0(acorn@8.12.1): dependencies: acorn: 8.12.1 optional: true - acorn-import-attributes@1.9.5(acorn@8.11.3): - dependencies: - acorn: 8.11.3 - acorn-import-attributes@1.9.5(acorn@8.12.1): dependencies: acorn: 8.12.1 - acorn-jsx@5.3.2(acorn@8.11.3): - dependencies: - acorn: 8.11.3 - acorn-jsx@5.3.2(acorn@8.12.1): dependencies: acorn: 8.12.1 - acorn-walk@8.3.2: {} - - acorn@8.11.3: {} + acorn-walk@8.3.3: + dependencies: + acorn: 8.12.1 acorn@8.12.1: {} @@ -19317,17 +18118,17 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.3.4 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color agent-base@7.1.1: dependencies: - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color - agentkeepalive@3.5.2: + agentkeepalive@3.5.3: dependencies: humanize-ms: 1.2.1 @@ -19345,9 +18146,9 @@ snapshots: clean-stack: 5.2.0 indent-string: 5.0.0 - ajv-formats@2.1.1(ajv@8.16.0): + ajv-formats@2.1.1(ajv@8.17.1): optionalDependencies: - ajv: 8.16.0 + ajv: 8.17.1 ajv@6.12.6: dependencies: @@ -19356,13 +18157,6 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.16.0: - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - ajv@8.17.1: dependencies: fast-deep-equal: 3.1.3 @@ -19409,7 +18203,7 @@ snapshots: apns2@11.7.0: dependencies: - fast-jwt: 4.0.1 + fast-jwt: 4.0.2 fetch-http2: 1.4.0 append-field@1.0.0: {} @@ -19443,7 +18237,7 @@ snapshots: archiver@5.3.2: dependencies: archiver-utils: 2.1.0 - async: 3.2.5 + async: 3.2.6 buffer-crc32: 0.2.13 readable-stream: 3.6.2 readdir-glob: 1.1.3 @@ -19479,6 +18273,22 @@ snapshots: array-union@2.1.0: {} + array.prototype.filter@1.0.4: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-array-method-boxes-properly: 1.0.0 + es-object-atoms: 1.0.0 + is-string: 1.0.7 + + array.prototype.flat@1.3.2: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-shim-unscopables: 1.0.2 + arraybuffer.prototype.slice@1.0.3: dependencies: array-buffer-byte-length: 1.0.1 @@ -19526,26 +18336,24 @@ snapshots: async@3.2.3: {} - async@3.2.5: {} + async@3.2.6: {} asynckit@0.4.0: {} auto-bind@4.0.0: {} - auto-bind@5.0.1: {} - available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 aws-lambda@1.0.7: dependencies: - aws-sdk: 2.1614.0 + aws-sdk: 2.1683.0 commander: 3.0.2 js-yaml: 3.14.1 - watchpack: 2.4.1 + watchpack: 2.4.2 - aws-sdk@2.1614.0: + aws-sdk@2.1683.0: dependencies: buffer: 4.9.2 events: 1.1.1 @@ -19560,21 +18368,13 @@ snapshots: aws-ssl-profiles@1.1.1: {} - aws4@1.13.0: {} + aws4@1.13.1: {} axios-retry@4.4.0(axios@1.7.4): dependencies: axios: 1.7.4 is-retry-allowed: 2.2.0 - axios@1.6.8: - dependencies: - follow-redirects: 1.15.6 - form-data: 4.0.0 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug - axios@1.7.4: dependencies: follow-redirects: 1.15.6 @@ -19583,33 +18383,6 @@ snapshots: transitivePeerDependencies: - debug - babel-jest@29.7.0(@babel/core@7.24.5): - dependencies: - '@babel/core': 7.24.5 - '@jest/transform': 29.7.0 - '@types/babel__core': 7.20.5 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.24.5) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - - babel-jest@29.7.0(@babel/core@7.24.8): - dependencies: - '@babel/core': 7.24.8 - '@jest/transform': 29.7.0 - '@types/babel__core': 7.20.5 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.24.8) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - optional: true - babel-jest@29.7.0(@babel/core@7.25.2): dependencies: '@babel/core': 7.25.2 @@ -19622,11 +18395,10 @@ snapshots: slash: 3.0.0 transitivePeerDependencies: - supports-color - optional: true babel-plugin-istanbul@6.1.1: dependencies: - '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-plugin-utils': 7.24.8 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 @@ -19636,52 +18408,21 @@ snapshots: babel-plugin-jest-hoist@29.6.3: dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.5 + '@babel/template': 7.25.0 + '@babel/types': 7.25.4 '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.5 - - babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} + '@types/babel__traverse': 7.20.6 - babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.5): - dependencies: - '@babel/core': 7.24.5 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5) - - babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.8): - dependencies: - '@babel/core': 7.24.8 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.8) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.8) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.8) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.8) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.8) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.8) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.8) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.8) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.8) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.8) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.8) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.8) - optional: true + babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} - babel-preset-current-node-syntax@1.0.1(@babel/core@7.25.2): + babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.2): dependencies: '@babel/core': 7.25.2 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2) '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2) + '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2) '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2) '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2) @@ -19690,61 +18431,47 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2) - optional: true - babel-preset-fbjs@3.4.0(@babel/core@7.24.8): - dependencies: - '@babel/core': 7.24.8 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.8) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.8) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.8) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.8) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.24.8) - '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.8) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.24.8) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.8) - '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.8) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.8) - '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.8) + babel-preset-fbjs@3.4.0(@babel/core@7.25.2): + dependencies: + '@babel/core': 7.25.2 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2) + '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2) + '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2) + '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2) + '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2) + '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2) + '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2) + '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2) + '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2) + '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color - babel-preset-jest@29.6.3(@babel/core@7.24.5): - dependencies: - '@babel/core': 7.24.5 - babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5) - - babel-preset-jest@29.6.3(@babel/core@7.24.8): - dependencies: - '@babel/core': 7.24.8 - babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.8) - optional: true - babel-preset-jest@29.6.3(@babel/core@7.25.2): dependencies: '@babel/core': 7.25.2 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.2) - optional: true + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2) balanced-match@1.0.2: {} @@ -19811,15 +18538,11 @@ snapshots: dependencies: balanced-match: 1.0.2 - braces@3.0.2: - dependencies: - fill-range: 7.0.1 - braces@3.0.3: dependencies: fill-range: 7.1.1 - braze-api@2.9.1(encoding@0.1.13): + braze-api@2.10.0(encoding@0.1.13): dependencies: '@types/node-fetch': 2.6.6 node-fetch: 2.7.0(encoding@0.1.13) @@ -19830,27 +18553,12 @@ snapshots: browser-or-node@3.0.0: {} - browserslist@4.23.0: - dependencies: - caniuse-lite: 1.0.30001616 - electron-to-chromium: 1.4.757 - node-releases: 2.0.14 - update-browserslist-db: 1.0.15(browserslist@4.23.0) - - browserslist@4.23.2: - dependencies: - caniuse-lite: 1.0.30001641 - electron-to-chromium: 1.4.827 - node-releases: 2.0.14 - update-browserslist-db: 1.1.0(browserslist@4.23.2) - browserslist@4.23.3: dependencies: - caniuse-lite: 1.0.30001651 + caniuse-lite: 1.0.30001653 electron-to-chromium: 1.5.13 node-releases: 2.0.18 update-browserslist-db: 1.1.0(browserslist@4.23.3) - optional: true bs-logger@0.2.6: dependencies: @@ -19869,7 +18577,7 @@ snapshots: buffer@4.9.2: dependencies: base64-js: 1.5.1 - ieee754: 1.2.1 + ieee754: 1.1.13 isarray: 1.0.0 buffer@5.7.1: @@ -19899,9 +18607,9 @@ snapshots: cacache@17.1.4: dependencies: - '@npmcli/fs': 3.1.0 + '@npmcli/fs': 3.1.1 fs-minipass: 3.0.3 - glob: 10.4.1 + glob: 10.4.5 lru-cache: 7.18.3 minipass: 7.1.2 minipass-collect: 1.0.2 @@ -19914,10 +18622,10 @@ snapshots: cacache@18.0.4: dependencies: - '@npmcli/fs': 3.1.0 + '@npmcli/fs': 3.1.1 fs-minipass: 3.0.3 - glob: 10.4.1 - lru-cache: 10.2.2 + glob: 10.4.5 + lru-cache: 10.4.3 minipass: 7.1.2 minipass-collect: 2.0.1 minipass-flush: 1.0.5 @@ -19962,12 +18670,7 @@ snapshots: camelize@1.0.1: {} - caniuse-lite@1.0.30001616: {} - - caniuse-lite@1.0.30001641: {} - - caniuse-lite@1.0.30001651: - optional: true + caniuse-lite@1.0.30001653: {} capital-case@1.0.4: dependencies: @@ -19977,48 +18680,9 @@ snapshots: case@1.6.3: {} - cdktf-cli@0.20.8(encoding@0.1.13)(ink@3.2.0(react@18.3.1))(react@18.3.1): - dependencies: - '@cdktf/cli-core': 0.20.8(encoding@0.1.13)(react@18.3.1) - '@cdktf/commons': 0.20.8(constructs@10.3.0) - '@cdktf/hcl-tools': 0.20.8 - '@cdktf/hcl2cdk': 0.20.8(constructs@10.3.0) - '@cdktf/hcl2json': 0.20.8 - '@inquirer/prompts': 2.3.1 - '@sentry/node': 7.116.0 - cdktf: 0.20.8(constructs@10.3.0) - ci-info: 3.9.0 - codemaker: 1.98.0 - constructs: 10.3.0 - cross-spawn: 7.0.3 - https-proxy-agent: 5.0.1 - ink-select-input: 4.2.2(ink@3.2.0(react@18.3.1))(react@18.3.1) - ink-table: 3.1.0(ink@3.2.0(react@18.3.1))(react@18.3.1) - jsii: 5.4.12 - jsii-pacmak: 1.98.0(jsii-rosetta@5.4.14) - jsii-rosetta: 5.4.14 - minimatch: 5.1.6 - node-fetch: 2.7.0(encoding@0.1.13) - pidtree: 0.6.0 - pidusage: 3.0.2 - tunnel-agent: 0.6.0 - xml-js: 1.6.11 - yargs: 17.7.2 - yoga-layout-prebuilt: 1.10.0 - zod: 3.23.8 - transitivePeerDependencies: - - '@types/react' - - bufferutil - - debug - - encoding - - ink - - react - - supports-color - - utf-8-validate - - cdktf-cli@0.20.8(encoding@0.1.13)(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1): + cdktf-cli@0.20.8(encoding@0.1.13)(ink@3.2.0(react@17.0.2))(react@17.0.2): dependencies: - '@cdktf/cli-core': 0.20.8(encoding@0.1.13)(react@18.3.1) + '@cdktf/cli-core': 0.20.8(encoding@0.1.13)(react@17.0.2) '@cdktf/commons': 0.20.8(constructs@10.3.0) '@cdktf/hcl-tools': 0.20.8 '@cdktf/hcl2cdk': 0.20.8(constructs@10.3.0) @@ -20031,8 +18695,8 @@ snapshots: constructs: 10.3.0 cross-spawn: 7.0.3 https-proxy-agent: 5.0.1 - ink-select-input: 4.2.2(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) - ink-table: 3.1.0(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1) + ink-select-input: 4.2.2(ink@3.2.0(react@17.0.2))(react@17.0.2) + ink-table: 3.1.0(ink@3.2.0(react@17.0.2))(react@17.0.2) jsii: 5.4.12 jsii-pacmak: 1.98.0(jsii-rosetta@5.4.14) jsii-rosetta: 5.4.14 @@ -20142,15 +18806,19 @@ snapshots: domhandler: 5.0.3 domutils: 3.1.0 - cheerio@1.0.0-rc.12: + cheerio@1.0.0: dependencies: cheerio-select: 2.1.0 dom-serializer: 2.0.0 domhandler: 5.0.3 domutils: 3.1.0 - htmlparser2: 8.0.2 + encoding-sniffer: 0.2.0 + htmlparser2: 9.1.0 parse5: 7.1.2 parse5-htmlparser2-tree-adapter: 7.0.0 + parse5-parser-stream: 7.1.2 + undici: 6.19.8 + whatwg-mimetype: 4.0.0 chevrotain@10.5.0: dependencies: @@ -20183,7 +18851,7 @@ snapshots: ci-info@3.9.0: {} - cjs-module-lexer@1.3.1: {} + cjs-module-lexer@1.4.0: {} classnames@2.5.1: {} @@ -20195,8 +18863,6 @@ snapshots: cli-boxes@2.2.1: {} - cli-boxes@3.0.0: {} - cli-cursor@3.1.0: dependencies: restore-cursor: 3.1.0 @@ -20229,11 +18895,6 @@ snapshots: slice-ansi: 3.0.0 string-width: 4.2.3 - cli-truncate@4.0.0: - dependencies: - slice-ansi: 5.0.0 - string-width: 7.2.0 - cli-width@3.0.0: {} cli-width@4.1.0: {} @@ -20272,7 +18933,7 @@ snapshots: clone@2.1.2: {} - clsx@1.2.1: {} + clsx@2.1.1: {} cluster-key-slot@1.1.2: {} @@ -20282,10 +18943,6 @@ snapshots: dependencies: convert-to-spaces: 1.0.2 - code-excerpt@4.0.0: - dependencies: - convert-to-spaces: 2.0.1 - codemaker@1.98.0: dependencies: camelcase: 6.3.0 @@ -20341,6 +18998,8 @@ snapshots: commander@12.1.0: {} + commander@2.20.3: {} + commander@3.0.2: {} commander@4.1.1: {} @@ -20361,12 +19020,11 @@ snapshots: minimist: 1.2.8 string.prototype.repeat: 0.2.0 - commonmark@0.31.0: + commonmark@0.31.1: dependencies: entities: 3.0.1 mdurl: 1.0.1 minimist: 1.2.8 - string.prototype.repeat: 1.0.0 compare-func@2.0.0: dependencies: @@ -20384,7 +19042,7 @@ snapshots: compressible@2.0.18: dependencies: - mime-db: 1.52.0 + mime-db: 1.53.0 compression@1.7.4: dependencies: @@ -20497,8 +19155,6 @@ snapshots: convert-to-spaces@1.0.2: {} - convert-to-spaces@2.0.1: {} - cookie-parser@1.4.6: dependencies: cookie: 0.4.1 @@ -20537,12 +19193,12 @@ snapshots: object-assign: 4.1.1 vary: 1.1.2 - cosmiconfig-typescript-loader@5.0.0(@types/node@22.5.0)(cosmiconfig@9.0.0(typescript@5.7.0-dev.20240822))(typescript@5.7.0-dev.20240822): + cosmiconfig-typescript-loader@5.0.0(@types/node@22.5.0)(cosmiconfig@9.0.0(typescript@5.7.0-dev.20240827))(typescript@5.7.0-dev.20240827): dependencies: '@types/node': 22.5.0 - cosmiconfig: 9.0.0(typescript@5.7.0-dev.20240822) + cosmiconfig: 9.0.0(typescript@5.7.0-dev.20240827) jiti: 1.21.6 - typescript: 5.7.0-dev.20240822 + typescript: 5.7.0-dev.20240827 cosmiconfig@8.3.6(typescript@5.5.4): dependencies: @@ -20562,18 +19218,18 @@ snapshots: optionalDependencies: typescript: 5.5.4 - cosmiconfig@9.0.0(typescript@5.7.0-dev.20240822): + cosmiconfig@9.0.0(typescript@5.7.0-dev.20240827): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.7.0-dev.20240822 + typescript: 5.7.0-dev.20240827 cpu-features@0.0.2: dependencies: - nan: 2.19.0 + nan: 2.20.0 optional: true crc-32@1.2.2: {} @@ -20612,7 +19268,7 @@ snapshots: transitivePeerDependencies: - encoding - cross-inspect@1.0.0: + cross-inspect@1.0.1: dependencies: tslib: 2.6.3 @@ -20648,14 +19304,6 @@ snapshots: css-what@6.1.0: {} - cssom@0.3.8: {} - - cssom@0.5.0: {} - - cssstyle@2.3.0: - dependencies: - cssom: 0.3.8 - csstype@3.1.3: {} cycle@1.0.3: {} @@ -20663,16 +19311,10 @@ snapshots: d@1.0.2: dependencies: es5-ext: 0.10.64 - type: 2.7.2 + type: 2.7.3 dargs@8.1.0: {} - data-urls@3.0.2: - dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 - data-view-buffer@1.0.1: dependencies: call-bind: 1.0.7 @@ -20695,7 +19337,7 @@ snapshots: date-fns@2.30.0: dependencies: - '@babel/runtime': 7.24.5 + '@babel/runtime': 7.25.4 date-format@4.0.14: {} @@ -20708,7 +19350,7 @@ snapshots: bluebird: 3.7.2 db-migrate-base: 2.3.1 pg: 8.12.0 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - pg-native @@ -20748,22 +19390,16 @@ snapshots: dependencies: ms: 2.1.2 - debug@4.3.5(supports-color@5.5.0): + debug@4.3.6(supports-color@5.5.0): dependencies: ms: 2.1.2 optionalDependencies: supports-color: 5.5.0 - debug@4.3.6: - dependencies: - ms: 2.1.2 - decamelize@1.2.0: {} decamelize@5.0.1: {} - decimal.js@10.4.3: {} - decko@1.2.0: {} decompress-response@6.0.0: @@ -20857,7 +19493,7 @@ snapshots: detect-port@1.6.1: dependencies: address: 1.2.2 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -20876,6 +19512,8 @@ snapshots: dependencies: path-type: 4.0.0 + discontinuous-range@1.0.0: {} + dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 @@ -20884,17 +19522,13 @@ snapshots: domelementtype@2.3.0: {} - domexception@4.0.0: - dependencies: - webidl-conversions: 7.0.0 - domhandler@5.0.3: dependencies: domelementtype: 2.3.0 domino@2.1.6: {} - dompurify@3.1.2: {} + dompurify@3.1.6: {} domutils@3.1.0: dependencies: @@ -20932,9 +19566,9 @@ snapshots: downlevel-dts@0.11.0: dependencies: - semver: 7.6.2 + semver: 7.6.3 shelljs: 0.8.5 - typescript: 5.7.0-dev.20240822 + typescript: 5.7.0-dev.20240827 dreamopt@0.8.0: dependencies: @@ -20981,18 +19615,13 @@ snapshots: elasticsearch@16.7.3: dependencies: - agentkeepalive: 3.5.2 + agentkeepalive: 3.5.3 chalk: 1.1.3 lodash: 4.17.21 - electron-to-chromium@1.4.757: {} - - electron-to-chromium@1.4.827: {} - - electron-to-chromium@1.5.13: - optional: true + electron-to-chromium@1.5.13: {} - elliptic@6.5.5: + elliptic@6.5.7: dependencies: bn.js: 4.12.0 brorand: 1.1.0 @@ -21004,7 +19633,7 @@ snapshots: emittery@0.13.1: {} - emoji-regex@10.3.0: {} + emoji-regex@10.4.0: {} emoji-regex@8.0.0: {} @@ -21016,6 +19645,11 @@ snapshots: encodeurl@1.0.2: {} + encoding-sniffer@0.2.0: + dependencies: + iconv-lite: 0.6.3 + whatwg-encoding: 3.1.1 + encoding@0.1.13: dependencies: iconv-lite: 0.6.3 @@ -21036,7 +19670,7 @@ snapshots: entities@4.5.0: {} - env-ci@11.0.0: + env-ci@11.1.0: dependencies: execa: 8.0.1 java-properties: 1.0.2 @@ -21045,6 +19679,36 @@ snapshots: environment@1.1.0: {} + enzyme-shallow-equal@1.0.7: + dependencies: + hasown: 2.0.2 + object-is: 1.1.6 + + enzyme@3.11.0: + dependencies: + array.prototype.flat: 1.3.2 + cheerio: 1.0.0 + enzyme-shallow-equal: 1.0.7 + function.prototype.name: 1.1.6 + has: 1.0.4 + html-element-map: 1.3.1 + is-boolean-object: 1.1.2 + is-callable: 1.2.7 + is-number-object: 1.0.7 + is-regex: 1.1.4 + is-string: 1.0.7 + is-subset: 0.1.1 + lodash.escape: 4.0.1 + lodash.isequal: 4.5.0 + object-inspect: 1.13.2 + object-is: 1.1.6 + object.assign: 4.1.5 + object.entries: 1.1.8 + object.values: 1.2.0 + raf: 3.4.1 + rst-selector-parser: 2.2.3 + string.prototype.trim: 1.2.9 + err-code@2.0.3: {} error-ex@1.3.2: @@ -21089,7 +19753,7 @@ snapshots: is-string: 1.0.7 is-typed-array: 1.1.13 is-weakref: 1.0.2 - object-inspect: 1.13.1 + object-inspect: 1.13.2 object-keys: 1.1.1 object.assign: 4.1.5 regexp.prototype.flags: 1.5.2 @@ -21105,6 +19769,8 @@ snapshots: unbox-primitive: 1.0.2 which-typed-array: 1.1.15 + es-array-method-boxes-properly@1.0.0: {} + es-define-property@1.0.0: dependencies: get-intrinsic: 1.2.4 @@ -21133,6 +19799,10 @@ snapshots: has-tostringtag: 1.0.2 hasown: 2.0.2 + es-shim-unscopables@1.0.2: + dependencies: + hasown: 2.0.2 + es-to-primitive@1.2.1: dependencies: is-callable: 1.2.7 @@ -21205,38 +19875,30 @@ snapshots: escape-string-regexp@5.0.0: {} - escodegen@2.1.0: - dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 - optionalDependencies: - source-map: 0.6.1 - - eslint-config-prettier@9.1.0(eslint@9.9.0(jiti@1.21.6)): + eslint-config-prettier@9.1.0(eslint@9.9.1(jiti@1.21.6)): dependencies: - eslint: 9.9.0(jiti@1.21.6) + eslint: 9.9.1(jiti@1.21.6) - eslint-plugin-package-json@0.15.2(eslint@9.9.0(jiti@1.21.6))(jsonc-eslint-parser@2.4.0): + eslint-plugin-package-json@0.15.2(eslint@9.9.1(jiti@1.21.6))(jsonc-eslint-parser@2.4.0): dependencies: detect-indent: 6.1.0 detect-newline: 3.1.0 - eslint: 9.9.0(jiti@1.21.6) + eslint: 9.9.1(jiti@1.21.6) jsonc-eslint-parser: 2.4.0 package-json-validator: 0.6.5 - semver: 7.6.2 + semver: 7.6.3 sort-object-keys: 1.1.3 sort-package-json: 1.57.0 validate-npm-package-name: 5.0.1 - eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(prettier@3.3.3): + eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@9.9.1(jiti@1.21.6)))(eslint@9.9.1(jiti@1.21.6))(prettier@3.3.3): dependencies: - eslint: 9.9.0(jiti@1.21.6) + eslint: 9.9.1(jiti@1.21.6) prettier: 3.3.3 prettier-linter-helpers: 1.0.0 synckit: 0.9.1 optionalDependencies: - eslint-config-prettier: 9.1.0(eslint@9.9.0(jiti@1.21.6)) + eslint-config-prettier: 9.1.0(eslint@9.9.1(jiti@1.21.6)) eslint-scope@8.0.2: dependencies: @@ -21247,20 +19909,20 @@ snapshots: eslint-visitor-keys@4.0.0: {} - eslint@9.9.0(jiti@1.21.6): + eslint@9.9.1(jiti@1.21.6): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1(jiti@1.21.6)) '@eslint-community/regexpp': 4.11.0 - '@eslint/config-array': 0.17.1 + '@eslint/config-array': 0.18.0 '@eslint/eslintrc': 3.1.0 - '@eslint/js': 9.9.0 + '@eslint/js': 9.9.1 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.3.0 '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) escape-string-regexp: 4.0.0 eslint-scope: 8.0.2 eslint-visitor-keys: 4.0.0 @@ -21295,7 +19957,7 @@ snapshots: d: 1.0.2 es5-ext: 0.10.64 event-emitter: 0.3.5 - type: 2.7.2 + type: 2.7.3 espree@10.1.0: dependencies: @@ -21305,8 +19967,8 @@ snapshots: espree@9.6.1: dependencies: - acorn: 8.11.3 - acorn-jsx: 5.3.2(acorn@8.11.3) + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) eslint-visitor-keys: 3.4.3 esprima@4.0.1: {} @@ -21395,7 +20057,7 @@ snapshots: exponential-backoff@3.1.1: {} - express-rate-limit@7.2.0(express@4.19.2): + express-rate-limit@7.4.0(express@4.19.2): dependencies: express: 4.19.2 @@ -21412,7 +20074,7 @@ snapshots: transitivePeerDependencies: - supports-color - express-validator@7.1.0: + express-validator@7.2.0: dependencies: lodash: 4.17.21 validator: 13.12.0 @@ -21455,7 +20117,7 @@ snapshots: ext@1.7.0: dependencies: - type: 2.7.2 + type: 2.7.3 extend@3.0.2: optional: true @@ -21470,7 +20132,7 @@ snapshots: extract-zip@2.0.1: dependencies: - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -21480,10 +20142,7 @@ snapshots: eyes@0.1.8: {} - farmhash@3.3.1: - dependencies: - node-addon-api: 5.1.0 - prebuild-install: 7.1.2 + farmhash-modern@1.1.0: {} fast-check@3.20.0: dependencies: @@ -21501,13 +20160,13 @@ snapshots: '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.7 + micromatch: 4.0.8 fast-json-patch@3.1.1: {} fast-json-stable-stringify@2.1.0: {} - fast-jwt@4.0.1: + fast-jwt@4.0.2: dependencies: '@lukeed/ms': 2.0.2 asn1.js: 5.4.1 @@ -21528,11 +20187,6 @@ snapshots: dependencies: punycode: 1.4.1 - fast-xml-parser@4.3.6: - dependencies: - strnum: 1.0.5 - optional: true - fast-xml-parser@4.4.1: dependencies: strnum: 1.0.5 @@ -21559,7 +20213,7 @@ snapshots: object-assign: 4.1.1 promise: 7.3.1 setimmediate: 1.0.5 - ua-parser-js: 1.0.37 + ua-parser-js: 1.0.38 transitivePeerDependencies: - encoding @@ -21607,10 +20261,6 @@ snapshots: dependencies: minimatch: 5.1.6 - fill-range@7.0.1: - dependencies: - to-regex-range: 5.0.1 - fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 @@ -21669,21 +20319,20 @@ snapshots: semver-regex: 4.0.5 super-regex: 1.0.0 - firebase-admin@12.1.0(encoding@0.1.13): + firebase-admin@12.4.0(encoding@0.1.13): dependencies: - '@fastify/busboy': 2.1.1 - '@firebase/database-compat': 1.0.4 - '@firebase/database-types': 1.0.2 - '@types/node': 20.16.1 - farmhash: 3.3.1 + '@fastify/busboy': 3.0.0 + '@firebase/database-compat': 1.0.7 + '@firebase/database-types': 1.0.4 + '@types/node': 22.5.0 + farmhash-modern: 1.1.0 jsonwebtoken: 9.0.2 jwks-rsa: 3.1.0 - long: 5.2.3 node-forge: 1.3.1 - uuid: 9.0.1 + uuid: 10.0.0 optionalDependencies: - '@google-cloud/firestore': 7.7.0(encoding@0.1.13) - '@google-cloud/storage': 7.11.0(encoding@0.1.13) + '@google-cloud/firestore': 7.9.0(encoding@0.1.13) + '@google-cloud/storage': 7.12.1(encoding@0.1.13) transitivePeerDependencies: - encoding - supports-color @@ -21713,7 +20362,7 @@ snapshots: foreach@2.0.6: {} - foreground-child@3.1.1: + foreground-child@3.3.0: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 @@ -21808,10 +20457,10 @@ snapshots: functions-have-names@1.2.3: {} - gaxios@6.5.0(encoding@0.1.13): + gaxios@6.7.1(encoding@0.1.13): dependencies: extend: 3.0.2 - https-proxy-agent: 7.0.4 + https-proxy-agent: 7.0.5 is-stream: 2.0.1 node-fetch: 2.7.0(encoding@0.1.13) uuid: 9.0.1 @@ -21822,7 +20471,7 @@ snapshots: gcp-metadata@6.1.0(encoding@0.1.13): dependencies: - gaxios: 6.5.0(encoding@0.1.13) + gaxios: 6.7.1(encoding@0.1.13) json-bigint: 1.0.0 transitivePeerDependencies: - encoding @@ -21886,15 +20535,6 @@ snapshots: git-hooks-list@1.0.3: {} - git-log-parser@1.2.0: - dependencies: - argv-formatter: 1.0.0 - spawn-error-forwarder: 1.0.0 - split2: 1.0.0 - stream-combiner2: 1.1.1 - through2: 2.0.5 - traverse: 0.6.9 - git-log-parser@1.2.1: dependencies: argv-formatter: 1.0.0 @@ -21924,10 +20564,19 @@ snapshots: glob@10.4.1: dependencies: - foreground-child: 3.1.1 + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + path-scurry: 1.11.1 + + glob@10.4.5: + dependencies: + foreground-child: 3.3.0 jackspeak: 3.4.3 minimatch: 9.0.5 minipass: 7.1.2 + package-json-from-dist: 1.0.0 path-scurry: 1.11.1 glob@7.2.3: @@ -21993,11 +20642,11 @@ snapshots: slash: 5.1.0 unicorn-magic: 0.1.0 - google-auth-library@9.9.0(encoding@0.1.13): + google-auth-library@9.14.0(encoding@0.1.13): dependencies: base64-js: 1.5.1 ecdsa-sig-formatter: 1.0.11 - gaxios: 6.5.0(encoding@0.1.13) + gaxios: 6.7.1(encoding@0.1.13) gcp-metadata: 6.1.0(encoding@0.1.13) gtoken: 7.1.0(encoding@0.1.13) jws: 4.0.0 @@ -22006,18 +20655,18 @@ snapshots: - supports-color optional: true - google-gax@4.3.3(encoding@0.1.13): + google-gax@4.3.9(encoding@0.1.13): dependencies: - '@grpc/grpc-js': 1.10.7 + '@grpc/grpc-js': 1.11.1 '@grpc/proto-loader': 0.7.13 '@types/long': 4.0.2 abort-controller: 3.0.0 duplexify: 4.1.3 - google-auth-library: 9.9.0(encoding@0.1.13) + google-auth-library: 9.14.0(encoding@0.1.13) node-fetch: 2.7.0(encoding@0.1.13) object-hash: 3.0.0 - proto3-json-serializer: 2.0.1 - protobufjs: 7.2.6 + proto3-json-serializer: 2.0.2 + protobufjs: 7.4.0 retry-request: 7.0.2(encoding@0.1.13) uuid: 9.0.1 transitivePeerDependencies: @@ -22057,39 +20706,18 @@ snapshots: graphology-types: 0.24.7 obliterator: 2.0.4 - graphql-config@5.0.3(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.5.4): + graphql-config@5.1.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.5.4): dependencies: '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.1) '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.1) '@graphql-tools/load': 8.0.2(graphql@16.8.1) - '@graphql-tools/merge': 9.0.4(graphql@16.8.1) + '@graphql-tools/merge': 9.0.6(graphql@16.8.1) '@graphql-tools/url-loader': 8.0.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.2.0(graphql@16.8.1) - cosmiconfig: 8.3.6(typescript@5.5.4) + '@graphql-tools/utils': 10.5.4(graphql@16.8.1) + cosmiconfig: 9.0.0(typescript@5.5.4) graphql: 16.8.1 - jiti: 1.21.0 - minimatch: 4.2.3 - string-env-interpolation: 1.0.1 - tslib: 2.6.3 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - typescript - - utf-8-validate - - graphql-config@5.0.3(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0)(typescript@5.5.4): - dependencies: - '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/json-file-loader': 8.0.1(graphql@16.9.0) - '@graphql-tools/load': 8.0.2(graphql@16.9.0) - '@graphql-tools/merge': 9.0.4(graphql@16.9.0) - '@graphql-tools/url-loader': 8.0.2(@types/node@20.16.1)(encoding@0.1.13)(graphql@16.9.0) - '@graphql-tools/utils': 10.2.0(graphql@16.9.0) - cosmiconfig: 8.3.6(typescript@5.5.4) - graphql: 16.9.0 - jiti: 1.21.0 - minimatch: 4.2.3 + jiti: 1.21.6 + minimatch: 9.0.5 string-env-interpolation: 1.0.1 tslib: 2.6.3 transitivePeerDependencies: @@ -22104,7 +20732,7 @@ snapshots: '@graphql-tools/schema': 9.0.19(graphql@16.8.1) '@graphql-tools/utils': 9.2.1(graphql@16.8.1) graphql: 16.8.1 - validator: 13.11.0 + validator: 13.12.0 graphql-depth-limit@1.1.0(graphql@16.8.1): dependencies: @@ -22119,14 +20747,6 @@ snapshots: transitivePeerDependencies: - encoding - graphql-request@6.1.0(encoding@0.1.13)(graphql@16.9.0): - dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) - cross-fetch: 3.1.8(encoding@0.1.13) - graphql: 16.9.0 - transitivePeerDependencies: - - encoding - graphql-scalars@1.23.0(graphql@16.8.1): dependencies: graphql: 16.8.1 @@ -22137,30 +20757,19 @@ snapshots: graphql: 16.8.1 tslib: 2.6.3 - graphql-tag@2.12.6(graphql@16.9.0): - dependencies: - graphql: 16.9.0 - tslib: 2.6.3 - graphql-ws@5.16.0(graphql@16.8.1): dependencies: graphql: 16.8.1 - graphql-ws@5.16.0(graphql@16.9.0): - dependencies: - graphql: 16.9.0 - graphql@14.7.0: dependencies: iterall: 1.3.0 graphql@16.8.1: {} - graphql@16.9.0: {} - gtoken@7.1.0(encoding@0.1.13): dependencies: - gaxios: 6.5.0(encoding@0.1.13) + gaxios: 6.7.1(encoding@0.1.13) jws: 4.0.0 transitivePeerDependencies: - encoding @@ -22198,6 +20807,8 @@ snapshots: dependencies: has-symbols: 1.0.3 + has@1.0.4: {} + hash-sum@2.0.0: {} hash.js@1.1.7: @@ -22247,15 +20858,16 @@ snapshots: hpagent@1.2.0: {} - html-encoding-sniffer@3.0.0: + html-element-map@1.3.1: dependencies: - whatwg-encoding: 2.0.0 + array.prototype.filter: 1.0.4 + call-bind: 1.0.7 html-entities@2.5.2: {} html-escaper@2.0.2: {} - htmlparser2@8.0.2: + htmlparser2@9.1.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 @@ -22278,21 +20890,21 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color http-proxy-agent@7.0.0: dependencies: agent-base: 7.1.1 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -22306,28 +20918,21 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color https-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 - debug: 4.3.6 - transitivePeerDependencies: - - supports-color - - https-proxy-agent@7.0.4: - dependencies: - agent-base: 7.1.1 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color https-proxy-agent@7.0.5: dependencies: agent-base: 7.1.1 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -22374,7 +20979,7 @@ snapshots: import-from-esm@1.3.4: dependencies: - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) import-meta-resolve: 4.1.0 transitivePeerDependencies: - supports-color @@ -22385,25 +20990,18 @@ snapshots: dependencies: acorn: 8.12.1 acorn-import-attributes: 1.9.5(acorn@8.12.1) - cjs-module-lexer: 1.3.1 + cjs-module-lexer: 1.4.0 module-details-from-path: 1.0.3 import-in-the-middle@1.7.1: dependencies: acorn: 8.12.1 acorn-import-assertions: 1.9.0(acorn@8.12.1) - cjs-module-lexer: 1.3.1 + cjs-module-lexer: 1.4.0 module-details-from-path: 1.0.3 optional: true - import-in-the-middle@1.8.1: - dependencies: - acorn: 8.11.3 - acorn-import-attributes: 1.9.5(acorn@8.11.3) - cjs-module-lexer: 1.3.1 - module-details-from-path: 1.0.3 - - import-local@3.1.0: + import-local@3.2.0: dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 @@ -22433,48 +21031,34 @@ snapshots: ini@4.1.1: {} - ink-select-input@4.2.2(ink@3.2.0(react@18.3.1))(react@18.3.1): - dependencies: - arr-rotate: 1.0.0 - figures: 3.2.0 - ink: 3.2.0(react@18.3.1) - lodash.isequal: 4.5.0 - react: 18.3.1 - - ink-select-input@4.2.2(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1): + ink-select-input@4.2.2(ink@3.2.0(react@17.0.2))(react@17.0.2): dependencies: arr-rotate: 1.0.0 figures: 3.2.0 - ink: 5.0.1(react-devtools-core@4.28.5)(react@18.3.1) + ink: 3.2.0(react@17.0.2) lodash.isequal: 4.5.0 - react: 18.3.1 + react: 17.0.2 - ink-spinner@4.0.3(ink@3.2.0(react@18.3.1))(react@18.3.1): + ink-spinner@4.0.3(ink@3.2.0(react@17.0.2))(react@17.0.2): dependencies: cli-spinners: 2.9.2 - ink: 3.2.0(react@18.3.1) - react: 18.3.1 - - ink-table@3.1.0(ink@3.2.0(react@18.3.1))(react@18.3.1): - dependencies: - ink: 3.2.0(react@18.3.1) - object-hash: 2.2.0 - react: 18.3.1 + ink: 3.2.0(react@17.0.2) + react: 17.0.2 - ink-table@3.1.0(ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1))(react@18.3.1): + ink-table@3.1.0(ink@3.2.0(react@17.0.2))(react@17.0.2): dependencies: - ink: 5.0.1(react-devtools-core@4.28.5)(react@18.3.1) + ink: 3.2.0(react@17.0.2) object-hash: 2.2.0 - react: 18.3.1 + react: 17.0.2 ink-testing-library@2.1.0: {} - ink-use-stdout-dimensions@1.0.5(ink@3.2.0(react@18.3.1))(react@18.3.1): + ink-use-stdout-dimensions@1.0.5(ink@3.2.0(react@17.0.2))(react@17.0.2): dependencies: - ink: 3.2.0(react@18.3.1) - react: 18.3.1 + ink: 3.2.0(react@17.0.2) + react: 17.0.2 - ink@3.2.0(react@18.3.1): + ink@3.2.0(react@17.0.2): dependencies: ansi-escapes: 4.3.2 auto-bind: 4.0.0 @@ -22487,9 +21071,9 @@ snapshots: is-ci: 2.0.0 lodash: 4.17.21 patch-console: 1.0.0 - react: 18.3.1 + react: 17.0.2 react-devtools-core: 4.28.5 - react-reconciler: 0.26.2(react@18.3.1) + react-reconciler: 0.26.2(react@17.0.2) scheduler: 0.20.2 signal-exit: 3.0.7 slice-ansi: 3.0.0 @@ -22498,45 +21082,12 @@ snapshots: type-fest: 0.12.0 widest-line: 3.1.0 wrap-ansi: 6.2.0 - ws: 7.5.9 + ws: 7.5.10 yoga-layout-prebuilt: 1.10.0 transitivePeerDependencies: - bufferutil - utf-8-validate - ink@5.0.1(react-devtools-core@4.28.5)(react@18.3.1): - dependencies: - '@alcalzone/ansi-tokenize': 0.1.3 - ansi-escapes: 7.0.0 - ansi-styles: 6.2.1 - auto-bind: 5.0.1 - chalk: 5.3.0 - cli-boxes: 3.0.0 - cli-cursor: 4.0.0 - cli-truncate: 4.0.0 - code-excerpt: 4.0.0 - indent-string: 5.0.0 - is-in-ci: 0.1.0 - lodash: 4.17.21 - patch-console: 2.0.0 - react: 18.3.1 - react-reconciler: 0.29.2(react@18.3.1) - scheduler: 0.23.2 - signal-exit: 3.0.7 - slice-ansi: 7.1.0 - stack-utils: 2.0.6 - string-width: 7.2.0 - type-fest: 4.25.0 - widest-line: 5.0.0 - wrap-ansi: 9.0.0 - ws: 8.18.0 - yoga-wasm-web: 0.3.3 - optionalDependencies: - react-devtools-core: 4.28.5 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - inquirer@8.2.6: dependencies: ansi-escapes: 4.3.2 @@ -22582,13 +21133,13 @@ snapshots: fengari: 0.1.4 fengari-interop: 0.1.3(fengari@0.1.4) ioredis: 5.4.1 - semver: 7.6.2 + semver: 7.6.3 ioredis@5.4.1: dependencies: '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 - debug: 4.3.4 + debug: 4.3.6(supports-color@5.5.0) denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -22649,7 +21200,7 @@ snapshots: dependencies: ci-info: 2.0.0 - is-core-module@2.13.1: + is-core-module@2.15.1: dependencies: hasown: 2.0.2 @@ -22671,12 +21222,6 @@ snapshots: is-fullwidth-code-point@3.0.0: {} - is-fullwidth-code-point@4.0.0: {} - - is-fullwidth-code-point@5.0.0: - dependencies: - get-east-asian-width: 1.2.0 - is-generator-fn@2.1.0: {} is-generator-function@1.0.10: @@ -22687,8 +21232,6 @@ snapshots: dependencies: is-extglob: 2.1.1 - is-in-ci@0.1.0: {} - is-interactive@1.0.0: {} is-interactive@2.0.0: {} @@ -22729,8 +21272,6 @@ snapshots: dependencies: isobject: 3.0.1 - is-potential-custom-element-name@1.0.1: {} - is-promise@2.2.2: {} is-property@1.0.2: {} @@ -22764,6 +21305,8 @@ snapshots: dependencies: has-tostringtag: 1.0.2 + is-subset@0.1.1: {} + is-symbol@1.0.4: dependencies: has-symbols: 1.0.3 @@ -22821,9 +21364,9 @@ snapshots: isobject@3.0.1: {} - isomorphic-ws@5.0.0(ws@8.17.0): + isomorphic-ws@5.0.0(ws@8.18.0): dependencies: - ws: 8.17.0 + ws: 8.18.0 isstream@0.1.2: {} @@ -22839,18 +21382,18 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: - '@babel/core': 7.24.5 - '@babel/parser': 7.24.5 + '@babel/core': 7.25.2 + '@babel/parser': 7.25.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: - supports-color - istanbul-lib-instrument@6.0.2: + istanbul-lib-instrument@6.0.3: dependencies: - '@babel/core': 7.24.5 - '@babel/parser': 7.24.5 + '@babel/core': 7.25.2 + '@babel/parser': 7.25.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.6.3 @@ -22865,7 +21408,7 @@ snapshots: istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -22886,7 +21429,7 @@ snapshots: jake@10.9.2: dependencies: - async: 3.2.5 + async: 3.2.6 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 @@ -22933,7 +21476,7 @@ snapshots: chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)) exit: 0.1.2 - import-local: 3.1.0 + import-local: 3.2.0 jest-config: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)) jest-util: 29.7.0 jest-validate: 29.7.0 @@ -22946,10 +21489,10 @@ snapshots: jest-config@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)): dependencies: - '@babel/core': 7.24.5 + '@babel/core': 7.25.2 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.5) + babel-jest: 29.7.0(@babel/core@7.25.2) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -22963,7 +21506,7 @@ snapshots: jest-runner: 29.7.0 jest-util: 29.7.0 jest-validate: 29.7.0 - micromatch: 4.0.5 + micromatch: 4.0.8 parse-json: 5.2.0 pretty-format: 29.7.0 slash: 3.0.0 @@ -22989,25 +21532,10 @@ snapshots: jest-each@29.7.0: dependencies: '@jest/types': 29.6.3 - chalk: 4.1.2 - jest-get-type: 29.6.3 - jest-util: 29.7.0 - pretty-format: 29.7.0 - - jest-environment-jsdom@29.7.0: - dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/jsdom': 20.0.1 - '@types/node': 20.16.1 - jest-mock: 29.7.0 + chalk: 4.1.2 + jest-get-type: 29.6.3 jest-util: 29.7.0 - jsdom: 20.0.3 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + pretty-format: 29.7.0 jest-environment-node@29.7.0: dependencies: @@ -23038,7 +21566,7 @@ snapshots: jest-regex-util: 29.6.3 jest-util: 29.7.0 jest-worker: 29.7.0 - micromatch: 4.0.5 + micromatch: 4.0.8 walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 @@ -23057,12 +21585,12 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.24.2 + '@babel/code-frame': 7.24.7 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 - micromatch: 4.0.7 + micromatch: 4.0.8 pretty-format: 29.7.0 slash: 3.0.0 stack-utils: 2.0.6 @@ -23139,7 +21667,7 @@ snapshots: '@jest/types': 29.6.3 '@types/node': 20.16.1 chalk: 4.1.2 - cjs-module-lexer: 1.3.1 + cjs-module-lexer: 1.4.0 collect-v8-coverage: 1.0.2 glob: 7.2.3 graceful-fs: 4.2.11 @@ -23157,15 +21685,15 @@ snapshots: jest-snapshot@29.7.0: dependencies: - '@babel/core': 7.24.5 - '@babel/generator': 7.24.5 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5) - '@babel/types': 7.24.5 + '@babel/core': 7.25.2 + '@babel/generator': 7.25.5 + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) + '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2) + '@babel/types': 7.25.4 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5) + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -23220,7 +21748,7 @@ snapshots: dependencies: '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)) '@jest/types': 29.6.3 - import-local: 3.1.0 + import-local: 3.2.0 jest-cli: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)) transitivePeerDependencies: - '@types/node' @@ -23228,20 +21756,10 @@ snapshots: - supports-color - ts-node - jiti@1.21.0: {} - jiti@1.21.6: {} jmespath@0.16.0: {} - joi@17.13.1: - dependencies: - '@hapi/hoek': 9.3.0 - '@hapi/topo': 5.1.0 - '@sideway/address': 4.1.5 - '@sideway/formula': 3.0.1 - '@sideway/pinpoint': 2.0.0 - joi@17.13.3: dependencies: '@hapi/hoek': 9.3.0 @@ -23250,9 +21768,9 @@ snapshots: '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 - jose@4.15.5: {} + jose@4.15.9: {} - jose@5.2.4: {} + jose@5.8.0: {} joycon@3.1.1: {} @@ -23277,76 +21795,43 @@ snapshots: jsbn@1.1.0: {} - jsdom@20.0.3: - dependencies: - abab: 2.0.6 - acorn: 8.12.1 - acorn-globals: 7.0.1 - cssom: 0.5.0 - cssstyle: 2.3.0 - data-urls: 3.0.2 - decimal.js: 10.4.3 - domexception: 4.0.0 - escodegen: 2.1.0 - form-data: 4.0.0 - html-encoding-sniffer: 3.0.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.9 - parse5: 7.1.2 - saxes: 6.0.0 - symbol-tree: 3.2.4 - tough-cookie: 4.1.4 - w3c-xmlserializer: 4.0.0 - webidl-conversions: 7.0.0 - whatwg-encoding: 2.0.0 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 - ws: 8.18.0 - xml-name-validator: 4.0.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - jsesc@2.5.2: {} jsii-pacmak@1.98.0(jsii-rosetta@5.4.14): dependencies: '@jsii/check-node': 1.98.0 - '@jsii/spec': 1.98.0 + '@jsii/spec': 1.102.0 clone: 2.1.2 codemaker: 1.98.0 commonmark: 0.30.0 escape-string-regexp: 4.0.0 fs-extra: 10.1.0 - jsii-reflect: 1.98.0 + jsii-reflect: 1.102.0 jsii-rosetta: 5.4.14 - semver: 7.6.2 + semver: 7.6.3 spdx-license-list: 6.9.0 xmlbuilder: 15.1.1 yargs: 16.2.0 - jsii-reflect@1.98.0: + jsii-reflect@1.102.0: dependencies: - '@jsii/check-node': 1.98.0 - '@jsii/spec': 1.98.0 + '@jsii/check-node': 1.102.0 + '@jsii/spec': 1.102.0 chalk: 4.1.2 fs-extra: 10.1.0 - oo-ascii-tree: 1.98.0 + oo-ascii-tree: 1.102.0 yargs: 16.2.0 jsii-rosetta@5.4.14: dependencies: '@jsii/check-node': 1.98.0 - '@jsii/spec': 1.98.0 + '@jsii/spec': 1.102.0 '@xmldom/xmldom': 0.8.10 chalk: 4.1.2 - commonmark: 0.31.0 + commonmark: 0.31.1 fast-glob: 3.3.2 jsii: 5.4.12 - semver: 7.6.2 + semver: 7.6.3 semver-intersect: 1.5.0 stream-json: 1.8.0 typescript: 5.4.5 @@ -23358,13 +21843,13 @@ snapshots: jsii@5.4.12: dependencies: '@jsii/check-node': 1.98.0 - '@jsii/spec': 1.98.0 + '@jsii/spec': 1.102.0 case: 1.6.3 chalk: 4.1.2 downlevel-dts: 0.11.0 fast-deep-equal: 3.1.3 log4js: 6.9.1 - semver: 7.6.2 + semver: 7.6.3 semver-intersect: 1.5.0 sort-json: 2.0.1 spdx-license-list: 6.9.0 @@ -23396,7 +21881,7 @@ snapshots: json-schema-to-ts@2.12.0: dependencies: - '@babel/runtime': 7.24.5 + '@babel/runtime': 7.25.4 '@types/json-schema': 7.0.15 ts-algebra: 1.2.2 @@ -23425,10 +21910,10 @@ snapshots: jsonc-eslint-parser@2.4.0: dependencies: - acorn: 8.11.3 + acorn: 8.12.1 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - semver: 7.6.2 + semver: 7.6.3 jsonfile@4.0.0: optionalDependencies: @@ -23453,7 +21938,7 @@ snapshots: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.6.2 + semver: 7.6.3 jwa@1.4.1: dependencies: @@ -23468,20 +21953,20 @@ snapshots: safe-buffer: 5.2.1 optional: true - jwk-to-pem@2.0.5: + jwk-to-pem@2.0.6: dependencies: asn1.js: 5.4.1 - elliptic: 6.5.5 + elliptic: 6.5.7 safe-buffer: 5.2.1 jwks-rsa@3.1.0: dependencies: '@types/express': 4.17.21 '@types/jsonwebtoken': 9.0.6 - debug: 4.3.4 - jose: 4.15.5 + debug: 4.3.6(supports-color@5.5.0) + jose: 4.15.9 limiter: 1.1.5 - lru-memoizer: 2.2.0 + lru-memoizer: 2.3.0 transitivePeerDependencies: - supports-color @@ -23567,7 +22052,7 @@ snapshots: dotenv-expand: 11.0.6 git-diff: 2.0.6 kysely: 0.27.3 - micromatch: 4.0.5 + micromatch: 4.0.8 minimist: 1.2.8 optionalDependencies: mysql2: 3.10.3 @@ -23597,7 +22082,7 @@ snapshots: lilconfig@2.1.0: {} - lilconfig@3.1.1: {} + lilconfig@3.1.2: {} limiter@1.1.5: {} @@ -23609,7 +22094,7 @@ snapshots: colorette: 2.0.20 log-update: 4.0.0 p-map: 4.0.0 - rfdc: 1.3.1 + rfdc: 1.4.1 rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 @@ -23665,10 +22150,14 @@ snapshots: lodash.difference@4.5.0: {} + lodash.escape@4.0.1: {} + lodash.escaperegexp@4.1.2: {} lodash.flatten@4.4.0: {} + lodash.flattendeep@4.4.0: {} + lodash.get@4.4.2: {} lodash.groupby@4.6.0: {} @@ -23749,20 +22238,20 @@ snapshots: log4js@6.9.1: dependencies: date-format: 4.0.14 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) flatted: 3.3.1 - rfdc: 1.3.1 + rfdc: 1.4.1 streamroller: 3.1.5 transitivePeerDependencies: - supports-color - logform@2.6.0: + logform@2.6.1: dependencies: '@colors/colors': 1.6.0 '@types/triple-beam': 1.3.5 fecha: 4.2.3 ms: 2.1.3 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 triple-beam: 1.4.1 loglevel@1.9.1: {} @@ -23785,27 +22274,24 @@ snapshots: lowercase-keys@2.0.0: {} - lru-cache@10.2.2: {} - lru-cache@10.4.3: {} - lru-cache@4.0.2: - dependencies: - pseudomap: 1.0.2 - yallist: 2.1.2 - lru-cache@5.1.1: dependencies: yallist: 3.1.1 + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 + lru-cache@7.18.3: {} lru-cache@8.0.5: {} - lru-memoizer@2.2.0: + lru-memoizer@2.3.0: dependencies: lodash.clonedeep: 4.5.0 - lru-cache: 4.0.2 + lru-cache: 6.0.0 lru-queue@0.1.0: dependencies: @@ -23892,7 +22378,7 @@ snapshots: cli-table3: 0.6.5 marked: 12.0.2 node-emoji: 2.1.3 - supports-hyperlinks: 3.0.0 + supports-hyperlinks: 3.1.0 marked@12.0.2: {} @@ -23908,7 +22394,7 @@ snapshots: media-typer@0.3.0: {} - memoizee@0.4.15: + memoizee@0.4.17: dependencies: d: 1.0.2 es5-ext: 0.10.64 @@ -23917,7 +22403,7 @@ snapshots: is-promise: 2.2.2 lru-queue: 0.1.0 next-tick: 1.1.0 - timers-ext: 0.1.7 + timers-ext: 0.1.8 meow@12.1.1: {} @@ -23941,18 +22427,15 @@ snapshots: methods@1.1.2: {} - micromatch@4.0.5: - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 - - micromatch@4.0.7: + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 mime-db@1.52.0: {} + mime-db@1.53.0: {} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 @@ -23987,10 +22470,6 @@ snapshots: dependencies: brace-expansion: 1.1.11 - minimatch@4.2.3: - dependencies: - brace-expansion: 1.1.11 - minimatch@5.1.6: dependencies: brace-expansion: 2.0.1 @@ -24067,17 +22546,18 @@ snapshots: dependencies: obliterator: 2.0.4 - mobx-react-lite@3.4.3(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + mobx-react-lite@4.0.7(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: mobx: 6.13.1 react: 18.3.1 + use-sync-external-store: 1.2.2(react@18.3.1) optionalDependencies: react-dom: 18.3.1(react@18.3.1) - mobx-react@7.6.0(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + mobx-react@9.1.1(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: mobx: 6.13.1 - mobx-react-lite: 3.4.3(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + mobx-react-lite: 4.0.7(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 optionalDependencies: react-dom: 18.3.1(react@18.3.1) @@ -24088,6 +22568,8 @@ snapshots: mongodb-uri@0.9.7: {} + moo@0.5.2: {} + morgan@1.10.0: dependencies: basic-auth: 2.0.1 @@ -24146,7 +22628,7 @@ snapshots: dependencies: lru-cache: 7.18.3 - nan@2.19.0: {} + nan@2.20.0: {} nanoid@3.3.7: {} @@ -24154,6 +22636,13 @@ snapshots: natural-compare@1.4.0: {} + nearley@2.20.1: + dependencies: + commander: 2.20.3 + moo: 0.5.2 + railroad-diagrams: 1.0.0 + randexp: 0.4.6 + negotiator@0.6.3: {} neo-async@2.6.2: {} @@ -24175,15 +22664,13 @@ snapshots: json-stringify-safe: 5.0.1 propagate: 2.0.1 - node-abi@3.62.0: + node-abi@3.67.0: dependencies: semver: 7.6.2 node-abort-controller@3.1.1: {} - node-addon-api@5.1.0: {} - - node-addon-api@7.1.0: {} + node-addon-api@7.1.1: {} node-emoji@2.1.3: dependencies: @@ -24218,30 +22705,23 @@ snapshots: dependencies: es6-promise: 3.3.1 - node-releases@2.0.14: {} - - node-releases@2.0.18: - optional: true + node-releases@2.0.18: {} - nodemailer@6.9.13: {} + nodemailer@6.9.14: {} nodemon@3.1.4: dependencies: chokidar: 3.6.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) ignore-by-default: 1.0.1 minimatch: 3.1.2 pstree.remy: 1.1.8 - semver: 7.6.2 + semver: 7.6.3 simple-update-notifier: 2.0.0 supports-color: 5.5.0 - touch: 3.1.0 + touch: 3.1.1 undefsafe: 2.0.5 - nopt@1.0.10: - dependencies: - abbrev: 1.1.1 - normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 @@ -24301,8 +22781,6 @@ snapshots: nullthrows@1.1.1: {} - nwsapi@2.2.9: {} - oas-kit-common@1.0.8: dependencies: fast-safe-stringify: 2.1.1 @@ -24343,7 +22821,7 @@ snapshots: object-hash@3.0.0: optional: true - object-inspect@1.13.1: {} + object-inspect@1.13.2: {} object-is@1.1.6: dependencies: @@ -24359,6 +22837,18 @@ snapshots: has-symbols: 1.0.3 object-keys: 1.1.1 + object.entries@1.1.8: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + object.values@1.2.0: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + obliterator@1.6.1: {} obliterator@2.0.4: {} @@ -24389,14 +22879,14 @@ snapshots: dependencies: mimic-fn: 4.0.0 - oo-ascii-tree@1.98.0: {} + oo-ascii-tree@1.102.0: {} open-graph-scraper@6.5.2: dependencies: chardet: 2.0.0 - cheerio: 1.0.0-rc.12 + cheerio: 1.0.0 iconv-lite: 0.6.3 - undici: 6.18.2 + undici: 6.19.8 validator: 13.12.0 open@7.4.2: @@ -24546,6 +23036,8 @@ snapshots: p-try@2.2.0: {} + package-json-from-dist@1.0.0: {} + package-json-validator@0.6.5: dependencies: optimist: 0.6.1 @@ -24621,6 +23113,10 @@ snapshots: domhandler: 5.0.3 parse5: 7.1.2 + parse5-parser-stream@7.1.2: + dependencies: + parse5: 7.1.2 + parse5@5.1.1: {} parse5@6.0.1: {} @@ -24651,8 +23147,6 @@ snapshots: patch-console@1.0.0: {} - patch-console@2.0.0: {} - path-browserify@1.0.1: {} path-case@3.0.4: @@ -24682,7 +23176,7 @@ snapshots: path-scurry@1.11.1: dependencies: - lru-cache: 10.2.2 + lru-cache: 10.4.3 minipass: 7.1.2 path-to-regexp@0.1.7: {} @@ -24699,6 +23193,8 @@ snapshots: perfect-scrollbar@1.5.5: {} + performance-now@2.1.0: {} + pg-cloudflare@1.1.1: optional: true @@ -24738,8 +23234,6 @@ snapshots: dependencies: split2: 4.2.0 - picocolors@1.0.0: {} - picocolors@1.0.1: {} picomatch@2.3.1: {} @@ -24773,17 +23267,17 @@ snapshots: polished@4.3.1: dependencies: - '@babel/runtime': 7.24.5 + '@babel/runtime': 7.25.4 possible-typed-array-names@1.0.0: {} - postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(yaml@2.5.0): + postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(yaml@2.5.0): dependencies: - lilconfig: 3.1.1 + lilconfig: 3.1.2 optionalDependencies: jiti: 1.21.6 - postcss: 8.4.41 - tsx: 4.17.0 + postcss: 8.4.38 + tsx: 4.19.0 yaml: 2.5.0 postcss-value-parser@4.2.0: {} @@ -24794,13 +23288,6 @@ snapshots: picocolors: 1.0.1 source-map-js: 1.2.0 - postcss@8.4.41: - dependencies: - nanoid: 3.3.7 - picocolors: 1.0.1 - source-map-js: 1.2.0 - optional: true - postgres-array@2.0.0: {} postgres-bytea@1.0.0: {} @@ -24819,7 +23306,7 @@ snapshots: minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 1.0.2 - node-abi: 3.62.0 + node-abi: 3.67.0 pump: 3.0.0 rc: 1.2.8 simple-get: 4.0.1 @@ -24852,7 +23339,7 @@ snapshots: '@prisma/generator-helper': 5.3.1 '@prisma/internals': 5.3.1(encoding@0.1.13) typescript: 5.5.4 - zod: 3.23.6 + zod: 3.23.8 transitivePeerDependencies: - encoding - supports-color @@ -24907,27 +23394,12 @@ snapshots: proto-list@1.2.4: {} - proto3-json-serializer@2.0.1: + proto3-json-serializer@2.0.2: dependencies: - protobufjs: 7.2.6 + protobufjs: 7.4.0 optional: true - protobufjs@7.2.6: - dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/base64': 1.1.2 - '@protobufjs/codegen': 2.0.4 - '@protobufjs/eventemitter': 1.1.0 - '@protobufjs/fetch': 1.1.0 - '@protobufjs/float': 1.0.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/path': 1.1.2 - '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.0 - '@types/node': 20.16.1 - long: 5.2.3 - - protobufjs@7.3.2: + protobufjs@7.4.0: dependencies: '@protobufjs/aspromise': 1.1.2 '@protobufjs/base64': 1.1.2 @@ -24951,10 +23423,6 @@ snapshots: proxy-from-env@1.1.0: {} - pseudomap@1.0.2: {} - - psl@1.9.0: {} - pstree.remy@1.1.8: {} pump@3.0.0: @@ -24980,18 +23448,12 @@ snapshots: dependencies: side-channel: 1.0.6 - qs@6.12.0: - dependencies: - side-channel: 1.0.6 - qs@6.12.1: dependencies: side-channel: 1.0.6 querystring@0.2.0: {} - querystringify@2.2.0: {} - queue-microtask@1.2.3: {} quick-lru@5.1.1: {} @@ -25015,8 +23477,19 @@ snapshots: transitivePeerDependencies: - encoding + raf@3.4.1: + dependencies: + performance-now: 2.1.0 + + railroad-diagrams@1.0.0: {} + ramda@0.27.2: {} + randexp@0.4.6: + dependencies: + discontinuous-range: 1.0.0 + ret: 0.1.15 + random-bytes@1.0.0: {} range-parser@1.2.1: {} @@ -25038,7 +23511,7 @@ snapshots: react-devtools-core@4.28.5: dependencies: shell-quote: 1.8.1 - ws: 7.5.9 + ws: 7.5.10 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -25053,25 +23526,30 @@ snapshots: react-is@18.3.1: {} - react-reconciler@0.26.2(react@18.3.1): + react-reconciler@0.26.2(react@17.0.2): dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 - react: 18.3.1 + react: 17.0.2 scheduler: 0.20.2 - react-reconciler@0.29.2(react@18.3.1): + react-shallow-renderer@16.15.0(react@18.3.1): dependencies: - loose-envify: 1.4.0 + object-assign: 4.1.1 react: 18.3.1 - scheduler: 0.23.2 + react-is: 18.3.1 - react-tabs@4.3.0(react@18.3.1): + react-tabs@6.0.2(react@18.3.1): dependencies: - clsx: 1.2.1 + clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 + react@17.0.2: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react@18.3.1: dependencies: loose-envify: 1.4.0 @@ -25160,21 +23638,21 @@ snapshots: dependencies: redis-errors: 1.2.0 - redoc@2.1.4(core-js@3.38.1)(encoding@0.1.13)(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)): + redoc@2.1.5(core-js@3.38.1)(encoding@0.1.13)(enzyme@3.11.0)(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)): dependencies: - '@redocly/openapi-core': 1.12.0(encoding@0.1.13) + '@cfaester/enzyme-adapter-react-18': 0.8.0(enzyme@3.11.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@redocly/openapi-core': 1.21.1(encoding@0.1.13) classnames: 2.5.1 core-js: 3.38.1 decko: 1.2.0 - dompurify: 3.1.2 + dompurify: 3.1.6 eventemitter3: 5.0.1 - jest-environment-jsdom: 29.7.0 json-pointer: 0.6.2 lunr: 2.3.9 mark.js: 8.11.1 marked: 4.3.0 mobx: 6.13.1 - mobx-react: 7.6.0(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + mobx-react: 9.1.1(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) openapi-sampler: 1.5.1 path-browserify: 1.0.1 perfect-scrollbar: 1.5.5 @@ -25183,19 +23661,17 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-tabs: 4.3.0(react@18.3.1) + react-tabs: 6.0.2(react@18.3.1) slugify: 1.4.7 stickyfill: 1.1.1 styled-components: 6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swagger2openapi: 7.0.8(encoding@0.1.13) url-template: 2.0.8 transitivePeerDependencies: - - bufferutil - - canvas - encoding + - enzyme - react-native - supports-color - - utf-8-validate reflect-metadata@0.2.2: {} @@ -25218,7 +23694,7 @@ snapshots: relay-runtime@12.0.0(encoding@0.1.13): dependencies: - '@babel/runtime': 7.24.5 + '@babel/runtime': 7.25.4 fbjs: 3.0.5(encoding@0.1.13) invariant: 2.2.4 transitivePeerDependencies: @@ -25236,9 +23712,9 @@ snapshots: require-from-string@2.0.2: {} - require-in-the-middle@7.3.0: + require-in-the-middle@7.4.0: dependencies: - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) module-details-from-path: 1.0.3 resolve: 1.22.8 transitivePeerDependencies: @@ -25246,8 +23722,6 @@ snapshots: require-main-filename@2.0.0: {} - requires-port@1.0.0: {} - reserved-words@0.1.2: {} resolve-alpn@1.2.1: {} @@ -25266,13 +23740,13 @@ snapshots: resolve@1.22.4: dependencies: - is-core-module: 2.13.1 + is-core-module: 2.15.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 resolve@1.22.8: dependencies: - is-core-module: 2.13.1 + is-core-module: 2.15.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -25295,6 +23769,8 @@ snapshots: onetime: 5.1.2 signal-exit: 3.0.7 + ret@0.1.15: {} + retry-request@7.0.2(encoding@0.1.13): dependencies: '@types/request': 2.48.12 @@ -25313,32 +23789,32 @@ snapshots: revalidator@0.1.8: {} - rfdc@1.3.1: {} + rfdc@1.4.1: {} rimraf@3.0.2: dependencies: glob: 7.2.3 - rollup@4.21.0: + rollup@4.21.1: dependencies: '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.21.0 - '@rollup/rollup-android-arm64': 4.21.0 - '@rollup/rollup-darwin-arm64': 4.21.0 - '@rollup/rollup-darwin-x64': 4.21.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.21.0 - '@rollup/rollup-linux-arm-musleabihf': 4.21.0 - '@rollup/rollup-linux-arm64-gnu': 4.21.0 - '@rollup/rollup-linux-arm64-musl': 4.21.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.21.0 - '@rollup/rollup-linux-riscv64-gnu': 4.21.0 - '@rollup/rollup-linux-s390x-gnu': 4.21.0 - '@rollup/rollup-linux-x64-gnu': 4.21.0 - '@rollup/rollup-linux-x64-musl': 4.21.0 - '@rollup/rollup-win32-arm64-msvc': 4.21.0 - '@rollup/rollup-win32-ia32-msvc': 4.21.0 - '@rollup/rollup-win32-x64-msvc': 4.21.0 + '@rollup/rollup-android-arm-eabi': 4.21.1 + '@rollup/rollup-android-arm64': 4.21.1 + '@rollup/rollup-darwin-arm64': 4.21.1 + '@rollup/rollup-darwin-x64': 4.21.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.21.1 + '@rollup/rollup-linux-arm-musleabihf': 4.21.1 + '@rollup/rollup-linux-arm64-gnu': 4.21.1 + '@rollup/rollup-linux-arm64-musl': 4.21.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.21.1 + '@rollup/rollup-linux-riscv64-gnu': 4.21.1 + '@rollup/rollup-linux-s390x-gnu': 4.21.1 + '@rollup/rollup-linux-x64-gnu': 4.21.1 + '@rollup/rollup-linux-x64-musl': 4.21.1 + '@rollup/rollup-win32-arm64-msvc': 4.21.1 + '@rollup/rollup-win32-ia32-msvc': 4.21.1 + '@rollup/rollup-win32-x64-msvc': 4.21.1 fsevents: 2.3.3 router@1.3.8: @@ -25353,6 +23829,11 @@ snapshots: transitivePeerDependencies: - supports-color + rst-selector-parser@2.2.3: + dependencies: + lodash.flattendeep: 4.4.0 + nearley: 2.20.1 + run-async@2.4.1: {} run-async@3.0.0: {} @@ -25384,7 +23865,7 @@ snapshots: es-errors: 1.3.0 is-regex: 1.1.4 - safe-stable-stringify@2.4.3: {} + safe-stable-stringify@2.5.0: {} safer-buffer@2.1.2: {} @@ -25394,11 +23875,7 @@ snapshots: sax@1.2.1: {} - sax@1.3.0: {} - - saxes@6.0.0: - dependencies: - xmlchars: 2.2.0 + sax@1.4.1: {} scheduler@0.20.2: dependencies: @@ -25415,12 +23892,12 @@ snapshots: semantic-release-monorepo@8.0.2(semantic-release@24.1.0(typescript@5.5.4)): dependencies: - debug: 4.3.4 + debug: 4.3.6(supports-color@5.5.0) execa: 5.1.1 file-url: 3.0.0 fs-extra: 10.1.0 get-stream: 6.0.1 - git-log-parser: 1.2.0 + git-log-parser: 1.2.1 p-each-series: 2.2.0 p-limit: 3.1.0 pkg-up: 3.1.0 @@ -25440,13 +23917,13 @@ snapshots: dependencies: '@semantic-release/commit-analyzer': 13.0.0(semantic-release@24.1.0(typescript@5.5.4)) '@semantic-release/error': 4.0.0 - '@semantic-release/github': 10.1.6(semantic-release@24.1.0(typescript@5.5.4)) + '@semantic-release/github': 10.1.7(semantic-release@24.1.0(typescript@5.5.4)) '@semantic-release/npm': 12.0.1(semantic-release@24.1.0(typescript@5.5.4)) '@semantic-release/release-notes-generator': 14.0.1(semantic-release@24.1.0(typescript@5.5.4)) aggregate-error: 5.0.0 cosmiconfig: 9.0.0(typescript@5.5.4) - debug: 4.3.6 - env-ci: 11.0.0 + debug: 4.3.6(supports-color@5.5.0) + env-ci: 11.1.0 execa: 9.3.1 figures: 6.1.0 find-versions: 6.0.0 @@ -25458,7 +23935,7 @@ snapshots: lodash-es: 4.17.21 marked: 12.0.2 marked-terminal: 7.1.0(marked@12.0.2) - micromatch: 4.0.7 + micromatch: 4.0.8 p-each-series: 3.0.0 p-reduce: 3.0.0 read-package-up: 11.0.0 @@ -25617,7 +24094,7 @@ snapshots: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 - object-inspect: 1.13.1 + object-inspect: 1.13.2 signal-exit@3.0.7: {} @@ -25645,7 +24122,7 @@ snapshots: simple-update-notifier@2.0.0: dependencies: - semver: 7.6.2 + semver: 7.6.3 sisteransi@1.0.5: {} @@ -25669,16 +24146,6 @@ snapshots: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - slice-ansi@5.0.0: - dependencies: - ansi-styles: 6.2.1 - is-fullwidth-code-point: 4.0.0 - - slice-ansi@7.1.0: - dependencies: - ansi-styles: 6.2.1 - is-fullwidth-code-point: 5.0.0 - slugify@1.4.7: {} slugify@1.6.6: {} @@ -25693,7 +24160,7 @@ snapshots: socks-proxy-agent@7.0.0: dependencies: agent-base: 6.0.2 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -25701,7 +24168,7 @@ snapshots: socks-proxy-agent@8.0.4: dependencies: agent-base: 7.1.1 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -25748,16 +24215,16 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.17 + spdx-license-ids: 3.0.20 spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.17 + spdx-license-ids: 3.0.20 - spdx-license-ids@3.0.17: {} + spdx-license-ids@3.0.20: {} spdx-license-list@6.9.0: {} @@ -25785,7 +24252,7 @@ snapshots: bcrypt-pbkdf: 1.0.2 optionalDependencies: cpu-features: 0.0.2 - nan: 2.19.0 + nan: 2.20.0 ssri@10.0.6: dependencies: @@ -25835,7 +24302,7 @@ snapshots: streamroller@3.1.5: dependencies: date-format: 4.0.14 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) fs-extra: 8.1.0 transitivePeerDependencies: - supports-color @@ -25867,17 +24334,12 @@ snapshots: string-width@7.2.0: dependencies: - emoji-regex: 10.3.0 + emoji-regex: 10.4.0 get-east-asian-width: 1.2.0 strip-ansi: 7.1.0 string.prototype.repeat@0.2.0: {} - string.prototype.repeat@1.0.0: - dependencies: - define-properties: 1.2.1 - es-abstract: 1.23.3 - string.prototype.trim@1.2.9: dependencies: call-bind: 1.0.7 @@ -25938,7 +24400,7 @@ snapshots: stripe@14.24.0: dependencies: '@types/node': 20.16.1 - qs: 6.12.0 + qs: 6.12.1 striptags@3.2.0: {} @@ -25967,7 +24429,7 @@ snapshots: dependencies: '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 - glob: 10.4.1 + glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -25982,7 +24444,7 @@ snapshots: dependencies: component-emitter: 1.3.1 cookiejar: 2.1.4 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) fast-safe-stringify: 2.1.1 form-data: 4.0.0 formidable: 3.5.1 @@ -26018,7 +24480,7 @@ snapshots: has-flag: 4.0.0 supports-color: 7.2.0 - supports-hyperlinks@3.0.0: + supports-hyperlinks@3.1.0: dependencies: has-flag: 4.0.0 supports-color: 7.2.0 @@ -26031,7 +24493,7 @@ snapshots: transitivePeerDependencies: - openapi-types - swagger-ui-dist@5.17.5: {} + swagger-ui-dist@5.17.14: {} swagger2openapi@7.0.8(encoding@0.1.13): dependencies: @@ -26053,20 +24515,18 @@ snapshots: dependencies: tslib: 2.6.3 - symbol-tree@3.2.4: {} - synckit@0.9.1: dependencies: '@pkgr/core': 0.1.1 tslib: 2.6.3 - syncpack@12.4.0(typescript@5.7.0-dev.20240822): + syncpack@12.4.0(typescript@5.7.0-dev.20240827): dependencies: '@effect/schema': 0.69.0(effect@3.5.7) chalk: 5.3.0 chalk-template: 1.1.0 commander: 12.1.0 - cosmiconfig: 9.0.0(typescript@5.7.0-dev.20240822) + cosmiconfig: 9.0.0(typescript@5.7.0-dev.20240827) effect: 3.5.7 enquirer: 2.4.1 fast-check: 3.20.0 @@ -26183,7 +24643,7 @@ snapshots: dependencies: convert-hrtime: 5.0.0 - timers-ext@0.1.7: + timers-ext@0.1.8: dependencies: es5-ext: 0.10.64 next-tick: 1.1.0 @@ -26212,16 +24672,7 @@ snapshots: toidentifier@1.0.1: {} - touch@3.1.0: - dependencies: - nopt: 1.0.10 - - tough-cookie@4.1.4: - dependencies: - psl: 1.9.0 - punycode: 2.3.1 - universalify: 0.2.0 - url-parse: 1.5.10 + touch@3.1.1: {} tr46@0.0.3: {} @@ -26229,25 +24680,15 @@ snapshots: dependencies: punycode: 2.3.1 - tr46@3.0.0: - dependencies: - punycode: 2.3.1 - traverse@0.6.8: {} - traverse@0.6.9: - dependencies: - gopd: 1.0.1 - typedarray.prototype.slice: 1.0.3 - which-typed-array: 1.1.15 - tree-kill@1.2.2: {} triple-beam@1.4.1: {} truncate-utf8-bytes@1.0.2: dependencies: - utf8-byte-length: 1.0.4 + utf8-byte-length: 1.0.5 ts-algebra@1.2.2: {} @@ -26257,44 +24698,6 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.2.4(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)))(typescript@5.5.4): - dependencies: - bs-logger: 0.2.6 - ejs: 3.1.10 - fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)) - jest-util: 29.7.0 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.6.3 - typescript: 5.5.4 - yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.24.5 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.5) - - ts-jest@29.2.4(@babel/core@7.24.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.8))(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)))(typescript@5.5.4): - dependencies: - bs-logger: 0.2.6 - ejs: 3.1.10 - fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)) - jest-util: 29.7.0 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.6.3 - typescript: 5.5.4 - yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.24.8 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.8) - ts-jest@29.2.4(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(esbuild@0.23.1)(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.5.4)))(typescript@5.5.4): dependencies: bs-logger: 0.2.6 @@ -26325,8 +24728,8 @@ snapshots: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 20.16.1 - acorn: 8.11.3 - acorn-walk: 8.3.2 + acorn: 8.12.1 + acorn-walk: 8.3.3 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 @@ -26345,26 +24748,26 @@ snapshots: tsscmp@1.0.6: {} - tsup@8.2.4(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(typescript@5.5.4)(yaml@2.5.0): + tsup@8.2.4(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0): dependencies: bundle-require: 5.0.0(esbuild@0.23.1) cac: 6.7.14 chokidar: 3.6.0 consola: 3.2.3 - debug: 4.3.6 + debug: 4.3.6(supports-color@5.5.0) esbuild: 0.23.1 execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 picocolors: 1.0.1 - postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.41)(tsx@4.17.0)(yaml@2.5.0) + postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.38)(tsx@4.19.0)(yaml@2.5.0) resolve-from: 5.0.0 - rollup: 4.21.0 + rollup: 4.21.1 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tree-kill: 1.2.2 optionalDependencies: - postcss: 8.4.41 + postcss: 8.4.38 typescript: 5.5.4 transitivePeerDependencies: - jiti @@ -26372,7 +24775,7 @@ snapshots: - tsx - yaml - tsx@4.17.0: + tsx@4.19.0: dependencies: esbuild: 0.23.1 get-tsconfig: 4.7.6 @@ -26391,32 +24794,32 @@ snapshots: transitivePeerDependencies: - supports-color - turbo-darwin-64@2.0.14: + turbo-darwin-64@2.1.0: optional: true - turbo-darwin-arm64@2.0.14: + turbo-darwin-arm64@2.1.0: optional: true - turbo-linux-64@2.0.14: + turbo-linux-64@2.1.0: optional: true - turbo-linux-arm64@2.0.14: + turbo-linux-arm64@2.1.0: optional: true - turbo-windows-64@2.0.14: + turbo-windows-64@2.1.0: optional: true - turbo-windows-arm64@2.0.14: + turbo-windows-arm64@2.1.0: optional: true - turbo@2.0.14: + turbo@2.1.0: optionalDependencies: - turbo-darwin-64: 2.0.14 - turbo-darwin-arm64: 2.0.14 - turbo-linux-64: 2.0.14 - turbo-linux-arm64: 2.0.14 - turbo-windows-64: 2.0.14 - turbo-windows-arm64: 2.0.14 + turbo-darwin-64: 2.1.0 + turbo-darwin-arm64: 2.1.0 + turbo-linux-64: 2.1.0 + turbo-linux-arm64: 2.1.0 + turbo-windows-64: 2.1.0 + turbo-windows-arm64: 2.1.0 turndown@7.2.0: dependencies: @@ -26451,7 +24854,7 @@ snapshots: media-typer: 0.3.0 mime-types: 2.1.35 - type@2.7.2: {} + type@2.7.3: {} typed-array-buffer@1.0.2: dependencies: @@ -26485,22 +24888,13 @@ snapshots: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - typedarray.prototype.slice@1.0.3: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-errors: 1.3.0 - typed-array-buffer: 1.0.2 - typed-array-byte-offset: 1.0.2 - typedarray@0.0.6: {} - typescript-eslint@8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4): + typescript-eslint@8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4): dependencies: - '@typescript-eslint/eslint-plugin': 8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) - '@typescript-eslint/parser': 8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) - '@typescript-eslint/utils': 8.2.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/eslint-plugin': 8.3.0(@typescript-eslint/parser@8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/parser': 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/utils': 8.3.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: @@ -26511,9 +24905,9 @@ snapshots: typescript@5.5.4: {} - typescript@5.7.0-dev.20240822: {} + typescript@5.7.0-dev.20240827: {} - ua-parser-js@1.0.37: {} + ua-parser-js@1.0.38: {} uglify-js@3.19.2: optional: true @@ -26540,11 +24934,9 @@ snapshots: undici-types@5.26.5: {} - undici-types@6.19.6: {} - undici-types@6.19.8: {} - undici@6.18.2: {} + undici@6.19.8: {} unicode-emoji-modifier-base@1.0.0: {} @@ -26580,8 +24972,6 @@ snapshots: universalify@0.1.2: {} - universalify@0.2.0: {} - universalify@2.0.1: {} unixify@1.0.0: @@ -26593,7 +24983,7 @@ snapshots: ip: 2.0.1 make-fetch-happen: 12.0.0 murmurhash3js: 3.0.1 - semver: 7.6.2 + semver: 7.6.3 unleash-client@5.6.1: dependencies: @@ -26602,17 +24992,17 @@ snapshots: ip-address: 9.0.5 make-fetch-happen: 13.0.1 murmurhash3js: 3.0.1 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - supports-color - unleash-server@5.12.7(core-js@3.38.1)(encoding@0.1.13)(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)): + unleash-server@5.12.7(core-js@3.38.1)(encoding@0.1.13)(enzyme@3.11.0)(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)): dependencies: - '@slack/web-api': 6.12.0 - '@wesleytodd/openapi': 0.3.0(core-js@3.38.1)(encoding@0.1.13)(mobx@6.13.1)(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - ajv: 8.16.0 - ajv-formats: 2.1.1(ajv@8.16.0) - async: 3.2.5 + '@slack/web-api': 6.12.1 + '@wesleytodd/openapi': 0.3.0(core-js@3.38.1)(encoding@0.1.13)(enzyme@3.11.0)(mobx@6.13.1)(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + async: 3.2.6 bcryptjs: 2.4.3 compression: 1.7.4 connect-session-knex: 3.0.1(pg@8.12.0) @@ -26627,14 +25017,14 @@ snapshots: deepmerge: 4.3.1 errorhandler: 1.5.1 express: 4.19.2 - express-rate-limit: 7.2.0(express@4.19.2) + express-rate-limit: 7.4.0(express@4.19.2) express-session: 1.18.0 fast-json-patch: 3.1.1 hash-sum: 2.0.0 helmet: 6.2.0 http-errors: 2.0.0 ip: 2.0.1 - joi: 17.13.1 + joi: 17.13.3 js-sha256: 0.11.0 js-yaml: 4.1.0 json-diff: 1.0.6 @@ -26646,12 +25036,12 @@ snapshots: lodash.sortby: 4.7.0 log4js: 6.9.1 make-fetch-happen: 11.1.1 - memoizee: 0.4.15 + memoizee: 0.4.17 mime: 3.0.0 multer: 1.4.5-lts.1 murmurhash3js: 3.0.1 mustache: 4.2.0 - nodemailer: 6.9.13 + nodemailer: 6.9.14 openapi-types: 12.1.3 owasp-password-strength-test: 1.3.0 parse-database-url: 0.3.0 @@ -26661,7 +25051,7 @@ snapshots: prom-client: 14.2.0 response-time: 2.3.2 sanitize-filename: 1.6.3 - semver: 7.6.2 + semver: 7.6.3 serve-favicon: 2.5.0 stoppable: 1.1.0 ts-toolbelt: 9.6.0 @@ -26670,11 +25060,10 @@ snapshots: uuid: 9.0.1 transitivePeerDependencies: - better-sqlite3 - - bufferutil - - canvas - core-js - debug - encoding + - enzyme - mobx - mysql - mysql2 @@ -26686,28 +25075,14 @@ snapshots: - styled-components - supports-color - tedious - - utf-8-validate unpipe@1.0.0: {} - update-browserslist-db@1.0.15(browserslist@4.23.0): - dependencies: - browserslist: 4.23.0 - escalade: 3.1.2 - picocolors: 1.0.1 - - update-browserslist-db@1.1.0(browserslist@4.23.2): - dependencies: - browserslist: 4.23.2 - escalade: 3.1.2 - picocolors: 1.0.1 - update-browserslist-db@1.1.0(browserslist@4.23.3): dependencies: browserslist: 4.23.3 escalade: 3.1.2 picocolors: 1.0.1 - optional: true upper-case-first@2.0.2: dependencies: @@ -26725,11 +25100,6 @@ snapshots: url-join@5.0.0: {} - url-parse@1.5.10: - dependencies: - querystringify: 2.2.0 - requires-port: 1.0.0 - url-template@2.0.8: {} url@0.10.3: @@ -26741,7 +25111,11 @@ snapshots: urlpattern-polyfill@8.0.2: {} - utf8-byte-length@1.0.4: {} + use-sync-external-store@1.2.2(react@18.3.1): + dependencies: + react: 18.3.1 + + utf8-byte-length@1.0.5: {} util-deprecate@1.0.2: {} @@ -26755,6 +25129,8 @@ snapshots: utils-merge@1.0.1: {} + uuid@10.0.0: {} + uuid@3.4.0: {} uuid@8.0.0: {} @@ -26767,7 +25143,7 @@ snapshots: v8-compile-cache-lib@3.0.1: {} - v8-to-istanbul@9.2.0: + v8-to-istanbul@9.3.0: dependencies: '@jridgewell/trace-mapping': 0.3.25 '@types/istanbul-lib-coverage': 2.0.6 @@ -26780,23 +25156,17 @@ snapshots: validate-npm-package-name@5.0.1: {} - validator@13.11.0: {} - validator@13.12.0: {} value-or-promise@1.0.12: {} vary@1.1.2: {} - w3c-xmlserializer@4.0.0: - dependencies: - xml-name-validator: 4.0.0 - walker@1.0.8: dependencies: makeerror: 1.0.12 - watchpack@2.4.1: + watchpack@2.4.2: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 @@ -26807,9 +25177,9 @@ snapshots: web-streams-polyfill@3.3.3: {} - webcrypto-core@1.7.9: + webcrypto-core@1.8.0: dependencies: - '@peculiar/asn1-schema': 2.3.8 + '@peculiar/asn1-schema': 2.3.13 '@peculiar/json-schema': 1.1.12 asn1js: 3.0.5 pvtsutils: 1.3.5 @@ -26819,8 +25189,6 @@ snapshots: webidl-conversions@4.0.2: {} - webidl-conversions@7.0.0: {} - websocket-driver@0.7.4: dependencies: http-parser-js: 0.5.8 @@ -26829,16 +25197,13 @@ snapshots: websocket-extensions@0.1.4: {} - whatwg-encoding@2.0.0: + whatwg-encoding@3.1.1: dependencies: iconv-lite: 0.6.3 whatwg-mimetype@3.0.0: {} - whatwg-url@11.0.0: - dependencies: - tr46: 3.0.0 - webidl-conversions: 7.0.0 + whatwg-mimetype@4.0.0: {} whatwg-url@5.0.0: dependencies: @@ -26886,13 +25251,9 @@ snapshots: dependencies: string-width: 4.2.3 - widest-line@5.0.0: + winston-transport@4.7.1: dependencies: - string-width: 7.2.0 - - winston-transport@4.7.0: - dependencies: - logform: 2.6.0 + logform: 2.6.1 readable-stream: 3.6.2 triple-beam: 1.4.1 @@ -26909,15 +25270,15 @@ snapshots: dependencies: '@colors/colors': 1.6.0 '@dabh/diagnostics': 2.0.3 - async: 3.2.5 + async: 3.2.6 is-stream: 2.0.1 - logform: 2.6.0 + logform: 2.6.1 one-time: 1.0.0 readable-stream: 3.6.2 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 stack-trace: 0.0.10 triple-beam: 1.4.1 - winston-transport: 4.7.0 + winston-transport: 4.7.1 word-wrap@1.2.5: {} @@ -26945,12 +25306,6 @@ snapshots: string-width: 5.1.2 strip-ansi: 7.1.0 - wrap-ansi@9.0.0: - dependencies: - ansi-styles: 6.2.1 - string-width: 7.2.0 - strip-ansi: 7.1.0 - wrappy@1.0.2: {} write-file-atomic@4.0.2: @@ -26958,29 +25313,23 @@ snapshots: imurmurhash: 0.1.4 signal-exit: 3.0.7 - ws@7.5.9: {} - - ws@8.17.0: {} + ws@7.5.10: {} ws@8.18.0: {} xml-js@1.6.11: dependencies: - sax: 1.3.0 - - xml-name-validator@4.0.0: {} + sax: 1.4.1 xml2js@0.6.2: dependencies: - sax: 1.3.0 + sax: 1.2.1 xmlbuilder: 11.0.1 xmlbuilder@11.0.1: {} xmlbuilder@15.1.1: {} - xmlchars@2.2.0: {} - xstate@4.38.3: {} xtend@4.0.2: {} @@ -26989,8 +25338,6 @@ snapshots: y18n@5.0.8: {} - yallist@2.1.2: {} - yallist@3.1.1: {} yallist@4.0.0: {} @@ -26999,8 +25346,6 @@ snapshots: yaml@1.10.2: {} - yaml@2.4.2: {} - yaml@2.5.0: {} yargs-parser@18.1.3: @@ -27063,8 +25408,6 @@ snapshots: dependencies: '@types/yoga-layout': 1.9.2 - yoga-wasm-web@0.3.3: {} - z-schema@5.0.5: dependencies: lodash.get: 4.4.2 @@ -27079,6 +25422,4 @@ snapshots: compress-commons: 4.1.2 readable-stream: 3.6.2 - zod@3.23.6: {} - zod@3.23.8: {} diff --git a/servers/image-api/package.json b/servers/image-api/package.json index 27953279f..6266fbd97 100644 --- a/servers/image-api/package.json +++ b/servers/image-api/package.json @@ -27,6 +27,7 @@ "@apollo/utils.keyvadapter": "3.1.0", "@keyv/redis": "2.8.5", "@pocket-tools/apollo-utils": "workspace:*", + "@pocket-tools/image-utils": "workspace:*", "@pocket-tools/sentry": "workspace:*", "@pocket-tools/ts-logger": "workspace:*", "@sentry/node": "8.26.0", @@ -37,7 +38,6 @@ "graphql": "16.8.1", "graphql-tag": "2.12.6", "keyv": "4.5.4", - "parse-url": "9.2.0", "tslib": "2.6.3" }, "devDependencies": { @@ -55,4 +55,4 @@ "tsconfig": "workspace:*", "typescript": "5.5.4" } -} +} \ No newline at end of file diff --git a/servers/image-api/src/resolvers/index.ts b/servers/image-api/src/resolvers/index.ts index 33974f2f1..14e6d1fce 100644 --- a/servers/image-api/src/resolvers/index.ts +++ b/servers/image-api/src/resolvers/index.ts @@ -1,6 +1,6 @@ import { IContext } from '../server/context'; import { Image, CachedImageInput, CachedImage } from '../types'; -import { getOriginalUrlIfPocketImageCached } from '../pocketImageCache/utils'; +import { getOriginalUrlIfPocketImageCached } from '@pocket-tools/image-utils'; import { getPocketImageCachePath } from '../pocketImageCache'; import config from '../config'; diff --git a/servers/parser-graphql-wrapper/package.json b/servers/parser-graphql-wrapper/package.json index 4917ca019..93bb8fbaa 100644 --- a/servers/parser-graphql-wrapper/package.json +++ b/servers/parser-graphql-wrapper/package.json @@ -31,6 +31,7 @@ "@keyv/redis": "2.8.5", "@pocket-tools/apollo-utils": "workspace:*", "@pocket-tools/feature-flags-client": "workspace:*", + "@pocket-tools/image-utils": "workspace:*", "@pocket-tools/int-mask": "workspace:*", "@pocket-tools/sentry": "workspace:*", "@pocket-tools/ts-logger": "workspace:*", @@ -79,4 +80,4 @@ "tsconfig": "workspace:*", "typescript": "5.5.4" } -} +} \ No newline at end of file diff --git a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts index 008863c56..4e4c57269 100644 --- a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts +++ b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts @@ -15,7 +15,7 @@ import { PocketMetadataEntity, } from '../databases/pocketMetadataStore'; import md5 from 'md5'; - +import { getOriginalUrlIfPocketImageCached } from '@pocket-tools/image-utils'; export interface IPocketMetadataDataSource { matcher: RegExp; ttl: number; // The ttl of the data in seconds @@ -185,12 +185,13 @@ export class PocketMetadataModel { if (!collection) { return; } + const imageUrl = getOriginalUrlIfPocketImageCached(collection.imageUrl); return { id: item.id, image: { - url: collection.imageUrl, + url: imageUrl, imageId: 0, - src: collection.imageUrl, + src: imageUrl, }, excerpt: collection.excerpt, // TODO: Convert from markdown title: collection.title, @@ -222,13 +223,16 @@ export class PocketMetadataModel { if (!syndicatedArticle) { return; } + const imageUrl = getOriginalUrlIfPocketImageCached( + syndicatedArticle.mainImage, + ); return { id: item.id, image: { - url: syndicatedArticle.mainImage, + url: imageUrl, imageId: 0, - src: syndicatedArticle.mainImage, + src: imageUrl, }, excerpt: syndicatedArticle.excerpt, title: syndicatedArticle.title, From ef42716f55c5990aa7e1e01e7f27fb0fd50db878 Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Tue, 27 Aug 2024 13:29:03 -0700 Subject: [PATCH 6/9] fix(preview): adding in preview metadata --- servers/image-api/package.json | 2 +- servers/parser-graphql-wrapper/package.json | 2 +- servers/parser-graphql-wrapper/schema.graphql | 60 +++++++--- .../src/__generated__/resolvers-types.ts | 67 ++++++++--- .../src/apollo/resolvers.ts | 42 ++++++- .../src/config/index.ts | 2 + .../src/models/PocketMetadataModel.ts | 104 +++++++++++++++--- 7 files changed, 230 insertions(+), 49 deletions(-) diff --git a/servers/image-api/package.json b/servers/image-api/package.json index 6266fbd97..080a2c3cb 100644 --- a/servers/image-api/package.json +++ b/servers/image-api/package.json @@ -55,4 +55,4 @@ "tsconfig": "workspace:*", "typescript": "5.5.4" } -} \ No newline at end of file +} diff --git a/servers/parser-graphql-wrapper/package.json b/servers/parser-graphql-wrapper/package.json index 93bb8fbaa..f947dc6c4 100644 --- a/servers/parser-graphql-wrapper/package.json +++ b/servers/parser-graphql-wrapper/package.json @@ -80,4 +80,4 @@ "tsconfig": "workspace:*", "typescript": "5.5.4" } -} \ No newline at end of file +} diff --git a/servers/parser-graphql-wrapper/schema.graphql b/servers/parser-graphql-wrapper/schema.graphql index 5208de887..6e43faaaa 100644 --- a/servers/parser-graphql-wrapper/schema.graphql +++ b/servers/parser-graphql-wrapper/schema.graphql @@ -172,18 +172,20 @@ type Item "The Marticle format of the article, used by clients for native article view." marticle: [MarticleComponent!] - "The client preview/display logic for this url" + "The client preview/display logic for this url. The requires for each object should be kept in sync with the sub objects requires field." preview: PocketMetadata @requires( - fields: "syndicatedArticle { title excerpt mainImage publishedAt authorNames publisherUrl publisher { logo name } } collection { title slug excerpt publishedAt authors { name } imageUrl } " + fields: "syndicatedArticle { title excerpt mainImage publishedAt authorNames publisherUrl publisher { logo name } } collection { title slug excerpt publishedAt authors { name } imageUrl } corpusItem { title excerpt datePublished publisher image { url } }" ) - "If the item has a syndicated counterpart the syndication information" + "If the item is a syndicated article, then the syndication information" syndicatedArticle: SyndicatedArticle @external + "If the item is a collection, then the collection information" collection: Collection @external - # corpusItem: CorpusItem @external + "If the item is in the Pocket Corpus, then the corpus information" + corpusItem: CorpusItem @external } type ArticleMarkdown { @@ -477,11 +479,26 @@ extend type CorpusItem @key(fields: "url") { """ image: Image! @external + """ + The author names and sort orders associated with this CorpusItem. + """ + authors: [CorpusItemAuthor!]! @external + """ The preview of the search result """ preview: PocketMetadata! - @requires(fields: "title excerpt datePublished publisher image { url }") + @requires( + fields: "title excerpt datePublished publisher image { url } authors { name sortOrder }" + ) +} + +""" +An author associated with a CorpusItem. +""" +type CorpusItemAuthor @external { + name: String! + sortOrder: Int! } extend type Collection @key(fields: "slug") { @@ -496,6 +513,12 @@ extend type Collection @key(fields: "slug") { excerpt: Markdown @external publishedAt: DateString @external imageUrl: Url @external + + """ + The preview of the collection + """ + preview: PocketMetadata! + @requires(fields: "title excerpt publishedAt authors { name } imageUrl") } extend type CollectionAuthor @external { @@ -610,26 +633,37 @@ type CorpusSearchNode @key(fields: "url") { preview: PocketMetadata! } -extend type SyndicatedArticle @external { +extend type SyndicatedArticle @key(fields: "slug") { + "Slug that pocket uses for this article in the url" + slug: String + "Title of syndicated article" - title: String! + title: String! @external "Array of author names in string format" - authorNames: [String]! + authorNames: [String]! @external "AWSDateTime — Format: YYYY-MM-DDThh:mm:ss.sssZ" - publishedAt: String! + publishedAt: String! @external "Primary image to use in surfacing this content" - mainImage: String + mainImage: String @external "Excerpt " - excerpt: String + excerpt: String @external "The canonical publisher URL. Automatically set at time of creation but can be changed by editor." - publisherUrl: String! + publisherUrl: String! @external "The manually set publisher information for this article" - publisher: Publisher + publisher: Publisher @external + + """ + The preview of the syndicated article + """ + preview: PocketMetadata! + @requires( + fields: "title excerpt mainImage publishedAt authorNames publisherUrl publisher { logo name }" + ) } diff --git a/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts b/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts index 551d2dd0a..2cc12f427 100644 --- a/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts +++ b/servers/parser-graphql-wrapper/src/__generated__/resolvers-types.ts @@ -79,6 +79,8 @@ export type Collection = { authors: Array; excerpt?: Maybe; imageUrl?: Maybe; + /** The preview of the collection */ + preview: PocketMetadata; publishedAt?: Maybe; /** * Provides short url for the given_url in the format: https://pocket.co/. @@ -96,6 +98,8 @@ export type CollectionAuthor = { export type CorpusItem = { __typename?: 'CorpusItem'; + /** The author names and sort orders associated with this CorpusItem. */ + authors: Array; /** The publication date for this story. */ datePublished?: Maybe; /** The excerpt of the Approved Item. */ @@ -118,6 +122,13 @@ export type CorpusItem = { url: Scalars['Url']['output']; }; +/** An author associated with a CorpusItem. */ +export type CorpusItemAuthor = { + __typename?: 'CorpusItemAuthor'; + name: Scalars['String']['output']; + sortOrder: Scalars['Int']['output']; +}; + /** A node in a CorpusSearchConnection result */ export type CorpusSearchNode = { __typename?: 'CorpusSearchNode'; @@ -188,12 +199,15 @@ export type Item = { article?: Maybe; /** List of Authors involved with this article */ authors?: Maybe>>; + /** If the item is a collection, then the collection information */ collection?: Maybe; /** * The length in bytes of the content * @deprecated Clients should not use this */ contentLength?: Maybe; + /** If the item is in the Pocket Corpus, then the corpus information */ + corpusItem?: Maybe; /** The date the article was published */ datePublished?: Maybe; /** The date the parser resolved this item */ @@ -271,7 +285,7 @@ export type Item = { * @deprecated Use a domain as the identifier instead */ originDomainId?: Maybe; - /** The client preview/display logic for this url */ + /** The client preview/display logic for this url. The requires for each object should be kept in sync with the sub objects requires field. */ preview?: Maybe; /** A server generated unique reader slug for this item based on itemId */ readerSlug: Scalars['String']['output']; @@ -296,7 +310,7 @@ export type Item = { shortUrl?: Maybe; /** If the url is an Article, the text in SSML format for speaking, i.e. Listen */ ssml?: Maybe; - /** If the item has a syndicated counterpart the syndication information */ + /** If the item is a syndicated article, then the syndication information */ syndicatedArticle?: Maybe; /** * Date this item was first parsed in Pocket @@ -571,12 +585,16 @@ export type SyndicatedArticle = { excerpt?: Maybe; /** Primary image to use in surfacing this content */ mainImage?: Maybe; + /** The preview of the syndicated article */ + preview: PocketMetadata; /** AWSDateTime — Format: YYYY-MM-DDThh:mm:ss.sssZ */ publishedAt: Scalars['String']['output']; /** The manually set publisher information for this article */ publisher?: Maybe; /** The canonical publisher URL. Automatically set at time of creation but can be changed by editor. */ publisherUrl: Scalars['String']['output']; + /** Slug that pocket uses for this article in the url */ + slug?: Maybe; /** Title of syndicated article */ title: Scalars['String']['output']; }; @@ -735,9 +753,10 @@ export type ResolversTypes = ResolversObject<{ BulletedListElement: ResolverTypeWrapper; Int: ResolverTypeWrapper; CacheControlScope: CacheControlScope; - Collection: ResolverTypeWrapper; + Collection: ResolverTypeWrapper & { preview: ResolversTypes['PocketMetadata'] }>; CollectionAuthor: ResolverTypeWrapper; CorpusItem: ResolverTypeWrapper & { preview: ResolversTypes['PocketMetadata'] }>; + CorpusItemAuthor: ResolverTypeWrapper; CorpusSearchNode: ResolverTypeWrapper & { preview: ResolversTypes['PocketMetadata'] }>; Date: ResolverTypeWrapper; DateString: ResolverTypeWrapper; @@ -745,7 +764,7 @@ export type ResolversTypes = ResolversObject<{ ISOString: ResolverTypeWrapper; Image: ResolverTypeWrapper; Imageness: Imageness; - Item: ResolverTypeWrapper & { marticle?: Maybe>, preview?: Maybe }>; + Item: ResolverTypeWrapper & { collection?: Maybe, corpusItem?: Maybe, marticle?: Maybe>, preview?: Maybe, syndicatedArticle?: Maybe }>; Boolean: ResolverTypeWrapper; ItemNotFound: ResolverTypeWrapper; ItemSummary: ResolverTypeWrapper & { item?: Maybe }>; @@ -773,7 +792,7 @@ export type ResolversTypes = ResolversObject<{ ReaderFallback: ResolverTypeWrapper['ReaderFallback']>; ReaderInterstitial: ResolverTypeWrapper & { itemCard?: Maybe }>; ReaderViewResult: ResolverTypeWrapper & { fallbackPage?: Maybe }>; - SyndicatedArticle: ResolverTypeWrapper; + SyndicatedArticle: ResolverTypeWrapper & { preview: ResolversTypes['PocketMetadata'] }>; UnMarseable: ResolverTypeWrapper; Url: ResolverTypeWrapper; ValidUrl: ResolverTypeWrapper; @@ -790,16 +809,17 @@ export type ResolversParentTypes = ResolversObject<{ ID: Scalars['ID']['output']; BulletedListElement: BulletedListElement; Int: Scalars['Int']['output']; - Collection: Collection; + Collection: Omit & { preview: ResolversParentTypes['PocketMetadata'] }; CollectionAuthor: CollectionAuthor; CorpusItem: Omit & { preview: ResolversParentTypes['PocketMetadata'] }; + CorpusItemAuthor: CorpusItemAuthor; CorpusSearchNode: Omit & { preview: ResolversParentTypes['PocketMetadata'] }; Date: Scalars['Date']['output']; DateString: Scalars['DateString']['output']; DomainMetadata: DomainMetadata; ISOString: Scalars['ISOString']['output']; Image: Image; - Item: Omit & { marticle?: Maybe>, preview?: Maybe }; + Item: Omit & { collection?: Maybe, corpusItem?: Maybe, marticle?: Maybe>, preview?: Maybe, syndicatedArticle?: Maybe }; Boolean: Scalars['Boolean']['output']; ItemNotFound: ItemNotFound; ItemSummary: Omit & { item?: Maybe }; @@ -825,7 +845,7 @@ export type ResolversParentTypes = ResolversObject<{ ReaderFallback: ResolversUnionTypes['ReaderFallback']; ReaderInterstitial: Omit & { itemCard?: Maybe }; ReaderViewResult: Omit & { fallbackPage?: Maybe }; - SyndicatedArticle: SyndicatedArticle; + SyndicatedArticle: Omit & { preview: ResolversParentTypes['PocketMetadata'] }; UnMarseable: UnMarseable; Url: Scalars['Url']['output']; ValidUrl: Scalars['ValidUrl']['output']; @@ -863,6 +883,7 @@ export type CollectionResolvers & GraphQLRecursivePick, ContextType>; shortUrl?: Resolver, { __typename: 'Collection' } & GraphQLRecursivePick, ContextType>; @@ -880,7 +901,8 @@ export type CorpusItemResolvers & GraphQLRecursivePick, ContextType>; + + preview?: Resolver & GraphQLRecursivePick, ContextType>; shortUrl?: Resolver, { __typename: 'CorpusItem' } & GraphQLRecursivePick, ContextType>; timeToRead?: Resolver, { __typename: 'CorpusItem' } & GraphQLRecursivePick, ContextType>; @@ -889,6 +911,12 @@ export type CorpusItemResolvers; }>; +export type CorpusItemAuthorResolvers = ResolversObject<{ + name?: Resolver; + sortOrder?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}>; + export type CorpusSearchNodeResolvers = ResolversObject<{ __resolveReference?: ReferenceResolver, { __typename: 'CorpusSearchNode' } & GraphQLRecursivePick, ContextType>; preview?: Resolver; @@ -935,6 +963,7 @@ export type ItemResolvers>>, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; contentLength?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; + datePublished?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; dateResolved?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; domain?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; @@ -959,7 +988,7 @@ export type ItemResolvers, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; normalUrl?: Resolver | GraphQLRecursivePick), ContextType>; originDomainId?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; - preview?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick) & GraphQLRecursivePick, ContextType>; + preview?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick) & GraphQLRecursivePick, ContextType>; readerSlug?: Resolver | GraphQLRecursivePick), ContextType>; resolvedId?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; resolvedNormalUrl?: Resolver, { __typename: 'Item' } & (GraphQLRecursivePick | GraphQLRecursivePick), ContextType>; @@ -1138,13 +1167,16 @@ export type ReaderViewResultResolvers; export type SyndicatedArticleResolvers = ResolversObject<{ - authorNames?: Resolver>, ParentType, ContextType>; - excerpt?: Resolver, ParentType, ContextType>; - mainImage?: Resolver, ParentType, ContextType>; - publishedAt?: Resolver; - publisher?: Resolver, ParentType, ContextType>; - publisherUrl?: Resolver; - title?: Resolver; + __resolveReference?: ReferenceResolver, { __typename: 'SyndicatedArticle' } & GraphQLRecursivePick, ContextType>; + + + + preview?: Resolver & GraphQLRecursivePick, ContextType>; + + + + slug?: Resolver, { __typename: 'SyndicatedArticle' } & GraphQLRecursivePick, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; }>; @@ -1179,6 +1211,7 @@ export type Resolvers = ResolversObject<{ Collection?: CollectionResolvers; CollectionAuthor?: CollectionAuthorResolvers; CorpusItem?: CorpusItemResolvers; + CorpusItemAuthor?: CorpusItemAuthorResolvers; CorpusSearchNode?: CorpusSearchNodeResolvers; Date?: GraphQLScalarType; DateString?: GraphQLScalarType; diff --git a/servers/parser-graphql-wrapper/src/apollo/resolvers.ts b/servers/parser-graphql-wrapper/src/apollo/resolvers.ts index e2c0c0785..451dbfde9 100644 --- a/servers/parser-graphql-wrapper/src/apollo/resolvers.ts +++ b/servers/parser-graphql-wrapper/src/apollo/resolvers.ts @@ -9,9 +9,11 @@ import { SSMLModel } from '../models/SSMLModel'; import { fallbackPage } from '../readerView'; import { PocketDefaultScalars } from '@pocket-tools/apollo-utils'; import { + Collection, CorpusItem, Item, Resolvers, + SyndicatedArticle, Videoness, } from '../__generated__/resolvers-types'; import { BoolStringParam, MediaTypeParam } from '../datasources/ParserAPI'; @@ -35,6 +37,7 @@ export const resolvers: Resolvers = { { syndicatedArticle: item.syndicatedArticle, collection: item.collection, + corpusItem: item.corpusItem, }, ); return { @@ -56,7 +59,7 @@ export const resolvers: Resolvers = { } if ('givenUrl' in item) { - return { ...item, ...itemFromUrl(item.givenUrl, context) }; + return { ...item, ...(await itemFromUrl(item.givenUrl, context)) }; } else if ('itemId' in item) { const itemLoaderType = await context.dataLoaders.itemIdLoader.load( item.itemId, @@ -64,7 +67,7 @@ export const resolvers: Resolvers = { if (!itemLoaderType.url) { throw new Error(`No url found for itemId: ${item.itemId}`); } - return { ...item, ...itemFromUrl(itemLoaderType.url, context) }; + return { ...item, ...(await itemFromUrl(itemLoaderType.url, context)) }; } }, article: async (uncastParent, args, { dataSources }, info) => { @@ -165,8 +168,9 @@ export const resolvers: Resolvers = { context, clearCache, { - syndicatedArticle: parent.syndicatedArticle, - collection: parent.collection, + syndicatedArticle: parent.syndicatedArticle as SyndicatedArticle, + collection: parent.collection as Collection, + corpusItem: parent.corpusItem as CorpusItem, }, ); return { ...preview, item: parent as Item }; @@ -257,6 +261,36 @@ export const resolvers: Resolvers = { givenUrl: item.givenUrl, }); }, + preview: async (parent, args, context) => { + const item = await context.dataSources.parserAPI.getItemData( + `${config.shortUrl.collectionUrl}/${parent.slug}`, + ); + + const preview = + await context.dataSources.pocketMetadataModel.derivePocketMetadata( + item, + context, + false, + { collection: parent as Collection }, + ); + return { ...preview, item }; + }, + }, + SyndicatedArticle: { + preview: async (parent, args, context) => { + const item = await context.dataSources.parserAPI.getItemData( + `${config.shortUrl.syndicationUrl}/${parent.slug}`, + ); + + const preview = + await context.dataSources.pocketMetadataModel.derivePocketMetadata( + item, + context, + false, + { syndicatedArticle: parent as SyndicatedArticle }, + ); + return { ...preview, item }; + }, }, PocketMetadata: { __resolveType(parent) { diff --git a/servers/parser-graphql-wrapper/src/config/index.ts b/servers/parser-graphql-wrapper/src/config/index.ts index c4ba041ba..014c0ea45 100644 --- a/servers/parser-graphql-wrapper/src/config/index.ts +++ b/servers/parser-graphql-wrapper/src/config/index.ts @@ -58,6 +58,8 @@ export default { 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ123456789_', collectionUrl: process.env.COLLECTIONS_URL || 'https://getpocket.com/collections', + syndicationUrl: + process.env.SYNDICATION_URL || 'https://getpocket.com/explore/item', }, mysql: { host: process.env.DB_HOST || 'localhost', diff --git a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts index 4e4c57269..1a2b9ae1e 100644 --- a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts +++ b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts @@ -45,21 +45,28 @@ export class PocketMetadataModel { collection?: Collection; } = {}, ): Promise { - const { syndicatedArticle, collection } = extraData; + const { syndicatedArticle, collection, corpusItem } = extraData; const url = item.givenUrl; // the url we are going to key everything on. - const fallbackParserPocketMetadata = this.transformParserFallback(item); + const syndicatedArticlePocketMetadata = this.transformSyndicatedArticle( item, syndicatedArticle, ); - const collectionPocketMetadata = this.transformCollection(item, collection); if (syndicatedArticlePocketMetadata) { return syndicatedArticlePocketMetadata; } + + const collectionPocketMetadata = this.transformCollection(item, collection); if (collectionPocketMetadata) { return collectionPocketMetadata; } + const corpusItemMetadata = this.transformCorpusItem(item, corpusItem); + if (corpusItemMetadata) { + return corpusItemMetadata; + } + + const fallbackParserPocketMetadata = this.transformParserFallback(item); // First we filter to our sources. // We do this first because some sources could be behind a feature flag or not enabled // We also only store other data sources beyond our parser in the datastore, \ @@ -178,6 +185,12 @@ export class PocketMetadataModel { return res == null ? null : this.fromEntity(res); } + /** + * + * @param item Item object from the Graph + * @param collection Collection object from the graph + * @returns ItemSummary data to be shown to the user + */ transformCollection( item: Item, collection: Collection, @@ -205,17 +218,25 @@ export class PocketMetadataModel { logo: 'https://getpocket.com/favicon.ico', name: 'Pocket', }, - datePublished: item.datePublished - ? DateTime.fromSQL(item.datePublished, { - zone: config.mysql.tz, - }).toJSDate() - : null, + datePublished: collection.publishedAt + ? DateTime.fromISO(collection.publishedAt).toJSDate() + : item.datePublished + ? DateTime.fromSQL(item.datePublished, { + zone: config.mysql.tz, + }).toJSDate() + : null, url: item.givenUrl, source: PocketMetadataSource.Collection, __typename: 'ItemSummary', }; } + /** + * + * @param item Item object from the Graph + * @param syndicatedArticle Syndication object from the graph + * @returns ItemSummary data to be shown to the user + */ transformSyndicatedArticle( item: Item, syndicatedArticle?: SyndicatedArticle, @@ -246,17 +267,74 @@ export class PocketMetadataModel { logo: syndicatedArticle.publisher.logo, name: syndicatedArticle.publisher.name, }, - datePublished: item.datePublished - ? DateTime.fromSQL(item.datePublished, { - zone: config.mysql.tz, - }).toJSDate() - : null, + datePublished: syndicatedArticle.publishedAt + ? DateTime.fromISO(syndicatedArticle.publishedAt).toJSDate() + : item.datePublished + ? DateTime.fromSQL(item.datePublished, { + zone: config.mysql.tz, + }).toJSDate() + : null, url: item.givenUrl, source: PocketMetadataSource.Syndication, __typename: 'ItemSummary', }; } + /** + * + * @param item Item object from the Graph + * @param syndicatedArticle Syndication object from the graph + * @returns ItemSummary data to be shown to the user + */ + transformCorpusItem( + item: Item, + corpusItem?: CorpusItem, + ): ItemSummary | undefined { + if (!corpusItem) { + return; + } + const imageUrl = getOriginalUrlIfPocketImageCached(corpusItem.image.url); + + return { + id: item.id, + image: { + url: imageUrl, + imageId: 0, + src: imageUrl, + }, + excerpt: corpusItem.excerpt, + title: corpusItem.title, + authors: corpusItem.authors + .map((author) => { + return { + name: author.name, + id: author.sortOrder.toFixed(), + }; + }) + .sort((author1, author2) => + author1.id < author2.id ? -1 : author1.id > author2.id ? 1 : 0, + ), + domain: { + name: corpusItem.publisher, + }, + datePublished: corpusItem.datePublished + ? DateTime.fromISO(corpusItem.datePublished).toJSDate() + : item.datePublished + ? DateTime.fromSQL(item.datePublished, { + zone: config.mysql.tz, + }).toJSDate() + : null, + url: item.givenUrl, + source: PocketMetadataSource.CuratedCorpus, + __typename: 'ItemSummary', + }; + } + + /** + * Transforms the item into ItemSummary + * @param item The item that we need to transform + * @returns + */ transformParserFallback(item: Item): ItemSummary | undefined { return { id: item.id, From dc59e5162e113de8cd6e4e7603482359d4c4d079 Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Tue, 27 Aug 2024 13:51:16 -0700 Subject: [PATCH 7/9] fix(admin): making admin use an older schema --- .github/workflows/parser-graphql-wrapper.yml | 2 +- .../schema-admin.graphql | 556 ++++++++++++++++++ 2 files changed, 557 insertions(+), 1 deletion(-) create mode 100644 servers/parser-graphql-wrapper/schema-admin.graphql diff --git a/.github/workflows/parser-graphql-wrapper.yml b/.github/workflows/parser-graphql-wrapper.yml index f38386856..21d8af51f 100644 --- a/.github/workflows/parser-graphql-wrapper.yml +++ b/.github/workflows/parser-graphql-wrapper.yml @@ -47,7 +47,7 @@ jobs: with: federated-graph-name: pocket-admin-api graph-name: parser - schema-file-path: servers/parser-graphql-wrapper/schema.graphql + schema-file-path: servers/parser-graphql-wrapper/schema-admin.graphql prod-graph-url: https://parser-graphql-wrapper.readitlater.com dev-graph-url: https://parser-graphql-wrapper.getpocket.dev secrets: diff --git a/servers/parser-graphql-wrapper/schema-admin.graphql b/servers/parser-graphql-wrapper/schema-admin.graphql new file mode 100644 index 000000000..49ec9020e --- /dev/null +++ b/servers/parser-graphql-wrapper/schema-admin.graphql @@ -0,0 +1,556 @@ +extend schema + @link( + url: "https://specs.apollo.dev/federation/v2.0" + import: [ + "@key" + "@shareable" + "@requires" + "@external" + "@tag" + "@inaccessible" + ] + ) +"A String representing a date in the format of `yyyy-MM-dd HH:mm:ss`" +scalar DateString +""" +ISOString scalar - all datetimes fields are Typescript Date objects on this server & +returned as ISO-8601 encoded date strings (e.g. ISOString scalars) to GraphQL clients. +See Section 5.6 of the RFC 3339 profile of the ISO 8601 standard: https://www.ietf.org/rfc/rfc3339.txt. +""" +scalar ISOString + +""" +A string formatted with CommonMark markdown, +plus the strikethrough extension from GFM. +This Scalar is for documentation purposes; otherwise +not treated differently from String in the API. +""" +scalar Markdown + +"A String in the format of a url." +scalar Url +scalar ValidUrl + +enum CacheControlScope { + PUBLIC + PRIVATE +} + +""" +We need to manually implement cacheControl in the schema for now +https://stackoverflow.com/questions/52922080/how-to-implement-caching-on-apollo-server-hapi-graphql +https://github.com/apollographql/federation/issues/356 +""" +directive @cacheControl( + maxAge: Int + scope: CacheControlScope +) on FIELD_DEFINITION | OBJECT | INTERFACE + +""" +The heart of Pocket +A url and meta data related to it. +""" +type Item + @key(fields: "givenUrl") + @key(fields: "itemId") + @cacheControl(maxAge: 86400) { + "A server generated unique id for this item. Item's whose normalUrl are the same will have the same item_id. Most likely numeric, but to ensure future proofing this can be treated as a String in apps." + itemId: String! + "A server generated unique id for this item based on itemId" + id: ID! + "A server generated unique reader slug for this item based on itemId" + readerSlug: String! + """ + A normalized value of the givenUrl. + It will look like a url but is not guaranteed to be a valid url, just a unique string that is used to eliminate common duplicates. + Item's that share a normal_url should be considered the same item. For example https://getpocket.com and http://getpocket.com will be considered the same since they both normalize to http://getpocket.com + This is technically the true identity of an item, since this is what the backend uses to tell if two items are the same. + However, for the clients to use this, they would all have to ship an implementation of the normalization function that the backend has exactly. + And even if it did that, some items, some of the earliest saves, use a legacy normalize function and the client would have no way to know when to use which normalizing function. + """ + normalUrl: String! + "If available, the url to an AMP version of this article" + ampUrl: Url + """ + Provides short url for the given_url in the format: https://pocket.co/. + marked as beta because it's not ready yet for large client request. + """ + shortUrl: Url @tag(name: "beta") + "List of Authors involved with this article" + authors: [Author] + "The domain, such as 'getpocket.com' of the resolved_url" + domain: String + "Additional information about the item domain, when present, use this for displaying the domain name" + domainMetadata: DomainMetadata + "The string encoding code of this item's web page" + encoding: String + "A snippet of text from the article" + excerpt: String + "0=no images, 1=contains images, 2=is an image" + hasImage: Imageness + "0=no videos, 1=contains video, 2=is a video" + hasVideo: Videoness + "Array of images within an article" + images: [Image] + "true if the item is an article" + isArticle: Boolean + "true if the item is an index / home page, rather than a specific single piece of content" + isIndex: Boolean + "The mime type of this item's web page" + mimeType: String + "The item id of the resolved_url" + resolvedId: String + "If the givenUrl redirects (once or many times), this is the final url. Otherwise, same as givenUrl" + resolvedUrl: Url + "The title as determined by the parser." + title: String + "The page's / publisher's preferred thumbnail image" + topImageUrl: Url @deprecated(reason: "use the topImage object") + "The page's / publisher's preferred thumbnail image" + topImage: Image + "Array of videos within the item If the item is a video, this will likely just contain one video" + videos: [Video] + "Number of words in the article" + wordCount: Int + "The date the parser resolved this item" + dateResolved: DateString + "The date the article was published" + datePublished: DateString + "The detected language of the article" + language: String + "How long it will take to read the article (TODO in what time unit? and by what calculation?)" + timeToRead: Int + "Estimated time to listen to the article, in seconds" + listenDuration: Int + """ + The url as provided by the user when saving. Only http or https schemes allowed. + + CAUTION: this value will *likely* (but not always) change depending on which query is used. + itemByItemId will return the normalUrl value here (which is a bug?). itemByUrl will return + the URL value passed in to the query. As if that weren't complicated enough, sometimes + normalUrl and givenUrl are the same (but not usually). + """ + givenUrl: Url! + "Indicates that the item was stored via a different search_hash (using the old method), we'll need to look up a different id" + hasOldDupes: Boolean @deprecated(reason: "Most new items use a new hash") + "The primary database id of the domain this article is from" + domainId: String @deprecated(reason: "Use a domain as the identifier instead") + "If a the domainId is a subdomain this is the primary domain id" + originDomainId: String + @deprecated(reason: "Use a domain as the identifier instead") + "The http response code of the given url" + responseCode: Int @deprecated(reason: "Clients should not use this") + "The length in bytes of the content" + contentLength: Int @deprecated(reason: "Clients should not use this") + "Indicates if the text of the url is a redirect to another url" + innerDomainRedirect: Boolean + @deprecated(reason: "Clients should not use this") + "Indicates if the url requires a login" + loginRequired: Boolean @deprecated(reason: "Clients should not use this") + "Indicates if the parser used fallback methods" + usedFallback: Int @deprecated(reason: "Clients should not use this") + "Date this item was first parsed in Pocket" + timeFirstParsed: DateString @deprecated(reason: "Clients should not use this") + "The resolved url, but ran through the normalized function" + resolvedNormalUrl: Url @deprecated(reason: "Use the resolved url instead") + """ + The pocket HTML string of the article. + Note: Web and Android as of 3/4/2022 use the Article field, any improvements made + within MArticle for parsing will not be reflected in the article field. + When that happens, the clients will work to move to MArticle. + """ + article: String + + "If the url is an Article, the text in SSML format for speaking, i.e. Listen" + ssml: String @tag(name: "beta") + + "The Marticle format of the article, used by clients for native article view." + marticle: [MarticleComponent!] + + "The client preview/display logic for this url" + preview: PocketMetadata +} + +type ArticleMarkdown { + text: String! + images: [MarkdownImagePosition!] +} + +type MarkdownImagePosition { + index: Int! + position: Int! + """ + Fallback is to use the images field in the Item entity + """ + src: String +} + +""" +Metadata from a domain, originally populated from ClearBit +""" +type DomainMetadata @cacheControl(maxAge: 86400) { + "The name of the domain (e.g., The New York Times)" + name: String + "Url for the logo image" + logo: Url + "Url for the greyscale logo image" + logoGreyscale: Url +} + +""" +An image, typically a thumbnail or article view image for an Item +""" +type Image @cacheControl(maxAge: 86400) @key(fields: "url") { + "Absolute url to the image" + url: Url! + "A caption or description of the image" + caption: String + "A credit for the image, typically who the image belongs to / created by" + credit: String + "If known, the height of the image in px" + height: Int @shareable + "The id for placing within an Article View. Item.article will have placeholders of
where X is this id. Apps can download those images as needed and populate them in their article view." + imageId: Int! + "Absolute url to the image" + src: String! @deprecated(reason: "use url property moving forward") + "If known, the width of the image in px" + width: Int @shareable + "If the image is also a link, the destination url" + targetUrl: String +} + +enum Imageness { + "No images (v3 value is 0)" + NO_IMAGES + "Contains images (v3 value is 1)" + HAS_IMAGES + "Is an image (v3 value is 2)" + IS_IMAGE +} + +""" +A Video, typically within an Article View of an Item or if the Item is a video itself. +""" +type Video @cacheControl(maxAge: 86400) { + "If known, the height of the video in px" + height: Int + "Absolute url to the video" + src: String! + "The type of video" + type: VideoType! + "The video's id within the service defined by type" + vid: String + "The id of the video within Article View. Item.article will have placeholders of
where X is this id. Apps can download those images as needed and populate them in their article view." + videoId: Int! + "If known, the width of the video in px" + width: Int + "If known, the length of the video in seconds" + length: Int +} + +enum VideoType { + "Youtube (v3 value is 1)" + YOUTUBE + "Vimeo Link (v3 value is 2)" + VIMEO_LINK + "Vimeo Moogaloop (v3 value is 3)" + VIMEO_MOOGALOOP + "video iframe (v3 value is 4)" + VIMEO_IFRAME + "html5 (v3 value is 5)" + HTML5 + "Flash (v3 value is 6)" + FLASH + "iframe (v3 value is 7)" + IFRAME + "Brightcove (v3 value is 8)" + BRIGHTCOVE +} + +enum Videoness { + "No videos (v3 value is 0)" + NO_VIDEOS + "Contains videos (v3 value is 1)" + HAS_VIDEOS + "Is a video (v3 value is 2)" + IS_VIDEO +} + +union MarticleComponent = + | MarticleText + | Image + | MarticleDivider + | MarticleTable + | MarticleHeading + | MarticleCodeBlock + | Video + | MarticleBulletedList + | MarticleNumberedList + | MarticleBlockquote + | UnMarseable + +""" +Represents content that could not be parsed into a valid Marticle* component. +""" +type UnMarseable { + "The html that could not be parsed into a Marticle* component." + html: String! +} + +""" +A section of the article's text content, in markdown. +A subset of gfm is supported. See README.md for more information. +""" +type MarticleText { + "Markdown text content. Typically, a paragraph." + content: Markdown! +} + +type MarticleDivider { + "Always '---'; provided for convenience if building a markdown string" + content: Markdown! +} + +""" +Content in a table. +""" +type MarticleTable { + "Raw HTML representation of the table." + html: String! +} + +""" +A heading in an article, with markdown formatting. +""" +type MarticleHeading { + "Heading text, in markdown." + content: Markdown! + "Heading level. Restricted to values 1-6." + level: Int! +} + +""" +A pre formatted text in the HTML content. +""" +type MarticleCodeBlock { + "Content of a pre tag" + text: String! + "Assuming the codeblock was a programming language, this field is used to identify it." + language: Int +} + +interface ListElement { + "Row in a list." + content: Markdown! + "Zero-indexed level, for handling nested lists." + level: Int! +} + +""" +Row in a bulleted (unordered list) +""" +type BulletedListElement implements ListElement { + "Row in a list." + content: Markdown! + "Zero-indexed level, for handling nested lists." + level: Int! +} + +type NumberedListElement implements ListElement { + "Row in a list" + content: Markdown! + "Zero-indexed level, for handling nested lists." + level: Int! + "Numeric index. If a nested item, the index is zero-indexed from the first child." + index: Int! +} + +""" +Content in a bulleted (unordered) list. +""" +type MarticleBulletedList { + rows: [BulletedListElement!]! +} + +""" +Content in a bulleted (unordered) list. +""" +type MarticleNumberedList { + rows: [NumberedListElement!]! +} + +""" +Content of a blockquote +""" +type MarticleBlockquote { + "Markdown text content." + content: Markdown! +} + +""" +Information about an Author of an article or some content +""" +type Author @cacheControl(maxAge: 86400) { + "Unique id for that Author" + id: ID! + "Display name" + name: String + "A url to that Author's site" + url: String +} + +type Query { + """ + Look up Item info by a url. + """ + getItemByUrl(url: String!): Item + @cacheControl(maxAge: 86400) + @deprecated(reason: "Use itemByUrl instead") + + """ + Look up Item info by a url. + """ + itemByUrl(url: String!): Item @cacheControl(maxAge: 86400) + + """ + Resolve Reader View links which might point to SavedItems that do not + exist, aren't in the Pocket User's list, or are requested by a logged-out + user (or user without a Pocket Account). + Fetches data which clients can use to generate an appropriate fallback view + that allows users to preview the content and access the original source site. + """ + readerSlug(slug: ID!): ReaderViewResult! +} + +type Mutation { + """ + Refresh an Item's article content. + """ + refreshItemArticle(url: String!): Item! +} + +extend type CorpusItem @key(fields: "url") { + """ + Provides short url for the given_url in the format: https://pocket.co/. + marked as beta because it's not ready yet for large client request. + """ + shortUrl: Url @tag(name: "beta") + url: Url! @external + """ + Time to read in minutes. Is nullable. + """ + timeToRead: Int +} +extend type Collection @key(fields: "slug") { + """ + Provides short url for the given_url in the format: https://pocket.co/. + marked as beta because it's not ready yet for large client request. + """ + shortUrl: Url @tag(name: "beta") + slug: String! @external +} + +""" +Result for resolving a getpocket.com/read/ link. +""" +type ReaderViewResult @key(fields: "slug") { + slug: ID! + fallbackPage: ReaderFallback +} + +""" +Metadata of an Item in Pocket for preview purposes, +or an ItemNotFound result if the record does not exist. +""" +union ReaderFallback = ReaderInterstitial | ItemNotFound + +enum PocketMetadataSource { + POCKET_PARSER + OPENGRAPH + OEMBED +} + +interface PocketMetadata { + id: ID! + image: Image + excerpt: String + title: String + authors: [Author!] + domain: DomainMetadata + datePublished: ISOString + url: Url! + source: PocketMetadataSource! + item: Item +} + +type ItemSummary implements PocketMetadata { + id: ID! + image: Image + excerpt: String + title: String + authors: [Author!] + domain: DomainMetadata + datePublished: ISOString + url: Url! + source: PocketMetadataSource! + item: Item +} + +enum OEmbedType { + RICH + VIDEO + PHOTO + LINK +} + +type OEmbed implements PocketMetadata { + id: ID! + image: Image + excerpt: String + title: String + authors: [Author!] + domain: DomainMetadata + datePublished: ISOString + url: Url! + source: PocketMetadataSource! + item: Item + htmlEmbed: String + type: OEmbedType +} + +""" +Card preview data for Items resolved from reader view +(getpocket.com/read/) links. + +Should be used to create a view if Reader Mode cannot +be rendered (e.g. the link is visited by an anonymous +Pocket user, or a Pocket User that does not have the +underlying Item in their Saves). Due to legal obligations +we can only display Reader Mode for SavedItems. +""" +type ReaderInterstitial { + itemCard: PocketMetadata +} + +type ItemNotFound { + message: String +} + +type PocketShare @key(fields: "targetUrl") { + targetUrl: ValidUrl! + preview: PocketMetadata +} + +""" +A node in a CorpusSearchConnection result +""" +type CorpusSearchNode @key(fields: "url") { + """ + For federation only + """ + url: Url! @inaccessible + """ + The preview of the search result + """ + preview: PocketMetadata! +} From a8e83125c31b8fc3db5874d57afdcba24e4f5d22 Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Tue, 27 Aug 2024 14:53:27 -0700 Subject: [PATCH 8/9] feat(display): adding in test structure to sync with kat --- servers/parser-graphql-wrapper/schema.graphql | 2 +- .../src/test/queries/preview.integration.ts | 170 ++++++++++++++++++ 2 files changed, 171 insertions(+), 1 deletion(-) create mode 100644 servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts diff --git a/servers/parser-graphql-wrapper/schema.graphql b/servers/parser-graphql-wrapper/schema.graphql index 6e43faaaa..8fb79f361 100644 --- a/servers/parser-graphql-wrapper/schema.graphql +++ b/servers/parser-graphql-wrapper/schema.graphql @@ -175,7 +175,7 @@ type Item "The client preview/display logic for this url. The requires for each object should be kept in sync with the sub objects requires field." preview: PocketMetadata @requires( - fields: "syndicatedArticle { title excerpt mainImage publishedAt authorNames publisherUrl publisher { logo name } } collection { title slug excerpt publishedAt authors { name } imageUrl } corpusItem { title excerpt datePublished publisher image { url } }" + fields: "syndicatedArticle { title excerpt mainImage publishedAt authorNames publisherUrl publisher { logo name } } collection { title excerpt publishedAt authors { name } imageUrl } corpusItem { title excerpt datePublished publisher image { url } }" ) "If the item is a syndicated article, then the syndication information" diff --git a/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts b/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts new file mode 100644 index 000000000..a18a28320 --- /dev/null +++ b/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts @@ -0,0 +1,170 @@ +import { cleanAll, restore } from 'nock'; +import { getRedis } from '../../cache'; +import { startServer } from '../../apollo/server'; +import { ApolloServer } from '@apollo/server'; +import request from 'supertest'; +import { print } from 'graphql'; +import { gql } from 'graphql-tag'; +import { IContext } from '../../apollo/context'; +import { Application } from 'express'; +import { IntMask } from '@pocket-tools/int-mask'; +import { nockResponseForParser } from '../utils/parserResponse'; +import { Kysely } from 'kysely'; +import { DB } from '../../__generated__/readitlab'; +import { conn as readitlabInit } from '../../databases/readitlab'; +import { conn as sharesInit } from '../../databases/readitlaShares'; +import { clearDynamoDB, dynamoClient } from '../../datasources/dynamoClient'; +import { PocketMetadataSource } from '../../__generated__/resolvers-types'; + +//TODO: Sync with @kschelonka on how we can test this best. For now I manually tested locally and in dev. +describe.skip('preview', () => { + let app: Application; + let server: ApolloServer; + let graphQLUrl: string; + let readitlabDB: Kysely; + + const GET_PREVIEW = gql` + query display($representations: [_Any!]!) { + _entities(representations: $representations) { + ... on Item { + preview { + ... on PocketMetadata { + source + id + title + image { + url + src + } + excerpt + authors { + id + } + domain { + name + logo + } + datePublished + url + item { + id + } + } + } + } + } + } + `; + + const testUrl = 'https://getpocket.com/collections/testing'; + + const item = { + item_id: 123, + search_hash: '123455sdf', + normal_url: testUrl, + resolved_id: 123, + has_old_dupes: 0, + }; + + const parserItemId = '123'; + + const defaultExpected = { + id: 'encodedId_202cb962ac59075b964b07152d234b70', + image: null, + excerpt: null, + authors: null, + domain: { logo: null, name: 'getpocket.com' }, + datePublished: '2022-06-29T20:14:49.000Z', + url: testUrl, + item: { + id: 'encodedId_202cb962ac59075b964b07152d234b70', + }, + }; + + beforeAll(async () => { + ({ app, server, url: graphQLUrl } = await startServer(0)); + readitlabDB = readitlabInit(); + await readitlabDB.deleteFrom('items_resolver').execute(); + + //Create a seed item + await readitlabDB.insertInto('items_resolver').values([item]).execute(); + }); + + beforeEach(async () => { + jest.resetAllMocks(); + jest.restoreAllMocks(); + jest.spyOn(IntMask, 'decode').mockReturnValueOnce(123); + jest.spyOn(IntMask, 'encode').mockReturnValueOnce('encodedId'); + // flush the redis cache + await getRedis().clear(); + await clearDynamoDB(dynamoClient()); + }); + + afterAll(async () => { + await server.stop(); + await getRedis().disconnect(); + cleanAll(); + restore(); + await readitlabDB.destroy(); + await sharesInit().destroy(); + jest.restoreAllMocks(); + }); + + it.each([ + { + parserData: {}, + collection: { + __typename: 'Collection', + title: 'Super cool collection', + excerpt: 'The collection', + publishedAt: '2028-01-01', + authors: [{ name: 'Billy Joel' }], + imageUrl: 'https://thecoolimage.com', + }, + syndicatedArticle: undefined, + corpusItem: undefined, + expected: { + title: 'Super cool collection', + source: PocketMetadataSource.Collection, + }, + }, + ])( + 'should return opengraph display data if enabled', + async ({ + parserData, + collection, + syndicatedArticle, + corpusItem, + expected, + }) => { + nockResponseForParser(testUrl, { + data: { + item_id: parserItemId, + given_url: testUrl, + normal_url: testUrl, + title: 'parser test', + authors: [], + images: [], + videos: [], + resolved_id: '16822', + excerpt: null, + domainMetadata: null, + topImageUrl: null, + // override the default + ...parserData, + }, + }); + const variables = { + representations: [ + { __typename: 'Item', collection, syndicatedArticle, corpusItem }, + ], + }; + const res = await request(app) + .post(graphQLUrl) + .send({ query: print(GET_PREVIEW), variables }); + expect(res.body.data).toEqual({ + itemByUrl: { preview: { ...defaultExpected, ...expected } }, + }); + }, + ); +}); From 9b6a97f56d3caa459a171fad4bcbacbe313aac9b Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Tue, 27 Aug 2024 15:00:17 -0700 Subject: [PATCH 9/9] fix(preview): adding in markdown txt --- pnpm-lock.yaml | 17 ++ servers/parser-graphql-wrapper/package.json | 3 +- .../src/models/PocketMetadataModel.ts | 4 +- .../src/test/queries/preview.integration.ts | 170 ------------------ .../test/queries/preview.integration.ts.bak | 170 ++++++++++++++++++ 5 files changed, 192 insertions(+), 172 deletions(-) delete mode 100644 servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts create mode 100644 servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts.bak diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f3e6a68a0..9300691f5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3064,6 +3064,9 @@ importers: luxon: specifier: 3.4.4 version: 3.4.4 + markdown-to-txt: + specifier: 2.0.1 + version: 2.0.1 md5: specifier: 2.3.0 version: 2.3.0 @@ -10369,6 +10372,9 @@ packages: lodash.startcase@4.4.0: resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + lodash.unescape@4.0.1: + resolution: {integrity: sha512-DhhGRshNS1aX6s5YdBE3njCCouPgnG29ebyHvImlZzXZf2SHgt+J08DHgytTPnpywNbO1Y8mNUFyQuIDBq2JZg==} + lodash.union@4.6.0: resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} @@ -10492,6 +10498,9 @@ packages: mark.js@8.11.1: resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} + markdown-to-txt@2.0.1: + resolution: {integrity: sha512-Hsj7KTN8k1gutlLum3vosHwVZGnv8/cbYKWVkUyo/D1rzOYddbDesILebRfOsaVfjIBJank/AVOySBlHAYqfZw==} + marked-terminal@7.1.0: resolution: {integrity: sha512-+pvwa14KZL74MVXjYdPR3nSInhGhNvPce/3mqLVZT2oUvt654sL1XImFuLZ1pkA866IYZ3ikDTOFUIC7XzpZZg==} engines: {node: '>=16.0.0'} @@ -22502,6 +22511,8 @@ snapshots: lodash.startcase@4.4.0: {} + lodash.unescape@4.0.1: {} + lodash.union@4.6.0: {} lodash.uniq@4.5.0: {} @@ -22664,6 +22675,12 @@ snapshots: mark.js@8.11.1: {} + markdown-to-txt@2.0.1: + dependencies: + lodash.escape: 4.0.1 + lodash.unescape: 4.0.1 + marked: 4.3.0 + marked-terminal@7.1.0(marked@12.0.2): dependencies: ansi-escapes: 7.0.0 diff --git a/servers/parser-graphql-wrapper/package.json b/servers/parser-graphql-wrapper/package.json index f947dc6c4..ca5a2da62 100644 --- a/servers/parser-graphql-wrapper/package.json +++ b/servers/parser-graphql-wrapper/package.json @@ -49,6 +49,7 @@ "kysely": "0.27.3", "lodash": "4.17.21", "luxon": "3.4.4", + "markdown-to-txt": "2.0.1", "md5": "2.3.0", "mysql2": "3.10.3", "open-graph-scraper": "6.5.2", @@ -80,4 +81,4 @@ "tsconfig": "workspace:*", "typescript": "5.5.4" } -} +} \ No newline at end of file diff --git a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts index 1a2b9ae1e..4aba10aba 100644 --- a/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts +++ b/servers/parser-graphql-wrapper/src/models/PocketMetadataModel.ts @@ -16,6 +16,8 @@ import { } from '../databases/pocketMetadataStore'; import md5 from 'md5'; import { getOriginalUrlIfPocketImageCached } from '@pocket-tools/image-utils'; +import markdownToTxt from 'markdown-to-txt'; + export interface IPocketMetadataDataSource { matcher: RegExp; ttl: number; // The ttl of the data in seconds @@ -206,7 +208,7 @@ export class PocketMetadataModel { imageId: 0, src: imageUrl, }, - excerpt: collection.excerpt, // TODO: Convert from markdown + excerpt: markdownToTxt(collection.excerpt), title: collection.title, authors: collection.authors.map((author, index) => { return { diff --git a/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts b/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts deleted file mode 100644 index a18a28320..000000000 --- a/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts +++ /dev/null @@ -1,170 +0,0 @@ -import { cleanAll, restore } from 'nock'; -import { getRedis } from '../../cache'; -import { startServer } from '../../apollo/server'; -import { ApolloServer } from '@apollo/server'; -import request from 'supertest'; -import { print } from 'graphql'; -import { gql } from 'graphql-tag'; -import { IContext } from '../../apollo/context'; -import { Application } from 'express'; -import { IntMask } from '@pocket-tools/int-mask'; -import { nockResponseForParser } from '../utils/parserResponse'; -import { Kysely } from 'kysely'; -import { DB } from '../../__generated__/readitlab'; -import { conn as readitlabInit } from '../../databases/readitlab'; -import { conn as sharesInit } from '../../databases/readitlaShares'; -import { clearDynamoDB, dynamoClient } from '../../datasources/dynamoClient'; -import { PocketMetadataSource } from '../../__generated__/resolvers-types'; - -//TODO: Sync with @kschelonka on how we can test this best. For now I manually tested locally and in dev. -describe.skip('preview', () => { - let app: Application; - let server: ApolloServer; - let graphQLUrl: string; - let readitlabDB: Kysely; - - const GET_PREVIEW = gql` - query display($representations: [_Any!]!) { - _entities(representations: $representations) { - ... on Item { - preview { - ... on PocketMetadata { - source - id - title - image { - url - src - } - excerpt - authors { - id - } - domain { - name - logo - } - datePublished - url - item { - id - } - } - } - } - } - } - `; - - const testUrl = 'https://getpocket.com/collections/testing'; - - const item = { - item_id: 123, - search_hash: '123455sdf', - normal_url: testUrl, - resolved_id: 123, - has_old_dupes: 0, - }; - - const parserItemId = '123'; - - const defaultExpected = { - id: 'encodedId_202cb962ac59075b964b07152d234b70', - image: null, - excerpt: null, - authors: null, - domain: { logo: null, name: 'getpocket.com' }, - datePublished: '2022-06-29T20:14:49.000Z', - url: testUrl, - item: { - id: 'encodedId_202cb962ac59075b964b07152d234b70', - }, - }; - - beforeAll(async () => { - ({ app, server, url: graphQLUrl } = await startServer(0)); - readitlabDB = readitlabInit(); - await readitlabDB.deleteFrom('items_resolver').execute(); - - //Create a seed item - await readitlabDB.insertInto('items_resolver').values([item]).execute(); - }); - - beforeEach(async () => { - jest.resetAllMocks(); - jest.restoreAllMocks(); - jest.spyOn(IntMask, 'decode').mockReturnValueOnce(123); - jest.spyOn(IntMask, 'encode').mockReturnValueOnce('encodedId'); - // flush the redis cache - await getRedis().clear(); - await clearDynamoDB(dynamoClient()); - }); - - afterAll(async () => { - await server.stop(); - await getRedis().disconnect(); - cleanAll(); - restore(); - await readitlabDB.destroy(); - await sharesInit().destroy(); - jest.restoreAllMocks(); - }); - - it.each([ - { - parserData: {}, - collection: { - __typename: 'Collection', - title: 'Super cool collection', - excerpt: 'The collection', - publishedAt: '2028-01-01', - authors: [{ name: 'Billy Joel' }], - imageUrl: 'https://thecoolimage.com', - }, - syndicatedArticle: undefined, - corpusItem: undefined, - expected: { - title: 'Super cool collection', - source: PocketMetadataSource.Collection, - }, - }, - ])( - 'should return opengraph display data if enabled', - async ({ - parserData, - collection, - syndicatedArticle, - corpusItem, - expected, - }) => { - nockResponseForParser(testUrl, { - data: { - item_id: parserItemId, - given_url: testUrl, - normal_url: testUrl, - title: 'parser test', - authors: [], - images: [], - videos: [], - resolved_id: '16822', - excerpt: null, - domainMetadata: null, - topImageUrl: null, - // override the default - ...parserData, - }, - }); - const variables = { - representations: [ - { __typename: 'Item', collection, syndicatedArticle, corpusItem }, - ], - }; - const res = await request(app) - .post(graphQLUrl) - .send({ query: print(GET_PREVIEW), variables }); - expect(res.body.data).toEqual({ - itemByUrl: { preview: { ...defaultExpected, ...expected } }, - }); - }, - ); -}); diff --git a/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts.bak b/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts.bak new file mode 100644 index 000000000..06451fa50 --- /dev/null +++ b/servers/parser-graphql-wrapper/src/test/queries/preview.integration.ts.bak @@ -0,0 +1,170 @@ +// import { cleanAll, restore } from 'nock'; +// import { getRedis } from '../../cache'; +// import { startServer } from '../../apollo/server'; +// import { ApolloServer } from '@apollo/server'; +// import request from 'supertest'; +// import { print } from 'graphql'; +// import { gql } from 'graphql-tag'; +// import { IContext } from '../../apollo/context'; +// import { Application } from 'express'; +// import { IntMask } from '@pocket-tools/int-mask'; +// import { nockResponseForParser } from '../utils/parserResponse'; +// import { Kysely } from 'kysely'; +// import { DB } from '../../__generated__/readitlab'; +// import { conn as readitlabInit } from '../../databases/readitlab'; +// import { conn as sharesInit } from '../../databases/readitlaShares'; +// import { clearDynamoDB, dynamoClient } from '../../datasources/dynamoClient'; +// import { PocketMetadataSource } from '../../__generated__/resolvers-types'; + +// //TODO: Sync with @kschelonka on how we can test this best. For now I manually tested locally and in dev. +// describe.skip('preview', () => { +// let app: Application; +// let server: ApolloServer; +// let graphQLUrl: string; +// let readitlabDB: Kysely; + +// const GET_PREVIEW = gql` +// query display($representations: [_Any!]!) { +// _entities(representations: $representations) { +// ... on Item { +// preview { +// ... on PocketMetadata { +// source +// id +// title +// image { +// url +// src +// } +// excerpt +// authors { +// id +// } +// domain { +// name +// logo +// } +// datePublished +// url +// item { +// id +// } +// } +// } +// } +// } +// } +// `; + +// const testUrl = 'https://getpocket.com/collections/testing'; + +// const item = { +// item_id: 123, +// search_hash: '123455sdf', +// normal_url: testUrl, +// resolved_id: 123, +// has_old_dupes: 0, +// }; + +// const parserItemId = '123'; + +// const defaultExpected = { +// id: 'encodedId_202cb962ac59075b964b07152d234b70', +// image: null, +// excerpt: null, +// authors: null, +// domain: { logo: null, name: 'getpocket.com' }, +// datePublished: '2022-06-29T20:14:49.000Z', +// url: testUrl, +// item: { +// id: 'encodedId_202cb962ac59075b964b07152d234b70', +// }, +// }; + +// beforeAll(async () => { +// ({ app, server, url: graphQLUrl } = await startServer(0)); +// readitlabDB = readitlabInit(); +// await readitlabDB.deleteFrom('items_resolver').execute(); + +// //Create a seed item +// await readitlabDB.insertInto('items_resolver').values([item]).execute(); +// }); + +// beforeEach(async () => { +// jest.resetAllMocks(); +// jest.restoreAllMocks(); +// jest.spyOn(IntMask, 'decode').mockReturnValueOnce(123); +// jest.spyOn(IntMask, 'encode').mockReturnValueOnce('encodedId'); +// // flush the redis cache +// await getRedis().clear(); +// await clearDynamoDB(dynamoClient()); +// }); + +// afterAll(async () => { +// await server.stop(); +// await getRedis().disconnect(); +// cleanAll(); +// restore(); +// await readitlabDB.destroy(); +// await sharesInit().destroy(); +// jest.restoreAllMocks(); +// }); + +// it.each([ +// { +// parserData: {}, +// collection: { +// __typename: 'Collection', +// title: 'Super cool collection', +// excerpt: 'The collection', +// publishedAt: '2028-01-01', +// authors: [{ name: 'Billy Joel' }], +// imageUrl: 'https://thecoolimage.com', +// }, +// syndicatedArticle: undefined, +// corpusItem: undefined, +// expected: { +// title: 'Super cool collection', +// source: PocketMetadataSource.Collection, +// }, +// }, +// ])( +// 'should return opengraph display data if enabled', +// async ({ +// parserData, +// collection, +// syndicatedArticle, +// corpusItem, +// expected, +// }) => { +// nockResponseForParser(testUrl, { +// data: { +// item_id: parserItemId, +// given_url: testUrl, +// normal_url: testUrl, +// title: 'parser test', +// authors: [], +// images: [], +// videos: [], +// resolved_id: '16822', +// excerpt: null, +// domainMetadata: null, +// topImageUrl: null, +// // override the default +// ...parserData, +// }, +// }); +// const variables = { +// representations: [ +// { __typename: 'Item', collection, syndicatedArticle, corpusItem }, +// ], +// }; +// const res = await request(app) +// .post(graphQLUrl) +// .send({ query: print(GET_PREVIEW), variables }); +// expect(res.body.data).toEqual({ +// itemByUrl: { preview: { ...defaultExpected, ...expected } }, +// }); +// }, +// ); +// });