security: clear immutable High alert via @graphql-codegen typescript plugins v4 (#21380)
## What Clears the High `immutable` alert (GHSA-wf6x-7x77-mvgw) via a parent bump — **no resolution**. `immutable@3.7.6` was pulled by `@ardatan/relay-compiler@12.0.0` (→ `immutable ~3.7.6`), reached through `@graphql-tools/relay-operation-optimizer` inside the `@graphql-codegen` visitor plugins. The fix lives in `relay-operation-optimizer@7.1.4` → `relay-compiler@13.0.1` → `immutable@^5.1.5` — but the old codegen typescript plugins (v3) pinned a 6.x optimizer stuck on relay-compiler 12. **Fix chain:** - `@graphql-codegen/typescript` `^3.0.4` → `^4.1.6` - `@graphql-codegen/typescript-operations` `^3.0.4` → `^4.6.1` - refresh `@graphql-tools/relay-operation-optimizer` (within its existing `^7.0.0` range) → 7.1.4 → `relay-compiler@13.0.1` → `immutable@5.1.6` ## Heads-up: this is effectively a codegen v4 plugin upgrade The codegen typescript plugins v4 change the generated **scalar shape** (`Scalars['X']` → `Scalars['X']['input'|'output']`), so the committed `generated*/graphql.ts` are regenerated (~7.8k lines). The diff is **purely type-level** — no runtime/enum/document changes — and was regenerated against the current schema (verified: **no schema-content drift**). ## Verification - `immutable@3.7.6` gone (now 5.1.6); `relay-compiler@13.0.1` - `nx typecheck twenty-front` passes against the regenerated types (0 errors) - `yarn install --immutable` clean - Generated files regenerated against a clean origin/main schema (no drift markers)
This commit is contained in:
@@ -152,8 +152,8 @@
|
||||
"@babel/preset-typescript": "^7.24.6",
|
||||
"@graphql-codegen/cli": "^5.0.7",
|
||||
"@graphql-codegen/typed-document-node": "^5.0.9",
|
||||
"@graphql-codegen/typescript": "^3.0.4",
|
||||
"@graphql-codegen/typescript-operations": "^3.0.4",
|
||||
"@graphql-codegen/typescript": "^4.1.6",
|
||||
"@graphql-codegen/typescript-operations": "^4.6.1",
|
||||
"@lingui/cli": "^5.1.2",
|
||||
"@lingui/swc-plugin": "^5.11.0",
|
||||
"@lingui/vite-plugin": "^5.1.2",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -4,16 +4,18 @@ export type InputMaybe<T> = Maybe<T>;
|
||||
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
||||
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
||||
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
||||
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
|
||||
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
|
||||
/** All built-in and custom scalars, mapped to their actual values */
|
||||
export type Scalars = {
|
||||
ID: string;
|
||||
String: string;
|
||||
Boolean: boolean;
|
||||
Int: number;
|
||||
Float: number;
|
||||
DateTime: string;
|
||||
JSON: any;
|
||||
UUID: any;
|
||||
ID: { input: string; output: string; }
|
||||
String: { input: string; output: string; }
|
||||
Boolean: { input: boolean; output: boolean; }
|
||||
Int: { input: number; output: number; }
|
||||
Float: { input: number; output: number; }
|
||||
DateTime: { input: string; output: string; }
|
||||
JSON: { input: any; output: any; }
|
||||
UUID: { input: any; output: any; }
|
||||
};
|
||||
|
||||
export enum CalendarChannelVisibility {
|
||||
@@ -23,83 +25,83 @@ export enum CalendarChannelVisibility {
|
||||
|
||||
export type ComputeStepOutputSchemaInput = {
|
||||
/** Step JSON format */
|
||||
step: Scalars['JSON'];
|
||||
step: Scalars['JSON']['input'];
|
||||
/** Workflow version ID */
|
||||
workflowVersionId?: InputMaybe<Scalars['UUID']>;
|
||||
workflowVersionId?: InputMaybe<Scalars['UUID']['input']>;
|
||||
};
|
||||
|
||||
export type ConnectedAccountHandleDto = {
|
||||
__typename?: 'ConnectedAccountHandleDTO';
|
||||
handle: Scalars['String'];
|
||||
id: Scalars['UUID'];
|
||||
provider: Scalars['String'];
|
||||
handle: Scalars['String']['output'];
|
||||
id: Scalars['UUID']['output'];
|
||||
provider: Scalars['String']['output'];
|
||||
};
|
||||
|
||||
export type CreateDraftFromWorkflowVersionInput = {
|
||||
/** Workflow ID */
|
||||
workflowId: Scalars['UUID'];
|
||||
workflowId: Scalars['UUID']['input'];
|
||||
/** Workflow version ID */
|
||||
workflowVersionIdToCopy: Scalars['UUID'];
|
||||
workflowVersionIdToCopy: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type CreateWorkflowVersionEdgeInput = {
|
||||
/** Workflow version source step ID */
|
||||
source: Scalars['String'];
|
||||
source: Scalars['String']['input'];
|
||||
/** Workflow version source step connection options */
|
||||
sourceConnectionOptions?: InputMaybe<Scalars['JSON']>;
|
||||
sourceConnectionOptions?: InputMaybe<Scalars['JSON']['input']>;
|
||||
/** Workflow version target step ID */
|
||||
target: Scalars['String'];
|
||||
target: Scalars['String']['input'];
|
||||
/** Workflow version ID */
|
||||
workflowVersionId: Scalars['String'];
|
||||
workflowVersionId: Scalars['String']['input'];
|
||||
};
|
||||
|
||||
export type CreateWorkflowVersionStepInput = {
|
||||
/** Default settings for the step */
|
||||
defaultSettings?: InputMaybe<Scalars['JSON']>;
|
||||
defaultSettings?: InputMaybe<Scalars['JSON']['input']>;
|
||||
/** Step ID */
|
||||
id?: InputMaybe<Scalars['String']>;
|
||||
id?: InputMaybe<Scalars['String']['input']>;
|
||||
/** Next step ID */
|
||||
nextStepId?: InputMaybe<Scalars['UUID']>;
|
||||
nextStepId?: InputMaybe<Scalars['UUID']['input']>;
|
||||
/** Parent step connection options */
|
||||
parentStepConnectionOptions?: InputMaybe<Scalars['JSON']>;
|
||||
parentStepConnectionOptions?: InputMaybe<Scalars['JSON']['input']>;
|
||||
/** Parent step ID */
|
||||
parentStepId?: InputMaybe<Scalars['String']>;
|
||||
parentStepId?: InputMaybe<Scalars['String']['input']>;
|
||||
/** Step position */
|
||||
position?: InputMaybe<WorkflowStepPositionInput>;
|
||||
/** New step type */
|
||||
stepType: Scalars['String'];
|
||||
stepType: Scalars['String']['input'];
|
||||
/** Workflow version ID */
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type DateTimeFilter = {
|
||||
eq?: InputMaybe<Scalars['DateTime']>;
|
||||
gt?: InputMaybe<Scalars['DateTime']>;
|
||||
gte?: InputMaybe<Scalars['DateTime']>;
|
||||
in?: InputMaybe<Array<Scalars['DateTime']>>;
|
||||
eq?: InputMaybe<Scalars['DateTime']['input']>;
|
||||
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
||||
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
||||
in?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
||||
is?: InputMaybe<FilterIs>;
|
||||
lt?: InputMaybe<Scalars['DateTime']>;
|
||||
lte?: InputMaybe<Scalars['DateTime']>;
|
||||
neq?: InputMaybe<Scalars['DateTime']>;
|
||||
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
||||
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
||||
neq?: InputMaybe<Scalars['DateTime']['input']>;
|
||||
};
|
||||
|
||||
export type DeleteWorkflowVersionStepInput = {
|
||||
/** Step to delete ID */
|
||||
stepId: Scalars['String'];
|
||||
stepId: Scalars['String']['input'];
|
||||
/** Workflow version ID */
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type DuplicateWorkflowInput = {
|
||||
/** Workflow ID to duplicate */
|
||||
workflowIdToDuplicate: Scalars['UUID'];
|
||||
workflowIdToDuplicate: Scalars['UUID']['input'];
|
||||
/** Workflow version ID to copy */
|
||||
workflowVersionIdToCopy: Scalars['UUID'];
|
||||
workflowVersionIdToCopy: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type DuplicateWorkflowVersionStepInput = {
|
||||
stepId: Scalars['String'];
|
||||
workflowVersionId: Scalars['String'];
|
||||
stepId: Scalars['String']['input'];
|
||||
workflowVersionId: Scalars['String']['input'];
|
||||
};
|
||||
|
||||
export enum FilterIs {
|
||||
@@ -109,14 +111,14 @@ export enum FilterIs {
|
||||
|
||||
export type LinkMetadata = {
|
||||
__typename?: 'LinkMetadata';
|
||||
label: Scalars['String'];
|
||||
url: Scalars['String'];
|
||||
label: Scalars['String']['output'];
|
||||
url: Scalars['String']['output'];
|
||||
};
|
||||
|
||||
export type LinksMetadata = {
|
||||
__typename?: 'LinksMetadata';
|
||||
primaryLinkLabel: Scalars['String'];
|
||||
primaryLinkUrl: Scalars['String'];
|
||||
primaryLinkLabel: Scalars['String']['output'];
|
||||
primaryLinkUrl: Scalars['String']['output'];
|
||||
secondaryLinks?: Maybe<Array<LinkMetadata>>;
|
||||
};
|
||||
|
||||
@@ -128,30 +130,30 @@ export enum MessageChannelVisibility {
|
||||
|
||||
export type Mutation = {
|
||||
__typename?: 'Mutation';
|
||||
activateWorkflowVersion: Scalars['Boolean'];
|
||||
computeStepOutputSchema: Scalars['JSON'];
|
||||
activateWorkflowVersion: Scalars['Boolean']['output'];
|
||||
computeStepOutputSchema: Scalars['JSON']['output'];
|
||||
createDraftFromWorkflowVersion: WorkflowVersionDto;
|
||||
createWorkflowVersionEdge: WorkflowVersionStepChanges;
|
||||
createWorkflowVersionStep: WorkflowVersionStepChanges;
|
||||
deactivateWorkflowVersion: Scalars['Boolean'];
|
||||
deactivateWorkflowVersion: Scalars['Boolean']['output'];
|
||||
deleteWorkflowVersionEdge: WorkflowVersionStepChanges;
|
||||
deleteWorkflowVersionStep: WorkflowVersionStepChanges;
|
||||
dismissMaintenanceModeBanner: Scalars['Boolean'];
|
||||
dismissReconnectAccountBanner: Scalars['Boolean'];
|
||||
dismissMaintenanceModeBanner: Scalars['Boolean']['output'];
|
||||
dismissReconnectAccountBanner: Scalars['Boolean']['output'];
|
||||
duplicateWorkflow: WorkflowVersionDto;
|
||||
duplicateWorkflowVersionStep: WorkflowVersionStepChanges;
|
||||
runWorkflowVersion: RunWorkflowVersion;
|
||||
stopWorkflowRun: WorkflowRun;
|
||||
submitFormStep: Scalars['Boolean'];
|
||||
submitFormStep: Scalars['Boolean']['output'];
|
||||
testHttpRequest: TestHttpRequest;
|
||||
updateWorkflowRunStep: WorkflowAction;
|
||||
updateWorkflowVersionPositions: Scalars['Boolean'];
|
||||
updateWorkflowVersionPositions: Scalars['Boolean']['output'];
|
||||
updateWorkflowVersionStep: WorkflowAction;
|
||||
};
|
||||
|
||||
|
||||
export type MutationActivateWorkflowVersionArgs = {
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
|
||||
@@ -176,7 +178,7 @@ export type MutationCreateWorkflowVersionStepArgs = {
|
||||
|
||||
|
||||
export type MutationDeactivateWorkflowVersionArgs = {
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
|
||||
@@ -191,7 +193,7 @@ export type MutationDeleteWorkflowVersionStepArgs = {
|
||||
|
||||
|
||||
export type MutationDismissReconnectAccountBannerArgs = {
|
||||
connectedAccountId: Scalars['UUID'];
|
||||
connectedAccountId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
|
||||
@@ -211,7 +213,7 @@ export type MutationRunWorkflowVersionArgs = {
|
||||
|
||||
|
||||
export type MutationStopWorkflowRunArgs = {
|
||||
workflowRunId: Scalars['UUID'];
|
||||
workflowRunId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
|
||||
@@ -257,91 +259,91 @@ export type Query = {
|
||||
getTimelineThreadsFromCompanyId: TimelineThreadsWithTotal;
|
||||
getTimelineThreadsFromOpportunityId: TimelineThreadsWithTotal;
|
||||
getTimelineThreadsFromPersonId: TimelineThreadsWithTotal;
|
||||
isMaintenanceModeBannerDismissed: Scalars['Boolean'];
|
||||
isMaintenanceModeBannerDismissed: Scalars['Boolean']['output'];
|
||||
search: SearchResultConnection;
|
||||
workflowStepConnectedAccountHandle?: Maybe<ConnectedAccountHandleDto>;
|
||||
};
|
||||
|
||||
|
||||
export type QueryGetTimelineCalendarEventsFromCompanyIdArgs = {
|
||||
companyId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
companyId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
};
|
||||
|
||||
|
||||
export type QueryGetTimelineCalendarEventsFromOpportunityIdArgs = {
|
||||
opportunityId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
opportunityId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
};
|
||||
|
||||
|
||||
export type QueryGetTimelineCalendarEventsFromPersonIdArgs = {
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
personId: Scalars['UUID'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
personId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
|
||||
export type QueryGetTimelineThreadsFromCompanyIdArgs = {
|
||||
companyId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
companyId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
};
|
||||
|
||||
|
||||
export type QueryGetTimelineThreadsFromOpportunityIdArgs = {
|
||||
opportunityId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
opportunityId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
};
|
||||
|
||||
|
||||
export type QueryGetTimelineThreadsFromPersonIdArgs = {
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
personId: Scalars['UUID'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
personId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
|
||||
export type QuerySearchArgs = {
|
||||
after?: InputMaybe<Scalars['String']>;
|
||||
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']>>;
|
||||
after?: InputMaybe<Scalars['String']['input']>;
|
||||
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']['input']>>;
|
||||
filter?: InputMaybe<ObjectRecordFilterInput>;
|
||||
includedObjectNameSingulars?: InputMaybe<Array<Scalars['String']>>;
|
||||
limit: Scalars['Int'];
|
||||
searchInput: Scalars['String'];
|
||||
includedObjectNameSingulars?: InputMaybe<Array<Scalars['String']['input']>>;
|
||||
limit: Scalars['Int']['input'];
|
||||
searchInput: Scalars['String']['input'];
|
||||
};
|
||||
|
||||
|
||||
export type QueryWorkflowStepConnectedAccountHandleArgs = {
|
||||
connectedAccountId: Scalars['UUID'];
|
||||
connectedAccountId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type RunWorkflowVersion = {
|
||||
__typename?: 'RunWorkflowVersion';
|
||||
workflowRunId: Scalars['UUID'];
|
||||
workflowRunId: Scalars['UUID']['output'];
|
||||
};
|
||||
|
||||
export type RunWorkflowVersionInput = {
|
||||
/** Execution result in JSON format */
|
||||
payload?: InputMaybe<Scalars['JSON']>;
|
||||
payload?: InputMaybe<Scalars['JSON']['input']>;
|
||||
/** Workflow run ID */
|
||||
workflowRunId?: InputMaybe<Scalars['UUID']>;
|
||||
workflowRunId?: InputMaybe<Scalars['UUID']['input']>;
|
||||
/** Workflow version ID */
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type SearchRecord = {
|
||||
__typename?: 'SearchRecord';
|
||||
imageUrl?: Maybe<Scalars['String']>;
|
||||
label: Scalars['String'];
|
||||
objectLabelSingular: Scalars['String'];
|
||||
objectNameSingular: Scalars['String'];
|
||||
recordId: Scalars['UUID'];
|
||||
tsRank: Scalars['Float'];
|
||||
tsRankCD: Scalars['Float'];
|
||||
imageUrl?: Maybe<Scalars['String']['output']>;
|
||||
label: Scalars['String']['output'];
|
||||
objectLabelSingular: Scalars['String']['output'];
|
||||
objectNameSingular: Scalars['String']['output'];
|
||||
recordId: Scalars['UUID']['output'];
|
||||
tsRank: Scalars['Float']['output'];
|
||||
tsRankCD: Scalars['Float']['output'];
|
||||
};
|
||||
|
||||
export type SearchResultConnection = {
|
||||
@@ -352,159 +354,159 @@ export type SearchResultConnection = {
|
||||
|
||||
export type SearchResultEdge = {
|
||||
__typename?: 'SearchResultEdge';
|
||||
cursor: Scalars['String'];
|
||||
cursor: Scalars['String']['output'];
|
||||
node: SearchRecord;
|
||||
};
|
||||
|
||||
export type SearchResultPageInfo = {
|
||||
__typename?: 'SearchResultPageInfo';
|
||||
endCursor?: Maybe<Scalars['String']>;
|
||||
hasNextPage: Scalars['Boolean'];
|
||||
endCursor?: Maybe<Scalars['String']['output']>;
|
||||
hasNextPage: Scalars['Boolean']['output'];
|
||||
};
|
||||
|
||||
export type SubmitFormStepInput = {
|
||||
/** Form response in JSON format */
|
||||
response: Scalars['JSON'];
|
||||
response: Scalars['JSON']['input'];
|
||||
/** Workflow step ID */
|
||||
stepId: Scalars['UUID'];
|
||||
stepId: Scalars['UUID']['input'];
|
||||
/** Workflow run ID */
|
||||
workflowRunId: Scalars['UUID'];
|
||||
workflowRunId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type TestHttpRequest = {
|
||||
__typename?: 'TestHttpRequest';
|
||||
/** Error information */
|
||||
error?: Maybe<Scalars['JSON']>;
|
||||
error?: Maybe<Scalars['JSON']['output']>;
|
||||
/** Response headers */
|
||||
headers?: Maybe<Scalars['JSON']>;
|
||||
headers?: Maybe<Scalars['JSON']['output']>;
|
||||
/** Message describing the result */
|
||||
message: Scalars['String'];
|
||||
message: Scalars['String']['output'];
|
||||
/** Response data */
|
||||
result?: Maybe<Scalars['JSON']>;
|
||||
result?: Maybe<Scalars['JSON']['output']>;
|
||||
/** HTTP status code */
|
||||
status?: Maybe<Scalars['Float']>;
|
||||
status?: Maybe<Scalars['Float']['output']>;
|
||||
/** HTTP status text */
|
||||
statusText?: Maybe<Scalars['String']>;
|
||||
statusText?: Maybe<Scalars['String']['output']>;
|
||||
/** Whether the request was successful */
|
||||
success: Scalars['Boolean'];
|
||||
success: Scalars['Boolean']['output'];
|
||||
};
|
||||
|
||||
export type TestHttpRequestInput = {
|
||||
/** Request body */
|
||||
body?: InputMaybe<Scalars['JSON']>;
|
||||
body?: InputMaybe<Scalars['JSON']['input']>;
|
||||
/** HTTP headers */
|
||||
headers?: InputMaybe<Scalars['JSON']>;
|
||||
headers?: InputMaybe<Scalars['JSON']['input']>;
|
||||
/** HTTP method */
|
||||
method: Scalars['String'];
|
||||
method: Scalars['String']['input'];
|
||||
/** URL to make the request to */
|
||||
url: Scalars['String'];
|
||||
url: Scalars['String']['input'];
|
||||
};
|
||||
|
||||
export type TimelineCalendarEvent = {
|
||||
__typename?: 'TimelineCalendarEvent';
|
||||
conferenceLink: LinksMetadata;
|
||||
conferenceSolution: Scalars['String'];
|
||||
description: Scalars['String'];
|
||||
endsAt: Scalars['DateTime'];
|
||||
id: Scalars['UUID'];
|
||||
isCanceled: Scalars['Boolean'];
|
||||
isFullDay: Scalars['Boolean'];
|
||||
location: Scalars['String'];
|
||||
conferenceSolution: Scalars['String']['output'];
|
||||
description: Scalars['String']['output'];
|
||||
endsAt: Scalars['DateTime']['output'];
|
||||
id: Scalars['UUID']['output'];
|
||||
isCanceled: Scalars['Boolean']['output'];
|
||||
isFullDay: Scalars['Boolean']['output'];
|
||||
location: Scalars['String']['output'];
|
||||
participants: Array<TimelineCalendarEventParticipant>;
|
||||
startsAt: Scalars['DateTime'];
|
||||
title: Scalars['String'];
|
||||
startsAt: Scalars['DateTime']['output'];
|
||||
title: Scalars['String']['output'];
|
||||
visibility: CalendarChannelVisibility;
|
||||
};
|
||||
|
||||
export type TimelineCalendarEventParticipant = {
|
||||
__typename?: 'TimelineCalendarEventParticipant';
|
||||
avatarUrl: Scalars['String'];
|
||||
displayName: Scalars['String'];
|
||||
firstName: Scalars['String'];
|
||||
handle: Scalars['String'];
|
||||
lastName: Scalars['String'];
|
||||
personId?: Maybe<Scalars['UUID']>;
|
||||
workspaceMemberId?: Maybe<Scalars['UUID']>;
|
||||
avatarUrl: Scalars['String']['output'];
|
||||
displayName: Scalars['String']['output'];
|
||||
firstName: Scalars['String']['output'];
|
||||
handle: Scalars['String']['output'];
|
||||
lastName: Scalars['String']['output'];
|
||||
personId?: Maybe<Scalars['UUID']['output']>;
|
||||
workspaceMemberId?: Maybe<Scalars['UUID']['output']>;
|
||||
};
|
||||
|
||||
export type TimelineCalendarEventsWithTotal = {
|
||||
__typename?: 'TimelineCalendarEventsWithTotal';
|
||||
timelineCalendarEvents: Array<TimelineCalendarEvent>;
|
||||
totalNumberOfCalendarEvents: Scalars['Int'];
|
||||
totalNumberOfCalendarEvents: Scalars['Int']['output'];
|
||||
};
|
||||
|
||||
export type TimelineThread = {
|
||||
__typename?: 'TimelineThread';
|
||||
firstParticipant: TimelineThreadParticipant;
|
||||
id: Scalars['UUID'];
|
||||
lastMessageBody: Scalars['String'];
|
||||
lastMessageReceivedAt: Scalars['DateTime'];
|
||||
id: Scalars['UUID']['output'];
|
||||
lastMessageBody: Scalars['String']['output'];
|
||||
lastMessageReceivedAt: Scalars['DateTime']['output'];
|
||||
lastTwoParticipants: Array<TimelineThreadParticipant>;
|
||||
numberOfMessagesInThread: Scalars['Float'];
|
||||
participantCount: Scalars['Float'];
|
||||
read: Scalars['Boolean'];
|
||||
subject: Scalars['String'];
|
||||
numberOfMessagesInThread: Scalars['Float']['output'];
|
||||
participantCount: Scalars['Float']['output'];
|
||||
read: Scalars['Boolean']['output'];
|
||||
subject: Scalars['String']['output'];
|
||||
visibility: MessageChannelVisibility;
|
||||
};
|
||||
|
||||
export type TimelineThreadParticipant = {
|
||||
__typename?: 'TimelineThreadParticipant';
|
||||
avatarUrl: Scalars['String'];
|
||||
displayName: Scalars['String'];
|
||||
firstName: Scalars['String'];
|
||||
handle: Scalars['String'];
|
||||
lastName: Scalars['String'];
|
||||
personId?: Maybe<Scalars['UUID']>;
|
||||
workspaceMemberId?: Maybe<Scalars['UUID']>;
|
||||
avatarUrl: Scalars['String']['output'];
|
||||
displayName: Scalars['String']['output'];
|
||||
firstName: Scalars['String']['output'];
|
||||
handle: Scalars['String']['output'];
|
||||
lastName: Scalars['String']['output'];
|
||||
personId?: Maybe<Scalars['UUID']['output']>;
|
||||
workspaceMemberId?: Maybe<Scalars['UUID']['output']>;
|
||||
};
|
||||
|
||||
export type TimelineThreadsWithTotal = {
|
||||
__typename?: 'TimelineThreadsWithTotal';
|
||||
timelineThreads: Array<TimelineThread>;
|
||||
totalNumberOfThreads: Scalars['Int'];
|
||||
totalNumberOfThreads: Scalars['Int']['output'];
|
||||
};
|
||||
|
||||
export type UuidFilter = {
|
||||
eq?: InputMaybe<Scalars['UUID']>;
|
||||
gt?: InputMaybe<Scalars['UUID']>;
|
||||
gte?: InputMaybe<Scalars['UUID']>;
|
||||
in?: InputMaybe<Array<Scalars['UUID']>>;
|
||||
eq?: InputMaybe<Scalars['UUID']['input']>;
|
||||
gt?: InputMaybe<Scalars['UUID']['input']>;
|
||||
gte?: InputMaybe<Scalars['UUID']['input']>;
|
||||
in?: InputMaybe<Array<Scalars['UUID']['input']>>;
|
||||
is?: InputMaybe<FilterIs>;
|
||||
lt?: InputMaybe<Scalars['UUID']>;
|
||||
lte?: InputMaybe<Scalars['UUID']>;
|
||||
neq?: InputMaybe<Scalars['UUID']>;
|
||||
lt?: InputMaybe<Scalars['UUID']['input']>;
|
||||
lte?: InputMaybe<Scalars['UUID']['input']>;
|
||||
neq?: InputMaybe<Scalars['UUID']['input']>;
|
||||
};
|
||||
|
||||
export type UpdateWorkflowRunStepInput = {
|
||||
/** Step to update in JSON format */
|
||||
step: Scalars['JSON'];
|
||||
step: Scalars['JSON']['input'];
|
||||
/** Workflow run ID */
|
||||
workflowRunId: Scalars['UUID'];
|
||||
workflowRunId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type UpdateWorkflowVersionPositionsInput = {
|
||||
/** Workflow version updated positions */
|
||||
positions: Array<WorkflowStepPositionUpdateInput>;
|
||||
/** Workflow version ID */
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type UpdateWorkflowVersionStepInput = {
|
||||
/** Step to update in JSON format */
|
||||
step: Scalars['JSON'];
|
||||
step: Scalars['JSON']['input'];
|
||||
/** Workflow version ID */
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
};
|
||||
|
||||
export type WorkflowAction = {
|
||||
__typename?: 'WorkflowAction';
|
||||
id: Scalars['UUID'];
|
||||
name: Scalars['String'];
|
||||
nextStepIds?: Maybe<Array<Scalars['UUID']>>;
|
||||
id: Scalars['UUID']['output'];
|
||||
name: Scalars['String']['output'];
|
||||
nextStepIds?: Maybe<Array<Scalars['UUID']['output']>>;
|
||||
position?: Maybe<WorkflowStepPosition>;
|
||||
settings: Scalars['JSON'];
|
||||
settings: Scalars['JSON']['output'];
|
||||
type: WorkflowActionType;
|
||||
valid: Scalars['Boolean'];
|
||||
valid: Scalars['Boolean']['output'];
|
||||
};
|
||||
|
||||
export enum WorkflowActionType {
|
||||
@@ -529,7 +531,7 @@ export enum WorkflowActionType {
|
||||
|
||||
export type WorkflowRun = {
|
||||
__typename?: 'WorkflowRun';
|
||||
id: Scalars['UUID'];
|
||||
id: Scalars['UUID']['output'];
|
||||
status: WorkflowRunStatusEnum;
|
||||
};
|
||||
|
||||
@@ -546,38 +548,38 @@ export enum WorkflowRunStatusEnum {
|
||||
|
||||
export type WorkflowStepPosition = {
|
||||
__typename?: 'WorkflowStepPosition';
|
||||
x: Scalars['Float'];
|
||||
y: Scalars['Float'];
|
||||
x: Scalars['Float']['output'];
|
||||
y: Scalars['Float']['output'];
|
||||
};
|
||||
|
||||
export type WorkflowStepPositionInput = {
|
||||
x: Scalars['Float'];
|
||||
y: Scalars['Float'];
|
||||
x: Scalars['Float']['input'];
|
||||
y: Scalars['Float']['input'];
|
||||
};
|
||||
|
||||
export type WorkflowStepPositionUpdateInput = {
|
||||
/** Step or trigger ID */
|
||||
id: Scalars['String'];
|
||||
id: Scalars['String']['input'];
|
||||
/** Position of the step or trigger */
|
||||
position: WorkflowStepPositionInput;
|
||||
};
|
||||
|
||||
export type WorkflowVersionDto = {
|
||||
__typename?: 'WorkflowVersionDTO';
|
||||
createdAt: Scalars['String'];
|
||||
id: Scalars['UUID'];
|
||||
name: Scalars['String'];
|
||||
status: Scalars['String'];
|
||||
steps?: Maybe<Scalars['JSON']>;
|
||||
trigger?: Maybe<Scalars['JSON']>;
|
||||
updatedAt: Scalars['String'];
|
||||
workflowId: Scalars['UUID'];
|
||||
createdAt: Scalars['String']['output'];
|
||||
id: Scalars['UUID']['output'];
|
||||
name: Scalars['String']['output'];
|
||||
status: Scalars['String']['output'];
|
||||
steps?: Maybe<Scalars['JSON']['output']>;
|
||||
trigger?: Maybe<Scalars['JSON']['output']>;
|
||||
updatedAt: Scalars['String']['output'];
|
||||
workflowId: Scalars['UUID']['output'];
|
||||
};
|
||||
|
||||
export type WorkflowVersionStepChanges = {
|
||||
__typename?: 'WorkflowVersionStepChanges';
|
||||
stepsDiff?: Maybe<Scalars['JSON']>;
|
||||
triggerDiff?: Maybe<Scalars['JSON']>;
|
||||
stepsDiff?: Maybe<Scalars['JSON']['output']>;
|
||||
triggerDiff?: Maybe<Scalars['JSON']['output']>;
|
||||
};
|
||||
|
||||
export type TimelineCalendarEventFragmentFragment = { __typename?: 'TimelineCalendarEvent', id: any, title: string, description: string, location: string, startsAt: string, endsAt: string, isFullDay: boolean, visibility: CalendarChannelVisibility, participants: Array<{ __typename?: 'TimelineCalendarEventParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }> };
|
||||
@@ -587,27 +589,27 @@ export type TimelineCalendarEventParticipantFragmentFragment = { __typename?: 'T
|
||||
export type TimelineCalendarEventsWithTotalFragmentFragment = { __typename?: 'TimelineCalendarEventsWithTotal', totalNumberOfCalendarEvents: number, timelineCalendarEvents: Array<{ __typename?: 'TimelineCalendarEvent', id: any, title: string, description: string, location: string, startsAt: string, endsAt: string, isFullDay: boolean, visibility: CalendarChannelVisibility, participants: Array<{ __typename?: 'TimelineCalendarEventParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }> }> };
|
||||
|
||||
export type GetTimelineCalendarEventsFromCompanyIdQueryVariables = Exact<{
|
||||
companyId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
companyId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
export type GetTimelineCalendarEventsFromCompanyIdQuery = { __typename?: 'Query', getTimelineCalendarEventsFromCompanyId: { __typename?: 'TimelineCalendarEventsWithTotal', totalNumberOfCalendarEvents: number, timelineCalendarEvents: Array<{ __typename?: 'TimelineCalendarEvent', id: any, title: string, description: string, location: string, startsAt: string, endsAt: string, isFullDay: boolean, visibility: CalendarChannelVisibility, participants: Array<{ __typename?: 'TimelineCalendarEventParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }> }> } };
|
||||
|
||||
export type GetTimelineCalendarEventsFromOpportunityIdQueryVariables = Exact<{
|
||||
opportunityId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
opportunityId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
export type GetTimelineCalendarEventsFromOpportunityIdQuery = { __typename?: 'Query', getTimelineCalendarEventsFromOpportunityId: { __typename?: 'TimelineCalendarEventsWithTotal', totalNumberOfCalendarEvents: number, timelineCalendarEvents: Array<{ __typename?: 'TimelineCalendarEvent', id: any, title: string, description: string, location: string, startsAt: string, endsAt: string, isFullDay: boolean, visibility: CalendarChannelVisibility, participants: Array<{ __typename?: 'TimelineCalendarEventParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }> }> } };
|
||||
|
||||
export type GetTimelineCalendarEventsFromPersonIdQueryVariables = Exact<{
|
||||
personId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
personId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
@@ -620,38 +622,38 @@ export type TimelineThreadFragmentFragment = { __typename?: 'TimelineThread', id
|
||||
export type TimelineThreadsWithTotalFragmentFragment = { __typename?: 'TimelineThreadsWithTotal', totalNumberOfThreads: number, timelineThreads: Array<{ __typename?: 'TimelineThread', id: any, read: boolean, visibility: MessageChannelVisibility, lastMessageReceivedAt: string, lastMessageBody: string, subject: string, numberOfMessagesInThread: number, participantCount: number, firstParticipant: { __typename?: 'TimelineThreadParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }, lastTwoParticipants: Array<{ __typename?: 'TimelineThreadParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }> }> };
|
||||
|
||||
export type GetTimelineThreadsFromCompanyIdQueryVariables = Exact<{
|
||||
companyId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
companyId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
export type GetTimelineThreadsFromCompanyIdQuery = { __typename?: 'Query', getTimelineThreadsFromCompanyId: { __typename?: 'TimelineThreadsWithTotal', totalNumberOfThreads: number, timelineThreads: Array<{ __typename?: 'TimelineThread', id: any, read: boolean, visibility: MessageChannelVisibility, lastMessageReceivedAt: string, lastMessageBody: string, subject: string, numberOfMessagesInThread: number, participantCount: number, firstParticipant: { __typename?: 'TimelineThreadParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }, lastTwoParticipants: Array<{ __typename?: 'TimelineThreadParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }> }> } };
|
||||
|
||||
export type GetTimelineThreadsFromOpportunityIdQueryVariables = Exact<{
|
||||
opportunityId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
opportunityId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
export type GetTimelineThreadsFromOpportunityIdQuery = { __typename?: 'Query', getTimelineThreadsFromOpportunityId: { __typename?: 'TimelineThreadsWithTotal', totalNumberOfThreads: number, timelineThreads: Array<{ __typename?: 'TimelineThread', id: any, read: boolean, visibility: MessageChannelVisibility, lastMessageReceivedAt: string, lastMessageBody: string, subject: string, numberOfMessagesInThread: number, participantCount: number, firstParticipant: { __typename?: 'TimelineThreadParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }, lastTwoParticipants: Array<{ __typename?: 'TimelineThreadParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }> }> } };
|
||||
|
||||
export type GetTimelineThreadsFromPersonIdQueryVariables = Exact<{
|
||||
personId: Scalars['UUID'];
|
||||
page: Scalars['Int'];
|
||||
pageSize: Scalars['Int'];
|
||||
personId: Scalars['UUID']['input'];
|
||||
page: Scalars['Int']['input'];
|
||||
pageSize: Scalars['Int']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
export type GetTimelineThreadsFromPersonIdQuery = { __typename?: 'Query', getTimelineThreadsFromPersonId: { __typename?: 'TimelineThreadsWithTotal', totalNumberOfThreads: number, timelineThreads: Array<{ __typename?: 'TimelineThread', id: any, read: boolean, visibility: MessageChannelVisibility, lastMessageReceivedAt: string, lastMessageBody: string, subject: string, numberOfMessagesInThread: number, participantCount: number, firstParticipant: { __typename?: 'TimelineThreadParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }, lastTwoParticipants: Array<{ __typename?: 'TimelineThreadParticipant', personId?: any | null, workspaceMemberId?: any | null, firstName: string, lastName: string, displayName: string, avatarUrl: string, handle: string }> }> } };
|
||||
|
||||
export type SearchQueryVariables = Exact<{
|
||||
searchInput: Scalars['String'];
|
||||
limit: Scalars['Int'];
|
||||
after?: InputMaybe<Scalars['String']>;
|
||||
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
||||
includedObjectNameSingulars?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
||||
searchInput: Scalars['String']['input'];
|
||||
limit: Scalars['Int']['input'];
|
||||
after?: InputMaybe<Scalars['String']['input']>;
|
||||
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
||||
includedObjectNameSingulars?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
||||
filter?: InputMaybe<ObjectRecordFilterInput>;
|
||||
}>;
|
||||
|
||||
@@ -661,7 +663,7 @@ export type SearchQuery = { __typename?: 'Query', search: { __typename?: 'Search
|
||||
export type WorkflowDiffFragmentFragment = { __typename?: 'WorkflowVersionStepChanges', triggerDiff?: any | null, stepsDiff?: any | null };
|
||||
|
||||
export type ActivateWorkflowVersionMutationVariables = Exact<{
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
@@ -696,7 +698,7 @@ export type CreateWorkflowVersionStepMutationVariables = Exact<{
|
||||
export type CreateWorkflowVersionStepMutation = { __typename?: 'Mutation', createWorkflowVersionStep: { __typename?: 'WorkflowVersionStepChanges', triggerDiff?: any | null, stepsDiff?: any | null } };
|
||||
|
||||
export type DeactivateWorkflowVersionMutationVariables = Exact<{
|
||||
workflowVersionId: Scalars['UUID'];
|
||||
workflowVersionId: Scalars['UUID']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
@@ -738,7 +740,7 @@ export type RunWorkflowVersionMutationVariables = Exact<{
|
||||
export type RunWorkflowVersionMutation = { __typename?: 'Mutation', runWorkflowVersion: { __typename?: 'RunWorkflowVersion', workflowRunId: any } };
|
||||
|
||||
export type StopWorkflowRunMutationVariables = Exact<{
|
||||
workflowRunId: Scalars['UUID'];
|
||||
workflowRunId: Scalars['UUID']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
@@ -759,7 +761,7 @@ export type UpdateWorkflowVersionStepMutationVariables = Exact<{
|
||||
export type UpdateWorkflowVersionStepMutation = { __typename?: 'Mutation', updateWorkflowVersionStep: { __typename?: 'WorkflowAction', id: any, name: string, type: WorkflowActionType, settings: any, valid: boolean, nextStepIds?: Array<any> | null, position?: { __typename?: 'WorkflowStepPosition', x: number, y: number } | null } };
|
||||
|
||||
export type WorkflowStepConnectedAccountHandleQueryVariables = Exact<{
|
||||
connectedAccountId: Scalars['UUID'];
|
||||
connectedAccountId: Scalars['UUID']['input'];
|
||||
}>;
|
||||
|
||||
|
||||
|
||||
@@ -526,32 +526,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@ardatan/relay-compiler@npm:12.0.0":
|
||||
version: 12.0.0
|
||||
resolution: "@ardatan/relay-compiler@npm:12.0.0"
|
||||
"@ardatan/relay-compiler@npm:^13.0.1":
|
||||
version: 13.0.1
|
||||
resolution: "@ardatan/relay-compiler@npm:13.0.1"
|
||||
dependencies:
|
||||
"@babel/core": "npm:^7.14.0"
|
||||
"@babel/generator": "npm:^7.14.0"
|
||||
"@babel/parser": "npm:^7.14.0"
|
||||
"@babel/runtime": "npm:^7.0.0"
|
||||
"@babel/traverse": "npm:^7.14.0"
|
||||
"@babel/types": "npm:^7.0.0"
|
||||
babel-preset-fbjs: "npm:^3.4.0"
|
||||
chalk: "npm:^4.0.0"
|
||||
fb-watchman: "npm:^2.0.0"
|
||||
fbjs: "npm:^3.0.0"
|
||||
glob: "npm:^7.1.1"
|
||||
immutable: "npm:~3.7.6"
|
||||
"@babel/runtime": "npm:^7.29.2"
|
||||
immutable: "npm:^5.1.5"
|
||||
invariant: "npm:^2.2.4"
|
||||
nullthrows: "npm:^1.1.1"
|
||||
relay-runtime: "npm:12.0.0"
|
||||
signedsource: "npm:^1.0.0"
|
||||
yargs: "npm:^15.3.1"
|
||||
peerDependencies:
|
||||
graphql: "*"
|
||||
bin:
|
||||
relay-compiler: bin/relay-compiler
|
||||
checksum: 10c0/7207d65dd39d3a6202fcee81b03338409642a0ff4e7f799b4a074025429ce2b17b6c71c9579a6328b0f4548763ba4efbff0436cddbcad934af00cc4dbc7ac4e1
|
||||
checksum: 10c0/7190f24f60020cb0d64fc8cb2b41f957e47d3d0da3e1c9469e454439159edf42f976c094d889d7f6811cb8ea7749a9778020b4c2039410ebe2dad36d5d8ba545
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2520,7 +2504,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.8, @babel/compat-data@npm:^7.27.2":
|
||||
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.8, @babel/compat-data@npm:^7.27.2":
|
||||
version: 7.28.0
|
||||
resolution: "@babel/compat-data@npm:7.28.0"
|
||||
checksum: 10c0/c4e527302bcd61052423f757355a71c3bc62362bac13f7f130de16e439716f66091ff5bdecda418e8fa0271d4c725f860f0ee23ab7bf6e769f7a8bb16dfcb531
|
||||
@@ -2534,7 +2518,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.14.0, @babel/core@npm:^7.14.5, @babel/core@npm:^7.20.12, @babel/core@npm:^7.21.0, @babel/core@npm:^7.21.3, @babel/core@npm:^7.23.2, @babel/core@npm:^7.23.5, @babel/core@npm:^7.23.9, @babel/core@npm:^7.27.4, @babel/core@npm:^7.7.5":
|
||||
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.14.5, @babel/core@npm:^7.20.12, @babel/core@npm:^7.21.0, @babel/core@npm:^7.21.3, @babel/core@npm:^7.23.2, @babel/core@npm:^7.23.5, @babel/core@npm:^7.23.9, @babel/core@npm:^7.27.4, @babel/core@npm:^7.7.5":
|
||||
version: 7.28.0
|
||||
resolution: "@babel/core@npm:7.28.0"
|
||||
dependencies:
|
||||
@@ -2603,7 +2587,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.21.1, @babel/generator@npm:^7.23.5, @babel/generator@npm:^7.27.5, @babel/generator@npm:^7.28.0, @babel/generator@npm:^7.7.2":
|
||||
"@babel/generator@npm:^7.18.13, @babel/generator@npm:^7.21.1, @babel/generator@npm:^7.23.5, @babel/generator@npm:^7.27.5, @babel/generator@npm:^7.28.0, @babel/generator@npm:^7.7.2":
|
||||
version: 7.28.0
|
||||
resolution: "@babel/generator@npm:7.28.0"
|
||||
dependencies:
|
||||
@@ -2682,7 +2666,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5, @babel/helper-compilation-targets@npm:^7.27.2":
|
||||
"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5, @babel/helper-compilation-targets@npm:^7.27.2":
|
||||
version: 7.27.2
|
||||
resolution: "@babel/helper-compilation-targets@npm:7.27.2"
|
||||
dependencies:
|
||||
@@ -3133,7 +3117,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.0, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.0":
|
||||
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.0, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.0":
|
||||
version: 7.28.0
|
||||
resolution: "@babel/parser@npm:7.28.0"
|
||||
dependencies:
|
||||
@@ -3236,7 +3220,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-proposal-class-properties@npm:^7.0.0, @babel/plugin-proposal-class-properties@npm:^7.18.6":
|
||||
"@babel/plugin-proposal-class-properties@npm:^7.18.6":
|
||||
version: 7.18.6
|
||||
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
|
||||
dependencies:
|
||||
@@ -3261,21 +3245,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0":
|
||||
version: 7.20.7
|
||||
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.20.7"
|
||||
dependencies:
|
||||
"@babel/compat-data": "npm:^7.20.5"
|
||||
"@babel/helper-compilation-targets": "npm:^7.20.7"
|
||||
"@babel/helper-plugin-utils": "npm:^7.20.2"
|
||||
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3"
|
||||
"@babel/plugin-transform-parameters": "npm:^7.20.7"
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0-0
|
||||
checksum: 10c0/b9818749bb49d8095df64c45db682448d04743d96722984cbfd375733b2585c26d807f84b4fdb28474f2d614be6a6ffe3d96ffb121840e9e5345b2ccc0438bd8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2":
|
||||
version: 7.21.0-placeholder-for-preset-env.2
|
||||
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2"
|
||||
@@ -3307,7 +3276,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-syntax-class-properties@npm:^7.0.0, @babel/plugin-syntax-class-properties@npm:^7.12.13":
|
||||
"@babel/plugin-syntax-class-properties@npm:^7.12.13":
|
||||
version: 7.12.13
|
||||
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
|
||||
dependencies:
|
||||
@@ -3340,17 +3309,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.24.7":
|
||||
version: 7.24.7
|
||||
resolution: "@babel/plugin-syntax-flow@npm:7.24.7"
|
||||
dependencies:
|
||||
"@babel/helper-plugin-utils": "npm:^7.24.7"
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0-0
|
||||
checksum: 10c0/2f0cb7a78379029707e61f6665634a5b758c8b4ccb602a72d798e41d36b0647c2f2de59f90e0c1d522b026962918e54d82f3aee0c194dc87cd340455aa58562a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-syntax-flow@npm:^7.29.7":
|
||||
version: 7.29.7
|
||||
resolution: "@babel/plugin-syntax-flow@npm:7.29.7"
|
||||
@@ -3406,7 +3364,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.25.9, @babel/plugin-syntax-jsx@npm:^7.27.1, @babel/plugin-syntax-jsx@npm:^7.7.2":
|
||||
"@babel/plugin-syntax-jsx@npm:^7.27.1, @babel/plugin-syntax-jsx@npm:^7.7.2":
|
||||
version: 7.27.1
|
||||
resolution: "@babel/plugin-syntax-jsx@npm:7.27.1"
|
||||
dependencies:
|
||||
@@ -3472,7 +3430,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
|
||||
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
|
||||
version: 7.8.3
|
||||
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
|
||||
dependencies:
|
||||
@@ -3572,7 +3530,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.25.9":
|
||||
"@babel/plugin-transform-arrow-functions@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-arrow-functions@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -3609,7 +3567,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.26.5":
|
||||
"@babel/plugin-transform-block-scoped-functions@npm:^7.26.5":
|
||||
version: 7.26.5
|
||||
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.26.5"
|
||||
dependencies:
|
||||
@@ -3620,7 +3578,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.25.9":
|
||||
"@babel/plugin-transform-block-scoping@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-block-scoping@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -3667,7 +3625,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.25.9":
|
||||
"@babel/plugin-transform-classes@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-classes@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -3683,7 +3641,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.25.9":
|
||||
"@babel/plugin-transform-computed-properties@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-computed-properties@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -3695,7 +3653,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-destructuring@npm:^7.0.0, @babel/plugin-transform-destructuring@npm:^7.25.9":
|
||||
"@babel/plugin-transform-destructuring@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-destructuring@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -3774,18 +3732,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-flow-strip-types@npm:^7.0.0":
|
||||
version: 7.25.2
|
||||
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.25.2"
|
||||
dependencies:
|
||||
"@babel/helper-plugin-utils": "npm:^7.24.8"
|
||||
"@babel/plugin-syntax-flow": "npm:^7.24.7"
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0-0
|
||||
checksum: 10c0/821f5ccdb8104e09764d8a24d4c0dd4fe9e264d95e6477269c911e15240a63343d3fe71b6cf9382273766a0e86a015c2867d26fd75e5827134d990c93fa9e605
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-flow-strip-types@npm:^7.29.7":
|
||||
version: 7.29.7
|
||||
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.29.7"
|
||||
@@ -3798,7 +3744,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-for-of@npm:^7.0.0, @babel/plugin-transform-for-of@npm:^7.26.9":
|
||||
"@babel/plugin-transform-for-of@npm:^7.26.9":
|
||||
version: 7.26.9
|
||||
resolution: "@babel/plugin-transform-for-of@npm:7.26.9"
|
||||
dependencies:
|
||||
@@ -3810,7 +3756,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-function-name@npm:^7.0.0, @babel/plugin-transform-function-name@npm:^7.25.9":
|
||||
"@babel/plugin-transform-function-name@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-function-name@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -3834,7 +3780,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-literals@npm:^7.0.0, @babel/plugin-transform-literals@npm:^7.25.9":
|
||||
"@babel/plugin-transform-literals@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-literals@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -3856,7 +3802,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-member-expression-literals@npm:^7.0.0, @babel/plugin-transform-member-expression-literals@npm:^7.25.9":
|
||||
"@babel/plugin-transform-member-expression-literals@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -3879,7 +3825,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-modules-commonjs@npm:^7.0.0, @babel/plugin-transform-modules-commonjs@npm:^7.23.3, @babel/plugin-transform-modules-commonjs@npm:^7.26.3":
|
||||
"@babel/plugin-transform-modules-commonjs@npm:^7.23.3, @babel/plugin-transform-modules-commonjs@npm:^7.26.3":
|
||||
version: 7.26.3
|
||||
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.26.3"
|
||||
dependencies:
|
||||
@@ -4010,7 +3956,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-object-super@npm:^7.0.0, @babel/plugin-transform-object-super@npm:^7.25.9":
|
||||
"@babel/plugin-transform-object-super@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-object-super@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -4057,7 +4003,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7, @babel/plugin-transform-parameters@npm:^7.25.9":
|
||||
"@babel/plugin-transform-parameters@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-parameters@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -4105,7 +4051,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-property-literals@npm:^7.0.0, @babel/plugin-transform-property-literals@npm:^7.25.9":
|
||||
"@babel/plugin-transform-property-literals@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-property-literals@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -4127,17 +4073,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-react-display-name@npm:^7.0.0":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-react-display-name@npm:7.25.9"
|
||||
dependencies:
|
||||
"@babel/helper-plugin-utils": "npm:^7.25.9"
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0-0
|
||||
checksum: 10c0/63a0f962d64e71baf87c212755419e25c637d2d95ea6fdc067df26b91e606ae186442ae815b99a577eca9bf5404d9577ecad218a3cf42d0e9e286ca7b003a992
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-react-display-name@npm:^7.28.0":
|
||||
version: 7.28.0
|
||||
resolution: "@babel/plugin-transform-react-display-name@npm:7.28.0"
|
||||
@@ -4160,21 +4095,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-react-jsx@npm:^7.0.0":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-react-jsx@npm:7.25.9"
|
||||
dependencies:
|
||||
"@babel/helper-annotate-as-pure": "npm:^7.25.9"
|
||||
"@babel/helper-module-imports": "npm:^7.25.9"
|
||||
"@babel/helper-plugin-utils": "npm:^7.25.9"
|
||||
"@babel/plugin-syntax-jsx": "npm:^7.25.9"
|
||||
"@babel/types": "npm:^7.25.9"
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0-0
|
||||
checksum: 10c0/5c9947e8ed141f7606f54da3e05eea1074950c5b8354c39df69cb7f43cb5a83c6c9d7973b24bc3d89341c8611f8ad50830a98ab10d117d850e6bdd8febdce221
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-react-jsx@npm:^7.27.1":
|
||||
version: 7.28.6
|
||||
resolution: "@babel/plugin-transform-react-jsx@npm:7.28.6"
|
||||
@@ -4253,7 +4173,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-shorthand-properties@npm:^7.0.0, @babel/plugin-transform-shorthand-properties@npm:^7.25.9":
|
||||
"@babel/plugin-transform-shorthand-properties@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-shorthand-properties@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -4264,7 +4184,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-spread@npm:^7.0.0, @babel/plugin-transform-spread@npm:^7.25.9":
|
||||
"@babel/plugin-transform-spread@npm:^7.25.9":
|
||||
version: 7.25.9
|
||||
resolution: "@babel/plugin-transform-spread@npm:7.25.9"
|
||||
dependencies:
|
||||
@@ -4287,7 +4207,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/plugin-transform-template-literals@npm:^7.0.0, @babel/plugin-transform-template-literals@npm:^7.26.8":
|
||||
"@babel/plugin-transform-template-literals@npm:^7.26.8":
|
||||
version: 7.26.8
|
||||
resolution: "@babel/plugin-transform-template-literals@npm:7.26.8"
|
||||
dependencies:
|
||||
@@ -4561,7 +4481,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.22.6, @babel/runtime@npm:^7.24.1, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.9.2":
|
||||
"@babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.22.6, @babel/runtime@npm:^7.24.1, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.9.2":
|
||||
version: 7.28.4
|
||||
resolution: "@babel/runtime@npm:7.28.4"
|
||||
checksum: 10c0/792ce7af9750fb9b93879cc9d1db175701c4689da890e6ced242ea0207c9da411ccf16dc04e689cc01158b28d7898c40d75598f4559109f761c12ce01e959bf7
|
||||
@@ -4615,7 +4535,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.16.0, @babel/traverse@npm:^7.23.5, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.27.3, @babel/traverse@npm:^7.28.0":
|
||||
"@babel/traverse@npm:^7.16.0, @babel/traverse@npm:^7.23.5, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.27.3, @babel/traverse@npm:^7.28.0":
|
||||
version: 7.28.0
|
||||
resolution: "@babel/traverse@npm:7.28.0"
|
||||
dependencies:
|
||||
@@ -8137,22 +8057,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/plugin-helpers@npm:^4.1.0, @graphql-codegen/plugin-helpers@npm:^4.2.0":
|
||||
version: 4.2.0
|
||||
resolution: "@graphql-codegen/plugin-helpers@npm:4.2.0"
|
||||
dependencies:
|
||||
"@graphql-tools/utils": "npm:^9.0.0"
|
||||
change-case-all: "npm:1.0.15"
|
||||
common-tags: "npm:1.8.2"
|
||||
import-from: "npm:4.0.0"
|
||||
lodash: "npm:~4.17.0"
|
||||
tslib: "npm:~2.5.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
|
||||
checksum: 10c0/cc4a63eb6cd015c9b26f6ff115257ff9c7b87c352a23b3f0622536c6df693e647ff627daef6f370c629fc515ddfdb2f7e3190f5e8cd6490a1ea513835cc358c3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/plugin-helpers@npm:^5.0.3, @graphql-codegen/plugin-helpers@npm:^5.1.0, @graphql-codegen/plugin-helpers@npm:^5.1.1":
|
||||
version: 5.1.1
|
||||
resolution: "@graphql-codegen/plugin-helpers@npm:5.1.1"
|
||||
@@ -8185,19 +8089,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/schema-ast@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "@graphql-codegen/schema-ast@npm:3.0.1"
|
||||
dependencies:
|
||||
"@graphql-codegen/plugin-helpers": "npm:^4.1.0"
|
||||
"@graphql-tools/utils": "npm:^9.0.0"
|
||||
tslib: "npm:~2.5.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
|
||||
checksum: 10c0/cc4602e5b97876181e6a8e3e0241e336715e489d1721121037a0a28b49d3bd800de9a331c8db2e9449c3c237e842c05db93a2c834cfcc7e3cd68a15c96a8e204
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/schema-ast@npm:^4.0.2":
|
||||
version: 4.1.0
|
||||
resolution: "@graphql-codegen/schema-ast@npm:4.1.0"
|
||||
@@ -8241,21 +8132,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/typescript-operations@npm:^3.0.4":
|
||||
version: 3.0.4
|
||||
resolution: "@graphql-codegen/typescript-operations@npm:3.0.4"
|
||||
dependencies:
|
||||
"@graphql-codegen/plugin-helpers": "npm:^4.2.0"
|
||||
"@graphql-codegen/typescript": "npm:^3.0.4"
|
||||
"@graphql-codegen/visitor-plugin-common": "npm:3.1.1"
|
||||
auto-bind: "npm:~4.0.0"
|
||||
tslib: "npm:~2.5.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
|
||||
checksum: 10c0/4ea5c955e0b12b1f6aa4d6ad46b217c56e802ff5508b939a3a218c53208d03bbd308bb3dfbfbc30fe7c4bd0be4c9c51c76b0fe65c6238618ed482874c869f801
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/typescript-operations@npm:^4.6.1":
|
||||
version: 4.6.1
|
||||
resolution: "@graphql-codegen/typescript-operations@npm:4.6.1"
|
||||
@@ -8275,21 +8151,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/typescript@npm:^3.0.4":
|
||||
version: 3.0.4
|
||||
resolution: "@graphql-codegen/typescript@npm:3.0.4"
|
||||
dependencies:
|
||||
"@graphql-codegen/plugin-helpers": "npm:^4.2.0"
|
||||
"@graphql-codegen/schema-ast": "npm:^3.0.1"
|
||||
"@graphql-codegen/visitor-plugin-common": "npm:3.1.1"
|
||||
auto-bind: "npm:~4.0.0"
|
||||
tslib: "npm:~2.5.0"
|
||||
peerDependencies:
|
||||
graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
|
||||
checksum: 10c0/6fbf7cfda19fe8b02ab34a948c0d2cf58b68a26f8c31c03cbb097ef2196c1071d986bba6660d5da516c36c9f184e8bbef014cf851bf706aba81138a423cda250
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/typescript@npm:^4.1.6":
|
||||
version: 4.1.6
|
||||
resolution: "@graphql-codegen/typescript@npm:4.1.6"
|
||||
@@ -8305,26 +8166,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/visitor-plugin-common@npm:3.1.1":
|
||||
version: 3.1.1
|
||||
resolution: "@graphql-codegen/visitor-plugin-common@npm:3.1.1"
|
||||
dependencies:
|
||||
"@graphql-codegen/plugin-helpers": "npm:^4.2.0"
|
||||
"@graphql-tools/optimize": "npm:^1.3.0"
|
||||
"@graphql-tools/relay-operation-optimizer": "npm:^6.5.0"
|
||||
"@graphql-tools/utils": "npm:^9.0.0"
|
||||
auto-bind: "npm:~4.0.0"
|
||||
change-case-all: "npm:1.0.15"
|
||||
dependency-graph: "npm:^0.11.0"
|
||||
graphql-tag: "npm:^2.11.0"
|
||||
parse-filepath: "npm:^1.0.2"
|
||||
tslib: "npm:~2.5.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
|
||||
checksum: 10c0/4a393276f091de20cc3b8c3af07c772592328ed1c304835db533ab39dfeba4f7411040480404db21b677a85c055699cdd2992139a89456ec71492df6fa4ae9bf
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-codegen/visitor-plugin-common@npm:5.3.1":
|
||||
version: 5.3.1
|
||||
resolution: "@graphql-codegen/visitor-plugin-common@npm:5.3.1"
|
||||
@@ -8819,17 +8660,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-tools/optimize@npm:^1.3.0":
|
||||
version: 1.4.0
|
||||
resolution: "@graphql-tools/optimize@npm:1.4.0"
|
||||
dependencies:
|
||||
tslib: "npm:^2.4.0"
|
||||
peerDependencies:
|
||||
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
|
||||
checksum: 10c0/10be773b0082fe54b9505469a89925f1a5e33f866453b88cd411261951e8718f8720451e07c56cbfb762970b56b9b45c7c748d62afcdcf9414ec64533e94e543
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-tools/optimize@npm:^2.0.0":
|
||||
version: 2.0.0
|
||||
resolution: "@graphql-tools/optimize@npm:2.0.0"
|
||||
@@ -8867,29 +8697,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-tools/relay-operation-optimizer@npm:^6.5.0":
|
||||
version: 6.5.18
|
||||
resolution: "@graphql-tools/relay-operation-optimizer@npm:6.5.18"
|
||||
dependencies:
|
||||
"@ardatan/relay-compiler": "npm:12.0.0"
|
||||
"@graphql-tools/utils": "npm:^9.2.1"
|
||||
tslib: "npm:^2.4.0"
|
||||
peerDependencies:
|
||||
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
|
||||
checksum: 10c0/9d74d65da8bf474e256ff0cfb77afb442a968451ded6a92b8348d8ac1bca3b2c13a578ab29ac869d10d53e0101219fe8283d485fff920aa7abcc68fcbbdd9a36
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-tools/relay-operation-optimizer@npm:^7.0.0":
|
||||
version: 7.0.1
|
||||
resolution: "@graphql-tools/relay-operation-optimizer@npm:7.0.1"
|
||||
version: 7.1.4
|
||||
resolution: "@graphql-tools/relay-operation-optimizer@npm:7.1.4"
|
||||
dependencies:
|
||||
"@ardatan/relay-compiler": "npm:12.0.0"
|
||||
"@graphql-tools/utils": "npm:^10.0.13"
|
||||
"@ardatan/relay-compiler": "npm:^13.0.1"
|
||||
"@graphql-tools/utils": "npm:^11.1.0"
|
||||
tslib: "npm:^2.4.0"
|
||||
peerDependencies:
|
||||
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
|
||||
checksum: 10c0/4bb08c764b645fc602f8c45c518d576132dcd50e6ac35a70ae1dc6aff57521ad96be85ee72ea2cecc05d3d281fcbb47a976a7549034b0230deeae5de74cb24bc
|
||||
checksum: 10c0/228d3f27e4e968549bf2dad99907b7fe6096a2755ee573faa0e8f2fd00820cec70135c5f2c5c60c15fb53cf784463991e67058abbdd0e9b80f8be0fafcb6ea05
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -9031,7 +8848,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@graphql-tools/utils@npm:9.2.1, @graphql-tools/utils@npm:^9.0.0, @graphql-tools/utils@npm:^9.2.1":
|
||||
"@graphql-tools/utils@npm:9.2.1, @graphql-tools/utils@npm:^9.2.1":
|
||||
version: 9.2.1
|
||||
resolution: "@graphql-tools/utils@npm:9.2.1"
|
||||
dependencies:
|
||||
@@ -28346,7 +28163,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"asap@npm:^2.0.0, asap@npm:~2.0.3":
|
||||
"asap@npm:^2.0.0":
|
||||
version: 2.0.6
|
||||
resolution: "asap@npm:2.0.6"
|
||||
checksum: 10c0/c6d5e39fe1f15e4b87677460bd66b66050cd14c772269cee6688824c1410a08ab20254bb6784f9afb75af9144a9f9a7692d49547f4d19d715aeb7c0318f3136d
|
||||
@@ -28868,13 +28685,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"babel-plugin-syntax-trailing-function-commas@npm:^7.0.0-beta.0":
|
||||
version: 7.0.0-beta.0
|
||||
resolution: "babel-plugin-syntax-trailing-function-commas@npm:7.0.0-beta.0"
|
||||
checksum: 10c0/67e3d6a706637097526b2d3046d3124d3efd3aac28b47af940c2f8df01b8d7ffeb4cdf5648f3b5eac3f098f5b61c4845e306f34301c869e5e14db6ae8b77f699
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"babel-plugin-transform-typescript-metadata@npm:^0.3.1":
|
||||
version: 0.3.2
|
||||
resolution: "babel-plugin-transform-typescript-metadata@npm:0.3.2"
|
||||
@@ -28909,43 +28719,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"babel-preset-fbjs@npm:^3.4.0":
|
||||
version: 3.4.0
|
||||
resolution: "babel-preset-fbjs@npm:3.4.0"
|
||||
dependencies:
|
||||
"@babel/plugin-proposal-class-properties": "npm:^7.0.0"
|
||||
"@babel/plugin-proposal-object-rest-spread": "npm:^7.0.0"
|
||||
"@babel/plugin-syntax-class-properties": "npm:^7.0.0"
|
||||
"@babel/plugin-syntax-flow": "npm:^7.0.0"
|
||||
"@babel/plugin-syntax-jsx": "npm:^7.0.0"
|
||||
"@babel/plugin-syntax-object-rest-spread": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-arrow-functions": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-block-scoped-functions": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-block-scoping": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-classes": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-computed-properties": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-destructuring": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-flow-strip-types": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-for-of": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-function-name": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-literals": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-member-expression-literals": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-modules-commonjs": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-object-super": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-parameters": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-property-literals": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-react-display-name": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-react-jsx": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-shorthand-properties": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-spread": "npm:^7.0.0"
|
||||
"@babel/plugin-transform-template-literals": "npm:^7.0.0"
|
||||
babel-plugin-syntax-trailing-function-commas: "npm:^7.0.0-beta.0"
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0
|
||||
checksum: 10c0/2be440c0fd7d1df247417be35644cb89f40a300e7fcdc44878b737ec49b04380eff422e4ebdc7bb5efd5ecfef45b634fc5fe11c3a409a50c9084e81083037902
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"babel-preset-jest@npm:30.0.1":
|
||||
version: 30.0.1
|
||||
resolution: "babel-preset-jest@npm:30.0.1"
|
||||
@@ -29878,7 +29651,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"camelcase@npm:^5.0.0, camelcase@npm:^5.3.1":
|
||||
"camelcase@npm:^5.3.1":
|
||||
version: 5.3.1
|
||||
resolution: "camelcase@npm:5.3.1"
|
||||
checksum: 10c0/92ff9b443bfe8abb15f2b1513ca182d16126359ad4f955ebc83dc4ddcc4ef3fdd2c078bc223f2673dc223488e75c99b16cc4d056624374b799e6a1555cf61b23
|
||||
@@ -30509,17 +30282,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"cliui@npm:^6.0.0":
|
||||
version: 6.0.0
|
||||
resolution: "cliui@npm:6.0.0"
|
||||
dependencies:
|
||||
string-width: "npm:^4.2.0"
|
||||
strip-ansi: "npm:^6.0.0"
|
||||
wrap-ansi: "npm:^6.2.0"
|
||||
checksum: 10c0/35229b1bb48647e882104cac374c9a18e34bbf0bace0e2cf03000326b6ca3050d6b59545d91e17bfe3705f4a0e2988787aa5cde6331bf5cbbf0164732cef6492
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"cliui@npm:^7.0.2":
|
||||
version: 7.0.4
|
||||
resolution: "cliui@npm:7.0.4"
|
||||
@@ -32305,13 +32067,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"decamelize@npm:^1.2.0":
|
||||
version: 1.2.0
|
||||
resolution: "decamelize@npm:1.2.0"
|
||||
checksum: 10c0/85c39fe8fbf0482d4a1e224ef0119db5c1897f8503bcef8b826adff7a1b11414972f6fef2d7dec2ee0b4be3863cf64ac1439137ae9e6af23a3d8dcbe26a5b4b2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"decimal.js@npm:^10.4.3, decimal.js@npm:^10.5.0":
|
||||
version: 10.5.0
|
||||
resolution: "decimal.js@npm:10.5.0"
|
||||
@@ -35384,28 +35139,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fbjs-css-vars@npm:^1.0.0":
|
||||
version: 1.0.2
|
||||
resolution: "fbjs-css-vars@npm:1.0.2"
|
||||
checksum: 10c0/dfb64116b125a64abecca9e31477b5edb9a2332c5ffe74326fe36e0a72eef7fc8a49b86adf36c2c293078d79f4524f35e80f5e62546395f53fb7c9e69821f54f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fbjs@npm:^3.0.0":
|
||||
version: 3.0.5
|
||||
resolution: "fbjs@npm:3.0.5"
|
||||
dependencies:
|
||||
cross-fetch: "npm:^3.1.5"
|
||||
fbjs-css-vars: "npm:^1.0.0"
|
||||
loose-envify: "npm:^1.0.0"
|
||||
object-assign: "npm:^4.1.0"
|
||||
promise: "npm:^7.1.1"
|
||||
setimmediate: "npm:^1.0.5"
|
||||
ua-parser-js: "npm:^1.0.35"
|
||||
checksum: 10c0/66d0a2fc9a774f9066e35ac2ac4bf1245931d27f3ac287c7d47e6aa1fc152b243c2109743eb8f65341e025621fb51a12038fadb9fd8fda2e3ddae04ebab06f91
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fd-slicer@npm:~1.1.0":
|
||||
version: 1.1.0
|
||||
resolution: "fd-slicer@npm:1.1.0"
|
||||
@@ -36389,7 +36122,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"get-caller-file@npm:^2.0.1, get-caller-file@npm:^2.0.5":
|
||||
"get-caller-file@npm:^2.0.5":
|
||||
version: 2.0.5
|
||||
resolution: "get-caller-file@npm:2.0.5"
|
||||
checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde
|
||||
@@ -36718,7 +36451,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6":
|
||||
"glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6":
|
||||
version: 7.2.3
|
||||
resolution: "glob@npm:7.2.3"
|
||||
dependencies:
|
||||
@@ -38547,13 +38280,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"immutable@npm:~3.7.6":
|
||||
version: 3.7.6
|
||||
resolution: "immutable@npm:3.7.6"
|
||||
checksum: 10c0/efe2bbb2620aa897afbb79545b9eda4dd3dc072e05ae7004895a7efb43187e4265612a88f8723f391eb1c87c46c52fd11e2d1968e42404450c63e49558d7ca4e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0":
|
||||
version: 3.3.0
|
||||
resolution: "import-fresh@npm:3.3.0"
|
||||
@@ -45624,7 +45350,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"nullthrows@npm:^1.0.0, nullthrows@npm:^1.1.1":
|
||||
"nullthrows@npm:^1.0.0":
|
||||
version: 1.1.1
|
||||
resolution: "nullthrows@npm:1.1.1"
|
||||
checksum: 10c0/56f34bd7c3dcb3bd23481a277fa22918120459d3e9d95ca72976c72e9cac33a97483f0b95fc420e2eb546b9fe6db398273aba9a938650cdb8c98ee8f159dcb30
|
||||
@@ -45760,7 +45486,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"object-assign@npm:^4, object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1":
|
||||
"object-assign@npm:^4, object-assign@npm:^4.0.1, object-assign@npm:^4.1.1":
|
||||
version: 4.1.1
|
||||
resolution: "object-assign@npm:4.1.1"
|
||||
checksum: 10c0/1f4df9945120325d041ccf7b86f31e8bcc14e73d29171e37a7903050e96b81323784ec59f93f102ec635bcf6fa8034ba3ea0a8c7e69fa202b87ae3b6cec5a414
|
||||
@@ -48285,15 +48011,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"promise@npm:^7.1.1":
|
||||
version: 7.3.1
|
||||
resolution: "promise@npm:7.3.1"
|
||||
dependencies:
|
||||
asap: "npm:~2.0.3"
|
||||
checksum: 10c0/742e5c0cc646af1f0746963b8776299701ad561ce2c70b49365d62c8db8ea3681b0a1bf0d4e2fe07910bf72f02d39e51e8e73dc8d7503c3501206ac908be107f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"prompts@npm:2.4.2, prompts@npm:^2.0.1":
|
||||
version: 2.4.2
|
||||
resolution: "prompts@npm:2.4.2"
|
||||
@@ -50267,17 +49984,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"relay-runtime@npm:12.0.0":
|
||||
version: 12.0.0
|
||||
resolution: "relay-runtime@npm:12.0.0"
|
||||
dependencies:
|
||||
"@babel/runtime": "npm:^7.0.0"
|
||||
fbjs: "npm:^3.0.0"
|
||||
invariant: "npm:^2.2.4"
|
||||
checksum: 10c0/f5d29b5c2f3c8a3438d43dcbc3022bd454c4ecbd4f0b10616df08bedc62d8aaa84f155f23e374053cf9f4a8238b93804e37a5b37ed9dc7ad01436d62d1b01d53
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"remark-frontmatter@npm:5.0.0":
|
||||
version: 5.0.0
|
||||
resolution: "remark-frontmatter@npm:5.0.0"
|
||||
@@ -50518,13 +50224,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"require-main-filename@npm:^2.0.0":
|
||||
version: 2.0.0
|
||||
resolution: "require-main-filename@npm:2.0.0"
|
||||
checksum: 10c0/db91467d9ead311b4111cbd73a4e67fa7820daed2989a32f7023785a2659008c6d119752d9c4ac011ae07e537eb86523adff99804c5fdb39cd3a017f9b401bb6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"require-resolve@npm:0.0.2":
|
||||
version: 0.0.2
|
||||
resolution: "require-resolve@npm:0.0.2"
|
||||
@@ -51985,13 +51684,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"set-blocking@npm:^2.0.0":
|
||||
version: 2.0.0
|
||||
resolution: "set-blocking@npm:2.0.0"
|
||||
checksum: 10c0/9f8c1b2d800800d0b589de1477c753492de5c1548d4ade52f57f1d1f5e04af5481554d75ce5e5c43d4004b80a3eb714398d6907027dc0534177b7539119f4454
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"set-cookie-parser@npm:3.1.0":
|
||||
version: 3.1.0
|
||||
resolution: "set-cookie-parser@npm:3.1.0"
|
||||
@@ -52462,13 +52154,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"signedsource@npm:^1.0.0":
|
||||
version: 1.0.0
|
||||
resolution: "signedsource@npm:1.0.0"
|
||||
checksum: 10c0/dbb4ade9c94888e83c16d23ef1a43195799de091d366d130be286415e8aeb97b3f25b14fd26fc5888e1335d703ad561374fddee32e43b7cea04751b93d178a47
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"sigstore@npm:^2.2.0":
|
||||
version: 2.3.1
|
||||
resolution: "sigstore@npm:2.3.1"
|
||||
@@ -55089,13 +54774,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"tslib@npm:~2.5.0":
|
||||
version: 2.5.3
|
||||
resolution: "tslib@npm:2.5.3"
|
||||
checksum: 10c0/4cb1817d34fae5b27d146e6c4a468d4155097d95c1335d0bc9690f11f33e63844806bf4ed6d97c30c72b8d85261b66cbbe16d871d9c594ac05701ec83e62a607
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"tslib@npm:~2.6.0":
|
||||
version: 2.6.3
|
||||
resolution: "tslib@npm:2.6.3"
|
||||
@@ -55333,8 +55011,8 @@ __metadata:
|
||||
"@graphiql/react": "npm:^0.23.0"
|
||||
"@graphql-codegen/cli": "npm:^5.0.7"
|
||||
"@graphql-codegen/typed-document-node": "npm:^5.0.9"
|
||||
"@graphql-codegen/typescript": "npm:^3.0.4"
|
||||
"@graphql-codegen/typescript-operations": "npm:^3.0.4"
|
||||
"@graphql-codegen/typescript": "npm:^4.1.6"
|
||||
"@graphql-codegen/typescript-operations": "npm:^4.6.1"
|
||||
"@hello-pangea/dnd": "npm:^16.2.0"
|
||||
"@hookform/resolvers": "npm:^5.2.2"
|
||||
"@lingui/cli": "npm:^5.1.2"
|
||||
@@ -56361,13 +56039,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ua-parser-js@npm:^1.0.35":
|
||||
version: 1.0.38
|
||||
resolution: "ua-parser-js@npm:1.0.38"
|
||||
checksum: 10c0/b1dd11b87e1784c79f7129e9aec679753fccf8a9b22f5202b79b19492635b5b46b779607a3cfae0270999a0d48da223bf94015642d2abee69d83c9069ab37bd0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0":
|
||||
version: 2.1.0
|
||||
resolution: "uc.micro@npm:2.1.0"
|
||||
@@ -58431,13 +58102,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"which-module@npm:^2.0.0":
|
||||
version: 2.0.1
|
||||
resolution: "which-module@npm:2.0.1"
|
||||
checksum: 10c0/087038e7992649eaffa6c7a4f3158d5b53b14cf5b6c1f0e043dccfacb1ba179d12f17545d5b85ebd94a42ce280a6fe65d0cbcab70f4fc6daad1dfae85e0e6a3e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"which-package-manager@npm:^0.0.1":
|
||||
version: 0.0.1
|
||||
resolution: "which-package-manager@npm:0.0.1"
|
||||
@@ -59009,13 +58673,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"y18n@npm:^4.0.0":
|
||||
version: 4.0.3
|
||||
resolution: "y18n@npm:4.0.3"
|
||||
checksum: 10c0/308a2efd7cc296ab2c0f3b9284fd4827be01cfeb647b3ba18230e3a416eb1bc887ac050de9f8c4fd9e7856b2e8246e05d190b53c96c5ad8d8cb56dffb6f81024
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"y18n@npm:^5.0.5":
|
||||
version: 5.0.8
|
||||
resolution: "y18n@npm:5.0.8"
|
||||
@@ -59083,16 +58740,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"yargs-parser@npm:^18.1.2":
|
||||
version: 18.1.3
|
||||
resolution: "yargs-parser@npm:18.1.3"
|
||||
dependencies:
|
||||
camelcase: "npm:^5.0.0"
|
||||
decamelize: "npm:^1.2.0"
|
||||
checksum: 10c0/25df918833592a83f52e7e4f91ba7d7bfaa2b891ebf7fe901923c2ee797534f23a176913ff6ff7ebbc1cc1725a044cc6a6539fed8bfd4e13b5b16376875f9499
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"yargs-parser@npm:^20.2.2, yargs-parser@npm:^20.2.7":
|
||||
version: 20.2.9
|
||||
resolution: "yargs-parser@npm:20.2.9"
|
||||
@@ -59136,25 +58783,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"yargs@npm:^15.3.1":
|
||||
version: 15.4.1
|
||||
resolution: "yargs@npm:15.4.1"
|
||||
dependencies:
|
||||
cliui: "npm:^6.0.0"
|
||||
decamelize: "npm:^1.2.0"
|
||||
find-up: "npm:^4.1.0"
|
||||
get-caller-file: "npm:^2.0.1"
|
||||
require-directory: "npm:^2.1.1"
|
||||
require-main-filename: "npm:^2.0.0"
|
||||
set-blocking: "npm:^2.0.0"
|
||||
string-width: "npm:^4.2.0"
|
||||
which-module: "npm:^2.0.0"
|
||||
y18n: "npm:^4.0.0"
|
||||
yargs-parser: "npm:^18.1.2"
|
||||
checksum: 10c0/f1ca680c974333a5822732825cca7e95306c5a1e7750eb7b973ce6dc4f97a6b0a8837203c8b194f461969bfe1fb1176d1d423036635285f6010b392fa498ab2d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"yargs@npm:^16.0.0, yargs@npm:^16.0.2":
|
||||
version: 16.2.0
|
||||
resolution: "yargs@npm:16.2.0"
|
||||
|
||||
Reference in New Issue
Block a user