@forge/cli-shared 5.0.1 → 5.0.2-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -11098,6 +11098,42 @@ export declare enum DevOpsPostIncidentReviewStatus {
|
|
|
11098
11098
|
InProgress = "IN_PROGRESS",
|
|
11099
11099
|
Todo = "TODO"
|
|
11100
11100
|
}
|
|
11101
|
+
export declare type DevOpsProjectDetails = {
|
|
11102
|
+
__typename?: 'DevOpsProjectDetails';
|
|
11103
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
11104
|
+
id: Scalars['ID']['output'];
|
|
11105
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
11106
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
11107
|
+
name: Scalars['String']['output'];
|
|
11108
|
+
owner?: Maybe<DevOpsProjectOwner>;
|
|
11109
|
+
projectTargetDate?: Maybe<DevOpsProjectTargetDate>;
|
|
11110
|
+
providerId: Scalars['String']['output'];
|
|
11111
|
+
status?: Maybe<DevOpsProjectStatus>;
|
|
11112
|
+
url: Scalars['URL']['output'];
|
|
11113
|
+
};
|
|
11114
|
+
export declare type DevOpsProjectOwner = {
|
|
11115
|
+
__typename?: 'DevOpsProjectOwner';
|
|
11116
|
+
atlassianUserId?: Maybe<Scalars['String']['output']>;
|
|
11117
|
+
};
|
|
11118
|
+
export declare enum DevOpsProjectStatus {
|
|
11119
|
+
Cancelled = "CANCELLED",
|
|
11120
|
+
Completed = "COMPLETED",
|
|
11121
|
+
InProgress = "IN_PROGRESS",
|
|
11122
|
+
Paused = "PAUSED",
|
|
11123
|
+
Pending = "PENDING",
|
|
11124
|
+
Unknown = "UNKNOWN"
|
|
11125
|
+
}
|
|
11126
|
+
export declare type DevOpsProjectTargetDate = {
|
|
11127
|
+
__typename?: 'DevOpsProjectTargetDate';
|
|
11128
|
+
targetDate?: Maybe<Scalars['DateTime']['output']>;
|
|
11129
|
+
targetDateType?: Maybe<DevOpsProjectTargetDateType>;
|
|
11130
|
+
};
|
|
11131
|
+
export declare enum DevOpsProjectTargetDateType {
|
|
11132
|
+
Day = "DAY",
|
|
11133
|
+
Month = "MONTH",
|
|
11134
|
+
Quarter = "QUARTER",
|
|
11135
|
+
Unknown = "UNKNOWN"
|
|
11136
|
+
}
|
|
11101
11137
|
export declare type DevOpsProvider = {
|
|
11102
11138
|
__typename?: 'DevOpsProvider';
|
|
11103
11139
|
links?: Maybe<DevOpsProviderLinks>;
|
|
@@ -16885,6 +16921,10 @@ export declare type GraphStore = {
|
|
|
16885
16921
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
16886
16922
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
16887
16923
|
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
16924
|
+
focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
|
|
16925
|
+
focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
16926
|
+
focusAreaAssociatedToProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection>;
|
|
16927
|
+
focusAreaAssociatedToProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
16888
16928
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
16889
16929
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
16890
16930
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -17349,6 +17389,26 @@ export declare type GraphStoreFetchAllRelationshipsArgs = {
|
|
|
17349
17389
|
id: Scalars['ID']['input'];
|
|
17350
17390
|
ignoredRelationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17351
17391
|
};
|
|
17392
|
+
export declare type GraphStoreFocusAreaAssociatedToProjectArgs = {
|
|
17393
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17394
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17395
|
+
id: Scalars['ID']['input'];
|
|
17396
|
+
};
|
|
17397
|
+
export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
|
|
17398
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17399
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17400
|
+
ids: Array<Scalars['ID']['input']>;
|
|
17401
|
+
};
|
|
17402
|
+
export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
|
|
17403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17404
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17405
|
+
id: Scalars['ID']['input'];
|
|
17406
|
+
};
|
|
17407
|
+
export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
|
|
17408
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17409
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17410
|
+
ids: Array<Scalars['ID']['input']>;
|
|
17411
|
+
};
|
|
17352
17412
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
17353
17413
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17354
17414
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -19078,6 +19138,47 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = Node & {
|
|
|
19078
19138
|
id: Scalars['ID']['output'];
|
|
19079
19139
|
};
|
|
19080
19140
|
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
19141
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
19142
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
19143
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
19144
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectNode>>;
|
|
19145
|
+
pageInfo: PageInfo;
|
|
19146
|
+
};
|
|
19147
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEdge = {
|
|
19148
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEdge';
|
|
19149
|
+
node: GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection;
|
|
19150
|
+
};
|
|
19151
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndNode = Node & {
|
|
19152
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEndNode';
|
|
19153
|
+
data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEndUnion>;
|
|
19154
|
+
id: Scalars['ID']['output'];
|
|
19155
|
+
};
|
|
19156
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndUnion = DevOpsProjectDetails;
|
|
19157
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection = {
|
|
19158
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection';
|
|
19159
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge>>;
|
|
19160
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectNode>>;
|
|
19161
|
+
requestedId: Scalars['ID']['output'];
|
|
19162
|
+
};
|
|
19163
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge = {
|
|
19164
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge';
|
|
19165
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19166
|
+
node: GraphStoreBatchFocusAreaAssociatedToProjectNode;
|
|
19167
|
+
};
|
|
19168
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectNode = Node & {
|
|
19169
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectNode';
|
|
19170
|
+
createdAt: Scalars['DateTime']['output'];
|
|
19171
|
+
from: GraphStoreBatchFocusAreaAssociatedToProjectStartNode;
|
|
19172
|
+
id: Scalars['ID']['output'];
|
|
19173
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
19174
|
+
to: GraphStoreBatchFocusAreaAssociatedToProjectEndNode;
|
|
19175
|
+
};
|
|
19176
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode = Node & {
|
|
19177
|
+
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectStartNode';
|
|
19178
|
+
data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectStartUnion>;
|
|
19179
|
+
id: Scalars['ID']['output'];
|
|
19180
|
+
};
|
|
19181
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartUnion = MercuryFocusArea;
|
|
19081
19182
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
19082
19183
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
19083
19184
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -24256,6 +24357,34 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
24256
24357
|
};
|
|
24257
24358
|
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
|
|
24258
24359
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = ConfluencePage | JiraIssue;
|
|
24360
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
24361
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
24362
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge>>>;
|
|
24363
|
+
pageInfo: PageInfo;
|
|
24364
|
+
};
|
|
24365
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge = {
|
|
24366
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge';
|
|
24367
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24368
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24369
|
+
id: Scalars['ID']['output'];
|
|
24370
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24371
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectUnion>;
|
|
24372
|
+
};
|
|
24373
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection = HasPageInfo & {
|
|
24374
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection';
|
|
24375
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge>>>;
|
|
24376
|
+
pageInfo: PageInfo;
|
|
24377
|
+
};
|
|
24378
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge = {
|
|
24379
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge';
|
|
24380
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24381
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24382
|
+
id: Scalars['ID']['output'];
|
|
24383
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24384
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion>;
|
|
24385
|
+
};
|
|
24386
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion = MercuryFocusArea;
|
|
24387
|
+
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectUnion = DevOpsProjectDetails;
|
|
24259
24388
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
24260
24389
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
24261
24390
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|