diff --git a/apps/i15-1/README.md b/apps/i15-1/README.md
index 9b036460..45788698 100644
--- a/apps/i15-1/README.md
+++ b/apps/i15-1/README.md
@@ -7,8 +7,66 @@ The initial aim of this app to provide a science facing UI for the waffle projec
To run this locally:
1. Start the devcontainer in VSCode
-2. To make sure you have the most up-to-date environment either run `pnpm install` in the container or rebuild the container (via the Ctrl+Shift+P menu in VSCode)
-3. In a terminal in this devcontainer run either:
+1. To make sure you have the most up-to-date environment either run `pnpm install` in the container or rebuild the container (via the Ctrl+Shift+P menu in VSCode)
+1. In a terminal in this devcontainer run either:
- `VITE_QUEUE_MODE=local turbo dev --filter @atlas/i15-1` if running a local queue server on http://127.0.0.1:8001, **OR**
- `turbo dev --filter @atlas/i15-1` to use mocked backends
-4. Navigate to http://localhost:5173/
+1. Navigate to http://localhost:5173/
+
+## Updating Supergraph Schema Types
+
+1. Navigate to app containing folder (i.e. `.../atlas/apps/i15-1`)
+1. Update the `supergraph.graphql` schema from most recent `supergraph.graphql` schema from https://github.com/DiamondLightSource/graph-federation/releases
+1. Generate types by running `pnpm run generate:graphql`
+
+The available types are generated based on queries detected in the documents (`[./src/**/*.ts*]`), so if a new query is added you will need to generate the types again. Type names will be automatically generated based on your query name. To use, follow the example below:
+
+1. Add a new query
+
+```ts
+import { gql } from "@apollo/client";
+
+export const myNewQuery = gql`
+ query GetSessionPlaylist($proposal: Int!, $session: Int!) {
+ instrumentSession(
+ proposalNumber: $proposal
+ instrumentSessionNumber: $session
+ ) {
+ state
+ }
+ }
+`;
+```
+
+2. Generate types by running `pnpm run generate:graphql`. This will generate a new `.generated.ts` file with the types.
+3. Use query and types in your component.
+
+```ts
+import { useQuery } from "@apollo/client/react";
+import type { TypedDocumentNode } from "@apollo/client";
+
+import { myNewQuery } from "../graphql/myNewQuery";
+import type {
+ myNewQueryVariables,
+ myNewQuery,
+} from "../graphql/getSessionPlaylistQuery.generated";
+
+const GET_EXPERIMENTS: TypedDocumentNode<
+ myNewQuery,
+ myNewQueryVariables
+> = myNewQuery;
+
+export function QueryData() {
+ const { data, loading, error } = useQuery(GET_EXPERIMENTS, {
+ variables: {
+ proposal: 44163,
+ session: 3,
+ },
+ });
+
+ if (loading) return
Loading...
;
+ if (error) return Error: {error.message}
;
+
+ return data?.instrumentSession?.state || [];
+}
+```
diff --git a/apps/i15-1/graphqlCodegen.ts b/apps/i15-1/graphqlCodegen.ts
new file mode 100644
index 00000000..4d249c9c
--- /dev/null
+++ b/apps/i15-1/graphqlCodegen.ts
@@ -0,0 +1,30 @@
+import type { CodegenConfig } from "@graphql-codegen/cli";
+
+const config: CodegenConfig = {
+ overwrite: true,
+
+ schema: "./src/graphql/supergraph.graphql",
+ documents: ["./src/**/*.{ts,tsx}"],
+ ignoreNoDocuments: true,
+
+ generates: {
+ "./src/graphql/__generated__/": {
+ plugins: ["typescript-operations"],
+ config: {
+ generateOperationTypes: false,
+ },
+ },
+
+ "./src/": {
+ preset: "near-operation-file",
+ plugins: ["typescript-operations"],
+ config: {
+ importSchemaTypesFrom: "./src/graphql/__generated__/",
+ nonOptionalTypename: true,
+ skipTypeNameForRoot: true,
+ },
+ },
+ },
+};
+
+export default config;
diff --git a/apps/i15-1/package.json b/apps/i15-1/package.json
index 3f2b1e31..bee45f7f 100644
--- a/apps/i15-1/package.json
+++ b/apps/i15-1/package.json
@@ -8,6 +8,7 @@
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
+ "generate:graphql": "graphql-codegen --config graphqlCodegen.ts",
"generate:queue": "npx @hey-api/openapi-ts -i https://raw.githubusercontent.com/DiamondLightSource/daq-queuing-service/main/docs/reference/rest_api.json -o /workspaces/atlas/apps/i15-1/generated/queue",
"test": "vitest run",
"coverage": "vitest run --coverage"
@@ -32,6 +33,9 @@
},
"devDependencies": {
"@atlas/vitest-conf": "workspace:*",
+ "@graphql-codegen/cli": "^7.1.2",
+ "@graphql-codegen/near-operation-file-preset": "^5.2.1",
+ "@graphql-codegen/typescript-operations": "^6.0.3",
"@types/react-redux": "7.1.34",
"@vitejs/plugin-react-swc": "^3.11.0",
"eslint-plugin-react-hooks": "^5.2.0",
diff --git a/apps/i15-1/src/components/ExperimentDefinitions.tsx b/apps/i15-1/src/components/ExperimentDefinitions.tsx
index ac9acdee..ba92f818 100644
--- a/apps/i15-1/src/components/ExperimentDefinitions.tsx
+++ b/apps/i15-1/src/components/ExperimentDefinitions.tsx
@@ -1,67 +1,16 @@
import { useQuery } from "@apollo/client/react";
-import { gql } from "@apollo/client";
-
import type { TypedDocumentNode } from "@apollo/client";
-type ExperimentDefinitionNode = {
- name: string;
- data: string;
-};
-
-type SampleNode = {
- name: string;
- data: string;
-};
-
-type ExperimentNode = {
- name: string;
- sample: SampleNode;
- experimentDefinition: ExperimentDefinitionNode;
-};
-
-// TODO: Autogenerate these from the schema, see https://github.com/DiamondLightSource/atlas/issues/63
-type GetExperimentQueryData = {
- instrumentSession: {
- experiments: {
- edges: {
- node: ExperimentNode;
- }[];
- };
- };
-};
-
-type GetExperimentQueryVariables = {
- proposal: number;
- session: number;
-};
+import { getSessionPlaylistQuery } from "../graphql/getSessionPlaylistQuery";
+import type {
+ GetSessionPlaylistQueryVariables,
+ GetSessionPlaylistQuery,
+} from "../graphql/getSessionPlaylistQuery.generated";
const GET_EXPERIMENTS: TypedDocumentNode<
- GetExperimentQueryData,
- GetExperimentQueryVariables
-> = gql`
- query GetSessionPlaylist($proposal: Int!, $session: Int!) {
- instrumentSession(
- proposalNumber: $proposal
- instrumentSessionNumber: $session
- ) {
- experiments {
- edges {
- node {
- name
- sample {
- name
- data
- }
- experimentDefinition {
- name
- data
- }
- }
- }
- }
- }
- }
-`;
+ GetSessionPlaylistQuery,
+ GetSessionPlaylistQueryVariables
+> = getSessionPlaylistQuery;
export function ExperimentList() {
const { data, loading, error } = useQuery(GET_EXPERIMENTS, {
@@ -74,7 +23,7 @@ export function ExperimentList() {
if (loading) return Loading...
;
if (error) return Error: {error.message}
;
- const experiments = data?.instrumentSession.experiments.edges || [];
+ const experiments = data?.instrumentSession?.experiments.edges || [];
return (
diff --git a/apps/i15-1/src/graphql/getSessionPlaylistQuery.generated.ts b/apps/i15-1/src/graphql/getSessionPlaylistQuery.generated.ts
new file mode 100644
index 00000000..2c0db079
--- /dev/null
+++ b/apps/i15-1/src/graphql/getSessionPlaylistQuery.generated.ts
@@ -0,0 +1,11 @@
+/** Internal type. DO NOT USE DIRECTLY. */
+type Exact = { [K in keyof T]: T[K] };
+/** Internal type. DO NOT USE DIRECTLY. */
+export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
+export type GetSessionPlaylistQueryVariables = Exact<{
+ proposal: number;
+ session: number;
+}>;
+
+
+export type GetSessionPlaylistQuery = { instrumentSession: { __typename: 'InstrumentSession', experiments: { __typename: 'ExperimentConnection', edges: Array<{ __typename: 'ExperimentEdge', node: { __typename: 'Experiment', name: string, sample: { __typename: 'Sample', name: string, data: unknown }, experimentDefinition: { __typename: 'ExperimentDefinition', name: string, data: unknown } } }> } } | null };
diff --git a/apps/i15-1/src/graphql/getSessionPlaylistQuery.ts b/apps/i15-1/src/graphql/getSessionPlaylistQuery.ts
new file mode 100644
index 00000000..e60f7dd6
--- /dev/null
+++ b/apps/i15-1/src/graphql/getSessionPlaylistQuery.ts
@@ -0,0 +1,26 @@
+import { gql } from "@apollo/client";
+
+export const getSessionPlaylistQuery = gql`
+ query GetSessionPlaylist($proposal: Int!, $session: Int!) {
+ instrumentSession(
+ proposalNumber: $proposal
+ instrumentSessionNumber: $session
+ ) {
+ experiments {
+ edges {
+ node {
+ name
+ sample {
+ name
+ data
+ }
+ experimentDefinition {
+ name
+ data
+ }
+ }
+ }
+ }
+ }
+ }
+`;
diff --git a/apps/i15-1/src/graphql/supergraph.graphql b/apps/i15-1/src/graphql/supergraph.graphql
new file mode 100644
index 00000000..2dc44eee
--- /dev/null
+++ b/apps/i15-1/src/graphql/supergraph.graphql
@@ -0,0 +1,1339 @@
+type Artifact {
+ """
+ The file name of the artifact
+ """
+ name: String!
+
+ """
+ The download URL for the artifact
+ """
+ url: Url!
+
+ """
+ The MIME type of the artifact data
+ """
+ mimeType: String!
+}
+
+scalar Creator
+
+"""
+Implement the DateTime scalar
+
+The input/output is a string in RFC3339 format.
+"""
+scalar DateTime
+
+"""
+The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf).
+"""
+scalar JSON
+
+"""
+A scalar that can represent any JSON Object value.
+"""
+scalar JSONObject
+
+"""
+A single log line streamed from a pod
+"""
+type LogEntry {
+ """
+ The log line content
+ """
+ content: String!
+
+ """
+ The name of the pod producing the log
+ """
+ podName: String!
+}
+
+"""
+The root mutation of the service
+"""
+type Mutation {
+ submitWorkflowTemplate(
+ name: String!
+ visit: VisitInput!
+ parameters: JSON!
+ ): Workflow!
+ instrumentSession(
+ proposalNumber: Int!
+ instrumentSessionNumber: Int!
+ ): InstrumentSessionMutations
+ createOrValidateSamples(
+ input: CreateOrValidateSampleInput!
+ ): CreateSamplesResponse!
+ createSamples(input: CreateSampleInput!): [Sample!]!
+ @deprecated(reason: "Will be replaced by createOrValidateSamples")
+ sample(sampleId: UUID!): SampleMutations
+ createExperimentDefinition(
+ input: CreateExperimentDefinitionInput!
+ ): ExperimentDefinition
+ experimentDefinition(id: UUID!): ExperimentDefinitionMutations
+}
+
+"""
+Represents Relay Node types
+"""
+union NodeValue = Workflow
+
+"""
+Information about pagination in a connection
+"""
+type PageInfo {
+ """
+ When paginating backwards, are there more items?
+ """
+ hasPreviousPage: Boolean!
+
+ """
+ When paginating forwards, are there more items?
+ """
+ hasNextPage: Boolean!
+
+ """
+ When paginating backwards, the cursor to continue.
+ """
+ startCursor: String
+
+ """
+ When paginating forwards, the cursor to continue.
+ """
+ endCursor: String
+}
+
+"""
+The root query of the service
+"""
+type Query {
+ node(id: ID!): NodeValue
+
+ """
+ Get a single [`Workflow`] by proposal, visit, and name
+ """
+ workflow(visit: VisitInput!, name: String!): Workflow!
+ workflows(
+ visit: VisitInput!
+ cursor: String
+ limit: Int
+ filter: WorkflowFilter
+ ): WorkflowConnection!
+ workflowTemplate(name: String!): WorkflowTemplate!
+ workflowTemplates(
+ cursor: String
+ limit: Int
+ filter: WorkflowTemplatesFilter
+ ): WorkflowTemplateConnection!
+
+ """
+ Get a proposal by its number
+ """
+ proposal(proposalNumber: Int!): Proposal
+
+ """
+ Get a list of proposals
+ """
+ proposals(
+ proposalCategory: String = null
+ first: Int = null
+ last: Int = null
+ after: String = null
+ before: String = null
+ ): ProposalConnection!
+
+ """
+ Get a instrument session
+ """
+ instrumentSession(
+ proposalNumber: Int!
+ instrumentSessionNumber: Int!
+ ): InstrumentSession
+
+ """
+ Get a instrument session
+ """
+ instrumentSessions(
+ proposalNumber: Int = null
+ proposalCategory: String = null
+ ): [InstrumentSession!]
+
+ """
+ Get an instrument
+ """
+ instrument(instrumentName: String!): Instrument
+
+ """
+ Get a list of instruments
+ """
+ instruments(scienceGroup: String = null): [Instrument!]!
+
+ """
+ Get an account
+ """
+ account(username: String!): Account
+
+ """
+ Get a list of samples associated with a given instrument session
+ """
+ samples(
+ first: Int!
+ instrumentSessions: [InstrumentSessionInput!] = null
+ filter: SampleFilterInput! = {
+ schemaUrl: null
+ createdTime: null
+ updatedTime: null
+ name: null
+ data: null
+ }
+ before: String = null
+ after: String = null
+ last: Int = null
+ orderBy: SampleOrder! = { name: null, createdTime: null, updatedTime: null }
+ ): SampleConnection!
+ experimentDefinition(id: UUID!): ExperimentDefinition
+ experimentDefinitions(
+ instrumentSessions: [InstrumentSessionInput!]!
+ first: Int = null
+ last: Int = null
+ after: String = null
+ before: String = null
+ ): ExperimentDefinitionConnection
+ experiment(id: UUID!): Experiment
+ experiments(
+ instrumentSessions: [InstrumentSessionInput!]!
+ first: Int = null
+ last: Int = null
+ after: String = null
+ before: String = null
+ ): ExperimentConnection
+
+ """
+ Get a sample by its id
+ """
+ sample(sampleId: UUID!): Sample
+ jsonSchema(url: String!): JSONSchema
+ jsonSchemas(type: String = null, instrument: String = null): [JSONSchema!]!
+}
+
+"""
+Supported DLS science groups
+"""
+enum ScienceGroup {
+ """
+ Macromolecular Crystallography
+ """
+ MX
+
+ """
+ Workflows Examples
+ """
+ EXAMPLES
+
+ """
+ Magnetic Materials
+ """
+ MAGNETIC_MATERIALS
+
+ """
+ Soft Condensed Matter
+ """
+ CONDENSED_MATTER
+
+ """
+ Imaging and Microscopy
+ """
+ IMAGING
+
+ """
+ Biological Cryo-Imaging
+ """
+ BIO_CRYO_IMAGING
+
+ """
+ Structures and Surfaces
+ """
+ SURFACES
+
+ """
+ Crystallography
+ """
+ CRYSTALLOGRAPHY
+
+ """
+ Spectroscopy
+ """
+ SPECTROSCOPY
+}
+
+"""
+The root mutation of the service
+"""
+type Subscription {
+ """
+ Processing to subscribe to logs for a single pod of a workflow
+ """
+ logs(visit: VisitInput!, workflowName: String!, taskId: String!): LogEntry!
+
+ """
+ Processing to subscribe to data for all workflows in a session
+ """
+ workflow(visit: VisitInput!, name: String!): Workflow!
+}
+
+type Task {
+ """
+ Unique name of the task
+ """
+ id: String!
+
+ """
+ Display name of the task
+ """
+ name: String!
+
+ """
+ Current status of a task
+ """
+ status: TaskStatus!
+
+ """
+ Parent of a task
+ """
+ depends: [String!]!
+
+ """
+ Children of a task
+ """
+ dependencies: [String!]!
+
+ """
+ Artifacts produced by a task
+ """
+ artifacts: [Artifact!]!
+
+ """
+ Node type - Pod, DAG, etc
+ """
+ stepType: String!
+
+ """
+ Start time for a task on a workflow
+ """
+ startTime: DateTime
+
+ """
+ End time for a task on a workflow
+ """
+ endTime: DateTime
+
+ """
+ A human readable message indicating details about why this step is in this condition
+ """
+ message: String
+}
+
+enum TaskStatus {
+ PENDING
+ RUNNING
+ SUCCEEDED
+ SKIPPED
+ FAILED
+ ERROR
+ OMITTED
+}
+
+scalar Template
+
+"""
+Information about where the template is stored
+"""
+type TemplateSource {
+ """
+ The URL of the GitHub repository
+ """
+ repositoryUrl: String!
+
+ """
+ The path to the template within the repository
+ """
+ path: String!
+
+ """
+ The current tracked branch of the repository
+ """
+ targetRevision: String!
+}
+
+"""
+URL is a String implementing the [URL Standard](http://url.spec.whatwg.org/)
+"""
+scalar Url
+
+"""
+A visit to an instrument as part of a session
+"""
+type Visit {
+ """
+ Project Proposal Code
+ """
+ proposalCode: String!
+
+ """
+ Project Proposal Number
+ """
+ proposalNumber: Int!
+
+ """
+ Session visit Number
+ """
+ number: Int!
+}
+
+"""
+A visit to an instrument as part of a session
+"""
+input VisitInput {
+ """
+ Project Proposal Code
+ """
+ proposalCode: String!
+
+ """
+ Project Proposal Number
+ """
+ proposalNumber: Int!
+
+ """
+ Session visit Number
+ """
+ number: Int!
+}
+
+type Workflow {
+ """
+ The unique ID derived from the visit and name
+ """
+ id: ID!
+
+ """
+ The name given to the workflow, unique within a given visit
+ """
+ name: String!
+
+ """
+ The visit the Workflow was run against
+ """
+ visit: Visit!
+
+ """
+ The current status of the workflow
+ """
+ status: WorkflowStatus
+
+ """
+ The top-level workflow parameters
+ """
+ parameters: JSONObject
+
+ """
+ The name of the template used to run the workflow
+ """
+ templateRef: String
+
+ """
+ The workflow creator
+ """
+ creator: WorkflowCreator!
+}
+
+type WorkflowConnection {
+ """
+ Information to aid in pagination.
+ """
+ pageInfo: PageInfo!
+
+ """
+ A list of edges.
+ """
+ edges: [WorkflowEdge!]!
+
+ """
+ A list of nodes.
+ """
+ nodes: [Workflow!]!
+}
+
+"""
+Information about the creator of a workflow.
+"""
+type WorkflowCreator {
+ """
+ An identifier unique to the creator of the workflow.
+ Typically this is the creator's Fed-ID.
+ """
+ creatorId: String!
+}
+
+"""
+An edge in a connection.
+"""
+type WorkflowEdge {
+ """
+ The item at the end of the edge
+ """
+ node: Workflow!
+
+ """
+ A cursor for use in pagination
+ """
+ cursor: String!
+}
+
+"""
+All tasks in the workflow have errored
+"""
+type WorkflowErroredStatus {
+ """
+ Time at which this workflow started
+ """
+ startTime: DateTime!
+
+ """
+ Time at which this workflow completed
+ """
+ endTime: DateTime!
+
+ """
+ A human readable message indicating details about why the workflow is in this condition
+ """
+ message: String
+
+ """
+ Tasks created by the workflow
+ """
+ tasks: [Task!]!
+}
+
+"""
+All tasks in the workflow have failed
+"""
+type WorkflowFailedStatus {
+ """
+ Time at which this workflow started
+ """
+ startTime: DateTime!
+
+ """
+ Time at which this workflow completed
+ """
+ endTime: DateTime!
+
+ """
+ A human readable message indicating details about why the workflow is in this condition
+ """
+ message: String
+
+ """
+ Tasks created by the workflow
+ """
+ tasks: [Task!]!
+}
+
+"""
+All the supported Workflows filters
+"""
+input WorkflowFilter {
+ """
+ The status field for a workflow
+ """
+ workflowStatusFilter: WorkflowStatusFilter
+
+ """
+ The fedid of the user who created the workflow
+ """
+ creator: Creator
+
+ """
+ The name of the workflow template
+ """
+ template: Template
+}
+
+type WorkflowPendingStatus {
+ """
+ A human readable message indicating details about why the workflow is in this condition
+ """
+ message: String
+}
+
+type WorkflowRunningStatus {
+ """
+ Time at which this workflow started
+ """
+ startTime: DateTime!
+
+ """
+ A human readable message indicating details about why the workflow is in this condition
+ """
+ message: String
+
+ """
+ Tasks created by the workflow
+ """
+ tasks: [Task!]!
+}
+
+"""
+The status of a workflow
+"""
+union WorkflowStatus =
+ | WorkflowPendingStatus
+ | WorkflowRunningStatus
+ | WorkflowSucceededStatus
+ | WorkflowFailedStatus
+ | WorkflowErroredStatus
+
+"""
+Represents workflow status filters
+"""
+input WorkflowStatusFilter {
+ pending: Boolean! = false
+ running: Boolean! = false
+ succeeded: Boolean! = false
+ failed: Boolean! = false
+ error: Boolean! = false
+}
+
+"""
+All tasks in the workflow have succeded
+"""
+type WorkflowSucceededStatus {
+ """
+ Time at which this workflow started
+ """
+ startTime: DateTime!
+
+ """
+ Time at which this workflow completed
+ """
+ endTime: DateTime!
+
+ """
+ A human readable message indicating details about why the workflow is in this condition
+ """
+ message: String
+
+ """
+ Tasks created by the workflow
+ """
+ tasks: [Task!]!
+}
+
+type WorkflowTemplate {
+ """
+ The name given to the workflow template, globally unique
+ """
+ name: String!
+
+ """
+ The group who maintains the workflow template
+ """
+ maintainer: String!
+
+ """
+ A human readable title for the workflow template
+ """
+ title: String
+
+ """
+ A human readable description of the workflow which is created
+ """
+ description: String
+
+ """
+ The repository storing the code associated with this template.
+ """
+ repository: String
+
+ """
+ A JSON Schema describing the arguments of a Workflow Template
+ """
+ arguments: JSON!
+
+ """
+ A JSON Forms UI Schema describing how to render the arguments of the Workflow Template
+ """
+ uiSchema: JSON
+
+ """
+ Information about where the template is obtained from
+ """
+ templateSource: TemplateSource
+}
+
+type WorkflowTemplateConnection {
+ """
+ Information to aid in pagination.
+ """
+ pageInfo: PageInfo!
+
+ """
+ A list of edges.
+ """
+ edges: [WorkflowTemplateEdge!]!
+
+ """
+ A list of nodes.
+ """
+ nodes: [WorkflowTemplate!]!
+}
+
+"""
+An edge in a connection.
+"""
+type WorkflowTemplateEdge {
+ """
+ The item at the end of the edge
+ """
+ node: WorkflowTemplate!
+
+ """
+ A cursor for use in pagination
+ """
+ cursor: String!
+}
+
+"""
+Supported label filters for ClusterWorkflowTemplates
+"""
+input WorkflowTemplatesFilter {
+ """
+ The science group owning the template eg imaging
+ """
+ scienceGroup: [ScienceGroup!]
+}
+
+type Account {
+ accountId: Int!
+ username: String!
+ emailAddress: String
+ title: String
+ givenName: String
+ familyName: String
+ type: AccountType!
+ state: AccountState!
+ proposalRoles: [ProposalAccount!]!
+ instrumentSessionRoles: [InstrumentSessionRole!]!
+}
+
+enum AccountState {
+ enabled
+ disabled
+}
+
+enum AccountType {
+ user
+ staff
+ functional
+}
+
+type Instrument {
+ name: String!
+ scienceGroup: String
+ description: String
+ proposals: [Proposal!]!
+ instrumentSessions: [InstrumentSession!]!
+}
+
+type InstrumentSession {
+ instrumentSessionId: Int!
+ instrumentSessionNumber: Int!
+ startTime: DateTime
+ endTime: DateTime
+ type: String
+ state: String
+ riskRating: String
+ proposal: Proposal
+ instrument: Instrument!
+ roles: [InstrumentSessionRole!]!
+
+ """
+ Samples associated with a given instrument session
+ """
+ samples(
+ first: Int!
+ filter: SampleFilterInput! = {
+ schemaUrl: null
+ createdTime: null
+ updatedTime: null
+ name: null
+ data: null
+ }
+ before: String = null
+ after: String = null
+ last: Int = null
+ orderBy: SampleOrder! = { name: null, createdTime: null, updatedTime: null }
+ ): SampleConnection!
+
+ """
+ Experiment Definitions
+ """
+ experimentDefinitions(
+ first: Int = null
+ last: Int = null
+ after: String = null
+ before: String = null
+ ): ExperimentDefinitionConnection!
+
+ """
+ Experiments associated with this session
+ """
+ experiments(
+ first: Int = null
+ last: Int = null
+ after: String = null
+ before: String = null
+ ): ExperimentConnection!
+}
+
+type InstrumentSessionMutations {
+ instrumentSessionNumber: Int!
+ proposalNumber: Int!
+
+ """
+ Create or validate samples associated with this instrument session
+ """
+ createOrValidateSamples(
+ input: CreateOrValidateSampleInputBase!
+ ): CreateSamplesResponse!
+ experiments: [Experiment!]!
+}
+
+type InstrumentSessionRole {
+ instrumentSession: InstrumentSession!
+ account: Account!
+ role: String!
+ onSite: Boolean!
+}
+
+type Proposal {
+ proposalNumber: Int!
+ proposalCategory: String
+ title: String
+ summary: String
+ state: ProposalState!
+ instrumentSessions: [InstrumentSession!]!
+ instruments: [Instrument!]!
+ roles: [ProposalAccount!]!
+}
+
+type ProposalAccount {
+ proposal: Proposal!
+ account: Account!
+ role: String!
+}
+
+type ProposalConnection {
+ edges: [ProposalEdge!]!
+ pageInfo: PageInfo!
+}
+
+type ProposalEdge {
+ cursor: String!
+ node: Proposal!
+}
+
+enum ProposalState {
+ Open
+ Closed
+ Cancelled
+}
+
+input AddSampleEventInput {
+ description: String!
+}
+
+input CreateOrValidateSampleInput {
+ """
+ URL of the JSON schema the samples' `data` should be validated against
+ """
+ dataSchemaUrl: String!
+
+ """
+ Samples to be created
+ """
+ samples: [SampleIn!]!
+
+ """
+ Whether or not the provided samples should only be validated and not created
+ """
+ validateOnly: Boolean! = false
+
+ """
+ Number of the proposal the samples should be associated with
+ """
+ proposalNumber: Int!
+
+ """
+ Number of the instrument session the samples should be associated with
+ """
+ instrumentSessionNumber: Int!
+}
+
+input CreateOrValidateSampleInputBase {
+ """
+ URL of the JSON schema the samples' `data` should be validated against
+ """
+ dataSchemaUrl: String!
+
+ """
+ Samples to be created
+ """
+ samples: [SampleIn!]!
+
+ """
+ Whether or not the provided samples should only be validated and not created
+ """
+ validateOnly: Boolean! = false
+}
+
+input CreateSampleInput {
+ proposalNumber: Int!
+ instrumentSessionNumber: Int!
+ samples: [SampleInLegacy!]!
+ validateOnly: Boolean! = false
+}
+
+"""
+Return type when creating or validating samples
+"""
+type CreateSamplesResponse {
+ """
+ Whether the operation has succeeded without validation errors
+ """
+ success: Boolean!
+
+ """
+ Samples that have been created
+ """
+ samples: [Sample!]!
+
+ """
+ Errors that occurred during sample validation
+ """
+ errors: [SampleValidationError!]!
+}
+
+input DatetimeOperatorInput {
+ """
+ Will filter to items where the `DateTime` field is greater than (i.e. after) the provided value
+ """
+ gt: DateTime = null
+
+ """
+ Will filter to items where the `DateTime` field is less than (i.e. before) the provided value
+ """
+ lt: DateTime = null
+}
+
+"""
+The details of sample validation error
+"""
+type ErrorDetails {
+ """
+ The type of error that occurred
+ """
+ type: String!
+
+ """
+ Tuple of strings identifying where in the sample schema the error occurred.
+ """
+ location: [String!]!
+
+ """
+ A human readable error message.
+ """
+ message: String!
+}
+
+type InstrumentSessionConnection {
+ edges: [InstrumentSessionEdge!]!
+ pageInfo: PageInfo!
+}
+
+type InstrumentSessionEdge {
+ cursor: String!
+ node: InstrumentSession!
+}
+
+input InstrumentSessionInput {
+ proposalNumber: Int!
+ instrumentSessionNumber: Int!
+}
+
+"""
+Currently receiving an error when generating types: input JSONOperator @oneOf
+"""
+input JSONOperator @oneOf {
+ stringOperator: StringOperatorInput
+ datetimeOperator: DatetimeOperatorInput
+ numericOperator: NumericOperatorInput
+}
+
+input JSONOperatorInput {
+ """
+ A JSON path specifying the value to filter. Must start with '$.'
+ """
+ path: String!
+
+ """
+ The operator to apply to the JSON field
+ """
+ operator: JSONOperator!
+}
+
+input NumericOperatorInput {
+ """
+ Will filter to items where the numeric field is greater than the provided value
+ """
+ gt: Float = null
+
+ """
+ Will filter to items where the numeric field is less than the provided value
+ """
+ lt: Float = null
+}
+
+type Sample {
+ id: UUID!
+ name: String!
+ data: JSON!
+ createdTime: DateTime!
+ updatedTime: DateTime!
+ dataSchemaUrl: String!
+
+ """
+ Samples from which this sample is derived
+ """
+ parents(
+ first: Int = null
+ before: String = null
+ after: String = null
+ last: Int = null
+ ): SampleConnection!
+
+ """
+ Samples derived from this sample
+ """
+ children(
+ first: Int = null
+ before: String = null
+ after: String = null
+ last: Int = null
+ ): SampleConnection!
+
+ """
+ Events linked to this sample
+ """
+ events(
+ first: Int = null
+ before: String = null
+ after: String = null
+ last: Int = null
+ ): SampleEventConnection!
+
+ """
+ The JSON schema that the sample's `data` conforms to
+ """
+ dataSchema: JSON!
+
+ """
+ The instrument sessions that this sample is associated with
+ """
+ instrumentSessions: InstrumentSessionConnection!
+ images: [SampleImage!]!
+}
+
+type SampleConnection {
+ edges: [SampleEdge!]!
+ pageInfo: PageInfo!
+}
+
+type SampleEdge {
+ cursor: String!
+ node: Sample!
+}
+
+type SampleEvent {
+ id: UUID!
+ timestamp: DateTime!
+ description: String!
+}
+
+type SampleEventConnection {
+ edges: [SampleEventEdge!]!
+ pageInfo: PageInfo!
+}
+
+type SampleEventEdge {
+ cursor: String!
+ node: SampleEvent!
+}
+
+input SampleFilterInput {
+ """
+ Filter on the `schemaUrl` field of `Sample`
+ """
+ schemaUrl: StringOperatorInput = null
+
+ """
+ Filter on the `createdTime` field of `Sample`
+ """
+ createdTime: DatetimeOperatorInput = null
+
+ """
+ Filter on the `createdTime` field of `Sample`
+ """
+ updatedTime: DatetimeOperatorInput = null
+
+ """
+ Filter on the `name` field of `Sample`
+ """
+ name: StringOperatorInput = null
+
+ """
+ Filter on the `data` field of `Sample`
+ """
+ data: [JSONOperatorInput!] = null
+}
+
+type SampleImage {
+ url: String!
+ filename: String!
+}
+
+input SampleIn {
+ """
+ Name of the sample
+ """
+ name: String!
+
+ """
+ Data of the sample
+ """
+ data: JSON!
+}
+
+input SampleInLegacy {
+ name: String!
+ data: JSON!
+ dataSchemaUrl: String!
+ parentIds: [Int!] = null
+ children: [SampleInLegacy!] = null
+}
+
+type SampleMutations {
+ sampleId: UUID!
+ linkInstrumentSessionToSample(
+ proposalNumber: Int!
+ instrumentSessionNumber: Int!
+ ): Void
+ addSampleEvent(sampleEvent: AddSampleEventInput!): SampleEvent!
+ createSampleImageUploadUrl(
+ filename: String!
+ contentType: String!
+ contentLength: Int!
+ ): String!
+}
+
+input SampleOrder {
+ name: SortingOrder = null
+ createdTime: SortingOrder = null
+ updatedTime: SortingOrder = null
+}
+
+"""
+The details of errors occurred when validating a sample
+"""
+type SampleValidationError {
+ """
+ The index of the sample in CreateSampleInput.samples for which the error occurred
+ """
+ index: Int!
+
+ """
+ Errors that occurred when validating the sample
+ """
+ errors: [ErrorDetails!]!
+}
+
+enum SortingOrder {
+ ASC
+ DESC
+}
+
+"""
+Conditions used to filter results based on the value of a String field
+"""
+input StringOperatorInput {
+ """
+ Will filter to items where the `String` field is equal to the provided value
+ """
+ eq: String = null
+
+ """
+ Will filter to items where the `String` field is not equal to the provided value
+ """
+ ne: String = null
+
+ """
+ Will filter to items where the `String` field is a member of the provided value
+ """
+ in: [String!] = null
+
+ """
+ Will filter to items where the `String` field is not a member of the provided value
+ """
+ nin: [String!] = null
+
+ """
+ Will filter to items where the `String` field is contains the provided value
+ """
+ contains: String = null
+}
+
+scalar UUID
+
+"""
+Represents NULL values
+"""
+scalar Void
+
+"""
+Values required to create an experiment definition
+"""
+input CreateExperimentDefinitionInput {
+ name: String!
+ data: JSON!
+ dataSchemaUrl: String!
+ proposalNumber: Int!
+ instrumentSessionNumber: Int!
+}
+
+"""
+Values required for the createExperiments mutation
+"""
+input CreateExperimentsInput {
+ experiments: [ExperimentInput!]!
+}
+
+type Experiment {
+ id: UUID!
+ name: String!
+ createdTime: DateTime!
+ updatedTime: DateTime!
+ experimentDefinition: ExperimentDefinition!
+
+ """
+ The sample that this experiment is associated with
+ """
+ sample: Sample!
+}
+
+type ExperimentConnection {
+ edges: [ExperimentEdge!]!
+ pageInfo: PageInfo!
+}
+
+type ExperimentDefinition {
+ id: UUID!
+ name: String!
+ createdTime: DateTime!
+ updatedTime: DateTime!
+ data: JSON!
+ dataSchemaUrl: String!
+ proposalNumber: Int!
+ instrumentSessionNumber: Int!
+
+ """
+ The instrument session that this experiment definition is associated with
+ """
+ instrumentSession: InstrumentSession!
+
+ """
+ Experiments associated with this experiment definition
+ """
+ experiments: [Experiment!]!
+}
+
+type ExperimentDefinitionConnection {
+ edges: [ExperimentDefinitionEdge!]!
+ pageInfo: PageInfo!
+}
+
+type ExperimentDefinitionEdge {
+ cursor: String!
+ node: ExperimentDefinition!
+}
+
+"""
+Mutations for a given experiment defintion
+"""
+type ExperimentDefinitionMutations {
+ createExperiments(input: CreateExperimentsInput!): [Experiment!]!
+}
+
+type ExperimentEdge {
+ cursor: String!
+ node: Experiment!
+}
+
+"""
+Values required to create an experiment
+"""
+input ExperimentInput {
+ name: String!
+ sampleId: UUID!
+}
+
+"""
+A JSON schema
+"""
+type JSONSchema {
+ """
+ The identifier of the schema
+ """
+ id: String!
+
+ """
+ A URL from which the schema can be accessed
+ """
+ url: String!
+
+ """
+ The type of object the shema describes (if known)
+ """
+ type: String
+
+ """
+ The title of the schema
+ """
+ title: String
+
+ """
+ The version of the schema
+ """
+ version: String
+
+ """
+ The instrument the schema was created for
+ """
+ instrument: String
+
+ """
+ The description og the schema
+ """
+ description: String
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 43ba016b..62702b06 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -26,10 +26,10 @@ importers:
version: 18.3.7(@types/react@18.3.28)
'@vitest/coverage-v8':
specifier: ^4.0.13
- version: 4.0.18(vitest@4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0))
+ version: 4.0.18(vitest@4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0))
eslint:
specifier: ^9.36.0
- version: 9.39.3
+ version: 9.39.3(jiti@2.7.0)
prettier:
specifier: ^3.6.2
version: 3.8.1
@@ -44,16 +44,16 @@ importers:
version: 5.9.3
typescript-eslint:
specifier: ^8.44.1
- version: 8.56.1(eslint@9.39.3)(typescript@5.9.3)
+ version: 8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)
vitest:
specifier: ^4.0.13
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
apps/i15-1:
dependencies:
'@apollo/client':
specifier: ^4.2.3
- version: 4.2.3(graphql@16.14.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.2)
+ version: 4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)))(graphql@16.14.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.2)
'@atlas/app-shell':
specifier: workspace:*
version: link:../../packages/app-shell
@@ -103,18 +103,27 @@ importers:
'@atlas/vitest-conf':
specifier: workspace:*
version: link:../../packages/vitest-conf
+ '@graphql-codegen/cli':
+ specifier: ^7.1.2
+ version: 7.1.2(@types/node@25.9.2)(bufferutil@4.1.0)(graphql@16.14.2)(typescript@5.9.3)(utf-8-validate@5.0.10)
+ '@graphql-codegen/near-operation-file-preset':
+ specifier: ^5.2.1
+ version: 5.2.1(graphql@16.14.2)
+ '@graphql-codegen/typescript-operations':
+ specifier: ^6.0.3
+ version: 6.0.3(graphql@16.14.2)
'@types/react-redux':
specifier: 7.1.34
version: 7.1.34
'@vitejs/plugin-react-swc':
specifier: ^3.11.0
- version: 3.11.0(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))
+ version: 3.11.0(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))
eslint-plugin-react-hooks:
specifier: ^5.2.0
- version: 5.2.0(eslint@9.39.3)
+ version: 5.2.0(eslint@9.39.3(jiti@2.7.0))
eslint-plugin-react-refresh:
specifier: ^0.4.26
- version: 0.4.26(eslint@9.39.3)
+ version: 0.4.26(eslint@9.39.3(jiti@2.7.0))
get-graphql-schema:
specifier: ^2.1.2
version: 2.1.2
@@ -135,13 +144,13 @@ importers:
version: 5.9.3
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.9.2)(terser@5.48.0)
+ version: 7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
vite-plugin-relay:
specifier: ^2.1.0
- version: 2.1.0(babel-plugin-relay@20.1.1)(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))
+ version: 2.1.0(babel-plugin-relay@20.1.1)(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))
vitest:
specifier: ^4.0.18
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
apps/p99:
dependencies:
@@ -177,7 +186,7 @@ importers:
version: 2.12.10(@types/node@25.9.2)(typescript@5.9.3)
vite-plugin-relay:
specifier: ^2.1.0
- version: 2.1.0(babel-plugin-relay@20.1.1)(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))
+ version: 2.1.0(babel-plugin-relay@20.1.1)(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))
devDependencies:
'@atlas/vitest-conf':
specifier: workspace:*
@@ -187,13 +196,13 @@ importers:
version: 9.39.3
'@vitejs/plugin-react-swc':
specifier: ^3.11.0
- version: 3.11.0(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))
+ version: 3.11.0(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))
eslint-plugin-react-hooks:
specifier: ^5.2.0
- version: 5.2.0(eslint@9.39.3)
+ version: 5.2.0(eslint@9.39.3(jiti@2.7.0))
eslint-plugin-react-refresh:
specifier: ^0.4.20
- version: 0.4.26(eslint@9.39.3)
+ version: 0.4.26(eslint@9.39.3(jiti@2.7.0))
globals:
specifier: ^16.3.0
version: 16.5.0
@@ -202,10 +211,10 @@ importers:
version: 7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
vite:
specifier: ^7.1.2
- version: 7.3.1(@types/node@25.9.2)(terser@5.48.0)
+ version: 7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
vitest:
specifier: '*'
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
apps/visr:
dependencies:
@@ -293,7 +302,7 @@ importers:
version: 0.164.1
'@vitejs/plugin-react-swc':
specifier: ^3.11.0
- version: 3.11.0(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))
+ version: 3.11.0(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))
ajv:
specifier: ^8.17.1
version: 8.18.0
@@ -302,10 +311,10 @@ importers:
version: 20.1.1
eslint-plugin-react-hooks:
specifier: ^5.2.0
- version: 5.2.0(eslint@9.39.3)
+ version: 5.2.0(eslint@9.39.3(jiti@2.7.0))
eslint-plugin-react-refresh:
specifier: ^0.4.20
- version: 0.4.26(eslint@9.39.3)
+ version: 0.4.26(eslint@9.39.3(jiti@2.7.0))
globals:
specifier: ^16.3.0
version: 16.5.0
@@ -323,13 +332,13 @@ importers:
version: 20.1.1
vite:
specifier: ^7.1.2
- version: 7.3.1(@types/node@25.9.2)(terser@5.48.0)
+ version: 7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
vite-plugin-relay:
specifier: ^2.1.0
- version: 2.1.0(babel-plugin-relay@20.1.1)(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))
+ version: 2.1.0(babel-plugin-relay@20.1.1)(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))
vitest:
specifier: '*'
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
packages/app-shell:
dependencies:
@@ -351,7 +360,7 @@ importers:
version: 1.17.0(react@18.3.1)
vitest:
specifier: '*'
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
packages/blueapi:
dependencies:
@@ -364,7 +373,7 @@ importers:
version: link:../vitest-conf
vitest:
specifier: '*'
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
packages/blueapi-query:
dependencies:
@@ -380,7 +389,7 @@ importers:
version: link:../vitest-conf
vitest:
specifier: '*'
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
packages/blueapi-ui:
dependencies:
@@ -414,7 +423,7 @@ importers:
version: 6.5.0(@emotion/react@11.14.0(@types/react@18.3.28)(react@18.3.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.28)(react@18.3.1))(@types/react@18.3.28)(react@18.3.1))(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
vitest:
specifier: '*'
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
packages/pvws-config:
dependencies:
@@ -433,13 +442,13 @@ importers:
version: link:../vitest-conf
vitest:
specifier: '*'
- version: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
packages/vitest-conf:
dependencies:
vitest:
specifier: '*'
- version: 4.0.18(@types/node@25.3.3)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.3.3)(typescript@5.9.3))(terser@5.48.0)
+ version: 4.0.18(@types/node@25.3.3)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.3.3)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
devDependencies:
'@testing-library/dom':
specifier: ^10.4.1
@@ -484,6 +493,11 @@ packages:
subscriptions-transport-ws:
optional: true
+ '@ardatan/relay-compiler@13.0.1':
+ resolution: {integrity: sha512-afG3YPwuSA0E5foouZusz5GlXKs74dObv4cuWyLyfKsYFj2r7oGRNB28v18HvwuLSQtQFCi+DpIe0TZkgQDYyg==}
+ peerDependencies:
+ graphql: '*'
+
'@asamuzakjp/css-color@3.2.0':
resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
@@ -521,14 +535,26 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-plugin-utils@7.29.7':
+ resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@7.29.7':
+ resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.29.7':
+ resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
@@ -542,6 +568,17 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.29.7':
+ resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/plugin-syntax-import-assertions@7.29.7':
+ resolution: {integrity: sha512-/An1OCBN93thpBAGyfsK2pcf0jvju1SAtKkL2Ny++B5Sy6sqgzXDQH1cZxWbF96Wuk+bn41MDA9bLd4VVAw6rw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/runtime@7.28.6':
resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==}
engines: {node: '>=6.9.0'}
@@ -562,6 +599,10 @@ packages:
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.29.7':
+ resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@1.0.2':
resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
engines: {node: '>=18'}
@@ -706,6 +747,18 @@ packages:
'@emotion/weak-memoize@0.4.0':
resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
+ '@envelop/core@5.5.1':
+ resolution: {integrity: sha512-3DQg8sFskDo386TkL5j12jyRAdip/8yzK3x7YGbZBgobZ4aKXrvDU0GppU0SnmrpQnNaiTUsxBs9LKkwQ/eyvw==}
+ engines: {node: '>=18.0.0'}
+
+ '@envelop/instrumentation@1.0.0':
+ resolution: {integrity: sha512-cxgkB66RQB95H3X27jlnxCRNTmPuSTgmBAq6/4n2Dtv4hsk4yz8FadA1ggmd0uZzvKqWD6CR+WFgTjhDqg7eyw==}
+ engines: {node: '>=18.0.0'}
+
+ '@envelop/types@5.2.1':
+ resolution: {integrity: sha512-CsFmA3u3c2QoLDTfEpGr4t25fjMU31nyvse7IzWTvb0ZycuPjMjb0fjlheh+PbhBYb9YLugnT2uY6Mwcg1o+Zg==}
+ engines: {node: '>=18.0.0'}
+
'@esbuild/aix-ppc64@0.27.3':
resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
engines: {node: '>=18'}
@@ -900,6 +953,9 @@ packages:
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@fastify/busboy@3.2.0':
+ resolution: {integrity: sha512-m9FVDXU3GT2ITSe0UaMA5rU3QkfC/UXtCU8y0gSN/GugTqtVldOBWIB5V6V3sbmenVZUIpU6f+mPEO2+m5iTaA==}
+
'@floating-ui/core@1.7.5':
resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
@@ -921,6 +977,239 @@ packages:
'@floating-ui/utils@0.2.11':
resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
+ '@graphql-codegen/add@7.0.1':
+ resolution: {integrity: sha512-kWw6RMu9ysBw1wcgcgf9mOnswc5M3ekOApDTiaJC/UZNTEYins01srZHYTP7z3P/WlGGC844BRtjwh3U2kNd/A==}
+ engines: {node: '>=16'}
+ 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/cli@7.1.2':
+ resolution: {integrity: sha512-RiXedOZhanodp8fCBlpciyic17kSv0hSMboDaE9/ZWXC6f4g1aQBTZmQJOsT9Dtxy0SxqmMY674NoTlJgELNeA==}
+ engines: {node: '>=16'}
+ hasBin: true
+ peerDependencies:
+ '@parcel/watcher': ^2.1.0
+ 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
+ peerDependenciesMeta:
+ '@parcel/watcher':
+ optional: true
+
+ '@graphql-codegen/client-preset@6.0.1':
+ resolution: {integrity: sha512-6wh0ZHG9WzBD6bE4AVOO6VCCMXK2orxHuXxaNKj+sj1w0qZ3Y3WIjZnqZLg6JZrHCIs/e+gy3T15Dc2pH8IbHA==}
+ engines: {node: '>=16'}
+ 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-sock: ^1.0.0
+ peerDependenciesMeta:
+ graphql-sock:
+ optional: true
+
+ '@graphql-codegen/core@6.1.0':
+ resolution: {integrity: sha512-jReAzuCYlrSBJHW2bfBpDl/vMRCw0yQEoTvGi9K+3OTsazDXEQGOpCVfj8p/xO2h7ynu5Yrvzo0sUylVv0CnwA==}
+ engines: {node: '>=16'}
+ 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@6.0.1':
+ resolution: {integrity: sha512-eHYUIchZLG6G+kafeKnUByL2Nkmb8Uj2vg33UVLFj8XJ2coC4b1iRDWxCdTXbupZrN0FaM0QRRBLs3zBEAzcJg==}
+ engines: {node: '>=16'}
+ 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/near-operation-file-preset@5.2.1':
+ resolution: {integrity: sha512-F+9gln4QboYozcMfsXwOxsPDdqUmMBOQoGZww+9qegvpWNvQVcZXm1LbYibi1iWOfuM0TTXVtMsDDjMeyNJcHA==}
+ engines: {node: '>= 16.0.0'}
+ 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@7.0.1':
+ resolution: {integrity: sha512-S2X0YT3XQbP2haqhIeku8GOXo2j8QuBu7BrLsOEHz4UeMu78y3rja1Q4ri3oJ0jq4dMgaQlazoVHI/A+FAKMGw==}
+ engines: {node: '>=16'}
+ 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@6.0.1':
+ resolution: {integrity: sha512-P16b6XCWXfcrA4fkuAyqoy883USAULifv8YWgEOrNKDAnr2DR+Kr85jSomknIUTY39wiuvisv4/lrdXobwK6sA==}
+ engines: {node: '>=16'}
+ 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/typed-document-node@7.0.3':
+ resolution: {integrity: sha512-l/4KenYJG5D8Aj6Aa2KPeS0fdMIIi04Qx28d4SLwMWuyFU9WXspU5mR9YMNDRZzaTgBtGR8aMIl9RzyiWf5uUw==}
+ engines: {node: '>=16'}
+ 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/typescript-operations@6.0.3':
+ resolution: {integrity: sha512-5gnHdBgKkpKJOiqyKo37UfwigNtezfN94UI/NnyCROl6oDAyt0A+1VeS5cBlgRECdD/TQ1vjHCu14B41Sl7yLw==}
+ engines: {node: '>=16'}
+ 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-sock: ^1.0.0
+ peerDependenciesMeta:
+ graphql-sock:
+ optional: true
+
+ '@graphql-codegen/typescript@6.0.2':
+ resolution: {integrity: sha512-zyLfKsFJ7TRkQ0PyaUVuiAek9TSbtVJwwBoOuaE9RAWr45+9Y5W1LYldpiSTcyfxKVSIniE7Gj0V87qzrpdyYw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+
+ '@graphql-codegen/visitor-plugin-common@7.1.0':
+ resolution: {integrity: sha512-CO4fJyflbYBuAwbQD16bAuWBIXkz9il3JwyC+pQzXh8NJ+BZZDXmYjmVeGeJuoMUIQDb+CNo2thCU0bFFamAkg==}
+ engines: {node: '>=16'}
+ 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-hive/signal@2.0.0':
+ resolution: {integrity: sha512-Pz8wB3K0iU6ae9S1fWfsmJX24CcGeTo6hE7T44ucmV/ALKRj+bxClmqrYcDT7v3f0d12Rh4FAXBb6gon+WkDpQ==}
+ engines: {node: '>=20.0.0'}
+
+ '@graphql-tools/apollo-engine-loader@8.0.30':
+ resolution: {integrity: sha512-hUydKGGECrWloERMmfoMzHZi12X99AM9geCGF5XVsv4iMRl/Iyuet24th4kC9bZ8MlAdCwAwtUsCyv9uRfYwSA==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/batch-execute@10.0.8':
+ resolution: {integrity: sha512-Kobt37qrVTFhX4HUK5/vPgMXFw/5f97AzmAlfmDBSRh/GnoAmLKCb48FrEI3gdeIwZB2fEhVHJyDqsojldnLQA==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/code-file-loader@8.1.32':
+ resolution: {integrity: sha512-gR5mNQjn0BugDL8a4A+ovS2KEvU52RNOGnbwiq9oWAEHiSv7iqJu77bpWARTzlE1ZFPK5MSQe9218+1t5PbXmQ==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/delegate@12.0.17':
+ resolution: {integrity: sha512-pIVszWEm69rF+bkM0jUyM1KdIxGzygQbIp1GtV1CuEGRB8lN1uFY1eeTzM2nudHXg8cj+XSVO8cnRpph+o8Dmg==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@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-common@1.0.6':
+ resolution: {integrity: sha512-23/K5C+LSlHDI0mj2SwCJ33RcELCcyDUgABm1Z8St7u/4Z5+95i925H/NAjUyggRjiaY8vYtNiMOPE49aPX1sg==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/executor-graphql-ws@3.1.5':
+ resolution: {integrity: sha512-WXRsfwu9AkrORD9nShrd61OwwxeQ5+eXYcABRR3XPONFIS8pWQfDJGGqxql9/227o/s0DV5SIfkBURb5Knzv+A==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/executor-http@3.3.0':
+ resolution: {integrity: sha512-IkKXIjSg9U8MNsQUBVJAXE4+LSxaQ0cs7p5JTALLGDABY1o17vPDRwWALsX81AXD5dY27ihi/+OhGMueW/Fopg==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/executor-legacy-ws@1.1.28':
+ resolution: {integrity: sha512-O4uj93GG9iUb3s32eyhUohvyfA8mLhN8FvGzEdK628hFQPhZN75yurtVFrR08DHex71mQ3wYCCFkErpwdJbDDQ==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/executor@1.5.3':
+ resolution: {integrity: sha512-mgBFC0bsrZPZLu9EnydpMnAuQ8Iiq0CEbUcsmvXsm2/iYektGHDN/+bmb7hicA6dWZtdPfklYJmr21WD0GnOfA==}
+ 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.36':
+ resolution: {integrity: sha512-PDDakesRu8FJYHJLf9/gkTweh8M19Bymz9i+vOlk9OTs9XmNcCqKM+1S610KX2AodvuBFz/xbesjTtTJIppLPg==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/github-loader@9.1.2':
+ resolution: {integrity: sha512-jhRJncj9Wkr1Cd8Mo3QI2oG6fTw5ILr1/OXcHIqx744NBj8pPwQBXmQzZqh7MXxbekl2EAcum7SJIjq1HpYcPA==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/graphql-file-loader@8.1.14':
+ resolution: {integrity: sha512-CfAcsSEVkkHfEXLFzrd5rUYpcQEGWNV8lfc1Tb1p5m9HnYICzDDH08I5V33iMrEDza3GuujjjRBYqplBkqwIow==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/graphql-tag-pluck@8.3.31':
+ resolution: {integrity: sha512-ema2RRPZGj8TKruNElyDBHVCNFMxioGIVfLBuiA+GdfmRGt95b/i7Uksnj4EwItA6MCmhxokxZoa/fl6mJt3tw==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/import@7.1.14':
+ resolution: {integrity: sha512-aqLcu04aEidszbXM6M0PWWL8bP17eX9sxXwjYWpglLvIRd4NFqb3C9QzBY8pleqXNMtWqXktlm9BQjevgSrirQ==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/json-file-loader@8.0.28':
+ resolution: {integrity: sha512-qgCsSkPArnjlNkcYpgGKiXxCTNkrAT9E+l1LhR+Por2jTlKBBeZ8stortkQ/PNDDjuL0WPrLQmHKhNPHabnB3A==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/load@8.1.10':
+ resolution: {integrity: sha512-hjcvfEFtwtc8vGi46wtpmGWadNzfEhzbjqinyFIZuIZPlR4aYdWQtqWtY/RMM4Ew4t1USkMNm6xrqC2TH1vCSA==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/merge@9.1.9':
+ resolution: {integrity: sha512-iHUWNjRHeQRYdgIMIuChThOwoKzA9vrzYeslgfBo5eUYEyHGZCoDPjAavssoYXLwstYt1dZj2J22jSzc2DrN0Q==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/optimize@2.0.0':
+ resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/relay-operation-optimizer@7.1.4':
+ resolution: {integrity: sha512-cwOD/GEo/R//1uGCP0/urIxsMFoUgzkJVyMt9BDM2HhQhU6rSgH5l6lFukAFTJyPJVdyeOdYm2i0Jj5vYWbHTw==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/schema@10.0.33':
+ resolution: {integrity: sha512-O6P3RIftO0jafnSsFAqpjurUuUxJ43s/AdPVLQsBkI6y4Ic/tKm4C1Qm1KKQsCDTOxXPJClh/v3g7k7yLKCFBQ==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/url-loader@9.1.2':
+ resolution: {integrity: sha512-pVSiPrfWQKb3jq23Pl7EjbB2uv3tgZLnWo/axkmg4itAEZ5s/vV/jKa8P1HZzUnSVUTR+8tcEZVeNsUbzFCbkg==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/utils@11.1.0':
+ resolution: {integrity: sha512-PtFVG4r8Z2LEBSaPYQMusBiB3o6kjLVJyjCLbnWem/SpSuM21v6LTmgpkXfYU1qpBV2UGsFyuEnSJInl8fR1Ag==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
+ '@graphql-tools/wrap@11.1.16':
+ resolution: {integrity: sha512-JW1XGFTmltXa537J2bAr8dN/n6EWwiBuM9q8V8mWqZ0eWrf++/TT3/mlV3c0M8B8nrS/lqSsotIwPAtVZR8sWQ==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+
'@graphql-typed-document-node/core@3.2.0':
resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
peerDependencies:
@@ -958,6 +1247,19 @@ packages:
resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==}
engines: {node: '>=18'}
+ '@inquirer/ansi@2.0.7':
+ resolution: {integrity: sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+
+ '@inquirer/checkbox@5.2.1':
+ resolution: {integrity: sha512-b6xmA/VlTe0ZgDQHDui+Nav470u7u49nRd8/iuhOcQPO9Ch7lGuogydhi2VOmNlZ+zXcM8IcPuNSwQcdJaF/kw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/confirm@5.1.21':
resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==}
engines: {node: '>=18'}
@@ -967,6 +1269,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/confirm@6.1.1':
+ resolution: {integrity: sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/core@10.3.2':
resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==}
engines: {node: '>=18'}
@@ -976,10 +1287,113 @@ packages:
'@types/node':
optional: true
+ '@inquirer/core@11.2.1':
+ resolution: {integrity: sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/editor@5.2.2':
+ resolution: {integrity: sha512-ZRVd/oD+sYsUd5zVm0NflqEzlqfYCyHNsqkHl2oWXEUHs12tCbcSFi+wVFEvD8+LGRaMUsVrE7qeo6lSG/S1Vg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/expand@5.1.1':
+ resolution: {integrity: sha512-YmQpenjbFSHAK3sOd44puHh3V1KXXr+JiNpUztoSQ4drLh2rTVzTap/YtlAVu/5xavifIlBfNEzJ/neZJ1a/1g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/external-editor@3.0.3':
+ resolution: {integrity: sha512-6thf5I8q7lZwzGLAxPaaGEREEkZ3nyePPDQ1oyobblxmEE8mqTLguScP7pDjUTAibiyb4hfXl+qjUEJ+di/aNA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/figures@1.0.15':
resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==}
engines: {node: '>=18'}
+ '@inquirer/figures@2.0.7':
+ resolution: {integrity: sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+
+ '@inquirer/input@5.1.2':
+ resolution: {integrity: sha512-9K/DDBSQpOyZSkt6sOVP9Vo0TR7atX2kuILsUu0x3wVcVbe97lJwIJKMLdMw25tDYuXl/qp6erT0Xs1rfmcfZg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/number@4.1.1':
+ resolution: {integrity: sha512-XF4IXAbPnGPgw0wsbC/i2tPcyfdZgDpUlhsqU0SfT4IRIGWha6Xm9VRgN5yYxJq+jnyXlfXI/nQ3ulfk0iEICA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/password@5.1.1':
+ resolution: {integrity: sha512-3XBfF7DAsp5qeDsvN5Rd1HmbNokVvEQoUM0QLrRcybC9nX96w3Pbmu7qUsb3IT3J3jBvs2+mTXaKHOUsgHMLzg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/prompts@8.5.2':
+ resolution: {integrity: sha512-IYR/3C/paEVVQYQvdDlFZVjRCJVYHHON0XXMH91KO9GSxs0TdKYWlUdvfQl2EfAHDxUaN3IBffkE/BDTh5nJ6g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/rawlist@5.3.1':
+ resolution: {integrity: sha512-QqdTqQddL3qPX/PPrjobpsO25NZ4dWXgTLenrR445L2ptLEYE6Z+PD5c5CNDJNx4ugRgELAIpSIJxZaO2jJ2Og==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/search@4.2.1':
+ resolution: {integrity: sha512-xJj8QWKRSrfKoBIITLZK61dD3zwo0Rz11fgDImku30/Oe81zMdIdGgrLY2h6RkJ+KZ/GhNYIRMKnH/62qBTA5g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/select@5.2.1':
+ resolution: {integrity: sha512-FlDndEUww8m7BfukO2nJa25vhD+H5jxxCv4oGioKqzyWz3nPHhhw4LKdYRSlXuAx7DsdWia7iyaBPKKS95Evfw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/type@3.0.10':
resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==}
engines: {node: '>=18'}
@@ -989,6 +1403,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/type@4.0.7':
+ resolution: {integrity: sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
@@ -1279,6 +1702,18 @@ packages:
peerDependencies:
react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@nodelib/fs.scandir@2.1.5':
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.stat@2.0.5':
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.walk@1.2.8':
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
+ engines: {node: '>= 8'}
+
'@open-draft/deferred-promise@2.2.0':
resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==}
@@ -1400,6 +1835,9 @@ packages:
react-redux:
optional: true
+ '@repeaterjs/repeater@3.1.0':
+ resolution: {integrity: sha512-TaoVksZRSx2KWYYpyLQtMQXXeS98VsgZImzW65xmiVgbYhXLk+aEsmzPLirqVuE4/XuUapH2iMtxUzaBNDzdSQ==}
+
'@rolldown/pluginutils@1.0.0-beta.27':
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
@@ -1830,6 +2268,9 @@ packages:
'@types/webxr@0.5.24':
resolution: {integrity: sha512-h8fgEd/DpoS9CBrjEQXR+dIDraopAEfu4wYVNY2tEPwk60stPWhvZMf4Foo5FakuQ7HFZoa8WceaWFervK2Ovg==}
+ '@types/ws@8.18.1':
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
+
'@types/zen-observable@0.8.0':
resolution: {integrity: sha512-te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg==}
@@ -2056,6 +2497,22 @@ packages:
'@webassemblyjs/wast-printer@1.14.1':
resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
+ '@whatwg-node/disposablestack@0.0.6':
+ resolution: {integrity: sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==}
+ engines: {node: '>=18.0.0'}
+
+ '@whatwg-node/fetch@0.10.13':
+ resolution: {integrity: sha512-b4PhJ+zYj4357zwk4TTuF2nEe0vVtOrwdsrNo5hL+u1ojXNhh1FgJ6pg1jzDlwlT4oBdzfSwaBwMCtFCsIWg8Q==}
+ engines: {node: '>=18.0.0'}
+
+ '@whatwg-node/node-fetch@0.8.6':
+ resolution: {integrity: sha512-BDMdYFcerLQkwA2RTldxOqRCs6ZQD1S7UgP3pUdGUkcbgTrP/V5ko77ZkCww9DHmC4lpoYuwigGfQYj285gMvA==}
+ engines: {node: '>=18.0.0'}
+
+ '@whatwg-node/promise-helpers@1.3.2':
+ resolution: {integrity: sha512-Nst5JdK47VIl9UcGwtv2Rcgyn5lWtZ0/mhRQ4G8NN2isxpq2TO30iqHzmwoJycjWuyUfg3GFXqP/gFHXeV57IA==}
+ engines: {node: '>=16.0.0'}
+
'@wry/caches@1.0.1':
resolution: {integrity: sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==}
engines: {node: '>=8'}
@@ -2145,10 +2602,18 @@ packages:
resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==}
engines: {node: '>=0.4.2'}
+ ansi-escapes@7.3.0:
+ resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==}
+ engines: {node: '>=18'}
+
ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
+ ansi-regex@6.2.2:
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
+ engines: {node: '>=12'}
+
ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -2161,6 +2626,10 @@ packages:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
+ ansi-styles@6.2.3:
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
+ engines: {node: '>=12'}
+
apollo-link-retry@2.2.16:
resolution: {integrity: sha512-7F9+meFAz4dw5gtgtLsRFqJW6QzNOhTzt5R5Hsy+yFhkTW9LddgYO7gxN9n7RN/7Ouosh3TcpUkdHs2laC+0sA==}
@@ -2200,6 +2669,10 @@ packages:
array-range@1.0.1:
resolution: {integrity: sha512-shdaI1zT3CVNL2hnx9c0JMc0ZogGaxDs5e85akgHWKYa0yVbIyp06Ind3dVkTj/uuFrzaHBOyqFzo+VV6aXgtA==}
+ array-union@2.1.0:
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+ engines: {node: '>=8'}
+
asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
@@ -2213,6 +2686,10 @@ packages:
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
+ auto-bind@5.0.1:
+ resolution: {integrity: sha512-ooviqdwwgfIfNmDwo94wlshcdzfO64XV0Cg6oDsDYBJfITDz1EngD2z7DkbvCWn+XIMsIqW27sEVF6qcpJrRcg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
axios@1.13.6:
resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
@@ -2275,6 +2752,10 @@ packages:
resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==}
engines: {node: 18 || 20 || >=22}
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
+
browserslist@4.28.1:
resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -2349,7 +2830,20 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chrome-trace-event@1.0.4:
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
+ change-case-all@2.1.0:
+ resolution: {integrity: sha512-v6b0WWWkZUMHVuYk82l+WROgkUm4qEN2w5hKRNWtEOYwWqUGoi8C6xH0l1RLF1EoWqDFK6MFclmN3od6ws3/uw==}
+
+ change-case@5.4.4:
+ resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
+
+ chardet@2.1.1:
+ resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
+
+ chrome-trace-event@1.0.4:
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
@@ -2359,6 +2853,14 @@ packages:
classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+ cli-cursor@5.0.0:
+ resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
+ engines: {node: '>=18'}
+
+ cli-truncate@5.2.0:
+ resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==}
+ engines: {node: '>=20'}
+
cli-width@4.1.0:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
engines: {node: '>= 12'}
@@ -2370,6 +2872,10 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
+ cliui@9.0.1:
+ resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==}
+ engines: {node: '>=20'}
+
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
@@ -2419,6 +2925,10 @@ packages:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
+ common-tags@1.8.2:
+ resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
+ engines: {node: '>=4.0.0'}
+
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
@@ -2451,6 +2961,24 @@ packages:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
+ cosmiconfig@8.3.6:
+ resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ cosmiconfig@9.0.2:
+ resolution: {integrity: sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
country-regex@1.1.0:
resolution: {integrity: sha512-iSPlClZP8vX7MC3/u6s3lrDuoQyhQukh5LyABJ3hvfzbQ3Yyayd4fp04zjLnfi267B/B2FkumcWWgrbban7sSA==}
@@ -2462,6 +2990,10 @@ packages:
cross-fetch@3.2.0:
resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==}
+ cross-inspect@1.0.1:
+ resolution: {integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==}
+ engines: {node: '>=16.0.0'}
+
cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
@@ -2716,13 +3248,24 @@ packages:
resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
engines: {node: '>=0.12'}
+ data-uri-to-buffer@4.0.1:
+ resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
+ engines: {node: '>= 12'}
+
data-urls@5.0.0:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
+ dataloader@2.2.3:
+ resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==}
+
dayjs@1.10.7:
resolution: {integrity: sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig==}
+ debounce@3.0.0:
+ resolution: {integrity: sha512-64byRbF0/AirwbuHqB3/ZpMG9/nckDa6ZA0yd6UnaQNwbbemCOwvz2sL5sjXLHhZHADyiwLm0M5qMhltUUx+TA==}
+ engines: {node: '>=20'}
+
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
@@ -2768,6 +3311,10 @@ packages:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
+ dependency-graph@1.0.0:
+ resolution: {integrity: sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==}
+ engines: {node: '>=4'}
+
dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
@@ -2786,6 +3333,10 @@ packages:
resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dir-glob@3.0.1:
+ resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
+ engines: {node: '>=8'}
+
dom-accessibility-api@0.5.16:
resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
@@ -2836,6 +3387,9 @@ packages:
elementary-circuits-directed-graph@1.3.1:
resolution: {integrity: sha512-ZEiB5qkn2adYmpXGnJKkxT8uJHlW/mxmBpmeqawEHzPxh9HkLD4/1mFYX5l0On+f6rcPIt8/EWlRU2Vo3fX6dQ==}
+ emoji-regex@10.6.0:
+ resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
+
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -2850,6 +3404,14 @@ packages:
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
engines: {node: '>=0.12'}
+ env-paths@2.2.1:
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
+
+ environment@1.1.0:
+ resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
+ engines: {node: '>=18'}
+
error-ex@1.3.4:
resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
@@ -3028,6 +3590,9 @@ packages:
event-emitter@0.3.5:
resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
+ eventemitter3@5.0.4:
+ resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
+
events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
@@ -3049,6 +3614,10 @@ packages:
fast-equals@4.0.3:
resolution: {integrity: sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==}
+ fast-glob@3.3.3:
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
+ engines: {node: '>=8.6.0'}
+
fast-isnumeric@1.1.4:
resolution: {integrity: sha512-1mM8qOr2LYz8zGaUdmiqRDiuue00Dxjgcb1NQR7TnhLVh6sQyngP9xvLo7Sl7LZpP/sk5eb+bcyWXw530NTBZw==}
@@ -3058,12 +3627,24 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ fast-string-truncated-width@3.0.3:
+ resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==}
+
+ fast-string-width@3.0.2:
+ resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==}
+
fast-uri@3.1.0:
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
fast-uri@3.1.2:
resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==}
+ fast-wrap-ansi@0.2.2:
+ resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==}
+
+ fastq@1.20.1:
+ resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
+
fbjs-css-vars@1.0.2:
resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
@@ -3079,6 +3660,10 @@ packages:
picomatch:
optional: true
+ fetch-blob@3.2.0:
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
+ engines: {node: ^12.20 || >= 14.13}
+
fflate@0.6.10:
resolution: {integrity: sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg==}
@@ -3089,6 +3674,10 @@ packages:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ engines: {node: '>=8'}
+
find-root@1.1.0:
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
@@ -3125,6 +3714,10 @@ packages:
resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
engines: {node: '>= 6'}
+ formdata-polyfill@4.0.10:
+ resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
+ engines: {node: '>=12.20.0'}
+
from2@2.3.0:
resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
@@ -3153,6 +3746,10 @@ packages:
get-canvas-context@1.0.2:
resolution: {integrity: sha512-LnpfLf/TNzr9zVOGiIY6aKCz8EKuXmlYNV7CM2pUjBa/B+c2I15tS7KLySep75+FuerJdmArvJLcsAXWEy2H0A==}
+ get-east-asian-width@1.6.0:
+ resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==}
+ engines: {node: '>=18'}
+
get-graphql-schema@2.1.2:
resolution: {integrity: sha512-1z5Hw91VrE3GrpCZE6lE8Dy+jz4kXWesLS7rCSjwOxf5BOcIedAZeTUJRIeIzmmR+PA9CKOkPTYFRJbdgUtrxA==}
hasBin: true
@@ -3187,6 +3784,10 @@ packages:
gl-util@3.1.3:
resolution: {integrity: sha512-dvRTggw5MSkJnCbh74jZzSoTOGnVYK+Bt+Ckqm39CVcl6+zSsxqWk4lr5NKhkqXHL6qvZAU9h17ZF8mIskY9mA==}
+ glob-parent@5.1.2:
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
+
glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
@@ -3206,6 +3807,10 @@ packages:
resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
engines: {node: '>=18'}
+ globby@11.1.0:
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+ engines: {node: '>=10'}
+
glsl-inject-defines@1.0.3:
resolution: {integrity: sha512-W49jIhuDtF6w+7wCMcClk27a2hq8znvHtlGnrYkSWEr8tHe9eA2dcnohlcAmxLYBSpSSdzOkRdyPTrx9fw49+A==}
@@ -3262,12 +3867,38 @@ packages:
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+ graphql-config@5.1.6:
+ resolution: {integrity: sha512-fCkYnm4Kdq3un0YIM4BCZHVR5xl0UeLP6syxxO7KAstdY7QVyVvTHP0kRPDYEP1v08uwtJVgis5sj3IOTLOniQ==}
+ engines: {node: '>= 16.0.0'}
+ peerDependencies:
+ cosmiconfig-toml-loader: ^1.0.0
+ graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+ peerDependenciesMeta:
+ cosmiconfig-toml-loader:
+ optional: true
+
graphql-tag@2.12.6:
resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==}
engines: {node: '>=10'}
peerDependencies:
graphql: ^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-ws@6.0.8:
+ resolution: {integrity: sha512-m3EOaNsUBXwAnkBWbzPfe0Nq8pXUfxsWnolC54sru3FzHvhTZL0Ouf/BoQsaGAXqM+YPerXOJ47BUnmgmoupCw==}
+ engines: {node: '>=20'}
+ peerDependencies:
+ '@fastify/websocket': ^10 || ^11
+ crossws: ~0.3
+ graphql: ^15.10.1 || ^16
+ ws: ^8
+ peerDependenciesMeta:
+ '@fastify/websocket':
+ optional: true
+ crossws:
+ optional: true
+ ws:
+ optional: true
+
graphql@14.7.0:
resolution: {integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==}
engines: {node: '>= 6.x'}
@@ -3357,6 +3988,10 @@ packages:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
+ iconv-lite@0.7.2:
+ resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
+ engines: {node: '>=0.10.0'}
+
icss-utils@5.1.0:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
@@ -3380,6 +4015,9 @@ packages:
immer@11.1.8:
resolution: {integrity: sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==}
+ immutable@5.1.6:
+ resolution: {integrity: sha512-q1swsS8K7L8usSHuOqF2TAoCCkonYz0SG38wLAggaa4Wml70zixIvt2ql4coQ2C2B3hTjltJry4r6bULwgAXLQ==}
+
import-fresh@2.0.0:
resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
engines: {node: '>=4'}
@@ -3388,6 +4026,10 @@ packages:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
+ import-from@4.0.0:
+ resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==}
+ engines: {node: '>=12.2'}
+
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -3413,6 +4055,10 @@ packages:
iota-array@1.0.0:
resolution: {integrity: sha512-pZ2xT+LOHckCatGQ3DcG/a+QuEqvoxqkiL7tvE8nn3uuu+f6i1TtpB5/FtWFbxUuVr5PZCx8KskuGatbJDXOWA==}
+ is-absolute@1.0.0:
+ resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
+ engines: {node: '>=0.10.0'}
+
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
@@ -3450,6 +4096,10 @@ packages:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
+ is-fullwidth-code-point@5.1.0:
+ resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
+ engines: {node: '>=18'}
+
is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -3460,6 +4110,10 @@ packages:
is-node-process@1.2.0:
resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==}
+ is-number@7.0.0:
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
+
is-obj@1.0.1:
resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
@@ -3478,6 +4132,10 @@ packages:
is-promise@2.2.2:
resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
+ is-relative@1.0.0:
+ resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
+ engines: {node: '>=0.10.0'}
+
is-string-blank@1.0.1:
resolution: {integrity: sha512-9H+ZBCVs3L9OYqv8nuUAzpcT9OTgMD1yAWrG7ihlnibdkbtB850heAmYWxHuXc4CHy4lKeK69tN+ny1K7gBIrw==}
@@ -3487,6 +4145,18 @@ packages:
is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
+ is-unc-path@1.0.0:
+ resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
+ engines: {node: '>=0.10.0'}
+
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
+ engines: {node: '>=18'}
+
+ is-windows@1.0.2:
+ resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
+ engines: {node: '>=0.10.0'}
+
isarray@0.0.1:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
@@ -3507,6 +4177,16 @@ packages:
resolution: {integrity: sha512-QvUHIbvXZE/N8Mmi0mndfk9KrqsHGE5U20dekg6SaQNY94yteoM+f4M4Dc7AnMjCwwEeHUqKggH8mvtJdSWvsg==}
engines: {node: '>= 0.8.0'}
+ isomorphic-ws@5.0.0:
+ resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
+ peerDependencies:
+ ws: '*'
+
+ isows@1.0.7:
+ resolution: {integrity: sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==}
+ peerDependencies:
+ ws: '*'
+
istanbul-lib-coverage@3.2.2:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
@@ -3531,6 +4211,10 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
+ jiti@2.7.0:
+ resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
+ hasBin: true
+
js-tokens@10.0.0:
resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==}
@@ -3580,6 +4264,10 @@ packages:
json-stringify-pretty-compact@4.0.0:
resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==}
+ json-to-pretty-yaml@1.2.2:
+ resolution: {integrity: sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==}
+ engines: {node: '>= 0.2.0'}
+
json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
@@ -3619,6 +4307,10 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+ listr2@10.2.1:
+ resolution: {integrity: sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q==}
+ engines: {node: '>=22.13.0'}
+
loader-runner@4.3.2:
resolution: {integrity: sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==}
engines: {node: '>=6.11.5'}
@@ -3630,12 +4322,23 @@ packages:
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ lodash.sortby@4.7.0:
+ resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
+
lodash@4.17.23:
resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
lodash@4.18.1:
resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==}
+ log-symbols@7.0.1:
+ resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
+ engines: {node: '>=18'}
+
+ log-update@6.1.0:
+ resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
+ engines: {node: '>=18'}
+
loglevel@1.9.2:
resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
engines: {node: '>= 0.6.0'}
@@ -3679,6 +4382,10 @@ packages:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
+ map-cache@0.2.2:
+ resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
+ engines: {node: '>=0.10.0'}
+
map-limit@0.0.1:
resolution: {integrity: sha512-pJpcfLPnIF/Sk3taPW21G/RQsEEirGaFpCW3oXRwH9dnFHPHNGjNyvh++rdmC2fNqEaTw2MhYJraoJWAHx8kEg==}
@@ -3722,6 +4429,19 @@ packages:
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ merge2@1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+
+ meros@1.3.2:
+ resolution: {integrity: sha512-Q3mobPbvEx7XbwhnC1J1r60+5H6EZyNccdzSz0eGexJRwouUtTZxPVRGdqKtxlpD84ScK4+tIGldkqDtCKdI0A==}
+ engines: {node: '>=13'}
+ peerDependencies:
+ '@types/node': '>=13'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
meshline@3.3.1:
resolution: {integrity: sha512-/TQj+JdZkeSUOl5Mk2J7eLcYTLiQm2IDzmlSvYm7ov15anEcDJ92GHqqazxTSreeNgfnYu24kiEvvv0WlbCdFQ==}
peerDependencies:
@@ -3733,6 +4453,10 @@ packages:
messagepack@1.1.12:
resolution: {integrity: sha512-pNB6K4q4VMLRXdvlGZkTtQhmKFntvLisnOQnL0VhKpZooL8B8Wsv5TXuidIJil0bCH6V172p3+Onfyow0usPYQ==}
+ 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'}
@@ -3745,6 +4469,10 @@ packages:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
+ mimic-function@5.0.1:
+ resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
+ engines: {node: '>=18'}
+
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
@@ -3801,6 +4529,10 @@ packages:
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ mute-stream@3.0.0:
+ resolution: {integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -3846,6 +4578,11 @@ packages:
next-tick@1.1.0:
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
+ node-domexception@1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
+ deprecated: Use your platform's native DOMException instead
+
node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
@@ -3855,6 +4592,10 @@ packages:
encoding:
optional: true
+ node-fetch@3.3.2:
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
node-gyp-build@4.8.4:
resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
@@ -3866,6 +4607,10 @@ packages:
resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==}
engines: {node: '>=18'}
+ normalize-path@2.1.1:
+ resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
+ engines: {node: '>=0.10.0'}
+
normalize-svg-path@0.1.0:
resolution: {integrity: sha512-1/kmYej2iedi5+ROxkRESL/pI02pkg0OBnaR4hJkSIX6+ORzepwbuUXfrdZaPjysTsJInj0Rj5NuX027+dMBvA==}
@@ -3901,6 +4646,10 @@ packages:
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+ onetime@7.0.0:
+ resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
+ engines: {node: '>=18'}
+
optimism@0.18.1:
resolution: {integrity: sha512-mLXNwWPa9dgFyDqkNi54sjDyNJ9/fTI6WGBLgnXku1vdKY/jovHfZT5r+aiVeFFLOz+foPNOm5YJ4mqgld2GBQ==}
@@ -3929,6 +4678,10 @@ packages:
parenthesis@3.1.8:
resolution: {integrity: sha512-KF/U8tk54BgQewkJPvB4s/US3VQY68BRDpH638+7O/n58TpnwiwnOtGIOsT2/i+M78s61BBpeC83STB88d8sqw==}
+ parse-filepath@1.0.2:
+ resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==}
+ engines: {node: '>=0.8'}
+
parse-json@4.0.0:
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
engines: {node: '>=4'}
@@ -3960,6 +4713,14 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+ path-root-regex@0.1.2:
+ resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==}
+ engines: {node: '>=0.10.0'}
+
+ path-root@0.1.1:
+ resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
+ engines: {node: '>=0.10.0'}
+
path-to-regexp@6.3.0:
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
@@ -3983,6 +4744,10 @@ packages:
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+ picomatch@2.3.2:
+ resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
+ engines: {node: '>=8.6'}
+
picomatch@4.0.3:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
@@ -4079,6 +4844,9 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
+ queue-microtask@1.2.3:
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+
quickselect@2.0.0:
resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==}
@@ -4319,9 +5087,18 @@ packages:
relay-runtime@20.1.1:
resolution: {integrity: sha512-N98ZkkyuIHdXmHaPuljihM1QbFYXATF0gxA0CESFphszsQzXs9A/zZloVfzdOI/xg3B3CfM/5nozvIoeTDIcfw==}
+ remedial@1.0.8:
+ resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==}
+
remove-accents@0.5.0:
resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}
+ remove-trailing-separator@1.1.0:
+ resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
+
+ remove-trailing-spaces@1.0.9:
+ resolution: {integrity: sha512-xzG7w5IRijvIkHIjDk65URsJJ7k4J95wmcArY5PRcmjldIOl7oTvG8+X2Ag690R7SfwiOcHrWZKVc1Pp5WIOzA==}
+
repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
@@ -4348,6 +5125,10 @@ packages:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
+ resolve-from@5.0.0:
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
+
resolve-protobuf-schema@2.1.0:
resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==}
@@ -4364,9 +5145,20 @@ packages:
engines: {node: '>= 0.4'}
hasBin: true
+ restore-cursor@5.1.0:
+ resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
+ engines: {node: '>=18'}
+
rettime@0.10.1:
resolution: {integrity: sha512-uyDrIlUEH37cinabq0AX4QbgV4HbFZ/gqoiunWQ1UqBtRvTTytwhNYjE++pO/MjPTZL5KQCf2bEoJ/BJNVQ5Kw==}
+ reusify@1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+
right-align@0.1.3:
resolution: {integrity: sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg==}
engines: {node: '>=0.10.0'}
@@ -4385,6 +5177,9 @@ packages:
rrweb-cssom@0.8.0:
resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
+ run-parallel@1.2.0:
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+
rw@1.3.3:
resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
@@ -4449,6 +5244,10 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
+ shell-quote@1.8.4:
+ resolution: {integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==}
+ engines: {node: '>= 0.4'}
+
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -4459,6 +5258,18 @@ packages:
signum@1.0.0:
resolution: {integrity: sha512-yodFGwcyt59XRh7w5W3jPcIQb3Bwi21suEfT7MAWnBX3iCdklJpgDgvGT9o04UonglZN5SNMfJFkHIR/jO8GHw==}
+ slash@3.0.0:
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
+
+ slice-ansi@7.1.2:
+ resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==}
+ engines: {node: '>=18'}
+
+ slice-ansi@8.0.0:
+ resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==}
+ engines: {node: '>=20'}
+
sort-object-keys@2.1.0:
resolution: {integrity: sha512-SOiEnthkJKPv2L6ec6HMwhUcN0/lppkeYuN1x63PbyPRrgSPIuBJCiYxYyvWRTtjMlOi14vQUCGUJqS6PLVm8g==}
@@ -4490,6 +5301,9 @@ packages:
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
engines: {node: '>= 12'}
+ sponge-case@2.0.3:
+ resolution: {integrity: sha512-i4h9ZGRfxV6Xw3mpZSFOfbXjf0cQcYmssGWutgNIfFZ2VM+YIWfD71N/kjjwK6X/AAHzBr+rciEcn/L34S8TGw==}
+
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
@@ -4533,6 +5347,9 @@ packages:
strict-event-emitter@0.5.1:
resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==}
+ string-env-interpolation@1.0.1:
+ resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==}
+
string-split-by@1.0.0:
resolution: {integrity: sha512-KaJKY+hfpzNyet/emP81PJA9hTVSfxNLS9SFTWxdCnnW1/zOOwiV248+EfoX7IQFcBaOp4G5YE6xTJMF+pLg6A==}
@@ -4540,6 +5357,14 @@ packages:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
+ string-width@7.2.0:
+ resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
+ engines: {node: '>=18'}
+
+ string-width@8.2.1:
+ resolution: {integrity: sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==}
+ engines: {node: '>=20'}
+
string_decoder@0.10.31:
resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
@@ -4550,6 +5375,10 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
+ strip-ansi@7.2.0:
+ resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
+ engines: {node: '>=12'}
+
strip-indent@3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
@@ -4609,9 +5438,16 @@ packages:
svg-path-sdf@1.1.3:
resolution: {integrity: sha512-vJJjVq/R5lSr2KLfVXVAStktfcfa1pNFjFOgyJnzZFXlO/fDZ5DmM8FpnSKKzLPfEYTVeXuVBTHF296TpxuJVg==}
+ swap-case@3.0.3:
+ resolution: {integrity: sha512-6p4op8wE9CQv7uDFzulI6YXUw4lD9n4oQierdbFThEKVWVQcbQcUjdP27W8XE7V4QnWmnq9jueSHceyyQnqQVA==}
+
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+ sync-fetch@0.6.0:
+ resolution: {integrity: sha512-IELLEvzHuCfc1uTsshPK58ViSdNqXxlml1U+fmwJIKLYKOr/rAtBrorE2RYm5IHaMpDNlmC0fr1LAvdXvyheEQ==}
+ engines: {node: '>=18'}
+
tabbable@6.4.0:
resolution: {integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==}
@@ -4694,6 +5530,10 @@ packages:
through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+ timeout-signal@2.0.0:
+ resolution: {integrity: sha512-YBGpG4bWsHoPvofT6y/5iqulfXIiIErl5B0LdtHT1mGXDFTAhhRrbUpTvBgYbovr+3cKblya2WAOcpoy90XguA==}
+ engines: {node: '>=16'}
+
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
@@ -4718,6 +5558,9 @@ packages:
resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==}
engines: {node: '>=14.0.0'}
+ title-case@3.0.3:
+ resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
+
tldts-core@6.1.86:
resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
@@ -4738,6 +5581,10 @@ packages:
to-px@1.0.1:
resolution: {integrity: sha512-2y3LjBeIZYL19e5gczp14/uRWFDtDUErJPVN3VU9a7SJO+RjGRtYR47aMN2bZgGlxvW4ZcEz2ddUPVHXcMfuXw==}
+ to-regex-range@5.0.1:
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
+
topojson-client@3.1.0:
resolution: {integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==}
hasBin: true
@@ -4779,6 +5626,10 @@ packages:
ts-invariant@0.4.4:
resolution: {integrity: sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==}
+ ts-log@3.0.2:
+ resolution: {integrity: sha512-esq6hx2lM66sQV1YcFkIYTqrWWabmqBqobKHyn1CswdI5FgfQhkmiKiRWVGBNlIbdjBxEIkNvMIwLKKPgRYZLQ==}
+ engines: {node: '>=20', npm: '>=10'}
+
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
@@ -4866,6 +5717,10 @@ packages:
uglify-to-browserify@1.0.2:
resolution: {integrity: sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q==}
+ unc-path-regex@0.1.2:
+ resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
+ engines: {node: '>=0.10.0'}
+
undici-types@7.18.2:
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
@@ -4875,6 +5730,10 @@ packages:
uniq@1.0.1:
resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==}
+ unixify@1.0.0:
+ resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==}
+ engines: {node: '>=0.10.0'}
+
unquote@1.1.1:
resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
@@ -4893,6 +5752,9 @@ packages:
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ urlpattern-polyfill@10.1.0:
+ resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==}
+
use-isomorphic-layout-effect@1.2.1:
resolution: {integrity: sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==}
peerDependencies:
@@ -5040,6 +5902,10 @@ packages:
weak-map@1.0.8:
resolution: {integrity: sha512-lNR9aAefbGPpHO7AEnY0hCFjz1eTkWCXYvkTRrTHs9qv8zJp+SkVYpzfLIFXQQiG3tVvbNFQgVg2bQS8YGgxyw==}
+ web-streams-polyfill@3.3.3:
+ resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
+ engines: {node: '>= 8'}
+
webgl-constants@1.1.1:
resolution: {integrity: sha512-LkBXKjU5r9vAW7Gcu3T5u+5cvSvh5WwINdr0C+9jpzVB41cjQAP5ePArDtk/WHYdVj0GefCgM73BA7FlIiNtdg==}
@@ -5120,6 +5986,10 @@ packages:
world-calendars@1.0.4:
resolution: {integrity: sha512-VGRnLJS+xJmGDPodgJRnGIDwGu0s+Cr9V2HB3EzlDZ5n0qb8h5SJtGUEkjrphZYAglEiXZ6kiXdmk0H/h/uu/w==}
+ wrap-ansi@10.0.0:
+ resolution: {integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==}
+ engines: {node: '>=20'}
+
wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
@@ -5128,6 +5998,10 @@ packages:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
+ wrap-ansi@9.0.2:
+ resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
+ engines: {node: '>=18'}
+
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -5143,6 +6017,18 @@ packages:
utf-8-validate:
optional: true
+ ws@8.21.0:
+ resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
+ 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
+
xml-name-validator@5.0.0:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
@@ -5178,14 +6064,27 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
+ yaml@2.9.0:
+ resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
+ engines: {node: '>= 14.6'}
+ hasBin: true
+
yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
+ yargs@18.0.0:
+ resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
yargs@3.10.0:
resolution: {integrity: sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==}
@@ -5197,6 +6096,10 @@ packages:
resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==}
engines: {node: '>=18'}
+ yoctocolors@2.1.2:
+ resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
+ engines: {node: '>=18'}
+
zen-observable-ts@0.8.21:
resolution: {integrity: sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==}
@@ -5264,7 +6167,7 @@ snapshots:
'@adobe/css-tools@4.4.4': {}
- '@apollo/client@4.2.3(graphql@16.14.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.2)':
+ '@apollo/client@4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)))(graphql@16.14.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.2)':
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2)
'@wry/caches': 1.0.1
@@ -5276,9 +6179,17 @@ snapshots:
rxjs: 7.8.2
tslib: 2.8.1
optionalDependencies:
+ graphql-ws: 6.0.8(graphql@16.14.2)(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@ardatan/relay-compiler@13.0.1(graphql@16.14.2)':
+ dependencies:
+ '@babel/runtime': 7.29.7
+ graphql: 16.14.2
+ immutable: 5.1.6
+ invariant: 2.2.4
+
'@asamuzakjp/css-color@3.2.0':
dependencies:
'@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
@@ -5349,10 +6260,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-plugin-utils@7.29.7': {}
+
'@babel/helper-string-parser@7.27.1': {}
+ '@babel/helper-string-parser@7.29.7': {}
+
'@babel/helper-validator-identifier@7.28.5': {}
+ '@babel/helper-validator-identifier@7.29.7': {}
+
'@babel/helper-validator-option@7.27.1': {}
'@babel/helpers@7.28.6':
@@ -5364,6 +6281,15 @@ snapshots:
dependencies:
'@babel/types': 7.29.0
+ '@babel/parser@7.29.7':
+ dependencies:
+ '@babel/types': 7.29.7
+
+ '@babel/plugin-syntax-import-assertions@7.29.7(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.29.7
+
'@babel/runtime@7.28.6': {}
'@babel/runtime@7.29.7': {}
@@ -5391,6 +6317,11 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
+ '@babel/types@7.29.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+
'@bcoe/v8-coverage@1.0.2': {}
'@choojs/findup@0.2.1':
@@ -5623,6 +6554,23 @@ snapshots:
'@emotion/weak-memoize@0.4.0': {}
+ '@envelop/core@5.5.1':
+ dependencies:
+ '@envelop/instrumentation': 1.0.0
+ '@envelop/types': 5.2.1
+ '@whatwg-node/promise-helpers': 1.3.2
+ tslib: 2.8.1
+
+ '@envelop/instrumentation@1.0.0':
+ dependencies:
+ '@whatwg-node/promise-helpers': 1.3.2
+ tslib: 2.8.1
+
+ '@envelop/types@5.2.1':
+ dependencies:
+ '@whatwg-node/promise-helpers': 1.3.2
+ tslib: 2.8.1
+
'@esbuild/aix-ppc64@0.27.3':
optional: true
@@ -5701,9 +6649,9 @@ snapshots:
'@esbuild/win32-x64@0.27.3':
optional: true
- '@eslint-community/eslint-utils@4.9.1(eslint@9.39.3)':
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.3(jiti@2.7.0))':
dependencies:
- eslint: 9.39.3
+ eslint: 9.39.3(jiti@2.7.0)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.2': {}
@@ -5747,6 +6695,8 @@ snapshots:
'@eslint/core': 0.17.0
levn: 0.4.1
+ '@fastify/busboy@3.2.0': {}
+
'@floating-ui/core@1.7.5':
dependencies:
'@floating-ui/utils': 0.2.11
@@ -5772,6 +6722,403 @@ snapshots:
'@floating-ui/utils@0.2.11': {}
+ '@graphql-codegen/add@7.0.1(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/cli@7.1.2(@types/node@25.9.2)(bufferutil@4.1.0)(graphql@16.14.2)(typescript@5.9.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@babel/generator': 7.29.1
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
+ '@graphql-codegen/client-preset': 6.0.1(graphql@16.14.2)
+ '@graphql-codegen/core': 6.1.0(graphql@16.14.2)
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-tools/apollo-engine-loader': 8.0.30(graphql@16.14.2)
+ '@graphql-tools/code-file-loader': 8.1.32(graphql@16.14.2)
+ '@graphql-tools/git-loader': 8.0.36(graphql@16.14.2)
+ '@graphql-tools/github-loader': 9.1.2(@types/node@25.9.2)(graphql@16.14.2)
+ '@graphql-tools/graphql-file-loader': 8.1.14(graphql@16.14.2)
+ '@graphql-tools/json-file-loader': 8.0.28(graphql@16.14.2)
+ '@graphql-tools/load': 8.1.10(graphql@16.14.2)
+ '@graphql-tools/merge': 9.1.9(graphql@16.14.2)
+ '@graphql-tools/url-loader': 9.1.2(@types/node@25.9.2)(bufferutil@4.1.0)(graphql@16.14.2)(utf-8-validate@5.0.10)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@inquirer/prompts': 8.5.2(@types/node@25.9.2)
+ '@whatwg-node/fetch': 0.10.13
+ chalk: 5.6.2
+ cosmiconfig: 9.0.2(typescript@5.9.3)
+ debounce: 3.0.0
+ detect-indent: 7.0.2
+ graphql: 16.14.2
+ graphql-config: 5.1.6(@types/node@25.9.2)(bufferutil@4.1.0)(graphql@16.14.2)(typescript@5.9.3)(utf-8-validate@5.0.10)
+ is-glob: 4.0.3
+ jiti: 2.7.0
+ json-to-pretty-yaml: 1.2.2
+ listr2: 10.2.1
+ log-symbols: 7.0.1
+ micromatch: 4.0.8
+ shell-quote: 1.8.4
+ string-env-interpolation: 1.0.1
+ ts-log: 3.0.2
+ tslib: 2.8.1
+ yaml: 2.9.0
+ yargs: 18.0.0
+ transitivePeerDependencies:
+ - '@fastify/websocket'
+ - '@types/node'
+ - bufferutil
+ - cosmiconfig-toml-loader
+ - crossws
+ - graphql-sock
+ - supports-color
+ - typescript
+ - utf-8-validate
+
+ '@graphql-codegen/client-preset@6.0.1(graphql@16.14.2)':
+ dependencies:
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/template': 7.28.6
+ '@graphql-codegen/add': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/gql-tag-operations': 6.0.1(graphql@16.14.2)
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/typed-document-node': 7.0.3(graphql@16.14.2)
+ '@graphql-codegen/typescript': 6.0.2(graphql@16.14.2)
+ '@graphql-codegen/typescript-operations': 6.0.3(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ '@graphql-tools/documents': 1.0.1(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/core@6.1.0(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-tools/schema': 10.0.33(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/gql-tag-operations@6.0.1(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/near-operation-file-preset@5.2.1(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/add': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ parse-filepath: 1.0.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/plugin-helpers@7.0.1(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ change-case-all: 2.1.0
+ common-tags: 1.8.2
+ graphql: 16.14.2
+ import-from: 4.0.0
+ tslib: 2.8.1
+
+ '@graphql-codegen/schema-ast@6.0.1(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/typed-document-node@7.0.3(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ change-case-all: 2.1.0
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/typescript-operations@6.0.3(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/schema-ast': 6.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/typescript@6.0.2(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/schema-ast': 6.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/visitor-plugin-common@7.1.0(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-tools/optimize': 2.0.0(graphql@16.14.2)
+ '@graphql-tools/relay-operation-optimizer': 7.1.4(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ change-case-all: 2.1.0
+ dependency-graph: 1.0.0
+ graphql: 16.14.2
+ graphql-tag: 2.12.6(graphql@16.14.2)
+ parse-filepath: 1.0.2
+ tslib: 2.8.1
+
+ '@graphql-hive/signal@2.0.0': {}
+
+ '@graphql-tools/apollo-engine-loader@8.0.30(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@whatwg-node/fetch': 0.10.13
+ graphql: 16.14.2
+ sync-fetch: 0.6.0
+ tslib: 2.8.1
+
+ '@graphql-tools/batch-execute@10.0.8(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@whatwg-node/promise-helpers': 1.3.2
+ dataloader: 2.2.3
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-tools/code-file-loader@8.1.32(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ globby: 11.1.0
+ graphql: 16.14.2
+ tslib: 2.8.1
+ unixify: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@graphql-tools/delegate@12.0.17(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/batch-execute': 10.0.8(graphql@16.14.2)
+ '@graphql-tools/executor': 1.5.3(graphql@16.14.2)
+ '@graphql-tools/schema': 10.0.33(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@repeaterjs/repeater': 3.1.0
+ '@whatwg-node/promise-helpers': 1.3.2
+ dataloader: 2.2.3
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-tools/documents@1.0.1(graphql@16.14.2)':
+ dependencies:
+ graphql: 16.14.2
+ lodash.sortby: 4.7.0
+ tslib: 2.8.1
+
+ '@graphql-tools/executor-common@1.0.6(graphql@16.14.2)':
+ dependencies:
+ '@envelop/core': 5.5.1
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+
+ '@graphql-tools/executor-graphql-ws@3.1.5(bufferutil@4.1.0)(graphql@16.14.2)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@graphql-tools/executor-common': 1.0.6(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@whatwg-node/disposablestack': 0.0.6
+ graphql: 16.14.2
+ graphql-ws: 6.0.8(graphql@16.14.2)(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))
+ isows: 1.0.7(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))
+ tslib: 2.8.1
+ ws: 8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - '@fastify/websocket'
+ - bufferutil
+ - crossws
+ - utf-8-validate
+
+ '@graphql-tools/executor-http@3.3.0(@types/node@25.9.2)(graphql@16.14.2)':
+ dependencies:
+ '@graphql-hive/signal': 2.0.0
+ '@graphql-tools/executor-common': 1.0.6(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@repeaterjs/repeater': 3.1.0
+ '@whatwg-node/disposablestack': 0.0.6
+ '@whatwg-node/fetch': 0.10.13
+ '@whatwg-node/promise-helpers': 1.3.2
+ graphql: 16.14.2
+ meros: 1.3.2(@types/node@25.9.2)
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@graphql-tools/executor-legacy-ws@1.1.28(bufferutil@4.1.0)(graphql@16.14.2)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@types/ws': 8.18.1
+ graphql: 16.14.2
+ isomorphic-ws: 5.0.0(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))
+ tslib: 2.8.1
+ ws: 8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
+ '@graphql-tools/executor@1.5.3(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2)
+ '@repeaterjs/repeater': 3.1.0
+ '@whatwg-node/disposablestack': 0.0.6
+ '@whatwg-node/promise-helpers': 1.3.2
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-tools/git-loader@8.0.36(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ is-glob: 4.0.3
+ micromatch: 4.0.8
+ tslib: 2.8.1
+ unixify: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@graphql-tools/github-loader@9.1.2(@types/node@25.9.2)(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/executor-http': 3.3.0(@types/node@25.9.2)(graphql@16.14.2)
+ '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@whatwg-node/fetch': 0.10.13
+ '@whatwg-node/promise-helpers': 1.3.2
+ graphql: 16.14.2
+ sync-fetch: 0.6.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@types/node'
+ - supports-color
+
+ '@graphql-tools/graphql-file-loader@8.1.14(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/import': 7.1.14(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ globby: 11.1.0
+ graphql: 16.14.2
+ tslib: 2.8.1
+ unixify: 1.0.0
+
+ '@graphql-tools/graphql-tag-pluck@8.3.31(graphql@16.14.2)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/parser': 7.29.7
+ '@babel/plugin-syntax-import-assertions': 7.29.7(@babel/core@7.29.0)
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@graphql-tools/import@7.1.14(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ resolve-from: 5.0.0
+ tslib: 2.8.1
+
+ '@graphql-tools/json-file-loader@8.0.28(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ globby: 11.1.0
+ graphql: 16.14.2
+ tslib: 2.8.1
+ unixify: 1.0.0
+
+ '@graphql-tools/load@8.1.10(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/schema': 10.0.33(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ p-limit: 3.1.0
+ tslib: 2.8.1
+
+ '@graphql-tools/merge@9.1.9(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-tools/optimize@2.0.0(graphql@16.14.2)':
+ dependencies:
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-tools/relay-operation-optimizer@7.1.4(graphql@16.14.2)':
+ dependencies:
+ '@ardatan/relay-compiler': 13.0.1(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-tools/schema@10.0.33(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/merge': 9.1.9(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-tools/url-loader@9.1.2(@types/node@25.9.2)(bufferutil@4.1.0)(graphql@16.14.2)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@graphql-tools/executor-graphql-ws': 3.1.5(bufferutil@4.1.0)(graphql@16.14.2)(utf-8-validate@5.0.10)
+ '@graphql-tools/executor-http': 3.3.0(@types/node@25.9.2)(graphql@16.14.2)
+ '@graphql-tools/executor-legacy-ws': 1.1.28(bufferutil@4.1.0)(graphql@16.14.2)(utf-8-validate@5.0.10)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@graphql-tools/wrap': 11.1.16(graphql@16.14.2)
+ '@types/ws': 8.18.1
+ '@whatwg-node/fetch': 0.10.13
+ '@whatwg-node/promise-helpers': 1.3.2
+ graphql: 16.14.2
+ isomorphic-ws: 5.0.0(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))
+ sync-fetch: 0.6.0
+ tslib: 2.8.1
+ ws: 8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - '@fastify/websocket'
+ - '@types/node'
+ - bufferutil
+ - crossws
+ - utf-8-validate
+
+ '@graphql-tools/utils@11.1.0(graphql@16.14.2)':
+ dependencies:
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2)
+ '@whatwg-node/promise-helpers': 1.3.2
+ cross-inspect: 1.0.1
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-tools/wrap@11.1.16(graphql@16.14.2)':
+ dependencies:
+ '@graphql-tools/delegate': 12.0.17(graphql@16.14.2)
+ '@graphql-tools/schema': 10.0.33(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@whatwg-node/promise-helpers': 1.3.2
+ graphql: 16.14.2
+ tslib: 2.8.1
+
'@graphql-typed-document-node/core@3.2.0(graphql@16.14.2)':
dependencies:
graphql: 16.14.2
@@ -5824,49 +7171,164 @@ snapshots:
'@inquirer/ansi@1.0.2': {}
- '@inquirer/confirm@5.1.21(@types/node@25.3.3)':
+ '@inquirer/ansi@2.0.7': {}
+
+ '@inquirer/checkbox@5.2.1(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/confirm@5.1.21(@types/node@25.3.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.3.3)
+ '@inquirer/type': 3.0.10(@types/node@25.3.3)
+ optionalDependencies:
+ '@types/node': 25.3.3
+ optional: true
+
+ '@inquirer/confirm@5.1.21(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.9.2)
+ '@inquirer/type': 3.0.10(@types/node@25.9.2)
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/confirm@6.1.1(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/core@10.3.2(@types/node@25.3.3)':
+ dependencies:
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@25.3.3)
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.3
+ optionalDependencies:
+ '@types/node': 25.3.3
+ optional: true
+
+ '@inquirer/core@10.3.2(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@25.9.2)
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.3
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/core@11.2.1(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
+ cli-width: 4.1.0
+ fast-wrap-ansi: 0.2.2
+ mute-stream: 3.0.0
+ signal-exit: 4.1.0
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/editor@5.2.2(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/external-editor': 3.0.3(@types/node@25.9.2)
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/expand@5.1.1(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/external-editor@3.0.3(@types/node@25.9.2)':
+ dependencies:
+ chardet: 2.1.1
+ iconv-lite: 0.7.2
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/figures@1.0.15': {}
+
+ '@inquirer/figures@2.0.7': {}
+
+ '@inquirer/input@5.1.2(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/number@4.1.1(@types/node@25.9.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.3.3)
- '@inquirer/type': 3.0.10(@types/node@25.3.3)
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
optionalDependencies:
- '@types/node': 25.3.3
- optional: true
+ '@types/node': 25.9.2
- '@inquirer/confirm@5.1.21(@types/node@25.9.2)':
+ '@inquirer/password@5.1.1(@types/node@25.9.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.9.2)
- '@inquirer/type': 3.0.10(@types/node@25.9.2)
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
optionalDependencies:
'@types/node': 25.9.2
- '@inquirer/core@10.3.2(@types/node@25.3.3)':
+ '@inquirer/prompts@8.5.2(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/checkbox': 5.2.1(@types/node@25.9.2)
+ '@inquirer/confirm': 6.1.1(@types/node@25.9.2)
+ '@inquirer/editor': 5.2.2(@types/node@25.9.2)
+ '@inquirer/expand': 5.1.1(@types/node@25.9.2)
+ '@inquirer/input': 5.1.2(@types/node@25.9.2)
+ '@inquirer/number': 4.1.1(@types/node@25.9.2)
+ '@inquirer/password': 5.1.1(@types/node@25.9.2)
+ '@inquirer/rawlist': 5.3.1(@types/node@25.9.2)
+ '@inquirer/search': 4.2.1(@types/node@25.9.2)
+ '@inquirer/select': 5.2.1(@types/node@25.9.2)
+ optionalDependencies:
+ '@types/node': 25.9.2
+
+ '@inquirer/rawlist@5.3.1(@types/node@25.9.2)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.3.3)
- cli-width: 4.1.0
- mute-stream: 2.0.0
- signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.3
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
optionalDependencies:
- '@types/node': 25.3.3
- optional: true
+ '@types/node': 25.9.2
- '@inquirer/core@10.3.2(@types/node@25.9.2)':
+ '@inquirer/search@4.2.1(@types/node@25.9.2)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.9.2)
- cli-width: 4.1.0
- mute-stream: 2.0.0
- signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.3
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
optionalDependencies:
'@types/node': 25.9.2
- '@inquirer/figures@1.0.15': {}
+ '@inquirer/select@5.2.1(@types/node@25.9.2)':
+ dependencies:
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@25.9.2)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@25.9.2)
+ optionalDependencies:
+ '@types/node': 25.9.2
'@inquirer/type@3.0.10(@types/node@25.3.3)':
optionalDependencies:
@@ -5877,6 +7339,10 @@ snapshots:
optionalDependencies:
'@types/node': 25.9.2
+ '@inquirer/type@4.0.7(@types/node@25.9.2)':
+ optionalDependencies:
+ '@types/node': 25.9.2
+
'@jridgewell/gen-mapping@0.3.13':
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
@@ -6167,6 +7633,18 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
+ '@nodelib/fs.scandir@2.1.5':
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
+
+ '@nodelib/fs.stat@2.0.5': {}
+
+ '@nodelib/fs.walk@1.2.8':
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.20.1
+
'@open-draft/deferred-promise@2.2.0': {}
'@open-draft/logger@0.3.0':
@@ -6343,6 +7821,8 @@ snapshots:
react: 18.3.1
react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@repeaterjs/repeater@3.1.0': {}
+
'@rolldown/pluginutils@1.0.0-beta.27': {}
'@rollup/rollup-android-arm-eabi@4.59.0':
@@ -6720,17 +8200,21 @@ snapshots:
'@types/webxr@0.5.24': {}
+ '@types/ws@8.18.1':
+ dependencies:
+ '@types/node': 25.9.2
+
'@types/zen-observable@0.8.0': {}
- '@typescript-eslint/eslint-plugin@8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.3)(typescript@5.9.3))(eslint@9.39.3)(typescript@5.9.3)':
+ '@typescript-eslint/eslint-plugin@8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3))(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.56.1(eslint@9.39.3)(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)
'@typescript-eslint/scope-manager': 8.56.1
- '@typescript-eslint/type-utils': 8.56.1(eslint@9.39.3)(typescript@5.9.3)
- '@typescript-eslint/utils': 8.56.1(eslint@9.39.3)(typescript@5.9.3)
+ '@typescript-eslint/type-utils': 8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.56.1
- eslint: 9.39.3
+ eslint: 9.39.3(jiti@2.7.0)
ignore: 7.0.5
natural-compare: 1.4.0
ts-api-utils: 2.4.0(typescript@5.9.3)
@@ -6738,14 +8222,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.56.1(eslint@9.39.3)(typescript@5.9.3)':
+ '@typescript-eslint/parser@8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.56.1
'@typescript-eslint/types': 8.56.1
'@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.56.1
debug: 4.4.3
- eslint: 9.39.3
+ eslint: 9.39.3(jiti@2.7.0)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -6768,13 +8252,13 @@ snapshots:
dependencies:
typescript: 5.9.3
- '@typescript-eslint/type-utils@8.56.1(eslint@9.39.3)(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)':
dependencies:
'@typescript-eslint/types': 8.56.1
'@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.56.1(eslint@9.39.3)(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)
debug: 4.4.3
- eslint: 9.39.3
+ eslint: 9.39.3(jiti@2.7.0)
ts-api-utils: 2.4.0(typescript@5.9.3)
typescript: 5.9.3
transitivePeerDependencies:
@@ -6797,13 +8281,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.56.1(eslint@9.39.3)(typescript@5.9.3)':
+ '@typescript-eslint/utils@8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.3)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.3(jiti@2.7.0))
'@typescript-eslint/scope-manager': 8.56.1
'@typescript-eslint/types': 8.56.1
'@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
- eslint: 9.39.3
+ eslint: 9.39.3(jiti@2.7.0)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -6956,15 +8440,15 @@ snapshots:
d3-time-format: 4.1.0
internmap: 2.0.3
- '@vitejs/plugin-react-swc@3.11.0(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))':
+ '@vitejs/plugin-react-swc@3.11.0(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))':
dependencies:
'@rolldown/pluginutils': 1.0.0-beta.27
'@swc/core': 1.15.18
- vite: 7.3.1(@types/node@25.9.2)(terser@5.48.0)
+ vite: 7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
transitivePeerDependencies:
- '@swc/helpers'
- '@vitest/coverage-v8@4.0.18(vitest@4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0))':
+ '@vitest/coverage-v8@4.0.18(vitest@4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0))':
dependencies:
'@bcoe/v8-coverage': 1.0.2
'@vitest/utils': 4.0.18
@@ -6976,7 +8460,7 @@ snapshots:
obug: 2.1.1
std-env: 3.10.0
tinyrainbow: 3.0.3
- vitest: 4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)
+ vitest: 4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0)
'@vitest/expect@4.0.18':
dependencies:
@@ -6987,23 +8471,23 @@ snapshots:
chai: 6.2.2
tinyrainbow: 3.0.3
- '@vitest/mocker@4.0.18(msw@2.12.10(@types/node@25.3.3)(typescript@5.9.3))(vite@7.3.1(@types/node@25.3.3)(terser@5.48.0))':
+ '@vitest/mocker@4.0.18(msw@2.12.10(@types/node@25.3.3)(typescript@5.9.3))(vite@7.3.1(@types/node@25.3.3)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))':
dependencies:
'@vitest/spy': 4.0.18
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
msw: 2.12.10(@types/node@25.3.3)(typescript@5.9.3)
- vite: 7.3.1(@types/node@25.3.3)(terser@5.48.0)
+ vite: 7.3.1(@types/node@25.3.3)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
- '@vitest/mocker@4.0.18(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))':
+ '@vitest/mocker@4.0.18(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))':
dependencies:
'@vitest/spy': 4.0.18
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
msw: 2.12.10(@types/node@25.9.2)(typescript@5.9.3)
- vite: 7.3.1(@types/node@25.9.2)(terser@5.48.0)
+ vite: 7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
'@vitest/pretty-format@4.0.18':
dependencies:
@@ -7103,6 +8587,27 @@ snapshots:
'@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
+ '@whatwg-node/disposablestack@0.0.6':
+ dependencies:
+ '@whatwg-node/promise-helpers': 1.3.2
+ tslib: 2.8.1
+
+ '@whatwg-node/fetch@0.10.13':
+ dependencies:
+ '@whatwg-node/node-fetch': 0.8.6
+ urlpattern-polyfill: 10.1.0
+
+ '@whatwg-node/node-fetch@0.8.6':
+ dependencies:
+ '@fastify/busboy': 3.2.0
+ '@whatwg-node/disposablestack': 0.0.6
+ '@whatwg-node/promise-helpers': 1.3.2
+ tslib: 2.8.1
+
+ '@whatwg-node/promise-helpers@1.3.2':
+ dependencies:
+ tslib: 2.8.1
+
'@wry/caches@1.0.1':
dependencies:
tslib: 2.8.1
@@ -7190,8 +8695,14 @@ snapshots:
amdefine@1.0.1:
optional: true
+ ansi-escapes@7.3.0:
+ dependencies:
+ environment: 1.1.0
+
ansi-regex@5.0.1: {}
+ ansi-regex@6.2.2: {}
+
ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
@@ -7202,6 +8713,8 @@ snapshots:
ansi-styles@5.2.0: {}
+ ansi-styles@6.2.3: {}
+
apollo-link-retry@2.2.16(graphql@16.14.2):
dependencies:
'@types/zen-observable': 0.8.0
@@ -7248,6 +8761,8 @@ snapshots:
array-range@1.0.1: {}
+ array-union@2.1.0: {}
+
asap@2.0.6: {}
assertion-error@2.0.1: {}
@@ -7260,6 +8775,8 @@ snapshots:
asynckit@0.4.0: {}
+ auto-bind@5.0.1: {}
+
axios@1.13.6:
dependencies:
follow-redirects: 1.15.11
@@ -7324,6 +8841,10 @@ snapshots:
dependencies:
balanced-match: 4.0.4
+ braces@3.0.3:
+ dependencies:
+ fill-range: 7.1.1
+
browserslist@4.28.1:
dependencies:
baseline-browser-mapping: 2.10.0
@@ -7400,12 +8921,34 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ chalk@5.6.2: {}
+
+ change-case-all@2.1.0:
+ dependencies:
+ change-case: 5.4.4
+ sponge-case: 2.0.3
+ swap-case: 3.0.3
+ title-case: 3.0.3
+
+ change-case@5.4.4: {}
+
+ chardet@2.1.1: {}
+
chrome-trace-event@1.0.4: {}
clamp@1.0.1: {}
classnames@2.5.1: {}
+ cli-cursor@5.0.0:
+ dependencies:
+ restore-cursor: 5.1.0
+
+ cli-truncate@5.2.0:
+ dependencies:
+ slice-ansi: 8.0.0
+ string-width: 8.2.1
+
cli-width@4.1.0: {}
cliui@2.1.0:
@@ -7420,6 +8963,12 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ cliui@9.0.1:
+ dependencies:
+ string-width: 7.2.0
+ strip-ansi: 7.2.0
+ wrap-ansi: 9.0.2
+
clsx@2.1.1: {}
color-alpha@1.0.4:
@@ -7475,6 +9024,8 @@ snapshots:
commander@7.2.0: {}
+ common-tags@1.8.2: {}
+
concat-map@0.0.1: {}
concat-stream@1.6.2:
@@ -7515,6 +9066,24 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.2
+ cosmiconfig@8.3.6(typescript@5.9.3):
+ dependencies:
+ import-fresh: 3.3.1
+ js-yaml: 4.1.1
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ optionalDependencies:
+ typescript: 5.9.3
+
+ cosmiconfig@9.0.2(typescript@5.9.3):
+ dependencies:
+ env-paths: 2.2.1
+ import-fresh: 3.3.1
+ js-yaml: 4.1.1
+ parse-json: 5.2.0
+ optionalDependencies:
+ typescript: 5.9.3
+
country-regex@1.1.0: {}
cross-env@7.0.3:
@@ -7527,6 +9096,10 @@ snapshots:
transitivePeerDependencies:
- encoding
+ cross-inspect@1.0.1:
+ dependencies:
+ tslib: 2.8.1
+
cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
@@ -7827,13 +9400,19 @@ snapshots:
es5-ext: 0.10.64
type: 2.7.3
+ data-uri-to-buffer@4.0.1: {}
+
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
+ dataloader@2.2.3: {}
+
dayjs@1.10.7: {}
+ debounce@3.0.0: {}
+
debug@2.6.9:
dependencies:
ms: 2.0.0
@@ -7860,6 +9439,8 @@ snapshots:
delayed-stream@1.0.0: {}
+ dependency-graph@1.0.0: {}
+
dequal@2.0.3: {}
detect-gpu@5.0.70:
@@ -7872,6 +9453,10 @@ snapshots:
detect-newline@4.0.1: {}
+ dir-glob@3.0.1:
+ dependencies:
+ path-type: 4.0.0
+
dom-accessibility-api@0.5.16: {}
dom-accessibility-api@0.6.3: {}
@@ -7923,6 +9508,8 @@ snapshots:
dependencies:
strongly-connected-components: 1.0.1
+ emoji-regex@10.6.0: {}
+
emoji-regex@8.0.0: {}
end-of-stream@1.4.5:
@@ -7936,6 +9523,10 @@ snapshots:
entities@6.0.1: {}
+ env-paths@2.2.1: {}
+
+ environment@1.1.0: {}
+
error-ex@1.3.4:
dependencies:
is-arrayish: 0.2.1
@@ -8042,13 +9633,13 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-plugin-react-hooks@5.2.0(eslint@9.39.3):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.39.3(jiti@2.7.0)):
dependencies:
- eslint: 9.39.3
+ eslint: 9.39.3(jiti@2.7.0)
- eslint-plugin-react-refresh@0.4.26(eslint@9.39.3):
+ eslint-plugin-react-refresh@0.4.26(eslint@9.39.3(jiti@2.7.0)):
dependencies:
- eslint: 9.39.3
+ eslint: 9.39.3(jiti@2.7.0)
eslint-scope@5.1.1:
dependencies:
@@ -8066,9 +9657,9 @@ snapshots:
eslint-visitor-keys@5.0.1: {}
- eslint@9.39.3:
+ eslint@9.39.3(jiti@2.7.0):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.3)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.3(jiti@2.7.0))
'@eslint-community/regexpp': 4.12.2
'@eslint/config-array': 0.21.1
'@eslint/config-helpers': 0.4.2
@@ -8102,6 +9693,8 @@ snapshots:
minimatch: 3.1.5
natural-compare: 1.4.0
optionator: 0.9.4
+ optionalDependencies:
+ jiti: 2.7.0
transitivePeerDependencies:
- supports-color
@@ -8155,6 +9748,8 @@ snapshots:
d: 1.0.2
es5-ext: 0.10.64
+ eventemitter3@5.0.4: {}
+
events@3.3.0: {}
expect-type@1.3.0: {}
@@ -8172,6 +9767,14 @@ snapshots:
fast-equals@4.0.3: {}
+ fast-glob@3.3.3:
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.8
+
fast-isnumeric@1.1.4:
dependencies:
is-string-blank: 1.0.1
@@ -8180,10 +9783,24 @@ snapshots:
fast-levenshtein@2.0.6: {}
+ fast-string-truncated-width@3.0.3: {}
+
+ fast-string-width@3.0.2:
+ dependencies:
+ fast-string-truncated-width: 3.0.3
+
fast-uri@3.1.0: {}
fast-uri@3.1.2: {}
+ fast-wrap-ansi@0.2.2:
+ dependencies:
+ fast-string-width: 3.0.2
+
+ fastq@1.20.1:
+ dependencies:
+ reusify: 1.1.0
+
fbjs-css-vars@1.0.2: {}
fbjs@3.0.5:
@@ -8202,6 +9819,11 @@ snapshots:
optionalDependencies:
picomatch: 4.0.3
+ fetch-blob@3.2.0:
+ dependencies:
+ node-domexception: 1.0.0
+ web-streams-polyfill: 3.3.3
+
fflate@0.6.10: {}
fflate@0.8.2: {}
@@ -8210,6 +9832,10 @@ snapshots:
dependencies:
flat-cache: 4.0.1
+ fill-range@7.1.1:
+ dependencies:
+ to-regex-range: 5.0.1
+
find-root@1.1.0: {}
find-up@5.0.0:
@@ -8246,6 +9872,10 @@ snapshots:
hasown: 2.0.2
mime-types: 2.1.35
+ formdata-polyfill@4.0.10:
+ dependencies:
+ fetch-blob: 3.2.0
+
from2@2.3.0:
dependencies:
inherits: 2.0.4
@@ -8266,6 +9896,8 @@ snapshots:
get-canvas-context@1.0.2: {}
+ get-east-asian-width@1.6.0: {}
+
get-graphql-schema@2.1.2:
dependencies:
chalk: 2.4.2
@@ -8333,6 +9965,10 @@ snapshots:
pick-by-alias: 1.2.0
weak-map: 1.0.8
+ glob-parent@5.1.2:
+ dependencies:
+ is-glob: 4.0.3
+
glob-parent@6.0.2:
dependencies:
is-glob: 4.0.3
@@ -8349,6 +9985,15 @@ snapshots:
globals@16.5.0: {}
+ globby@11.1.0:
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.3
+ ignore: 5.3.2
+ merge2: 1.4.1
+ slash: 3.0.0
+
glsl-inject-defines@1.0.3:
dependencies:
glsl-token-inject-block: 1.1.0
@@ -8437,11 +10082,39 @@ snapshots:
graceful-fs@4.2.11: {}
+ graphql-config@5.1.6(@types/node@25.9.2)(bufferutil@4.1.0)(graphql@16.14.2)(typescript@5.9.3)(utf-8-validate@5.0.10):
+ dependencies:
+ '@graphql-tools/graphql-file-loader': 8.1.14(graphql@16.14.2)
+ '@graphql-tools/json-file-loader': 8.0.28(graphql@16.14.2)
+ '@graphql-tools/load': 8.1.10(graphql@16.14.2)
+ '@graphql-tools/merge': 9.1.9(graphql@16.14.2)
+ '@graphql-tools/url-loader': 9.1.2(@types/node@25.9.2)(bufferutil@4.1.0)(graphql@16.14.2)(utf-8-validate@5.0.10)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ cosmiconfig: 8.3.6(typescript@5.9.3)
+ graphql: 16.14.2
+ jiti: 2.7.0
+ minimatch: 10.2.4
+ string-env-interpolation: 1.0.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@fastify/websocket'
+ - '@types/node'
+ - bufferutil
+ - crossws
+ - typescript
+ - utf-8-validate
+
graphql-tag@2.12.6(graphql@16.14.2):
dependencies:
graphql: 16.14.2
tslib: 2.8.1
+ graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)):
+ dependencies:
+ graphql: 16.14.2
+ optionalDependencies:
+ ws: 8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)
+
graphql@14.7.0:
dependencies:
iterall: 1.3.0
@@ -8520,6 +10193,10 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
+ iconv-lite@0.7.2:
+ dependencies:
+ safer-buffer: 2.1.2
+
icss-utils@5.1.0(postcss@8.5.15):
dependencies:
postcss: 8.5.15
@@ -8534,6 +10211,8 @@ snapshots:
immer@11.1.8: {}
+ immutable@5.1.6: {}
+
import-fresh@2.0.0:
dependencies:
caller-path: 2.0.0
@@ -8544,6 +10223,8 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
+ import-from@4.0.0: {}
+
imurmurhash@0.1.4: {}
indent-string@4.0.0: {}
@@ -8560,6 +10241,11 @@ snapshots:
iota-array@1.0.0: {}
+ is-absolute@1.0.0:
+ dependencies:
+ is-relative: 1.0.0
+ is-windows: 1.0.2
+
is-arrayish@0.2.1: {}
is-browser@2.1.0: {}
@@ -8584,6 +10270,10 @@ snapshots:
is-fullwidth-code-point@3.0.0: {}
+ is-fullwidth-code-point@5.1.0:
+ dependencies:
+ get-east-asian-width: 1.6.0
+
is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
@@ -8592,6 +10282,8 @@ snapshots:
is-node-process@1.2.0: {}
+ is-number@7.0.0: {}
+
is-obj@1.0.1: {}
is-plain-obj@1.1.0: {}
@@ -8602,12 +10294,24 @@ snapshots:
is-promise@2.2.2: {}
+ is-relative@1.0.0:
+ dependencies:
+ is-unc-path: 1.0.0
+
is-string-blank@1.0.1: {}
is-svg-path@1.0.2: {}
is-typedarray@1.0.0: {}
+ is-unc-path@1.0.0:
+ dependencies:
+ unc-path-regex: 0.1.2
+
+ is-unicode-supported@2.1.0: {}
+
+ is-windows@1.0.2: {}
+
isarray@0.0.1: {}
isarray@1.0.0: {}
@@ -8620,6 +10324,14 @@ snapshots:
isndarray@1.0.0: {}
+ isomorphic-ws@5.0.0(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)):
+ dependencies:
+ ws: 8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)
+
+ isows@1.0.7(ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)):
+ dependencies:
+ ws: 8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10)
+
istanbul-lib-coverage@3.2.2: {}
istanbul-lib-report@3.0.1:
@@ -8648,6 +10360,8 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
+ jiti@2.7.0: {}
+
js-tokens@10.0.0: {}
js-tokens@4.0.0: {}
@@ -8704,6 +10418,11 @@ snapshots:
json-stringify-pretty-compact@4.0.0: {}
+ json-to-pretty-yaml@1.2.2:
+ dependencies:
+ remedial: 1.0.8
+ remove-trailing-spaces: 1.0.9
+
json5@2.2.3: {}
kdbush@3.0.0: {}
@@ -8735,6 +10454,14 @@ snapshots:
lines-and-columns@1.2.4: {}
+ listr2@10.2.1:
+ dependencies:
+ cli-truncate: 5.2.0
+ eventemitter3: 5.0.4
+ log-update: 6.1.0
+ rfdc: 1.4.1
+ wrap-ansi: 10.0.0
+
loader-runner@4.3.2: {}
locate-path@6.0.0:
@@ -8743,10 +10470,25 @@ snapshots:
lodash.merge@4.6.2: {}
+ lodash.sortby@4.7.0: {}
+
lodash@4.17.23: {}
lodash@4.18.1: {}
+ log-symbols@7.0.1:
+ dependencies:
+ is-unicode-supported: 2.1.0
+ yoctocolors: 2.1.2
+
+ log-update@6.1.0:
+ dependencies:
+ ansi-escapes: 7.3.0
+ cli-cursor: 5.0.0
+ slice-ansi: 7.1.2
+ strip-ansi: 7.2.0
+ wrap-ansi: 9.0.2
+
loglevel@1.9.2: {}
longest@1.0.1: {}
@@ -8786,6 +10528,8 @@ snapshots:
dependencies:
semver: 7.7.4
+ map-cache@0.2.2: {}
+
map-limit@0.0.1:
dependencies:
once: 1.3.3
@@ -8870,6 +10614,12 @@ snapshots:
merge-stream@2.0.0: {}
+ merge2@1.4.1: {}
+
+ meros@1.3.2(@types/node@25.9.2):
+ optionalDependencies:
+ '@types/node': 25.9.2
+
meshline@3.3.1(three@0.164.1):
dependencies:
three: 0.164.1
@@ -8878,6 +10628,11 @@ snapshots:
messagepack@1.1.12: {}
+ micromatch@4.0.8:
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.2
+
mime-db@1.52.0: {}
mime-db@1.54.0: {}
@@ -8886,6 +10641,8 @@ snapshots:
dependencies:
mime-db: 1.52.0
+ mimic-function@5.0.1: {}
+
min-indent@1.0.1: {}
minimatch@10.2.4:
@@ -8977,6 +10734,8 @@ snapshots:
mute-stream@2.0.0: {}
+ mute-stream@3.0.0: {}
+
nanoid@3.3.11: {}
nanoid@3.3.12: {}
@@ -9029,16 +10788,28 @@ snapshots:
next-tick@1.1.0: {}
+ node-domexception@1.0.0: {}
+
node-fetch@2.7.0:
dependencies:
whatwg-url: 5.0.0
+ node-fetch@3.3.2:
+ dependencies:
+ data-uri-to-buffer: 4.0.1
+ fetch-blob: 3.2.0
+ formdata-polyfill: 4.0.10
+
node-gyp-build@4.8.4: {}
node-releases@2.0.36: {}
node-releases@2.0.47: {}
+ normalize-path@2.1.1:
+ dependencies:
+ remove-trailing-separator: 1.1.0
+
normalize-svg-path@0.1.0: {}
normalize-svg-path@1.1.0:
@@ -9069,6 +10840,10 @@ snapshots:
dependencies:
wrappy: 1.0.2
+ onetime@7.0.0:
+ dependencies:
+ mimic-function: 5.0.1
+
optimism@0.18.1:
dependencies:
'@wry/caches': 1.0.1
@@ -9103,6 +10878,12 @@ snapshots:
parenthesis@3.1.8: {}
+ parse-filepath@1.0.2:
+ dependencies:
+ is-absolute: 1.0.0
+ map-cache: 0.2.2
+ path-root: 0.1.1
+
parse-json@4.0.0:
dependencies:
error-ex: 1.3.4
@@ -9133,6 +10914,12 @@ snapshots:
path-parse@1.0.7: {}
+ path-root-regex@0.1.2: {}
+
+ path-root@0.1.1:
+ dependencies:
+ path-root-regex: 0.1.2
+
path-to-regexp@6.3.0: {}
path-type@4.0.0: {}
@@ -9150,6 +10937,8 @@ snapshots:
picocolors@1.1.1: {}
+ picomatch@2.3.2: {}
+
picomatch@4.0.3: {}
plotly.js@2.35.3(mapbox-gl@1.13.3)(webpack@5.106.2(postcss@8.5.15)):
@@ -9361,6 +11150,8 @@ snapshots:
punycode@2.3.1: {}
+ queue-microtask@1.2.3: {}
+
quickselect@2.0.0: {}
quickselect@3.0.0: {}
@@ -9682,8 +11473,14 @@ snapshots:
transitivePeerDependencies:
- encoding
+ remedial@1.0.8: {}
+
remove-accents@0.5.0: {}
+ remove-trailing-separator@1.1.0: {}
+
+ remove-trailing-spaces@1.0.9: {}
+
repeat-string@1.6.1: {}
require-directory@2.1.1: {}
@@ -9698,6 +11495,8 @@ snapshots:
resolve-from@4.0.0: {}
+ resolve-from@5.0.0: {}
+
resolve-protobuf-schema@2.1.0:
dependencies:
protocol-buffers-schema: 3.6.1
@@ -9717,8 +11516,17 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ restore-cursor@5.1.0:
+ dependencies:
+ onetime: 7.0.0
+ signal-exit: 4.1.0
+
rettime@0.10.1: {}
+ reusify@1.1.0: {}
+
+ rfdc@1.4.1: {}
+
right-align@0.1.3:
dependencies:
align-text: 0.1.4
@@ -9760,6 +11568,10 @@ snapshots:
rrweb-cssom@0.8.0: {}
+ run-parallel@1.2.0:
+ dependencies:
+ queue-microtask: 1.2.3
+
rw@1.3.3: {}
rxjs@7.8.2:
@@ -9811,12 +11623,26 @@ snapshots:
shebang-regex@3.0.0: {}
+ shell-quote@1.8.4: {}
+
siginfo@2.0.0: {}
signal-exit@4.1.0: {}
signum@1.0.0: {}
+ slash@3.0.0: {}
+
+ slice-ansi@7.1.2:
+ dependencies:
+ ansi-styles: 6.2.3
+ is-fullwidth-code-point: 5.1.0
+
+ slice-ansi@8.0.0:
+ dependencies:
+ ansi-styles: 6.2.3
+ is-fullwidth-code-point: 5.1.0
+
sort-object-keys@2.1.0: {}
sort-package-json@3.6.1:
@@ -9848,6 +11674,8 @@ snapshots:
source-map@0.7.6:
optional: true
+ sponge-case@2.0.3: {}
+
sprintf-js@1.0.3: {}
stack-trace@0.0.9: {}
@@ -9897,6 +11725,8 @@ snapshots:
strict-event-emitter@0.5.1: {}
+ string-env-interpolation@1.0.1: {}
+
string-split-by@1.0.0:
dependencies:
parenthesis: 3.1.8
@@ -9907,6 +11737,17 @@ snapshots:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
+ string-width@7.2.0:
+ dependencies:
+ emoji-regex: 10.6.0
+ get-east-asian-width: 1.6.0
+ strip-ansi: 7.2.0
+
+ string-width@8.2.1:
+ dependencies:
+ get-east-asian-width: 1.6.0
+ strip-ansi: 7.2.0
+
string_decoder@0.10.31: {}
string_decoder@1.1.1:
@@ -9917,6 +11758,10 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
+ strip-ansi@7.2.0:
+ dependencies:
+ ansi-regex: 6.2.2
+
strip-indent@3.0.0:
dependencies:
min-indent: 1.0.1
@@ -9980,8 +11825,16 @@ snapshots:
parse-svg-path: 0.1.2
svg-path-bounds: 1.0.2
+ swap-case@3.0.3: {}
+
symbol-tree@3.2.4: {}
+ sync-fetch@0.6.0:
+ dependencies:
+ node-fetch: 3.3.2
+ timeout-signal: 2.0.0
+ whatwg-mimetype: 4.0.0
+
tabbable@6.4.0: {}
tagged-tag@1.0.0: {}
@@ -10044,6 +11897,8 @@ snapshots:
readable-stream: 2.3.8
xtend: 4.0.2
+ timeout-signal@2.0.0: {}
+
tinybench@2.9.0: {}
tinycolor2@1.6.0: {}
@@ -10061,6 +11916,10 @@ snapshots:
tinyrainbow@3.0.3: {}
+ title-case@3.0.3:
+ dependencies:
+ tslib: 2.8.1
+
tldts-core@6.1.86: {}
tldts-core@7.0.24: {}
@@ -10079,6 +11938,10 @@ snapshots:
dependencies:
parse-unit: 1.0.1
+ to-regex-range@5.0.1:
+ dependencies:
+ is-number: 7.0.0
+
topojson-client@3.1.0:
dependencies:
commander: 2.20.3
@@ -10119,6 +11982,8 @@ snapshots:
dependencies:
tslib: 1.14.1
+ ts-log@3.0.2: {}
+
tslib@1.14.1: {}
tslib@2.8.1: {}
@@ -10179,13 +12044,13 @@ snapshots:
typedarray@0.0.6: {}
- typescript-eslint@8.56.1(eslint@9.39.3)(typescript@5.9.3):
+ typescript-eslint@8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.3)(typescript@5.9.3))(eslint@9.39.3)(typescript@5.9.3)
- '@typescript-eslint/parser': 8.56.1(eslint@9.39.3)(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3))(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)
'@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.56.1(eslint@9.39.3)(typescript@5.9.3)
- eslint: 9.39.3
+ '@typescript-eslint/utils': 8.56.1(eslint@9.39.3(jiti@2.7.0))(typescript@5.9.3)
+ eslint: 9.39.3(jiti@2.7.0)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -10204,12 +12069,18 @@ snapshots:
uglify-to-browserify@1.0.2:
optional: true
+ unc-path-regex@0.1.2: {}
+
undici-types@7.18.2: {}
undici-types@7.24.6: {}
uniq@1.0.1: {}
+ unixify@1.0.0:
+ dependencies:
+ normalize-path: 2.1.1
+
unquote@1.1.1: {}
until-async@3.0.2: {}
@@ -10232,6 +12103,8 @@ snapshots:
dependencies:
punycode: 2.3.1
+ urlpattern-polyfill@10.1.0: {}
+
use-isomorphic-layout-effect@1.2.1(@types/react@18.3.28)(react@18.3.1):
dependencies:
react: 18.3.1
@@ -10274,15 +12147,15 @@ snapshots:
validate.io-number@1.0.3: {}
- vite-plugin-relay@2.1.0(babel-plugin-relay@20.1.1)(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0)):
+ vite-plugin-relay@2.1.0(babel-plugin-relay@20.1.1)(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)):
dependencies:
'@babel/core': 7.29.0
babel-plugin-relay: 20.1.1
- vite: 7.3.1(@types/node@25.9.2)(terser@5.48.0)
+ vite: 7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
transitivePeerDependencies:
- supports-color
- vite@7.3.1(@types/node@25.3.3)(terser@5.48.0):
+ vite@7.3.1(@types/node@25.3.3)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0):
dependencies:
esbuild: 0.27.3
fdir: 6.5.0(picomatch@4.0.3)
@@ -10293,9 +12166,11 @@ snapshots:
optionalDependencies:
'@types/node': 25.3.3
fsevents: 2.3.3
+ jiti: 2.7.0
terser: 5.48.0
+ yaml: 2.9.0
- vite@7.3.1(@types/node@25.9.2)(terser@5.48.0):
+ vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0):
dependencies:
esbuild: 0.27.3
fdir: 6.5.0(picomatch@4.0.3)
@@ -10306,12 +12181,14 @@ snapshots:
optionalDependencies:
'@types/node': 25.9.2
fsevents: 2.3.3
+ jiti: 2.7.0
terser: 5.48.0
+ yaml: 2.9.0
- vitest@4.0.18(@types/node@25.3.3)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.3.3)(typescript@5.9.3))(terser@5.48.0):
+ vitest@4.0.18(@types/node@25.3.3)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.3.3)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0):
dependencies:
'@vitest/expect': 4.0.18
- '@vitest/mocker': 4.0.18(msw@2.12.10(@types/node@25.3.3)(typescript@5.9.3))(vite@7.3.1(@types/node@25.3.3)(terser@5.48.0))
+ '@vitest/mocker': 4.0.18(msw@2.12.10(@types/node@25.3.3)(typescript@5.9.3))(vite@7.3.1(@types/node@25.3.3)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))
'@vitest/pretty-format': 4.0.18
'@vitest/runner': 4.0.18
'@vitest/snapshot': 4.0.18
@@ -10328,7 +12205,7 @@ snapshots:
tinyexec: 1.0.2
tinyglobby: 0.2.15
tinyrainbow: 3.0.3
- vite: 7.3.1(@types/node@25.3.3)(terser@5.48.0)
+ vite: 7.3.1(@types/node@25.3.3)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 25.3.3
@@ -10346,10 +12223,10 @@ snapshots:
- tsx
- yaml
- vitest@4.0.18(@types/node@25.9.2)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0):
+ vitest@4.0.18(@types/node@25.9.2)(jiti@2.7.0)(jsdom@26.1.0(bufferutil@4.1.0)(utf-8-validate@5.0.10))(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(terser@5.48.0)(yaml@2.9.0):
dependencies:
'@vitest/expect': 4.0.18
- '@vitest/mocker': 4.0.18(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(vite@7.3.1(@types/node@25.9.2)(terser@5.48.0))
+ '@vitest/mocker': 4.0.18(msw@2.12.10(@types/node@25.9.2)(typescript@5.9.3))(vite@7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0))
'@vitest/pretty-format': 4.0.18
'@vitest/runner': 4.0.18
'@vitest/snapshot': 4.0.18
@@ -10366,7 +12243,7 @@ snapshots:
tinyexec: 1.0.2
tinyglobby: 0.2.15
tinyrainbow: 3.0.3
- vite: 7.3.1(@types/node@25.9.2)(terser@5.48.0)
+ vite: 7.3.1(@types/node@25.9.2)(jiti@2.7.0)(terser@5.48.0)(yaml@2.9.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 25.9.2
@@ -10401,6 +12278,8 @@ snapshots:
weak-map@1.0.8: {}
+ web-streams-polyfill@3.3.3: {}
+
webgl-constants@1.1.1: {}
webgl-context@2.2.0:
@@ -10545,6 +12424,12 @@ snapshots:
dependencies:
object-assign: 4.1.1
+ wrap-ansi@10.0.0:
+ dependencies:
+ ansi-styles: 6.2.3
+ string-width: 8.2.1
+ strip-ansi: 7.2.0
+
wrap-ansi@6.2.0:
dependencies:
ansi-styles: 4.3.0
@@ -10557,6 +12442,12 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
+ wrap-ansi@9.0.2:
+ dependencies:
+ ansi-styles: 6.2.3
+ string-width: 7.2.0
+ strip-ansi: 7.2.0
+
wrappy@1.0.2: {}
ws@8.19.0(bufferutil@4.1.0)(utf-8-validate@5.0.10):
@@ -10564,6 +12455,11 @@ snapshots:
bufferutil: 4.1.0
utf-8-validate: 5.0.10
+ ws@8.21.0(bufferutil@4.1.0)(utf-8-validate@5.0.10):
+ optionalDependencies:
+ bufferutil: 4.1.0
+ utf-8-validate: 5.0.10
+
xml-name-validator@5.0.0: {}
xmlchars@2.2.0: {}
@@ -10584,8 +12480,12 @@ snapshots:
yaml@1.10.2: {}
+ yaml@2.9.0: {}
+
yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
+
yargs@17.7.2:
dependencies:
cliui: 8.0.1
@@ -10596,6 +12496,15 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
+ yargs@18.0.0:
+ dependencies:
+ cliui: 9.0.1
+ escalade: 3.2.0
+ get-caller-file: 2.0.5
+ string-width: 7.2.0
+ y18n: 5.0.8
+ yargs-parser: 22.0.0
+
yargs@3.10.0:
dependencies:
camelcase: 1.2.1
@@ -10607,6 +12516,8 @@ snapshots:
yoctocolors-cjs@2.1.3: {}
+ yoctocolors@2.1.2: {}
+
zen-observable-ts@0.8.21:
dependencies:
tslib: 1.14.1