@forge/cli-shared 5.0.0-next.2 → 5.0.0-next.3
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.
|
@@ -2265,7 +2265,7 @@ export declare type CcpChangeOfferingExperienceCapability = CommerceExperienceCa
|
|
|
2265
2265
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
2266
2266
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
2267
2267
|
};
|
|
2268
|
-
export declare type CcpChargeDetails = {
|
|
2268
|
+
export declare type CcpChargeDetails = CommerceChargeDetails & {
|
|
2269
2269
|
__typename?: 'CcpChargeDetails';
|
|
2270
2270
|
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
2271
2271
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2277,7 +2277,7 @@ export declare type CcpChargeElement = {
|
|
|
2277
2277
|
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
2278
2278
|
unit?: Maybe<Scalars['String']['output']>;
|
|
2279
2279
|
};
|
|
2280
|
-
export declare type CcpChargeQuantity = {
|
|
2280
|
+
export declare type CcpChargeQuantity = CommerceChargeQuantity & {
|
|
2281
2281
|
__typename?: 'CcpChargeQuantity';
|
|
2282
2282
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
2283
2283
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -2758,6 +2758,14 @@ export declare type ColumnsConfig = {
|
|
|
2758
2758
|
export declare type CommerceAccountDetails = {
|
|
2759
2759
|
invoiceGroup?: Maybe<CommerceInvoiceGroup>;
|
|
2760
2760
|
};
|
|
2761
|
+
export declare type CommerceChargeDetails = {
|
|
2762
|
+
chargeQuantities?: Maybe<Array<Maybe<CommerceChargeQuantity>>>;
|
|
2763
|
+
};
|
|
2764
|
+
export declare type CommerceChargeQuantity = {
|
|
2765
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
2766
|
+
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2767
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
2768
|
+
};
|
|
2761
2769
|
export declare type CommerceEntitlement = {
|
|
2762
2770
|
experienceCapabilities?: Maybe<CommerceEntitlementExperienceCapabilities>;
|
|
2763
2771
|
id: Scalars['ID']['output'];
|
|
@@ -2832,6 +2840,7 @@ export declare type CommercePrimaryCycle = {
|
|
|
2832
2840
|
};
|
|
2833
2841
|
export declare type CommerceSubscription = {
|
|
2834
2842
|
accountDetails?: Maybe<CommerceAccountDetails>;
|
|
2843
|
+
chargeDetails?: Maybe<CommerceChargeDetails>;
|
|
2835
2844
|
pricingPlan?: Maybe<CommercePricingPlan>;
|
|
2836
2845
|
trial?: Maybe<CommerceTrial>;
|
|
2837
2846
|
};
|
|
@@ -8630,6 +8639,15 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
|
|
|
8630
8639
|
success: Scalars['Boolean']['output'];
|
|
8631
8640
|
successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
8632
8641
|
};
|
|
8642
|
+
export declare enum CustomerServiceCustomDetailCreateErrorCode {
|
|
8643
|
+
ColorNotSaved = "COLOR_NOT_SAVED"
|
|
8644
|
+
}
|
|
8645
|
+
export declare type CustomerServiceCustomDetailCreateErrorExtension = MutationErrorExtension & {
|
|
8646
|
+
__typename?: 'CustomerServiceCustomDetailCreateErrorExtension';
|
|
8647
|
+
errorCode?: Maybe<CustomerServiceCustomDetailCreateErrorCode>;
|
|
8648
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
8649
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
8650
|
+
};
|
|
8633
8651
|
export declare type CustomerServiceCustomDetailCreateInput = {
|
|
8634
8652
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
8635
8653
|
customDetailEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -12323,6 +12341,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
12323
12341
|
apiRequestLatencyValue: ForgeMetricsApiRequestLatencyValueResult;
|
|
12324
12342
|
appId: Scalars['ID']['output'];
|
|
12325
12343
|
appMetrics: ForgeMetricsOtlpResult;
|
|
12344
|
+
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
12326
12345
|
chartInsight: ForgeMetricsChartInsightResult;
|
|
12327
12346
|
errors: ForgeMetricsErrorsResult;
|
|
12328
12347
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
@@ -12353,6 +12372,9 @@ export declare type ForgeMetricsQueryApiRequestLatencyValueArgs = {
|
|
|
12353
12372
|
export declare type ForgeMetricsQueryAppMetricsArgs = {
|
|
12354
12373
|
query: ForgeMetricsOtlpQueryInput;
|
|
12355
12374
|
};
|
|
12375
|
+
export declare type ForgeMetricsQueryCacheHitRateArgs = {
|
|
12376
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
12377
|
+
};
|
|
12356
12378
|
export declare type ForgeMetricsQueryChartInsightArgs = {
|
|
12357
12379
|
query: ForgeMetricsChartInsightQueryInput;
|
|
12358
12380
|
};
|
|
@@ -16187,14 +16209,18 @@ export declare type GraphStore = {
|
|
|
16187
16209
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
16188
16210
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
16189
16211
|
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
16212
|
+
issueAssociatedBuildBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
16190
16213
|
issueAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseConnection>;
|
|
16214
|
+
issueAssociatedBuildInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
16191
16215
|
issueAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
|
|
16192
16216
|
issueAssociatedBuildRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
|
|
16193
16217
|
issueAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseConnection>;
|
|
16194
16218
|
issueAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
16195
16219
|
issueAssociatedCommitRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
16196
16220
|
issueAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentConnection>;
|
|
16221
|
+
issueAssociatedDeploymentBatch?: Maybe<GraphStoreBatchIssueAssociatedDeploymentConnection>;
|
|
16197
16222
|
issueAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection>;
|
|
16223
|
+
issueAssociatedDeploymentInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedDeploymentConnection>;
|
|
16198
16224
|
issueAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
16199
16225
|
issueAssociatedDeploymentRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
16200
16226
|
issueAssociatedDesign?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -16755,11 +16781,21 @@ export declare type GraphStoreIssueAssociatedBranchRelationshipArgs = {
|
|
|
16755
16781
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16756
16782
|
id: Scalars['ID']['input'];
|
|
16757
16783
|
};
|
|
16784
|
+
export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
16785
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16786
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16787
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16788
|
+
};
|
|
16758
16789
|
export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
16759
16790
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16760
16791
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16761
16792
|
id: Scalars['ID']['input'];
|
|
16762
16793
|
};
|
|
16794
|
+
export declare type GraphStoreIssueAssociatedBuildInverseBatchArgs = {
|
|
16795
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16796
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16797
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16798
|
+
};
|
|
16763
16799
|
export declare type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
|
|
16764
16800
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16765
16801
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16790,11 +16826,21 @@ export declare type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
|
16790
16826
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16791
16827
|
id: Scalars['ID']['input'];
|
|
16792
16828
|
};
|
|
16829
|
+
export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
|
|
16830
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16831
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16832
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16833
|
+
};
|
|
16793
16834
|
export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
16794
16835
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16795
16836
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16796
16837
|
id: Scalars['ID']['input'];
|
|
16797
16838
|
};
|
|
16839
|
+
export declare type GraphStoreIssueAssociatedDeploymentInverseBatchArgs = {
|
|
16840
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16841
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16842
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16843
|
+
};
|
|
16798
16844
|
export declare type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
|
|
16799
16845
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16800
16846
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18493,6 +18539,86 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode = Node & {
|
|
|
18493
18539
|
id: Scalars['ID']['output'];
|
|
18494
18540
|
};
|
|
18495
18541
|
export declare type GraphStoreBatchIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
18542
|
+
export declare type GraphStoreBatchIssueAssociatedBuildConnection = HasPageInfo & {
|
|
18543
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildConnection';
|
|
18544
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedBuildEdge>>;
|
|
18545
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedBuildNode>>;
|
|
18546
|
+
pageInfo: PageInfo;
|
|
18547
|
+
};
|
|
18548
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEdge = {
|
|
18549
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildEdge';
|
|
18550
|
+
node: GraphStoreBatchIssueAssociatedBuildInnerConnection;
|
|
18551
|
+
};
|
|
18552
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEndNode = Node & {
|
|
18553
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildEndNode';
|
|
18554
|
+
id: Scalars['ID']['output'];
|
|
18555
|
+
};
|
|
18556
|
+
export declare type GraphStoreBatchIssueAssociatedBuildInnerConnection = {
|
|
18557
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildInnerConnection';
|
|
18558
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedBuildInnerEdge>>;
|
|
18559
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedBuildNode>>;
|
|
18560
|
+
requestedId: Scalars['ID']['output'];
|
|
18561
|
+
};
|
|
18562
|
+
export declare type GraphStoreBatchIssueAssociatedBuildInnerEdge = {
|
|
18563
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildInnerEdge';
|
|
18564
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18565
|
+
node: GraphStoreBatchIssueAssociatedBuildNode;
|
|
18566
|
+
};
|
|
18567
|
+
export declare type GraphStoreBatchIssueAssociatedBuildNode = Node & {
|
|
18568
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildNode';
|
|
18569
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18570
|
+
from: GraphStoreBatchIssueAssociatedBuildStartNode;
|
|
18571
|
+
id: Scalars['ID']['output'];
|
|
18572
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18573
|
+
to: GraphStoreBatchIssueAssociatedBuildEndNode;
|
|
18574
|
+
};
|
|
18575
|
+
export declare type GraphStoreBatchIssueAssociatedBuildStartNode = Node & {
|
|
18576
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildStartNode';
|
|
18577
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedBuildStartUnion>;
|
|
18578
|
+
id: Scalars['ID']['output'];
|
|
18579
|
+
};
|
|
18580
|
+
export declare type GraphStoreBatchIssueAssociatedBuildStartUnion = JiraIssue;
|
|
18581
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
18582
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentConnection';
|
|
18583
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentEdge>>;
|
|
18584
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentNode>>;
|
|
18585
|
+
pageInfo: PageInfo;
|
|
18586
|
+
};
|
|
18587
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEdge = {
|
|
18588
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEdge';
|
|
18589
|
+
node: GraphStoreBatchIssueAssociatedDeploymentInnerConnection;
|
|
18590
|
+
};
|
|
18591
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode = Node & {
|
|
18592
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEndNode';
|
|
18593
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentEndUnion>;
|
|
18594
|
+
id: Scalars['ID']['output'];
|
|
18595
|
+
};
|
|
18596
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
18597
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerConnection = {
|
|
18598
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerConnection';
|
|
18599
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentInnerEdge>>;
|
|
18600
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentNode>>;
|
|
18601
|
+
requestedId: Scalars['ID']['output'];
|
|
18602
|
+
};
|
|
18603
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerEdge = {
|
|
18604
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerEdge';
|
|
18605
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18606
|
+
node: GraphStoreBatchIssueAssociatedDeploymentNode;
|
|
18607
|
+
};
|
|
18608
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentNode = Node & {
|
|
18609
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentNode';
|
|
18610
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18611
|
+
from: GraphStoreBatchIssueAssociatedDeploymentStartNode;
|
|
18612
|
+
id: Scalars['ID']['output'];
|
|
18613
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18614
|
+
to: GraphStoreBatchIssueAssociatedDeploymentEndNode;
|
|
18615
|
+
};
|
|
18616
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentStartNode = Node & {
|
|
18617
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentStartNode';
|
|
18618
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentStartUnion>;
|
|
18619
|
+
id: Scalars['ID']['output'];
|
|
18620
|
+
};
|
|
18621
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentStartUnion = JiraIssue;
|
|
18496
18622
|
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
18497
18623
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection';
|
|
18498
18624
|
edges: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge>>;
|
|
@@ -23278,6 +23404,7 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge =
|
|
|
23278
23404
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge';
|
|
23279
23405
|
createdAt: Scalars['DateTime']['output'];
|
|
23280
23406
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23407
|
+
id: Scalars['ID']['output'];
|
|
23281
23408
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23282
23409
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalUnion>;
|
|
23283
23410
|
};
|
|
@@ -23290,6 +23417,7 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInvers
|
|
|
23290
23417
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseEdge';
|
|
23291
23418
|
createdAt: Scalars['DateTime']['output'];
|
|
23292
23419
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23420
|
+
id: Scalars['ID']['output'];
|
|
23293
23421
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23294
23422
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseUnion>;
|
|
23295
23423
|
};
|
|
@@ -23304,6 +23432,7 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
23304
23432
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge';
|
|
23305
23433
|
createdAt: Scalars['DateTime']['output'];
|
|
23306
23434
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23435
|
+
id: Scalars['ID']['output'];
|
|
23307
23436
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23308
23437
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion>;
|
|
23309
23438
|
};
|
|
@@ -23316,6 +23445,7 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
23316
23445
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge';
|
|
23317
23446
|
createdAt: Scalars['DateTime']['output'];
|
|
23318
23447
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23448
|
+
id: Scalars['ID']['output'];
|
|
23319
23449
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23320
23450
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion>;
|
|
23321
23451
|
};
|
|
@@ -23330,6 +23460,7 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentEdge = {
|
|
|
23330
23460
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentEdge';
|
|
23331
23461
|
createdAt: Scalars['DateTime']['output'];
|
|
23332
23462
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23463
|
+
id: Scalars['ID']['output'];
|
|
23333
23464
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23334
23465
|
node?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentUnion>;
|
|
23335
23466
|
};
|
|
@@ -23343,6 +23474,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentEdge = {
|
|
|
23343
23474
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentEdge';
|
|
23344
23475
|
createdAt: Scalars['DateTime']['output'];
|
|
23345
23476
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23477
|
+
id: Scalars['ID']['output'];
|
|
23346
23478
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23347
23479
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentUnion>;
|
|
23348
23480
|
};
|
|
@@ -23355,6 +23487,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge =
|
|
|
23355
23487
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge';
|
|
23356
23488
|
createdAt: Scalars['DateTime']['output'];
|
|
23357
23489
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23490
|
+
id: Scalars['ID']['output'];
|
|
23358
23491
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23359
23492
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion>;
|
|
23360
23493
|
};
|
|
@@ -23371,6 +23504,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueEdge = {
|
|
|
23371
23504
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueEdge';
|
|
23372
23505
|
createdAt: Scalars['DateTime']['output'];
|
|
23373
23506
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23507
|
+
id: Scalars['ID']['output'];
|
|
23374
23508
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23375
23509
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueUnion>;
|
|
23376
23510
|
};
|
|
@@ -23385,6 +23519,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
23385
23519
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge';
|
|
23386
23520
|
createdAt: Scalars['DateTime']['output'];
|
|
23387
23521
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23522
|
+
id: Scalars['ID']['output'];
|
|
23388
23523
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23389
23524
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion>;
|
|
23390
23525
|
};
|
|
@@ -23399,6 +23534,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityEdge = {
|
|
|
23399
23534
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityEdge';
|
|
23400
23535
|
createdAt: Scalars['DateTime']['output'];
|
|
23401
23536
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23537
|
+
id: Scalars['ID']['output'];
|
|
23402
23538
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23403
23539
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityUnion>;
|
|
23404
23540
|
};
|
|
@@ -23411,6 +23547,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
23411
23547
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityInverseEdge';
|
|
23412
23548
|
createdAt: Scalars['DateTime']['output'];
|
|
23413
23549
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23550
|
+
id: Scalars['ID']['output'];
|
|
23414
23551
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23415
23552
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
23416
23553
|
};
|
|
@@ -23427,6 +23564,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge
|
|
|
23427
23564
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge';
|
|
23428
23565
|
createdAt: Scalars['DateTime']['output'];
|
|
23429
23566
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23567
|
+
id: Scalars['ID']['output'];
|
|
23430
23568
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23431
23569
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewUnion>;
|
|
23432
23570
|
};
|
|
@@ -23441,6 +23579,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInve
|
|
|
23441
23579
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseEdge';
|
|
23442
23580
|
createdAt: Scalars['DateTime']['output'];
|
|
23443
23581
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23582
|
+
id: Scalars['ID']['output'];
|
|
23444
23583
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23445
23584
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseUnion>;
|
|
23446
23585
|
};
|
|
@@ -23456,6 +23595,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
23456
23595
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkEdge';
|
|
23457
23596
|
createdAt: Scalars['DateTime']['output'];
|
|
23458
23597
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23598
|
+
id: Scalars['ID']['output'];
|
|
23459
23599
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23460
23600
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkUnion>;
|
|
23461
23601
|
};
|
|
@@ -23470,6 +23610,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
23470
23610
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseEdge';
|
|
23471
23611
|
createdAt: Scalars['DateTime']['output'];
|
|
23472
23612
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23613
|
+
id: Scalars['ID']['output'];
|
|
23473
23614
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23474
23615
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion>;
|
|
23475
23616
|
};
|
|
@@ -23487,6 +23628,7 @@ export declare type GraphStoreSimplifiedIncidentHasActionItemEdge = {
|
|
|
23487
23628
|
__typename?: 'GraphStoreSimplifiedIncidentHasActionItemEdge';
|
|
23488
23629
|
createdAt: Scalars['DateTime']['output'];
|
|
23489
23630
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23631
|
+
id: Scalars['ID']['output'];
|
|
23490
23632
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23491
23633
|
node?: Maybe<GraphStoreSimplifiedIncidentHasActionItemUnion>;
|
|
23492
23634
|
};
|
|
@@ -23501,6 +23643,7 @@ export declare type GraphStoreSimplifiedIncidentHasActionItemInverseEdge = {
|
|
|
23501
23643
|
__typename?: 'GraphStoreSimplifiedIncidentHasActionItemInverseEdge';
|
|
23502
23644
|
createdAt: Scalars['DateTime']['output'];
|
|
23503
23645
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23646
|
+
id: Scalars['ID']['output'];
|
|
23504
23647
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23505
23648
|
node?: Maybe<GraphStoreSimplifiedIncidentHasActionItemInverseUnion>;
|
|
23506
23649
|
};
|
|
@@ -23517,6 +23660,7 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueEdge = {
|
|
|
23517
23660
|
__typename?: 'GraphStoreSimplifiedIncidentLinkedJswIssueEdge';
|
|
23518
23661
|
createdAt: Scalars['DateTime']['output'];
|
|
23519
23662
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23663
|
+
id: Scalars['ID']['output'];
|
|
23520
23664
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23521
23665
|
node?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueUnion>;
|
|
23522
23666
|
};
|
|
@@ -23531,6 +23675,7 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
23531
23675
|
__typename?: 'GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge';
|
|
23532
23676
|
createdAt: Scalars['DateTime']['output'];
|
|
23533
23677
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23678
|
+
id: Scalars['ID']['output'];
|
|
23534
23679
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23535
23680
|
node?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion>;
|
|
23536
23681
|
};
|
|
@@ -23545,6 +23690,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
|
23545
23690
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseEdge';
|
|
23546
23691
|
createdAt: Scalars['DateTime']['output'];
|
|
23547
23692
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23693
|
+
id: Scalars['ID']['output'];
|
|
23548
23694
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23549
23695
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
23550
23696
|
};
|
|
@@ -23558,6 +23704,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
|
|
|
23558
23704
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildInverseEdge';
|
|
23559
23705
|
createdAt: Scalars['DateTime']['output'];
|
|
23560
23706
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23707
|
+
id: Scalars['ID']['output'];
|
|
23561
23708
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23562
23709
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseUnion>;
|
|
23563
23710
|
};
|
|
@@ -23571,6 +23718,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
|
23571
23718
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseEdge';
|
|
23572
23719
|
createdAt: Scalars['DateTime']['output'];
|
|
23573
23720
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23721
|
+
id: Scalars['ID']['output'];
|
|
23574
23722
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23575
23723
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
|
|
23576
23724
|
};
|
|
@@ -23584,6 +23732,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
|
23584
23732
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentEdge';
|
|
23585
23733
|
createdAt: Scalars['DateTime']['output'];
|
|
23586
23734
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23735
|
+
id: Scalars['ID']['output'];
|
|
23587
23736
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23588
23737
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentUnion>;
|
|
23589
23738
|
};
|
|
@@ -23596,6 +23745,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
|
23596
23745
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge';
|
|
23597
23746
|
createdAt: Scalars['DateTime']['output'];
|
|
23598
23747
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23748
|
+
id: Scalars['ID']['output'];
|
|
23599
23749
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23600
23750
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
23601
23751
|
};
|
|
@@ -23610,6 +23760,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignEdge = {
|
|
|
23610
23760
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignEdge';
|
|
23611
23761
|
createdAt: Scalars['DateTime']['output'];
|
|
23612
23762
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23763
|
+
id: Scalars['ID']['output'];
|
|
23613
23764
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23614
23765
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignUnion>;
|
|
23615
23766
|
};
|
|
@@ -23622,6 +23773,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseEdge = {
|
|
|
23622
23773
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignInverseEdge';
|
|
23623
23774
|
createdAt: Scalars['DateTime']['output'];
|
|
23624
23775
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23776
|
+
id: Scalars['ID']['output'];
|
|
23625
23777
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23626
23778
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseUnion>;
|
|
23627
23779
|
};
|
|
@@ -23636,6 +23788,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge = {
|
|
|
23636
23788
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge';
|
|
23637
23789
|
createdAt: Scalars['DateTime']['output'];
|
|
23638
23790
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23791
|
+
id: Scalars['ID']['output'];
|
|
23639
23792
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23640
23793
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion>;
|
|
23641
23794
|
};
|
|
@@ -23648,6 +23801,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge =
|
|
|
23648
23801
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge';
|
|
23649
23802
|
createdAt: Scalars['DateTime']['output'];
|
|
23650
23803
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23804
|
+
id: Scalars['ID']['output'];
|
|
23651
23805
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23652
23806
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion>;
|
|
23653
23807
|
};
|
|
@@ -23662,6 +23816,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge = {
|
|
|
23662
23816
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge';
|
|
23663
23817
|
createdAt: Scalars['DateTime']['output'];
|
|
23664
23818
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23819
|
+
id: Scalars['ID']['output'];
|
|
23665
23820
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23666
23821
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion>;
|
|
23667
23822
|
};
|
|
@@ -23674,6 +23829,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdg
|
|
|
23674
23829
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdge';
|
|
23675
23830
|
createdAt: Scalars['DateTime']['output'];
|
|
23676
23831
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23832
|
+
id: Scalars['ID']['output'];
|
|
23677
23833
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23678
23834
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion>;
|
|
23679
23835
|
};
|
|
@@ -23688,6 +23844,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrEdge = {
|
|
|
23688
23844
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrEdge';
|
|
23689
23845
|
createdAt: Scalars['DateTime']['output'];
|
|
23690
23846
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23847
|
+
id: Scalars['ID']['output'];
|
|
23691
23848
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23692
23849
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrUnion>;
|
|
23693
23850
|
};
|
|
@@ -23700,6 +23857,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
23700
23857
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseEdge';
|
|
23701
23858
|
createdAt: Scalars['DateTime']['output'];
|
|
23702
23859
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23860
|
+
id: Scalars['ID']['output'];
|
|
23703
23861
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23704
23862
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseUnion>;
|
|
23705
23863
|
};
|
|
@@ -23714,6 +23872,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
|
23714
23872
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge';
|
|
23715
23873
|
createdAt: Scalars['DateTime']['output'];
|
|
23716
23874
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23875
|
+
id: Scalars['ID']['output'];
|
|
23717
23876
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23718
23877
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
23719
23878
|
};
|
|
@@ -23729,6 +23888,7 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
|
|
|
23729
23888
|
__typename?: 'GraphStoreSimplifiedIssueChangesComponentInverseEdge';
|
|
23730
23889
|
createdAt: Scalars['DateTime']['output'];
|
|
23731
23890
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23891
|
+
id: Scalars['ID']['output'];
|
|
23732
23892
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23733
23893
|
node?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseUnion>;
|
|
23734
23894
|
};
|
|
@@ -23744,6 +23904,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge =
|
|
|
23744
23904
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge';
|
|
23745
23905
|
createdAt: Scalars['DateTime']['output'];
|
|
23746
23906
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23907
|
+
id: Scalars['ID']['output'];
|
|
23747
23908
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23748
23909
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion>;
|
|
23749
23910
|
};
|
|
@@ -23758,6 +23919,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInvers
|
|
|
23758
23919
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseEdge';
|
|
23759
23920
|
createdAt: Scalars['DateTime']['output'];
|
|
23760
23921
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23922
|
+
id: Scalars['ID']['output'];
|
|
23761
23923
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23762
23924
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion>;
|
|
23763
23925
|
};
|
|
@@ -23774,6 +23936,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge
|
|
|
23774
23936
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge';
|
|
23775
23937
|
createdAt: Scalars['DateTime']['output'];
|
|
23776
23938
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23939
|
+
id: Scalars['ID']['output'];
|
|
23777
23940
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23778
23941
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagUnion>;
|
|
23779
23942
|
};
|
|
@@ -23788,6 +23951,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInver
|
|
|
23788
23951
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseEdge';
|
|
23789
23952
|
createdAt: Scalars['DateTime']['output'];
|
|
23790
23953
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23954
|
+
id: Scalars['ID']['output'];
|
|
23791
23955
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23792
23956
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseUnion>;
|
|
23793
23957
|
};
|
|
@@ -23804,6 +23968,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrEdge = {
|
|
|
23804
23968
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrEdge';
|
|
23805
23969
|
createdAt: Scalars['DateTime']['output'];
|
|
23806
23970
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23971
|
+
id: Scalars['ID']['output'];
|
|
23807
23972
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23808
23973
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion>;
|
|
23809
23974
|
};
|
|
@@ -23818,6 +23983,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
23818
23983
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge';
|
|
23819
23984
|
createdAt: Scalars['DateTime']['output'];
|
|
23820
23985
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23986
|
+
id: Scalars['ID']['output'];
|
|
23821
23987
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23822
23988
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion>;
|
|
23823
23989
|
};
|
|
@@ -23834,6 +24000,7 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardEdge = {
|
|
|
23834
24000
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardEdge';
|
|
23835
24001
|
createdAt: Scalars['DateTime']['output'];
|
|
23836
24002
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24003
|
+
id: Scalars['ID']['output'];
|
|
23837
24004
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23838
24005
|
node?: Maybe<GraphStoreSimplifiedIssueToWhiteboardUnion>;
|
|
23839
24006
|
};
|
|
@@ -23848,6 +24015,7 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
|
|
|
23848
24015
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardInverseEdge';
|
|
23849
24016
|
createdAt: Scalars['DateTime']['output'];
|
|
23850
24017
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24018
|
+
id: Scalars['ID']['output'];
|
|
23851
24019
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23852
24020
|
node?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseUnion>;
|
|
23853
24021
|
};
|
|
@@ -23862,6 +24030,7 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge = {
|
|
|
23862
24030
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge';
|
|
23863
24031
|
createdAt: Scalars['DateTime']['output'];
|
|
23864
24032
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24033
|
+
id: Scalars['ID']['output'];
|
|
23865
24034
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23866
24035
|
node?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalUnion>;
|
|
23867
24036
|
};
|
|
@@ -23874,6 +24043,7 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdg
|
|
|
23874
24043
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdge';
|
|
23875
24044
|
createdAt: Scalars['DateTime']['output'];
|
|
23876
24045
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24046
|
+
id: Scalars['ID']['output'];
|
|
23877
24047
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23878
24048
|
node?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseUnion>;
|
|
23879
24049
|
};
|
|
@@ -23890,6 +24060,7 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge = {
|
|
|
23890
24060
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge';
|
|
23891
24061
|
createdAt: Scalars['DateTime']['output'];
|
|
23892
24062
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24063
|
+
id: Scalars['ID']['output'];
|
|
23893
24064
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23894
24065
|
node?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalUnion>;
|
|
23895
24066
|
};
|
|
@@ -23904,6 +24075,7 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdg
|
|
|
23904
24075
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdge';
|
|
23905
24076
|
createdAt: Scalars['DateTime']['output'];
|
|
23906
24077
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24078
|
+
id: Scalars['ID']['output'];
|
|
23907
24079
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23908
24080
|
node?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseUnion>;
|
|
23909
24081
|
};
|
|
@@ -23920,6 +24092,7 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceEdge = {
|
|
|
23920
24092
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceEdge';
|
|
23921
24093
|
createdAt: Scalars['DateTime']['output'];
|
|
23922
24094
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24095
|
+
id: Scalars['ID']['output'];
|
|
23923
24096
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23924
24097
|
node?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceUnion>;
|
|
23925
24098
|
};
|
|
@@ -23934,6 +24107,7 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge =
|
|
|
23934
24107
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge';
|
|
23935
24108
|
createdAt: Scalars['DateTime']['output'];
|
|
23936
24109
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24110
|
+
id: Scalars['ID']['output'];
|
|
23937
24111
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23938
24112
|
node?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseUnion>;
|
|
23939
24113
|
};
|
|
@@ -23950,6 +24124,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentEdge = {
|
|
|
23950
24124
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentEdge';
|
|
23951
24125
|
createdAt: Scalars['DateTime']['output'];
|
|
23952
24126
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24127
|
+
id: Scalars['ID']['output'];
|
|
23953
24128
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23954
24129
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentUnion>;
|
|
23955
24130
|
};
|
|
@@ -23964,6 +24139,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge
|
|
|
23964
24139
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge';
|
|
23965
24140
|
createdAt: Scalars['DateTime']['output'];
|
|
23966
24141
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24142
|
+
id: Scalars['ID']['output'];
|
|
23967
24143
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23968
24144
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion>;
|
|
23969
24145
|
};
|
|
@@ -23980,6 +24156,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentEdge = {
|
|
|
23980
24156
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentEdge';
|
|
23981
24157
|
createdAt: Scalars['DateTime']['output'];
|
|
23982
24158
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24159
|
+
id: Scalars['ID']['output'];
|
|
23983
24160
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23984
24161
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentUnion>;
|
|
23985
24162
|
};
|
|
@@ -23994,6 +24171,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentInverseEdge
|
|
|
23994
24171
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentInverseEdge';
|
|
23995
24172
|
createdAt: Scalars['DateTime']['output'];
|
|
23996
24173
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24174
|
+
id: Scalars['ID']['output'];
|
|
23997
24175
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23998
24176
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentInverseUnion>;
|
|
23999
24177
|
};
|
|
@@ -24010,6 +24188,7 @@ export declare type GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectE
|
|
|
24010
24188
|
__typename?: 'GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectEdge';
|
|
24011
24189
|
createdAt: Scalars['DateTime']['output'];
|
|
24012
24190
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24191
|
+
id: Scalars['ID']['output'];
|
|
24013
24192
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24014
24193
|
node?: Maybe<GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectUnion>;
|
|
24015
24194
|
};
|
|
@@ -24024,6 +24203,7 @@ export declare type GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectI
|
|
|
24024
24203
|
__typename?: 'GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectInverseEdge';
|
|
24025
24204
|
createdAt: Scalars['DateTime']['output'];
|
|
24026
24205
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24206
|
+
id: Scalars['ID']['output'];
|
|
24027
24207
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24028
24208
|
node?: Maybe<GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectInverseUnion>;
|
|
24029
24209
|
};
|
|
@@ -24040,6 +24220,7 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionEdge = {
|
|
|
24040
24220
|
__typename?: 'GraphStoreSimplifiedLinkedProjectHasVersionEdge';
|
|
24041
24221
|
createdAt: Scalars['DateTime']['output'];
|
|
24042
24222
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24223
|
+
id: Scalars['ID']['output'];
|
|
24043
24224
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24044
24225
|
node?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionUnion>;
|
|
24045
24226
|
};
|
|
@@ -24054,6 +24235,7 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
24054
24235
|
__typename?: 'GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge';
|
|
24055
24236
|
createdAt: Scalars['DateTime']['output'];
|
|
24056
24237
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24238
|
+
id: Scalars['ID']['output'];
|
|
24057
24239
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24058
24240
|
node?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion>;
|
|
24059
24241
|
};
|
|
@@ -24068,6 +24250,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentEdg
|
|
|
24068
24250
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImpactedByIncidentEdge';
|
|
24069
24251
|
createdAt: Scalars['DateTime']['output'];
|
|
24070
24252
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24253
|
+
id: Scalars['ID']['output'];
|
|
24071
24254
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24072
24255
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentUnion>;
|
|
24073
24256
|
};
|
|
@@ -24080,6 +24263,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentInv
|
|
|
24080
24263
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseEdge';
|
|
24081
24264
|
createdAt: Scalars['DateTime']['output'];
|
|
24082
24265
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24266
|
+
id: Scalars['ID']['output'];
|
|
24083
24267
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24084
24268
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseUnion>;
|
|
24085
24269
|
};
|
|
@@ -24094,6 +24278,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemE
|
|
|
24094
24278
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemEdge';
|
|
24095
24279
|
createdAt: Scalars['DateTime']['output'];
|
|
24096
24280
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24281
|
+
id: Scalars['ID']['output'];
|
|
24097
24282
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24098
24283
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemUnion>;
|
|
24099
24284
|
};
|
|
@@ -24106,6 +24291,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemI
|
|
|
24106
24291
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseEdge';
|
|
24107
24292
|
createdAt: Scalars['DateTime']['output'];
|
|
24108
24293
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24294
|
+
id: Scalars['ID']['output'];
|
|
24109
24295
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24110
24296
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion>;
|
|
24111
24297
|
};
|
|
@@ -24120,6 +24306,7 @@ export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentEdge = {
|
|
|
24120
24306
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentEdge';
|
|
24121
24307
|
createdAt: Scalars['DateTime']['output'];
|
|
24122
24308
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24309
|
+
id: Scalars['ID']['output'];
|
|
24123
24310
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24124
24311
|
node?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentUnion>;
|
|
24125
24312
|
};
|
|
@@ -24132,6 +24319,7 @@ export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseEdg
|
|
|
24132
24319
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentInverseEdge';
|
|
24133
24320
|
createdAt: Scalars['DateTime']['output'];
|
|
24134
24321
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24322
|
+
id: Scalars['ID']['output'];
|
|
24135
24323
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24136
24324
|
node?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion>;
|
|
24137
24325
|
};
|
|
@@ -24146,6 +24334,7 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueEdge = {
|
|
|
24146
24334
|
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueEdge';
|
|
24147
24335
|
createdAt: Scalars['DateTime']['output'];
|
|
24148
24336
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24337
|
+
id: Scalars['ID']['output'];
|
|
24149
24338
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24150
24339
|
node?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueUnion>;
|
|
24151
24340
|
};
|
|
@@ -24158,6 +24347,7 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
|
24158
24347
|
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge';
|
|
24159
24348
|
createdAt: Scalars['DateTime']['output'];
|
|
24160
24349
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24350
|
+
id: Scalars['ID']['output'];
|
|
24161
24351
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24162
24352
|
node?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion>;
|
|
24163
24353
|
};
|
|
@@ -24172,6 +24362,7 @@ export declare type GraphStoreSimplifiedPrInRepoEdge = {
|
|
|
24172
24362
|
__typename?: 'GraphStoreSimplifiedPrInRepoEdge';
|
|
24173
24363
|
createdAt: Scalars['DateTime']['output'];
|
|
24174
24364
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24365
|
+
id: Scalars['ID']['output'];
|
|
24175
24366
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24176
24367
|
node?: Maybe<GraphStoreSimplifiedPrInRepoUnion>;
|
|
24177
24368
|
};
|
|
@@ -24184,6 +24375,7 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
24184
24375
|
__typename?: 'GraphStoreSimplifiedPrInRepoInverseEdge';
|
|
24185
24376
|
createdAt: Scalars['DateTime']['output'];
|
|
24186
24377
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24378
|
+
id: Scalars['ID']['output'];
|
|
24187
24379
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24188
24380
|
node?: Maybe<GraphStoreSimplifiedPrInRepoInverseUnion>;
|
|
24189
24381
|
};
|
|
@@ -24200,6 +24392,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseEdge = {
|
|
|
24200
24392
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchInverseEdge';
|
|
24201
24393
|
createdAt: Scalars['DateTime']['output'];
|
|
24202
24394
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24395
|
+
id: Scalars['ID']['output'];
|
|
24203
24396
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24204
24397
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseUnion>;
|
|
24205
24398
|
};
|
|
@@ -24215,6 +24408,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseEdge = {
|
|
|
24215
24408
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildInverseEdge';
|
|
24216
24409
|
createdAt: Scalars['DateTime']['output'];
|
|
24217
24410
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24411
|
+
id: Scalars['ID']['output'];
|
|
24218
24412
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24219
24413
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseUnion>;
|
|
24220
24414
|
};
|
|
@@ -24230,6 +24424,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentEdge = {
|
|
|
24230
24424
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentEdge';
|
|
24231
24425
|
createdAt: Scalars['DateTime']['output'];
|
|
24232
24426
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24427
|
+
id: Scalars['ID']['output'];
|
|
24233
24428
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24234
24429
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentUnion>;
|
|
24235
24430
|
};
|
|
@@ -24244,6 +24439,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge =
|
|
|
24244
24439
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge';
|
|
24245
24440
|
createdAt: Scalars['DateTime']['output'];
|
|
24246
24441
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24442
|
+
id: Scalars['ID']['output'];
|
|
24247
24443
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24248
24444
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion>;
|
|
24249
24445
|
};
|
|
@@ -24260,6 +24456,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge = {
|
|
|
24260
24456
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge';
|
|
24261
24457
|
createdAt: Scalars['DateTime']['output'];
|
|
24262
24458
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24459
|
+
id: Scalars['ID']['output'];
|
|
24263
24460
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24264
24461
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagUnion>;
|
|
24265
24462
|
};
|
|
@@ -24274,6 +24471,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseEdge
|
|
|
24274
24471
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseEdge';
|
|
24275
24472
|
createdAt: Scalars['DateTime']['output'];
|
|
24276
24473
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24474
|
+
id: Scalars['ID']['output'];
|
|
24277
24475
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24278
24476
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseUnion>;
|
|
24279
24477
|
};
|
|
@@ -24290,6 +24488,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedIncidentEdge = {
|
|
|
24290
24488
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedIncidentEdge';
|
|
24291
24489
|
createdAt: Scalars['DateTime']['output'];
|
|
24292
24490
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24491
|
+
id: Scalars['ID']['output'];
|
|
24293
24492
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24294
24493
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedIncidentUnion>;
|
|
24295
24494
|
};
|
|
@@ -24304,6 +24503,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedIncidentInverseEdge = {
|
|
|
24304
24503
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedIncidentInverseEdge';
|
|
24305
24504
|
createdAt: Scalars['DateTime']['output'];
|
|
24306
24505
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24506
|
+
id: Scalars['ID']['output'];
|
|
24307
24507
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24308
24508
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedIncidentInverseUnion>;
|
|
24309
24509
|
};
|
|
@@ -24320,6 +24520,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedOpsgenieTeamEdge = {
|
|
|
24320
24520
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedOpsgenieTeamEdge';
|
|
24321
24521
|
createdAt: Scalars['DateTime']['output'];
|
|
24322
24522
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24523
|
+
id: Scalars['ID']['output'];
|
|
24323
24524
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24324
24525
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedOpsgenieTeamUnion>;
|
|
24325
24526
|
};
|
|
@@ -24334,6 +24535,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseEdge
|
|
|
24334
24535
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseEdge';
|
|
24335
24536
|
createdAt: Scalars['DateTime']['output'];
|
|
24336
24537
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24538
|
+
id: Scalars['ID']['output'];
|
|
24337
24539
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24338
24540
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseUnion>;
|
|
24339
24541
|
};
|
|
@@ -24350,6 +24552,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedPrEdge = {
|
|
|
24350
24552
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedPrEdge';
|
|
24351
24553
|
createdAt: Scalars['DateTime']['output'];
|
|
24352
24554
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24555
|
+
id: Scalars['ID']['output'];
|
|
24353
24556
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24354
24557
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedPrUnion>;
|
|
24355
24558
|
};
|
|
@@ -24364,6 +24567,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedPrInverseEdge = {
|
|
|
24364
24567
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedPrInverseEdge';
|
|
24365
24568
|
createdAt: Scalars['DateTime']['output'];
|
|
24366
24569
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24570
|
+
id: Scalars['ID']['output'];
|
|
24367
24571
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24368
24572
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedPrInverseUnion>;
|
|
24369
24573
|
};
|
|
@@ -24380,6 +24584,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoEdge = {
|
|
|
24380
24584
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedRepoEdge';
|
|
24381
24585
|
createdAt: Scalars['DateTime']['output'];
|
|
24382
24586
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24587
|
+
id: Scalars['ID']['output'];
|
|
24383
24588
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24384
24589
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoUnion>;
|
|
24385
24590
|
};
|
|
@@ -24394,6 +24599,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseEdge = {
|
|
|
24394
24599
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedRepoInverseEdge';
|
|
24395
24600
|
createdAt: Scalars['DateTime']['output'];
|
|
24396
24601
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24602
|
+
id: Scalars['ID']['output'];
|
|
24397
24603
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24398
24604
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoInverseUnion>;
|
|
24399
24605
|
};
|
|
@@ -24410,6 +24616,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedServiceEdge = {
|
|
|
24410
24616
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceEdge';
|
|
24411
24617
|
createdAt: Scalars['DateTime']['output'];
|
|
24412
24618
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24619
|
+
id: Scalars['ID']['output'];
|
|
24413
24620
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24414
24621
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceUnion>;
|
|
24415
24622
|
};
|
|
@@ -24424,6 +24631,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedServiceInverseEdge = {
|
|
|
24424
24631
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceInverseEdge';
|
|
24425
24632
|
createdAt: Scalars['DateTime']['output'];
|
|
24426
24633
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24634
|
+
id: Scalars['ID']['output'];
|
|
24427
24635
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24428
24636
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceInverseUnion>;
|
|
24429
24637
|
};
|
|
@@ -24440,6 +24648,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToIncidentEdge = {
|
|
|
24440
24648
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToIncidentEdge';
|
|
24441
24649
|
createdAt: Scalars['DateTime']['output'];
|
|
24442
24650
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24651
|
+
id: Scalars['ID']['output'];
|
|
24443
24652
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24444
24653
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentUnion>;
|
|
24445
24654
|
};
|
|
@@ -24454,6 +24663,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToIncidentInverseEdge =
|
|
|
24454
24663
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToIncidentInverseEdge';
|
|
24455
24664
|
createdAt: Scalars['DateTime']['output'];
|
|
24456
24665
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24666
|
+
id: Scalars['ID']['output'];
|
|
24457
24667
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24458
24668
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentInverseUnion>;
|
|
24459
24669
|
};
|
|
@@ -24470,6 +24680,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerEd
|
|
|
24470
24680
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerEdge';
|
|
24471
24681
|
createdAt: Scalars['DateTime']['output'];
|
|
24472
24682
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24683
|
+
id: Scalars['ID']['output'];
|
|
24473
24684
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24474
24685
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerUnion>;
|
|
24475
24686
|
};
|
|
@@ -24484,6 +24695,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerIn
|
|
|
24484
24695
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseEdge';
|
|
24485
24696
|
createdAt: Scalars['DateTime']['output'];
|
|
24486
24697
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24698
|
+
id: Scalars['ID']['output'];
|
|
24487
24699
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24488
24700
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseUnion>;
|
|
24489
24701
|
};
|
|
@@ -24500,6 +24712,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerInve
|
|
|
24500
24712
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseEdge';
|
|
24501
24713
|
createdAt: Scalars['DateTime']['output'];
|
|
24502
24714
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24715
|
+
id: Scalars['ID']['output'];
|
|
24503
24716
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24504
24717
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseUnion>;
|
|
24505
24718
|
};
|
|
@@ -24515,6 +24728,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityEdge = {
|
|
|
24515
24728
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedVulnerabilityEdge';
|
|
24516
24729
|
createdAt: Scalars['DateTime']['output'];
|
|
24517
24730
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24731
|
+
id: Scalars['ID']['output'];
|
|
24518
24732
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24519
24733
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityUnion>;
|
|
24520
24734
|
};
|
|
@@ -24529,6 +24743,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseEdg
|
|
|
24529
24743
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseEdge';
|
|
24530
24744
|
createdAt: Scalars['DateTime']['output'];
|
|
24531
24745
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24746
|
+
id: Scalars['ID']['output'];
|
|
24532
24747
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24533
24748
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseUnion>;
|
|
24534
24749
|
};
|
|
@@ -24545,6 +24760,7 @@ export declare type GraphStoreSimplifiedProjectDisassociatedRepoEdge = {
|
|
|
24545
24760
|
__typename?: 'GraphStoreSimplifiedProjectDisassociatedRepoEdge';
|
|
24546
24761
|
createdAt: Scalars['DateTime']['output'];
|
|
24547
24762
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24763
|
+
id: Scalars['ID']['output'];
|
|
24548
24764
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24549
24765
|
node?: Maybe<GraphStoreSimplifiedProjectDisassociatedRepoUnion>;
|
|
24550
24766
|
};
|
|
@@ -24559,6 +24775,7 @@ export declare type GraphStoreSimplifiedProjectDisassociatedRepoInverseEdge = {
|
|
|
24559
24775
|
__typename?: 'GraphStoreSimplifiedProjectDisassociatedRepoInverseEdge';
|
|
24560
24776
|
createdAt: Scalars['DateTime']['output'];
|
|
24561
24777
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24778
|
+
id: Scalars['ID']['output'];
|
|
24562
24779
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24563
24780
|
node?: Maybe<GraphStoreSimplifiedProjectDisassociatedRepoInverseUnion>;
|
|
24564
24781
|
};
|
|
@@ -24575,6 +24792,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityEdge = {
|
|
|
24575
24792
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationEntityEdge';
|
|
24576
24793
|
createdAt: Scalars['DateTime']['output'];
|
|
24577
24794
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24795
|
+
id: Scalars['ID']['output'];
|
|
24578
24796
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24579
24797
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityUnion>;
|
|
24580
24798
|
};
|
|
@@ -24589,6 +24807,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseEdge =
|
|
|
24589
24807
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationEntityInverseEdge';
|
|
24590
24808
|
createdAt: Scalars['DateTime']['output'];
|
|
24591
24809
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24810
|
+
id: Scalars['ID']['output'];
|
|
24592
24811
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24593
24812
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityInverseUnion>;
|
|
24594
24813
|
};
|
|
@@ -24605,6 +24824,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationPageEdge = {
|
|
|
24605
24824
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageEdge';
|
|
24606
24825
|
createdAt: Scalars['DateTime']['output'];
|
|
24607
24826
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24827
|
+
id: Scalars['ID']['output'];
|
|
24608
24828
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24609
24829
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationPageUnion>;
|
|
24610
24830
|
};
|
|
@@ -24619,6 +24839,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationPageInverseEdge = {
|
|
|
24619
24839
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageInverseEdge';
|
|
24620
24840
|
createdAt: Scalars['DateTime']['output'];
|
|
24621
24841
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24842
|
+
id: Scalars['ID']['output'];
|
|
24622
24843
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24623
24844
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationPageInverseUnion>;
|
|
24624
24845
|
};
|
|
@@ -24635,6 +24856,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationSpaceEdge = {
|
|
|
24635
24856
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationSpaceEdge';
|
|
24636
24857
|
createdAt: Scalars['DateTime']['output'];
|
|
24637
24858
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24859
|
+
id: Scalars['ID']['output'];
|
|
24638
24860
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24639
24861
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationSpaceUnion>;
|
|
24640
24862
|
};
|
|
@@ -24649,6 +24871,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationSpaceInverseEdge = {
|
|
|
24649
24871
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationSpaceInverseEdge';
|
|
24650
24872
|
createdAt: Scalars['DateTime']['output'];
|
|
24651
24873
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24874
|
+
id: Scalars['ID']['output'];
|
|
24652
24875
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24653
24876
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationSpaceInverseUnion>;
|
|
24654
24877
|
};
|
|
@@ -24665,6 +24888,7 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoEdge = {
|
|
|
24665
24888
|
__typename?: 'GraphStoreSimplifiedProjectExplicitlyAssociatedRepoEdge';
|
|
24666
24889
|
createdAt: Scalars['DateTime']['output'];
|
|
24667
24890
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24891
|
+
id: Scalars['ID']['output'];
|
|
24668
24892
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24669
24893
|
node?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion>;
|
|
24670
24894
|
};
|
|
@@ -24679,6 +24903,7 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
24679
24903
|
__typename?: 'GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEdge';
|
|
24680
24904
|
createdAt: Scalars['DateTime']['output'];
|
|
24681
24905
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24906
|
+
id: Scalars['ID']['output'];
|
|
24682
24907
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24683
24908
|
node?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion>;
|
|
24684
24909
|
};
|
|
@@ -24695,6 +24920,7 @@ export declare type GraphStoreSimplifiedProjectHasIssueEdge = {
|
|
|
24695
24920
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueEdge';
|
|
24696
24921
|
createdAt: Scalars['DateTime']['output'];
|
|
24697
24922
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24923
|
+
id: Scalars['ID']['output'];
|
|
24698
24924
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24699
24925
|
node?: Maybe<GraphStoreSimplifiedProjectHasIssueUnion>;
|
|
24700
24926
|
};
|
|
@@ -24709,6 +24935,7 @@ export declare type GraphStoreSimplifiedProjectHasIssueInverseEdge = {
|
|
|
24709
24935
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueInverseEdge';
|
|
24710
24936
|
createdAt: Scalars['DateTime']['output'];
|
|
24711
24937
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24938
|
+
id: Scalars['ID']['output'];
|
|
24712
24939
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24713
24940
|
node?: Maybe<GraphStoreSimplifiedProjectHasIssueInverseUnion>;
|
|
24714
24941
|
};
|
|
@@ -24725,6 +24952,7 @@ export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge = {
|
|
|
24725
24952
|
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge';
|
|
24726
24953
|
createdAt: Scalars['DateTime']['output'];
|
|
24727
24954
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24955
|
+
id: Scalars['ID']['output'];
|
|
24728
24956
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24729
24957
|
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion>;
|
|
24730
24958
|
};
|
|
@@ -24739,6 +24967,7 @@ export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseE
|
|
|
24739
24967
|
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge';
|
|
24740
24968
|
createdAt: Scalars['DateTime']['output'];
|
|
24741
24969
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24970
|
+
id: Scalars['ID']['output'];
|
|
24742
24971
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24743
24972
|
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion>;
|
|
24744
24973
|
};
|
|
@@ -24755,6 +24984,7 @@ export declare type GraphStoreSimplifiedProjectHasSharedVersionWithEdge = {
|
|
|
24755
24984
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithEdge';
|
|
24756
24985
|
createdAt: Scalars['DateTime']['output'];
|
|
24757
24986
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24987
|
+
id: Scalars['ID']['output'];
|
|
24758
24988
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24759
24989
|
node?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithUnion>;
|
|
24760
24990
|
};
|
|
@@ -24769,6 +24999,7 @@ export declare type GraphStoreSimplifiedProjectHasSharedVersionWithInverseEdge =
|
|
|
24769
24999
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithInverseEdge';
|
|
24770
25000
|
createdAt: Scalars['DateTime']['output'];
|
|
24771
25001
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25002
|
+
id: Scalars['ID']['output'];
|
|
24772
25003
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24773
25004
|
node?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithInverseUnion>;
|
|
24774
25005
|
};
|
|
@@ -24785,6 +25016,7 @@ export declare type GraphStoreSimplifiedProjectHasVersionEdge = {
|
|
|
24785
25016
|
__typename?: 'GraphStoreSimplifiedProjectHasVersionEdge';
|
|
24786
25017
|
createdAt: Scalars['DateTime']['output'];
|
|
24787
25018
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25019
|
+
id: Scalars['ID']['output'];
|
|
24788
25020
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24789
25021
|
node?: Maybe<GraphStoreSimplifiedProjectHasVersionUnion>;
|
|
24790
25022
|
};
|
|
@@ -24799,6 +25031,7 @@ export declare type GraphStoreSimplifiedProjectHasVersionInverseEdge = {
|
|
|
24799
25031
|
__typename?: 'GraphStoreSimplifiedProjectHasVersionInverseEdge';
|
|
24800
25032
|
createdAt: Scalars['DateTime']['output'];
|
|
24801
25033
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25034
|
+
id: Scalars['ID']['output'];
|
|
24802
25035
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24803
25036
|
node?: Maybe<GraphStoreSimplifiedProjectHasVersionInverseUnion>;
|
|
24804
25037
|
};
|
|
@@ -24813,6 +25046,7 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
24813
25046
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge';
|
|
24814
25047
|
createdAt: Scalars['DateTime']['output'];
|
|
24815
25048
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25049
|
+
id: Scalars['ID']['output'];
|
|
24816
25050
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24817
25051
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
24818
25052
|
};
|
|
@@ -24828,6 +25062,7 @@ export declare type GraphStoreSimplifiedServiceLinkedIncidentEdge = {
|
|
|
24828
25062
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentEdge';
|
|
24829
25063
|
createdAt: Scalars['DateTime']['output'];
|
|
24830
25064
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25065
|
+
id: Scalars['ID']['output'];
|
|
24831
25066
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24832
25067
|
node?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentUnion>;
|
|
24833
25068
|
};
|
|
@@ -24842,6 +25077,7 @@ export declare type GraphStoreSimplifiedServiceLinkedIncidentInverseEdge = {
|
|
|
24842
25077
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentInverseEdge';
|
|
24843
25078
|
createdAt: Scalars['DateTime']['output'];
|
|
24844
25079
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25080
|
+
id: Scalars['ID']['output'];
|
|
24845
25081
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24846
25082
|
node?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseUnion>;
|
|
24847
25083
|
};
|
|
@@ -24858,6 +25094,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageEdge = {
|
|
|
24858
25094
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageEdge';
|
|
24859
25095
|
createdAt: Scalars['DateTime']['output'];
|
|
24860
25096
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25097
|
+
id: Scalars['ID']['output'];
|
|
24861
25098
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24862
25099
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageUnion>;
|
|
24863
25100
|
};
|
|
@@ -24872,6 +25109,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageInverseEdge = {
|
|
|
24872
25109
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageInverseEdge';
|
|
24873
25110
|
createdAt: Scalars['DateTime']['output'];
|
|
24874
25111
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25112
|
+
id: Scalars['ID']['output'];
|
|
24875
25113
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24876
25114
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageInverseUnion>;
|
|
24877
25115
|
};
|
|
@@ -24885,6 +25123,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageManualEdge = {
|
|
|
24885
25123
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageManualEdge';
|
|
24886
25124
|
createdAt: Scalars['DateTime']['output'];
|
|
24887
25125
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25126
|
+
id: Scalars['ID']['output'];
|
|
24888
25127
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24889
25128
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualUnion>;
|
|
24890
25129
|
};
|
|
@@ -24897,6 +25136,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseEdg
|
|
|
24897
25136
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseEdge';
|
|
24898
25137
|
createdAt: Scalars['DateTime']['output'];
|
|
24899
25138
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25139
|
+
id: Scalars['ID']['output'];
|
|
24900
25140
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24901
25141
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseUnion>;
|
|
24902
25142
|
};
|
|
@@ -24914,6 +25154,7 @@ export declare type GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageEdge =
|
|
|
24914
25154
|
__typename?: 'GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageEdge';
|
|
24915
25155
|
createdAt: Scalars['DateTime']['output'];
|
|
24916
25156
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25157
|
+
id: Scalars['ID']['output'];
|
|
24917
25158
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24918
25159
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageUnion>;
|
|
24919
25160
|
};
|
|
@@ -24928,6 +25169,7 @@ export declare type GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverse
|
|
|
24928
25169
|
__typename?: 'GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseEdge';
|
|
24929
25170
|
createdAt: Scalars['DateTime']['output'];
|
|
24930
25171
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25172
|
+
id: Scalars['ID']['output'];
|
|
24931
25173
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24932
25174
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseUnion>;
|
|
24933
25175
|
};
|
|
@@ -24942,6 +25184,7 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageEdge = {
|
|
|
24942
25184
|
__typename?: 'GraphStoreSimplifiedShipit57PullRequestLinksToPageEdge';
|
|
24943
25185
|
createdAt: Scalars['DateTime']['output'];
|
|
24944
25186
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25187
|
+
id: Scalars['ID']['output'];
|
|
24945
25188
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24946
25189
|
node?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion>;
|
|
24947
25190
|
};
|
|
@@ -24954,6 +25197,7 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
24954
25197
|
__typename?: 'GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdge';
|
|
24955
25198
|
createdAt: Scalars['DateTime']['output'];
|
|
24956
25199
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25200
|
+
id: Scalars['ID']['output'];
|
|
24957
25201
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24958
25202
|
node?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion>;
|
|
24959
25203
|
};
|
|
@@ -24970,6 +25214,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedDeploymentEdge = {
|
|
|
24970
25214
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentEdge';
|
|
24971
25215
|
createdAt: Scalars['DateTime']['output'];
|
|
24972
25216
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25217
|
+
id: Scalars['ID']['output'];
|
|
24973
25218
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24974
25219
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentUnion>;
|
|
24975
25220
|
};
|
|
@@ -24985,6 +25230,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge = {
|
|
|
24985
25230
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge';
|
|
24986
25231
|
createdAt: Scalars['DateTime']['output'];
|
|
24987
25232
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25233
|
+
id: Scalars['ID']['output'];
|
|
24988
25234
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24989
25235
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion>;
|
|
24990
25236
|
};
|
|
@@ -25000,6 +25246,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedPrEdge = {
|
|
|
25000
25246
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedPrEdge';
|
|
25001
25247
|
createdAt: Scalars['DateTime']['output'];
|
|
25002
25248
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25249
|
+
id: Scalars['ID']['output'];
|
|
25003
25250
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25004
25251
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedPrUnion>;
|
|
25005
25252
|
};
|
|
@@ -25015,6 +25262,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge = {
|
|
|
25015
25262
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge';
|
|
25016
25263
|
createdAt: Scalars['DateTime']['output'];
|
|
25017
25264
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25265
|
+
id: Scalars['ID']['output'];
|
|
25018
25266
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25019
25267
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion>;
|
|
25020
25268
|
};
|
|
@@ -25030,6 +25278,7 @@ export declare type GraphStoreSimplifiedSprintContainsIssueEdge = {
|
|
|
25030
25278
|
__typename?: 'GraphStoreSimplifiedSprintContainsIssueEdge';
|
|
25031
25279
|
createdAt: Scalars['DateTime']['output'];
|
|
25032
25280
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25281
|
+
id: Scalars['ID']['output'];
|
|
25033
25282
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25034
25283
|
node?: Maybe<GraphStoreSimplifiedSprintContainsIssueUnion>;
|
|
25035
25284
|
};
|
|
@@ -25045,6 +25294,7 @@ export declare type GraphStoreSimplifiedSprintRetrospectivePageEdge = {
|
|
|
25045
25294
|
__typename?: 'GraphStoreSimplifiedSprintRetrospectivePageEdge';
|
|
25046
25295
|
createdAt: Scalars['DateTime']['output'];
|
|
25047
25296
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25297
|
+
id: Scalars['ID']['output'];
|
|
25048
25298
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25049
25299
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectivePageUnion>;
|
|
25050
25300
|
};
|
|
@@ -25060,6 +25310,7 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
|
25060
25310
|
__typename?: 'GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge';
|
|
25061
25311
|
createdAt: Scalars['DateTime']['output'];
|
|
25062
25312
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25313
|
+
id: Scalars['ID']['output'];
|
|
25063
25314
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25064
25315
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
25065
25316
|
};
|
|
@@ -25075,6 +25326,7 @@ export declare type GraphStoreSimplifiedTeamWorksOnProjectEdge = {
|
|
|
25075
25326
|
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectEdge';
|
|
25076
25327
|
createdAt: Scalars['DateTime']['output'];
|
|
25077
25328
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25329
|
+
id: Scalars['ID']['output'];
|
|
25078
25330
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25079
25331
|
node?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectUnion>;
|
|
25080
25332
|
};
|
|
@@ -25090,6 +25342,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdg
|
|
|
25090
25342
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdge';
|
|
25091
25343
|
createdAt: Scalars['DateTime']['output'];
|
|
25092
25344
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25345
|
+
id: Scalars['ID']['output'];
|
|
25093
25346
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25094
25347
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion>;
|
|
25095
25348
|
};
|
|
@@ -25105,6 +25358,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge
|
|
|
25105
25358
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge';
|
|
25106
25359
|
createdAt: Scalars['DateTime']['output'];
|
|
25107
25360
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25361
|
+
id: Scalars['ID']['output'];
|
|
25108
25362
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25109
25363
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion>;
|
|
25110
25364
|
};
|
|
@@ -25118,6 +25372,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
25118
25372
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge';
|
|
25119
25373
|
createdAt: Scalars['DateTime']['output'];
|
|
25120
25374
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25375
|
+
id: Scalars['ID']['output'];
|
|
25121
25376
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25122
25377
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
25123
25378
|
};
|
|
@@ -25133,6 +25388,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseEdge = {
|
|
|
25133
25388
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseEdge';
|
|
25134
25389
|
createdAt: Scalars['DateTime']['output'];
|
|
25135
25390
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25391
|
+
id: Scalars['ID']['output'];
|
|
25136
25392
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25137
25393
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseUnion>;
|
|
25138
25394
|
};
|
|
@@ -25148,6 +25404,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseEdge = {
|
|
|
25148
25404
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildInverseEdge';
|
|
25149
25405
|
createdAt: Scalars['DateTime']['output'];
|
|
25150
25406
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25407
|
+
id: Scalars['ID']['output'];
|
|
25151
25408
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25152
25409
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseUnion>;
|
|
25153
25410
|
};
|
|
@@ -25163,6 +25420,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedCommitInverseEdge = {
|
|
|
25163
25420
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedCommitInverseEdge';
|
|
25164
25421
|
createdAt: Scalars['DateTime']['output'];
|
|
25165
25422
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25423
|
+
id: Scalars['ID']['output'];
|
|
25166
25424
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25167
25425
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedCommitInverseUnion>;
|
|
25168
25426
|
};
|
|
@@ -25178,6 +25436,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentEdge = {
|
|
|
25178
25436
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDeploymentEdge';
|
|
25179
25437
|
createdAt: Scalars['DateTime']['output'];
|
|
25180
25438
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25439
|
+
id: Scalars['ID']['output'];
|
|
25181
25440
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25182
25441
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentUnion>;
|
|
25183
25442
|
};
|
|
@@ -25192,6 +25451,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge =
|
|
|
25192
25451
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge';
|
|
25193
25452
|
createdAt: Scalars['DateTime']['output'];
|
|
25194
25453
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25454
|
+
id: Scalars['ID']['output'];
|
|
25195
25455
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25196
25456
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion>;
|
|
25197
25457
|
};
|
|
@@ -25208,6 +25468,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDesignEdge = {
|
|
|
25208
25468
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignEdge';
|
|
25209
25469
|
createdAt: Scalars['DateTime']['output'];
|
|
25210
25470
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25471
|
+
id: Scalars['ID']['output'];
|
|
25211
25472
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25212
25473
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignUnion>;
|
|
25213
25474
|
};
|
|
@@ -25222,6 +25483,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseEdge = {
|
|
|
25222
25483
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignInverseEdge';
|
|
25223
25484
|
createdAt: Scalars['DateTime']['output'];
|
|
25224
25485
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25486
|
+
id: Scalars['ID']['output'];
|
|
25225
25487
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25226
25488
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignInverseUnion>;
|
|
25227
25489
|
};
|
|
@@ -25238,6 +25500,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge = {
|
|
|
25238
25500
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge';
|
|
25239
25501
|
createdAt: Scalars['DateTime']['output'];
|
|
25240
25502
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25503
|
+
id: Scalars['ID']['output'];
|
|
25241
25504
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25242
25505
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagUnion>;
|
|
25243
25506
|
};
|
|
@@ -25252,6 +25515,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseEdge
|
|
|
25252
25515
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseEdge';
|
|
25253
25516
|
createdAt: Scalars['DateTime']['output'];
|
|
25254
25517
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25518
|
+
id: Scalars['ID']['output'];
|
|
25255
25519
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25256
25520
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseUnion>;
|
|
25257
25521
|
};
|
|
@@ -25266,6 +25530,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedIssueEdge = {
|
|
|
25266
25530
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedIssueEdge';
|
|
25267
25531
|
createdAt: Scalars['DateTime']['output'];
|
|
25268
25532
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25533
|
+
id: Scalars['ID']['output'];
|
|
25269
25534
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25270
25535
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedIssueUnion>;
|
|
25271
25536
|
};
|
|
@@ -25278,6 +25543,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedIssueInverseEdge = {
|
|
|
25278
25543
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedIssueInverseEdge';
|
|
25279
25544
|
createdAt: Scalars['DateTime']['output'];
|
|
25280
25545
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25546
|
+
id: Scalars['ID']['output'];
|
|
25281
25547
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25282
25548
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedIssueInverseUnion>;
|
|
25283
25549
|
};
|
|
@@ -25294,6 +25560,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestEdge = {
|
|
|
25294
25560
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedPullRequestEdge';
|
|
25295
25561
|
createdAt: Scalars['DateTime']['output'];
|
|
25296
25562
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25563
|
+
id: Scalars['ID']['output'];
|
|
25297
25564
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25298
25565
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestUnion>;
|
|
25299
25566
|
};
|
|
@@ -25308,6 +25575,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
25308
25575
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge';
|
|
25309
25576
|
createdAt: Scalars['DateTime']['output'];
|
|
25310
25577
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25578
|
+
id: Scalars['ID']['output'];
|
|
25311
25579
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25312
25580
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion>;
|
|
25313
25581
|
};
|
|
@@ -25322,6 +25590,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge =
|
|
|
25322
25590
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge';
|
|
25323
25591
|
createdAt: Scalars['DateTime']['output'];
|
|
25324
25592
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25593
|
+
id: Scalars['ID']['output'];
|
|
25325
25594
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25326
25595
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
25327
25596
|
};
|
|
@@ -25337,6 +25606,7 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge = {
|
|
|
25337
25606
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge';
|
|
25338
25607
|
createdAt: Scalars['DateTime']['output'];
|
|
25339
25608
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25609
|
+
id: Scalars['ID']['output'];
|
|
25340
25610
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25341
25611
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion>;
|
|
25342
25612
|
};
|
|
@@ -25351,6 +25621,7 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseE
|
|
|
25351
25621
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge';
|
|
25352
25622
|
createdAt: Scalars['DateTime']['output'];
|
|
25353
25623
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25624
|
+
id: Scalars['ID']['output'];
|
|
25354
25625
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25355
25626
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion>;
|
|
25356
25627
|
};
|
|
@@ -25367,6 +25638,7 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge = {
|
|
|
25367
25638
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge';
|
|
25368
25639
|
createdAt: Scalars['DateTime']['output'];
|
|
25369
25640
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25641
|
+
id: Scalars['ID']['output'];
|
|
25370
25642
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25371
25643
|
node?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueUnion>;
|
|
25372
25644
|
};
|
|
@@ -25381,6 +25653,7 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge
|
|
|
25381
25653
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge';
|
|
25382
25654
|
createdAt: Scalars['DateTime']['output'];
|
|
25383
25655
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25656
|
+
id: Scalars['ID']['output'];
|
|
25384
25657
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25385
25658
|
node?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion>;
|
|
25386
25659
|
};
|
|
@@ -25802,6 +26075,16 @@ export declare type HamsChangeOfferingExperienceCapability = CommerceExperienceC
|
|
|
25802
26075
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
25803
26076
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
25804
26077
|
};
|
|
26078
|
+
export declare type HamsChargeDetails = CommerceChargeDetails & {
|
|
26079
|
+
__typename?: 'HamsChargeDetails';
|
|
26080
|
+
chargeQuantities?: Maybe<Array<Maybe<HamsChargeQuantity>>>;
|
|
26081
|
+
};
|
|
26082
|
+
export declare type HamsChargeQuantity = CommerceChargeQuantity & {
|
|
26083
|
+
__typename?: 'HamsChargeQuantity';
|
|
26084
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
26085
|
+
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
26086
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
26087
|
+
};
|
|
25805
26088
|
export declare type HamsConfigurePaymentMethodExperienceCapability = CommerceExperienceCapability & {
|
|
25806
26089
|
__typename?: 'HamsConfigurePaymentMethodExperienceCapability';
|
|
25807
26090
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -25893,6 +26176,7 @@ export declare type HamsPrimaryCycle = CommercePrimaryCycle & {
|
|
|
25893
26176
|
export declare type HamsSubscription = CommerceSubscription & {
|
|
25894
26177
|
__typename?: 'HamsSubscription';
|
|
25895
26178
|
accountDetails?: Maybe<HamsAccountDetails>;
|
|
26179
|
+
chargeDetails?: Maybe<HamsChargeDetails>;
|
|
25896
26180
|
pricingPlan?: Maybe<HamsPricingPlan>;
|
|
25897
26181
|
trial?: Maybe<HamsTrial>;
|
|
25898
26182
|
};
|
|
@@ -40732,7 +41016,14 @@ export declare type JsmChatCreateChannelInput = {
|
|
|
40732
41016
|
};
|
|
40733
41017
|
export declare type JsmChatCreateChannelOutput = {
|
|
40734
41018
|
__typename?: 'JsmChatCreateChannelOutput';
|
|
41019
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
41020
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
41021
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40735
41022
|
message: Scalars['String']['output'];
|
|
41023
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypeData>>>;
|
|
41024
|
+
settings?: Maybe<JsmChatChannelSettings>;
|
|
41025
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
41026
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40736
41027
|
status: Scalars['Boolean']['output'];
|
|
40737
41028
|
};
|
|
40738
41029
|
export declare type JsmChatCreateCommentInput = {
|
|
@@ -40836,6 +41127,11 @@ export declare type JsmChatQueryInitializeConfigArgs = {
|
|
|
40836
41127
|
export declare type JsmChatQueryInitializeNativeConfigArgs = {
|
|
40837
41128
|
jiraProjectAri: Scalars['ID']['input'];
|
|
40838
41129
|
};
|
|
41130
|
+
export declare type JsmChatRequestTypeData = {
|
|
41131
|
+
__typename?: 'JsmChatRequestTypeData';
|
|
41132
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
41133
|
+
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
41134
|
+
};
|
|
40839
41135
|
export declare type JsmChatRequestTypesMappedResponse = {
|
|
40840
41136
|
__typename?: 'JsmChatRequestTypesMappedResponse';
|
|
40841
41137
|
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -40861,7 +41157,14 @@ export declare type JsmChatUpdateChannelSettingsInput = {
|
|
|
40861
41157
|
};
|
|
40862
41158
|
export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
40863
41159
|
__typename?: 'JsmChatUpdateChannelSettingsOutput';
|
|
41160
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
41161
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
41162
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40864
41163
|
message: Scalars['String']['output'];
|
|
41164
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypeData>>>;
|
|
41165
|
+
settings?: Maybe<JsmChatChannelSettings>;
|
|
41166
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
41167
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40865
41168
|
status: Scalars['Boolean']['output'];
|
|
40866
41169
|
};
|
|
40867
41170
|
export declare type JsmChatUpdateProjectSettingsInput = {
|
|
@@ -40959,9 +41262,11 @@ export declare type KnowledgeDiscoveryConfluenceSpace = KnowledgeDiscoveryEntity
|
|
|
40959
41262
|
};
|
|
40960
41263
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
40961
41264
|
definition: Scalars['String']['input'];
|
|
41265
|
+
entityIdInScope: Scalars['String']['input'];
|
|
40962
41266
|
keyPhrase: Scalars['String']['input'];
|
|
40963
41267
|
referenceContentId?: InputMaybe<Scalars['String']['input']>;
|
|
40964
41268
|
referenceUrl?: InputMaybe<Scalars['String']['input']>;
|
|
41269
|
+
scope: KnowledgeDiscoveryDefinitionScope;
|
|
40965
41270
|
workspaceId: Scalars['String']['input'];
|
|
40966
41271
|
};
|
|
40967
41272
|
export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
@@ -40977,8 +41282,10 @@ export declare type KnowledgeDiscoveryDefinition = {
|
|
|
40977
41282
|
createdAt: Scalars['String']['output'];
|
|
40978
41283
|
definition: Scalars['String']['output'];
|
|
40979
41284
|
editor?: Maybe<User>;
|
|
41285
|
+
entityIdInScope: Scalars['String']['output'];
|
|
40980
41286
|
keyPhrase: Scalars['String']['output'];
|
|
40981
41287
|
referenceUrl?: Maybe<Scalars['String']['output']>;
|
|
41288
|
+
scope: KnowledgeDiscoveryDefinitionScope;
|
|
40982
41289
|
};
|
|
40983
41290
|
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
40984
41291
|
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
@@ -40986,6 +41293,12 @@ export declare type KnowledgeDiscoveryDefinitionList = {
|
|
|
40986
41293
|
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
40987
41294
|
};
|
|
40988
41295
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
41296
|
+
export declare enum KnowledgeDiscoveryDefinitionScope {
|
|
41297
|
+
Blogpost = "BLOGPOST",
|
|
41298
|
+
Organization = "ORGANIZATION",
|
|
41299
|
+
Page = "PAGE",
|
|
41300
|
+
Space = "SPACE"
|
|
41301
|
+
}
|
|
40989
41302
|
export declare type KnowledgeDiscoveryEntity = {
|
|
40990
41303
|
id: Scalars['ID']['output'];
|
|
40991
41304
|
};
|
|
@@ -41045,11 +41358,15 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
41045
41358
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
41046
41359
|
};
|
|
41047
41360
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
41361
|
+
contentId: Scalars['String']['input'];
|
|
41048
41362
|
keyPhrase: Scalars['String']['input'];
|
|
41363
|
+
spaceId: Scalars['String']['input'];
|
|
41049
41364
|
workspaceId: Scalars['String']['input'];
|
|
41050
41365
|
};
|
|
41051
41366
|
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
41367
|
+
contentId: Scalars['String']['input'];
|
|
41052
41368
|
keyPhrase: Scalars['String']['input'];
|
|
41369
|
+
spaceId: Scalars['String']['input'];
|
|
41053
41370
|
workspaceId: Scalars['String']['input'];
|
|
41054
41371
|
};
|
|
41055
41372
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
@@ -42408,6 +42725,7 @@ export declare type Mutation = {
|
|
|
42408
42725
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
42409
42726
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
42410
42727
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
42728
|
+
workSuggestions?: Maybe<WorkSuggestionsMutation>;
|
|
42411
42729
|
};
|
|
42412
42730
|
export declare type MutationAddBetaUserAsSiteCreatorArgs = {
|
|
42413
42731
|
input: AddBetaUserAsSiteCreatorInput;
|
|
@@ -45141,6 +45459,7 @@ export declare type Query = {
|
|
|
45141
45459
|
users?: Maybe<Array<User>>;
|
|
45142
45460
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
45143
45461
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
45462
|
+
workSuggestions?: Maybe<WorkSuggestions>;
|
|
45144
45463
|
xflow?: Maybe<Scalars['String']['output']>;
|
|
45145
45464
|
};
|
|
45146
45465
|
export declare type QueryAnchorArgs = {
|
|
@@ -47289,6 +47608,16 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
47289
47608
|
type: SearchResultType;
|
|
47290
47609
|
url: Scalars['URL']['output'];
|
|
47291
47610
|
};
|
|
47611
|
+
export declare type SearchResultSlackMessage = SearchResult & {
|
|
47612
|
+
__typename?: 'SearchResultSlackMessage';
|
|
47613
|
+
description: Scalars['String']['output'];
|
|
47614
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47615
|
+
id: Scalars['ID']['output'];
|
|
47616
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47617
|
+
title: Scalars['String']['output'];
|
|
47618
|
+
type: SearchResultType;
|
|
47619
|
+
url: Scalars['URL']['output'];
|
|
47620
|
+
};
|
|
47292
47621
|
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
47293
47622
|
__typename?: 'SearchResultTrelloBoard';
|
|
47294
47623
|
description: Scalars['String']['output'];
|
|
@@ -47326,6 +47655,7 @@ export declare enum SearchResultType {
|
|
|
47326
47655
|
Goal = "goal",
|
|
47327
47656
|
Issue = "issue",
|
|
47328
47657
|
Learning = "learning",
|
|
47658
|
+
Message = "message",
|
|
47329
47659
|
Page = "page",
|
|
47330
47660
|
Plan = "plan",
|
|
47331
47661
|
Presentation = "presentation",
|
|
@@ -52460,8 +52790,14 @@ export declare type UserInstallationRulesPayload = Payload & {
|
|
|
52460
52790
|
rule?: Maybe<UserInstallationRuleValue>;
|
|
52461
52791
|
success: Scalars['Boolean']['output'];
|
|
52462
52792
|
};
|
|
52793
|
+
export declare type VirtualAgentAiAnswerStatusForChannel = {
|
|
52794
|
+
__typename?: 'VirtualAgentAiAnswerStatusForChannel';
|
|
52795
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
52796
|
+
slackChannelId: Scalars['String']['output'];
|
|
52797
|
+
};
|
|
52463
52798
|
export declare type VirtualAgentChannelConfig = {
|
|
52464
52799
|
__typename?: 'VirtualAgentChannelConfig';
|
|
52800
|
+
aiAnswersProductionStatus?: Maybe<Array<Maybe<VirtualAgentAiAnswerStatusForChannel>>>;
|
|
52465
52801
|
jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;
|
|
52466
52802
|
production?: Maybe<Array<Maybe<VirtualAgentSlackChannel>>>;
|
|
52467
52803
|
test?: Maybe<VirtualAgentSlackChannel>;
|
|
@@ -52760,6 +53096,7 @@ export declare type VirtualAgentMutationApi = {
|
|
|
52760
53096
|
createVirtualAgentConfiguration?: Maybe<VirtualAgentCreateConfigurationPayload>;
|
|
52761
53097
|
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
52762
53098
|
handleFlowEditorActions?: Maybe<VirtualAgentFlowEditorActionPayload>;
|
|
53099
|
+
updateAiAnswerForSlackChannel?: Maybe<VirtualAgentUpdateAiAnswerForSlackChannelPayload>;
|
|
52763
53100
|
updateChatChannel?: Maybe<VirtualAgentUpdateChatChannelPayload>;
|
|
52764
53101
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
52765
53102
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
@@ -52785,6 +53122,10 @@ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
|
|
|
52785
53122
|
input: VirtualAgentFlowEditorActionInput;
|
|
52786
53123
|
virtualAgentFlowEditorId: Scalars['ID']['input'];
|
|
52787
53124
|
};
|
|
53125
|
+
export declare type VirtualAgentMutationApiUpdateAiAnswerForSlackChannelArgs = {
|
|
53126
|
+
input: VirtualAgentUpdateAiAnswerForSlackChannelInput;
|
|
53127
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
53128
|
+
};
|
|
52788
53129
|
export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
52789
53130
|
input: VirtualAgentUpdateChatChannelInput;
|
|
52790
53131
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -52853,6 +53194,16 @@ export declare type VirtualAgentStatisticsProjection = {
|
|
|
52853
53194
|
globalStatistics?: Maybe<VirtualAgentGlobalStatisticsProjection>;
|
|
52854
53195
|
statisticsPercentageChange?: Maybe<VirtualAgentStatisticsPercentageChangeProjection>;
|
|
52855
53196
|
};
|
|
53197
|
+
export declare type VirtualAgentUpdateAiAnswerForSlackChannelInput = {
|
|
53198
|
+
isAiResponsesChannel: Scalars['Boolean']['input'];
|
|
53199
|
+
slackChannelId: Scalars['String']['input'];
|
|
53200
|
+
};
|
|
53201
|
+
export declare type VirtualAgentUpdateAiAnswerForSlackChannelPayload = Payload & {
|
|
53202
|
+
__typename?: 'VirtualAgentUpdateAiAnswerForSlackChannelPayload';
|
|
53203
|
+
channel?: Maybe<VirtualAgentAiAnswerStatusForChannel>;
|
|
53204
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53205
|
+
success: Scalars['Boolean']['output'];
|
|
53206
|
+
};
|
|
52856
53207
|
export declare type VirtualAgentUpdateChatChannelInput = {
|
|
52857
53208
|
halpChannelId: Scalars['String']['input'];
|
|
52858
53209
|
isAiResponsesChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52937,6 +53288,208 @@ export declare type WebTriggerUrlInput = {
|
|
|
52937
53288
|
envId: Scalars['ID']['input'];
|
|
52938
53289
|
triggerKey: Scalars['String']['input'];
|
|
52939
53290
|
};
|
|
53291
|
+
export declare type WorkSuggestions = {
|
|
53292
|
+
__typename?: 'WorkSuggestions';
|
|
53293
|
+
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
53294
|
+
};
|
|
53295
|
+
export declare type WorkSuggestionsWorkSuggestionsByContextAriArgs = {
|
|
53296
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53297
|
+
contextAri: WorkSuggestionsContextAri;
|
|
53298
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53299
|
+
};
|
|
53300
|
+
export declare enum WorkSuggestionsAction {
|
|
53301
|
+
Remove = "REMOVE",
|
|
53302
|
+
Snooze = "SNOOZE"
|
|
53303
|
+
}
|
|
53304
|
+
export declare type WorkSuggestionsActionInput = {
|
|
53305
|
+
cloudId: Scalars['ID']['input'];
|
|
53306
|
+
taskId: Scalars['String']['input'];
|
|
53307
|
+
};
|
|
53308
|
+
export declare type WorkSuggestionsActionPayload = Payload & {
|
|
53309
|
+
__typename?: 'WorkSuggestionsActionPayload';
|
|
53310
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53311
|
+
success: Scalars['Boolean']['output'];
|
|
53312
|
+
userActionState?: Maybe<WorkSuggestionsUserActionState>;
|
|
53313
|
+
};
|
|
53314
|
+
export declare type WorkSuggestionsBlockedIssue = {
|
|
53315
|
+
__typename?: 'WorkSuggestionsBlockedIssue';
|
|
53316
|
+
issueKey: Scalars['String']['output'];
|
|
53317
|
+
title: Scalars['String']['output'];
|
|
53318
|
+
};
|
|
53319
|
+
export declare type WorkSuggestionsBlockingIssueTask = WorkSuggestionsCommon & {
|
|
53320
|
+
__typename?: 'WorkSuggestionsBlockingIssueTask';
|
|
53321
|
+
blockedIssues?: Maybe<Array<WorkSuggestionsBlockedIssue>>;
|
|
53322
|
+
id: Scalars['String']['output'];
|
|
53323
|
+
issueIconUrl: Scalars['String']['output'];
|
|
53324
|
+
issueId: Scalars['String']['output'];
|
|
53325
|
+
issueKey: Scalars['String']['output'];
|
|
53326
|
+
title: Scalars['String']['output'];
|
|
53327
|
+
url: Scalars['String']['output'];
|
|
53328
|
+
};
|
|
53329
|
+
export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
53330
|
+
__typename?: 'WorkSuggestionsBuildTask';
|
|
53331
|
+
buildNumber: Scalars['Int']['output'];
|
|
53332
|
+
id: Scalars['String']['output'];
|
|
53333
|
+
issueId: Scalars['String']['output'];
|
|
53334
|
+
issueKey: Scalars['String']['output'];
|
|
53335
|
+
issueName: Scalars['String']['output'];
|
|
53336
|
+
lastUpdated: Scalars['String']['output'];
|
|
53337
|
+
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
53338
|
+
title: Scalars['String']['output'];
|
|
53339
|
+
url: Scalars['String']['output'];
|
|
53340
|
+
};
|
|
53341
|
+
export declare type WorkSuggestionsCommon = {
|
|
53342
|
+
id: Scalars['String']['output'];
|
|
53343
|
+
title: Scalars['String']['output'];
|
|
53344
|
+
url: Scalars['String']['output'];
|
|
53345
|
+
};
|
|
53346
|
+
export declare type WorkSuggestionsConnection = {
|
|
53347
|
+
__typename?: 'WorkSuggestionsConnection';
|
|
53348
|
+
edges: Array<Maybe<WorkSuggestionsEdge>>;
|
|
53349
|
+
nodes: Array<Maybe<WorkSuggestionsCommon>>;
|
|
53350
|
+
pageInfo: PageInfo;
|
|
53351
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53352
|
+
};
|
|
53353
|
+
export declare type WorkSuggestionsContextAri = {
|
|
53354
|
+
projectAri: Scalars['ID']['input'];
|
|
53355
|
+
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
53356
|
+
};
|
|
53357
|
+
export declare type WorkSuggestionsCreateUserProfileInput = {
|
|
53358
|
+
cloudId: Scalars['ID']['input'];
|
|
53359
|
+
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
53360
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
53361
|
+
};
|
|
53362
|
+
export declare type WorkSuggestionsCreateUserProfilePayload = Payload & {
|
|
53363
|
+
__typename?: 'WorkSuggestionsCreateUserProfilePayload';
|
|
53364
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53365
|
+
success: Scalars['Boolean']['output'];
|
|
53366
|
+
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53367
|
+
};
|
|
53368
|
+
export declare type WorkSuggestionsCriticalVulnerabilityTask = WorkSuggestionsCommon & {
|
|
53369
|
+
__typename?: 'WorkSuggestionsCriticalVulnerabilityTask';
|
|
53370
|
+
id: Scalars['String']['output'];
|
|
53371
|
+
introducedDate: Scalars['String']['output'];
|
|
53372
|
+
issueId: Scalars['String']['output'];
|
|
53373
|
+
issueKey: Scalars['String']['output'];
|
|
53374
|
+
securityContainerName: Scalars['String']['output'];
|
|
53375
|
+
status: WorkSuggestionsVulnerabilityStatus;
|
|
53376
|
+
title: Scalars['String']['output'];
|
|
53377
|
+
url: Scalars['String']['output'];
|
|
53378
|
+
};
|
|
53379
|
+
export declare type WorkSuggestionsDeploymentTask = WorkSuggestionsCommon & {
|
|
53380
|
+
__typename?: 'WorkSuggestionsDeploymentTask';
|
|
53381
|
+
environmentNames: Array<Scalars['String']['output']>;
|
|
53382
|
+
environmentType: WorkSuggestionsEnvironmentType;
|
|
53383
|
+
id: Scalars['String']['output'];
|
|
53384
|
+
issueId: Scalars['String']['output'];
|
|
53385
|
+
issueKey: Scalars['String']['output'];
|
|
53386
|
+
issueName: Scalars['String']['output'];
|
|
53387
|
+
lastUpdated: Scalars['String']['output'];
|
|
53388
|
+
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
53389
|
+
pipelineName: Scalars['String']['output'];
|
|
53390
|
+
title: Scalars['String']['output'];
|
|
53391
|
+
url: Scalars['String']['output'];
|
|
53392
|
+
};
|
|
53393
|
+
export declare type WorkSuggestionsEdge = {
|
|
53394
|
+
__typename?: 'WorkSuggestionsEdge';
|
|
53395
|
+
cursor: Scalars['String']['output'];
|
|
53396
|
+
node?: Maybe<WorkSuggestionsCommon>;
|
|
53397
|
+
};
|
|
53398
|
+
export declare enum WorkSuggestionsEnvironmentType {
|
|
53399
|
+
Development = "DEVELOPMENT",
|
|
53400
|
+
Production = "PRODUCTION",
|
|
53401
|
+
Staging = "STAGING",
|
|
53402
|
+
Testing = "TESTING",
|
|
53403
|
+
Unmapped = "UNMAPPED"
|
|
53404
|
+
}
|
|
53405
|
+
export declare type WorkSuggestionsMutation = {
|
|
53406
|
+
__typename?: 'WorkSuggestionsMutation';
|
|
53407
|
+
createUserProfile?: Maybe<WorkSuggestionsCreateUserProfilePayload>;
|
|
53408
|
+
purgeUserActionStateForCurrentUser?: Maybe<WorkSuggestionsActionPayload>;
|
|
53409
|
+
purgeUserProfileForCurrentUser?: Maybe<WorkSuggestionsPurgeUserProfilePayload>;
|
|
53410
|
+
removeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53411
|
+
snoozeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53412
|
+
};
|
|
53413
|
+
export declare type WorkSuggestionsMutationCreateUserProfileArgs = {
|
|
53414
|
+
input: WorkSuggestionsCreateUserProfileInput;
|
|
53415
|
+
};
|
|
53416
|
+
export declare type WorkSuggestionsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
53417
|
+
input: WorkSuggestionsPurgeUserActionStateInput;
|
|
53418
|
+
};
|
|
53419
|
+
export declare type WorkSuggestionsMutationPurgeUserProfileForCurrentUserArgs = {
|
|
53420
|
+
input: WorkSuggestionsPurgeUserProfileInput;
|
|
53421
|
+
};
|
|
53422
|
+
export declare type WorkSuggestionsMutationRemoveTaskArgs = {
|
|
53423
|
+
input: WorkSuggestionsActionInput;
|
|
53424
|
+
};
|
|
53425
|
+
export declare type WorkSuggestionsMutationSnoozeTaskArgs = {
|
|
53426
|
+
input: WorkSuggestionsActionInput;
|
|
53427
|
+
};
|
|
53428
|
+
export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtension & {
|
|
53429
|
+
__typename?: 'WorkSuggestionsMutationErrorExtension';
|
|
53430
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
53431
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
53432
|
+
};
|
|
53433
|
+
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
53434
|
+
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
53435
|
+
commentCount: Scalars['Int']['output'];
|
|
53436
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
53437
|
+
id: Scalars['String']['output'];
|
|
53438
|
+
lastUpdated: Scalars['String']['output'];
|
|
53439
|
+
needsWorkCount: Scalars['Int']['output'];
|
|
53440
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53441
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53442
|
+
title: Scalars['String']['output'];
|
|
53443
|
+
url: Scalars['String']['output'];
|
|
53444
|
+
};
|
|
53445
|
+
export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon & {
|
|
53446
|
+
__typename?: 'WorkSuggestionsPullRequestReviewTask';
|
|
53447
|
+
approvalsCount: Scalars['Int']['output'];
|
|
53448
|
+
commentCount: Scalars['Int']['output'];
|
|
53449
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
53450
|
+
id: Scalars['String']['output'];
|
|
53451
|
+
lastUpdated: Scalars['String']['output'];
|
|
53452
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53453
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53454
|
+
title: Scalars['String']['output'];
|
|
53455
|
+
url: Scalars['String']['output'];
|
|
53456
|
+
};
|
|
53457
|
+
export declare type WorkSuggestionsPurgeUserActionStateInput = {
|
|
53458
|
+
cloudId: Scalars['ID']['input'];
|
|
53459
|
+
};
|
|
53460
|
+
export declare type WorkSuggestionsPurgeUserProfileInput = {
|
|
53461
|
+
cloudId: Scalars['ID']['input'];
|
|
53462
|
+
};
|
|
53463
|
+
export declare type WorkSuggestionsPurgeUserProfilePayload = Payload & {
|
|
53464
|
+
__typename?: 'WorkSuggestionsPurgeUserProfilePayload';
|
|
53465
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53466
|
+
success: Scalars['Boolean']['output'];
|
|
53467
|
+
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53468
|
+
};
|
|
53469
|
+
export declare type WorkSuggestionsUserActionState = {
|
|
53470
|
+
__typename?: 'WorkSuggestionsUserActionState';
|
|
53471
|
+
expireAt: Scalars['String']['output'];
|
|
53472
|
+
reason: WorkSuggestionsAction;
|
|
53473
|
+
stateId: Scalars['String']['output'];
|
|
53474
|
+
taskId: Scalars['String']['output'];
|
|
53475
|
+
};
|
|
53476
|
+
export declare enum WorkSuggestionsUserPersona {
|
|
53477
|
+
Developer = "DEVELOPER"
|
|
53478
|
+
}
|
|
53479
|
+
export declare type WorkSuggestionsUserProfile = {
|
|
53480
|
+
__typename?: 'WorkSuggestionsUserProfile';
|
|
53481
|
+
aaid: Scalars['String']['output'];
|
|
53482
|
+
createdOn: Scalars['String']['output'];
|
|
53483
|
+
id: Scalars['String']['output'];
|
|
53484
|
+
persona?: Maybe<WorkSuggestionsUserPersona>;
|
|
53485
|
+
projectAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
53486
|
+
};
|
|
53487
|
+
export declare enum WorkSuggestionsVulnerabilityStatus {
|
|
53488
|
+
Closed = "CLOSED",
|
|
53489
|
+
Ignored = "IGNORED",
|
|
53490
|
+
Open = "OPEN",
|
|
53491
|
+
Unknown = "UNKNOWN"
|
|
53492
|
+
}
|
|
52940
53493
|
export declare type _AppliedDirective = {
|
|
52941
53494
|
__typename?: '_AppliedDirective';
|
|
52942
53495
|
args: Array<_DirectiveArgument>;
|