@forge/cli-shared 3.22.1-next.3 → 3.22.2-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/out/graphql/graphql-types.d.ts +1149 -200
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +343 -7
- package/package.json +2 -2
|
@@ -1867,6 +1867,7 @@ export type Backlog = {
|
|
|
1867
1867
|
extension?: Maybe<BacklogExtension>;
|
|
1868
1868
|
labels: Array<Maybe<Scalars['String']['output']>>;
|
|
1869
1869
|
requestColumnMigration: Scalars['Boolean']['output'];
|
|
1870
|
+
viewConfig?: Maybe<ViewConfig>;
|
|
1870
1871
|
};
|
|
1871
1872
|
export type BacklogCardsArgs = {
|
|
1872
1873
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -7553,7 +7554,7 @@ export declare enum CustomerServiceCustomDetailsEntityType {
|
|
|
7553
7554
|
Organization = "ORGANIZATION"
|
|
7554
7555
|
}
|
|
7555
7556
|
export type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
|
|
7556
|
-
export type CustomerServiceEntitlement = {
|
|
7557
|
+
export type CustomerServiceEntitlement = Node & {
|
|
7557
7558
|
__typename?: 'CustomerServiceEntitlement';
|
|
7558
7559
|
customDetails: Array<CustomerServiceCustomDetailValue>;
|
|
7559
7560
|
id: Scalars['ID']['output'];
|
|
@@ -7819,9 +7820,9 @@ export type CustomerServiceNoteAuthor = {
|
|
|
7819
7820
|
avatarUrl: Scalars['String']['output'];
|
|
7820
7821
|
displayName: Scalars['String']['output'];
|
|
7821
7822
|
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
7822
|
-
id
|
|
7823
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
7823
7824
|
isDeleted: Scalars['Boolean']['output'];
|
|
7824
|
-
name
|
|
7825
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7825
7826
|
};
|
|
7826
7827
|
export type CustomerServiceNoteCreateInput = {
|
|
7827
7828
|
body: Scalars['String']['input'];
|
|
@@ -7937,7 +7938,7 @@ export type CustomerServiceOrganizationUpdatePayload = Payload & {
|
|
|
7937
7938
|
success: Scalars['Boolean']['output'];
|
|
7938
7939
|
successfullyUpdatedOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
7939
7940
|
};
|
|
7940
|
-
export type CustomerServiceProduct = {
|
|
7941
|
+
export type CustomerServiceProduct = Node & {
|
|
7941
7942
|
__typename?: 'CustomerServiceProduct';
|
|
7942
7943
|
entitlementsCount?: Maybe<Scalars['Int']['output']>;
|
|
7943
7944
|
id: Scalars['ID']['output'];
|
|
@@ -7970,6 +7971,9 @@ export type CustomerServiceProductEdge = {
|
|
|
7970
7971
|
cursor: Scalars['String']['output'];
|
|
7971
7972
|
node?: Maybe<CustomerServiceProduct>;
|
|
7972
7973
|
};
|
|
7974
|
+
export type CustomerServiceProductFilterInput = {
|
|
7975
|
+
productNameBeginsWith?: InputMaybe<Scalars['String']['input']>;
|
|
7976
|
+
};
|
|
7973
7977
|
export type CustomerServiceProductQueryResult = CustomerServiceProductConnection | QueryError;
|
|
7974
7978
|
export type CustomerServiceProductUpdateInput = {
|
|
7975
7979
|
id: Scalars['ID']['input'];
|
|
@@ -8007,6 +8011,7 @@ export type CustomerServiceQueryApiOrganizationByOrganizationIdArgs = {
|
|
|
8007
8011
|
};
|
|
8008
8012
|
export type CustomerServiceQueryApiProductsArgs = {
|
|
8009
8013
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8014
|
+
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
8010
8015
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8011
8016
|
};
|
|
8012
8017
|
export type CustomerServiceStatusPayload = Payload & {
|
|
@@ -10788,7 +10793,6 @@ export type ForgeMetricsQuery = {
|
|
|
10788
10793
|
appMetrics: ForgeMetricsOtlpResult;
|
|
10789
10794
|
errors: ForgeMetricsErrorsResult;
|
|
10790
10795
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
10791
|
-
exportMetrics: ForgeMetricsOtlpResult;
|
|
10792
10796
|
invocations: ForgeMetricsInvocationsResult;
|
|
10793
10797
|
invocationsValue: ForgeMetricsInvocationsValueResult;
|
|
10794
10798
|
latencies: ForgeMetricsLatenciesResult;
|
|
@@ -10815,9 +10819,6 @@ export type ForgeMetricsQueryErrorsArgs = {
|
|
|
10815
10819
|
export type ForgeMetricsQueryErrorsValueArgs = {
|
|
10816
10820
|
query: ForgeMetricsQueryInput;
|
|
10817
10821
|
};
|
|
10818
|
-
export type ForgeMetricsQueryExportMetricsArgs = {
|
|
10819
|
-
query: ForgeMetricsOtlpQueryInput;
|
|
10820
|
-
};
|
|
10821
10822
|
export type ForgeMetricsQueryInvocationsArgs = {
|
|
10822
10823
|
query: ForgeMetricsQueryInput;
|
|
10823
10824
|
};
|
|
@@ -11035,6 +11036,8 @@ export declare enum GrantCheckProduct {
|
|
|
11035
11036
|
export type Graph = {
|
|
11036
11037
|
__typename?: 'Graph';
|
|
11037
11038
|
fetchAllRelationships?: Maybe<GraphSimpleRelationshipConnection>;
|
|
11039
|
+
incidentAssociatedPostIncidentReview?: Maybe<GraphJiraIssueConnection>;
|
|
11040
|
+
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphJiraIssueConnection>;
|
|
11038
11041
|
incidentAssociatedPostIncidentReviewLinkRelationship?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
11039
11042
|
incidentAssociatedPostIncidentReviewLinkRelationshipBatch?: Maybe<Array<Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>>>;
|
|
11040
11043
|
incidentAssociatedPostIncidentReviewLinkRelationshipInverse?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
@@ -11109,6 +11112,16 @@ export type GraphFetchAllRelationshipsArgs = {
|
|
|
11109
11112
|
updatedFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11110
11113
|
updatedTo?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11111
11114
|
};
|
|
11115
|
+
export type GraphIncidentAssociatedPostIncidentReviewArgs = {
|
|
11116
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11117
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11118
|
+
from: Scalars['ID']['input'];
|
|
11119
|
+
};
|
|
11120
|
+
export type GraphIncidentAssociatedPostIncidentReviewInverseArgs = {
|
|
11121
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11122
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11123
|
+
to: Scalars['ID']['input'];
|
|
11124
|
+
};
|
|
11112
11125
|
export type GraphIncidentAssociatedPostIncidentReviewLinkRelationshipArgs = {
|
|
11113
11126
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
11114
11127
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14086,10 +14099,14 @@ export type GraphStore = {
|
|
|
14086
14099
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
14087
14100
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
14088
14101
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
14102
|
+
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
14103
|
+
incidentAssociatedPostIncidentReviewInverseBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
14104
|
+
incidentAssociatedPostIncidentReviewInverseRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewConnection>;
|
|
14089
14105
|
incidentAssociatedPostIncidentReviewLinkBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
14090
14106
|
incidentAssociatedPostIncidentReviewLinkInverseBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
14091
14107
|
incidentAssociatedPostIncidentReviewLinkInverseRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
14092
14108
|
incidentAssociatedPostIncidentReviewLinkRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
14109
|
+
incidentAssociatedPostIncidentReviewRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewConnection>;
|
|
14093
14110
|
incidentHasActionItemBatch?: Maybe<GraphStoreBatchIncidentHasActionItemConnection>;
|
|
14094
14111
|
incidentHasActionItemInverseBatch?: Maybe<GraphStoreBatchIncidentHasActionItemConnection>;
|
|
14095
14112
|
incidentHasActionItemInverseRelationship?: Maybe<GraphStoreFullIncidentHasActionItemConnection>;
|
|
@@ -14227,10 +14244,13 @@ export type GraphStore = {
|
|
|
14227
14244
|
sprintAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullSprintAssociatedFeatureFlagConnection>;
|
|
14228
14245
|
sprintAssociatedPrInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedPrConnection>;
|
|
14229
14246
|
sprintAssociatedPrRelationship?: Maybe<GraphStoreFullSprintAssociatedPrConnection>;
|
|
14247
|
+
sprintAssociatedVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityConnection>;
|
|
14248
|
+
sprintAssociatedVulnerabilityRelationship?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityConnection>;
|
|
14230
14249
|
sprintContainsIssueInverseRelationship?: Maybe<GraphStoreFullSprintContainsIssueConnection>;
|
|
14231
14250
|
sprintContainsIssueRelationship?: Maybe<GraphStoreFullSprintContainsIssueConnection>;
|
|
14232
14251
|
sprintRetrospectivePageInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
14233
14252
|
sprintRetrospectivePageRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
14253
|
+
sprintRetrospectiveWhiteboard?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection>;
|
|
14234
14254
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
14235
14255
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
14236
14256
|
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
@@ -14336,6 +14356,21 @@ export type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
|
14336
14356
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14337
14357
|
id: Scalars['ID']['input'];
|
|
14338
14358
|
};
|
|
14359
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewBatchArgs = {
|
|
14360
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14361
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14362
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14363
|
+
};
|
|
14364
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewInverseBatchArgs = {
|
|
14365
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14366
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14367
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14368
|
+
};
|
|
14369
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewInverseRelationshipArgs = {
|
|
14370
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14371
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14372
|
+
id: Scalars['ID']['input'];
|
|
14373
|
+
};
|
|
14339
14374
|
export type GraphStoreIncidentAssociatedPostIncidentReviewLinkBatchArgs = {
|
|
14340
14375
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14341
14376
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14356,6 +14391,11 @@ export type GraphStoreIncidentAssociatedPostIncidentReviewLinkRelationshipArgs =
|
|
|
14356
14391
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14357
14392
|
id: Scalars['ID']['input'];
|
|
14358
14393
|
};
|
|
14394
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewRelationshipArgs = {
|
|
14395
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14396
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14397
|
+
id: Scalars['ID']['input'];
|
|
14398
|
+
};
|
|
14359
14399
|
export type GraphStoreIncidentHasActionItemBatchArgs = {
|
|
14360
14400
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14361
14401
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15075,6 +15115,20 @@ export type GraphStoreSprintAssociatedPrRelationshipArgs = {
|
|
|
15075
15115
|
id: Scalars['ID']['input'];
|
|
15076
15116
|
sort?: InputMaybe<GraphStoreSprintAssociatedPrSortInput>;
|
|
15077
15117
|
};
|
|
15118
|
+
export type GraphStoreSprintAssociatedVulnerabilityInverseRelationshipArgs = {
|
|
15119
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15120
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityFilterInput>;
|
|
15121
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15122
|
+
id: Scalars['ID']['input'];
|
|
15123
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedVulnerabilitySortInput>;
|
|
15124
|
+
};
|
|
15125
|
+
export type GraphStoreSprintAssociatedVulnerabilityRelationshipArgs = {
|
|
15126
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15127
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityFilterInput>;
|
|
15128
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15129
|
+
id: Scalars['ID']['input'];
|
|
15130
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedVulnerabilitySortInput>;
|
|
15131
|
+
};
|
|
15078
15132
|
export type GraphStoreSprintContainsIssueInverseRelationshipArgs = {
|
|
15079
15133
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15080
15134
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15095,6 +15149,11 @@ export type GraphStoreSprintRetrospectivePageRelationshipArgs = {
|
|
|
15095
15149
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15096
15150
|
id: Scalars['ID']['input'];
|
|
15097
15151
|
};
|
|
15152
|
+
export type GraphStoreSprintRetrospectiveWhiteboardArgs = {
|
|
15153
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15154
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15155
|
+
id: Scalars['ID']['input'];
|
|
15156
|
+
};
|
|
15098
15157
|
export type GraphStoreSprintRetrospectiveWhiteboardInverseRelationshipArgs = {
|
|
15099
15158
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15100
15159
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15273,6 +15332,31 @@ export type GraphStoreAtiFilterInput = {
|
|
|
15273
15332
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15274
15333
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15275
15334
|
};
|
|
15335
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
15336
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
15337
|
+
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
15338
|
+
nodes: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewNode>>;
|
|
15339
|
+
pageInfo: PageInfo;
|
|
15340
|
+
};
|
|
15341
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge = {
|
|
15342
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge';
|
|
15343
|
+
node: GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerConnection;
|
|
15344
|
+
};
|
|
15345
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode = Node & {
|
|
15346
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode';
|
|
15347
|
+
id: Scalars['ID']['output'];
|
|
15348
|
+
};
|
|
15349
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerConnection = {
|
|
15350
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerConnection';
|
|
15351
|
+
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerEdge>>;
|
|
15352
|
+
nodes: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewNode>>;
|
|
15353
|
+
requestedId: Scalars['ID']['output'];
|
|
15354
|
+
};
|
|
15355
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerEdge = {
|
|
15356
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerEdge';
|
|
15357
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15358
|
+
node: GraphStoreBatchIncidentAssociatedPostIncidentReviewNode;
|
|
15359
|
+
};
|
|
15276
15360
|
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection = HasPageInfo & {
|
|
15277
15361
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection';
|
|
15278
15362
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEdge>>;
|
|
@@ -15310,6 +15394,18 @@ export type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode = N
|
|
|
15310
15394
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode';
|
|
15311
15395
|
id: Scalars['ID']['output'];
|
|
15312
15396
|
};
|
|
15397
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewNode = Node & {
|
|
15398
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewNode';
|
|
15399
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15400
|
+
from: GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode;
|
|
15401
|
+
id: Scalars['ID']['output'];
|
|
15402
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15403
|
+
to: GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode;
|
|
15404
|
+
};
|
|
15405
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode = Node & {
|
|
15406
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode';
|
|
15407
|
+
id: Scalars['ID']['output'];
|
|
15408
|
+
};
|
|
15313
15409
|
export type GraphStoreBatchIncidentHasActionItemConnection = HasPageInfo & {
|
|
15314
15410
|
__typename?: 'GraphStoreBatchIncidentHasActionItemConnection';
|
|
15315
15411
|
edges: Array<Maybe<GraphStoreBatchIncidentHasActionItemEdge>>;
|
|
@@ -16000,7 +16096,7 @@ export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEdge = {
|
|
|
16000
16096
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16001
16097
|
node: GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceNode;
|
|
16002
16098
|
};
|
|
16003
|
-
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode =
|
|
16099
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode = {
|
|
16004
16100
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode';
|
|
16005
16101
|
id: Scalars['ID']['output'];
|
|
16006
16102
|
};
|
|
@@ -16012,7 +16108,7 @@ export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceNode = Nod
|
|
|
16012
16108
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16013
16109
|
to: GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode;
|
|
16014
16110
|
};
|
|
16015
|
-
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode =
|
|
16111
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode = {
|
|
16016
16112
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode';
|
|
16017
16113
|
id: Scalars['ID']['output'];
|
|
16018
16114
|
};
|
|
@@ -16027,7 +16123,7 @@ export type GraphStoreFullAtlasProjectContributesToAtlasGoalEdge = {
|
|
|
16027
16123
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16028
16124
|
node: GraphStoreFullAtlasProjectContributesToAtlasGoalNode;
|
|
16029
16125
|
};
|
|
16030
|
-
export type GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode =
|
|
16126
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode = {
|
|
16031
16127
|
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode';
|
|
16032
16128
|
id: Scalars['ID']['output'];
|
|
16033
16129
|
};
|
|
@@ -16039,7 +16135,7 @@ export type GraphStoreFullAtlasProjectContributesToAtlasGoalNode = Node & {
|
|
|
16039
16135
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16040
16136
|
to: GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode;
|
|
16041
16137
|
};
|
|
16042
|
-
export type GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode =
|
|
16138
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode = {
|
|
16043
16139
|
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode';
|
|
16044
16140
|
id: Scalars['ID']['output'];
|
|
16045
16141
|
};
|
|
@@ -16054,7 +16150,7 @@ export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
16054
16150
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16055
16151
|
node: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode;
|
|
16056
16152
|
};
|
|
16057
|
-
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode =
|
|
16153
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode = {
|
|
16058
16154
|
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode';
|
|
16059
16155
|
id: Scalars['ID']['output'];
|
|
16060
16156
|
};
|
|
@@ -16066,7 +16162,7 @@ export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode = Node & {
|
|
|
16066
16162
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16067
16163
|
to: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode;
|
|
16068
16164
|
};
|
|
16069
|
-
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode =
|
|
16165
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode = {
|
|
16070
16166
|
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode';
|
|
16071
16167
|
id: Scalars['ID']['output'];
|
|
16072
16168
|
};
|
|
@@ -16081,7 +16177,7 @@ export type GraphStoreFullComponentAssociatedDocumentEdge = {
|
|
|
16081
16177
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16082
16178
|
node: GraphStoreFullComponentAssociatedDocumentNode;
|
|
16083
16179
|
};
|
|
16084
|
-
export type GraphStoreFullComponentAssociatedDocumentEndNode =
|
|
16180
|
+
export type GraphStoreFullComponentAssociatedDocumentEndNode = {
|
|
16085
16181
|
__typename?: 'GraphStoreFullComponentAssociatedDocumentEndNode';
|
|
16086
16182
|
id: Scalars['ID']['output'];
|
|
16087
16183
|
};
|
|
@@ -16093,7 +16189,7 @@ export type GraphStoreFullComponentAssociatedDocumentNode = Node & {
|
|
|
16093
16189
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16094
16190
|
to: GraphStoreFullComponentAssociatedDocumentEndNode;
|
|
16095
16191
|
};
|
|
16096
|
-
export type GraphStoreFullComponentAssociatedDocumentStartNode =
|
|
16192
|
+
export type GraphStoreFullComponentAssociatedDocumentStartNode = {
|
|
16097
16193
|
__typename?: 'GraphStoreFullComponentAssociatedDocumentStartNode';
|
|
16098
16194
|
id: Scalars['ID']['output'];
|
|
16099
16195
|
};
|
|
@@ -16108,7 +16204,7 @@ export type GraphStoreFullComponentImpactedByIncidentEdge = {
|
|
|
16108
16204
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16109
16205
|
node: GraphStoreFullComponentImpactedByIncidentNode;
|
|
16110
16206
|
};
|
|
16111
|
-
export type GraphStoreFullComponentImpactedByIncidentEndNode =
|
|
16207
|
+
export type GraphStoreFullComponentImpactedByIncidentEndNode = {
|
|
16112
16208
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentEndNode';
|
|
16113
16209
|
id: Scalars['ID']['output'];
|
|
16114
16210
|
};
|
|
@@ -16120,7 +16216,7 @@ export type GraphStoreFullComponentImpactedByIncidentNode = Node & {
|
|
|
16120
16216
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16121
16217
|
to: GraphStoreFullComponentImpactedByIncidentEndNode;
|
|
16122
16218
|
};
|
|
16123
|
-
export type GraphStoreFullComponentImpactedByIncidentStartNode =
|
|
16219
|
+
export type GraphStoreFullComponentImpactedByIncidentStartNode = {
|
|
16124
16220
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentStartNode';
|
|
16125
16221
|
id: Scalars['ID']['output'];
|
|
16126
16222
|
};
|
|
@@ -16137,7 +16233,7 @@ export type GraphStoreFullComponentLinkedJswIssueEdge = {
|
|
|
16137
16233
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16138
16234
|
node: GraphStoreFullComponentLinkedJswIssueNode;
|
|
16139
16235
|
};
|
|
16140
|
-
export type GraphStoreFullComponentLinkedJswIssueEndNode =
|
|
16236
|
+
export type GraphStoreFullComponentLinkedJswIssueEndNode = {
|
|
16141
16237
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueEndNode';
|
|
16142
16238
|
id: Scalars['ID']['output'];
|
|
16143
16239
|
};
|
|
@@ -16149,7 +16245,7 @@ export type GraphStoreFullComponentLinkedJswIssueNode = Node & {
|
|
|
16149
16245
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16150
16246
|
to: GraphStoreFullComponentLinkedJswIssueEndNode;
|
|
16151
16247
|
};
|
|
16152
|
-
export type GraphStoreFullComponentLinkedJswIssueStartNode =
|
|
16248
|
+
export type GraphStoreFullComponentLinkedJswIssueStartNode = {
|
|
16153
16249
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueStartNode';
|
|
16154
16250
|
id: Scalars['ID']['output'];
|
|
16155
16251
|
};
|
|
@@ -16164,7 +16260,7 @@ export type GraphStoreFullContentReferencedEntityEdge = {
|
|
|
16164
16260
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16165
16261
|
node: GraphStoreFullContentReferencedEntityNode;
|
|
16166
16262
|
};
|
|
16167
|
-
export type GraphStoreFullContentReferencedEntityEndNode =
|
|
16263
|
+
export type GraphStoreFullContentReferencedEntityEndNode = {
|
|
16168
16264
|
__typename?: 'GraphStoreFullContentReferencedEntityEndNode';
|
|
16169
16265
|
id: Scalars['ID']['output'];
|
|
16170
16266
|
};
|
|
@@ -16176,10 +16272,25 @@ export type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
|
16176
16272
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16177
16273
|
to: GraphStoreFullContentReferencedEntityEndNode;
|
|
16178
16274
|
};
|
|
16179
|
-
export type GraphStoreFullContentReferencedEntityStartNode =
|
|
16275
|
+
export type GraphStoreFullContentReferencedEntityStartNode = {
|
|
16180
16276
|
__typename?: 'GraphStoreFullContentReferencedEntityStartNode';
|
|
16181
16277
|
id: Scalars['ID']['output'];
|
|
16182
16278
|
};
|
|
16279
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
16280
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
16281
|
+
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
16282
|
+
nodes: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewNode>>;
|
|
16283
|
+
pageInfo: PageInfo;
|
|
16284
|
+
};
|
|
16285
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewEdge = {
|
|
16286
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewEdge';
|
|
16287
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16288
|
+
node: GraphStoreFullIncidentAssociatedPostIncidentReviewNode;
|
|
16289
|
+
};
|
|
16290
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewEndNode = {
|
|
16291
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewEndNode';
|
|
16292
|
+
id: Scalars['ID']['output'];
|
|
16293
|
+
};
|
|
16183
16294
|
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection = HasPageInfo & HasTotal & {
|
|
16184
16295
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection';
|
|
16185
16296
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEdge>>;
|
|
@@ -16193,7 +16304,7 @@ export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEdge = {
|
|
|
16193
16304
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16194
16305
|
node: GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode;
|
|
16195
16306
|
};
|
|
16196
|
-
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode =
|
|
16307
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode = {
|
|
16197
16308
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode';
|
|
16198
16309
|
id: Scalars['ID']['output'];
|
|
16199
16310
|
};
|
|
@@ -16205,10 +16316,22 @@ export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode = Node &
|
|
|
16205
16316
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16206
16317
|
to: GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode;
|
|
16207
16318
|
};
|
|
16208
|
-
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode =
|
|
16319
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode = {
|
|
16209
16320
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode';
|
|
16210
16321
|
id: Scalars['ID']['output'];
|
|
16211
16322
|
};
|
|
16323
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewNode = Node & {
|
|
16324
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewNode';
|
|
16325
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16326
|
+
from: GraphStoreFullIncidentAssociatedPostIncidentReviewStartNode;
|
|
16327
|
+
id: Scalars['ID']['output'];
|
|
16328
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16329
|
+
to: GraphStoreFullIncidentAssociatedPostIncidentReviewEndNode;
|
|
16330
|
+
};
|
|
16331
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewStartNode = {
|
|
16332
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewStartNode';
|
|
16333
|
+
id: Scalars['ID']['output'];
|
|
16334
|
+
};
|
|
16212
16335
|
export type GraphStoreFullIncidentHasActionItemConnection = HasPageInfo & HasTotal & {
|
|
16213
16336
|
__typename?: 'GraphStoreFullIncidentHasActionItemConnection';
|
|
16214
16337
|
edges: Array<Maybe<GraphStoreFullIncidentHasActionItemEdge>>;
|
|
@@ -16222,7 +16345,7 @@ export type GraphStoreFullIncidentHasActionItemEdge = {
|
|
|
16222
16345
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16223
16346
|
node: GraphStoreFullIncidentHasActionItemNode;
|
|
16224
16347
|
};
|
|
16225
|
-
export type GraphStoreFullIncidentHasActionItemEndNode =
|
|
16348
|
+
export type GraphStoreFullIncidentHasActionItemEndNode = {
|
|
16226
16349
|
__typename?: 'GraphStoreFullIncidentHasActionItemEndNode';
|
|
16227
16350
|
id: Scalars['ID']['output'];
|
|
16228
16351
|
};
|
|
@@ -16234,7 +16357,7 @@ export type GraphStoreFullIncidentHasActionItemNode = Node & {
|
|
|
16234
16357
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16235
16358
|
to: GraphStoreFullIncidentHasActionItemEndNode;
|
|
16236
16359
|
};
|
|
16237
|
-
export type GraphStoreFullIncidentHasActionItemStartNode =
|
|
16360
|
+
export type GraphStoreFullIncidentHasActionItemStartNode = {
|
|
16238
16361
|
__typename?: 'GraphStoreFullIncidentHasActionItemStartNode';
|
|
16239
16362
|
id: Scalars['ID']['output'];
|
|
16240
16363
|
};
|
|
@@ -16251,7 +16374,7 @@ export type GraphStoreFullIncidentLinkedJswIssueEdge = {
|
|
|
16251
16374
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16252
16375
|
node: GraphStoreFullIncidentLinkedJswIssueNode;
|
|
16253
16376
|
};
|
|
16254
|
-
export type GraphStoreFullIncidentLinkedJswIssueEndNode =
|
|
16377
|
+
export type GraphStoreFullIncidentLinkedJswIssueEndNode = {
|
|
16255
16378
|
__typename?: 'GraphStoreFullIncidentLinkedJswIssueEndNode';
|
|
16256
16379
|
id: Scalars['ID']['output'];
|
|
16257
16380
|
};
|
|
@@ -16263,7 +16386,7 @@ export type GraphStoreFullIncidentLinkedJswIssueNode = Node & {
|
|
|
16263
16386
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16264
16387
|
to: GraphStoreFullIncidentLinkedJswIssueEndNode;
|
|
16265
16388
|
};
|
|
16266
|
-
export type GraphStoreFullIncidentLinkedJswIssueStartNode =
|
|
16389
|
+
export type GraphStoreFullIncidentLinkedJswIssueStartNode = {
|
|
16267
16390
|
__typename?: 'GraphStoreFullIncidentLinkedJswIssueStartNode';
|
|
16268
16391
|
id: Scalars['ID']['output'];
|
|
16269
16392
|
};
|
|
@@ -16278,7 +16401,7 @@ export type GraphStoreFullIssueAssociatedBranchEdge = {
|
|
|
16278
16401
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16279
16402
|
node: GraphStoreFullIssueAssociatedBranchNode;
|
|
16280
16403
|
};
|
|
16281
|
-
export type GraphStoreFullIssueAssociatedBranchEndNode =
|
|
16404
|
+
export type GraphStoreFullIssueAssociatedBranchEndNode = {
|
|
16282
16405
|
__typename?: 'GraphStoreFullIssueAssociatedBranchEndNode';
|
|
16283
16406
|
id: Scalars['ID']['output'];
|
|
16284
16407
|
};
|
|
@@ -16290,12 +16413,21 @@ export type GraphStoreFullIssueAssociatedBranchNode = Node & {
|
|
|
16290
16413
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16291
16414
|
to: GraphStoreFullIssueAssociatedBranchEndNode;
|
|
16292
16415
|
};
|
|
16293
|
-
export type GraphStoreFullIssueAssociatedBranchStartNode =
|
|
16416
|
+
export type GraphStoreFullIssueAssociatedBranchStartNode = {
|
|
16294
16417
|
__typename?: 'GraphStoreFullIssueAssociatedBranchStartNode';
|
|
16295
16418
|
data?: Maybe<GraphStoreFullIssueAssociatedBranchStartUnion>;
|
|
16296
16419
|
id: Scalars['ID']['output'];
|
|
16297
16420
|
};
|
|
16298
16421
|
export type GraphStoreFullIssueAssociatedBranchStartUnion = JiraIssue;
|
|
16422
|
+
export declare enum GraphStoreFullIssueAssociatedBuildBuildStateOutput {
|
|
16423
|
+
Cancelled = "CANCELLED",
|
|
16424
|
+
Failed = "FAILED",
|
|
16425
|
+
InProgress = "IN_PROGRESS",
|
|
16426
|
+
NotSet = "NOT_SET",
|
|
16427
|
+
Pending = "PENDING",
|
|
16428
|
+
Successful = "SUCCESSFUL",
|
|
16429
|
+
Unknown = "UNKNOWN"
|
|
16430
|
+
}
|
|
16299
16431
|
export type GraphStoreFullIssueAssociatedBuildConnection = HasPageInfo & {
|
|
16300
16432
|
__typename?: 'GraphStoreFullIssueAssociatedBuildConnection';
|
|
16301
16433
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedBuildEdge>>;
|
|
@@ -16307,9 +16439,10 @@ export type GraphStoreFullIssueAssociatedBuildEdge = {
|
|
|
16307
16439
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16308
16440
|
node: GraphStoreFullIssueAssociatedBuildNode;
|
|
16309
16441
|
};
|
|
16310
|
-
export type GraphStoreFullIssueAssociatedBuildEndNode =
|
|
16442
|
+
export type GraphStoreFullIssueAssociatedBuildEndNode = {
|
|
16311
16443
|
__typename?: 'GraphStoreFullIssueAssociatedBuildEndNode';
|
|
16312
16444
|
id: Scalars['ID']['output'];
|
|
16445
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
16313
16446
|
};
|
|
16314
16447
|
export type GraphStoreFullIssueAssociatedBuildNode = Node & {
|
|
16315
16448
|
__typename?: 'GraphStoreFullIssueAssociatedBuildNode';
|
|
@@ -16319,12 +16452,24 @@ export type GraphStoreFullIssueAssociatedBuildNode = Node & {
|
|
|
16319
16452
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16320
16453
|
to: GraphStoreFullIssueAssociatedBuildEndNode;
|
|
16321
16454
|
};
|
|
16322
|
-
export type
|
|
16455
|
+
export type GraphStoreFullIssueAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
16456
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildRelationshipObjectMetadataOutput';
|
|
16457
|
+
state?: Maybe<GraphStoreFullIssueAssociatedBuildBuildStateOutput>;
|
|
16458
|
+
testInfo?: Maybe<GraphStoreFullIssueAssociatedBuildTestInfoOutput>;
|
|
16459
|
+
};
|
|
16460
|
+
export type GraphStoreFullIssueAssociatedBuildStartNode = {
|
|
16323
16461
|
__typename?: 'GraphStoreFullIssueAssociatedBuildStartNode';
|
|
16324
16462
|
data?: Maybe<GraphStoreFullIssueAssociatedBuildStartUnion>;
|
|
16325
16463
|
id: Scalars['ID']['output'];
|
|
16326
16464
|
};
|
|
16327
16465
|
export type GraphStoreFullIssueAssociatedBuildStartUnion = JiraIssue;
|
|
16466
|
+
export type GraphStoreFullIssueAssociatedBuildTestInfoOutput = {
|
|
16467
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildTestInfoOutput';
|
|
16468
|
+
numberFailed?: Maybe<Scalars['Long']['output']>;
|
|
16469
|
+
numberPassed?: Maybe<Scalars['Long']['output']>;
|
|
16470
|
+
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
16471
|
+
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
16472
|
+
};
|
|
16328
16473
|
export type GraphStoreFullIssueAssociatedCommitConnection = HasPageInfo & {
|
|
16329
16474
|
__typename?: 'GraphStoreFullIssueAssociatedCommitConnection';
|
|
16330
16475
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedCommitEdge>>;
|
|
@@ -16336,7 +16481,7 @@ export type GraphStoreFullIssueAssociatedCommitEdge = {
|
|
|
16336
16481
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16337
16482
|
node: GraphStoreFullIssueAssociatedCommitNode;
|
|
16338
16483
|
};
|
|
16339
|
-
export type GraphStoreFullIssueAssociatedCommitEndNode =
|
|
16484
|
+
export type GraphStoreFullIssueAssociatedCommitEndNode = {
|
|
16340
16485
|
__typename?: 'GraphStoreFullIssueAssociatedCommitEndNode';
|
|
16341
16486
|
id: Scalars['ID']['output'];
|
|
16342
16487
|
};
|
|
@@ -16348,29 +16493,52 @@ export type GraphStoreFullIssueAssociatedCommitNode = Node & {
|
|
|
16348
16493
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16349
16494
|
to: GraphStoreFullIssueAssociatedCommitEndNode;
|
|
16350
16495
|
};
|
|
16351
|
-
export type GraphStoreFullIssueAssociatedCommitStartNode =
|
|
16496
|
+
export type GraphStoreFullIssueAssociatedCommitStartNode = {
|
|
16352
16497
|
__typename?: 'GraphStoreFullIssueAssociatedCommitStartNode';
|
|
16353
16498
|
data?: Maybe<GraphStoreFullIssueAssociatedCommitStartUnion>;
|
|
16354
16499
|
id: Scalars['ID']['output'];
|
|
16355
16500
|
};
|
|
16356
16501
|
export type GraphStoreFullIssueAssociatedCommitStartUnion = JiraIssue;
|
|
16502
|
+
export type GraphStoreFullIssueAssociatedDeploymentAuthorOutput = {
|
|
16503
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentAuthorOutput';
|
|
16504
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
16505
|
+
};
|
|
16357
16506
|
export type GraphStoreFullIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
16358
16507
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentConnection';
|
|
16359
16508
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentEdge>>;
|
|
16360
16509
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentNode>>;
|
|
16361
16510
|
pageInfo: PageInfo;
|
|
16362
16511
|
};
|
|
16512
|
+
export declare enum GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput {
|
|
16513
|
+
Cancelled = "CANCELLED",
|
|
16514
|
+
Failed = "FAILED",
|
|
16515
|
+
InProgress = "IN_PROGRESS",
|
|
16516
|
+
NotSet = "NOT_SET",
|
|
16517
|
+
Pending = "PENDING",
|
|
16518
|
+
RolledBack = "ROLLED_BACK",
|
|
16519
|
+
Successful = "SUCCESSFUL",
|
|
16520
|
+
Unknown = "UNKNOWN"
|
|
16521
|
+
}
|
|
16363
16522
|
export type GraphStoreFullIssueAssociatedDeploymentEdge = {
|
|
16364
16523
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentEdge';
|
|
16365
16524
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16366
16525
|
node: GraphStoreFullIssueAssociatedDeploymentNode;
|
|
16367
16526
|
};
|
|
16368
|
-
export type GraphStoreFullIssueAssociatedDeploymentEndNode =
|
|
16527
|
+
export type GraphStoreFullIssueAssociatedDeploymentEndNode = {
|
|
16369
16528
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentEndNode';
|
|
16370
16529
|
data?: Maybe<GraphStoreFullIssueAssociatedDeploymentEndUnion>;
|
|
16371
16530
|
id: Scalars['ID']['output'];
|
|
16531
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
16372
16532
|
};
|
|
16373
16533
|
export type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
16534
|
+
export declare enum GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput {
|
|
16535
|
+
Development = "DEVELOPMENT",
|
|
16536
|
+
NotSet = "NOT_SET",
|
|
16537
|
+
Production = "PRODUCTION",
|
|
16538
|
+
Staging = "STAGING",
|
|
16539
|
+
Testing = "TESTING",
|
|
16540
|
+
Unmapped = "UNMAPPED"
|
|
16541
|
+
}
|
|
16374
16542
|
export type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
16375
16543
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentNode';
|
|
16376
16544
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16379,7 +16547,13 @@ export type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
|
16379
16547
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16380
16548
|
to: GraphStoreFullIssueAssociatedDeploymentEndNode;
|
|
16381
16549
|
};
|
|
16382
|
-
export type
|
|
16550
|
+
export type GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
16551
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
16552
|
+
author?: Maybe<GraphStoreFullIssueAssociatedDeploymentAuthorOutput>;
|
|
16553
|
+
environmentType?: Maybe<GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput>;
|
|
16554
|
+
state?: Maybe<GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput>;
|
|
16555
|
+
};
|
|
16556
|
+
export type GraphStoreFullIssueAssociatedDeploymentStartNode = {
|
|
16383
16557
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentStartNode';
|
|
16384
16558
|
data?: Maybe<GraphStoreFullIssueAssociatedDeploymentStartUnion>;
|
|
16385
16559
|
id: Scalars['ID']['output'];
|
|
@@ -16391,15 +16565,31 @@ export type GraphStoreFullIssueAssociatedDesignConnection = HasPageInfo & {
|
|
|
16391
16565
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedDesignNode>>;
|
|
16392
16566
|
pageInfo: PageInfo;
|
|
16393
16567
|
};
|
|
16568
|
+
export declare enum GraphStoreFullIssueAssociatedDesignDesignStatusOutput {
|
|
16569
|
+
None = "NONE",
|
|
16570
|
+
NotSet = "NOT_SET",
|
|
16571
|
+
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
16572
|
+
Unknown = "UNKNOWN"
|
|
16573
|
+
}
|
|
16574
|
+
export declare enum GraphStoreFullIssueAssociatedDesignDesignTypeOutput {
|
|
16575
|
+
Canvas = "CANVAS",
|
|
16576
|
+
File = "FILE",
|
|
16577
|
+
Group = "GROUP",
|
|
16578
|
+
Node = "NODE",
|
|
16579
|
+
NotSet = "NOT_SET",
|
|
16580
|
+
Other = "OTHER",
|
|
16581
|
+
Prototype = "PROTOTYPE"
|
|
16582
|
+
}
|
|
16394
16583
|
export type GraphStoreFullIssueAssociatedDesignEdge = {
|
|
16395
16584
|
__typename?: 'GraphStoreFullIssueAssociatedDesignEdge';
|
|
16396
16585
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16397
16586
|
node: GraphStoreFullIssueAssociatedDesignNode;
|
|
16398
16587
|
};
|
|
16399
|
-
export type GraphStoreFullIssueAssociatedDesignEndNode =
|
|
16588
|
+
export type GraphStoreFullIssueAssociatedDesignEndNode = {
|
|
16400
16589
|
__typename?: 'GraphStoreFullIssueAssociatedDesignEndNode';
|
|
16401
16590
|
data?: Maybe<GraphStoreFullIssueAssociatedDesignEndUnion>;
|
|
16402
16591
|
id: Scalars['ID']['output'];
|
|
16592
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedDesignRelationshipObjectMetadataOutput>;
|
|
16403
16593
|
};
|
|
16404
16594
|
export type GraphStoreFullIssueAssociatedDesignEndUnion = DevOpsDesign;
|
|
16405
16595
|
export type GraphStoreFullIssueAssociatedDesignNode = Node & {
|
|
@@ -16410,7 +16600,12 @@ export type GraphStoreFullIssueAssociatedDesignNode = Node & {
|
|
|
16410
16600
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16411
16601
|
to: GraphStoreFullIssueAssociatedDesignEndNode;
|
|
16412
16602
|
};
|
|
16413
|
-
export type
|
|
16603
|
+
export type GraphStoreFullIssueAssociatedDesignRelationshipObjectMetadataOutput = {
|
|
16604
|
+
__typename?: 'GraphStoreFullIssueAssociatedDesignRelationshipObjectMetadataOutput';
|
|
16605
|
+
status?: Maybe<GraphStoreFullIssueAssociatedDesignDesignStatusOutput>;
|
|
16606
|
+
type?: Maybe<GraphStoreFullIssueAssociatedDesignDesignTypeOutput>;
|
|
16607
|
+
};
|
|
16608
|
+
export type GraphStoreFullIssueAssociatedDesignStartNode = {
|
|
16414
16609
|
__typename?: 'GraphStoreFullIssueAssociatedDesignStartNode';
|
|
16415
16610
|
data?: Maybe<GraphStoreFullIssueAssociatedDesignStartUnion>;
|
|
16416
16611
|
id: Scalars['ID']['output'];
|
|
@@ -16427,7 +16622,7 @@ export type GraphStoreFullIssueAssociatedFeatureFlagEdge = {
|
|
|
16427
16622
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16428
16623
|
node: GraphStoreFullIssueAssociatedFeatureFlagNode;
|
|
16429
16624
|
};
|
|
16430
|
-
export type GraphStoreFullIssueAssociatedFeatureFlagEndNode =
|
|
16625
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagEndNode = {
|
|
16431
16626
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagEndNode';
|
|
16432
16627
|
id: Scalars['ID']['output'];
|
|
16433
16628
|
};
|
|
@@ -16439,12 +16634,16 @@ export type GraphStoreFullIssueAssociatedFeatureFlagNode = Node & {
|
|
|
16439
16634
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16440
16635
|
to: GraphStoreFullIssueAssociatedFeatureFlagEndNode;
|
|
16441
16636
|
};
|
|
16442
|
-
export type GraphStoreFullIssueAssociatedFeatureFlagStartNode =
|
|
16637
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagStartNode = {
|
|
16443
16638
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagStartNode';
|
|
16444
16639
|
data?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagStartUnion>;
|
|
16445
16640
|
id: Scalars['ID']['output'];
|
|
16446
16641
|
};
|
|
16447
16642
|
export type GraphStoreFullIssueAssociatedFeatureFlagStartUnion = JiraIssue;
|
|
16643
|
+
export type GraphStoreFullIssueAssociatedPrAuthorOutput = {
|
|
16644
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrAuthorOutput';
|
|
16645
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
16646
|
+
};
|
|
16448
16647
|
export type GraphStoreFullIssueAssociatedPrConnection = HasPageInfo & {
|
|
16449
16648
|
__typename?: 'GraphStoreFullIssueAssociatedPrConnection';
|
|
16450
16649
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedPrEdge>>;
|
|
@@ -16456,10 +16655,11 @@ export type GraphStoreFullIssueAssociatedPrEdge = {
|
|
|
16456
16655
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16457
16656
|
node: GraphStoreFullIssueAssociatedPrNode;
|
|
16458
16657
|
};
|
|
16459
|
-
export type GraphStoreFullIssueAssociatedPrEndNode =
|
|
16658
|
+
export type GraphStoreFullIssueAssociatedPrEndNode = {
|
|
16460
16659
|
__typename?: 'GraphStoreFullIssueAssociatedPrEndNode';
|
|
16461
16660
|
data?: Maybe<GraphStoreFullIssueAssociatedPrEndUnion>;
|
|
16462
16661
|
id: Scalars['ID']['output'];
|
|
16662
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput>;
|
|
16463
16663
|
};
|
|
16464
16664
|
export type GraphStoreFullIssueAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
16465
16665
|
export type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
@@ -16470,7 +16670,32 @@ export type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
|
16470
16670
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16471
16671
|
to: GraphStoreFullIssueAssociatedPrEndNode;
|
|
16472
16672
|
};
|
|
16473
|
-
export
|
|
16673
|
+
export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
16674
|
+
Declined = "DECLINED",
|
|
16675
|
+
Merged = "MERGED",
|
|
16676
|
+
NotSet = "NOT_SET",
|
|
16677
|
+
Open = "OPEN",
|
|
16678
|
+
Unknown = "UNKNOWN"
|
|
16679
|
+
}
|
|
16680
|
+
export type GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput = {
|
|
16681
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput';
|
|
16682
|
+
author?: Maybe<GraphStoreFullIssueAssociatedPrAuthorOutput>;
|
|
16683
|
+
reviewers?: Maybe<GraphStoreFullIssueAssociatedPrReviewerOutput>;
|
|
16684
|
+
status?: Maybe<GraphStoreFullIssueAssociatedPrPullRequestStatusOutput>;
|
|
16685
|
+
taskCount?: Maybe<Scalars['Int']['output']>;
|
|
16686
|
+
};
|
|
16687
|
+
export type GraphStoreFullIssueAssociatedPrReviewerOutput = {
|
|
16688
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrReviewerOutput';
|
|
16689
|
+
approvalStatus?: Maybe<GraphStoreFullIssueAssociatedPrReviewerReviewerStatusOutput>;
|
|
16690
|
+
reviewerAri?: Maybe<Scalars['String']['output']>;
|
|
16691
|
+
};
|
|
16692
|
+
export declare enum GraphStoreFullIssueAssociatedPrReviewerReviewerStatusOutput {
|
|
16693
|
+
Approved = "APPROVED",
|
|
16694
|
+
Needswork = "NEEDSWORK",
|
|
16695
|
+
NotSet = "NOT_SET",
|
|
16696
|
+
Unapproved = "UNAPPROVED"
|
|
16697
|
+
}
|
|
16698
|
+
export type GraphStoreFullIssueAssociatedPrStartNode = {
|
|
16474
16699
|
__typename?: 'GraphStoreFullIssueAssociatedPrStartNode';
|
|
16475
16700
|
data?: Maybe<GraphStoreFullIssueAssociatedPrStartUnion>;
|
|
16476
16701
|
id: Scalars['ID']['output'];
|
|
@@ -16487,7 +16712,7 @@ export type GraphStoreFullIssueAssociatedRemoteLinkEdge = {
|
|
|
16487
16712
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16488
16713
|
node: GraphStoreFullIssueAssociatedRemoteLinkNode;
|
|
16489
16714
|
};
|
|
16490
|
-
export type GraphStoreFullIssueAssociatedRemoteLinkEndNode =
|
|
16715
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkEndNode = {
|
|
16491
16716
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEndNode';
|
|
16492
16717
|
id: Scalars['ID']['output'];
|
|
16493
16718
|
};
|
|
@@ -16499,7 +16724,7 @@ export type GraphStoreFullIssueAssociatedRemoteLinkNode = Node & {
|
|
|
16499
16724
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16500
16725
|
to: GraphStoreFullIssueAssociatedRemoteLinkEndNode;
|
|
16501
16726
|
};
|
|
16502
|
-
export type GraphStoreFullIssueAssociatedRemoteLinkStartNode =
|
|
16727
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkStartNode = {
|
|
16503
16728
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkStartNode';
|
|
16504
16729
|
data?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkStartUnion>;
|
|
16505
16730
|
id: Scalars['ID']['output'];
|
|
@@ -16518,7 +16743,7 @@ export type GraphStoreFullIssueChangesComponentEdge = {
|
|
|
16518
16743
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16519
16744
|
node: GraphStoreFullIssueChangesComponentNode;
|
|
16520
16745
|
};
|
|
16521
|
-
export type GraphStoreFullIssueChangesComponentEndNode =
|
|
16746
|
+
export type GraphStoreFullIssueChangesComponentEndNode = {
|
|
16522
16747
|
__typename?: 'GraphStoreFullIssueChangesComponentEndNode';
|
|
16523
16748
|
id: Scalars['ID']['output'];
|
|
16524
16749
|
};
|
|
@@ -16530,7 +16755,7 @@ export type GraphStoreFullIssueChangesComponentNode = Node & {
|
|
|
16530
16755
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16531
16756
|
to: GraphStoreFullIssueChangesComponentEndNode;
|
|
16532
16757
|
};
|
|
16533
|
-
export type GraphStoreFullIssueChangesComponentStartNode =
|
|
16758
|
+
export type GraphStoreFullIssueChangesComponentStartNode = {
|
|
16534
16759
|
__typename?: 'GraphStoreFullIssueChangesComponentStartNode';
|
|
16535
16760
|
id: Scalars['ID']['output'];
|
|
16536
16761
|
};
|
|
@@ -16547,7 +16772,7 @@ export type GraphStoreFullIssueRecursiveAssociatedDeploymentEdge = {
|
|
|
16547
16772
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16548
16773
|
node: GraphStoreFullIssueRecursiveAssociatedDeploymentNode;
|
|
16549
16774
|
};
|
|
16550
|
-
export type GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode =
|
|
16775
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode = {
|
|
16551
16776
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode';
|
|
16552
16777
|
id: Scalars['ID']['output'];
|
|
16553
16778
|
};
|
|
@@ -16559,7 +16784,7 @@ export type GraphStoreFullIssueRecursiveAssociatedDeploymentNode = Node & {
|
|
|
16559
16784
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16560
16785
|
to: GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode;
|
|
16561
16786
|
};
|
|
16562
|
-
export type GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode =
|
|
16787
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode = {
|
|
16563
16788
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode';
|
|
16564
16789
|
id: Scalars['ID']['output'];
|
|
16565
16790
|
};
|
|
@@ -16576,7 +16801,7 @@ export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEdge = {
|
|
|
16576
16801
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16577
16802
|
node: GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode;
|
|
16578
16803
|
};
|
|
16579
|
-
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode =
|
|
16804
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode = {
|
|
16580
16805
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode';
|
|
16581
16806
|
id: Scalars['ID']['output'];
|
|
16582
16807
|
};
|
|
@@ -16588,7 +16813,7 @@ export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode = Node & {
|
|
|
16588
16813
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16589
16814
|
to: GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode;
|
|
16590
16815
|
};
|
|
16591
|
-
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode =
|
|
16816
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode = {
|
|
16592
16817
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode';
|
|
16593
16818
|
id: Scalars['ID']['output'];
|
|
16594
16819
|
};
|
|
@@ -16605,7 +16830,7 @@ export type GraphStoreFullIssueRecursiveAssociatedPrEdge = {
|
|
|
16605
16830
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16606
16831
|
node: GraphStoreFullIssueRecursiveAssociatedPrNode;
|
|
16607
16832
|
};
|
|
16608
|
-
export type GraphStoreFullIssueRecursiveAssociatedPrEndNode =
|
|
16833
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrEndNode = {
|
|
16609
16834
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrEndNode';
|
|
16610
16835
|
id: Scalars['ID']['output'];
|
|
16611
16836
|
};
|
|
@@ -16617,7 +16842,7 @@ export type GraphStoreFullIssueRecursiveAssociatedPrNode = Node & {
|
|
|
16617
16842
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16618
16843
|
to: GraphStoreFullIssueRecursiveAssociatedPrEndNode;
|
|
16619
16844
|
};
|
|
16620
|
-
export type GraphStoreFullIssueRecursiveAssociatedPrStartNode =
|
|
16845
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrStartNode = {
|
|
16621
16846
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrStartNode';
|
|
16622
16847
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrStartUnion>;
|
|
16623
16848
|
id: Scalars['ID']['output'];
|
|
@@ -16634,7 +16859,7 @@ export type GraphStoreFullJiraEpicContributesToAtlasGoalEdge = {
|
|
|
16634
16859
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16635
16860
|
node: GraphStoreFullJiraEpicContributesToAtlasGoalNode;
|
|
16636
16861
|
};
|
|
16637
|
-
export type GraphStoreFullJiraEpicContributesToAtlasGoalEndNode =
|
|
16862
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalEndNode = {
|
|
16638
16863
|
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalEndNode';
|
|
16639
16864
|
id: Scalars['ID']['output'];
|
|
16640
16865
|
};
|
|
@@ -16646,7 +16871,7 @@ export type GraphStoreFullJiraEpicContributesToAtlasGoalNode = Node & {
|
|
|
16646
16871
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16647
16872
|
to: GraphStoreFullJiraEpicContributesToAtlasGoalEndNode;
|
|
16648
16873
|
};
|
|
16649
|
-
export type GraphStoreFullJiraEpicContributesToAtlasGoalStartNode =
|
|
16874
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalStartNode = {
|
|
16650
16875
|
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalStartNode';
|
|
16651
16876
|
id: Scalars['ID']['output'];
|
|
16652
16877
|
};
|
|
@@ -16663,7 +16888,7 @@ export type GraphStoreFullJiraProjectAssociatedAtlasGoalEdge = {
|
|
|
16663
16888
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16664
16889
|
node: GraphStoreFullJiraProjectAssociatedAtlasGoalNode;
|
|
16665
16890
|
};
|
|
16666
|
-
export type GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode =
|
|
16891
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode = {
|
|
16667
16892
|
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode';
|
|
16668
16893
|
id: Scalars['ID']['output'];
|
|
16669
16894
|
};
|
|
@@ -16675,7 +16900,7 @@ export type GraphStoreFullJiraProjectAssociatedAtlasGoalNode = Node & {
|
|
|
16675
16900
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16676
16901
|
to: GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode;
|
|
16677
16902
|
};
|
|
16678
|
-
export type GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode =
|
|
16903
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode = {
|
|
16679
16904
|
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode';
|
|
16680
16905
|
id: Scalars['ID']['output'];
|
|
16681
16906
|
};
|
|
@@ -16692,7 +16917,7 @@ export type GraphStoreFullJsmProjectAssociatedServiceEdge = {
|
|
|
16692
16917
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16693
16918
|
node: GraphStoreFullJsmProjectAssociatedServiceNode;
|
|
16694
16919
|
};
|
|
16695
|
-
export type GraphStoreFullJsmProjectAssociatedServiceEndNode =
|
|
16920
|
+
export type GraphStoreFullJsmProjectAssociatedServiceEndNode = {
|
|
16696
16921
|
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceEndNode';
|
|
16697
16922
|
id: Scalars['ID']['output'];
|
|
16698
16923
|
};
|
|
@@ -16704,7 +16929,7 @@ export type GraphStoreFullJsmProjectAssociatedServiceNode = Node & {
|
|
|
16704
16929
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16705
16930
|
to: GraphStoreFullJsmProjectAssociatedServiceEndNode;
|
|
16706
16931
|
};
|
|
16707
|
-
export type GraphStoreFullJsmProjectAssociatedServiceStartNode =
|
|
16932
|
+
export type GraphStoreFullJsmProjectAssociatedServiceStartNode = {
|
|
16708
16933
|
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceStartNode';
|
|
16709
16934
|
id: Scalars['ID']['output'];
|
|
16710
16935
|
};
|
|
@@ -16721,7 +16946,7 @@ export type GraphStoreFullJswProjectAssociatedComponentEdge = {
|
|
|
16721
16946
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16722
16947
|
node: GraphStoreFullJswProjectAssociatedComponentNode;
|
|
16723
16948
|
};
|
|
16724
|
-
export type GraphStoreFullJswProjectAssociatedComponentEndNode =
|
|
16949
|
+
export type GraphStoreFullJswProjectAssociatedComponentEndNode = {
|
|
16725
16950
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentEndNode';
|
|
16726
16951
|
id: Scalars['ID']['output'];
|
|
16727
16952
|
};
|
|
@@ -16733,7 +16958,7 @@ export type GraphStoreFullJswProjectAssociatedComponentNode = Node & {
|
|
|
16733
16958
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16734
16959
|
to: GraphStoreFullJswProjectAssociatedComponentEndNode;
|
|
16735
16960
|
};
|
|
16736
|
-
export type GraphStoreFullJswProjectAssociatedComponentStartNode =
|
|
16961
|
+
export type GraphStoreFullJswProjectAssociatedComponentStartNode = {
|
|
16737
16962
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentStartNode';
|
|
16738
16963
|
id: Scalars['ID']['output'];
|
|
16739
16964
|
};
|
|
@@ -16750,10 +16975,26 @@ export type GraphStoreFullJswProjectAssociatedIncidentEdge = {
|
|
|
16750
16975
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16751
16976
|
node: GraphStoreFullJswProjectAssociatedIncidentNode;
|
|
16752
16977
|
};
|
|
16753
|
-
export type GraphStoreFullJswProjectAssociatedIncidentEndNode =
|
|
16978
|
+
export type GraphStoreFullJswProjectAssociatedIncidentEndNode = {
|
|
16754
16979
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentEndNode';
|
|
16755
16980
|
id: Scalars['ID']['output'];
|
|
16981
|
+
metadata?: Maybe<GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput>;
|
|
16756
16982
|
};
|
|
16983
|
+
export declare enum GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentPriorityOutput {
|
|
16984
|
+
NotSet = "NOT_SET",
|
|
16985
|
+
P1 = "P1",
|
|
16986
|
+
P2 = "P2",
|
|
16987
|
+
P3 = "P3",
|
|
16988
|
+
P4 = "P4",
|
|
16989
|
+
P5 = "P5"
|
|
16990
|
+
}
|
|
16991
|
+
export declare enum GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentStatusOutput {
|
|
16992
|
+
Done = "DONE",
|
|
16993
|
+
Indeterminate = "INDETERMINATE",
|
|
16994
|
+
New = "NEW",
|
|
16995
|
+
NotSet = "NOT_SET",
|
|
16996
|
+
Undefined = "UNDEFINED"
|
|
16997
|
+
}
|
|
16757
16998
|
export type GraphStoreFullJswProjectAssociatedIncidentNode = Node & {
|
|
16758
16999
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentNode';
|
|
16759
17000
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16762,7 +17003,15 @@ export type GraphStoreFullJswProjectAssociatedIncidentNode = Node & {
|
|
|
16762
17003
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16763
17004
|
to: GraphStoreFullJswProjectAssociatedIncidentEndNode;
|
|
16764
17005
|
};
|
|
16765
|
-
export type
|
|
17006
|
+
export type GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput = {
|
|
17007
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput';
|
|
17008
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17009
|
+
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
17010
|
+
priority?: Maybe<GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentPriorityOutput>;
|
|
17011
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17012
|
+
status?: Maybe<GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentStatusOutput>;
|
|
17013
|
+
};
|
|
17014
|
+
export type GraphStoreFullJswProjectAssociatedIncidentStartNode = {
|
|
16766
17015
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentStartNode';
|
|
16767
17016
|
id: Scalars['ID']['output'];
|
|
16768
17017
|
};
|
|
@@ -16779,7 +17028,7 @@ export type GraphStoreFullJswProjectSharesComponentWithJsmProjectEdge = {
|
|
|
16779
17028
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16780
17029
|
node: GraphStoreFullJswProjectSharesComponentWithJsmProjectNode;
|
|
16781
17030
|
};
|
|
16782
|
-
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode =
|
|
17031
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode = {
|
|
16783
17032
|
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode';
|
|
16784
17033
|
id: Scalars['ID']['output'];
|
|
16785
17034
|
};
|
|
@@ -16791,7 +17040,7 @@ export type GraphStoreFullJswProjectSharesComponentWithJsmProjectNode = Node & {
|
|
|
16791
17040
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16792
17041
|
to: GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode;
|
|
16793
17042
|
};
|
|
16794
|
-
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode =
|
|
17043
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode = {
|
|
16795
17044
|
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode';
|
|
16796
17045
|
id: Scalars['ID']['output'];
|
|
16797
17046
|
};
|
|
@@ -16808,7 +17057,7 @@ export type GraphStoreFullLinkedProjectHasVersionEdge = {
|
|
|
16808
17057
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16809
17058
|
node: GraphStoreFullLinkedProjectHasVersionNode;
|
|
16810
17059
|
};
|
|
16811
|
-
export type GraphStoreFullLinkedProjectHasVersionEndNode =
|
|
17060
|
+
export type GraphStoreFullLinkedProjectHasVersionEndNode = {
|
|
16812
17061
|
__typename?: 'GraphStoreFullLinkedProjectHasVersionEndNode';
|
|
16813
17062
|
id: Scalars['ID']['output'];
|
|
16814
17063
|
};
|
|
@@ -16820,7 +17069,7 @@ export type GraphStoreFullLinkedProjectHasVersionNode = Node & {
|
|
|
16820
17069
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16821
17070
|
to: GraphStoreFullLinkedProjectHasVersionEndNode;
|
|
16822
17071
|
};
|
|
16823
|
-
export type GraphStoreFullLinkedProjectHasVersionStartNode =
|
|
17072
|
+
export type GraphStoreFullLinkedProjectHasVersionStartNode = {
|
|
16824
17073
|
__typename?: 'GraphStoreFullLinkedProjectHasVersionStartNode';
|
|
16825
17074
|
id: Scalars['ID']['output'];
|
|
16826
17075
|
};
|
|
@@ -16835,7 +17084,7 @@ export type GraphStoreFullOperationsContainerImpactedByIncidentEdge = {
|
|
|
16835
17084
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16836
17085
|
node: GraphStoreFullOperationsContainerImpactedByIncidentNode;
|
|
16837
17086
|
};
|
|
16838
|
-
export type GraphStoreFullOperationsContainerImpactedByIncidentEndNode =
|
|
17087
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentEndNode = {
|
|
16839
17088
|
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentEndNode';
|
|
16840
17089
|
id: Scalars['ID']['output'];
|
|
16841
17090
|
};
|
|
@@ -16847,7 +17096,7 @@ export type GraphStoreFullOperationsContainerImpactedByIncidentNode = Node & {
|
|
|
16847
17096
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16848
17097
|
to: GraphStoreFullOperationsContainerImpactedByIncidentEndNode;
|
|
16849
17098
|
};
|
|
16850
|
-
export type GraphStoreFullOperationsContainerImpactedByIncidentStartNode =
|
|
17099
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentStartNode = {
|
|
16851
17100
|
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentStartNode';
|
|
16852
17101
|
id: Scalars['ID']['output'];
|
|
16853
17102
|
};
|
|
@@ -16862,7 +17111,7 @@ export type GraphStoreFullOperationsContainerImprovedByActionItemEdge = {
|
|
|
16862
17111
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16863
17112
|
node: GraphStoreFullOperationsContainerImprovedByActionItemNode;
|
|
16864
17113
|
};
|
|
16865
|
-
export type GraphStoreFullOperationsContainerImprovedByActionItemEndNode =
|
|
17114
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemEndNode = {
|
|
16866
17115
|
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemEndNode';
|
|
16867
17116
|
id: Scalars['ID']['output'];
|
|
16868
17117
|
};
|
|
@@ -16874,10 +17123,26 @@ export type GraphStoreFullOperationsContainerImprovedByActionItemNode = Node & {
|
|
|
16874
17123
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16875
17124
|
to: GraphStoreFullOperationsContainerImprovedByActionItemEndNode;
|
|
16876
17125
|
};
|
|
16877
|
-
export type GraphStoreFullOperationsContainerImprovedByActionItemStartNode =
|
|
17126
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemStartNode = {
|
|
16878
17127
|
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemStartNode';
|
|
16879
17128
|
id: Scalars['ID']['output'];
|
|
16880
17129
|
};
|
|
17130
|
+
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
17131
|
+
Archive = "ARCHIVE",
|
|
17132
|
+
Audio = "AUDIO",
|
|
17133
|
+
Code = "CODE",
|
|
17134
|
+
Document = "DOCUMENT",
|
|
17135
|
+
Folder = "FOLDER",
|
|
17136
|
+
Form = "FORM",
|
|
17137
|
+
Image = "IMAGE",
|
|
17138
|
+
NotSet = "NOT_SET",
|
|
17139
|
+
Other = "OTHER",
|
|
17140
|
+
Pdf = "PDF",
|
|
17141
|
+
Presentation = "PRESENTATION",
|
|
17142
|
+
Shortcut = "SHORTCUT",
|
|
17143
|
+
Spreadsheet = "SPREADSHEET",
|
|
17144
|
+
Video = "VIDEO"
|
|
17145
|
+
}
|
|
16881
17146
|
export type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
16882
17147
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
16883
17148
|
edges: Array<Maybe<GraphStoreFullParentDocumentHasChildDocumentEdge>>;
|
|
@@ -16889,9 +17154,10 @@ export type GraphStoreFullParentDocumentHasChildDocumentEdge = {
|
|
|
16889
17154
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16890
17155
|
node: GraphStoreFullParentDocumentHasChildDocumentNode;
|
|
16891
17156
|
};
|
|
16892
|
-
export type GraphStoreFullParentDocumentHasChildDocumentEndNode =
|
|
17157
|
+
export type GraphStoreFullParentDocumentHasChildDocumentEndNode = {
|
|
16893
17158
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentEndNode';
|
|
16894
17159
|
id: Scalars['ID']['output'];
|
|
17160
|
+
metadata?: Maybe<GraphStoreFullParentDocumentHasChildDocumentRelationshipObjectMetadataOutput>;
|
|
16895
17161
|
};
|
|
16896
17162
|
export type GraphStoreFullParentDocumentHasChildDocumentNode = Node & {
|
|
16897
17163
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentNode';
|
|
@@ -16901,9 +17167,20 @@ export type GraphStoreFullParentDocumentHasChildDocumentNode = Node & {
|
|
|
16901
17167
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16902
17168
|
to: GraphStoreFullParentDocumentHasChildDocumentEndNode;
|
|
16903
17169
|
};
|
|
16904
|
-
export type
|
|
17170
|
+
export type GraphStoreFullParentDocumentHasChildDocumentRelationshipObjectMetadataOutput = {
|
|
17171
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentRelationshipObjectMetadataOutput';
|
|
17172
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
17173
|
+
category?: Maybe<GraphStoreFullParentDocumentHasChildDocumentCategoryOutput>;
|
|
17174
|
+
};
|
|
17175
|
+
export type GraphStoreFullParentDocumentHasChildDocumentRelationshipSubjectMetadataOutput = {
|
|
17176
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentRelationshipSubjectMetadataOutput';
|
|
17177
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
17178
|
+
category?: Maybe<GraphStoreFullParentDocumentHasChildDocumentCategoryOutput>;
|
|
17179
|
+
};
|
|
17180
|
+
export type GraphStoreFullParentDocumentHasChildDocumentStartNode = {
|
|
16905
17181
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentStartNode';
|
|
16906
17182
|
id: Scalars['ID']['output'];
|
|
17183
|
+
metadata?: Maybe<GraphStoreFullParentDocumentHasChildDocumentRelationshipSubjectMetadataOutput>;
|
|
16907
17184
|
};
|
|
16908
17185
|
export type GraphStoreFullParentIssueHasChildIssueConnection = HasPageInfo & {
|
|
16909
17186
|
__typename?: 'GraphStoreFullParentIssueHasChildIssueConnection';
|
|
@@ -16916,7 +17193,7 @@ export type GraphStoreFullParentIssueHasChildIssueEdge = {
|
|
|
16916
17193
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16917
17194
|
node: GraphStoreFullParentIssueHasChildIssueNode;
|
|
16918
17195
|
};
|
|
16919
|
-
export type GraphStoreFullParentIssueHasChildIssueEndNode =
|
|
17196
|
+
export type GraphStoreFullParentIssueHasChildIssueEndNode = {
|
|
16920
17197
|
__typename?: 'GraphStoreFullParentIssueHasChildIssueEndNode';
|
|
16921
17198
|
data?: Maybe<GraphStoreFullParentIssueHasChildIssueEndUnion>;
|
|
16922
17199
|
id: Scalars['ID']['output'];
|
|
@@ -16930,7 +17207,7 @@ export type GraphStoreFullParentIssueHasChildIssueNode = Node & {
|
|
|
16930
17207
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16931
17208
|
to: GraphStoreFullParentIssueHasChildIssueEndNode;
|
|
16932
17209
|
};
|
|
16933
|
-
export type GraphStoreFullParentIssueHasChildIssueStartNode =
|
|
17210
|
+
export type GraphStoreFullParentIssueHasChildIssueStartNode = {
|
|
16934
17211
|
__typename?: 'GraphStoreFullParentIssueHasChildIssueStartNode';
|
|
16935
17212
|
data?: Maybe<GraphStoreFullParentIssueHasChildIssueStartUnion>;
|
|
16936
17213
|
id: Scalars['ID']['output'];
|
|
@@ -16947,9 +17224,10 @@ export type GraphStoreFullPrInRepoEdge = {
|
|
|
16947
17224
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16948
17225
|
node: GraphStoreFullPrInRepoNode;
|
|
16949
17226
|
};
|
|
16950
|
-
export type GraphStoreFullPrInRepoEndNode =
|
|
17227
|
+
export type GraphStoreFullPrInRepoEndNode = {
|
|
16951
17228
|
__typename?: 'GraphStoreFullPrInRepoEndNode';
|
|
16952
17229
|
id: Scalars['ID']['output'];
|
|
17230
|
+
metadata?: Maybe<GraphStoreFullPrInRepoRelationshipObjectMetadataOutput>;
|
|
16953
17231
|
};
|
|
16954
17232
|
export type GraphStoreFullPrInRepoNode = Node & {
|
|
16955
17233
|
__typename?: 'GraphStoreFullPrInRepoNode';
|
|
@@ -16959,7 +17237,11 @@ export type GraphStoreFullPrInRepoNode = Node & {
|
|
|
16959
17237
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16960
17238
|
to: GraphStoreFullPrInRepoEndNode;
|
|
16961
17239
|
};
|
|
16962
|
-
export type
|
|
17240
|
+
export type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
|
|
17241
|
+
__typename?: 'GraphStoreFullPrInRepoRelationshipObjectMetadataOutput';
|
|
17242
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
17243
|
+
};
|
|
17244
|
+
export type GraphStoreFullPrInRepoStartNode = {
|
|
16963
17245
|
__typename?: 'GraphStoreFullPrInRepoStartNode';
|
|
16964
17246
|
id: Scalars['ID']['output'];
|
|
16965
17247
|
};
|
|
@@ -16976,7 +17258,7 @@ export type GraphStoreFullProjectAssociatedBranchEdge = {
|
|
|
16976
17258
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16977
17259
|
node: GraphStoreFullProjectAssociatedBranchNode;
|
|
16978
17260
|
};
|
|
16979
|
-
export type GraphStoreFullProjectAssociatedBranchEndNode =
|
|
17261
|
+
export type GraphStoreFullProjectAssociatedBranchEndNode = {
|
|
16980
17262
|
__typename?: 'GraphStoreFullProjectAssociatedBranchEndNode';
|
|
16981
17263
|
id: Scalars['ID']['output'];
|
|
16982
17264
|
};
|
|
@@ -16988,10 +17270,19 @@ export type GraphStoreFullProjectAssociatedBranchNode = Node & {
|
|
|
16988
17270
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16989
17271
|
to: GraphStoreFullProjectAssociatedBranchEndNode;
|
|
16990
17272
|
};
|
|
16991
|
-
export type GraphStoreFullProjectAssociatedBranchStartNode =
|
|
17273
|
+
export type GraphStoreFullProjectAssociatedBranchStartNode = {
|
|
16992
17274
|
__typename?: 'GraphStoreFullProjectAssociatedBranchStartNode';
|
|
16993
17275
|
id: Scalars['ID']['output'];
|
|
16994
17276
|
};
|
|
17277
|
+
export declare enum GraphStoreFullProjectAssociatedBuildBuildStateOutput {
|
|
17278
|
+
Cancelled = "CANCELLED",
|
|
17279
|
+
Failed = "FAILED",
|
|
17280
|
+
InProgress = "IN_PROGRESS",
|
|
17281
|
+
NotSet = "NOT_SET",
|
|
17282
|
+
Pending = "PENDING",
|
|
17283
|
+
Successful = "SUCCESSFUL",
|
|
17284
|
+
Unknown = "UNKNOWN"
|
|
17285
|
+
}
|
|
16995
17286
|
export type GraphStoreFullProjectAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
16996
17287
|
__typename?: 'GraphStoreFullProjectAssociatedBuildConnection';
|
|
16997
17288
|
edges: Array<Maybe<GraphStoreFullProjectAssociatedBuildEdge>>;
|
|
@@ -17005,9 +17296,10 @@ export type GraphStoreFullProjectAssociatedBuildEdge = {
|
|
|
17005
17296
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17006
17297
|
node: GraphStoreFullProjectAssociatedBuildNode;
|
|
17007
17298
|
};
|
|
17008
|
-
export type GraphStoreFullProjectAssociatedBuildEndNode =
|
|
17299
|
+
export type GraphStoreFullProjectAssociatedBuildEndNode = {
|
|
17009
17300
|
__typename?: 'GraphStoreFullProjectAssociatedBuildEndNode';
|
|
17010
17301
|
id: Scalars['ID']['output'];
|
|
17302
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
17011
17303
|
};
|
|
17012
17304
|
export type GraphStoreFullProjectAssociatedBuildNode = Node & {
|
|
17013
17305
|
__typename?: 'GraphStoreFullProjectAssociatedBuildNode';
|
|
@@ -17015,12 +17307,38 @@ export type GraphStoreFullProjectAssociatedBuildNode = Node & {
|
|
|
17015
17307
|
from: GraphStoreFullProjectAssociatedBuildStartNode;
|
|
17016
17308
|
id: Scalars['ID']['output'];
|
|
17017
17309
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17310
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedBuildRelationshipMetadataOutput>;
|
|
17018
17311
|
to: GraphStoreFullProjectAssociatedBuildEndNode;
|
|
17019
17312
|
};
|
|
17020
|
-
export type
|
|
17313
|
+
export type GraphStoreFullProjectAssociatedBuildRelationshipMetadataOutput = {
|
|
17314
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildRelationshipMetadataOutput';
|
|
17315
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17316
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
17317
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
17318
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
17319
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17320
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
17321
|
+
};
|
|
17322
|
+
export type GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
17323
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput';
|
|
17324
|
+
state?: Maybe<GraphStoreFullProjectAssociatedBuildBuildStateOutput>;
|
|
17325
|
+
testInfo?: Maybe<GraphStoreFullProjectAssociatedBuildTestInfoOutput>;
|
|
17326
|
+
};
|
|
17327
|
+
export type GraphStoreFullProjectAssociatedBuildStartNode = {
|
|
17021
17328
|
__typename?: 'GraphStoreFullProjectAssociatedBuildStartNode';
|
|
17022
17329
|
id: Scalars['ID']['output'];
|
|
17023
17330
|
};
|
|
17331
|
+
export type GraphStoreFullProjectAssociatedBuildTestInfoOutput = {
|
|
17332
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildTestInfoOutput';
|
|
17333
|
+
numberFailed?: Maybe<Scalars['Long']['output']>;
|
|
17334
|
+
numberPassed?: Maybe<Scalars['Long']['output']>;
|
|
17335
|
+
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
17336
|
+
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
17337
|
+
};
|
|
17338
|
+
export type GraphStoreFullProjectAssociatedDeploymentAuthorOutput = {
|
|
17339
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentAuthorOutput';
|
|
17340
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
17341
|
+
};
|
|
17024
17342
|
export type GraphStoreFullProjectAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
17025
17343
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentConnection';
|
|
17026
17344
|
edges: Array<Maybe<GraphStoreFullProjectAssociatedDeploymentEdge>>;
|
|
@@ -17029,26 +17347,63 @@ export type GraphStoreFullProjectAssociatedDeploymentConnection = HasPageInfo &
|
|
|
17029
17347
|
pageInfo: PageInfo;
|
|
17030
17348
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17031
17349
|
};
|
|
17350
|
+
export declare enum GraphStoreFullProjectAssociatedDeploymentDeploymentStateOutput {
|
|
17351
|
+
Cancelled = "CANCELLED",
|
|
17352
|
+
Failed = "FAILED",
|
|
17353
|
+
InProgress = "IN_PROGRESS",
|
|
17354
|
+
NotSet = "NOT_SET",
|
|
17355
|
+
Pending = "PENDING",
|
|
17356
|
+
RolledBack = "ROLLED_BACK",
|
|
17357
|
+
Successful = "SUCCESSFUL",
|
|
17358
|
+
Unknown = "UNKNOWN"
|
|
17359
|
+
}
|
|
17032
17360
|
export type GraphStoreFullProjectAssociatedDeploymentEdge = {
|
|
17033
17361
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentEdge';
|
|
17034
17362
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17035
17363
|
node: GraphStoreFullProjectAssociatedDeploymentNode;
|
|
17036
17364
|
};
|
|
17037
|
-
export type GraphStoreFullProjectAssociatedDeploymentEndNode =
|
|
17365
|
+
export type GraphStoreFullProjectAssociatedDeploymentEndNode = {
|
|
17038
17366
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentEndNode';
|
|
17039
17367
|
data?: Maybe<GraphStoreFullProjectAssociatedDeploymentEndUnion>;
|
|
17040
17368
|
id: Scalars['ID']['output'];
|
|
17369
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
17041
17370
|
};
|
|
17042
17371
|
export type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
17372
|
+
export declare enum GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput {
|
|
17373
|
+
Development = "DEVELOPMENT",
|
|
17374
|
+
NotSet = "NOT_SET",
|
|
17375
|
+
Production = "PRODUCTION",
|
|
17376
|
+
Staging = "STAGING",
|
|
17377
|
+
Testing = "TESTING",
|
|
17378
|
+
Unmapped = "UNMAPPED"
|
|
17379
|
+
}
|
|
17043
17380
|
export type GraphStoreFullProjectAssociatedDeploymentNode = Node & {
|
|
17044
17381
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentNode';
|
|
17045
17382
|
createdAt: Scalars['DateTime']['output'];
|
|
17046
17383
|
from: GraphStoreFullProjectAssociatedDeploymentStartNode;
|
|
17047
17384
|
id: Scalars['ID']['output'];
|
|
17048
17385
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17386
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedDeploymentRelationshipMetadataOutput>;
|
|
17049
17387
|
to: GraphStoreFullProjectAssociatedDeploymentEndNode;
|
|
17050
17388
|
};
|
|
17051
|
-
export type
|
|
17389
|
+
export type GraphStoreFullProjectAssociatedDeploymentRelationshipMetadataOutput = {
|
|
17390
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentRelationshipMetadataOutput';
|
|
17391
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17392
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
17393
|
+
fixVersionIds?: Maybe<Scalars['Long']['output']>;
|
|
17394
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
17395
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
17396
|
+
issueTypeAri?: Maybe<Scalars['String']['output']>;
|
|
17397
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17398
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
17399
|
+
};
|
|
17400
|
+
export type GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
17401
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
17402
|
+
author?: Maybe<GraphStoreFullProjectAssociatedDeploymentAuthorOutput>;
|
|
17403
|
+
environmentType?: Maybe<GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput>;
|
|
17404
|
+
state?: Maybe<GraphStoreFullProjectAssociatedDeploymentDeploymentStateOutput>;
|
|
17405
|
+
};
|
|
17406
|
+
export type GraphStoreFullProjectAssociatedDeploymentStartNode = {
|
|
17052
17407
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentStartNode';
|
|
17053
17408
|
id: Scalars['ID']['output'];
|
|
17054
17409
|
};
|
|
@@ -17065,7 +17420,7 @@ export type GraphStoreFullProjectAssociatedFeatureFlagEdge = {
|
|
|
17065
17420
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17066
17421
|
node: GraphStoreFullProjectAssociatedFeatureFlagNode;
|
|
17067
17422
|
};
|
|
17068
|
-
export type GraphStoreFullProjectAssociatedFeatureFlagEndNode =
|
|
17423
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagEndNode = {
|
|
17069
17424
|
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagEndNode';
|
|
17070
17425
|
id: Scalars['ID']['output'];
|
|
17071
17426
|
};
|
|
@@ -17077,7 +17432,7 @@ export type GraphStoreFullProjectAssociatedFeatureFlagNode = Node & {
|
|
|
17077
17432
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17078
17433
|
to: GraphStoreFullProjectAssociatedFeatureFlagEndNode;
|
|
17079
17434
|
};
|
|
17080
|
-
export type GraphStoreFullProjectAssociatedFeatureFlagStartNode =
|
|
17435
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagStartNode = {
|
|
17081
17436
|
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagStartNode';
|
|
17082
17437
|
id: Scalars['ID']['output'];
|
|
17083
17438
|
};
|
|
@@ -17094,7 +17449,7 @@ export type GraphStoreFullProjectAssociatedIncidentEdge = {
|
|
|
17094
17449
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17095
17450
|
node: GraphStoreFullProjectAssociatedIncidentNode;
|
|
17096
17451
|
};
|
|
17097
|
-
export type GraphStoreFullProjectAssociatedIncidentEndNode =
|
|
17452
|
+
export type GraphStoreFullProjectAssociatedIncidentEndNode = {
|
|
17098
17453
|
__typename?: 'GraphStoreFullProjectAssociatedIncidentEndNode';
|
|
17099
17454
|
id: Scalars['ID']['output'];
|
|
17100
17455
|
};
|
|
@@ -17106,7 +17461,7 @@ export type GraphStoreFullProjectAssociatedIncidentNode = Node & {
|
|
|
17106
17461
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17107
17462
|
to: GraphStoreFullProjectAssociatedIncidentEndNode;
|
|
17108
17463
|
};
|
|
17109
|
-
export type GraphStoreFullProjectAssociatedIncidentStartNode =
|
|
17464
|
+
export type GraphStoreFullProjectAssociatedIncidentStartNode = {
|
|
17110
17465
|
__typename?: 'GraphStoreFullProjectAssociatedIncidentStartNode';
|
|
17111
17466
|
id: Scalars['ID']['output'];
|
|
17112
17467
|
};
|
|
@@ -17123,7 +17478,7 @@ export type GraphStoreFullProjectAssociatedOpsgenieTeamEdge = {
|
|
|
17123
17478
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17124
17479
|
node: GraphStoreFullProjectAssociatedOpsgenieTeamNode;
|
|
17125
17480
|
};
|
|
17126
|
-
export type GraphStoreFullProjectAssociatedOpsgenieTeamEndNode =
|
|
17481
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamEndNode = {
|
|
17127
17482
|
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamEndNode';
|
|
17128
17483
|
id: Scalars['ID']['output'];
|
|
17129
17484
|
};
|
|
@@ -17135,10 +17490,14 @@ export type GraphStoreFullProjectAssociatedOpsgenieTeamNode = Node & {
|
|
|
17135
17490
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17136
17491
|
to: GraphStoreFullProjectAssociatedOpsgenieTeamEndNode;
|
|
17137
17492
|
};
|
|
17138
|
-
export type GraphStoreFullProjectAssociatedOpsgenieTeamStartNode =
|
|
17493
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamStartNode = {
|
|
17139
17494
|
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamStartNode';
|
|
17140
17495
|
id: Scalars['ID']['output'];
|
|
17141
17496
|
};
|
|
17497
|
+
export type GraphStoreFullProjectAssociatedPrAuthorOutput = {
|
|
17498
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrAuthorOutput';
|
|
17499
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
17500
|
+
};
|
|
17142
17501
|
export type GraphStoreFullProjectAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
17143
17502
|
__typename?: 'GraphStoreFullProjectAssociatedPrConnection';
|
|
17144
17503
|
edges: Array<Maybe<GraphStoreFullProjectAssociatedPrEdge>>;
|
|
@@ -17152,9 +17511,10 @@ export type GraphStoreFullProjectAssociatedPrEdge = {
|
|
|
17152
17511
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17153
17512
|
node: GraphStoreFullProjectAssociatedPrNode;
|
|
17154
17513
|
};
|
|
17155
|
-
export type GraphStoreFullProjectAssociatedPrEndNode =
|
|
17514
|
+
export type GraphStoreFullProjectAssociatedPrEndNode = {
|
|
17156
17515
|
__typename?: 'GraphStoreFullProjectAssociatedPrEndNode';
|
|
17157
17516
|
id: Scalars['ID']['output'];
|
|
17517
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedPrRelationshipObjectMetadataOutput>;
|
|
17158
17518
|
};
|
|
17159
17519
|
export type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
17160
17520
|
__typename?: 'GraphStoreFullProjectAssociatedPrNode';
|
|
@@ -17162,9 +17522,44 @@ export type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
|
17162
17522
|
from: GraphStoreFullProjectAssociatedPrStartNode;
|
|
17163
17523
|
id: Scalars['ID']['output'];
|
|
17164
17524
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17525
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput>;
|
|
17165
17526
|
to: GraphStoreFullProjectAssociatedPrEndNode;
|
|
17166
17527
|
};
|
|
17167
|
-
export
|
|
17528
|
+
export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
17529
|
+
Declined = "DECLINED",
|
|
17530
|
+
Merged = "MERGED",
|
|
17531
|
+
NotSet = "NOT_SET",
|
|
17532
|
+
Open = "OPEN",
|
|
17533
|
+
Unknown = "UNKNOWN"
|
|
17534
|
+
}
|
|
17535
|
+
export type GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput = {
|
|
17536
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput';
|
|
17537
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17538
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
17539
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
17540
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
17541
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17542
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
17543
|
+
};
|
|
17544
|
+
export type GraphStoreFullProjectAssociatedPrRelationshipObjectMetadataOutput = {
|
|
17545
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrRelationshipObjectMetadataOutput';
|
|
17546
|
+
author?: Maybe<GraphStoreFullProjectAssociatedPrAuthorOutput>;
|
|
17547
|
+
reviewers?: Maybe<GraphStoreFullProjectAssociatedPrReviewerOutput>;
|
|
17548
|
+
status?: Maybe<GraphStoreFullProjectAssociatedPrPullRequestStatusOutput>;
|
|
17549
|
+
taskCount?: Maybe<Scalars['Int']['output']>;
|
|
17550
|
+
};
|
|
17551
|
+
export type GraphStoreFullProjectAssociatedPrReviewerOutput = {
|
|
17552
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrReviewerOutput';
|
|
17553
|
+
approvalStatus?: Maybe<GraphStoreFullProjectAssociatedPrReviewerReviewerStatusOutput>;
|
|
17554
|
+
reviewerAri?: Maybe<Scalars['String']['output']>;
|
|
17555
|
+
};
|
|
17556
|
+
export declare enum GraphStoreFullProjectAssociatedPrReviewerReviewerStatusOutput {
|
|
17557
|
+
Approved = "APPROVED",
|
|
17558
|
+
Needswork = "NEEDSWORK",
|
|
17559
|
+
NotSet = "NOT_SET",
|
|
17560
|
+
Unapproved = "UNAPPROVED"
|
|
17561
|
+
}
|
|
17562
|
+
export type GraphStoreFullProjectAssociatedPrStartNode = {
|
|
17168
17563
|
__typename?: 'GraphStoreFullProjectAssociatedPrStartNode';
|
|
17169
17564
|
id: Scalars['ID']['output'];
|
|
17170
17565
|
};
|
|
@@ -17181,9 +17576,10 @@ export type GraphStoreFullProjectAssociatedRepoEdge = {
|
|
|
17181
17576
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17182
17577
|
node: GraphStoreFullProjectAssociatedRepoNode;
|
|
17183
17578
|
};
|
|
17184
|
-
export type GraphStoreFullProjectAssociatedRepoEndNode =
|
|
17579
|
+
export type GraphStoreFullProjectAssociatedRepoEndNode = {
|
|
17185
17580
|
__typename?: 'GraphStoreFullProjectAssociatedRepoEndNode';
|
|
17186
17581
|
id: Scalars['ID']['output'];
|
|
17582
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedRepoRelationshipObjectMetadataOutput>;
|
|
17187
17583
|
};
|
|
17188
17584
|
export type GraphStoreFullProjectAssociatedRepoNode = Node & {
|
|
17189
17585
|
__typename?: 'GraphStoreFullProjectAssociatedRepoNode';
|
|
@@ -17193,7 +17589,11 @@ export type GraphStoreFullProjectAssociatedRepoNode = Node & {
|
|
|
17193
17589
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17194
17590
|
to: GraphStoreFullProjectAssociatedRepoEndNode;
|
|
17195
17591
|
};
|
|
17196
|
-
export type
|
|
17592
|
+
export type GraphStoreFullProjectAssociatedRepoRelationshipObjectMetadataOutput = {
|
|
17593
|
+
__typename?: 'GraphStoreFullProjectAssociatedRepoRelationshipObjectMetadataOutput';
|
|
17594
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
17595
|
+
};
|
|
17596
|
+
export type GraphStoreFullProjectAssociatedRepoStartNode = {
|
|
17197
17597
|
__typename?: 'GraphStoreFullProjectAssociatedRepoStartNode';
|
|
17198
17598
|
id: Scalars['ID']['output'];
|
|
17199
17599
|
};
|
|
@@ -17210,7 +17610,7 @@ export type GraphStoreFullProjectAssociatedServiceEdge = {
|
|
|
17210
17610
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17211
17611
|
node: GraphStoreFullProjectAssociatedServiceNode;
|
|
17212
17612
|
};
|
|
17213
|
-
export type GraphStoreFullProjectAssociatedServiceEndNode =
|
|
17613
|
+
export type GraphStoreFullProjectAssociatedServiceEndNode = {
|
|
17214
17614
|
__typename?: 'GraphStoreFullProjectAssociatedServiceEndNode';
|
|
17215
17615
|
id: Scalars['ID']['output'];
|
|
17216
17616
|
};
|
|
@@ -17222,7 +17622,7 @@ export type GraphStoreFullProjectAssociatedServiceNode = Node & {
|
|
|
17222
17622
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17223
17623
|
to: GraphStoreFullProjectAssociatedServiceEndNode;
|
|
17224
17624
|
};
|
|
17225
|
-
export type GraphStoreFullProjectAssociatedServiceStartNode =
|
|
17625
|
+
export type GraphStoreFullProjectAssociatedServiceStartNode = {
|
|
17226
17626
|
__typename?: 'GraphStoreFullProjectAssociatedServiceStartNode';
|
|
17227
17627
|
id: Scalars['ID']['output'];
|
|
17228
17628
|
};
|
|
@@ -17239,7 +17639,7 @@ export type GraphStoreFullProjectAssociatedToIncidentEdge = {
|
|
|
17239
17639
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17240
17640
|
node: GraphStoreFullProjectAssociatedToIncidentNode;
|
|
17241
17641
|
};
|
|
17242
|
-
export type GraphStoreFullProjectAssociatedToIncidentEndNode =
|
|
17642
|
+
export type GraphStoreFullProjectAssociatedToIncidentEndNode = {
|
|
17243
17643
|
__typename?: 'GraphStoreFullProjectAssociatedToIncidentEndNode';
|
|
17244
17644
|
id: Scalars['ID']['output'];
|
|
17245
17645
|
};
|
|
@@ -17251,7 +17651,7 @@ export type GraphStoreFullProjectAssociatedToIncidentNode = Node & {
|
|
|
17251
17651
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17252
17652
|
to: GraphStoreFullProjectAssociatedToIncidentEndNode;
|
|
17253
17653
|
};
|
|
17254
|
-
export type GraphStoreFullProjectAssociatedToIncidentStartNode =
|
|
17654
|
+
export type GraphStoreFullProjectAssociatedToIncidentStartNode = {
|
|
17255
17655
|
__typename?: 'GraphStoreFullProjectAssociatedToIncidentStartNode';
|
|
17256
17656
|
id: Scalars['ID']['output'];
|
|
17257
17657
|
};
|
|
@@ -17268,7 +17668,7 @@ export type GraphStoreFullProjectAssociatedToOperationsContainerEdge = {
|
|
|
17268
17668
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17269
17669
|
node: GraphStoreFullProjectAssociatedToOperationsContainerNode;
|
|
17270
17670
|
};
|
|
17271
|
-
export type GraphStoreFullProjectAssociatedToOperationsContainerEndNode =
|
|
17671
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerEndNode = {
|
|
17272
17672
|
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerEndNode';
|
|
17273
17673
|
id: Scalars['ID']['output'];
|
|
17274
17674
|
};
|
|
@@ -17280,7 +17680,7 @@ export type GraphStoreFullProjectAssociatedToOperationsContainerNode = Node & {
|
|
|
17280
17680
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17281
17681
|
to: GraphStoreFullProjectAssociatedToOperationsContainerEndNode;
|
|
17282
17682
|
};
|
|
17283
|
-
export type GraphStoreFullProjectAssociatedToOperationsContainerStartNode =
|
|
17683
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerStartNode = {
|
|
17284
17684
|
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerStartNode';
|
|
17285
17685
|
id: Scalars['ID']['output'];
|
|
17286
17686
|
};
|
|
@@ -17297,7 +17697,7 @@ export type GraphStoreFullProjectAssociatedToSecurityContainerEdge = {
|
|
|
17297
17697
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17298
17698
|
node: GraphStoreFullProjectAssociatedToSecurityContainerNode;
|
|
17299
17699
|
};
|
|
17300
|
-
export type GraphStoreFullProjectAssociatedToSecurityContainerEndNode =
|
|
17700
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerEndNode = {
|
|
17301
17701
|
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerEndNode';
|
|
17302
17702
|
id: Scalars['ID']['output'];
|
|
17303
17703
|
};
|
|
@@ -17309,7 +17709,7 @@ export type GraphStoreFullProjectAssociatedToSecurityContainerNode = Node & {
|
|
|
17309
17709
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17310
17710
|
to: GraphStoreFullProjectAssociatedToSecurityContainerEndNode;
|
|
17311
17711
|
};
|
|
17312
|
-
export type GraphStoreFullProjectAssociatedToSecurityContainerStartNode =
|
|
17712
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerStartNode = {
|
|
17313
17713
|
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerStartNode';
|
|
17314
17714
|
id: Scalars['ID']['output'];
|
|
17315
17715
|
};
|
|
@@ -17321,14 +17721,19 @@ export type GraphStoreFullProjectAssociatedVulnerabilityConnection = HasPageInfo
|
|
|
17321
17721
|
pageInfo: PageInfo;
|
|
17322
17722
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17323
17723
|
};
|
|
17724
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityContainerOutput = {
|
|
17725
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityContainerOutput';
|
|
17726
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
17727
|
+
};
|
|
17324
17728
|
export type GraphStoreFullProjectAssociatedVulnerabilityEdge = {
|
|
17325
17729
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityEdge';
|
|
17326
17730
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17327
17731
|
node: GraphStoreFullProjectAssociatedVulnerabilityNode;
|
|
17328
17732
|
};
|
|
17329
|
-
export type GraphStoreFullProjectAssociatedVulnerabilityEndNode =
|
|
17733
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityEndNode = {
|
|
17330
17734
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityEndNode';
|
|
17331
17735
|
id: Scalars['ID']['output'];
|
|
17736
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityRelationshipObjectMetadataOutput>;
|
|
17332
17737
|
};
|
|
17333
17738
|
export type GraphStoreFullProjectAssociatedVulnerabilityNode = Node & {
|
|
17334
17739
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityNode';
|
|
@@ -17338,10 +17743,39 @@ export type GraphStoreFullProjectAssociatedVulnerabilityNode = Node & {
|
|
|
17338
17743
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17339
17744
|
to: GraphStoreFullProjectAssociatedVulnerabilityEndNode;
|
|
17340
17745
|
};
|
|
17341
|
-
export type
|
|
17746
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityRelationshipObjectMetadataOutput = {
|
|
17747
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityRelationshipObjectMetadataOutput';
|
|
17748
|
+
container?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityContainerOutput>;
|
|
17749
|
+
severity?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityVulnerabilitySeverityOutput>;
|
|
17750
|
+
status?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityVulnerabilityStatusOutput>;
|
|
17751
|
+
type?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityVulnerabilityTypeOutput>;
|
|
17752
|
+
};
|
|
17753
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityStartNode = {
|
|
17342
17754
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityStartNode';
|
|
17343
17755
|
id: Scalars['ID']['output'];
|
|
17344
17756
|
};
|
|
17757
|
+
export declare enum GraphStoreFullProjectAssociatedVulnerabilityVulnerabilitySeverityOutput {
|
|
17758
|
+
Critical = "CRITICAL",
|
|
17759
|
+
High = "HIGH",
|
|
17760
|
+
Low = "LOW",
|
|
17761
|
+
Medium = "MEDIUM",
|
|
17762
|
+
NotSet = "NOT_SET",
|
|
17763
|
+
Unknown = "UNKNOWN"
|
|
17764
|
+
}
|
|
17765
|
+
export declare enum GraphStoreFullProjectAssociatedVulnerabilityVulnerabilityStatusOutput {
|
|
17766
|
+
Closed = "CLOSED",
|
|
17767
|
+
Ignored = "IGNORED",
|
|
17768
|
+
NotSet = "NOT_SET",
|
|
17769
|
+
Open = "OPEN",
|
|
17770
|
+
Unknown = "UNKNOWN"
|
|
17771
|
+
}
|
|
17772
|
+
export declare enum GraphStoreFullProjectAssociatedVulnerabilityVulnerabilityTypeOutput {
|
|
17773
|
+
Dast = "DAST",
|
|
17774
|
+
NotSet = "NOT_SET",
|
|
17775
|
+
Sast = "SAST",
|
|
17776
|
+
Sca = "SCA",
|
|
17777
|
+
Unknown = "UNKNOWN"
|
|
17778
|
+
}
|
|
17345
17779
|
export type GraphStoreFullProjectDisassociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
17346
17780
|
__typename?: 'GraphStoreFullProjectDisassociatedRepoConnection';
|
|
17347
17781
|
edges: Array<Maybe<GraphStoreFullProjectDisassociatedRepoEdge>>;
|
|
@@ -17355,7 +17789,7 @@ export type GraphStoreFullProjectDisassociatedRepoEdge = {
|
|
|
17355
17789
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17356
17790
|
node: GraphStoreFullProjectDisassociatedRepoNode;
|
|
17357
17791
|
};
|
|
17358
|
-
export type GraphStoreFullProjectDisassociatedRepoEndNode =
|
|
17792
|
+
export type GraphStoreFullProjectDisassociatedRepoEndNode = {
|
|
17359
17793
|
__typename?: 'GraphStoreFullProjectDisassociatedRepoEndNode';
|
|
17360
17794
|
id: Scalars['ID']['output'];
|
|
17361
17795
|
};
|
|
@@ -17367,7 +17801,7 @@ export type GraphStoreFullProjectDisassociatedRepoNode = Node & {
|
|
|
17367
17801
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17368
17802
|
to: GraphStoreFullProjectDisassociatedRepoEndNode;
|
|
17369
17803
|
};
|
|
17370
|
-
export type GraphStoreFullProjectDisassociatedRepoStartNode =
|
|
17804
|
+
export type GraphStoreFullProjectDisassociatedRepoStartNode = {
|
|
17371
17805
|
__typename?: 'GraphStoreFullProjectDisassociatedRepoStartNode';
|
|
17372
17806
|
id: Scalars['ID']['output'];
|
|
17373
17807
|
};
|
|
@@ -17384,7 +17818,7 @@ export type GraphStoreFullProjectDocumentationEntityEdge = {
|
|
|
17384
17818
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17385
17819
|
node: GraphStoreFullProjectDocumentationEntityNode;
|
|
17386
17820
|
};
|
|
17387
|
-
export type GraphStoreFullProjectDocumentationEntityEndNode =
|
|
17821
|
+
export type GraphStoreFullProjectDocumentationEntityEndNode = {
|
|
17388
17822
|
__typename?: 'GraphStoreFullProjectDocumentationEntityEndNode';
|
|
17389
17823
|
id: Scalars['ID']['output'];
|
|
17390
17824
|
};
|
|
@@ -17396,7 +17830,7 @@ export type GraphStoreFullProjectDocumentationEntityNode = Node & {
|
|
|
17396
17830
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17397
17831
|
to: GraphStoreFullProjectDocumentationEntityEndNode;
|
|
17398
17832
|
};
|
|
17399
|
-
export type GraphStoreFullProjectDocumentationEntityStartNode =
|
|
17833
|
+
export type GraphStoreFullProjectDocumentationEntityStartNode = {
|
|
17400
17834
|
__typename?: 'GraphStoreFullProjectDocumentationEntityStartNode';
|
|
17401
17835
|
id: Scalars['ID']['output'];
|
|
17402
17836
|
};
|
|
@@ -17413,7 +17847,7 @@ export type GraphStoreFullProjectDocumentationPageEdge = {
|
|
|
17413
17847
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17414
17848
|
node: GraphStoreFullProjectDocumentationPageNode;
|
|
17415
17849
|
};
|
|
17416
|
-
export type GraphStoreFullProjectDocumentationPageEndNode =
|
|
17850
|
+
export type GraphStoreFullProjectDocumentationPageEndNode = {
|
|
17417
17851
|
__typename?: 'GraphStoreFullProjectDocumentationPageEndNode';
|
|
17418
17852
|
id: Scalars['ID']['output'];
|
|
17419
17853
|
};
|
|
@@ -17425,7 +17859,7 @@ export type GraphStoreFullProjectDocumentationPageNode = Node & {
|
|
|
17425
17859
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17426
17860
|
to: GraphStoreFullProjectDocumentationPageEndNode;
|
|
17427
17861
|
};
|
|
17428
|
-
export type GraphStoreFullProjectDocumentationPageStartNode =
|
|
17862
|
+
export type GraphStoreFullProjectDocumentationPageStartNode = {
|
|
17429
17863
|
__typename?: 'GraphStoreFullProjectDocumentationPageStartNode';
|
|
17430
17864
|
id: Scalars['ID']['output'];
|
|
17431
17865
|
};
|
|
@@ -17442,7 +17876,7 @@ export type GraphStoreFullProjectDocumentationSpaceEdge = {
|
|
|
17442
17876
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17443
17877
|
node: GraphStoreFullProjectDocumentationSpaceNode;
|
|
17444
17878
|
};
|
|
17445
|
-
export type GraphStoreFullProjectDocumentationSpaceEndNode =
|
|
17879
|
+
export type GraphStoreFullProjectDocumentationSpaceEndNode = {
|
|
17446
17880
|
__typename?: 'GraphStoreFullProjectDocumentationSpaceEndNode';
|
|
17447
17881
|
id: Scalars['ID']['output'];
|
|
17448
17882
|
};
|
|
@@ -17454,7 +17888,7 @@ export type GraphStoreFullProjectDocumentationSpaceNode = Node & {
|
|
|
17454
17888
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17455
17889
|
to: GraphStoreFullProjectDocumentationSpaceEndNode;
|
|
17456
17890
|
};
|
|
17457
|
-
export type GraphStoreFullProjectDocumentationSpaceStartNode =
|
|
17891
|
+
export type GraphStoreFullProjectDocumentationSpaceStartNode = {
|
|
17458
17892
|
__typename?: 'GraphStoreFullProjectDocumentationSpaceStartNode';
|
|
17459
17893
|
id: Scalars['ID']['output'];
|
|
17460
17894
|
};
|
|
@@ -17471,9 +17905,10 @@ export type GraphStoreFullProjectExplicitlyAssociatedRepoEdge = {
|
|
|
17471
17905
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17472
17906
|
node: GraphStoreFullProjectExplicitlyAssociatedRepoNode;
|
|
17473
17907
|
};
|
|
17474
|
-
export type GraphStoreFullProjectExplicitlyAssociatedRepoEndNode =
|
|
17908
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoEndNode = {
|
|
17475
17909
|
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoEndNode';
|
|
17476
17910
|
id: Scalars['ID']['output'];
|
|
17911
|
+
metadata?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoRelationshipObjectMetadataOutput>;
|
|
17477
17912
|
};
|
|
17478
17913
|
export type GraphStoreFullProjectExplicitlyAssociatedRepoNode = Node & {
|
|
17479
17914
|
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoNode';
|
|
@@ -17483,7 +17918,11 @@ export type GraphStoreFullProjectExplicitlyAssociatedRepoNode = Node & {
|
|
|
17483
17918
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17484
17919
|
to: GraphStoreFullProjectExplicitlyAssociatedRepoEndNode;
|
|
17485
17920
|
};
|
|
17486
|
-
export type
|
|
17921
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoRelationshipObjectMetadataOutput = {
|
|
17922
|
+
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoRelationshipObjectMetadataOutput';
|
|
17923
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
17924
|
+
};
|
|
17925
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoStartNode = {
|
|
17487
17926
|
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoStartNode';
|
|
17488
17927
|
id: Scalars['ID']['output'];
|
|
17489
17928
|
};
|
|
@@ -17498,9 +17937,10 @@ export type GraphStoreFullProjectHasIssueEdge = {
|
|
|
17498
17937
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17499
17938
|
node: GraphStoreFullProjectHasIssueNode;
|
|
17500
17939
|
};
|
|
17501
|
-
export type GraphStoreFullProjectHasIssueEndNode =
|
|
17940
|
+
export type GraphStoreFullProjectHasIssueEndNode = {
|
|
17502
17941
|
__typename?: 'GraphStoreFullProjectHasIssueEndNode';
|
|
17503
17942
|
id: Scalars['ID']['output'];
|
|
17943
|
+
metadata?: Maybe<GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput>;
|
|
17504
17944
|
};
|
|
17505
17945
|
export type GraphStoreFullProjectHasIssueNode = Node & {
|
|
17506
17946
|
__typename?: 'GraphStoreFullProjectHasIssueNode';
|
|
@@ -17508,9 +17948,24 @@ export type GraphStoreFullProjectHasIssueNode = Node & {
|
|
|
17508
17948
|
from: GraphStoreFullProjectHasIssueStartNode;
|
|
17509
17949
|
id: Scalars['ID']['output'];
|
|
17510
17950
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17951
|
+
metadata?: Maybe<GraphStoreFullProjectHasIssueRelationshipMetadataOutput>;
|
|
17511
17952
|
to: GraphStoreFullProjectHasIssueEndNode;
|
|
17512
17953
|
};
|
|
17513
|
-
export type
|
|
17954
|
+
export type GraphStoreFullProjectHasIssueRelationshipMetadataOutput = {
|
|
17955
|
+
__typename?: 'GraphStoreFullProjectHasIssueRelationshipMetadataOutput';
|
|
17956
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
17957
|
+
};
|
|
17958
|
+
export type GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput = {
|
|
17959
|
+
__typename?: 'GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput';
|
|
17960
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17961
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
17962
|
+
fixVersionIds?: Maybe<Scalars['Long']['output']>;
|
|
17963
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
17964
|
+
issueTypeAri?: Maybe<Scalars['String']['output']>;
|
|
17965
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17966
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
17967
|
+
};
|
|
17968
|
+
export type GraphStoreFullProjectHasIssueStartNode = {
|
|
17514
17969
|
__typename?: 'GraphStoreFullProjectHasIssueStartNode';
|
|
17515
17970
|
id: Scalars['ID']['output'];
|
|
17516
17971
|
};
|
|
@@ -17527,7 +17982,7 @@ export type GraphStoreFullProjectHasSharedVersionWithEdge = {
|
|
|
17527
17982
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17528
17983
|
node: GraphStoreFullProjectHasSharedVersionWithNode;
|
|
17529
17984
|
};
|
|
17530
|
-
export type GraphStoreFullProjectHasSharedVersionWithEndNode =
|
|
17985
|
+
export type GraphStoreFullProjectHasSharedVersionWithEndNode = {
|
|
17531
17986
|
__typename?: 'GraphStoreFullProjectHasSharedVersionWithEndNode';
|
|
17532
17987
|
id: Scalars['ID']['output'];
|
|
17533
17988
|
};
|
|
@@ -17539,7 +17994,7 @@ export type GraphStoreFullProjectHasSharedVersionWithNode = Node & {
|
|
|
17539
17994
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17540
17995
|
to: GraphStoreFullProjectHasSharedVersionWithEndNode;
|
|
17541
17996
|
};
|
|
17542
|
-
export type GraphStoreFullProjectHasSharedVersionWithStartNode =
|
|
17997
|
+
export type GraphStoreFullProjectHasSharedVersionWithStartNode = {
|
|
17543
17998
|
__typename?: 'GraphStoreFullProjectHasSharedVersionWithStartNode';
|
|
17544
17999
|
id: Scalars['ID']['output'];
|
|
17545
18000
|
};
|
|
@@ -17556,7 +18011,7 @@ export type GraphStoreFullProjectHasVersionEdge = {
|
|
|
17556
18011
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17557
18012
|
node: GraphStoreFullProjectHasVersionNode;
|
|
17558
18013
|
};
|
|
17559
|
-
export type GraphStoreFullProjectHasVersionEndNode =
|
|
18014
|
+
export type GraphStoreFullProjectHasVersionEndNode = {
|
|
17560
18015
|
__typename?: 'GraphStoreFullProjectHasVersionEndNode';
|
|
17561
18016
|
id: Scalars['ID']['output'];
|
|
17562
18017
|
};
|
|
@@ -17568,7 +18023,7 @@ export type GraphStoreFullProjectHasVersionNode = Node & {
|
|
|
17568
18023
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17569
18024
|
to: GraphStoreFullProjectHasVersionEndNode;
|
|
17570
18025
|
};
|
|
17571
|
-
export type GraphStoreFullProjectHasVersionStartNode =
|
|
18026
|
+
export type GraphStoreFullProjectHasVersionStartNode = {
|
|
17572
18027
|
__typename?: 'GraphStoreFullProjectHasVersionStartNode';
|
|
17573
18028
|
id: Scalars['ID']['output'];
|
|
17574
18029
|
};
|
|
@@ -17578,14 +18033,19 @@ export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection =
|
|
|
17578
18033
|
nodes: Array<Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode>>;
|
|
17579
18034
|
pageInfo: PageInfo;
|
|
17580
18035
|
};
|
|
18036
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityContainerOutput = {
|
|
18037
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityContainerOutput';
|
|
18038
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
18039
|
+
};
|
|
17581
18040
|
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEdge = {
|
|
17582
18041
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityEdge';
|
|
17583
18042
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17584
18043
|
node: GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode;
|
|
17585
18044
|
};
|
|
17586
|
-
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode =
|
|
18045
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode = {
|
|
17587
18046
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode';
|
|
17588
18047
|
id: Scalars['ID']['output'];
|
|
18048
|
+
metadata?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityRelationshipObjectMetadataOutput>;
|
|
17589
18049
|
};
|
|
17590
18050
|
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode = Node & {
|
|
17591
18051
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode';
|
|
@@ -17595,10 +18055,39 @@ export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode = Node
|
|
|
17595
18055
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17596
18056
|
to: GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode;
|
|
17597
18057
|
};
|
|
17598
|
-
export type
|
|
18058
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityRelationshipObjectMetadataOutput = {
|
|
18059
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityRelationshipObjectMetadataOutput';
|
|
18060
|
+
container?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityContainerOutput>;
|
|
18061
|
+
severity?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilitySeverityOutput>;
|
|
18062
|
+
status?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilityStatusOutput>;
|
|
18063
|
+
type?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilityTypeOutput>;
|
|
18064
|
+
};
|
|
18065
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode = {
|
|
17599
18066
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
17600
18067
|
id: Scalars['ID']['output'];
|
|
17601
18068
|
};
|
|
18069
|
+
export declare enum GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilitySeverityOutput {
|
|
18070
|
+
Critical = "CRITICAL",
|
|
18071
|
+
High = "HIGH",
|
|
18072
|
+
Low = "LOW",
|
|
18073
|
+
Medium = "MEDIUM",
|
|
18074
|
+
NotSet = "NOT_SET",
|
|
18075
|
+
Unknown = "UNKNOWN"
|
|
18076
|
+
}
|
|
18077
|
+
export declare enum GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilityStatusOutput {
|
|
18078
|
+
Closed = "CLOSED",
|
|
18079
|
+
Ignored = "IGNORED",
|
|
18080
|
+
NotSet = "NOT_SET",
|
|
18081
|
+
Open = "OPEN",
|
|
18082
|
+
Unknown = "UNKNOWN"
|
|
18083
|
+
}
|
|
18084
|
+
export declare enum GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilityTypeOutput {
|
|
18085
|
+
Dast = "DAST",
|
|
18086
|
+
NotSet = "NOT_SET",
|
|
18087
|
+
Sast = "SAST",
|
|
18088
|
+
Sca = "SCA",
|
|
18089
|
+
Unknown = "UNKNOWN"
|
|
18090
|
+
}
|
|
17602
18091
|
export type GraphStoreFullServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
17603
18092
|
__typename?: 'GraphStoreFullServiceLinkedIncidentConnection';
|
|
17604
18093
|
edges: Array<Maybe<GraphStoreFullServiceLinkedIncidentEdge>>;
|
|
@@ -17612,10 +18101,26 @@ export type GraphStoreFullServiceLinkedIncidentEdge = {
|
|
|
17612
18101
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17613
18102
|
node: GraphStoreFullServiceLinkedIncidentNode;
|
|
17614
18103
|
};
|
|
17615
|
-
export type GraphStoreFullServiceLinkedIncidentEndNode =
|
|
18104
|
+
export type GraphStoreFullServiceLinkedIncidentEndNode = {
|
|
17616
18105
|
__typename?: 'GraphStoreFullServiceLinkedIncidentEndNode';
|
|
17617
18106
|
id: Scalars['ID']['output'];
|
|
18107
|
+
metadata?: Maybe<GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput>;
|
|
17618
18108
|
};
|
|
18109
|
+
export declare enum GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentPriorityOutput {
|
|
18110
|
+
NotSet = "NOT_SET",
|
|
18111
|
+
P1 = "P1",
|
|
18112
|
+
P2 = "P2",
|
|
18113
|
+
P3 = "P3",
|
|
18114
|
+
P4 = "P4",
|
|
18115
|
+
P5 = "P5"
|
|
18116
|
+
}
|
|
18117
|
+
export declare enum GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentStatusOutput {
|
|
18118
|
+
Done = "DONE",
|
|
18119
|
+
Indeterminate = "INDETERMINATE",
|
|
18120
|
+
New = "NEW",
|
|
18121
|
+
NotSet = "NOT_SET",
|
|
18122
|
+
Undefined = "UNDEFINED"
|
|
18123
|
+
}
|
|
17619
18124
|
export type GraphStoreFullServiceLinkedIncidentNode = Node & {
|
|
17620
18125
|
__typename?: 'GraphStoreFullServiceLinkedIncidentNode';
|
|
17621
18126
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -17624,7 +18129,15 @@ export type GraphStoreFullServiceLinkedIncidentNode = Node & {
|
|
|
17624
18129
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17625
18130
|
to: GraphStoreFullServiceLinkedIncidentEndNode;
|
|
17626
18131
|
};
|
|
17627
|
-
export type
|
|
18132
|
+
export type GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput = {
|
|
18133
|
+
__typename?: 'GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput';
|
|
18134
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18135
|
+
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
18136
|
+
priority?: Maybe<GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentPriorityOutput>;
|
|
18137
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18138
|
+
status?: Maybe<GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentStatusOutput>;
|
|
18139
|
+
};
|
|
18140
|
+
export type GraphStoreFullServiceLinkedIncidentStartNode = {
|
|
17628
18141
|
__typename?: 'GraphStoreFullServiceLinkedIncidentStartNode';
|
|
17629
18142
|
id: Scalars['ID']['output'];
|
|
17630
18143
|
};
|
|
@@ -17641,7 +18154,7 @@ export type GraphStoreFullShipit57IssueLinksToPageEdge = {
|
|
|
17641
18154
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17642
18155
|
node: GraphStoreFullShipit57IssueLinksToPageNode;
|
|
17643
18156
|
};
|
|
17644
|
-
export type GraphStoreFullShipit57IssueLinksToPageEndNode =
|
|
18157
|
+
export type GraphStoreFullShipit57IssueLinksToPageEndNode = {
|
|
17645
18158
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageEndNode';
|
|
17646
18159
|
id: Scalars['ID']['output'];
|
|
17647
18160
|
};
|
|
@@ -17656,7 +18169,7 @@ export type GraphStoreFullShipit57IssueLinksToPageManualEdge = {
|
|
|
17656
18169
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17657
18170
|
node: GraphStoreFullShipit57IssueLinksToPageManualNode;
|
|
17658
18171
|
};
|
|
17659
|
-
export type GraphStoreFullShipit57IssueLinksToPageManualEndNode =
|
|
18172
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualEndNode = {
|
|
17660
18173
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualEndNode';
|
|
17661
18174
|
id: Scalars['ID']['output'];
|
|
17662
18175
|
};
|
|
@@ -17668,7 +18181,7 @@ export type GraphStoreFullShipit57IssueLinksToPageManualNode = Node & {
|
|
|
17668
18181
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17669
18182
|
to: GraphStoreFullShipit57IssueLinksToPageManualEndNode;
|
|
17670
18183
|
};
|
|
17671
|
-
export type GraphStoreFullShipit57IssueLinksToPageManualStartNode =
|
|
18184
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualStartNode = {
|
|
17672
18185
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualStartNode';
|
|
17673
18186
|
id: Scalars['ID']['output'];
|
|
17674
18187
|
};
|
|
@@ -17680,7 +18193,7 @@ export type GraphStoreFullShipit57IssueLinksToPageNode = Node & {
|
|
|
17680
18193
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17681
18194
|
to: GraphStoreFullShipit57IssueLinksToPageEndNode;
|
|
17682
18195
|
};
|
|
17683
|
-
export type GraphStoreFullShipit57IssueLinksToPageStartNode =
|
|
18196
|
+
export type GraphStoreFullShipit57IssueLinksToPageStartNode = {
|
|
17684
18197
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageStartNode';
|
|
17685
18198
|
id: Scalars['ID']['output'];
|
|
17686
18199
|
};
|
|
@@ -17697,7 +18210,7 @@ export type GraphStoreFullShipit57IssueRecursiveLinksToPageEdge = {
|
|
|
17697
18210
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17698
18211
|
node: GraphStoreFullShipit57IssueRecursiveLinksToPageNode;
|
|
17699
18212
|
};
|
|
17700
|
-
export type GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode =
|
|
18213
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode = {
|
|
17701
18214
|
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode';
|
|
17702
18215
|
id: Scalars['ID']['output'];
|
|
17703
18216
|
};
|
|
@@ -17709,7 +18222,7 @@ export type GraphStoreFullShipit57IssueRecursiveLinksToPageNode = Node & {
|
|
|
17709
18222
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17710
18223
|
to: GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode;
|
|
17711
18224
|
};
|
|
17712
|
-
export type GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode =
|
|
18225
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode = {
|
|
17713
18226
|
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode';
|
|
17714
18227
|
id: Scalars['ID']['output'];
|
|
17715
18228
|
};
|
|
@@ -17724,7 +18237,7 @@ export type GraphStoreFullShipit57PullRequestLinksToPageEdge = {
|
|
|
17724
18237
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17725
18238
|
node: GraphStoreFullShipit57PullRequestLinksToPageNode;
|
|
17726
18239
|
};
|
|
17727
|
-
export type GraphStoreFullShipit57PullRequestLinksToPageEndNode =
|
|
18240
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageEndNode = {
|
|
17728
18241
|
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageEndNode';
|
|
17729
18242
|
id: Scalars['ID']['output'];
|
|
17730
18243
|
};
|
|
@@ -17736,10 +18249,19 @@ export type GraphStoreFullShipit57PullRequestLinksToPageNode = Node & {
|
|
|
17736
18249
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17737
18250
|
to: GraphStoreFullShipit57PullRequestLinksToPageEndNode;
|
|
17738
18251
|
};
|
|
17739
|
-
export type GraphStoreFullShipit57PullRequestLinksToPageStartNode =
|
|
18252
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageStartNode = {
|
|
17740
18253
|
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageStartNode';
|
|
17741
18254
|
id: Scalars['ID']['output'];
|
|
17742
18255
|
};
|
|
18256
|
+
export declare enum GraphStoreFullSprintAssociatedBuildBuildStateOutput {
|
|
18257
|
+
Cancelled = "CANCELLED",
|
|
18258
|
+
Failed = "FAILED",
|
|
18259
|
+
InProgress = "IN_PROGRESS",
|
|
18260
|
+
NotSet = "NOT_SET",
|
|
18261
|
+
Pending = "PENDING",
|
|
18262
|
+
Successful = "SUCCESSFUL",
|
|
18263
|
+
Unknown = "UNKNOWN"
|
|
18264
|
+
}
|
|
17743
18265
|
export type GraphStoreFullSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
17744
18266
|
__typename?: 'GraphStoreFullSprintAssociatedBuildConnection';
|
|
17745
18267
|
edges: Array<Maybe<GraphStoreFullSprintAssociatedBuildEdge>>;
|
|
@@ -17753,9 +18275,10 @@ export type GraphStoreFullSprintAssociatedBuildEdge = {
|
|
|
17753
18275
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17754
18276
|
node: GraphStoreFullSprintAssociatedBuildNode;
|
|
17755
18277
|
};
|
|
17756
|
-
export type GraphStoreFullSprintAssociatedBuildEndNode =
|
|
18278
|
+
export type GraphStoreFullSprintAssociatedBuildEndNode = {
|
|
17757
18279
|
__typename?: 'GraphStoreFullSprintAssociatedBuildEndNode';
|
|
17758
18280
|
id: Scalars['ID']['output'];
|
|
18281
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
17759
18282
|
};
|
|
17760
18283
|
export type GraphStoreFullSprintAssociatedBuildNode = Node & {
|
|
17761
18284
|
__typename?: 'GraphStoreFullSprintAssociatedBuildNode';
|
|
@@ -17763,12 +18286,38 @@ export type GraphStoreFullSprintAssociatedBuildNode = Node & {
|
|
|
17763
18286
|
from: GraphStoreFullSprintAssociatedBuildStartNode;
|
|
17764
18287
|
id: Scalars['ID']['output'];
|
|
17765
18288
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18289
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput>;
|
|
17766
18290
|
to: GraphStoreFullSprintAssociatedBuildEndNode;
|
|
17767
18291
|
};
|
|
17768
|
-
export type
|
|
18292
|
+
export type GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput = {
|
|
18293
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput';
|
|
18294
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18295
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
18296
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
18297
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
18298
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18299
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18300
|
+
};
|
|
18301
|
+
export type GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
18302
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput';
|
|
18303
|
+
state?: Maybe<GraphStoreFullSprintAssociatedBuildBuildStateOutput>;
|
|
18304
|
+
testInfo?: Maybe<GraphStoreFullSprintAssociatedBuildTestInfoOutput>;
|
|
18305
|
+
};
|
|
18306
|
+
export type GraphStoreFullSprintAssociatedBuildStartNode = {
|
|
17769
18307
|
__typename?: 'GraphStoreFullSprintAssociatedBuildStartNode';
|
|
17770
18308
|
id: Scalars['ID']['output'];
|
|
17771
18309
|
};
|
|
18310
|
+
export type GraphStoreFullSprintAssociatedBuildTestInfoOutput = {
|
|
18311
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildTestInfoOutput';
|
|
18312
|
+
numberFailed?: Maybe<Scalars['Long']['output']>;
|
|
18313
|
+
numberPassed?: Maybe<Scalars['Long']['output']>;
|
|
18314
|
+
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
18315
|
+
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
18316
|
+
};
|
|
18317
|
+
export type GraphStoreFullSprintAssociatedDeploymentAuthorOutput = {
|
|
18318
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentAuthorOutput';
|
|
18319
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
18320
|
+
};
|
|
17772
18321
|
export type GraphStoreFullSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
17773
18322
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentConnection';
|
|
17774
18323
|
edges: Array<Maybe<GraphStoreFullSprintAssociatedDeploymentEdge>>;
|
|
@@ -17777,24 +18326,59 @@ export type GraphStoreFullSprintAssociatedDeploymentConnection = HasPageInfo & H
|
|
|
17777
18326
|
pageInfo: PageInfo;
|
|
17778
18327
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17779
18328
|
};
|
|
18329
|
+
export declare enum GraphStoreFullSprintAssociatedDeploymentDeploymentStateOutput {
|
|
18330
|
+
Cancelled = "CANCELLED",
|
|
18331
|
+
Failed = "FAILED",
|
|
18332
|
+
InProgress = "IN_PROGRESS",
|
|
18333
|
+
NotSet = "NOT_SET",
|
|
18334
|
+
Pending = "PENDING",
|
|
18335
|
+
RolledBack = "ROLLED_BACK",
|
|
18336
|
+
Successful = "SUCCESSFUL",
|
|
18337
|
+
Unknown = "UNKNOWN"
|
|
18338
|
+
}
|
|
17780
18339
|
export type GraphStoreFullSprintAssociatedDeploymentEdge = {
|
|
17781
18340
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentEdge';
|
|
17782
18341
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17783
18342
|
node: GraphStoreFullSprintAssociatedDeploymentNode;
|
|
17784
18343
|
};
|
|
17785
|
-
export type GraphStoreFullSprintAssociatedDeploymentEndNode =
|
|
18344
|
+
export type GraphStoreFullSprintAssociatedDeploymentEndNode = {
|
|
17786
18345
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentEndNode';
|
|
17787
18346
|
id: Scalars['ID']['output'];
|
|
18347
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
17788
18348
|
};
|
|
18349
|
+
export declare enum GraphStoreFullSprintAssociatedDeploymentEnvironmentTypeOutput {
|
|
18350
|
+
Development = "DEVELOPMENT",
|
|
18351
|
+
NotSet = "NOT_SET",
|
|
18352
|
+
Production = "PRODUCTION",
|
|
18353
|
+
Staging = "STAGING",
|
|
18354
|
+
Testing = "TESTING",
|
|
18355
|
+
Unmapped = "UNMAPPED"
|
|
18356
|
+
}
|
|
17789
18357
|
export type GraphStoreFullSprintAssociatedDeploymentNode = Node & {
|
|
17790
18358
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentNode';
|
|
17791
18359
|
createdAt: Scalars['DateTime']['output'];
|
|
17792
18360
|
from: GraphStoreFullSprintAssociatedDeploymentStartNode;
|
|
17793
18361
|
id: Scalars['ID']['output'];
|
|
17794
18362
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18363
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedDeploymentRelationshipMetadataOutput>;
|
|
17795
18364
|
to: GraphStoreFullSprintAssociatedDeploymentEndNode;
|
|
17796
18365
|
};
|
|
17797
|
-
export type
|
|
18366
|
+
export type GraphStoreFullSprintAssociatedDeploymentRelationshipMetadataOutput = {
|
|
18367
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentRelationshipMetadataOutput';
|
|
18368
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18369
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
18370
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
18371
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
18372
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18373
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18374
|
+
};
|
|
18375
|
+
export type GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
18376
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
18377
|
+
author?: Maybe<GraphStoreFullSprintAssociatedDeploymentAuthorOutput>;
|
|
18378
|
+
environmentType?: Maybe<GraphStoreFullSprintAssociatedDeploymentEnvironmentTypeOutput>;
|
|
18379
|
+
state?: Maybe<GraphStoreFullSprintAssociatedDeploymentDeploymentStateOutput>;
|
|
18380
|
+
};
|
|
18381
|
+
export type GraphStoreFullSprintAssociatedDeploymentStartNode = {
|
|
17798
18382
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentStartNode';
|
|
17799
18383
|
id: Scalars['ID']['output'];
|
|
17800
18384
|
};
|
|
@@ -17811,7 +18395,7 @@ export type GraphStoreFullSprintAssociatedFeatureFlagEdge = {
|
|
|
17811
18395
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17812
18396
|
node: GraphStoreFullSprintAssociatedFeatureFlagNode;
|
|
17813
18397
|
};
|
|
17814
|
-
export type GraphStoreFullSprintAssociatedFeatureFlagEndNode =
|
|
18398
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagEndNode = {
|
|
17815
18399
|
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagEndNode';
|
|
17816
18400
|
id: Scalars['ID']['output'];
|
|
17817
18401
|
};
|
|
@@ -17823,10 +18407,14 @@ export type GraphStoreFullSprintAssociatedFeatureFlagNode = Node & {
|
|
|
17823
18407
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17824
18408
|
to: GraphStoreFullSprintAssociatedFeatureFlagEndNode;
|
|
17825
18409
|
};
|
|
17826
|
-
export type GraphStoreFullSprintAssociatedFeatureFlagStartNode =
|
|
18410
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagStartNode = {
|
|
17827
18411
|
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagStartNode';
|
|
17828
18412
|
id: Scalars['ID']['output'];
|
|
17829
18413
|
};
|
|
18414
|
+
export type GraphStoreFullSprintAssociatedPrAuthorOutput = {
|
|
18415
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrAuthorOutput';
|
|
18416
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
18417
|
+
};
|
|
17830
18418
|
export type GraphStoreFullSprintAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
17831
18419
|
__typename?: 'GraphStoreFullSprintAssociatedPrConnection';
|
|
17832
18420
|
edges: Array<Maybe<GraphStoreFullSprintAssociatedPrEdge>>;
|
|
@@ -17840,9 +18428,10 @@ export type GraphStoreFullSprintAssociatedPrEdge = {
|
|
|
17840
18428
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17841
18429
|
node: GraphStoreFullSprintAssociatedPrNode;
|
|
17842
18430
|
};
|
|
17843
|
-
export type GraphStoreFullSprintAssociatedPrEndNode =
|
|
18431
|
+
export type GraphStoreFullSprintAssociatedPrEndNode = {
|
|
17844
18432
|
__typename?: 'GraphStoreFullSprintAssociatedPrEndNode';
|
|
17845
18433
|
id: Scalars['ID']['output'];
|
|
18434
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedPrRelationshipObjectMetadataOutput>;
|
|
17846
18435
|
};
|
|
17847
18436
|
export type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
17848
18437
|
__typename?: 'GraphStoreFullSprintAssociatedPrNode';
|
|
@@ -17850,12 +18439,103 @@ export type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
|
17850
18439
|
from: GraphStoreFullSprintAssociatedPrStartNode;
|
|
17851
18440
|
id: Scalars['ID']['output'];
|
|
17852
18441
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18442
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput>;
|
|
17853
18443
|
to: GraphStoreFullSprintAssociatedPrEndNode;
|
|
17854
18444
|
};
|
|
17855
|
-
export
|
|
18445
|
+
export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
18446
|
+
Declined = "DECLINED",
|
|
18447
|
+
Merged = "MERGED",
|
|
18448
|
+
NotSet = "NOT_SET",
|
|
18449
|
+
Open = "OPEN",
|
|
18450
|
+
Unknown = "UNKNOWN"
|
|
18451
|
+
}
|
|
18452
|
+
export type GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput = {
|
|
18453
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput';
|
|
18454
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18455
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
18456
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
18457
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
18458
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18459
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18460
|
+
};
|
|
18461
|
+
export type GraphStoreFullSprintAssociatedPrRelationshipObjectMetadataOutput = {
|
|
18462
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrRelationshipObjectMetadataOutput';
|
|
18463
|
+
author?: Maybe<GraphStoreFullSprintAssociatedPrAuthorOutput>;
|
|
18464
|
+
reviewers?: Maybe<GraphStoreFullSprintAssociatedPrReviewerOutput>;
|
|
18465
|
+
status?: Maybe<GraphStoreFullSprintAssociatedPrPullRequestStatusOutput>;
|
|
18466
|
+
taskCount?: Maybe<Scalars['Int']['output']>;
|
|
18467
|
+
};
|
|
18468
|
+
export type GraphStoreFullSprintAssociatedPrReviewerOutput = {
|
|
18469
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrReviewerOutput';
|
|
18470
|
+
approvalStatus?: Maybe<GraphStoreFullSprintAssociatedPrReviewerReviewerStatusOutput>;
|
|
18471
|
+
reviewerAri?: Maybe<Scalars['String']['output']>;
|
|
18472
|
+
};
|
|
18473
|
+
export declare enum GraphStoreFullSprintAssociatedPrReviewerReviewerStatusOutput {
|
|
18474
|
+
Approved = "APPROVED",
|
|
18475
|
+
Needswork = "NEEDSWORK",
|
|
18476
|
+
NotSet = "NOT_SET",
|
|
18477
|
+
Unapproved = "UNAPPROVED"
|
|
18478
|
+
}
|
|
18479
|
+
export type GraphStoreFullSprintAssociatedPrStartNode = {
|
|
17856
18480
|
__typename?: 'GraphStoreFullSprintAssociatedPrStartNode';
|
|
17857
18481
|
id: Scalars['ID']['output'];
|
|
17858
18482
|
};
|
|
18483
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityConnection = HasPageInfo & HasTotal & {
|
|
18484
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityConnection';
|
|
18485
|
+
edges: Array<Maybe<GraphStoreFullSprintAssociatedVulnerabilityEdge>>;
|
|
18486
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
18487
|
+
nodes: Array<Maybe<GraphStoreFullSprintAssociatedVulnerabilityNode>>;
|
|
18488
|
+
pageInfo: PageInfo;
|
|
18489
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
18490
|
+
};
|
|
18491
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityEdge = {
|
|
18492
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityEdge';
|
|
18493
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18494
|
+
node: GraphStoreFullSprintAssociatedVulnerabilityNode;
|
|
18495
|
+
};
|
|
18496
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityEndNode = {
|
|
18497
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityEndNode';
|
|
18498
|
+
id: Scalars['ID']['output'];
|
|
18499
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput>;
|
|
18500
|
+
};
|
|
18501
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityNode = Node & {
|
|
18502
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityNode';
|
|
18503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18504
|
+
from: GraphStoreFullSprintAssociatedVulnerabilityStartNode;
|
|
18505
|
+
id: Scalars['ID']['output'];
|
|
18506
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18507
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityRelationshipMetadataOutput>;
|
|
18508
|
+
to: GraphStoreFullSprintAssociatedVulnerabilityEndNode;
|
|
18509
|
+
};
|
|
18510
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityRelationshipMetadataOutput = {
|
|
18511
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityRelationshipMetadataOutput';
|
|
18512
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18513
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18514
|
+
};
|
|
18515
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput = {
|
|
18516
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput';
|
|
18517
|
+
severity?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityVulnerabilitySeverityOutput>;
|
|
18518
|
+
status?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityVulnerabilityStatusOutput>;
|
|
18519
|
+
};
|
|
18520
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityStartNode = {
|
|
18521
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityStartNode';
|
|
18522
|
+
id: Scalars['ID']['output'];
|
|
18523
|
+
};
|
|
18524
|
+
export declare enum GraphStoreFullSprintAssociatedVulnerabilityVulnerabilitySeverityOutput {
|
|
18525
|
+
Critical = "CRITICAL",
|
|
18526
|
+
High = "HIGH",
|
|
18527
|
+
Low = "LOW",
|
|
18528
|
+
Medium = "MEDIUM",
|
|
18529
|
+
NotSet = "NOT_SET",
|
|
18530
|
+
Unknown = "UNKNOWN"
|
|
18531
|
+
}
|
|
18532
|
+
export declare enum GraphStoreFullSprintAssociatedVulnerabilityVulnerabilityStatusOutput {
|
|
18533
|
+
Closed = "CLOSED",
|
|
18534
|
+
Ignored = "IGNORED",
|
|
18535
|
+
NotSet = "NOT_SET",
|
|
18536
|
+
Open = "OPEN",
|
|
18537
|
+
Unknown = "UNKNOWN"
|
|
18538
|
+
}
|
|
17859
18539
|
export type GraphStoreFullSprintContainsIssueConnection = HasPageInfo & {
|
|
17860
18540
|
__typename?: 'GraphStoreFullSprintContainsIssueConnection';
|
|
17861
18541
|
edges: Array<Maybe<GraphStoreFullSprintContainsIssueEdge>>;
|
|
@@ -17867,9 +18547,10 @@ export type GraphStoreFullSprintContainsIssueEdge = {
|
|
|
17867
18547
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17868
18548
|
node: GraphStoreFullSprintContainsIssueNode;
|
|
17869
18549
|
};
|
|
17870
|
-
export type GraphStoreFullSprintContainsIssueEndNode =
|
|
18550
|
+
export type GraphStoreFullSprintContainsIssueEndNode = {
|
|
17871
18551
|
__typename?: 'GraphStoreFullSprintContainsIssueEndNode';
|
|
17872
18552
|
id: Scalars['ID']['output'];
|
|
18553
|
+
metadata?: Maybe<GraphStoreFullSprintContainsIssueRelationshipObjectMetadataOutput>;
|
|
17873
18554
|
};
|
|
17874
18555
|
export type GraphStoreFullSprintContainsIssueNode = Node & {
|
|
17875
18556
|
__typename?: 'GraphStoreFullSprintContainsIssueNode';
|
|
@@ -17877,9 +18558,22 @@ export type GraphStoreFullSprintContainsIssueNode = Node & {
|
|
|
17877
18558
|
from: GraphStoreFullSprintContainsIssueStartNode;
|
|
17878
18559
|
id: Scalars['ID']['output'];
|
|
17879
18560
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18561
|
+
metadata?: Maybe<GraphStoreFullSprintContainsIssueRelationshipMetadataOutput>;
|
|
17880
18562
|
to: GraphStoreFullSprintContainsIssueEndNode;
|
|
17881
18563
|
};
|
|
17882
|
-
export type
|
|
18564
|
+
export type GraphStoreFullSprintContainsIssueRelationshipMetadataOutput = {
|
|
18565
|
+
__typename?: 'GraphStoreFullSprintContainsIssueRelationshipMetadataOutput';
|
|
18566
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
18567
|
+
};
|
|
18568
|
+
export type GraphStoreFullSprintContainsIssueRelationshipObjectMetadataOutput = {
|
|
18569
|
+
__typename?: 'GraphStoreFullSprintContainsIssueRelationshipObjectMetadataOutput';
|
|
18570
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18571
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
18572
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
18573
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18574
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18575
|
+
};
|
|
18576
|
+
export type GraphStoreFullSprintContainsIssueStartNode = {
|
|
17883
18577
|
__typename?: 'GraphStoreFullSprintContainsIssueStartNode';
|
|
17884
18578
|
id: Scalars['ID']['output'];
|
|
17885
18579
|
};
|
|
@@ -17896,7 +18590,7 @@ export type GraphStoreFullSprintRetrospectivePageEdge = {
|
|
|
17896
18590
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17897
18591
|
node: GraphStoreFullSprintRetrospectivePageNode;
|
|
17898
18592
|
};
|
|
17899
|
-
export type GraphStoreFullSprintRetrospectivePageEndNode =
|
|
18593
|
+
export type GraphStoreFullSprintRetrospectivePageEndNode = {
|
|
17900
18594
|
__typename?: 'GraphStoreFullSprintRetrospectivePageEndNode';
|
|
17901
18595
|
id: Scalars['ID']['output'];
|
|
17902
18596
|
};
|
|
@@ -17908,7 +18602,7 @@ export type GraphStoreFullSprintRetrospectivePageNode = Node & {
|
|
|
17908
18602
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17909
18603
|
to: GraphStoreFullSprintRetrospectivePageEndNode;
|
|
17910
18604
|
};
|
|
17911
|
-
export type GraphStoreFullSprintRetrospectivePageStartNode =
|
|
18605
|
+
export type GraphStoreFullSprintRetrospectivePageStartNode = {
|
|
17912
18606
|
__typename?: 'GraphStoreFullSprintRetrospectivePageStartNode';
|
|
17913
18607
|
id: Scalars['ID']['output'];
|
|
17914
18608
|
};
|
|
@@ -17925,10 +18619,12 @@ export type GraphStoreFullSprintRetrospectiveWhiteboardEdge = {
|
|
|
17925
18619
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17926
18620
|
node: GraphStoreFullSprintRetrospectiveWhiteboardNode;
|
|
17927
18621
|
};
|
|
17928
|
-
export type GraphStoreFullSprintRetrospectiveWhiteboardEndNode =
|
|
18622
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardEndNode = {
|
|
17929
18623
|
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardEndNode';
|
|
18624
|
+
data?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardEndUnion>;
|
|
17930
18625
|
id: Scalars['ID']['output'];
|
|
17931
18626
|
};
|
|
18627
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardEndUnion = ConfluenceWhiteboard;
|
|
17932
18628
|
export type GraphStoreFullSprintRetrospectiveWhiteboardNode = Node & {
|
|
17933
18629
|
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardNode';
|
|
17934
18630
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -17937,7 +18633,7 @@ export type GraphStoreFullSprintRetrospectiveWhiteboardNode = Node & {
|
|
|
17937
18633
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17938
18634
|
to: GraphStoreFullSprintRetrospectiveWhiteboardEndNode;
|
|
17939
18635
|
};
|
|
17940
|
-
export type GraphStoreFullSprintRetrospectiveWhiteboardStartNode =
|
|
18636
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardStartNode = {
|
|
17941
18637
|
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardStartNode';
|
|
17942
18638
|
id: Scalars['ID']['output'];
|
|
17943
18639
|
};
|
|
@@ -17954,7 +18650,7 @@ export type GraphStoreFullTeamWorksOnProjectEdge = {
|
|
|
17954
18650
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17955
18651
|
node: GraphStoreFullTeamWorksOnProjectNode;
|
|
17956
18652
|
};
|
|
17957
|
-
export type GraphStoreFullTeamWorksOnProjectEndNode =
|
|
18653
|
+
export type GraphStoreFullTeamWorksOnProjectEndNode = {
|
|
17958
18654
|
__typename?: 'GraphStoreFullTeamWorksOnProjectEndNode';
|
|
17959
18655
|
id: Scalars['ID']['output'];
|
|
17960
18656
|
};
|
|
@@ -17966,7 +18662,7 @@ export type GraphStoreFullTeamWorksOnProjectNode = Node & {
|
|
|
17966
18662
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17967
18663
|
to: GraphStoreFullTeamWorksOnProjectEndNode;
|
|
17968
18664
|
};
|
|
17969
|
-
export type GraphStoreFullTeamWorksOnProjectStartNode =
|
|
18665
|
+
export type GraphStoreFullTeamWorksOnProjectStartNode = {
|
|
17970
18666
|
__typename?: 'GraphStoreFullTeamWorksOnProjectStartNode';
|
|
17971
18667
|
id: Scalars['ID']['output'];
|
|
17972
18668
|
};
|
|
@@ -17983,7 +18679,7 @@ export type GraphStoreFullTestPerfhammerMaterializationAEdge = {
|
|
|
17983
18679
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17984
18680
|
node: GraphStoreFullTestPerfhammerMaterializationANode;
|
|
17985
18681
|
};
|
|
17986
|
-
export type GraphStoreFullTestPerfhammerMaterializationAEndNode =
|
|
18682
|
+
export type GraphStoreFullTestPerfhammerMaterializationAEndNode = {
|
|
17987
18683
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAEndNode';
|
|
17988
18684
|
id: Scalars['ID']['output'];
|
|
17989
18685
|
};
|
|
@@ -17995,7 +18691,7 @@ export type GraphStoreFullTestPerfhammerMaterializationANode = Node & {
|
|
|
17995
18691
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17996
18692
|
to: GraphStoreFullTestPerfhammerMaterializationAEndNode;
|
|
17997
18693
|
};
|
|
17998
|
-
export type GraphStoreFullTestPerfhammerMaterializationAStartNode =
|
|
18694
|
+
export type GraphStoreFullTestPerfhammerMaterializationAStartNode = {
|
|
17999
18695
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAStartNode';
|
|
18000
18696
|
id: Scalars['ID']['output'];
|
|
18001
18697
|
};
|
|
@@ -18012,7 +18708,7 @@ export type GraphStoreFullTestPerfhammerMaterializationBEdge = {
|
|
|
18012
18708
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18013
18709
|
node: GraphStoreFullTestPerfhammerMaterializationBNode;
|
|
18014
18710
|
};
|
|
18015
|
-
export type GraphStoreFullTestPerfhammerMaterializationBEndNode =
|
|
18711
|
+
export type GraphStoreFullTestPerfhammerMaterializationBEndNode = {
|
|
18016
18712
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBEndNode';
|
|
18017
18713
|
id: Scalars['ID']['output'];
|
|
18018
18714
|
};
|
|
@@ -18024,7 +18720,7 @@ export type GraphStoreFullTestPerfhammerMaterializationBNode = Node & {
|
|
|
18024
18720
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18025
18721
|
to: GraphStoreFullTestPerfhammerMaterializationBEndNode;
|
|
18026
18722
|
};
|
|
18027
|
-
export type GraphStoreFullTestPerfhammerMaterializationBStartNode =
|
|
18723
|
+
export type GraphStoreFullTestPerfhammerMaterializationBStartNode = {
|
|
18028
18724
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBStartNode';
|
|
18029
18725
|
id: Scalars['ID']['output'];
|
|
18030
18726
|
};
|
|
@@ -18041,7 +18737,7 @@ export type GraphStoreFullTestPerfhammerMaterializationEdge = {
|
|
|
18041
18737
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18042
18738
|
node: GraphStoreFullTestPerfhammerMaterializationNode;
|
|
18043
18739
|
};
|
|
18044
|
-
export type GraphStoreFullTestPerfhammerMaterializationEndNode =
|
|
18740
|
+
export type GraphStoreFullTestPerfhammerMaterializationEndNode = {
|
|
18045
18741
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationEndNode';
|
|
18046
18742
|
id: Scalars['ID']['output'];
|
|
18047
18743
|
};
|
|
@@ -18053,7 +18749,7 @@ export type GraphStoreFullTestPerfhammerMaterializationNode = Node & {
|
|
|
18053
18749
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18054
18750
|
to: GraphStoreFullTestPerfhammerMaterializationEndNode;
|
|
18055
18751
|
};
|
|
18056
|
-
export type GraphStoreFullTestPerfhammerMaterializationStartNode =
|
|
18752
|
+
export type GraphStoreFullTestPerfhammerMaterializationStartNode = {
|
|
18057
18753
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationStartNode';
|
|
18058
18754
|
id: Scalars['ID']['output'];
|
|
18059
18755
|
};
|
|
@@ -18068,7 +18764,7 @@ export type GraphStoreFullTestPerfhammerRelationshipEdge = {
|
|
|
18068
18764
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18069
18765
|
node: GraphStoreFullTestPerfhammerRelationshipNode;
|
|
18070
18766
|
};
|
|
18071
|
-
export type GraphStoreFullTestPerfhammerRelationshipEndNode =
|
|
18767
|
+
export type GraphStoreFullTestPerfhammerRelationshipEndNode = {
|
|
18072
18768
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipEndNode';
|
|
18073
18769
|
id: Scalars['ID']['output'];
|
|
18074
18770
|
};
|
|
@@ -18078,9 +18774,15 @@ export type GraphStoreFullTestPerfhammerRelationshipNode = Node & {
|
|
|
18078
18774
|
from: GraphStoreFullTestPerfhammerRelationshipStartNode;
|
|
18079
18775
|
id: Scalars['ID']['output'];
|
|
18080
18776
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18777
|
+
metadata?: Maybe<GraphStoreFullTestPerfhammerRelationshipRelationshipMetadataOutput>;
|
|
18081
18778
|
to: GraphStoreFullTestPerfhammerRelationshipEndNode;
|
|
18082
18779
|
};
|
|
18083
|
-
export type
|
|
18780
|
+
export type GraphStoreFullTestPerfhammerRelationshipRelationshipMetadataOutput = {
|
|
18781
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipRelationshipMetadataOutput';
|
|
18782
|
+
replicatedNumber?: Maybe<Scalars['Int']['output']>;
|
|
18783
|
+
sequentialNumber?: Maybe<Scalars['Int']['output']>;
|
|
18784
|
+
};
|
|
18785
|
+
export type GraphStoreFullTestPerfhammerRelationshipStartNode = {
|
|
18084
18786
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipStartNode';
|
|
18085
18787
|
id: Scalars['ID']['output'];
|
|
18086
18788
|
};
|
|
@@ -18095,7 +18797,7 @@ export type GraphStoreFullUserIsInTeamEdge = {
|
|
|
18095
18797
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18096
18798
|
node: GraphStoreFullUserIsInTeamNode;
|
|
18097
18799
|
};
|
|
18098
|
-
export type GraphStoreFullUserIsInTeamEndNode =
|
|
18800
|
+
export type GraphStoreFullUserIsInTeamEndNode = {
|
|
18099
18801
|
__typename?: 'GraphStoreFullUserIsInTeamEndNode';
|
|
18100
18802
|
id: Scalars['ID']['output'];
|
|
18101
18803
|
};
|
|
@@ -18107,7 +18809,7 @@ export type GraphStoreFullUserIsInTeamNode = Node & {
|
|
|
18107
18809
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18108
18810
|
to: GraphStoreFullUserIsInTeamEndNode;
|
|
18109
18811
|
};
|
|
18110
|
-
export type GraphStoreFullUserIsInTeamStartNode =
|
|
18812
|
+
export type GraphStoreFullUserIsInTeamStartNode = {
|
|
18111
18813
|
__typename?: 'GraphStoreFullUserIsInTeamStartNode';
|
|
18112
18814
|
id: Scalars['ID']['output'];
|
|
18113
18815
|
};
|
|
@@ -18124,7 +18826,7 @@ export type GraphStoreFullVersionAssociatedBranchEdge = {
|
|
|
18124
18826
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18125
18827
|
node: GraphStoreFullVersionAssociatedBranchNode;
|
|
18126
18828
|
};
|
|
18127
|
-
export type GraphStoreFullVersionAssociatedBranchEndNode =
|
|
18829
|
+
export type GraphStoreFullVersionAssociatedBranchEndNode = {
|
|
18128
18830
|
__typename?: 'GraphStoreFullVersionAssociatedBranchEndNode';
|
|
18129
18831
|
id: Scalars['ID']['output'];
|
|
18130
18832
|
};
|
|
@@ -18136,7 +18838,7 @@ export type GraphStoreFullVersionAssociatedBranchNode = Node & {
|
|
|
18136
18838
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18137
18839
|
to: GraphStoreFullVersionAssociatedBranchEndNode;
|
|
18138
18840
|
};
|
|
18139
|
-
export type GraphStoreFullVersionAssociatedBranchStartNode =
|
|
18841
|
+
export type GraphStoreFullVersionAssociatedBranchStartNode = {
|
|
18140
18842
|
__typename?: 'GraphStoreFullVersionAssociatedBranchStartNode';
|
|
18141
18843
|
id: Scalars['ID']['output'];
|
|
18142
18844
|
};
|
|
@@ -18153,7 +18855,7 @@ export type GraphStoreFullVersionAssociatedBuildEdge = {
|
|
|
18153
18855
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18154
18856
|
node: GraphStoreFullVersionAssociatedBuildNode;
|
|
18155
18857
|
};
|
|
18156
|
-
export type GraphStoreFullVersionAssociatedBuildEndNode =
|
|
18858
|
+
export type GraphStoreFullVersionAssociatedBuildEndNode = {
|
|
18157
18859
|
__typename?: 'GraphStoreFullVersionAssociatedBuildEndNode';
|
|
18158
18860
|
id: Scalars['ID']['output'];
|
|
18159
18861
|
};
|
|
@@ -18165,7 +18867,7 @@ export type GraphStoreFullVersionAssociatedBuildNode = Node & {
|
|
|
18165
18867
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18166
18868
|
to: GraphStoreFullVersionAssociatedBuildEndNode;
|
|
18167
18869
|
};
|
|
18168
|
-
export type GraphStoreFullVersionAssociatedBuildStartNode =
|
|
18870
|
+
export type GraphStoreFullVersionAssociatedBuildStartNode = {
|
|
18169
18871
|
__typename?: 'GraphStoreFullVersionAssociatedBuildStartNode';
|
|
18170
18872
|
id: Scalars['ID']['output'];
|
|
18171
18873
|
};
|
|
@@ -18182,7 +18884,7 @@ export type GraphStoreFullVersionAssociatedCommitEdge = {
|
|
|
18182
18884
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18183
18885
|
node: GraphStoreFullVersionAssociatedCommitNode;
|
|
18184
18886
|
};
|
|
18185
|
-
export type GraphStoreFullVersionAssociatedCommitEndNode =
|
|
18887
|
+
export type GraphStoreFullVersionAssociatedCommitEndNode = {
|
|
18186
18888
|
__typename?: 'GraphStoreFullVersionAssociatedCommitEndNode';
|
|
18187
18889
|
id: Scalars['ID']['output'];
|
|
18188
18890
|
};
|
|
@@ -18194,7 +18896,7 @@ export type GraphStoreFullVersionAssociatedCommitNode = Node & {
|
|
|
18194
18896
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18195
18897
|
to: GraphStoreFullVersionAssociatedCommitEndNode;
|
|
18196
18898
|
};
|
|
18197
|
-
export type GraphStoreFullVersionAssociatedCommitStartNode =
|
|
18899
|
+
export type GraphStoreFullVersionAssociatedCommitStartNode = {
|
|
18198
18900
|
__typename?: 'GraphStoreFullVersionAssociatedCommitStartNode';
|
|
18199
18901
|
id: Scalars['ID']['output'];
|
|
18200
18902
|
};
|
|
@@ -18211,7 +18913,7 @@ export type GraphStoreFullVersionAssociatedDeploymentEdge = {
|
|
|
18211
18913
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18212
18914
|
node: GraphStoreFullVersionAssociatedDeploymentNode;
|
|
18213
18915
|
};
|
|
18214
|
-
export type GraphStoreFullVersionAssociatedDeploymentEndNode =
|
|
18916
|
+
export type GraphStoreFullVersionAssociatedDeploymentEndNode = {
|
|
18215
18917
|
__typename?: 'GraphStoreFullVersionAssociatedDeploymentEndNode';
|
|
18216
18918
|
id: Scalars['ID']['output'];
|
|
18217
18919
|
};
|
|
@@ -18223,7 +18925,7 @@ export type GraphStoreFullVersionAssociatedDeploymentNode = Node & {
|
|
|
18223
18925
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18224
18926
|
to: GraphStoreFullVersionAssociatedDeploymentEndNode;
|
|
18225
18927
|
};
|
|
18226
|
-
export type GraphStoreFullVersionAssociatedDeploymentStartNode =
|
|
18928
|
+
export type GraphStoreFullVersionAssociatedDeploymentStartNode = {
|
|
18227
18929
|
__typename?: 'GraphStoreFullVersionAssociatedDeploymentStartNode';
|
|
18228
18930
|
id: Scalars['ID']['output'];
|
|
18229
18931
|
};
|
|
@@ -18240,7 +18942,7 @@ export type GraphStoreFullVersionAssociatedFeatureFlagEdge = {
|
|
|
18240
18942
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18241
18943
|
node: GraphStoreFullVersionAssociatedFeatureFlagNode;
|
|
18242
18944
|
};
|
|
18243
|
-
export type GraphStoreFullVersionAssociatedFeatureFlagEndNode =
|
|
18945
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagEndNode = {
|
|
18244
18946
|
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagEndNode';
|
|
18245
18947
|
id: Scalars['ID']['output'];
|
|
18246
18948
|
};
|
|
@@ -18252,7 +18954,7 @@ export type GraphStoreFullVersionAssociatedFeatureFlagNode = Node & {
|
|
|
18252
18954
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18253
18955
|
to: GraphStoreFullVersionAssociatedFeatureFlagEndNode;
|
|
18254
18956
|
};
|
|
18255
|
-
export type GraphStoreFullVersionAssociatedFeatureFlagStartNode =
|
|
18957
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagStartNode = {
|
|
18256
18958
|
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagStartNode';
|
|
18257
18959
|
id: Scalars['ID']['output'];
|
|
18258
18960
|
};
|
|
@@ -18267,7 +18969,7 @@ export type GraphStoreFullVersionAssociatedIssueEdge = {
|
|
|
18267
18969
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18268
18970
|
node: GraphStoreFullVersionAssociatedIssueNode;
|
|
18269
18971
|
};
|
|
18270
|
-
export type GraphStoreFullVersionAssociatedIssueEndNode =
|
|
18972
|
+
export type GraphStoreFullVersionAssociatedIssueEndNode = {
|
|
18271
18973
|
__typename?: 'GraphStoreFullVersionAssociatedIssueEndNode';
|
|
18272
18974
|
id: Scalars['ID']['output'];
|
|
18273
18975
|
};
|
|
@@ -18279,7 +18981,7 @@ export type GraphStoreFullVersionAssociatedIssueNode = Node & {
|
|
|
18279
18981
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18280
18982
|
to: GraphStoreFullVersionAssociatedIssueEndNode;
|
|
18281
18983
|
};
|
|
18282
|
-
export type GraphStoreFullVersionAssociatedIssueStartNode =
|
|
18984
|
+
export type GraphStoreFullVersionAssociatedIssueStartNode = {
|
|
18283
18985
|
__typename?: 'GraphStoreFullVersionAssociatedIssueStartNode';
|
|
18284
18986
|
id: Scalars['ID']['output'];
|
|
18285
18987
|
};
|
|
@@ -18296,7 +18998,7 @@ export type GraphStoreFullVersionAssociatedPullRequestEdge = {
|
|
|
18296
18998
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18297
18999
|
node: GraphStoreFullVersionAssociatedPullRequestNode;
|
|
18298
19000
|
};
|
|
18299
|
-
export type GraphStoreFullVersionAssociatedPullRequestEndNode =
|
|
19001
|
+
export type GraphStoreFullVersionAssociatedPullRequestEndNode = {
|
|
18300
19002
|
__typename?: 'GraphStoreFullVersionAssociatedPullRequestEndNode';
|
|
18301
19003
|
id: Scalars['ID']['output'];
|
|
18302
19004
|
};
|
|
@@ -18308,7 +19010,7 @@ export type GraphStoreFullVersionAssociatedPullRequestNode = Node & {
|
|
|
18308
19010
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18309
19011
|
to: GraphStoreFullVersionAssociatedPullRequestEndNode;
|
|
18310
19012
|
};
|
|
18311
|
-
export type GraphStoreFullVersionAssociatedPullRequestStartNode =
|
|
19013
|
+
export type GraphStoreFullVersionAssociatedPullRequestStartNode = {
|
|
18312
19014
|
__typename?: 'GraphStoreFullVersionAssociatedPullRequestStartNode';
|
|
18313
19015
|
id: Scalars['ID']['output'];
|
|
18314
19016
|
};
|
|
@@ -18323,7 +19025,7 @@ export type GraphStoreFullVersionUserAssociatedFeatureFlagEdge = {
|
|
|
18323
19025
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18324
19026
|
node: GraphStoreFullVersionUserAssociatedFeatureFlagNode;
|
|
18325
19027
|
};
|
|
18326
|
-
export type GraphStoreFullVersionUserAssociatedFeatureFlagEndNode =
|
|
19028
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagEndNode = {
|
|
18327
19029
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagEndNode';
|
|
18328
19030
|
id: Scalars['ID']['output'];
|
|
18329
19031
|
};
|
|
@@ -18335,7 +19037,7 @@ export type GraphStoreFullVersionUserAssociatedFeatureFlagNode = Node & {
|
|
|
18335
19037
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18336
19038
|
to: GraphStoreFullVersionUserAssociatedFeatureFlagEndNode;
|
|
18337
19039
|
};
|
|
18338
|
-
export type GraphStoreFullVersionUserAssociatedFeatureFlagStartNode =
|
|
19040
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagStartNode = {
|
|
18339
19041
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagStartNode';
|
|
18340
19042
|
id: Scalars['ID']['output'];
|
|
18341
19043
|
};
|
|
@@ -18347,12 +19049,16 @@ export type GraphStoreFullVulnerabilityAssociatedIssueConnection = HasPageInfo &
|
|
|
18347
19049
|
pageInfo: PageInfo;
|
|
18348
19050
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
18349
19051
|
};
|
|
19052
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueContainerOutput = {
|
|
19053
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueContainerOutput';
|
|
19054
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
19055
|
+
};
|
|
18350
19056
|
export type GraphStoreFullVulnerabilityAssociatedIssueEdge = {
|
|
18351
19057
|
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueEdge';
|
|
18352
19058
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18353
19059
|
node: GraphStoreFullVulnerabilityAssociatedIssueNode;
|
|
18354
19060
|
};
|
|
18355
|
-
export type GraphStoreFullVulnerabilityAssociatedIssueEndNode =
|
|
19061
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueEndNode = {
|
|
18356
19062
|
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueEndNode';
|
|
18357
19063
|
id: Scalars['ID']['output'];
|
|
18358
19064
|
};
|
|
@@ -18364,10 +19070,40 @@ export type GraphStoreFullVulnerabilityAssociatedIssueNode = Node & {
|
|
|
18364
19070
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18365
19071
|
to: GraphStoreFullVulnerabilityAssociatedIssueEndNode;
|
|
18366
19072
|
};
|
|
18367
|
-
export type
|
|
19073
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput = {
|
|
19074
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput';
|
|
19075
|
+
container?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueContainerOutput>;
|
|
19076
|
+
severity?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilitySeverityOutput>;
|
|
19077
|
+
status?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityStatusOutput>;
|
|
19078
|
+
type?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeOutput>;
|
|
19079
|
+
};
|
|
19080
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueStartNode = {
|
|
18368
19081
|
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueStartNode';
|
|
18369
19082
|
id: Scalars['ID']['output'];
|
|
19083
|
+
metadata?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput>;
|
|
18370
19084
|
};
|
|
19085
|
+
export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilitySeverityOutput {
|
|
19086
|
+
Critical = "CRITICAL",
|
|
19087
|
+
High = "HIGH",
|
|
19088
|
+
Low = "LOW",
|
|
19089
|
+
Medium = "MEDIUM",
|
|
19090
|
+
NotSet = "NOT_SET",
|
|
19091
|
+
Unknown = "UNKNOWN"
|
|
19092
|
+
}
|
|
19093
|
+
export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityStatusOutput {
|
|
19094
|
+
Closed = "CLOSED",
|
|
19095
|
+
Ignored = "IGNORED",
|
|
19096
|
+
NotSet = "NOT_SET",
|
|
19097
|
+
Open = "OPEN",
|
|
19098
|
+
Unknown = "UNKNOWN"
|
|
19099
|
+
}
|
|
19100
|
+
export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeOutput {
|
|
19101
|
+
Dast = "DAST",
|
|
19102
|
+
NotSet = "NOT_SET",
|
|
19103
|
+
Sast = "SAST",
|
|
19104
|
+
Sca = "SCA",
|
|
19105
|
+
Unknown = "UNKNOWN"
|
|
19106
|
+
}
|
|
18371
19107
|
export type GraphStoreIntFilterInput = {
|
|
18372
19108
|
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
18373
19109
|
greaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -19043,6 +19779,21 @@ export type GraphStoreSimplifiedProjectAssociatedDeploymentEdge = {
|
|
|
19043
19779
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentUnion>;
|
|
19044
19780
|
};
|
|
19045
19781
|
export type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary;
|
|
19782
|
+
export type GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
19783
|
+
__typename?: 'GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection';
|
|
19784
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge>>>;
|
|
19785
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
19786
|
+
pageInfo: PageInfo;
|
|
19787
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
19788
|
+
};
|
|
19789
|
+
export type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
19790
|
+
__typename?: 'GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge';
|
|
19791
|
+
createdAt: Scalars['DateTime']['output'];
|
|
19792
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19793
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
19794
|
+
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
19795
|
+
};
|
|
19796
|
+
export type GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion = ConfluenceWhiteboard;
|
|
19046
19797
|
export type GraphStoreSortInput = {
|
|
19047
19798
|
direction: SortDirection;
|
|
19048
19799
|
priority: Scalars['Int']['input'];
|
|
@@ -19249,6 +20000,53 @@ export type GraphStoreSprintAssociatedPrSortInput = {
|
|
|
19249
20000
|
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
19250
20001
|
to_taskCount?: InputMaybe<GraphStoreSortInput>;
|
|
19251
20002
|
};
|
|
20003
|
+
export type GraphStoreSprintAssociatedVulnerabilityConditionalFilterInput = {
|
|
20004
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
20005
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
20006
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
20007
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
20008
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
20009
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
20010
|
+
to_severity?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverityFilterInput>;
|
|
20011
|
+
to_status?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatusFilterInput>;
|
|
20012
|
+
};
|
|
20013
|
+
export type GraphStoreSprintAssociatedVulnerabilityFilterInput = {
|
|
20014
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedVulnerabilityConditionalFilterInput>>>;
|
|
20015
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedVulnerabilityConditionalFilterInput>>>;
|
|
20016
|
+
};
|
|
20017
|
+
export type GraphStoreSprintAssociatedVulnerabilitySortInput = {
|
|
20018
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
20019
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
20020
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
20021
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
20022
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
20023
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
20024
|
+
to_severity?: InputMaybe<GraphStoreSortInput>;
|
|
20025
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
20026
|
+
};
|
|
20027
|
+
export declare enum GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverity {
|
|
20028
|
+
Critical = "CRITICAL",
|
|
20029
|
+
High = "HIGH",
|
|
20030
|
+
Low = "LOW",
|
|
20031
|
+
Medium = "MEDIUM",
|
|
20032
|
+
NotSet = "NOT_SET",
|
|
20033
|
+
Unknown = "UNKNOWN"
|
|
20034
|
+
}
|
|
20035
|
+
export type GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverityFilterInput = {
|
|
20036
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverity>>;
|
|
20037
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverity>>;
|
|
20038
|
+
};
|
|
20039
|
+
export declare enum GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus {
|
|
20040
|
+
Closed = "CLOSED",
|
|
20041
|
+
Ignored = "IGNORED",
|
|
20042
|
+
NotSet = "NOT_SET",
|
|
20043
|
+
Open = "OPEN",
|
|
20044
|
+
Unknown = "UNKNOWN"
|
|
20045
|
+
}
|
|
20046
|
+
export type GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatusFilterInput = {
|
|
20047
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
20048
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
20049
|
+
};
|
|
19252
20050
|
export type GrowthRecContext = {
|
|
19253
20051
|
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
19254
20052
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22659,6 +23457,11 @@ export type JiraDevOpsEntityAuthor = {
|
|
|
22659
23457
|
avatar?: Maybe<JiraAvatar>;
|
|
22660
23458
|
name?: Maybe<Scalars['String']['output']>;
|
|
22661
23459
|
};
|
|
23460
|
+
export declare enum JiraDevOpsInContextConfigPromptLocation {
|
|
23461
|
+
DevelopmentPanel = "DEVELOPMENT_PANEL",
|
|
23462
|
+
ReleasesPanel = "RELEASES_PANEL",
|
|
23463
|
+
SecurityPanel = "SECURITY_PANEL"
|
|
23464
|
+
}
|
|
22662
23465
|
export type JiraDevOpsIssuePanel = {
|
|
22663
23466
|
__typename?: 'JiraDevOpsIssuePanel';
|
|
22664
23467
|
devOpsIssuePanelBanner?: Maybe<JiraDevOpsIssuePanelBannerType>;
|
|
@@ -22679,6 +23482,7 @@ export type JiraDevOpsMutation = {
|
|
|
22679
23482
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
22680
23483
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
22681
23484
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
23485
|
+
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
22682
23486
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
22683
23487
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
22684
23488
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
@@ -22694,6 +23498,10 @@ export type JiraDevOpsMutationDismissBitbucketPendingAccessRequestBannerArgs = {
|
|
|
22694
23498
|
export type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
22695
23499
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
22696
23500
|
};
|
|
23501
|
+
export type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
23502
|
+
cloudId: Scalars['ID']['input'];
|
|
23503
|
+
input: JiraDismissInContextConfigPromptInput;
|
|
23504
|
+
};
|
|
22697
23505
|
export type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
22698
23506
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
22699
23507
|
};
|
|
@@ -22726,6 +23534,7 @@ export type JiraDevOpsQuery = {
|
|
|
22726
23534
|
configState?: Maybe<JiraAppConfigState>;
|
|
22727
23535
|
configStates?: Maybe<JiraAppConfigStateConnection>;
|
|
22728
23536
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
23537
|
+
isInContextConfigPromptDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
22729
23538
|
toolchain?: Maybe<JiraToolchain>;
|
|
22730
23539
|
};
|
|
22731
23540
|
export type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
@@ -22742,6 +23551,10 @@ export type JiraDevOpsQueryConfigStatesArgs = {
|
|
|
22742
23551
|
export type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
22743
23552
|
issueId: Scalars['ID']['input'];
|
|
22744
23553
|
};
|
|
23554
|
+
export type JiraDevOpsQueryIsInContextConfigPromptDismissedArgs = {
|
|
23555
|
+
cloudId: Scalars['ID']['input'];
|
|
23556
|
+
location: JiraDevOpsInContextConfigPromptLocation;
|
|
23557
|
+
};
|
|
22745
23558
|
export type JiraDevOpsQueryToolchainArgs = {
|
|
22746
23559
|
cloudId: Scalars['ID']['input'];
|
|
22747
23560
|
};
|
|
@@ -22772,6 +23585,15 @@ export type JiraDismissDevOpsIssuePanelBannerPayload = Payload & {
|
|
|
22772
23585
|
errors?: Maybe<Array<MutationError>>;
|
|
22773
23586
|
success: Scalars['Boolean']['output'];
|
|
22774
23587
|
};
|
|
23588
|
+
export type JiraDismissInContextConfigPromptInput = {
|
|
23589
|
+
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23590
|
+
locations: Array<JiraDevOpsInContextConfigPromptLocation>;
|
|
23591
|
+
};
|
|
23592
|
+
export type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
23593
|
+
__typename?: 'JiraDismissInContextConfigPromptPayload';
|
|
23594
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23595
|
+
success: Scalars['Boolean']['output'];
|
|
23596
|
+
};
|
|
22775
23597
|
export declare enum JiraEmailMimeType {
|
|
22776
23598
|
Html = "HTML",
|
|
22777
23599
|
Text = "TEXT"
|
|
@@ -23358,6 +24180,15 @@ export declare enum JiraIncidentPriority {
|
|
|
23358
24180
|
P4 = "P4",
|
|
23359
24181
|
P5 = "P5"
|
|
23360
24182
|
}
|
|
24183
|
+
export type JiraInitializeProjectNotificationPreferencesInput = {
|
|
24184
|
+
projectId: Scalars['ID']['input'];
|
|
24185
|
+
};
|
|
24186
|
+
export type JiraInitializeProjectNotificationPreferencesPayload = Payload & {
|
|
24187
|
+
__typename?: 'JiraInitializeProjectNotificationPreferencesPayload';
|
|
24188
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24189
|
+
projectPreferences?: Maybe<JiraNotificationProjectPreferences>;
|
|
24190
|
+
success: Scalars['Boolean']['output'];
|
|
24191
|
+
};
|
|
23361
24192
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
23362
24193
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
23363
24194
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -25218,6 +26049,7 @@ export type JiraMutation = {
|
|
|
25218
26049
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
25219
26050
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
25220
26051
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
26052
|
+
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
25221
26053
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
25222
26054
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
25223
26055
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
@@ -25243,7 +26075,6 @@ export type JiraMutation = {
|
|
|
25243
26075
|
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
25244
26076
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
25245
26077
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
25246
|
-
updateEmailMimeType?: Maybe<JiraUpdateEmailMimeTypePayload>;
|
|
25247
26078
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
25248
26079
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
25249
26080
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -25364,6 +26195,10 @@ export type JiraMutationGrantGlobalPermissionArgs = {
|
|
|
25364
26195
|
cloudId: Scalars['ID']['input'];
|
|
25365
26196
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
25366
26197
|
};
|
|
26198
|
+
export type JiraMutationInitializeProjectNotificationPreferencesArgs = {
|
|
26199
|
+
cloudId: Scalars['ID']['input'];
|
|
26200
|
+
input: JiraInitializeProjectNotificationPreferencesInput;
|
|
26201
|
+
};
|
|
25367
26202
|
export type JiraMutationJwmDeleteAttachmentArgs = {
|
|
25368
26203
|
input: JiraWorkManagementDeleteAttachmentInput;
|
|
25369
26204
|
};
|
|
@@ -25440,10 +26275,6 @@ export type JiraMutationUpdateDateFieldArgs = {
|
|
|
25440
26275
|
export type JiraMutationUpdateDateTimeFieldArgs = {
|
|
25441
26276
|
input: JiraUpdateDateTimeFieldInput;
|
|
25442
26277
|
};
|
|
25443
|
-
export type JiraMutationUpdateEmailMimeTypeArgs = {
|
|
25444
|
-
cloudId: Scalars['ID']['input'];
|
|
25445
|
-
input: JiraUpdateEmailMimeTypeInput;
|
|
25446
|
-
};
|
|
25447
26278
|
export type JiraMutationUpdateGlobalNotificationOptionsArgs = {
|
|
25448
26279
|
cloudId: Scalars['ID']['input'];
|
|
25449
26280
|
input: JiraUpdateNotificationOptionsInput;
|
|
@@ -25609,7 +26440,8 @@ export type JiraNotificationChannel = {
|
|
|
25609
26440
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
25610
26441
|
};
|
|
25611
26442
|
export declare enum JiraNotificationChannelType {
|
|
25612
|
-
Email = "EMAIL"
|
|
26443
|
+
Email = "EMAIL",
|
|
26444
|
+
InProduct = "IN_PRODUCT"
|
|
25613
26445
|
}
|
|
25614
26446
|
export type JiraNotificationGlobalPreference = {
|
|
25615
26447
|
__typename?: 'JiraNotificationGlobalPreference';
|
|
@@ -25627,10 +26459,12 @@ export type JiraNotificationPreference = {
|
|
|
25627
26459
|
__typename?: 'JiraNotificationPreference';
|
|
25628
26460
|
emailChannel?: Maybe<JiraNotificationChannel>;
|
|
25629
26461
|
id: Scalars['ID']['output'];
|
|
26462
|
+
inProductChannel?: Maybe<JiraNotificationChannel>;
|
|
25630
26463
|
type?: Maybe<JiraNotificationType>;
|
|
25631
26464
|
};
|
|
25632
26465
|
export type JiraNotificationPreferenceInput = {
|
|
25633
|
-
|
|
26466
|
+
channel?: InputMaybe<JiraNotificationChannelType>;
|
|
26467
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25634
26468
|
type: JiraNotificationType;
|
|
25635
26469
|
};
|
|
25636
26470
|
export type JiraNotificationPreferences = {
|
|
@@ -26947,6 +27781,7 @@ export type JiraQuery = {
|
|
|
26947
27781
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
26948
27782
|
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
26949
27783
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
27784
|
+
notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
|
|
26950
27785
|
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
26951
27786
|
permission?: Maybe<JiraPermission>;
|
|
26952
27787
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
@@ -27346,6 +28181,10 @@ export type JiraQueryNavigationUiStateArgs = {
|
|
|
27346
28181
|
export type JiraQueryNotificationGlobalPreferenceArgs = {
|
|
27347
28182
|
cloudId: Scalars['ID']['input'];
|
|
27348
28183
|
};
|
|
28184
|
+
export type JiraQueryNotificationProjectPreferenceArgs = {
|
|
28185
|
+
cloudId: Scalars['ID']['input'];
|
|
28186
|
+
projectId: Scalars['ID']['input'];
|
|
28187
|
+
};
|
|
27349
28188
|
export type JiraQueryNotificationProjectPreferencesArgs = {
|
|
27350
28189
|
cloudId: Scalars['ID']['input'];
|
|
27351
28190
|
projectIds: Array<Scalars['ID']['input']>;
|
|
@@ -29584,15 +30423,6 @@ export type JiraUpdateDateTimeFieldInput = {
|
|
|
29584
30423
|
id: Scalars['ID']['input'];
|
|
29585
30424
|
operation: JiraDateTimeFieldOperationInput;
|
|
29586
30425
|
};
|
|
29587
|
-
export type JiraUpdateEmailMimeTypeInput = {
|
|
29588
|
-
emailMimeType: JiraEmailMimeType;
|
|
29589
|
-
};
|
|
29590
|
-
export type JiraUpdateEmailMimeTypePayload = Payload & {
|
|
29591
|
-
__typename?: 'JiraUpdateEmailMimeTypePayload';
|
|
29592
|
-
errors?: Maybe<Array<MutationError>>;
|
|
29593
|
-
options?: Maybe<JiraNotificationOptions>;
|
|
29594
|
-
success: Scalars['Boolean']['output'];
|
|
29595
|
-
};
|
|
29596
30426
|
export type JiraUpdateGlobalNotificationPreferencesInput = {
|
|
29597
30427
|
preferences: Array<JiraNotificationPreferenceInput>;
|
|
29598
30428
|
};
|
|
@@ -31563,6 +32393,7 @@ export type Mutation = {
|
|
|
31563
32393
|
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
31564
32394
|
setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
31565
32395
|
setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
|
|
32396
|
+
setViewConfig?: Maybe<SetViewConfigOutput>;
|
|
31566
32397
|
shepherd?: Maybe<ShepherdMutation>;
|
|
31567
32398
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
31568
32399
|
startSprint?: Maybe<SprintResponse>;
|
|
@@ -31934,6 +32765,9 @@ export type MutationSetSwimlaneStrategyArgs = {
|
|
|
31934
32765
|
export type MutationSetUserSwimlaneStrategyArgs = {
|
|
31935
32766
|
input?: InputMaybe<SetSwimlaneStrategyInput>;
|
|
31936
32767
|
};
|
|
32768
|
+
export type MutationSetViewConfigArgs = {
|
|
32769
|
+
input?: InputMaybe<SetViewConfigInput>;
|
|
32770
|
+
};
|
|
31937
32771
|
export type MutationSplitIssueArgs = {
|
|
31938
32772
|
input?: InputMaybe<SplitIssueInput>;
|
|
31939
32773
|
};
|
|
@@ -32163,26 +32997,26 @@ export type NadelHydrationArgument = {
|
|
|
32163
32997
|
name: Scalars['String']['input'];
|
|
32164
32998
|
value: Scalars['String']['input'];
|
|
32165
32999
|
};
|
|
33000
|
+
export type NadelHydrationCondition = {
|
|
33001
|
+
result: NadelHydrationResultCondition;
|
|
33002
|
+
};
|
|
32166
33003
|
export type NadelHydrationFromArgument = {
|
|
32167
33004
|
name: Scalars['String']['input'];
|
|
32168
33005
|
valueFromArg?: InputMaybe<Scalars['String']['input']>;
|
|
32169
33006
|
valueFromField?: InputMaybe<Scalars['String']['input']>;
|
|
32170
33007
|
};
|
|
32171
|
-
export
|
|
32172
|
-
|
|
32173
|
-
|
|
32174
|
-
export type NadelWhenCondition = {
|
|
32175
|
-
result: NadelWhenConditionResult;
|
|
33008
|
+
export type NadelHydrationResultCondition = {
|
|
33009
|
+
predicate: NadelHydrationResultFieldPredicate;
|
|
33010
|
+
sourceField: Scalars['String']['input'];
|
|
32176
33011
|
};
|
|
32177
|
-
export type
|
|
33012
|
+
export type NadelHydrationResultFieldPredicate = {
|
|
32178
33013
|
equals?: InputMaybe<Scalars['JSON']['input']>;
|
|
32179
33014
|
matches?: InputMaybe<Scalars['String']['input']>;
|
|
32180
33015
|
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
32181
33016
|
};
|
|
32182
|
-
export
|
|
32183
|
-
|
|
32184
|
-
|
|
32185
|
-
};
|
|
33017
|
+
export declare enum NadelHydrationTemplate {
|
|
33018
|
+
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
33019
|
+
}
|
|
32186
33020
|
export type NewCard = {
|
|
32187
33021
|
assigneeId?: InputMaybe<Scalars['ID']['input']>;
|
|
32188
33022
|
fixVersions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -36394,6 +37228,18 @@ export type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
36394
37228
|
strategy: SwimlaneStrategy;
|
|
36395
37229
|
success: Scalars['Boolean']['output'];
|
|
36396
37230
|
};
|
|
37231
|
+
export type SetViewConfigInput = {
|
|
37232
|
+
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
37233
|
+
id: Scalars['ID']['input'];
|
|
37234
|
+
};
|
|
37235
|
+
export type SetViewConfigOutput = MutationResponse & {
|
|
37236
|
+
__typename?: 'SetViewConfigOutput';
|
|
37237
|
+
clientMutationId?: Maybe<Scalars['ID']['output']>;
|
|
37238
|
+
message: Scalars['String']['output'];
|
|
37239
|
+
modifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37240
|
+
statusCode: Scalars['Int']['output'];
|
|
37241
|
+
success: Scalars['Boolean']['output'];
|
|
37242
|
+
};
|
|
36397
37243
|
export declare enum ShepherdActionType {
|
|
36398
37244
|
Activate = "ACTIVATE",
|
|
36399
37245
|
Crawl = "CRAWL",
|
|
@@ -36426,6 +37272,7 @@ export type ShepherdActivityHighlight = {
|
|
|
36426
37272
|
__typename?: 'ShepherdActivityHighlight';
|
|
36427
37273
|
action?: Maybe<ShepherdActionType>;
|
|
36428
37274
|
actor?: Maybe<ShepherdActor>;
|
|
37275
|
+
actorSessionInfo?: Maybe<Array<Maybe<ShepherdActorSessionInfo>>>;
|
|
36429
37276
|
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
36430
37277
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
36431
37278
|
subject?: Maybe<ShepherdSubject>;
|
|
@@ -36514,6 +37361,13 @@ export type ShepherdActorSession = {
|
|
|
36514
37361
|
loginTime: Scalars['DateTime']['output'];
|
|
36515
37362
|
sessionId: Scalars['String']['output'];
|
|
36516
37363
|
};
|
|
37364
|
+
export type ShepherdActorSessionInfo = {
|
|
37365
|
+
__typename?: 'ShepherdActorSessionInfo';
|
|
37366
|
+
authFactors: Array<ShepherdSessionAuthFactors>;
|
|
37367
|
+
ipAddress: Scalars['String']['output'];
|
|
37368
|
+
sessionId: Scalars['String']['output'];
|
|
37369
|
+
userAgent: Scalars['String']['output'];
|
|
37370
|
+
};
|
|
36517
37371
|
export type ShepherdAlert = Node & {
|
|
36518
37372
|
__typename?: 'ShepherdAlert';
|
|
36519
37373
|
assignee?: Maybe<ShepherdUser>;
|
|
@@ -36594,6 +37448,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
36594
37448
|
DataSecurityPolicyActivated = "DATA_SECURITY_POLICY_ACTIVATED",
|
|
36595
37449
|
DataSecurityPolicyDeactivated = "DATA_SECURITY_POLICY_DEACTIVATED",
|
|
36596
37450
|
DataSecurityPolicyDeleted = "DATA_SECURITY_POLICY_DELETED",
|
|
37451
|
+
DataSecurityPolicyUpdated = "DATA_SECURITY_POLICY_UPDATED",
|
|
36597
37452
|
Default = "DEFAULT",
|
|
36598
37453
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
36599
37454
|
DeletedDomain = "DELETED_DOMAIN",
|
|
@@ -36697,6 +37552,48 @@ export type ShepherdCurrentUser = {
|
|
|
36697
37552
|
isOrgAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
36698
37553
|
user?: Maybe<ShepherdUser>;
|
|
36699
37554
|
};
|
|
37555
|
+
export type ShepherdCustomContentScanningDetection = {
|
|
37556
|
+
__typename?: 'ShepherdCustomContentScanningDetection';
|
|
37557
|
+
rules: Array<Maybe<ShepherdCustomScanningRule>>;
|
|
37558
|
+
};
|
|
37559
|
+
export type ShepherdCustomDetection = {
|
|
37560
|
+
__typename?: 'ShepherdCustomDetection';
|
|
37561
|
+
description: Scalars['String']['output'];
|
|
37562
|
+
enabled: Scalars['Boolean']['output'];
|
|
37563
|
+
id: Scalars['ID']['output'];
|
|
37564
|
+
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
37565
|
+
title: Scalars['String']['output'];
|
|
37566
|
+
value: ShepherdCustomDetectionValueType;
|
|
37567
|
+
};
|
|
37568
|
+
export type ShepherdCustomDetectionMutationPayload = Payload & {
|
|
37569
|
+
__typename?: 'ShepherdCustomDetectionMutationPayload';
|
|
37570
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37571
|
+
node?: Maybe<ShepherdCustomDetection>;
|
|
37572
|
+
success: Scalars['Boolean']['output'];
|
|
37573
|
+
};
|
|
37574
|
+
export type ShepherdCustomDetectionValueType = ShepherdCustomContentScanningDetection;
|
|
37575
|
+
export declare enum ShepherdCustomScanningMatchType {
|
|
37576
|
+
String = "STRING",
|
|
37577
|
+
Word = "WORD"
|
|
37578
|
+
}
|
|
37579
|
+
export type ShepherdCustomScanningRule = ShepherdCustomScanningStringMatchRule;
|
|
37580
|
+
export type ShepherdCustomScanningRuleInput = {
|
|
37581
|
+
stringMatch?: InputMaybe<ShepherdCustomScanningStringMatchRuleInput>;
|
|
37582
|
+
};
|
|
37583
|
+
export type ShepherdCustomScanningStringMatchRule = {
|
|
37584
|
+
__typename?: 'ShepherdCustomScanningStringMatchRule';
|
|
37585
|
+
matchType: ShepherdCustomScanningMatchType;
|
|
37586
|
+
term: Scalars['String']['output'];
|
|
37587
|
+
};
|
|
37588
|
+
export type ShepherdCustomScanningStringMatchRuleInput = {
|
|
37589
|
+
matchType: ShepherdCustomScanningMatchType;
|
|
37590
|
+
term: Scalars['String']['input'];
|
|
37591
|
+
};
|
|
37592
|
+
export type ShepherdDeleteAlertPayload = Payload & {
|
|
37593
|
+
__typename?: 'ShepherdDeleteAlertPayload';
|
|
37594
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37595
|
+
success: Scalars['Boolean']['output'];
|
|
37596
|
+
};
|
|
36700
37597
|
export type ShepherdDescriptionTemplate = {
|
|
36701
37598
|
__typename?: 'ShepherdDescriptionTemplate';
|
|
36702
37599
|
extendedText?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -36805,6 +37702,7 @@ export type ShepherdMutation = {
|
|
|
36805
37702
|
actor?: Maybe<ShepherdActorMutations>;
|
|
36806
37703
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
36807
37704
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
37705
|
+
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
36808
37706
|
subscription?: Maybe<ShepherdSubscriptionMutations>;
|
|
36809
37707
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
36810
37708
|
updateAlerts?: Maybe<ShepherdUpdateAlertsPayload>;
|
|
@@ -36816,6 +37714,9 @@ export type ShepherdMutationCreateAlertArgs = {
|
|
|
36816
37714
|
export type ShepherdMutationCreateExampleAlertArgs = {
|
|
36817
37715
|
input: ShepherdCreateExampleAlertInput;
|
|
36818
37716
|
};
|
|
37717
|
+
export type ShepherdMutationDeleteAlertArgs = {
|
|
37718
|
+
id: Scalars['ID']['input'];
|
|
37719
|
+
};
|
|
36819
37720
|
export type ShepherdMutationUpdateAlertArgs = {
|
|
36820
37721
|
id: Scalars['ID']['input'];
|
|
36821
37722
|
input: ShepherdUpdateAlertInput;
|
|
@@ -36903,6 +37804,15 @@ export type ShepherdResourceActivity = {
|
|
|
36903
37804
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
36904
37805
|
time: Scalars['DateTime']['output'];
|
|
36905
37806
|
};
|
|
37807
|
+
export declare enum ShepherdSessionAuthFactors {
|
|
37808
|
+
Google = "GOOGLE",
|
|
37809
|
+
Microsoft = "MICROSOFT",
|
|
37810
|
+
Password = "PASSWORD",
|
|
37811
|
+
Saml = "SAML",
|
|
37812
|
+
Slack = "SLACK",
|
|
37813
|
+
Sms = "SMS",
|
|
37814
|
+
Totp = "TOTP"
|
|
37815
|
+
}
|
|
36906
37816
|
export type ShepherdSite = {
|
|
36907
37817
|
__typename?: 'ShepherdSite';
|
|
36908
37818
|
cloudId: Scalars['ID']['output'];
|
|
@@ -37082,6 +37992,7 @@ export type ShepherdWorkspace = {
|
|
|
37082
37992
|
cloudId: Scalars['ID']['output'];
|
|
37083
37993
|
cloudName?: Maybe<Scalars['String']['output']>;
|
|
37084
37994
|
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
37995
|
+
customDetections: Array<ShepherdCustomDetection>;
|
|
37085
37996
|
detections: Array<ShepherdDetection>;
|
|
37086
37997
|
id: Scalars['ID']['output'];
|
|
37087
37998
|
orgId: Scalars['ID']['output'];
|
|
@@ -37089,6 +38000,9 @@ export type ShepherdWorkspace = {
|
|
|
37089
38000
|
sites?: Maybe<Array<Maybe<ShepherdSite>>>;
|
|
37090
38001
|
vortexMode?: Maybe<ShepherdVortexModeStatus>;
|
|
37091
38002
|
};
|
|
38003
|
+
export type ShepherdWorkspaceCustomDetectionsArgs = {
|
|
38004
|
+
customDetectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
38005
|
+
};
|
|
37092
38006
|
export type ShepherdWorkspaceDetectionsArgs = {
|
|
37093
38007
|
detectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
37094
38008
|
settingId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -37097,6 +38011,12 @@ export type ShepherdWorkspaceConnection = {
|
|
|
37097
38011
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
37098
38012
|
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|
|
37099
38013
|
};
|
|
38014
|
+
export type ShepherdWorkspaceCreateCustomDetectionInput = {
|
|
38015
|
+
description: Scalars['String']['input'];
|
|
38016
|
+
products: Array<ShepherdAtlassianProduct>;
|
|
38017
|
+
rules: Array<ShepherdCustomScanningRuleInput>;
|
|
38018
|
+
title: Scalars['String']['input'];
|
|
38019
|
+
};
|
|
37100
38020
|
export type ShepherdWorkspaceEdge = {
|
|
37101
38021
|
__typename?: 'ShepherdWorkspaceEdge';
|
|
37102
38022
|
node?: Maybe<ShepherdWorkspace>;
|
|
@@ -37109,10 +38029,21 @@ export type ShepherdWorkspaceMutationPayload = Payload & {
|
|
|
37109
38029
|
};
|
|
37110
38030
|
export type ShepherdWorkspaceMutations = {
|
|
37111
38031
|
__typename?: 'ShepherdWorkspaceMutations';
|
|
38032
|
+
createCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
38033
|
+
deleteCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
37112
38034
|
onboard?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
37113
38035
|
update?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
38036
|
+
updateCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
37114
38037
|
updateDetectionSetting?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
37115
38038
|
};
|
|
38039
|
+
export type ShepherdWorkspaceMutationsCreateCustomDetectionArgs = {
|
|
38040
|
+
input: ShepherdWorkspaceCreateCustomDetectionInput;
|
|
38041
|
+
workspaceId: Scalars['ID']['input'];
|
|
38042
|
+
};
|
|
38043
|
+
export type ShepherdWorkspaceMutationsDeleteCustomDetectionArgs = {
|
|
38044
|
+
customDetectionId: Scalars['ID']['input'];
|
|
38045
|
+
workspaceId: Scalars['ID']['input'];
|
|
38046
|
+
};
|
|
37116
38047
|
export type ShepherdWorkspaceMutationsOnboardArgs = {
|
|
37117
38048
|
id: Scalars['ID']['input'];
|
|
37118
38049
|
};
|
|
@@ -37120,6 +38051,10 @@ export type ShepherdWorkspaceMutationsUpdateArgs = {
|
|
|
37120
38051
|
id: Scalars['ID']['input'];
|
|
37121
38052
|
input: ShepherdWorkspaceUpdateInput;
|
|
37122
38053
|
};
|
|
38054
|
+
export type ShepherdWorkspaceMutationsUpdateCustomDetectionArgs = {
|
|
38055
|
+
input: ShepherdWorkspaceUpdateCustomDetectionInput;
|
|
38056
|
+
workspaceId: Scalars['ID']['input'];
|
|
38057
|
+
};
|
|
37123
38058
|
export type ShepherdWorkspaceMutationsUpdateDetectionSettingArgs = {
|
|
37124
38059
|
id: Scalars['ID']['input'];
|
|
37125
38060
|
input: ShepherdWorkspaceSettingUpdateInput;
|
|
@@ -37134,6 +38069,14 @@ export type ShepherdWorkspaceSettingValueInput = {
|
|
|
37134
38069
|
enabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37135
38070
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
37136
38071
|
};
|
|
38072
|
+
export type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
38073
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
38074
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38075
|
+
id: Scalars['ID']['input'];
|
|
38076
|
+
products?: InputMaybe<Array<ShepherdAtlassianProduct>>;
|
|
38077
|
+
rules?: InputMaybe<Array<ShepherdCustomScanningRuleInput>>;
|
|
38078
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
38079
|
+
};
|
|
37137
38080
|
export type ShepherdWorkspaceUpdateInput = {
|
|
37138
38081
|
shouldOnboard: Scalars['Boolean']['input'];
|
|
37139
38082
|
};
|
|
@@ -40602,6 +41545,12 @@ export type UserInstallationRulesPayload = Payload & {
|
|
|
40602
41545
|
rule?: Maybe<UserInstallationRuleValue>;
|
|
40603
41546
|
success: Scalars['Boolean']['output'];
|
|
40604
41547
|
};
|
|
41548
|
+
export type ViewConfig = {
|
|
41549
|
+
__typename?: 'ViewConfig';
|
|
41550
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
41551
|
+
id: Scalars['ID']['output'];
|
|
41552
|
+
modifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
41553
|
+
};
|
|
40605
41554
|
export type VirtualAgentChannelConfig = {
|
|
40606
41555
|
__typename?: 'VirtualAgentChannelConfig';
|
|
40607
41556
|
jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;
|