@forge/cli-shared 3.22.1 → 3.23.0-next.1
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 +22 -0
- package/out/app-logs/view-logs.d.ts +1 -1
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +4 -6
- package/out/ari/ari.d.ts +1 -1
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +3 -3
- package/out/graphql/graphql-types.d.ts +1140 -197
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +349 -7
- package/package.json +3 -3
|
@@ -7554,7 +7554,7 @@ export declare enum CustomerServiceCustomDetailsEntityType {
|
|
|
7554
7554
|
Organization = "ORGANIZATION"
|
|
7555
7555
|
}
|
|
7556
7556
|
export type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
|
|
7557
|
-
export type CustomerServiceEntitlement = {
|
|
7557
|
+
export type CustomerServiceEntitlement = Node & {
|
|
7558
7558
|
__typename?: 'CustomerServiceEntitlement';
|
|
7559
7559
|
customDetails: Array<CustomerServiceCustomDetailValue>;
|
|
7560
7560
|
id: Scalars['ID']['output'];
|
|
@@ -7938,7 +7938,7 @@ export type CustomerServiceOrganizationUpdatePayload = Payload & {
|
|
|
7938
7938
|
success: Scalars['Boolean']['output'];
|
|
7939
7939
|
successfullyUpdatedOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
7940
7940
|
};
|
|
7941
|
-
export type CustomerServiceProduct = {
|
|
7941
|
+
export type CustomerServiceProduct = Node & {
|
|
7942
7942
|
__typename?: 'CustomerServiceProduct';
|
|
7943
7943
|
entitlementsCount?: Maybe<Scalars['Int']['output']>;
|
|
7944
7944
|
id: Scalars['ID']['output'];
|
|
@@ -7971,6 +7971,9 @@ export type CustomerServiceProductEdge = {
|
|
|
7971
7971
|
cursor: Scalars['String']['output'];
|
|
7972
7972
|
node?: Maybe<CustomerServiceProduct>;
|
|
7973
7973
|
};
|
|
7974
|
+
export type CustomerServiceProductFilterInput = {
|
|
7975
|
+
productNameBeginsWith?: InputMaybe<Scalars['String']['input']>;
|
|
7976
|
+
};
|
|
7974
7977
|
export type CustomerServiceProductQueryResult = CustomerServiceProductConnection | QueryError;
|
|
7975
7978
|
export type CustomerServiceProductUpdateInput = {
|
|
7976
7979
|
id: Scalars['ID']['input'];
|
|
@@ -8008,6 +8011,7 @@ export type CustomerServiceQueryApiOrganizationByOrganizationIdArgs = {
|
|
|
8008
8011
|
};
|
|
8009
8012
|
export type CustomerServiceQueryApiProductsArgs = {
|
|
8010
8013
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8014
|
+
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
8011
8015
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8012
8016
|
};
|
|
8013
8017
|
export type CustomerServiceStatusPayload = Payload & {
|
|
@@ -10789,7 +10793,6 @@ export type ForgeMetricsQuery = {
|
|
|
10789
10793
|
appMetrics: ForgeMetricsOtlpResult;
|
|
10790
10794
|
errors: ForgeMetricsErrorsResult;
|
|
10791
10795
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
10792
|
-
exportMetrics: ForgeMetricsOtlpResult;
|
|
10793
10796
|
invocations: ForgeMetricsInvocationsResult;
|
|
10794
10797
|
invocationsValue: ForgeMetricsInvocationsValueResult;
|
|
10795
10798
|
latencies: ForgeMetricsLatenciesResult;
|
|
@@ -10816,9 +10819,6 @@ export type ForgeMetricsQueryErrorsArgs = {
|
|
|
10816
10819
|
export type ForgeMetricsQueryErrorsValueArgs = {
|
|
10817
10820
|
query: ForgeMetricsQueryInput;
|
|
10818
10821
|
};
|
|
10819
|
-
export type ForgeMetricsQueryExportMetricsArgs = {
|
|
10820
|
-
query: ForgeMetricsOtlpQueryInput;
|
|
10821
|
-
};
|
|
10822
10822
|
export type ForgeMetricsQueryInvocationsArgs = {
|
|
10823
10823
|
query: ForgeMetricsQueryInput;
|
|
10824
10824
|
};
|
|
@@ -11036,6 +11036,8 @@ export declare enum GrantCheckProduct {
|
|
|
11036
11036
|
export type Graph = {
|
|
11037
11037
|
__typename?: 'Graph';
|
|
11038
11038
|
fetchAllRelationships?: Maybe<GraphSimpleRelationshipConnection>;
|
|
11039
|
+
incidentAssociatedPostIncidentReview?: Maybe<GraphJiraIssueConnection>;
|
|
11040
|
+
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphJiraIssueConnection>;
|
|
11039
11041
|
incidentAssociatedPostIncidentReviewLinkRelationship?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
11040
11042
|
incidentAssociatedPostIncidentReviewLinkRelationshipBatch?: Maybe<Array<Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>>>;
|
|
11041
11043
|
incidentAssociatedPostIncidentReviewLinkRelationshipInverse?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
@@ -11110,6 +11112,16 @@ export type GraphFetchAllRelationshipsArgs = {
|
|
|
11110
11112
|
updatedFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11111
11113
|
updatedTo?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11112
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
|
+
};
|
|
11113
11125
|
export type GraphIncidentAssociatedPostIncidentReviewLinkRelationshipArgs = {
|
|
11114
11126
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
11115
11127
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -13818,6 +13830,7 @@ export type GraphQueryMetadataSprintAssociatedVulnerabilityInputAnd = {
|
|
|
13818
13830
|
or?: InputMaybe<Array<GraphQueryMetadataSprintAssociatedVulnerabilityInputOrInner>>;
|
|
13819
13831
|
relationship_assigneeAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
13820
13832
|
relationship_statusAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
13833
|
+
relationship_statusCategory?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory>;
|
|
13821
13834
|
toAti?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti>;
|
|
13822
13835
|
to_severity?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity>;
|
|
13823
13836
|
to_status?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToStatus>;
|
|
@@ -13827,6 +13840,7 @@ export type GraphQueryMetadataSprintAssociatedVulnerabilityInputAndInner = {
|
|
|
13827
13840
|
lastUpdated?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputLastUpdated>;
|
|
13828
13841
|
relationship_assigneeAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
13829
13842
|
relationship_statusAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
13843
|
+
relationship_statusCategory?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory>;
|
|
13830
13844
|
toAti?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti>;
|
|
13831
13845
|
to_severity?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity>;
|
|
13832
13846
|
to_status?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToStatus>;
|
|
@@ -13869,6 +13883,7 @@ export type GraphQueryMetadataSprintAssociatedVulnerabilityInputOr = {
|
|
|
13869
13883
|
lastUpdated?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputLastUpdated>;
|
|
13870
13884
|
relationship_assigneeAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
13871
13885
|
relationship_statusAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
13886
|
+
relationship_statusCategory?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory>;
|
|
13872
13887
|
toAti?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti>;
|
|
13873
13888
|
to_severity?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity>;
|
|
13874
13889
|
to_status?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToStatus>;
|
|
@@ -13878,6 +13893,7 @@ export type GraphQueryMetadataSprintAssociatedVulnerabilityInputOrInner = {
|
|
|
13878
13893
|
lastUpdated?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputLastUpdated>;
|
|
13879
13894
|
relationship_assigneeAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
13880
13895
|
relationship_statusAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
13896
|
+
relationship_statusCategory?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory>;
|
|
13881
13897
|
toAti?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti>;
|
|
13882
13898
|
to_severity?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity>;
|
|
13883
13899
|
to_status?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToStatus>;
|
|
@@ -13894,6 +13910,21 @@ export type GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAriV
|
|
|
13894
13910
|
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
13895
13911
|
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
13896
13912
|
};
|
|
13913
|
+
export type GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory = {
|
|
13914
|
+
notValues?: InputMaybe<Array<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategoryEnum>>;
|
|
13915
|
+
sort?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategoryMetadataSortField>;
|
|
13916
|
+
values?: InputMaybe<Array<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategoryEnum>>;
|
|
13917
|
+
};
|
|
13918
|
+
export declare enum GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategoryEnum {
|
|
13919
|
+
Done = "DONE",
|
|
13920
|
+
Indeterminate = "INDETERMINATE",
|
|
13921
|
+
New = "NEW",
|
|
13922
|
+
Undefined = "UNDEFINED"
|
|
13923
|
+
}
|
|
13924
|
+
export type GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategoryMetadataSortField = {
|
|
13925
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
13926
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
13927
|
+
};
|
|
13897
13928
|
export type GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti = {
|
|
13898
13929
|
notValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13899
13930
|
sort?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAtiMetadataSortField>;
|
|
@@ -14087,10 +14118,14 @@ export type GraphStore = {
|
|
|
14087
14118
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
14088
14119
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
14089
14120
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
14121
|
+
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
14122
|
+
incidentAssociatedPostIncidentReviewInverseBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
14123
|
+
incidentAssociatedPostIncidentReviewInverseRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewConnection>;
|
|
14090
14124
|
incidentAssociatedPostIncidentReviewLinkBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
14091
14125
|
incidentAssociatedPostIncidentReviewLinkInverseBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
14092
14126
|
incidentAssociatedPostIncidentReviewLinkInverseRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
14093
14127
|
incidentAssociatedPostIncidentReviewLinkRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
14128
|
+
incidentAssociatedPostIncidentReviewRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewConnection>;
|
|
14094
14129
|
incidentHasActionItemBatch?: Maybe<GraphStoreBatchIncidentHasActionItemConnection>;
|
|
14095
14130
|
incidentHasActionItemInverseBatch?: Maybe<GraphStoreBatchIncidentHasActionItemConnection>;
|
|
14096
14131
|
incidentHasActionItemInverseRelationship?: Maybe<GraphStoreFullIncidentHasActionItemConnection>;
|
|
@@ -14228,10 +14263,13 @@ export type GraphStore = {
|
|
|
14228
14263
|
sprintAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullSprintAssociatedFeatureFlagConnection>;
|
|
14229
14264
|
sprintAssociatedPrInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedPrConnection>;
|
|
14230
14265
|
sprintAssociatedPrRelationship?: Maybe<GraphStoreFullSprintAssociatedPrConnection>;
|
|
14266
|
+
sprintAssociatedVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityConnection>;
|
|
14267
|
+
sprintAssociatedVulnerabilityRelationship?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityConnection>;
|
|
14231
14268
|
sprintContainsIssueInverseRelationship?: Maybe<GraphStoreFullSprintContainsIssueConnection>;
|
|
14232
14269
|
sprintContainsIssueRelationship?: Maybe<GraphStoreFullSprintContainsIssueConnection>;
|
|
14233
14270
|
sprintRetrospectivePageInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
14234
14271
|
sprintRetrospectivePageRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
14272
|
+
sprintRetrospectiveWhiteboard?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection>;
|
|
14235
14273
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
14236
14274
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
14237
14275
|
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
@@ -14337,6 +14375,21 @@ export type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
|
14337
14375
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14338
14376
|
id: Scalars['ID']['input'];
|
|
14339
14377
|
};
|
|
14378
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewBatchArgs = {
|
|
14379
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14380
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14381
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14382
|
+
};
|
|
14383
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewInverseBatchArgs = {
|
|
14384
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14385
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14386
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14387
|
+
};
|
|
14388
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewInverseRelationshipArgs = {
|
|
14389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14390
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14391
|
+
id: Scalars['ID']['input'];
|
|
14392
|
+
};
|
|
14340
14393
|
export type GraphStoreIncidentAssociatedPostIncidentReviewLinkBatchArgs = {
|
|
14341
14394
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14342
14395
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14357,6 +14410,11 @@ export type GraphStoreIncidentAssociatedPostIncidentReviewLinkRelationshipArgs =
|
|
|
14357
14410
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14358
14411
|
id: Scalars['ID']['input'];
|
|
14359
14412
|
};
|
|
14413
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewRelationshipArgs = {
|
|
14414
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14415
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14416
|
+
id: Scalars['ID']['input'];
|
|
14417
|
+
};
|
|
14360
14418
|
export type GraphStoreIncidentHasActionItemBatchArgs = {
|
|
14361
14419
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14362
14420
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15076,6 +15134,20 @@ export type GraphStoreSprintAssociatedPrRelationshipArgs = {
|
|
|
15076
15134
|
id: Scalars['ID']['input'];
|
|
15077
15135
|
sort?: InputMaybe<GraphStoreSprintAssociatedPrSortInput>;
|
|
15078
15136
|
};
|
|
15137
|
+
export type GraphStoreSprintAssociatedVulnerabilityInverseRelationshipArgs = {
|
|
15138
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15139
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityFilterInput>;
|
|
15140
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15141
|
+
id: Scalars['ID']['input'];
|
|
15142
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedVulnerabilitySortInput>;
|
|
15143
|
+
};
|
|
15144
|
+
export type GraphStoreSprintAssociatedVulnerabilityRelationshipArgs = {
|
|
15145
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15146
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityFilterInput>;
|
|
15147
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15148
|
+
id: Scalars['ID']['input'];
|
|
15149
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedVulnerabilitySortInput>;
|
|
15150
|
+
};
|
|
15079
15151
|
export type GraphStoreSprintContainsIssueInverseRelationshipArgs = {
|
|
15080
15152
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15081
15153
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15096,6 +15168,11 @@ export type GraphStoreSprintRetrospectivePageRelationshipArgs = {
|
|
|
15096
15168
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15097
15169
|
id: Scalars['ID']['input'];
|
|
15098
15170
|
};
|
|
15171
|
+
export type GraphStoreSprintRetrospectiveWhiteboardArgs = {
|
|
15172
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15173
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15174
|
+
id: Scalars['ID']['input'];
|
|
15175
|
+
};
|
|
15099
15176
|
export type GraphStoreSprintRetrospectiveWhiteboardInverseRelationshipArgs = {
|
|
15100
15177
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15101
15178
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15274,6 +15351,31 @@ export type GraphStoreAtiFilterInput = {
|
|
|
15274
15351
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15275
15352
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15276
15353
|
};
|
|
15354
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
15355
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
15356
|
+
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
15357
|
+
nodes: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewNode>>;
|
|
15358
|
+
pageInfo: PageInfo;
|
|
15359
|
+
};
|
|
15360
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge = {
|
|
15361
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge';
|
|
15362
|
+
node: GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerConnection;
|
|
15363
|
+
};
|
|
15364
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode = Node & {
|
|
15365
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode';
|
|
15366
|
+
id: Scalars['ID']['output'];
|
|
15367
|
+
};
|
|
15368
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerConnection = {
|
|
15369
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerConnection';
|
|
15370
|
+
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerEdge>>;
|
|
15371
|
+
nodes: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewNode>>;
|
|
15372
|
+
requestedId: Scalars['ID']['output'];
|
|
15373
|
+
};
|
|
15374
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerEdge = {
|
|
15375
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerEdge';
|
|
15376
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15377
|
+
node: GraphStoreBatchIncidentAssociatedPostIncidentReviewNode;
|
|
15378
|
+
};
|
|
15277
15379
|
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection = HasPageInfo & {
|
|
15278
15380
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection';
|
|
15279
15381
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEdge>>;
|
|
@@ -15311,6 +15413,18 @@ export type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode = N
|
|
|
15311
15413
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode';
|
|
15312
15414
|
id: Scalars['ID']['output'];
|
|
15313
15415
|
};
|
|
15416
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewNode = Node & {
|
|
15417
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewNode';
|
|
15418
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15419
|
+
from: GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode;
|
|
15420
|
+
id: Scalars['ID']['output'];
|
|
15421
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15422
|
+
to: GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode;
|
|
15423
|
+
};
|
|
15424
|
+
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode = Node & {
|
|
15425
|
+
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode';
|
|
15426
|
+
id: Scalars['ID']['output'];
|
|
15427
|
+
};
|
|
15314
15428
|
export type GraphStoreBatchIncidentHasActionItemConnection = HasPageInfo & {
|
|
15315
15429
|
__typename?: 'GraphStoreBatchIncidentHasActionItemConnection';
|
|
15316
15430
|
edges: Array<Maybe<GraphStoreBatchIncidentHasActionItemEdge>>;
|
|
@@ -16001,7 +16115,7 @@ export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEdge = {
|
|
|
16001
16115
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16002
16116
|
node: GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceNode;
|
|
16003
16117
|
};
|
|
16004
|
-
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode =
|
|
16118
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode = {
|
|
16005
16119
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode';
|
|
16006
16120
|
id: Scalars['ID']['output'];
|
|
16007
16121
|
};
|
|
@@ -16013,7 +16127,7 @@ export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceNode = Nod
|
|
|
16013
16127
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16014
16128
|
to: GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode;
|
|
16015
16129
|
};
|
|
16016
|
-
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode =
|
|
16130
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode = {
|
|
16017
16131
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode';
|
|
16018
16132
|
id: Scalars['ID']['output'];
|
|
16019
16133
|
};
|
|
@@ -16028,7 +16142,7 @@ export type GraphStoreFullAtlasProjectContributesToAtlasGoalEdge = {
|
|
|
16028
16142
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16029
16143
|
node: GraphStoreFullAtlasProjectContributesToAtlasGoalNode;
|
|
16030
16144
|
};
|
|
16031
|
-
export type GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode =
|
|
16145
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode = {
|
|
16032
16146
|
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode';
|
|
16033
16147
|
id: Scalars['ID']['output'];
|
|
16034
16148
|
};
|
|
@@ -16040,7 +16154,7 @@ export type GraphStoreFullAtlasProjectContributesToAtlasGoalNode = Node & {
|
|
|
16040
16154
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16041
16155
|
to: GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode;
|
|
16042
16156
|
};
|
|
16043
|
-
export type GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode =
|
|
16157
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode = {
|
|
16044
16158
|
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode';
|
|
16045
16159
|
id: Scalars['ID']['output'];
|
|
16046
16160
|
};
|
|
@@ -16055,7 +16169,7 @@ export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
16055
16169
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16056
16170
|
node: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode;
|
|
16057
16171
|
};
|
|
16058
|
-
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode =
|
|
16172
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode = {
|
|
16059
16173
|
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode';
|
|
16060
16174
|
id: Scalars['ID']['output'];
|
|
16061
16175
|
};
|
|
@@ -16067,7 +16181,7 @@ export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode = Node & {
|
|
|
16067
16181
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16068
16182
|
to: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode;
|
|
16069
16183
|
};
|
|
16070
|
-
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode =
|
|
16184
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode = {
|
|
16071
16185
|
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode';
|
|
16072
16186
|
id: Scalars['ID']['output'];
|
|
16073
16187
|
};
|
|
@@ -16082,7 +16196,7 @@ export type GraphStoreFullComponentAssociatedDocumentEdge = {
|
|
|
16082
16196
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16083
16197
|
node: GraphStoreFullComponentAssociatedDocumentNode;
|
|
16084
16198
|
};
|
|
16085
|
-
export type GraphStoreFullComponentAssociatedDocumentEndNode =
|
|
16199
|
+
export type GraphStoreFullComponentAssociatedDocumentEndNode = {
|
|
16086
16200
|
__typename?: 'GraphStoreFullComponentAssociatedDocumentEndNode';
|
|
16087
16201
|
id: Scalars['ID']['output'];
|
|
16088
16202
|
};
|
|
@@ -16094,7 +16208,7 @@ export type GraphStoreFullComponentAssociatedDocumentNode = Node & {
|
|
|
16094
16208
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16095
16209
|
to: GraphStoreFullComponentAssociatedDocumentEndNode;
|
|
16096
16210
|
};
|
|
16097
|
-
export type GraphStoreFullComponentAssociatedDocumentStartNode =
|
|
16211
|
+
export type GraphStoreFullComponentAssociatedDocumentStartNode = {
|
|
16098
16212
|
__typename?: 'GraphStoreFullComponentAssociatedDocumentStartNode';
|
|
16099
16213
|
id: Scalars['ID']['output'];
|
|
16100
16214
|
};
|
|
@@ -16109,7 +16223,7 @@ export type GraphStoreFullComponentImpactedByIncidentEdge = {
|
|
|
16109
16223
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16110
16224
|
node: GraphStoreFullComponentImpactedByIncidentNode;
|
|
16111
16225
|
};
|
|
16112
|
-
export type GraphStoreFullComponentImpactedByIncidentEndNode =
|
|
16226
|
+
export type GraphStoreFullComponentImpactedByIncidentEndNode = {
|
|
16113
16227
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentEndNode';
|
|
16114
16228
|
id: Scalars['ID']['output'];
|
|
16115
16229
|
};
|
|
@@ -16121,7 +16235,7 @@ export type GraphStoreFullComponentImpactedByIncidentNode = Node & {
|
|
|
16121
16235
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16122
16236
|
to: GraphStoreFullComponentImpactedByIncidentEndNode;
|
|
16123
16237
|
};
|
|
16124
|
-
export type GraphStoreFullComponentImpactedByIncidentStartNode =
|
|
16238
|
+
export type GraphStoreFullComponentImpactedByIncidentStartNode = {
|
|
16125
16239
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentStartNode';
|
|
16126
16240
|
id: Scalars['ID']['output'];
|
|
16127
16241
|
};
|
|
@@ -16138,7 +16252,7 @@ export type GraphStoreFullComponentLinkedJswIssueEdge = {
|
|
|
16138
16252
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16139
16253
|
node: GraphStoreFullComponentLinkedJswIssueNode;
|
|
16140
16254
|
};
|
|
16141
|
-
export type GraphStoreFullComponentLinkedJswIssueEndNode =
|
|
16255
|
+
export type GraphStoreFullComponentLinkedJswIssueEndNode = {
|
|
16142
16256
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueEndNode';
|
|
16143
16257
|
id: Scalars['ID']['output'];
|
|
16144
16258
|
};
|
|
@@ -16150,7 +16264,7 @@ export type GraphStoreFullComponentLinkedJswIssueNode = Node & {
|
|
|
16150
16264
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16151
16265
|
to: GraphStoreFullComponentLinkedJswIssueEndNode;
|
|
16152
16266
|
};
|
|
16153
|
-
export type GraphStoreFullComponentLinkedJswIssueStartNode =
|
|
16267
|
+
export type GraphStoreFullComponentLinkedJswIssueStartNode = {
|
|
16154
16268
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueStartNode';
|
|
16155
16269
|
id: Scalars['ID']['output'];
|
|
16156
16270
|
};
|
|
@@ -16165,7 +16279,7 @@ export type GraphStoreFullContentReferencedEntityEdge = {
|
|
|
16165
16279
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16166
16280
|
node: GraphStoreFullContentReferencedEntityNode;
|
|
16167
16281
|
};
|
|
16168
|
-
export type GraphStoreFullContentReferencedEntityEndNode =
|
|
16282
|
+
export type GraphStoreFullContentReferencedEntityEndNode = {
|
|
16169
16283
|
__typename?: 'GraphStoreFullContentReferencedEntityEndNode';
|
|
16170
16284
|
id: Scalars['ID']['output'];
|
|
16171
16285
|
};
|
|
@@ -16177,10 +16291,25 @@ export type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
|
16177
16291
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16178
16292
|
to: GraphStoreFullContentReferencedEntityEndNode;
|
|
16179
16293
|
};
|
|
16180
|
-
export type GraphStoreFullContentReferencedEntityStartNode =
|
|
16294
|
+
export type GraphStoreFullContentReferencedEntityStartNode = {
|
|
16181
16295
|
__typename?: 'GraphStoreFullContentReferencedEntityStartNode';
|
|
16182
16296
|
id: Scalars['ID']['output'];
|
|
16183
16297
|
};
|
|
16298
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
16299
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
16300
|
+
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
16301
|
+
nodes: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewNode>>;
|
|
16302
|
+
pageInfo: PageInfo;
|
|
16303
|
+
};
|
|
16304
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewEdge = {
|
|
16305
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewEdge';
|
|
16306
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16307
|
+
node: GraphStoreFullIncidentAssociatedPostIncidentReviewNode;
|
|
16308
|
+
};
|
|
16309
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewEndNode = {
|
|
16310
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewEndNode';
|
|
16311
|
+
id: Scalars['ID']['output'];
|
|
16312
|
+
};
|
|
16184
16313
|
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection = HasPageInfo & HasTotal & {
|
|
16185
16314
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection';
|
|
16186
16315
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEdge>>;
|
|
@@ -16194,7 +16323,7 @@ export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEdge = {
|
|
|
16194
16323
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16195
16324
|
node: GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode;
|
|
16196
16325
|
};
|
|
16197
|
-
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode =
|
|
16326
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode = {
|
|
16198
16327
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode';
|
|
16199
16328
|
id: Scalars['ID']['output'];
|
|
16200
16329
|
};
|
|
@@ -16206,10 +16335,22 @@ export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode = Node &
|
|
|
16206
16335
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16207
16336
|
to: GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode;
|
|
16208
16337
|
};
|
|
16209
|
-
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode =
|
|
16338
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode = {
|
|
16210
16339
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode';
|
|
16211
16340
|
id: Scalars['ID']['output'];
|
|
16212
16341
|
};
|
|
16342
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewNode = Node & {
|
|
16343
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewNode';
|
|
16344
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16345
|
+
from: GraphStoreFullIncidentAssociatedPostIncidentReviewStartNode;
|
|
16346
|
+
id: Scalars['ID']['output'];
|
|
16347
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16348
|
+
to: GraphStoreFullIncidentAssociatedPostIncidentReviewEndNode;
|
|
16349
|
+
};
|
|
16350
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewStartNode = {
|
|
16351
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewStartNode';
|
|
16352
|
+
id: Scalars['ID']['output'];
|
|
16353
|
+
};
|
|
16213
16354
|
export type GraphStoreFullIncidentHasActionItemConnection = HasPageInfo & HasTotal & {
|
|
16214
16355
|
__typename?: 'GraphStoreFullIncidentHasActionItemConnection';
|
|
16215
16356
|
edges: Array<Maybe<GraphStoreFullIncidentHasActionItemEdge>>;
|
|
@@ -16223,7 +16364,7 @@ export type GraphStoreFullIncidentHasActionItemEdge = {
|
|
|
16223
16364
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16224
16365
|
node: GraphStoreFullIncidentHasActionItemNode;
|
|
16225
16366
|
};
|
|
16226
|
-
export type GraphStoreFullIncidentHasActionItemEndNode =
|
|
16367
|
+
export type GraphStoreFullIncidentHasActionItemEndNode = {
|
|
16227
16368
|
__typename?: 'GraphStoreFullIncidentHasActionItemEndNode';
|
|
16228
16369
|
id: Scalars['ID']['output'];
|
|
16229
16370
|
};
|
|
@@ -16235,7 +16376,7 @@ export type GraphStoreFullIncidentHasActionItemNode = Node & {
|
|
|
16235
16376
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16236
16377
|
to: GraphStoreFullIncidentHasActionItemEndNode;
|
|
16237
16378
|
};
|
|
16238
|
-
export type GraphStoreFullIncidentHasActionItemStartNode =
|
|
16379
|
+
export type GraphStoreFullIncidentHasActionItemStartNode = {
|
|
16239
16380
|
__typename?: 'GraphStoreFullIncidentHasActionItemStartNode';
|
|
16240
16381
|
id: Scalars['ID']['output'];
|
|
16241
16382
|
};
|
|
@@ -16252,7 +16393,7 @@ export type GraphStoreFullIncidentLinkedJswIssueEdge = {
|
|
|
16252
16393
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16253
16394
|
node: GraphStoreFullIncidentLinkedJswIssueNode;
|
|
16254
16395
|
};
|
|
16255
|
-
export type GraphStoreFullIncidentLinkedJswIssueEndNode =
|
|
16396
|
+
export type GraphStoreFullIncidentLinkedJswIssueEndNode = {
|
|
16256
16397
|
__typename?: 'GraphStoreFullIncidentLinkedJswIssueEndNode';
|
|
16257
16398
|
id: Scalars['ID']['output'];
|
|
16258
16399
|
};
|
|
@@ -16264,7 +16405,7 @@ export type GraphStoreFullIncidentLinkedJswIssueNode = Node & {
|
|
|
16264
16405
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16265
16406
|
to: GraphStoreFullIncidentLinkedJswIssueEndNode;
|
|
16266
16407
|
};
|
|
16267
|
-
export type GraphStoreFullIncidentLinkedJswIssueStartNode =
|
|
16408
|
+
export type GraphStoreFullIncidentLinkedJswIssueStartNode = {
|
|
16268
16409
|
__typename?: 'GraphStoreFullIncidentLinkedJswIssueStartNode';
|
|
16269
16410
|
id: Scalars['ID']['output'];
|
|
16270
16411
|
};
|
|
@@ -16279,7 +16420,7 @@ export type GraphStoreFullIssueAssociatedBranchEdge = {
|
|
|
16279
16420
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16280
16421
|
node: GraphStoreFullIssueAssociatedBranchNode;
|
|
16281
16422
|
};
|
|
16282
|
-
export type GraphStoreFullIssueAssociatedBranchEndNode =
|
|
16423
|
+
export type GraphStoreFullIssueAssociatedBranchEndNode = {
|
|
16283
16424
|
__typename?: 'GraphStoreFullIssueAssociatedBranchEndNode';
|
|
16284
16425
|
id: Scalars['ID']['output'];
|
|
16285
16426
|
};
|
|
@@ -16291,12 +16432,21 @@ export type GraphStoreFullIssueAssociatedBranchNode = Node & {
|
|
|
16291
16432
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16292
16433
|
to: GraphStoreFullIssueAssociatedBranchEndNode;
|
|
16293
16434
|
};
|
|
16294
|
-
export type GraphStoreFullIssueAssociatedBranchStartNode =
|
|
16435
|
+
export type GraphStoreFullIssueAssociatedBranchStartNode = {
|
|
16295
16436
|
__typename?: 'GraphStoreFullIssueAssociatedBranchStartNode';
|
|
16296
16437
|
data?: Maybe<GraphStoreFullIssueAssociatedBranchStartUnion>;
|
|
16297
16438
|
id: Scalars['ID']['output'];
|
|
16298
16439
|
};
|
|
16299
16440
|
export type GraphStoreFullIssueAssociatedBranchStartUnion = JiraIssue;
|
|
16441
|
+
export declare enum GraphStoreFullIssueAssociatedBuildBuildStateOutput {
|
|
16442
|
+
Cancelled = "CANCELLED",
|
|
16443
|
+
Failed = "FAILED",
|
|
16444
|
+
InProgress = "IN_PROGRESS",
|
|
16445
|
+
NotSet = "NOT_SET",
|
|
16446
|
+
Pending = "PENDING",
|
|
16447
|
+
Successful = "SUCCESSFUL",
|
|
16448
|
+
Unknown = "UNKNOWN"
|
|
16449
|
+
}
|
|
16300
16450
|
export type GraphStoreFullIssueAssociatedBuildConnection = HasPageInfo & {
|
|
16301
16451
|
__typename?: 'GraphStoreFullIssueAssociatedBuildConnection';
|
|
16302
16452
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedBuildEdge>>;
|
|
@@ -16308,9 +16458,10 @@ export type GraphStoreFullIssueAssociatedBuildEdge = {
|
|
|
16308
16458
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16309
16459
|
node: GraphStoreFullIssueAssociatedBuildNode;
|
|
16310
16460
|
};
|
|
16311
|
-
export type GraphStoreFullIssueAssociatedBuildEndNode =
|
|
16461
|
+
export type GraphStoreFullIssueAssociatedBuildEndNode = {
|
|
16312
16462
|
__typename?: 'GraphStoreFullIssueAssociatedBuildEndNode';
|
|
16313
16463
|
id: Scalars['ID']['output'];
|
|
16464
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
16314
16465
|
};
|
|
16315
16466
|
export type GraphStoreFullIssueAssociatedBuildNode = Node & {
|
|
16316
16467
|
__typename?: 'GraphStoreFullIssueAssociatedBuildNode';
|
|
@@ -16320,12 +16471,24 @@ export type GraphStoreFullIssueAssociatedBuildNode = Node & {
|
|
|
16320
16471
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16321
16472
|
to: GraphStoreFullIssueAssociatedBuildEndNode;
|
|
16322
16473
|
};
|
|
16323
|
-
export type
|
|
16474
|
+
export type GraphStoreFullIssueAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
16475
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildRelationshipObjectMetadataOutput';
|
|
16476
|
+
state?: Maybe<GraphStoreFullIssueAssociatedBuildBuildStateOutput>;
|
|
16477
|
+
testInfo?: Maybe<GraphStoreFullIssueAssociatedBuildTestInfoOutput>;
|
|
16478
|
+
};
|
|
16479
|
+
export type GraphStoreFullIssueAssociatedBuildStartNode = {
|
|
16324
16480
|
__typename?: 'GraphStoreFullIssueAssociatedBuildStartNode';
|
|
16325
16481
|
data?: Maybe<GraphStoreFullIssueAssociatedBuildStartUnion>;
|
|
16326
16482
|
id: Scalars['ID']['output'];
|
|
16327
16483
|
};
|
|
16328
16484
|
export type GraphStoreFullIssueAssociatedBuildStartUnion = JiraIssue;
|
|
16485
|
+
export type GraphStoreFullIssueAssociatedBuildTestInfoOutput = {
|
|
16486
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildTestInfoOutput';
|
|
16487
|
+
numberFailed?: Maybe<Scalars['Long']['output']>;
|
|
16488
|
+
numberPassed?: Maybe<Scalars['Long']['output']>;
|
|
16489
|
+
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
16490
|
+
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
16491
|
+
};
|
|
16329
16492
|
export type GraphStoreFullIssueAssociatedCommitConnection = HasPageInfo & {
|
|
16330
16493
|
__typename?: 'GraphStoreFullIssueAssociatedCommitConnection';
|
|
16331
16494
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedCommitEdge>>;
|
|
@@ -16337,7 +16500,7 @@ export type GraphStoreFullIssueAssociatedCommitEdge = {
|
|
|
16337
16500
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16338
16501
|
node: GraphStoreFullIssueAssociatedCommitNode;
|
|
16339
16502
|
};
|
|
16340
|
-
export type GraphStoreFullIssueAssociatedCommitEndNode =
|
|
16503
|
+
export type GraphStoreFullIssueAssociatedCommitEndNode = {
|
|
16341
16504
|
__typename?: 'GraphStoreFullIssueAssociatedCommitEndNode';
|
|
16342
16505
|
id: Scalars['ID']['output'];
|
|
16343
16506
|
};
|
|
@@ -16349,29 +16512,52 @@ export type GraphStoreFullIssueAssociatedCommitNode = Node & {
|
|
|
16349
16512
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16350
16513
|
to: GraphStoreFullIssueAssociatedCommitEndNode;
|
|
16351
16514
|
};
|
|
16352
|
-
export type GraphStoreFullIssueAssociatedCommitStartNode =
|
|
16515
|
+
export type GraphStoreFullIssueAssociatedCommitStartNode = {
|
|
16353
16516
|
__typename?: 'GraphStoreFullIssueAssociatedCommitStartNode';
|
|
16354
16517
|
data?: Maybe<GraphStoreFullIssueAssociatedCommitStartUnion>;
|
|
16355
16518
|
id: Scalars['ID']['output'];
|
|
16356
16519
|
};
|
|
16357
16520
|
export type GraphStoreFullIssueAssociatedCommitStartUnion = JiraIssue;
|
|
16521
|
+
export type GraphStoreFullIssueAssociatedDeploymentAuthorOutput = {
|
|
16522
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentAuthorOutput';
|
|
16523
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
16524
|
+
};
|
|
16358
16525
|
export type GraphStoreFullIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
16359
16526
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentConnection';
|
|
16360
16527
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentEdge>>;
|
|
16361
16528
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentNode>>;
|
|
16362
16529
|
pageInfo: PageInfo;
|
|
16363
16530
|
};
|
|
16531
|
+
export declare enum GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput {
|
|
16532
|
+
Cancelled = "CANCELLED",
|
|
16533
|
+
Failed = "FAILED",
|
|
16534
|
+
InProgress = "IN_PROGRESS",
|
|
16535
|
+
NotSet = "NOT_SET",
|
|
16536
|
+
Pending = "PENDING",
|
|
16537
|
+
RolledBack = "ROLLED_BACK",
|
|
16538
|
+
Successful = "SUCCESSFUL",
|
|
16539
|
+
Unknown = "UNKNOWN"
|
|
16540
|
+
}
|
|
16364
16541
|
export type GraphStoreFullIssueAssociatedDeploymentEdge = {
|
|
16365
16542
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentEdge';
|
|
16366
16543
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16367
16544
|
node: GraphStoreFullIssueAssociatedDeploymentNode;
|
|
16368
16545
|
};
|
|
16369
|
-
export type GraphStoreFullIssueAssociatedDeploymentEndNode =
|
|
16546
|
+
export type GraphStoreFullIssueAssociatedDeploymentEndNode = {
|
|
16370
16547
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentEndNode';
|
|
16371
16548
|
data?: Maybe<GraphStoreFullIssueAssociatedDeploymentEndUnion>;
|
|
16372
16549
|
id: Scalars['ID']['output'];
|
|
16550
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
16373
16551
|
};
|
|
16374
16552
|
export type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
16553
|
+
export declare enum GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput {
|
|
16554
|
+
Development = "DEVELOPMENT",
|
|
16555
|
+
NotSet = "NOT_SET",
|
|
16556
|
+
Production = "PRODUCTION",
|
|
16557
|
+
Staging = "STAGING",
|
|
16558
|
+
Testing = "TESTING",
|
|
16559
|
+
Unmapped = "UNMAPPED"
|
|
16560
|
+
}
|
|
16375
16561
|
export type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
16376
16562
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentNode';
|
|
16377
16563
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16380,7 +16566,13 @@ export type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
|
16380
16566
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16381
16567
|
to: GraphStoreFullIssueAssociatedDeploymentEndNode;
|
|
16382
16568
|
};
|
|
16383
|
-
export type
|
|
16569
|
+
export type GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
16570
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
16571
|
+
author?: Maybe<GraphStoreFullIssueAssociatedDeploymentAuthorOutput>;
|
|
16572
|
+
environmentType?: Maybe<GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput>;
|
|
16573
|
+
state?: Maybe<GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput>;
|
|
16574
|
+
};
|
|
16575
|
+
export type GraphStoreFullIssueAssociatedDeploymentStartNode = {
|
|
16384
16576
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentStartNode';
|
|
16385
16577
|
data?: Maybe<GraphStoreFullIssueAssociatedDeploymentStartUnion>;
|
|
16386
16578
|
id: Scalars['ID']['output'];
|
|
@@ -16392,15 +16584,31 @@ export type GraphStoreFullIssueAssociatedDesignConnection = HasPageInfo & {
|
|
|
16392
16584
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedDesignNode>>;
|
|
16393
16585
|
pageInfo: PageInfo;
|
|
16394
16586
|
};
|
|
16587
|
+
export declare enum GraphStoreFullIssueAssociatedDesignDesignStatusOutput {
|
|
16588
|
+
None = "NONE",
|
|
16589
|
+
NotSet = "NOT_SET",
|
|
16590
|
+
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
16591
|
+
Unknown = "UNKNOWN"
|
|
16592
|
+
}
|
|
16593
|
+
export declare enum GraphStoreFullIssueAssociatedDesignDesignTypeOutput {
|
|
16594
|
+
Canvas = "CANVAS",
|
|
16595
|
+
File = "FILE",
|
|
16596
|
+
Group = "GROUP",
|
|
16597
|
+
Node = "NODE",
|
|
16598
|
+
NotSet = "NOT_SET",
|
|
16599
|
+
Other = "OTHER",
|
|
16600
|
+
Prototype = "PROTOTYPE"
|
|
16601
|
+
}
|
|
16395
16602
|
export type GraphStoreFullIssueAssociatedDesignEdge = {
|
|
16396
16603
|
__typename?: 'GraphStoreFullIssueAssociatedDesignEdge';
|
|
16397
16604
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16398
16605
|
node: GraphStoreFullIssueAssociatedDesignNode;
|
|
16399
16606
|
};
|
|
16400
|
-
export type GraphStoreFullIssueAssociatedDesignEndNode =
|
|
16607
|
+
export type GraphStoreFullIssueAssociatedDesignEndNode = {
|
|
16401
16608
|
__typename?: 'GraphStoreFullIssueAssociatedDesignEndNode';
|
|
16402
16609
|
data?: Maybe<GraphStoreFullIssueAssociatedDesignEndUnion>;
|
|
16403
16610
|
id: Scalars['ID']['output'];
|
|
16611
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedDesignRelationshipObjectMetadataOutput>;
|
|
16404
16612
|
};
|
|
16405
16613
|
export type GraphStoreFullIssueAssociatedDesignEndUnion = DevOpsDesign;
|
|
16406
16614
|
export type GraphStoreFullIssueAssociatedDesignNode = Node & {
|
|
@@ -16411,7 +16619,12 @@ export type GraphStoreFullIssueAssociatedDesignNode = Node & {
|
|
|
16411
16619
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16412
16620
|
to: GraphStoreFullIssueAssociatedDesignEndNode;
|
|
16413
16621
|
};
|
|
16414
|
-
export type
|
|
16622
|
+
export type GraphStoreFullIssueAssociatedDesignRelationshipObjectMetadataOutput = {
|
|
16623
|
+
__typename?: 'GraphStoreFullIssueAssociatedDesignRelationshipObjectMetadataOutput';
|
|
16624
|
+
status?: Maybe<GraphStoreFullIssueAssociatedDesignDesignStatusOutput>;
|
|
16625
|
+
type?: Maybe<GraphStoreFullIssueAssociatedDesignDesignTypeOutput>;
|
|
16626
|
+
};
|
|
16627
|
+
export type GraphStoreFullIssueAssociatedDesignStartNode = {
|
|
16415
16628
|
__typename?: 'GraphStoreFullIssueAssociatedDesignStartNode';
|
|
16416
16629
|
data?: Maybe<GraphStoreFullIssueAssociatedDesignStartUnion>;
|
|
16417
16630
|
id: Scalars['ID']['output'];
|
|
@@ -16428,7 +16641,7 @@ export type GraphStoreFullIssueAssociatedFeatureFlagEdge = {
|
|
|
16428
16641
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16429
16642
|
node: GraphStoreFullIssueAssociatedFeatureFlagNode;
|
|
16430
16643
|
};
|
|
16431
|
-
export type GraphStoreFullIssueAssociatedFeatureFlagEndNode =
|
|
16644
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagEndNode = {
|
|
16432
16645
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagEndNode';
|
|
16433
16646
|
id: Scalars['ID']['output'];
|
|
16434
16647
|
};
|
|
@@ -16440,12 +16653,16 @@ export type GraphStoreFullIssueAssociatedFeatureFlagNode = Node & {
|
|
|
16440
16653
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16441
16654
|
to: GraphStoreFullIssueAssociatedFeatureFlagEndNode;
|
|
16442
16655
|
};
|
|
16443
|
-
export type GraphStoreFullIssueAssociatedFeatureFlagStartNode =
|
|
16656
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagStartNode = {
|
|
16444
16657
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagStartNode';
|
|
16445
16658
|
data?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagStartUnion>;
|
|
16446
16659
|
id: Scalars['ID']['output'];
|
|
16447
16660
|
};
|
|
16448
16661
|
export type GraphStoreFullIssueAssociatedFeatureFlagStartUnion = JiraIssue;
|
|
16662
|
+
export type GraphStoreFullIssueAssociatedPrAuthorOutput = {
|
|
16663
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrAuthorOutput';
|
|
16664
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
16665
|
+
};
|
|
16449
16666
|
export type GraphStoreFullIssueAssociatedPrConnection = HasPageInfo & {
|
|
16450
16667
|
__typename?: 'GraphStoreFullIssueAssociatedPrConnection';
|
|
16451
16668
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedPrEdge>>;
|
|
@@ -16457,10 +16674,11 @@ export type GraphStoreFullIssueAssociatedPrEdge = {
|
|
|
16457
16674
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16458
16675
|
node: GraphStoreFullIssueAssociatedPrNode;
|
|
16459
16676
|
};
|
|
16460
|
-
export type GraphStoreFullIssueAssociatedPrEndNode =
|
|
16677
|
+
export type GraphStoreFullIssueAssociatedPrEndNode = {
|
|
16461
16678
|
__typename?: 'GraphStoreFullIssueAssociatedPrEndNode';
|
|
16462
16679
|
data?: Maybe<GraphStoreFullIssueAssociatedPrEndUnion>;
|
|
16463
16680
|
id: Scalars['ID']['output'];
|
|
16681
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput>;
|
|
16464
16682
|
};
|
|
16465
16683
|
export type GraphStoreFullIssueAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
16466
16684
|
export type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
@@ -16471,7 +16689,32 @@ export type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
|
16471
16689
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16472
16690
|
to: GraphStoreFullIssueAssociatedPrEndNode;
|
|
16473
16691
|
};
|
|
16474
|
-
export
|
|
16692
|
+
export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
16693
|
+
Declined = "DECLINED",
|
|
16694
|
+
Merged = "MERGED",
|
|
16695
|
+
NotSet = "NOT_SET",
|
|
16696
|
+
Open = "OPEN",
|
|
16697
|
+
Unknown = "UNKNOWN"
|
|
16698
|
+
}
|
|
16699
|
+
export type GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput = {
|
|
16700
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput';
|
|
16701
|
+
author?: Maybe<GraphStoreFullIssueAssociatedPrAuthorOutput>;
|
|
16702
|
+
reviewers?: Maybe<GraphStoreFullIssueAssociatedPrReviewerOutput>;
|
|
16703
|
+
status?: Maybe<GraphStoreFullIssueAssociatedPrPullRequestStatusOutput>;
|
|
16704
|
+
taskCount?: Maybe<Scalars['Int']['output']>;
|
|
16705
|
+
};
|
|
16706
|
+
export type GraphStoreFullIssueAssociatedPrReviewerOutput = {
|
|
16707
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrReviewerOutput';
|
|
16708
|
+
approvalStatus?: Maybe<GraphStoreFullIssueAssociatedPrReviewerReviewerStatusOutput>;
|
|
16709
|
+
reviewerAri?: Maybe<Scalars['String']['output']>;
|
|
16710
|
+
};
|
|
16711
|
+
export declare enum GraphStoreFullIssueAssociatedPrReviewerReviewerStatusOutput {
|
|
16712
|
+
Approved = "APPROVED",
|
|
16713
|
+
Needswork = "NEEDSWORK",
|
|
16714
|
+
NotSet = "NOT_SET",
|
|
16715
|
+
Unapproved = "UNAPPROVED"
|
|
16716
|
+
}
|
|
16717
|
+
export type GraphStoreFullIssueAssociatedPrStartNode = {
|
|
16475
16718
|
__typename?: 'GraphStoreFullIssueAssociatedPrStartNode';
|
|
16476
16719
|
data?: Maybe<GraphStoreFullIssueAssociatedPrStartUnion>;
|
|
16477
16720
|
id: Scalars['ID']['output'];
|
|
@@ -16488,7 +16731,7 @@ export type GraphStoreFullIssueAssociatedRemoteLinkEdge = {
|
|
|
16488
16731
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16489
16732
|
node: GraphStoreFullIssueAssociatedRemoteLinkNode;
|
|
16490
16733
|
};
|
|
16491
|
-
export type GraphStoreFullIssueAssociatedRemoteLinkEndNode =
|
|
16734
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkEndNode = {
|
|
16492
16735
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEndNode';
|
|
16493
16736
|
id: Scalars['ID']['output'];
|
|
16494
16737
|
};
|
|
@@ -16500,7 +16743,7 @@ export type GraphStoreFullIssueAssociatedRemoteLinkNode = Node & {
|
|
|
16500
16743
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16501
16744
|
to: GraphStoreFullIssueAssociatedRemoteLinkEndNode;
|
|
16502
16745
|
};
|
|
16503
|
-
export type GraphStoreFullIssueAssociatedRemoteLinkStartNode =
|
|
16746
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkStartNode = {
|
|
16504
16747
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkStartNode';
|
|
16505
16748
|
data?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkStartUnion>;
|
|
16506
16749
|
id: Scalars['ID']['output'];
|
|
@@ -16519,7 +16762,7 @@ export type GraphStoreFullIssueChangesComponentEdge = {
|
|
|
16519
16762
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16520
16763
|
node: GraphStoreFullIssueChangesComponentNode;
|
|
16521
16764
|
};
|
|
16522
|
-
export type GraphStoreFullIssueChangesComponentEndNode =
|
|
16765
|
+
export type GraphStoreFullIssueChangesComponentEndNode = {
|
|
16523
16766
|
__typename?: 'GraphStoreFullIssueChangesComponentEndNode';
|
|
16524
16767
|
id: Scalars['ID']['output'];
|
|
16525
16768
|
};
|
|
@@ -16531,7 +16774,7 @@ export type GraphStoreFullIssueChangesComponentNode = Node & {
|
|
|
16531
16774
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16532
16775
|
to: GraphStoreFullIssueChangesComponentEndNode;
|
|
16533
16776
|
};
|
|
16534
|
-
export type GraphStoreFullIssueChangesComponentStartNode =
|
|
16777
|
+
export type GraphStoreFullIssueChangesComponentStartNode = {
|
|
16535
16778
|
__typename?: 'GraphStoreFullIssueChangesComponentStartNode';
|
|
16536
16779
|
id: Scalars['ID']['output'];
|
|
16537
16780
|
};
|
|
@@ -16548,7 +16791,7 @@ export type GraphStoreFullIssueRecursiveAssociatedDeploymentEdge = {
|
|
|
16548
16791
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16549
16792
|
node: GraphStoreFullIssueRecursiveAssociatedDeploymentNode;
|
|
16550
16793
|
};
|
|
16551
|
-
export type GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode =
|
|
16794
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode = {
|
|
16552
16795
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode';
|
|
16553
16796
|
id: Scalars['ID']['output'];
|
|
16554
16797
|
};
|
|
@@ -16560,7 +16803,7 @@ export type GraphStoreFullIssueRecursiveAssociatedDeploymentNode = Node & {
|
|
|
16560
16803
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16561
16804
|
to: GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode;
|
|
16562
16805
|
};
|
|
16563
|
-
export type GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode =
|
|
16806
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode = {
|
|
16564
16807
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode';
|
|
16565
16808
|
id: Scalars['ID']['output'];
|
|
16566
16809
|
};
|
|
@@ -16577,7 +16820,7 @@ export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEdge = {
|
|
|
16577
16820
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16578
16821
|
node: GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode;
|
|
16579
16822
|
};
|
|
16580
|
-
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode =
|
|
16823
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode = {
|
|
16581
16824
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode';
|
|
16582
16825
|
id: Scalars['ID']['output'];
|
|
16583
16826
|
};
|
|
@@ -16589,7 +16832,7 @@ export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode = Node & {
|
|
|
16589
16832
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16590
16833
|
to: GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode;
|
|
16591
16834
|
};
|
|
16592
|
-
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode =
|
|
16835
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode = {
|
|
16593
16836
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode';
|
|
16594
16837
|
id: Scalars['ID']['output'];
|
|
16595
16838
|
};
|
|
@@ -16606,7 +16849,7 @@ export type GraphStoreFullIssueRecursiveAssociatedPrEdge = {
|
|
|
16606
16849
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16607
16850
|
node: GraphStoreFullIssueRecursiveAssociatedPrNode;
|
|
16608
16851
|
};
|
|
16609
|
-
export type GraphStoreFullIssueRecursiveAssociatedPrEndNode =
|
|
16852
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrEndNode = {
|
|
16610
16853
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrEndNode';
|
|
16611
16854
|
id: Scalars['ID']['output'];
|
|
16612
16855
|
};
|
|
@@ -16618,7 +16861,7 @@ export type GraphStoreFullIssueRecursiveAssociatedPrNode = Node & {
|
|
|
16618
16861
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16619
16862
|
to: GraphStoreFullIssueRecursiveAssociatedPrEndNode;
|
|
16620
16863
|
};
|
|
16621
|
-
export type GraphStoreFullIssueRecursiveAssociatedPrStartNode =
|
|
16864
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrStartNode = {
|
|
16622
16865
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrStartNode';
|
|
16623
16866
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrStartUnion>;
|
|
16624
16867
|
id: Scalars['ID']['output'];
|
|
@@ -16635,7 +16878,7 @@ export type GraphStoreFullJiraEpicContributesToAtlasGoalEdge = {
|
|
|
16635
16878
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16636
16879
|
node: GraphStoreFullJiraEpicContributesToAtlasGoalNode;
|
|
16637
16880
|
};
|
|
16638
|
-
export type GraphStoreFullJiraEpicContributesToAtlasGoalEndNode =
|
|
16881
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalEndNode = {
|
|
16639
16882
|
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalEndNode';
|
|
16640
16883
|
id: Scalars['ID']['output'];
|
|
16641
16884
|
};
|
|
@@ -16647,7 +16890,7 @@ export type GraphStoreFullJiraEpicContributesToAtlasGoalNode = Node & {
|
|
|
16647
16890
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16648
16891
|
to: GraphStoreFullJiraEpicContributesToAtlasGoalEndNode;
|
|
16649
16892
|
};
|
|
16650
|
-
export type GraphStoreFullJiraEpicContributesToAtlasGoalStartNode =
|
|
16893
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalStartNode = {
|
|
16651
16894
|
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalStartNode';
|
|
16652
16895
|
id: Scalars['ID']['output'];
|
|
16653
16896
|
};
|
|
@@ -16664,7 +16907,7 @@ export type GraphStoreFullJiraProjectAssociatedAtlasGoalEdge = {
|
|
|
16664
16907
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16665
16908
|
node: GraphStoreFullJiraProjectAssociatedAtlasGoalNode;
|
|
16666
16909
|
};
|
|
16667
|
-
export type GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode =
|
|
16910
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode = {
|
|
16668
16911
|
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode';
|
|
16669
16912
|
id: Scalars['ID']['output'];
|
|
16670
16913
|
};
|
|
@@ -16676,7 +16919,7 @@ export type GraphStoreFullJiraProjectAssociatedAtlasGoalNode = Node & {
|
|
|
16676
16919
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16677
16920
|
to: GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode;
|
|
16678
16921
|
};
|
|
16679
|
-
export type GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode =
|
|
16922
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode = {
|
|
16680
16923
|
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode';
|
|
16681
16924
|
id: Scalars['ID']['output'];
|
|
16682
16925
|
};
|
|
@@ -16693,7 +16936,7 @@ export type GraphStoreFullJsmProjectAssociatedServiceEdge = {
|
|
|
16693
16936
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16694
16937
|
node: GraphStoreFullJsmProjectAssociatedServiceNode;
|
|
16695
16938
|
};
|
|
16696
|
-
export type GraphStoreFullJsmProjectAssociatedServiceEndNode =
|
|
16939
|
+
export type GraphStoreFullJsmProjectAssociatedServiceEndNode = {
|
|
16697
16940
|
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceEndNode';
|
|
16698
16941
|
id: Scalars['ID']['output'];
|
|
16699
16942
|
};
|
|
@@ -16705,7 +16948,7 @@ export type GraphStoreFullJsmProjectAssociatedServiceNode = Node & {
|
|
|
16705
16948
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16706
16949
|
to: GraphStoreFullJsmProjectAssociatedServiceEndNode;
|
|
16707
16950
|
};
|
|
16708
|
-
export type GraphStoreFullJsmProjectAssociatedServiceStartNode =
|
|
16951
|
+
export type GraphStoreFullJsmProjectAssociatedServiceStartNode = {
|
|
16709
16952
|
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceStartNode';
|
|
16710
16953
|
id: Scalars['ID']['output'];
|
|
16711
16954
|
};
|
|
@@ -16722,7 +16965,7 @@ export type GraphStoreFullJswProjectAssociatedComponentEdge = {
|
|
|
16722
16965
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16723
16966
|
node: GraphStoreFullJswProjectAssociatedComponentNode;
|
|
16724
16967
|
};
|
|
16725
|
-
export type GraphStoreFullJswProjectAssociatedComponentEndNode =
|
|
16968
|
+
export type GraphStoreFullJswProjectAssociatedComponentEndNode = {
|
|
16726
16969
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentEndNode';
|
|
16727
16970
|
id: Scalars['ID']['output'];
|
|
16728
16971
|
};
|
|
@@ -16734,7 +16977,7 @@ export type GraphStoreFullJswProjectAssociatedComponentNode = Node & {
|
|
|
16734
16977
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16735
16978
|
to: GraphStoreFullJswProjectAssociatedComponentEndNode;
|
|
16736
16979
|
};
|
|
16737
|
-
export type GraphStoreFullJswProjectAssociatedComponentStartNode =
|
|
16980
|
+
export type GraphStoreFullJswProjectAssociatedComponentStartNode = {
|
|
16738
16981
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentStartNode';
|
|
16739
16982
|
id: Scalars['ID']['output'];
|
|
16740
16983
|
};
|
|
@@ -16751,10 +16994,26 @@ export type GraphStoreFullJswProjectAssociatedIncidentEdge = {
|
|
|
16751
16994
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16752
16995
|
node: GraphStoreFullJswProjectAssociatedIncidentNode;
|
|
16753
16996
|
};
|
|
16754
|
-
export type GraphStoreFullJswProjectAssociatedIncidentEndNode =
|
|
16997
|
+
export type GraphStoreFullJswProjectAssociatedIncidentEndNode = {
|
|
16755
16998
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentEndNode';
|
|
16756
16999
|
id: Scalars['ID']['output'];
|
|
17000
|
+
metadata?: Maybe<GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput>;
|
|
16757
17001
|
};
|
|
17002
|
+
export declare enum GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentPriorityOutput {
|
|
17003
|
+
NotSet = "NOT_SET",
|
|
17004
|
+
P1 = "P1",
|
|
17005
|
+
P2 = "P2",
|
|
17006
|
+
P3 = "P3",
|
|
17007
|
+
P4 = "P4",
|
|
17008
|
+
P5 = "P5"
|
|
17009
|
+
}
|
|
17010
|
+
export declare enum GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentStatusOutput {
|
|
17011
|
+
Done = "DONE",
|
|
17012
|
+
Indeterminate = "INDETERMINATE",
|
|
17013
|
+
New = "NEW",
|
|
17014
|
+
NotSet = "NOT_SET",
|
|
17015
|
+
Undefined = "UNDEFINED"
|
|
17016
|
+
}
|
|
16758
17017
|
export type GraphStoreFullJswProjectAssociatedIncidentNode = Node & {
|
|
16759
17018
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentNode';
|
|
16760
17019
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16763,7 +17022,15 @@ export type GraphStoreFullJswProjectAssociatedIncidentNode = Node & {
|
|
|
16763
17022
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16764
17023
|
to: GraphStoreFullJswProjectAssociatedIncidentEndNode;
|
|
16765
17024
|
};
|
|
16766
|
-
export type
|
|
17025
|
+
export type GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput = {
|
|
17026
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput';
|
|
17027
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17028
|
+
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
17029
|
+
priority?: Maybe<GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentPriorityOutput>;
|
|
17030
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17031
|
+
status?: Maybe<GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentStatusOutput>;
|
|
17032
|
+
};
|
|
17033
|
+
export type GraphStoreFullJswProjectAssociatedIncidentStartNode = {
|
|
16767
17034
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentStartNode';
|
|
16768
17035
|
id: Scalars['ID']['output'];
|
|
16769
17036
|
};
|
|
@@ -16780,7 +17047,7 @@ export type GraphStoreFullJswProjectSharesComponentWithJsmProjectEdge = {
|
|
|
16780
17047
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16781
17048
|
node: GraphStoreFullJswProjectSharesComponentWithJsmProjectNode;
|
|
16782
17049
|
};
|
|
16783
|
-
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode =
|
|
17050
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode = {
|
|
16784
17051
|
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode';
|
|
16785
17052
|
id: Scalars['ID']['output'];
|
|
16786
17053
|
};
|
|
@@ -16792,7 +17059,7 @@ export type GraphStoreFullJswProjectSharesComponentWithJsmProjectNode = Node & {
|
|
|
16792
17059
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16793
17060
|
to: GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode;
|
|
16794
17061
|
};
|
|
16795
|
-
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode =
|
|
17062
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode = {
|
|
16796
17063
|
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode';
|
|
16797
17064
|
id: Scalars['ID']['output'];
|
|
16798
17065
|
};
|
|
@@ -16809,7 +17076,7 @@ export type GraphStoreFullLinkedProjectHasVersionEdge = {
|
|
|
16809
17076
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16810
17077
|
node: GraphStoreFullLinkedProjectHasVersionNode;
|
|
16811
17078
|
};
|
|
16812
|
-
export type GraphStoreFullLinkedProjectHasVersionEndNode =
|
|
17079
|
+
export type GraphStoreFullLinkedProjectHasVersionEndNode = {
|
|
16813
17080
|
__typename?: 'GraphStoreFullLinkedProjectHasVersionEndNode';
|
|
16814
17081
|
id: Scalars['ID']['output'];
|
|
16815
17082
|
};
|
|
@@ -16821,7 +17088,7 @@ export type GraphStoreFullLinkedProjectHasVersionNode = Node & {
|
|
|
16821
17088
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16822
17089
|
to: GraphStoreFullLinkedProjectHasVersionEndNode;
|
|
16823
17090
|
};
|
|
16824
|
-
export type GraphStoreFullLinkedProjectHasVersionStartNode =
|
|
17091
|
+
export type GraphStoreFullLinkedProjectHasVersionStartNode = {
|
|
16825
17092
|
__typename?: 'GraphStoreFullLinkedProjectHasVersionStartNode';
|
|
16826
17093
|
id: Scalars['ID']['output'];
|
|
16827
17094
|
};
|
|
@@ -16836,7 +17103,7 @@ export type GraphStoreFullOperationsContainerImpactedByIncidentEdge = {
|
|
|
16836
17103
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16837
17104
|
node: GraphStoreFullOperationsContainerImpactedByIncidentNode;
|
|
16838
17105
|
};
|
|
16839
|
-
export type GraphStoreFullOperationsContainerImpactedByIncidentEndNode =
|
|
17106
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentEndNode = {
|
|
16840
17107
|
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentEndNode';
|
|
16841
17108
|
id: Scalars['ID']['output'];
|
|
16842
17109
|
};
|
|
@@ -16848,7 +17115,7 @@ export type GraphStoreFullOperationsContainerImpactedByIncidentNode = Node & {
|
|
|
16848
17115
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16849
17116
|
to: GraphStoreFullOperationsContainerImpactedByIncidentEndNode;
|
|
16850
17117
|
};
|
|
16851
|
-
export type GraphStoreFullOperationsContainerImpactedByIncidentStartNode =
|
|
17118
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentStartNode = {
|
|
16852
17119
|
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentStartNode';
|
|
16853
17120
|
id: Scalars['ID']['output'];
|
|
16854
17121
|
};
|
|
@@ -16863,7 +17130,7 @@ export type GraphStoreFullOperationsContainerImprovedByActionItemEdge = {
|
|
|
16863
17130
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16864
17131
|
node: GraphStoreFullOperationsContainerImprovedByActionItemNode;
|
|
16865
17132
|
};
|
|
16866
|
-
export type GraphStoreFullOperationsContainerImprovedByActionItemEndNode =
|
|
17133
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemEndNode = {
|
|
16867
17134
|
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemEndNode';
|
|
16868
17135
|
id: Scalars['ID']['output'];
|
|
16869
17136
|
};
|
|
@@ -16875,10 +17142,26 @@ export type GraphStoreFullOperationsContainerImprovedByActionItemNode = Node & {
|
|
|
16875
17142
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16876
17143
|
to: GraphStoreFullOperationsContainerImprovedByActionItemEndNode;
|
|
16877
17144
|
};
|
|
16878
|
-
export type GraphStoreFullOperationsContainerImprovedByActionItemStartNode =
|
|
17145
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemStartNode = {
|
|
16879
17146
|
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemStartNode';
|
|
16880
17147
|
id: Scalars['ID']['output'];
|
|
16881
17148
|
};
|
|
17149
|
+
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
17150
|
+
Archive = "ARCHIVE",
|
|
17151
|
+
Audio = "AUDIO",
|
|
17152
|
+
Code = "CODE",
|
|
17153
|
+
Document = "DOCUMENT",
|
|
17154
|
+
Folder = "FOLDER",
|
|
17155
|
+
Form = "FORM",
|
|
17156
|
+
Image = "IMAGE",
|
|
17157
|
+
NotSet = "NOT_SET",
|
|
17158
|
+
Other = "OTHER",
|
|
17159
|
+
Pdf = "PDF",
|
|
17160
|
+
Presentation = "PRESENTATION",
|
|
17161
|
+
Shortcut = "SHORTCUT",
|
|
17162
|
+
Spreadsheet = "SPREADSHEET",
|
|
17163
|
+
Video = "VIDEO"
|
|
17164
|
+
}
|
|
16882
17165
|
export type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
16883
17166
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
16884
17167
|
edges: Array<Maybe<GraphStoreFullParentDocumentHasChildDocumentEdge>>;
|
|
@@ -16890,9 +17173,10 @@ export type GraphStoreFullParentDocumentHasChildDocumentEdge = {
|
|
|
16890
17173
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16891
17174
|
node: GraphStoreFullParentDocumentHasChildDocumentNode;
|
|
16892
17175
|
};
|
|
16893
|
-
export type GraphStoreFullParentDocumentHasChildDocumentEndNode =
|
|
17176
|
+
export type GraphStoreFullParentDocumentHasChildDocumentEndNode = {
|
|
16894
17177
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentEndNode';
|
|
16895
17178
|
id: Scalars['ID']['output'];
|
|
17179
|
+
metadata?: Maybe<GraphStoreFullParentDocumentHasChildDocumentRelationshipObjectMetadataOutput>;
|
|
16896
17180
|
};
|
|
16897
17181
|
export type GraphStoreFullParentDocumentHasChildDocumentNode = Node & {
|
|
16898
17182
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentNode';
|
|
@@ -16902,9 +17186,20 @@ export type GraphStoreFullParentDocumentHasChildDocumentNode = Node & {
|
|
|
16902
17186
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16903
17187
|
to: GraphStoreFullParentDocumentHasChildDocumentEndNode;
|
|
16904
17188
|
};
|
|
16905
|
-
export type
|
|
17189
|
+
export type GraphStoreFullParentDocumentHasChildDocumentRelationshipObjectMetadataOutput = {
|
|
17190
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentRelationshipObjectMetadataOutput';
|
|
17191
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
17192
|
+
category?: Maybe<GraphStoreFullParentDocumentHasChildDocumentCategoryOutput>;
|
|
17193
|
+
};
|
|
17194
|
+
export type GraphStoreFullParentDocumentHasChildDocumentRelationshipSubjectMetadataOutput = {
|
|
17195
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentRelationshipSubjectMetadataOutput';
|
|
17196
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
17197
|
+
category?: Maybe<GraphStoreFullParentDocumentHasChildDocumentCategoryOutput>;
|
|
17198
|
+
};
|
|
17199
|
+
export type GraphStoreFullParentDocumentHasChildDocumentStartNode = {
|
|
16906
17200
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentStartNode';
|
|
16907
17201
|
id: Scalars['ID']['output'];
|
|
17202
|
+
metadata?: Maybe<GraphStoreFullParentDocumentHasChildDocumentRelationshipSubjectMetadataOutput>;
|
|
16908
17203
|
};
|
|
16909
17204
|
export type GraphStoreFullParentIssueHasChildIssueConnection = HasPageInfo & {
|
|
16910
17205
|
__typename?: 'GraphStoreFullParentIssueHasChildIssueConnection';
|
|
@@ -16917,7 +17212,7 @@ export type GraphStoreFullParentIssueHasChildIssueEdge = {
|
|
|
16917
17212
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16918
17213
|
node: GraphStoreFullParentIssueHasChildIssueNode;
|
|
16919
17214
|
};
|
|
16920
|
-
export type GraphStoreFullParentIssueHasChildIssueEndNode =
|
|
17215
|
+
export type GraphStoreFullParentIssueHasChildIssueEndNode = {
|
|
16921
17216
|
__typename?: 'GraphStoreFullParentIssueHasChildIssueEndNode';
|
|
16922
17217
|
data?: Maybe<GraphStoreFullParentIssueHasChildIssueEndUnion>;
|
|
16923
17218
|
id: Scalars['ID']['output'];
|
|
@@ -16931,7 +17226,7 @@ export type GraphStoreFullParentIssueHasChildIssueNode = Node & {
|
|
|
16931
17226
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16932
17227
|
to: GraphStoreFullParentIssueHasChildIssueEndNode;
|
|
16933
17228
|
};
|
|
16934
|
-
export type GraphStoreFullParentIssueHasChildIssueStartNode =
|
|
17229
|
+
export type GraphStoreFullParentIssueHasChildIssueStartNode = {
|
|
16935
17230
|
__typename?: 'GraphStoreFullParentIssueHasChildIssueStartNode';
|
|
16936
17231
|
data?: Maybe<GraphStoreFullParentIssueHasChildIssueStartUnion>;
|
|
16937
17232
|
id: Scalars['ID']['output'];
|
|
@@ -16948,9 +17243,10 @@ export type GraphStoreFullPrInRepoEdge = {
|
|
|
16948
17243
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16949
17244
|
node: GraphStoreFullPrInRepoNode;
|
|
16950
17245
|
};
|
|
16951
|
-
export type GraphStoreFullPrInRepoEndNode =
|
|
17246
|
+
export type GraphStoreFullPrInRepoEndNode = {
|
|
16952
17247
|
__typename?: 'GraphStoreFullPrInRepoEndNode';
|
|
16953
17248
|
id: Scalars['ID']['output'];
|
|
17249
|
+
metadata?: Maybe<GraphStoreFullPrInRepoRelationshipObjectMetadataOutput>;
|
|
16954
17250
|
};
|
|
16955
17251
|
export type GraphStoreFullPrInRepoNode = Node & {
|
|
16956
17252
|
__typename?: 'GraphStoreFullPrInRepoNode';
|
|
@@ -16960,7 +17256,11 @@ export type GraphStoreFullPrInRepoNode = Node & {
|
|
|
16960
17256
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16961
17257
|
to: GraphStoreFullPrInRepoEndNode;
|
|
16962
17258
|
};
|
|
16963
|
-
export type
|
|
17259
|
+
export type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
|
|
17260
|
+
__typename?: 'GraphStoreFullPrInRepoRelationshipObjectMetadataOutput';
|
|
17261
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
17262
|
+
};
|
|
17263
|
+
export type GraphStoreFullPrInRepoStartNode = {
|
|
16964
17264
|
__typename?: 'GraphStoreFullPrInRepoStartNode';
|
|
16965
17265
|
id: Scalars['ID']['output'];
|
|
16966
17266
|
};
|
|
@@ -16977,7 +17277,7 @@ export type GraphStoreFullProjectAssociatedBranchEdge = {
|
|
|
16977
17277
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16978
17278
|
node: GraphStoreFullProjectAssociatedBranchNode;
|
|
16979
17279
|
};
|
|
16980
|
-
export type GraphStoreFullProjectAssociatedBranchEndNode =
|
|
17280
|
+
export type GraphStoreFullProjectAssociatedBranchEndNode = {
|
|
16981
17281
|
__typename?: 'GraphStoreFullProjectAssociatedBranchEndNode';
|
|
16982
17282
|
id: Scalars['ID']['output'];
|
|
16983
17283
|
};
|
|
@@ -16989,10 +17289,19 @@ export type GraphStoreFullProjectAssociatedBranchNode = Node & {
|
|
|
16989
17289
|
lastUpdated: Scalars['DateTime']['output'];
|
|
16990
17290
|
to: GraphStoreFullProjectAssociatedBranchEndNode;
|
|
16991
17291
|
};
|
|
16992
|
-
export type GraphStoreFullProjectAssociatedBranchStartNode =
|
|
17292
|
+
export type GraphStoreFullProjectAssociatedBranchStartNode = {
|
|
16993
17293
|
__typename?: 'GraphStoreFullProjectAssociatedBranchStartNode';
|
|
16994
17294
|
id: Scalars['ID']['output'];
|
|
16995
17295
|
};
|
|
17296
|
+
export declare enum GraphStoreFullProjectAssociatedBuildBuildStateOutput {
|
|
17297
|
+
Cancelled = "CANCELLED",
|
|
17298
|
+
Failed = "FAILED",
|
|
17299
|
+
InProgress = "IN_PROGRESS",
|
|
17300
|
+
NotSet = "NOT_SET",
|
|
17301
|
+
Pending = "PENDING",
|
|
17302
|
+
Successful = "SUCCESSFUL",
|
|
17303
|
+
Unknown = "UNKNOWN"
|
|
17304
|
+
}
|
|
16996
17305
|
export type GraphStoreFullProjectAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
16997
17306
|
__typename?: 'GraphStoreFullProjectAssociatedBuildConnection';
|
|
16998
17307
|
edges: Array<Maybe<GraphStoreFullProjectAssociatedBuildEdge>>;
|
|
@@ -17006,9 +17315,10 @@ export type GraphStoreFullProjectAssociatedBuildEdge = {
|
|
|
17006
17315
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17007
17316
|
node: GraphStoreFullProjectAssociatedBuildNode;
|
|
17008
17317
|
};
|
|
17009
|
-
export type GraphStoreFullProjectAssociatedBuildEndNode =
|
|
17318
|
+
export type GraphStoreFullProjectAssociatedBuildEndNode = {
|
|
17010
17319
|
__typename?: 'GraphStoreFullProjectAssociatedBuildEndNode';
|
|
17011
17320
|
id: Scalars['ID']['output'];
|
|
17321
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
17012
17322
|
};
|
|
17013
17323
|
export type GraphStoreFullProjectAssociatedBuildNode = Node & {
|
|
17014
17324
|
__typename?: 'GraphStoreFullProjectAssociatedBuildNode';
|
|
@@ -17016,12 +17326,38 @@ export type GraphStoreFullProjectAssociatedBuildNode = Node & {
|
|
|
17016
17326
|
from: GraphStoreFullProjectAssociatedBuildStartNode;
|
|
17017
17327
|
id: Scalars['ID']['output'];
|
|
17018
17328
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17329
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedBuildRelationshipMetadataOutput>;
|
|
17019
17330
|
to: GraphStoreFullProjectAssociatedBuildEndNode;
|
|
17020
17331
|
};
|
|
17021
|
-
export type
|
|
17332
|
+
export type GraphStoreFullProjectAssociatedBuildRelationshipMetadataOutput = {
|
|
17333
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildRelationshipMetadataOutput';
|
|
17334
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17335
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
17336
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
17337
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
17338
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17339
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
17340
|
+
};
|
|
17341
|
+
export type GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
17342
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput';
|
|
17343
|
+
state?: Maybe<GraphStoreFullProjectAssociatedBuildBuildStateOutput>;
|
|
17344
|
+
testInfo?: Maybe<GraphStoreFullProjectAssociatedBuildTestInfoOutput>;
|
|
17345
|
+
};
|
|
17346
|
+
export type GraphStoreFullProjectAssociatedBuildStartNode = {
|
|
17022
17347
|
__typename?: 'GraphStoreFullProjectAssociatedBuildStartNode';
|
|
17023
17348
|
id: Scalars['ID']['output'];
|
|
17024
17349
|
};
|
|
17350
|
+
export type GraphStoreFullProjectAssociatedBuildTestInfoOutput = {
|
|
17351
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildTestInfoOutput';
|
|
17352
|
+
numberFailed?: Maybe<Scalars['Long']['output']>;
|
|
17353
|
+
numberPassed?: Maybe<Scalars['Long']['output']>;
|
|
17354
|
+
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
17355
|
+
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
17356
|
+
};
|
|
17357
|
+
export type GraphStoreFullProjectAssociatedDeploymentAuthorOutput = {
|
|
17358
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentAuthorOutput';
|
|
17359
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
17360
|
+
};
|
|
17025
17361
|
export type GraphStoreFullProjectAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
17026
17362
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentConnection';
|
|
17027
17363
|
edges: Array<Maybe<GraphStoreFullProjectAssociatedDeploymentEdge>>;
|
|
@@ -17030,26 +17366,63 @@ export type GraphStoreFullProjectAssociatedDeploymentConnection = HasPageInfo &
|
|
|
17030
17366
|
pageInfo: PageInfo;
|
|
17031
17367
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17032
17368
|
};
|
|
17369
|
+
export declare enum GraphStoreFullProjectAssociatedDeploymentDeploymentStateOutput {
|
|
17370
|
+
Cancelled = "CANCELLED",
|
|
17371
|
+
Failed = "FAILED",
|
|
17372
|
+
InProgress = "IN_PROGRESS",
|
|
17373
|
+
NotSet = "NOT_SET",
|
|
17374
|
+
Pending = "PENDING",
|
|
17375
|
+
RolledBack = "ROLLED_BACK",
|
|
17376
|
+
Successful = "SUCCESSFUL",
|
|
17377
|
+
Unknown = "UNKNOWN"
|
|
17378
|
+
}
|
|
17033
17379
|
export type GraphStoreFullProjectAssociatedDeploymentEdge = {
|
|
17034
17380
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentEdge';
|
|
17035
17381
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17036
17382
|
node: GraphStoreFullProjectAssociatedDeploymentNode;
|
|
17037
17383
|
};
|
|
17038
|
-
export type GraphStoreFullProjectAssociatedDeploymentEndNode =
|
|
17384
|
+
export type GraphStoreFullProjectAssociatedDeploymentEndNode = {
|
|
17039
17385
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentEndNode';
|
|
17040
17386
|
data?: Maybe<GraphStoreFullProjectAssociatedDeploymentEndUnion>;
|
|
17041
17387
|
id: Scalars['ID']['output'];
|
|
17388
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
17042
17389
|
};
|
|
17043
17390
|
export type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
17391
|
+
export declare enum GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput {
|
|
17392
|
+
Development = "DEVELOPMENT",
|
|
17393
|
+
NotSet = "NOT_SET",
|
|
17394
|
+
Production = "PRODUCTION",
|
|
17395
|
+
Staging = "STAGING",
|
|
17396
|
+
Testing = "TESTING",
|
|
17397
|
+
Unmapped = "UNMAPPED"
|
|
17398
|
+
}
|
|
17044
17399
|
export type GraphStoreFullProjectAssociatedDeploymentNode = Node & {
|
|
17045
17400
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentNode';
|
|
17046
17401
|
createdAt: Scalars['DateTime']['output'];
|
|
17047
17402
|
from: GraphStoreFullProjectAssociatedDeploymentStartNode;
|
|
17048
17403
|
id: Scalars['ID']['output'];
|
|
17049
17404
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17405
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedDeploymentRelationshipMetadataOutput>;
|
|
17050
17406
|
to: GraphStoreFullProjectAssociatedDeploymentEndNode;
|
|
17051
17407
|
};
|
|
17052
|
-
export type
|
|
17408
|
+
export type GraphStoreFullProjectAssociatedDeploymentRelationshipMetadataOutput = {
|
|
17409
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentRelationshipMetadataOutput';
|
|
17410
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17411
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
17412
|
+
fixVersionIds?: Maybe<Scalars['Long']['output']>;
|
|
17413
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
17414
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
17415
|
+
issueTypeAri?: Maybe<Scalars['String']['output']>;
|
|
17416
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17417
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
17418
|
+
};
|
|
17419
|
+
export type GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
17420
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
17421
|
+
author?: Maybe<GraphStoreFullProjectAssociatedDeploymentAuthorOutput>;
|
|
17422
|
+
environmentType?: Maybe<GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput>;
|
|
17423
|
+
state?: Maybe<GraphStoreFullProjectAssociatedDeploymentDeploymentStateOutput>;
|
|
17424
|
+
};
|
|
17425
|
+
export type GraphStoreFullProjectAssociatedDeploymentStartNode = {
|
|
17053
17426
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentStartNode';
|
|
17054
17427
|
id: Scalars['ID']['output'];
|
|
17055
17428
|
};
|
|
@@ -17066,7 +17439,7 @@ export type GraphStoreFullProjectAssociatedFeatureFlagEdge = {
|
|
|
17066
17439
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17067
17440
|
node: GraphStoreFullProjectAssociatedFeatureFlagNode;
|
|
17068
17441
|
};
|
|
17069
|
-
export type GraphStoreFullProjectAssociatedFeatureFlagEndNode =
|
|
17442
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagEndNode = {
|
|
17070
17443
|
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagEndNode';
|
|
17071
17444
|
id: Scalars['ID']['output'];
|
|
17072
17445
|
};
|
|
@@ -17078,7 +17451,7 @@ export type GraphStoreFullProjectAssociatedFeatureFlagNode = Node & {
|
|
|
17078
17451
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17079
17452
|
to: GraphStoreFullProjectAssociatedFeatureFlagEndNode;
|
|
17080
17453
|
};
|
|
17081
|
-
export type GraphStoreFullProjectAssociatedFeatureFlagStartNode =
|
|
17454
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagStartNode = {
|
|
17082
17455
|
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagStartNode';
|
|
17083
17456
|
id: Scalars['ID']['output'];
|
|
17084
17457
|
};
|
|
@@ -17095,7 +17468,7 @@ export type GraphStoreFullProjectAssociatedIncidentEdge = {
|
|
|
17095
17468
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17096
17469
|
node: GraphStoreFullProjectAssociatedIncidentNode;
|
|
17097
17470
|
};
|
|
17098
|
-
export type GraphStoreFullProjectAssociatedIncidentEndNode =
|
|
17471
|
+
export type GraphStoreFullProjectAssociatedIncidentEndNode = {
|
|
17099
17472
|
__typename?: 'GraphStoreFullProjectAssociatedIncidentEndNode';
|
|
17100
17473
|
id: Scalars['ID']['output'];
|
|
17101
17474
|
};
|
|
@@ -17107,7 +17480,7 @@ export type GraphStoreFullProjectAssociatedIncidentNode = Node & {
|
|
|
17107
17480
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17108
17481
|
to: GraphStoreFullProjectAssociatedIncidentEndNode;
|
|
17109
17482
|
};
|
|
17110
|
-
export type GraphStoreFullProjectAssociatedIncidentStartNode =
|
|
17483
|
+
export type GraphStoreFullProjectAssociatedIncidentStartNode = {
|
|
17111
17484
|
__typename?: 'GraphStoreFullProjectAssociatedIncidentStartNode';
|
|
17112
17485
|
id: Scalars['ID']['output'];
|
|
17113
17486
|
};
|
|
@@ -17124,7 +17497,7 @@ export type GraphStoreFullProjectAssociatedOpsgenieTeamEdge = {
|
|
|
17124
17497
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17125
17498
|
node: GraphStoreFullProjectAssociatedOpsgenieTeamNode;
|
|
17126
17499
|
};
|
|
17127
|
-
export type GraphStoreFullProjectAssociatedOpsgenieTeamEndNode =
|
|
17500
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamEndNode = {
|
|
17128
17501
|
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamEndNode';
|
|
17129
17502
|
id: Scalars['ID']['output'];
|
|
17130
17503
|
};
|
|
@@ -17136,10 +17509,14 @@ export type GraphStoreFullProjectAssociatedOpsgenieTeamNode = Node & {
|
|
|
17136
17509
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17137
17510
|
to: GraphStoreFullProjectAssociatedOpsgenieTeamEndNode;
|
|
17138
17511
|
};
|
|
17139
|
-
export type GraphStoreFullProjectAssociatedOpsgenieTeamStartNode =
|
|
17512
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamStartNode = {
|
|
17140
17513
|
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamStartNode';
|
|
17141
17514
|
id: Scalars['ID']['output'];
|
|
17142
17515
|
};
|
|
17516
|
+
export type GraphStoreFullProjectAssociatedPrAuthorOutput = {
|
|
17517
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrAuthorOutput';
|
|
17518
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
17519
|
+
};
|
|
17143
17520
|
export type GraphStoreFullProjectAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
17144
17521
|
__typename?: 'GraphStoreFullProjectAssociatedPrConnection';
|
|
17145
17522
|
edges: Array<Maybe<GraphStoreFullProjectAssociatedPrEdge>>;
|
|
@@ -17153,9 +17530,10 @@ export type GraphStoreFullProjectAssociatedPrEdge = {
|
|
|
17153
17530
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17154
17531
|
node: GraphStoreFullProjectAssociatedPrNode;
|
|
17155
17532
|
};
|
|
17156
|
-
export type GraphStoreFullProjectAssociatedPrEndNode =
|
|
17533
|
+
export type GraphStoreFullProjectAssociatedPrEndNode = {
|
|
17157
17534
|
__typename?: 'GraphStoreFullProjectAssociatedPrEndNode';
|
|
17158
17535
|
id: Scalars['ID']['output'];
|
|
17536
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedPrRelationshipObjectMetadataOutput>;
|
|
17159
17537
|
};
|
|
17160
17538
|
export type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
17161
17539
|
__typename?: 'GraphStoreFullProjectAssociatedPrNode';
|
|
@@ -17163,9 +17541,44 @@ export type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
|
17163
17541
|
from: GraphStoreFullProjectAssociatedPrStartNode;
|
|
17164
17542
|
id: Scalars['ID']['output'];
|
|
17165
17543
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17544
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput>;
|
|
17166
17545
|
to: GraphStoreFullProjectAssociatedPrEndNode;
|
|
17167
17546
|
};
|
|
17168
|
-
export
|
|
17547
|
+
export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
17548
|
+
Declined = "DECLINED",
|
|
17549
|
+
Merged = "MERGED",
|
|
17550
|
+
NotSet = "NOT_SET",
|
|
17551
|
+
Open = "OPEN",
|
|
17552
|
+
Unknown = "UNKNOWN"
|
|
17553
|
+
}
|
|
17554
|
+
export type GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput = {
|
|
17555
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput';
|
|
17556
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17557
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
17558
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
17559
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
17560
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17561
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
17562
|
+
};
|
|
17563
|
+
export type GraphStoreFullProjectAssociatedPrRelationshipObjectMetadataOutput = {
|
|
17564
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrRelationshipObjectMetadataOutput';
|
|
17565
|
+
author?: Maybe<GraphStoreFullProjectAssociatedPrAuthorOutput>;
|
|
17566
|
+
reviewers?: Maybe<GraphStoreFullProjectAssociatedPrReviewerOutput>;
|
|
17567
|
+
status?: Maybe<GraphStoreFullProjectAssociatedPrPullRequestStatusOutput>;
|
|
17568
|
+
taskCount?: Maybe<Scalars['Int']['output']>;
|
|
17569
|
+
};
|
|
17570
|
+
export type GraphStoreFullProjectAssociatedPrReviewerOutput = {
|
|
17571
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrReviewerOutput';
|
|
17572
|
+
approvalStatus?: Maybe<GraphStoreFullProjectAssociatedPrReviewerReviewerStatusOutput>;
|
|
17573
|
+
reviewerAri?: Maybe<Scalars['String']['output']>;
|
|
17574
|
+
};
|
|
17575
|
+
export declare enum GraphStoreFullProjectAssociatedPrReviewerReviewerStatusOutput {
|
|
17576
|
+
Approved = "APPROVED",
|
|
17577
|
+
Needswork = "NEEDSWORK",
|
|
17578
|
+
NotSet = "NOT_SET",
|
|
17579
|
+
Unapproved = "UNAPPROVED"
|
|
17580
|
+
}
|
|
17581
|
+
export type GraphStoreFullProjectAssociatedPrStartNode = {
|
|
17169
17582
|
__typename?: 'GraphStoreFullProjectAssociatedPrStartNode';
|
|
17170
17583
|
id: Scalars['ID']['output'];
|
|
17171
17584
|
};
|
|
@@ -17182,9 +17595,10 @@ export type GraphStoreFullProjectAssociatedRepoEdge = {
|
|
|
17182
17595
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17183
17596
|
node: GraphStoreFullProjectAssociatedRepoNode;
|
|
17184
17597
|
};
|
|
17185
|
-
export type GraphStoreFullProjectAssociatedRepoEndNode =
|
|
17598
|
+
export type GraphStoreFullProjectAssociatedRepoEndNode = {
|
|
17186
17599
|
__typename?: 'GraphStoreFullProjectAssociatedRepoEndNode';
|
|
17187
17600
|
id: Scalars['ID']['output'];
|
|
17601
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedRepoRelationshipObjectMetadataOutput>;
|
|
17188
17602
|
};
|
|
17189
17603
|
export type GraphStoreFullProjectAssociatedRepoNode = Node & {
|
|
17190
17604
|
__typename?: 'GraphStoreFullProjectAssociatedRepoNode';
|
|
@@ -17194,7 +17608,11 @@ export type GraphStoreFullProjectAssociatedRepoNode = Node & {
|
|
|
17194
17608
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17195
17609
|
to: GraphStoreFullProjectAssociatedRepoEndNode;
|
|
17196
17610
|
};
|
|
17197
|
-
export type
|
|
17611
|
+
export type GraphStoreFullProjectAssociatedRepoRelationshipObjectMetadataOutput = {
|
|
17612
|
+
__typename?: 'GraphStoreFullProjectAssociatedRepoRelationshipObjectMetadataOutput';
|
|
17613
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
17614
|
+
};
|
|
17615
|
+
export type GraphStoreFullProjectAssociatedRepoStartNode = {
|
|
17198
17616
|
__typename?: 'GraphStoreFullProjectAssociatedRepoStartNode';
|
|
17199
17617
|
id: Scalars['ID']['output'];
|
|
17200
17618
|
};
|
|
@@ -17211,7 +17629,7 @@ export type GraphStoreFullProjectAssociatedServiceEdge = {
|
|
|
17211
17629
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17212
17630
|
node: GraphStoreFullProjectAssociatedServiceNode;
|
|
17213
17631
|
};
|
|
17214
|
-
export type GraphStoreFullProjectAssociatedServiceEndNode =
|
|
17632
|
+
export type GraphStoreFullProjectAssociatedServiceEndNode = {
|
|
17215
17633
|
__typename?: 'GraphStoreFullProjectAssociatedServiceEndNode';
|
|
17216
17634
|
id: Scalars['ID']['output'];
|
|
17217
17635
|
};
|
|
@@ -17223,7 +17641,7 @@ export type GraphStoreFullProjectAssociatedServiceNode = Node & {
|
|
|
17223
17641
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17224
17642
|
to: GraphStoreFullProjectAssociatedServiceEndNode;
|
|
17225
17643
|
};
|
|
17226
|
-
export type GraphStoreFullProjectAssociatedServiceStartNode =
|
|
17644
|
+
export type GraphStoreFullProjectAssociatedServiceStartNode = {
|
|
17227
17645
|
__typename?: 'GraphStoreFullProjectAssociatedServiceStartNode';
|
|
17228
17646
|
id: Scalars['ID']['output'];
|
|
17229
17647
|
};
|
|
@@ -17240,7 +17658,7 @@ export type GraphStoreFullProjectAssociatedToIncidentEdge = {
|
|
|
17240
17658
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17241
17659
|
node: GraphStoreFullProjectAssociatedToIncidentNode;
|
|
17242
17660
|
};
|
|
17243
|
-
export type GraphStoreFullProjectAssociatedToIncidentEndNode =
|
|
17661
|
+
export type GraphStoreFullProjectAssociatedToIncidentEndNode = {
|
|
17244
17662
|
__typename?: 'GraphStoreFullProjectAssociatedToIncidentEndNode';
|
|
17245
17663
|
id: Scalars['ID']['output'];
|
|
17246
17664
|
};
|
|
@@ -17252,7 +17670,7 @@ export type GraphStoreFullProjectAssociatedToIncidentNode = Node & {
|
|
|
17252
17670
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17253
17671
|
to: GraphStoreFullProjectAssociatedToIncidentEndNode;
|
|
17254
17672
|
};
|
|
17255
|
-
export type GraphStoreFullProjectAssociatedToIncidentStartNode =
|
|
17673
|
+
export type GraphStoreFullProjectAssociatedToIncidentStartNode = {
|
|
17256
17674
|
__typename?: 'GraphStoreFullProjectAssociatedToIncidentStartNode';
|
|
17257
17675
|
id: Scalars['ID']['output'];
|
|
17258
17676
|
};
|
|
@@ -17269,7 +17687,7 @@ export type GraphStoreFullProjectAssociatedToOperationsContainerEdge = {
|
|
|
17269
17687
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17270
17688
|
node: GraphStoreFullProjectAssociatedToOperationsContainerNode;
|
|
17271
17689
|
};
|
|
17272
|
-
export type GraphStoreFullProjectAssociatedToOperationsContainerEndNode =
|
|
17690
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerEndNode = {
|
|
17273
17691
|
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerEndNode';
|
|
17274
17692
|
id: Scalars['ID']['output'];
|
|
17275
17693
|
};
|
|
@@ -17281,7 +17699,7 @@ export type GraphStoreFullProjectAssociatedToOperationsContainerNode = Node & {
|
|
|
17281
17699
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17282
17700
|
to: GraphStoreFullProjectAssociatedToOperationsContainerEndNode;
|
|
17283
17701
|
};
|
|
17284
|
-
export type GraphStoreFullProjectAssociatedToOperationsContainerStartNode =
|
|
17702
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerStartNode = {
|
|
17285
17703
|
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerStartNode';
|
|
17286
17704
|
id: Scalars['ID']['output'];
|
|
17287
17705
|
};
|
|
@@ -17298,7 +17716,7 @@ export type GraphStoreFullProjectAssociatedToSecurityContainerEdge = {
|
|
|
17298
17716
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17299
17717
|
node: GraphStoreFullProjectAssociatedToSecurityContainerNode;
|
|
17300
17718
|
};
|
|
17301
|
-
export type GraphStoreFullProjectAssociatedToSecurityContainerEndNode =
|
|
17719
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerEndNode = {
|
|
17302
17720
|
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerEndNode';
|
|
17303
17721
|
id: Scalars['ID']['output'];
|
|
17304
17722
|
};
|
|
@@ -17310,7 +17728,7 @@ export type GraphStoreFullProjectAssociatedToSecurityContainerNode = Node & {
|
|
|
17310
17728
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17311
17729
|
to: GraphStoreFullProjectAssociatedToSecurityContainerEndNode;
|
|
17312
17730
|
};
|
|
17313
|
-
export type GraphStoreFullProjectAssociatedToSecurityContainerStartNode =
|
|
17731
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerStartNode = {
|
|
17314
17732
|
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerStartNode';
|
|
17315
17733
|
id: Scalars['ID']['output'];
|
|
17316
17734
|
};
|
|
@@ -17322,14 +17740,19 @@ export type GraphStoreFullProjectAssociatedVulnerabilityConnection = HasPageInfo
|
|
|
17322
17740
|
pageInfo: PageInfo;
|
|
17323
17741
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17324
17742
|
};
|
|
17743
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityContainerOutput = {
|
|
17744
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityContainerOutput';
|
|
17745
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
17746
|
+
};
|
|
17325
17747
|
export type GraphStoreFullProjectAssociatedVulnerabilityEdge = {
|
|
17326
17748
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityEdge';
|
|
17327
17749
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17328
17750
|
node: GraphStoreFullProjectAssociatedVulnerabilityNode;
|
|
17329
17751
|
};
|
|
17330
|
-
export type GraphStoreFullProjectAssociatedVulnerabilityEndNode =
|
|
17752
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityEndNode = {
|
|
17331
17753
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityEndNode';
|
|
17332
17754
|
id: Scalars['ID']['output'];
|
|
17755
|
+
metadata?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityRelationshipObjectMetadataOutput>;
|
|
17333
17756
|
};
|
|
17334
17757
|
export type GraphStoreFullProjectAssociatedVulnerabilityNode = Node & {
|
|
17335
17758
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityNode';
|
|
@@ -17339,10 +17762,39 @@ export type GraphStoreFullProjectAssociatedVulnerabilityNode = Node & {
|
|
|
17339
17762
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17340
17763
|
to: GraphStoreFullProjectAssociatedVulnerabilityEndNode;
|
|
17341
17764
|
};
|
|
17342
|
-
export type
|
|
17765
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityRelationshipObjectMetadataOutput = {
|
|
17766
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityRelationshipObjectMetadataOutput';
|
|
17767
|
+
container?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityContainerOutput>;
|
|
17768
|
+
severity?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityVulnerabilitySeverityOutput>;
|
|
17769
|
+
status?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityVulnerabilityStatusOutput>;
|
|
17770
|
+
type?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityVulnerabilityTypeOutput>;
|
|
17771
|
+
};
|
|
17772
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityStartNode = {
|
|
17343
17773
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityStartNode';
|
|
17344
17774
|
id: Scalars['ID']['output'];
|
|
17345
17775
|
};
|
|
17776
|
+
export declare enum GraphStoreFullProjectAssociatedVulnerabilityVulnerabilitySeverityOutput {
|
|
17777
|
+
Critical = "CRITICAL",
|
|
17778
|
+
High = "HIGH",
|
|
17779
|
+
Low = "LOW",
|
|
17780
|
+
Medium = "MEDIUM",
|
|
17781
|
+
NotSet = "NOT_SET",
|
|
17782
|
+
Unknown = "UNKNOWN"
|
|
17783
|
+
}
|
|
17784
|
+
export declare enum GraphStoreFullProjectAssociatedVulnerabilityVulnerabilityStatusOutput {
|
|
17785
|
+
Closed = "CLOSED",
|
|
17786
|
+
Ignored = "IGNORED",
|
|
17787
|
+
NotSet = "NOT_SET",
|
|
17788
|
+
Open = "OPEN",
|
|
17789
|
+
Unknown = "UNKNOWN"
|
|
17790
|
+
}
|
|
17791
|
+
export declare enum GraphStoreFullProjectAssociatedVulnerabilityVulnerabilityTypeOutput {
|
|
17792
|
+
Dast = "DAST",
|
|
17793
|
+
NotSet = "NOT_SET",
|
|
17794
|
+
Sast = "SAST",
|
|
17795
|
+
Sca = "SCA",
|
|
17796
|
+
Unknown = "UNKNOWN"
|
|
17797
|
+
}
|
|
17346
17798
|
export type GraphStoreFullProjectDisassociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
17347
17799
|
__typename?: 'GraphStoreFullProjectDisassociatedRepoConnection';
|
|
17348
17800
|
edges: Array<Maybe<GraphStoreFullProjectDisassociatedRepoEdge>>;
|
|
@@ -17356,7 +17808,7 @@ export type GraphStoreFullProjectDisassociatedRepoEdge = {
|
|
|
17356
17808
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17357
17809
|
node: GraphStoreFullProjectDisassociatedRepoNode;
|
|
17358
17810
|
};
|
|
17359
|
-
export type GraphStoreFullProjectDisassociatedRepoEndNode =
|
|
17811
|
+
export type GraphStoreFullProjectDisassociatedRepoEndNode = {
|
|
17360
17812
|
__typename?: 'GraphStoreFullProjectDisassociatedRepoEndNode';
|
|
17361
17813
|
id: Scalars['ID']['output'];
|
|
17362
17814
|
};
|
|
@@ -17368,7 +17820,7 @@ export type GraphStoreFullProjectDisassociatedRepoNode = Node & {
|
|
|
17368
17820
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17369
17821
|
to: GraphStoreFullProjectDisassociatedRepoEndNode;
|
|
17370
17822
|
};
|
|
17371
|
-
export type GraphStoreFullProjectDisassociatedRepoStartNode =
|
|
17823
|
+
export type GraphStoreFullProjectDisassociatedRepoStartNode = {
|
|
17372
17824
|
__typename?: 'GraphStoreFullProjectDisassociatedRepoStartNode';
|
|
17373
17825
|
id: Scalars['ID']['output'];
|
|
17374
17826
|
};
|
|
@@ -17385,7 +17837,7 @@ export type GraphStoreFullProjectDocumentationEntityEdge = {
|
|
|
17385
17837
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17386
17838
|
node: GraphStoreFullProjectDocumentationEntityNode;
|
|
17387
17839
|
};
|
|
17388
|
-
export type GraphStoreFullProjectDocumentationEntityEndNode =
|
|
17840
|
+
export type GraphStoreFullProjectDocumentationEntityEndNode = {
|
|
17389
17841
|
__typename?: 'GraphStoreFullProjectDocumentationEntityEndNode';
|
|
17390
17842
|
id: Scalars['ID']['output'];
|
|
17391
17843
|
};
|
|
@@ -17397,7 +17849,7 @@ export type GraphStoreFullProjectDocumentationEntityNode = Node & {
|
|
|
17397
17849
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17398
17850
|
to: GraphStoreFullProjectDocumentationEntityEndNode;
|
|
17399
17851
|
};
|
|
17400
|
-
export type GraphStoreFullProjectDocumentationEntityStartNode =
|
|
17852
|
+
export type GraphStoreFullProjectDocumentationEntityStartNode = {
|
|
17401
17853
|
__typename?: 'GraphStoreFullProjectDocumentationEntityStartNode';
|
|
17402
17854
|
id: Scalars['ID']['output'];
|
|
17403
17855
|
};
|
|
@@ -17414,7 +17866,7 @@ export type GraphStoreFullProjectDocumentationPageEdge = {
|
|
|
17414
17866
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17415
17867
|
node: GraphStoreFullProjectDocumentationPageNode;
|
|
17416
17868
|
};
|
|
17417
|
-
export type GraphStoreFullProjectDocumentationPageEndNode =
|
|
17869
|
+
export type GraphStoreFullProjectDocumentationPageEndNode = {
|
|
17418
17870
|
__typename?: 'GraphStoreFullProjectDocumentationPageEndNode';
|
|
17419
17871
|
id: Scalars['ID']['output'];
|
|
17420
17872
|
};
|
|
@@ -17426,7 +17878,7 @@ export type GraphStoreFullProjectDocumentationPageNode = Node & {
|
|
|
17426
17878
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17427
17879
|
to: GraphStoreFullProjectDocumentationPageEndNode;
|
|
17428
17880
|
};
|
|
17429
|
-
export type GraphStoreFullProjectDocumentationPageStartNode =
|
|
17881
|
+
export type GraphStoreFullProjectDocumentationPageStartNode = {
|
|
17430
17882
|
__typename?: 'GraphStoreFullProjectDocumentationPageStartNode';
|
|
17431
17883
|
id: Scalars['ID']['output'];
|
|
17432
17884
|
};
|
|
@@ -17443,7 +17895,7 @@ export type GraphStoreFullProjectDocumentationSpaceEdge = {
|
|
|
17443
17895
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17444
17896
|
node: GraphStoreFullProjectDocumentationSpaceNode;
|
|
17445
17897
|
};
|
|
17446
|
-
export type GraphStoreFullProjectDocumentationSpaceEndNode =
|
|
17898
|
+
export type GraphStoreFullProjectDocumentationSpaceEndNode = {
|
|
17447
17899
|
__typename?: 'GraphStoreFullProjectDocumentationSpaceEndNode';
|
|
17448
17900
|
id: Scalars['ID']['output'];
|
|
17449
17901
|
};
|
|
@@ -17455,7 +17907,7 @@ export type GraphStoreFullProjectDocumentationSpaceNode = Node & {
|
|
|
17455
17907
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17456
17908
|
to: GraphStoreFullProjectDocumentationSpaceEndNode;
|
|
17457
17909
|
};
|
|
17458
|
-
export type GraphStoreFullProjectDocumentationSpaceStartNode =
|
|
17910
|
+
export type GraphStoreFullProjectDocumentationSpaceStartNode = {
|
|
17459
17911
|
__typename?: 'GraphStoreFullProjectDocumentationSpaceStartNode';
|
|
17460
17912
|
id: Scalars['ID']['output'];
|
|
17461
17913
|
};
|
|
@@ -17472,9 +17924,10 @@ export type GraphStoreFullProjectExplicitlyAssociatedRepoEdge = {
|
|
|
17472
17924
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17473
17925
|
node: GraphStoreFullProjectExplicitlyAssociatedRepoNode;
|
|
17474
17926
|
};
|
|
17475
|
-
export type GraphStoreFullProjectExplicitlyAssociatedRepoEndNode =
|
|
17927
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoEndNode = {
|
|
17476
17928
|
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoEndNode';
|
|
17477
17929
|
id: Scalars['ID']['output'];
|
|
17930
|
+
metadata?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoRelationshipObjectMetadataOutput>;
|
|
17478
17931
|
};
|
|
17479
17932
|
export type GraphStoreFullProjectExplicitlyAssociatedRepoNode = Node & {
|
|
17480
17933
|
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoNode';
|
|
@@ -17484,7 +17937,11 @@ export type GraphStoreFullProjectExplicitlyAssociatedRepoNode = Node & {
|
|
|
17484
17937
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17485
17938
|
to: GraphStoreFullProjectExplicitlyAssociatedRepoEndNode;
|
|
17486
17939
|
};
|
|
17487
|
-
export type
|
|
17940
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoRelationshipObjectMetadataOutput = {
|
|
17941
|
+
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoRelationshipObjectMetadataOutput';
|
|
17942
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
17943
|
+
};
|
|
17944
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoStartNode = {
|
|
17488
17945
|
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoStartNode';
|
|
17489
17946
|
id: Scalars['ID']['output'];
|
|
17490
17947
|
};
|
|
@@ -17499,9 +17956,10 @@ export type GraphStoreFullProjectHasIssueEdge = {
|
|
|
17499
17956
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17500
17957
|
node: GraphStoreFullProjectHasIssueNode;
|
|
17501
17958
|
};
|
|
17502
|
-
export type GraphStoreFullProjectHasIssueEndNode =
|
|
17959
|
+
export type GraphStoreFullProjectHasIssueEndNode = {
|
|
17503
17960
|
__typename?: 'GraphStoreFullProjectHasIssueEndNode';
|
|
17504
17961
|
id: Scalars['ID']['output'];
|
|
17962
|
+
metadata?: Maybe<GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput>;
|
|
17505
17963
|
};
|
|
17506
17964
|
export type GraphStoreFullProjectHasIssueNode = Node & {
|
|
17507
17965
|
__typename?: 'GraphStoreFullProjectHasIssueNode';
|
|
@@ -17509,9 +17967,24 @@ export type GraphStoreFullProjectHasIssueNode = Node & {
|
|
|
17509
17967
|
from: GraphStoreFullProjectHasIssueStartNode;
|
|
17510
17968
|
id: Scalars['ID']['output'];
|
|
17511
17969
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17970
|
+
metadata?: Maybe<GraphStoreFullProjectHasIssueRelationshipMetadataOutput>;
|
|
17512
17971
|
to: GraphStoreFullProjectHasIssueEndNode;
|
|
17513
17972
|
};
|
|
17514
|
-
export type
|
|
17973
|
+
export type GraphStoreFullProjectHasIssueRelationshipMetadataOutput = {
|
|
17974
|
+
__typename?: 'GraphStoreFullProjectHasIssueRelationshipMetadataOutput';
|
|
17975
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
17976
|
+
};
|
|
17977
|
+
export type GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput = {
|
|
17978
|
+
__typename?: 'GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput';
|
|
17979
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
17980
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
17981
|
+
fixVersionIds?: Maybe<Scalars['Long']['output']>;
|
|
17982
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
17983
|
+
issueTypeAri?: Maybe<Scalars['String']['output']>;
|
|
17984
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
17985
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
17986
|
+
};
|
|
17987
|
+
export type GraphStoreFullProjectHasIssueStartNode = {
|
|
17515
17988
|
__typename?: 'GraphStoreFullProjectHasIssueStartNode';
|
|
17516
17989
|
id: Scalars['ID']['output'];
|
|
17517
17990
|
};
|
|
@@ -17528,7 +18001,7 @@ export type GraphStoreFullProjectHasSharedVersionWithEdge = {
|
|
|
17528
18001
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17529
18002
|
node: GraphStoreFullProjectHasSharedVersionWithNode;
|
|
17530
18003
|
};
|
|
17531
|
-
export type GraphStoreFullProjectHasSharedVersionWithEndNode =
|
|
18004
|
+
export type GraphStoreFullProjectHasSharedVersionWithEndNode = {
|
|
17532
18005
|
__typename?: 'GraphStoreFullProjectHasSharedVersionWithEndNode';
|
|
17533
18006
|
id: Scalars['ID']['output'];
|
|
17534
18007
|
};
|
|
@@ -17540,7 +18013,7 @@ export type GraphStoreFullProjectHasSharedVersionWithNode = Node & {
|
|
|
17540
18013
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17541
18014
|
to: GraphStoreFullProjectHasSharedVersionWithEndNode;
|
|
17542
18015
|
};
|
|
17543
|
-
export type GraphStoreFullProjectHasSharedVersionWithStartNode =
|
|
18016
|
+
export type GraphStoreFullProjectHasSharedVersionWithStartNode = {
|
|
17544
18017
|
__typename?: 'GraphStoreFullProjectHasSharedVersionWithStartNode';
|
|
17545
18018
|
id: Scalars['ID']['output'];
|
|
17546
18019
|
};
|
|
@@ -17557,7 +18030,7 @@ export type GraphStoreFullProjectHasVersionEdge = {
|
|
|
17557
18030
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17558
18031
|
node: GraphStoreFullProjectHasVersionNode;
|
|
17559
18032
|
};
|
|
17560
|
-
export type GraphStoreFullProjectHasVersionEndNode =
|
|
18033
|
+
export type GraphStoreFullProjectHasVersionEndNode = {
|
|
17561
18034
|
__typename?: 'GraphStoreFullProjectHasVersionEndNode';
|
|
17562
18035
|
id: Scalars['ID']['output'];
|
|
17563
18036
|
};
|
|
@@ -17569,7 +18042,7 @@ export type GraphStoreFullProjectHasVersionNode = Node & {
|
|
|
17569
18042
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17570
18043
|
to: GraphStoreFullProjectHasVersionEndNode;
|
|
17571
18044
|
};
|
|
17572
|
-
export type GraphStoreFullProjectHasVersionStartNode =
|
|
18045
|
+
export type GraphStoreFullProjectHasVersionStartNode = {
|
|
17573
18046
|
__typename?: 'GraphStoreFullProjectHasVersionStartNode';
|
|
17574
18047
|
id: Scalars['ID']['output'];
|
|
17575
18048
|
};
|
|
@@ -17579,14 +18052,19 @@ export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection =
|
|
|
17579
18052
|
nodes: Array<Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode>>;
|
|
17580
18053
|
pageInfo: PageInfo;
|
|
17581
18054
|
};
|
|
18055
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityContainerOutput = {
|
|
18056
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityContainerOutput';
|
|
18057
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
18058
|
+
};
|
|
17582
18059
|
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEdge = {
|
|
17583
18060
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityEdge';
|
|
17584
18061
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17585
18062
|
node: GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode;
|
|
17586
18063
|
};
|
|
17587
|
-
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode =
|
|
18064
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode = {
|
|
17588
18065
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode';
|
|
17589
18066
|
id: Scalars['ID']['output'];
|
|
18067
|
+
metadata?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityRelationshipObjectMetadataOutput>;
|
|
17590
18068
|
};
|
|
17591
18069
|
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode = Node & {
|
|
17592
18070
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode';
|
|
@@ -17596,10 +18074,39 @@ export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode = Node
|
|
|
17596
18074
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17597
18075
|
to: GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode;
|
|
17598
18076
|
};
|
|
17599
|
-
export type
|
|
18077
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityRelationshipObjectMetadataOutput = {
|
|
18078
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityRelationshipObjectMetadataOutput';
|
|
18079
|
+
container?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityContainerOutput>;
|
|
18080
|
+
severity?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilitySeverityOutput>;
|
|
18081
|
+
status?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilityStatusOutput>;
|
|
18082
|
+
type?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilityTypeOutput>;
|
|
18083
|
+
};
|
|
18084
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode = {
|
|
17600
18085
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
17601
18086
|
id: Scalars['ID']['output'];
|
|
17602
18087
|
};
|
|
18088
|
+
export declare enum GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilitySeverityOutput {
|
|
18089
|
+
Critical = "CRITICAL",
|
|
18090
|
+
High = "HIGH",
|
|
18091
|
+
Low = "LOW",
|
|
18092
|
+
Medium = "MEDIUM",
|
|
18093
|
+
NotSet = "NOT_SET",
|
|
18094
|
+
Unknown = "UNKNOWN"
|
|
18095
|
+
}
|
|
18096
|
+
export declare enum GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilityStatusOutput {
|
|
18097
|
+
Closed = "CLOSED",
|
|
18098
|
+
Ignored = "IGNORED",
|
|
18099
|
+
NotSet = "NOT_SET",
|
|
18100
|
+
Open = "OPEN",
|
|
18101
|
+
Unknown = "UNKNOWN"
|
|
18102
|
+
}
|
|
18103
|
+
export declare enum GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilityTypeOutput {
|
|
18104
|
+
Dast = "DAST",
|
|
18105
|
+
NotSet = "NOT_SET",
|
|
18106
|
+
Sast = "SAST",
|
|
18107
|
+
Sca = "SCA",
|
|
18108
|
+
Unknown = "UNKNOWN"
|
|
18109
|
+
}
|
|
17603
18110
|
export type GraphStoreFullServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
17604
18111
|
__typename?: 'GraphStoreFullServiceLinkedIncidentConnection';
|
|
17605
18112
|
edges: Array<Maybe<GraphStoreFullServiceLinkedIncidentEdge>>;
|
|
@@ -17613,10 +18120,26 @@ export type GraphStoreFullServiceLinkedIncidentEdge = {
|
|
|
17613
18120
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17614
18121
|
node: GraphStoreFullServiceLinkedIncidentNode;
|
|
17615
18122
|
};
|
|
17616
|
-
export type GraphStoreFullServiceLinkedIncidentEndNode =
|
|
18123
|
+
export type GraphStoreFullServiceLinkedIncidentEndNode = {
|
|
17617
18124
|
__typename?: 'GraphStoreFullServiceLinkedIncidentEndNode';
|
|
17618
18125
|
id: Scalars['ID']['output'];
|
|
18126
|
+
metadata?: Maybe<GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput>;
|
|
17619
18127
|
};
|
|
18128
|
+
export declare enum GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentPriorityOutput {
|
|
18129
|
+
NotSet = "NOT_SET",
|
|
18130
|
+
P1 = "P1",
|
|
18131
|
+
P2 = "P2",
|
|
18132
|
+
P3 = "P3",
|
|
18133
|
+
P4 = "P4",
|
|
18134
|
+
P5 = "P5"
|
|
18135
|
+
}
|
|
18136
|
+
export declare enum GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentStatusOutput {
|
|
18137
|
+
Done = "DONE",
|
|
18138
|
+
Indeterminate = "INDETERMINATE",
|
|
18139
|
+
New = "NEW",
|
|
18140
|
+
NotSet = "NOT_SET",
|
|
18141
|
+
Undefined = "UNDEFINED"
|
|
18142
|
+
}
|
|
17620
18143
|
export type GraphStoreFullServiceLinkedIncidentNode = Node & {
|
|
17621
18144
|
__typename?: 'GraphStoreFullServiceLinkedIncidentNode';
|
|
17622
18145
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -17625,7 +18148,15 @@ export type GraphStoreFullServiceLinkedIncidentNode = Node & {
|
|
|
17625
18148
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17626
18149
|
to: GraphStoreFullServiceLinkedIncidentEndNode;
|
|
17627
18150
|
};
|
|
17628
|
-
export type
|
|
18151
|
+
export type GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput = {
|
|
18152
|
+
__typename?: 'GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput';
|
|
18153
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18154
|
+
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
18155
|
+
priority?: Maybe<GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentPriorityOutput>;
|
|
18156
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18157
|
+
status?: Maybe<GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentStatusOutput>;
|
|
18158
|
+
};
|
|
18159
|
+
export type GraphStoreFullServiceLinkedIncidentStartNode = {
|
|
17629
18160
|
__typename?: 'GraphStoreFullServiceLinkedIncidentStartNode';
|
|
17630
18161
|
id: Scalars['ID']['output'];
|
|
17631
18162
|
};
|
|
@@ -17642,7 +18173,7 @@ export type GraphStoreFullShipit57IssueLinksToPageEdge = {
|
|
|
17642
18173
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17643
18174
|
node: GraphStoreFullShipit57IssueLinksToPageNode;
|
|
17644
18175
|
};
|
|
17645
|
-
export type GraphStoreFullShipit57IssueLinksToPageEndNode =
|
|
18176
|
+
export type GraphStoreFullShipit57IssueLinksToPageEndNode = {
|
|
17646
18177
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageEndNode';
|
|
17647
18178
|
id: Scalars['ID']['output'];
|
|
17648
18179
|
};
|
|
@@ -17657,7 +18188,7 @@ export type GraphStoreFullShipit57IssueLinksToPageManualEdge = {
|
|
|
17657
18188
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17658
18189
|
node: GraphStoreFullShipit57IssueLinksToPageManualNode;
|
|
17659
18190
|
};
|
|
17660
|
-
export type GraphStoreFullShipit57IssueLinksToPageManualEndNode =
|
|
18191
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualEndNode = {
|
|
17661
18192
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualEndNode';
|
|
17662
18193
|
id: Scalars['ID']['output'];
|
|
17663
18194
|
};
|
|
@@ -17669,7 +18200,7 @@ export type GraphStoreFullShipit57IssueLinksToPageManualNode = Node & {
|
|
|
17669
18200
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17670
18201
|
to: GraphStoreFullShipit57IssueLinksToPageManualEndNode;
|
|
17671
18202
|
};
|
|
17672
|
-
export type GraphStoreFullShipit57IssueLinksToPageManualStartNode =
|
|
18203
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualStartNode = {
|
|
17673
18204
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualStartNode';
|
|
17674
18205
|
id: Scalars['ID']['output'];
|
|
17675
18206
|
};
|
|
@@ -17681,7 +18212,7 @@ export type GraphStoreFullShipit57IssueLinksToPageNode = Node & {
|
|
|
17681
18212
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17682
18213
|
to: GraphStoreFullShipit57IssueLinksToPageEndNode;
|
|
17683
18214
|
};
|
|
17684
|
-
export type GraphStoreFullShipit57IssueLinksToPageStartNode =
|
|
18215
|
+
export type GraphStoreFullShipit57IssueLinksToPageStartNode = {
|
|
17685
18216
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageStartNode';
|
|
17686
18217
|
id: Scalars['ID']['output'];
|
|
17687
18218
|
};
|
|
@@ -17698,7 +18229,7 @@ export type GraphStoreFullShipit57IssueRecursiveLinksToPageEdge = {
|
|
|
17698
18229
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17699
18230
|
node: GraphStoreFullShipit57IssueRecursiveLinksToPageNode;
|
|
17700
18231
|
};
|
|
17701
|
-
export type GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode =
|
|
18232
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode = {
|
|
17702
18233
|
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode';
|
|
17703
18234
|
id: Scalars['ID']['output'];
|
|
17704
18235
|
};
|
|
@@ -17710,7 +18241,7 @@ export type GraphStoreFullShipit57IssueRecursiveLinksToPageNode = Node & {
|
|
|
17710
18241
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17711
18242
|
to: GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode;
|
|
17712
18243
|
};
|
|
17713
|
-
export type GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode =
|
|
18244
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode = {
|
|
17714
18245
|
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode';
|
|
17715
18246
|
id: Scalars['ID']['output'];
|
|
17716
18247
|
};
|
|
@@ -17725,7 +18256,7 @@ export type GraphStoreFullShipit57PullRequestLinksToPageEdge = {
|
|
|
17725
18256
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17726
18257
|
node: GraphStoreFullShipit57PullRequestLinksToPageNode;
|
|
17727
18258
|
};
|
|
17728
|
-
export type GraphStoreFullShipit57PullRequestLinksToPageEndNode =
|
|
18259
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageEndNode = {
|
|
17729
18260
|
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageEndNode';
|
|
17730
18261
|
id: Scalars['ID']['output'];
|
|
17731
18262
|
};
|
|
@@ -17737,10 +18268,19 @@ export type GraphStoreFullShipit57PullRequestLinksToPageNode = Node & {
|
|
|
17737
18268
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17738
18269
|
to: GraphStoreFullShipit57PullRequestLinksToPageEndNode;
|
|
17739
18270
|
};
|
|
17740
|
-
export type GraphStoreFullShipit57PullRequestLinksToPageStartNode =
|
|
18271
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageStartNode = {
|
|
17741
18272
|
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageStartNode';
|
|
17742
18273
|
id: Scalars['ID']['output'];
|
|
17743
18274
|
};
|
|
18275
|
+
export declare enum GraphStoreFullSprintAssociatedBuildBuildStateOutput {
|
|
18276
|
+
Cancelled = "CANCELLED",
|
|
18277
|
+
Failed = "FAILED",
|
|
18278
|
+
InProgress = "IN_PROGRESS",
|
|
18279
|
+
NotSet = "NOT_SET",
|
|
18280
|
+
Pending = "PENDING",
|
|
18281
|
+
Successful = "SUCCESSFUL",
|
|
18282
|
+
Unknown = "UNKNOWN"
|
|
18283
|
+
}
|
|
17744
18284
|
export type GraphStoreFullSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
17745
18285
|
__typename?: 'GraphStoreFullSprintAssociatedBuildConnection';
|
|
17746
18286
|
edges: Array<Maybe<GraphStoreFullSprintAssociatedBuildEdge>>;
|
|
@@ -17754,9 +18294,10 @@ export type GraphStoreFullSprintAssociatedBuildEdge = {
|
|
|
17754
18294
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17755
18295
|
node: GraphStoreFullSprintAssociatedBuildNode;
|
|
17756
18296
|
};
|
|
17757
|
-
export type GraphStoreFullSprintAssociatedBuildEndNode =
|
|
18297
|
+
export type GraphStoreFullSprintAssociatedBuildEndNode = {
|
|
17758
18298
|
__typename?: 'GraphStoreFullSprintAssociatedBuildEndNode';
|
|
17759
18299
|
id: Scalars['ID']['output'];
|
|
18300
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
17760
18301
|
};
|
|
17761
18302
|
export type GraphStoreFullSprintAssociatedBuildNode = Node & {
|
|
17762
18303
|
__typename?: 'GraphStoreFullSprintAssociatedBuildNode';
|
|
@@ -17764,12 +18305,38 @@ export type GraphStoreFullSprintAssociatedBuildNode = Node & {
|
|
|
17764
18305
|
from: GraphStoreFullSprintAssociatedBuildStartNode;
|
|
17765
18306
|
id: Scalars['ID']['output'];
|
|
17766
18307
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18308
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput>;
|
|
17767
18309
|
to: GraphStoreFullSprintAssociatedBuildEndNode;
|
|
17768
18310
|
};
|
|
17769
|
-
export type
|
|
18311
|
+
export type GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput = {
|
|
18312
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput';
|
|
18313
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18314
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
18315
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
18316
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
18317
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18318
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18319
|
+
};
|
|
18320
|
+
export type GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
18321
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput';
|
|
18322
|
+
state?: Maybe<GraphStoreFullSprintAssociatedBuildBuildStateOutput>;
|
|
18323
|
+
testInfo?: Maybe<GraphStoreFullSprintAssociatedBuildTestInfoOutput>;
|
|
18324
|
+
};
|
|
18325
|
+
export type GraphStoreFullSprintAssociatedBuildStartNode = {
|
|
17770
18326
|
__typename?: 'GraphStoreFullSprintAssociatedBuildStartNode';
|
|
17771
18327
|
id: Scalars['ID']['output'];
|
|
17772
18328
|
};
|
|
18329
|
+
export type GraphStoreFullSprintAssociatedBuildTestInfoOutput = {
|
|
18330
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildTestInfoOutput';
|
|
18331
|
+
numberFailed?: Maybe<Scalars['Long']['output']>;
|
|
18332
|
+
numberPassed?: Maybe<Scalars['Long']['output']>;
|
|
18333
|
+
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
18334
|
+
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
18335
|
+
};
|
|
18336
|
+
export type GraphStoreFullSprintAssociatedDeploymentAuthorOutput = {
|
|
18337
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentAuthorOutput';
|
|
18338
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
18339
|
+
};
|
|
17773
18340
|
export type GraphStoreFullSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
17774
18341
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentConnection';
|
|
17775
18342
|
edges: Array<Maybe<GraphStoreFullSprintAssociatedDeploymentEdge>>;
|
|
@@ -17778,24 +18345,59 @@ export type GraphStoreFullSprintAssociatedDeploymentConnection = HasPageInfo & H
|
|
|
17778
18345
|
pageInfo: PageInfo;
|
|
17779
18346
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17780
18347
|
};
|
|
18348
|
+
export declare enum GraphStoreFullSprintAssociatedDeploymentDeploymentStateOutput {
|
|
18349
|
+
Cancelled = "CANCELLED",
|
|
18350
|
+
Failed = "FAILED",
|
|
18351
|
+
InProgress = "IN_PROGRESS",
|
|
18352
|
+
NotSet = "NOT_SET",
|
|
18353
|
+
Pending = "PENDING",
|
|
18354
|
+
RolledBack = "ROLLED_BACK",
|
|
18355
|
+
Successful = "SUCCESSFUL",
|
|
18356
|
+
Unknown = "UNKNOWN"
|
|
18357
|
+
}
|
|
17781
18358
|
export type GraphStoreFullSprintAssociatedDeploymentEdge = {
|
|
17782
18359
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentEdge';
|
|
17783
18360
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17784
18361
|
node: GraphStoreFullSprintAssociatedDeploymentNode;
|
|
17785
18362
|
};
|
|
17786
|
-
export type GraphStoreFullSprintAssociatedDeploymentEndNode =
|
|
18363
|
+
export type GraphStoreFullSprintAssociatedDeploymentEndNode = {
|
|
17787
18364
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentEndNode';
|
|
17788
18365
|
id: Scalars['ID']['output'];
|
|
18366
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
17789
18367
|
};
|
|
18368
|
+
export declare enum GraphStoreFullSprintAssociatedDeploymentEnvironmentTypeOutput {
|
|
18369
|
+
Development = "DEVELOPMENT",
|
|
18370
|
+
NotSet = "NOT_SET",
|
|
18371
|
+
Production = "PRODUCTION",
|
|
18372
|
+
Staging = "STAGING",
|
|
18373
|
+
Testing = "TESTING",
|
|
18374
|
+
Unmapped = "UNMAPPED"
|
|
18375
|
+
}
|
|
17790
18376
|
export type GraphStoreFullSprintAssociatedDeploymentNode = Node & {
|
|
17791
18377
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentNode';
|
|
17792
18378
|
createdAt: Scalars['DateTime']['output'];
|
|
17793
18379
|
from: GraphStoreFullSprintAssociatedDeploymentStartNode;
|
|
17794
18380
|
id: Scalars['ID']['output'];
|
|
17795
18381
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18382
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedDeploymentRelationshipMetadataOutput>;
|
|
17796
18383
|
to: GraphStoreFullSprintAssociatedDeploymentEndNode;
|
|
17797
18384
|
};
|
|
17798
|
-
export type
|
|
18385
|
+
export type GraphStoreFullSprintAssociatedDeploymentRelationshipMetadataOutput = {
|
|
18386
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentRelationshipMetadataOutput';
|
|
18387
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18388
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
18389
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
18390
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
18391
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18392
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18393
|
+
};
|
|
18394
|
+
export type GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
18395
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
18396
|
+
author?: Maybe<GraphStoreFullSprintAssociatedDeploymentAuthorOutput>;
|
|
18397
|
+
environmentType?: Maybe<GraphStoreFullSprintAssociatedDeploymentEnvironmentTypeOutput>;
|
|
18398
|
+
state?: Maybe<GraphStoreFullSprintAssociatedDeploymentDeploymentStateOutput>;
|
|
18399
|
+
};
|
|
18400
|
+
export type GraphStoreFullSprintAssociatedDeploymentStartNode = {
|
|
17799
18401
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentStartNode';
|
|
17800
18402
|
id: Scalars['ID']['output'];
|
|
17801
18403
|
};
|
|
@@ -17812,7 +18414,7 @@ export type GraphStoreFullSprintAssociatedFeatureFlagEdge = {
|
|
|
17812
18414
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17813
18415
|
node: GraphStoreFullSprintAssociatedFeatureFlagNode;
|
|
17814
18416
|
};
|
|
17815
|
-
export type GraphStoreFullSprintAssociatedFeatureFlagEndNode =
|
|
18417
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagEndNode = {
|
|
17816
18418
|
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagEndNode';
|
|
17817
18419
|
id: Scalars['ID']['output'];
|
|
17818
18420
|
};
|
|
@@ -17824,10 +18426,14 @@ export type GraphStoreFullSprintAssociatedFeatureFlagNode = Node & {
|
|
|
17824
18426
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17825
18427
|
to: GraphStoreFullSprintAssociatedFeatureFlagEndNode;
|
|
17826
18428
|
};
|
|
17827
|
-
export type GraphStoreFullSprintAssociatedFeatureFlagStartNode =
|
|
18429
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagStartNode = {
|
|
17828
18430
|
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagStartNode';
|
|
17829
18431
|
id: Scalars['ID']['output'];
|
|
17830
18432
|
};
|
|
18433
|
+
export type GraphStoreFullSprintAssociatedPrAuthorOutput = {
|
|
18434
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrAuthorOutput';
|
|
18435
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
18436
|
+
};
|
|
17831
18437
|
export type GraphStoreFullSprintAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
17832
18438
|
__typename?: 'GraphStoreFullSprintAssociatedPrConnection';
|
|
17833
18439
|
edges: Array<Maybe<GraphStoreFullSprintAssociatedPrEdge>>;
|
|
@@ -17841,9 +18447,10 @@ export type GraphStoreFullSprintAssociatedPrEdge = {
|
|
|
17841
18447
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17842
18448
|
node: GraphStoreFullSprintAssociatedPrNode;
|
|
17843
18449
|
};
|
|
17844
|
-
export type GraphStoreFullSprintAssociatedPrEndNode =
|
|
18450
|
+
export type GraphStoreFullSprintAssociatedPrEndNode = {
|
|
17845
18451
|
__typename?: 'GraphStoreFullSprintAssociatedPrEndNode';
|
|
17846
18452
|
id: Scalars['ID']['output'];
|
|
18453
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedPrRelationshipObjectMetadataOutput>;
|
|
17847
18454
|
};
|
|
17848
18455
|
export type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
17849
18456
|
__typename?: 'GraphStoreFullSprintAssociatedPrNode';
|
|
@@ -17851,12 +18458,103 @@ export type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
|
17851
18458
|
from: GraphStoreFullSprintAssociatedPrStartNode;
|
|
17852
18459
|
id: Scalars['ID']['output'];
|
|
17853
18460
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18461
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput>;
|
|
17854
18462
|
to: GraphStoreFullSprintAssociatedPrEndNode;
|
|
17855
18463
|
};
|
|
17856
|
-
export
|
|
18464
|
+
export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
18465
|
+
Declined = "DECLINED",
|
|
18466
|
+
Merged = "MERGED",
|
|
18467
|
+
NotSet = "NOT_SET",
|
|
18468
|
+
Open = "OPEN",
|
|
18469
|
+
Unknown = "UNKNOWN"
|
|
18470
|
+
}
|
|
18471
|
+
export type GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput = {
|
|
18472
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput';
|
|
18473
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18474
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
18475
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
18476
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
18477
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18478
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18479
|
+
};
|
|
18480
|
+
export type GraphStoreFullSprintAssociatedPrRelationshipObjectMetadataOutput = {
|
|
18481
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrRelationshipObjectMetadataOutput';
|
|
18482
|
+
author?: Maybe<GraphStoreFullSprintAssociatedPrAuthorOutput>;
|
|
18483
|
+
reviewers?: Maybe<GraphStoreFullSprintAssociatedPrReviewerOutput>;
|
|
18484
|
+
status?: Maybe<GraphStoreFullSprintAssociatedPrPullRequestStatusOutput>;
|
|
18485
|
+
taskCount?: Maybe<Scalars['Int']['output']>;
|
|
18486
|
+
};
|
|
18487
|
+
export type GraphStoreFullSprintAssociatedPrReviewerOutput = {
|
|
18488
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrReviewerOutput';
|
|
18489
|
+
approvalStatus?: Maybe<GraphStoreFullSprintAssociatedPrReviewerReviewerStatusOutput>;
|
|
18490
|
+
reviewerAri?: Maybe<Scalars['String']['output']>;
|
|
18491
|
+
};
|
|
18492
|
+
export declare enum GraphStoreFullSprintAssociatedPrReviewerReviewerStatusOutput {
|
|
18493
|
+
Approved = "APPROVED",
|
|
18494
|
+
Needswork = "NEEDSWORK",
|
|
18495
|
+
NotSet = "NOT_SET",
|
|
18496
|
+
Unapproved = "UNAPPROVED"
|
|
18497
|
+
}
|
|
18498
|
+
export type GraphStoreFullSprintAssociatedPrStartNode = {
|
|
17857
18499
|
__typename?: 'GraphStoreFullSprintAssociatedPrStartNode';
|
|
17858
18500
|
id: Scalars['ID']['output'];
|
|
17859
18501
|
};
|
|
18502
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityConnection = HasPageInfo & HasTotal & {
|
|
18503
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityConnection';
|
|
18504
|
+
edges: Array<Maybe<GraphStoreFullSprintAssociatedVulnerabilityEdge>>;
|
|
18505
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
18506
|
+
nodes: Array<Maybe<GraphStoreFullSprintAssociatedVulnerabilityNode>>;
|
|
18507
|
+
pageInfo: PageInfo;
|
|
18508
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
18509
|
+
};
|
|
18510
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityEdge = {
|
|
18511
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityEdge';
|
|
18512
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18513
|
+
node: GraphStoreFullSprintAssociatedVulnerabilityNode;
|
|
18514
|
+
};
|
|
18515
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityEndNode = {
|
|
18516
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityEndNode';
|
|
18517
|
+
id: Scalars['ID']['output'];
|
|
18518
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput>;
|
|
18519
|
+
};
|
|
18520
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityNode = Node & {
|
|
18521
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityNode';
|
|
18522
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18523
|
+
from: GraphStoreFullSprintAssociatedVulnerabilityStartNode;
|
|
18524
|
+
id: Scalars['ID']['output'];
|
|
18525
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18526
|
+
metadata?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityRelationshipMetadataOutput>;
|
|
18527
|
+
to: GraphStoreFullSprintAssociatedVulnerabilityEndNode;
|
|
18528
|
+
};
|
|
18529
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityRelationshipMetadataOutput = {
|
|
18530
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityRelationshipMetadataOutput';
|
|
18531
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18532
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18533
|
+
};
|
|
18534
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput = {
|
|
18535
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput';
|
|
18536
|
+
severity?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityVulnerabilitySeverityOutput>;
|
|
18537
|
+
status?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityVulnerabilityStatusOutput>;
|
|
18538
|
+
};
|
|
18539
|
+
export type GraphStoreFullSprintAssociatedVulnerabilityStartNode = {
|
|
18540
|
+
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityStartNode';
|
|
18541
|
+
id: Scalars['ID']['output'];
|
|
18542
|
+
};
|
|
18543
|
+
export declare enum GraphStoreFullSprintAssociatedVulnerabilityVulnerabilitySeverityOutput {
|
|
18544
|
+
Critical = "CRITICAL",
|
|
18545
|
+
High = "HIGH",
|
|
18546
|
+
Low = "LOW",
|
|
18547
|
+
Medium = "MEDIUM",
|
|
18548
|
+
NotSet = "NOT_SET",
|
|
18549
|
+
Unknown = "UNKNOWN"
|
|
18550
|
+
}
|
|
18551
|
+
export declare enum GraphStoreFullSprintAssociatedVulnerabilityVulnerabilityStatusOutput {
|
|
18552
|
+
Closed = "CLOSED",
|
|
18553
|
+
Ignored = "IGNORED",
|
|
18554
|
+
NotSet = "NOT_SET",
|
|
18555
|
+
Open = "OPEN",
|
|
18556
|
+
Unknown = "UNKNOWN"
|
|
18557
|
+
}
|
|
17860
18558
|
export type GraphStoreFullSprintContainsIssueConnection = HasPageInfo & {
|
|
17861
18559
|
__typename?: 'GraphStoreFullSprintContainsIssueConnection';
|
|
17862
18560
|
edges: Array<Maybe<GraphStoreFullSprintContainsIssueEdge>>;
|
|
@@ -17868,9 +18566,10 @@ export type GraphStoreFullSprintContainsIssueEdge = {
|
|
|
17868
18566
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17869
18567
|
node: GraphStoreFullSprintContainsIssueNode;
|
|
17870
18568
|
};
|
|
17871
|
-
export type GraphStoreFullSprintContainsIssueEndNode =
|
|
18569
|
+
export type GraphStoreFullSprintContainsIssueEndNode = {
|
|
17872
18570
|
__typename?: 'GraphStoreFullSprintContainsIssueEndNode';
|
|
17873
18571
|
id: Scalars['ID']['output'];
|
|
18572
|
+
metadata?: Maybe<GraphStoreFullSprintContainsIssueRelationshipObjectMetadataOutput>;
|
|
17874
18573
|
};
|
|
17875
18574
|
export type GraphStoreFullSprintContainsIssueNode = Node & {
|
|
17876
18575
|
__typename?: 'GraphStoreFullSprintContainsIssueNode';
|
|
@@ -17878,9 +18577,22 @@ export type GraphStoreFullSprintContainsIssueNode = Node & {
|
|
|
17878
18577
|
from: GraphStoreFullSprintContainsIssueStartNode;
|
|
17879
18578
|
id: Scalars['ID']['output'];
|
|
17880
18579
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18580
|
+
metadata?: Maybe<GraphStoreFullSprintContainsIssueRelationshipMetadataOutput>;
|
|
17881
18581
|
to: GraphStoreFullSprintContainsIssueEndNode;
|
|
17882
18582
|
};
|
|
17883
|
-
export type
|
|
18583
|
+
export type GraphStoreFullSprintContainsIssueRelationshipMetadataOutput = {
|
|
18584
|
+
__typename?: 'GraphStoreFullSprintContainsIssueRelationshipMetadataOutput';
|
|
18585
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
18586
|
+
};
|
|
18587
|
+
export type GraphStoreFullSprintContainsIssueRelationshipObjectMetadataOutput = {
|
|
18588
|
+
__typename?: 'GraphStoreFullSprintContainsIssueRelationshipObjectMetadataOutput';
|
|
18589
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18590
|
+
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
18591
|
+
issueAri?: Maybe<Scalars['String']['output']>;
|
|
18592
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18593
|
+
statusAri?: Maybe<Scalars['String']['output']>;
|
|
18594
|
+
};
|
|
18595
|
+
export type GraphStoreFullSprintContainsIssueStartNode = {
|
|
17884
18596
|
__typename?: 'GraphStoreFullSprintContainsIssueStartNode';
|
|
17885
18597
|
id: Scalars['ID']['output'];
|
|
17886
18598
|
};
|
|
@@ -17897,7 +18609,7 @@ export type GraphStoreFullSprintRetrospectivePageEdge = {
|
|
|
17897
18609
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17898
18610
|
node: GraphStoreFullSprintRetrospectivePageNode;
|
|
17899
18611
|
};
|
|
17900
|
-
export type GraphStoreFullSprintRetrospectivePageEndNode =
|
|
18612
|
+
export type GraphStoreFullSprintRetrospectivePageEndNode = {
|
|
17901
18613
|
__typename?: 'GraphStoreFullSprintRetrospectivePageEndNode';
|
|
17902
18614
|
id: Scalars['ID']['output'];
|
|
17903
18615
|
};
|
|
@@ -17909,7 +18621,7 @@ export type GraphStoreFullSprintRetrospectivePageNode = Node & {
|
|
|
17909
18621
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17910
18622
|
to: GraphStoreFullSprintRetrospectivePageEndNode;
|
|
17911
18623
|
};
|
|
17912
|
-
export type GraphStoreFullSprintRetrospectivePageStartNode =
|
|
18624
|
+
export type GraphStoreFullSprintRetrospectivePageStartNode = {
|
|
17913
18625
|
__typename?: 'GraphStoreFullSprintRetrospectivePageStartNode';
|
|
17914
18626
|
id: Scalars['ID']['output'];
|
|
17915
18627
|
};
|
|
@@ -17926,10 +18638,12 @@ export type GraphStoreFullSprintRetrospectiveWhiteboardEdge = {
|
|
|
17926
18638
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17927
18639
|
node: GraphStoreFullSprintRetrospectiveWhiteboardNode;
|
|
17928
18640
|
};
|
|
17929
|
-
export type GraphStoreFullSprintRetrospectiveWhiteboardEndNode =
|
|
18641
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardEndNode = {
|
|
17930
18642
|
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardEndNode';
|
|
18643
|
+
data?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardEndUnion>;
|
|
17931
18644
|
id: Scalars['ID']['output'];
|
|
17932
18645
|
};
|
|
18646
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardEndUnion = ConfluenceWhiteboard;
|
|
17933
18647
|
export type GraphStoreFullSprintRetrospectiveWhiteboardNode = Node & {
|
|
17934
18648
|
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardNode';
|
|
17935
18649
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -17938,7 +18652,7 @@ export type GraphStoreFullSprintRetrospectiveWhiteboardNode = Node & {
|
|
|
17938
18652
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17939
18653
|
to: GraphStoreFullSprintRetrospectiveWhiteboardEndNode;
|
|
17940
18654
|
};
|
|
17941
|
-
export type GraphStoreFullSprintRetrospectiveWhiteboardStartNode =
|
|
18655
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardStartNode = {
|
|
17942
18656
|
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardStartNode';
|
|
17943
18657
|
id: Scalars['ID']['output'];
|
|
17944
18658
|
};
|
|
@@ -17955,7 +18669,7 @@ export type GraphStoreFullTeamWorksOnProjectEdge = {
|
|
|
17955
18669
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17956
18670
|
node: GraphStoreFullTeamWorksOnProjectNode;
|
|
17957
18671
|
};
|
|
17958
|
-
export type GraphStoreFullTeamWorksOnProjectEndNode =
|
|
18672
|
+
export type GraphStoreFullTeamWorksOnProjectEndNode = {
|
|
17959
18673
|
__typename?: 'GraphStoreFullTeamWorksOnProjectEndNode';
|
|
17960
18674
|
id: Scalars['ID']['output'];
|
|
17961
18675
|
};
|
|
@@ -17967,7 +18681,7 @@ export type GraphStoreFullTeamWorksOnProjectNode = Node & {
|
|
|
17967
18681
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17968
18682
|
to: GraphStoreFullTeamWorksOnProjectEndNode;
|
|
17969
18683
|
};
|
|
17970
|
-
export type GraphStoreFullTeamWorksOnProjectStartNode =
|
|
18684
|
+
export type GraphStoreFullTeamWorksOnProjectStartNode = {
|
|
17971
18685
|
__typename?: 'GraphStoreFullTeamWorksOnProjectStartNode';
|
|
17972
18686
|
id: Scalars['ID']['output'];
|
|
17973
18687
|
};
|
|
@@ -17984,7 +18698,7 @@ export type GraphStoreFullTestPerfhammerMaterializationAEdge = {
|
|
|
17984
18698
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
17985
18699
|
node: GraphStoreFullTestPerfhammerMaterializationANode;
|
|
17986
18700
|
};
|
|
17987
|
-
export type GraphStoreFullTestPerfhammerMaterializationAEndNode =
|
|
18701
|
+
export type GraphStoreFullTestPerfhammerMaterializationAEndNode = {
|
|
17988
18702
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAEndNode';
|
|
17989
18703
|
id: Scalars['ID']['output'];
|
|
17990
18704
|
};
|
|
@@ -17996,7 +18710,7 @@ export type GraphStoreFullTestPerfhammerMaterializationANode = Node & {
|
|
|
17996
18710
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17997
18711
|
to: GraphStoreFullTestPerfhammerMaterializationAEndNode;
|
|
17998
18712
|
};
|
|
17999
|
-
export type GraphStoreFullTestPerfhammerMaterializationAStartNode =
|
|
18713
|
+
export type GraphStoreFullTestPerfhammerMaterializationAStartNode = {
|
|
18000
18714
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAStartNode';
|
|
18001
18715
|
id: Scalars['ID']['output'];
|
|
18002
18716
|
};
|
|
@@ -18013,7 +18727,7 @@ export type GraphStoreFullTestPerfhammerMaterializationBEdge = {
|
|
|
18013
18727
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18014
18728
|
node: GraphStoreFullTestPerfhammerMaterializationBNode;
|
|
18015
18729
|
};
|
|
18016
|
-
export type GraphStoreFullTestPerfhammerMaterializationBEndNode =
|
|
18730
|
+
export type GraphStoreFullTestPerfhammerMaterializationBEndNode = {
|
|
18017
18731
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBEndNode';
|
|
18018
18732
|
id: Scalars['ID']['output'];
|
|
18019
18733
|
};
|
|
@@ -18025,7 +18739,7 @@ export type GraphStoreFullTestPerfhammerMaterializationBNode = Node & {
|
|
|
18025
18739
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18026
18740
|
to: GraphStoreFullTestPerfhammerMaterializationBEndNode;
|
|
18027
18741
|
};
|
|
18028
|
-
export type GraphStoreFullTestPerfhammerMaterializationBStartNode =
|
|
18742
|
+
export type GraphStoreFullTestPerfhammerMaterializationBStartNode = {
|
|
18029
18743
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBStartNode';
|
|
18030
18744
|
id: Scalars['ID']['output'];
|
|
18031
18745
|
};
|
|
@@ -18042,7 +18756,7 @@ export type GraphStoreFullTestPerfhammerMaterializationEdge = {
|
|
|
18042
18756
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18043
18757
|
node: GraphStoreFullTestPerfhammerMaterializationNode;
|
|
18044
18758
|
};
|
|
18045
|
-
export type GraphStoreFullTestPerfhammerMaterializationEndNode =
|
|
18759
|
+
export type GraphStoreFullTestPerfhammerMaterializationEndNode = {
|
|
18046
18760
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationEndNode';
|
|
18047
18761
|
id: Scalars['ID']['output'];
|
|
18048
18762
|
};
|
|
@@ -18054,7 +18768,7 @@ export type GraphStoreFullTestPerfhammerMaterializationNode = Node & {
|
|
|
18054
18768
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18055
18769
|
to: GraphStoreFullTestPerfhammerMaterializationEndNode;
|
|
18056
18770
|
};
|
|
18057
|
-
export type GraphStoreFullTestPerfhammerMaterializationStartNode =
|
|
18771
|
+
export type GraphStoreFullTestPerfhammerMaterializationStartNode = {
|
|
18058
18772
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationStartNode';
|
|
18059
18773
|
id: Scalars['ID']['output'];
|
|
18060
18774
|
};
|
|
@@ -18069,7 +18783,7 @@ export type GraphStoreFullTestPerfhammerRelationshipEdge = {
|
|
|
18069
18783
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18070
18784
|
node: GraphStoreFullTestPerfhammerRelationshipNode;
|
|
18071
18785
|
};
|
|
18072
|
-
export type GraphStoreFullTestPerfhammerRelationshipEndNode =
|
|
18786
|
+
export type GraphStoreFullTestPerfhammerRelationshipEndNode = {
|
|
18073
18787
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipEndNode';
|
|
18074
18788
|
id: Scalars['ID']['output'];
|
|
18075
18789
|
};
|
|
@@ -18079,9 +18793,15 @@ export type GraphStoreFullTestPerfhammerRelationshipNode = Node & {
|
|
|
18079
18793
|
from: GraphStoreFullTestPerfhammerRelationshipStartNode;
|
|
18080
18794
|
id: Scalars['ID']['output'];
|
|
18081
18795
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18796
|
+
metadata?: Maybe<GraphStoreFullTestPerfhammerRelationshipRelationshipMetadataOutput>;
|
|
18082
18797
|
to: GraphStoreFullTestPerfhammerRelationshipEndNode;
|
|
18083
18798
|
};
|
|
18084
|
-
export type
|
|
18799
|
+
export type GraphStoreFullTestPerfhammerRelationshipRelationshipMetadataOutput = {
|
|
18800
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipRelationshipMetadataOutput';
|
|
18801
|
+
replicatedNumber?: Maybe<Scalars['Int']['output']>;
|
|
18802
|
+
sequentialNumber?: Maybe<Scalars['Int']['output']>;
|
|
18803
|
+
};
|
|
18804
|
+
export type GraphStoreFullTestPerfhammerRelationshipStartNode = {
|
|
18085
18805
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipStartNode';
|
|
18086
18806
|
id: Scalars['ID']['output'];
|
|
18087
18807
|
};
|
|
@@ -18096,7 +18816,7 @@ export type GraphStoreFullUserIsInTeamEdge = {
|
|
|
18096
18816
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18097
18817
|
node: GraphStoreFullUserIsInTeamNode;
|
|
18098
18818
|
};
|
|
18099
|
-
export type GraphStoreFullUserIsInTeamEndNode =
|
|
18819
|
+
export type GraphStoreFullUserIsInTeamEndNode = {
|
|
18100
18820
|
__typename?: 'GraphStoreFullUserIsInTeamEndNode';
|
|
18101
18821
|
id: Scalars['ID']['output'];
|
|
18102
18822
|
};
|
|
@@ -18108,7 +18828,7 @@ export type GraphStoreFullUserIsInTeamNode = Node & {
|
|
|
18108
18828
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18109
18829
|
to: GraphStoreFullUserIsInTeamEndNode;
|
|
18110
18830
|
};
|
|
18111
|
-
export type GraphStoreFullUserIsInTeamStartNode =
|
|
18831
|
+
export type GraphStoreFullUserIsInTeamStartNode = {
|
|
18112
18832
|
__typename?: 'GraphStoreFullUserIsInTeamStartNode';
|
|
18113
18833
|
id: Scalars['ID']['output'];
|
|
18114
18834
|
};
|
|
@@ -18125,7 +18845,7 @@ export type GraphStoreFullVersionAssociatedBranchEdge = {
|
|
|
18125
18845
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18126
18846
|
node: GraphStoreFullVersionAssociatedBranchNode;
|
|
18127
18847
|
};
|
|
18128
|
-
export type GraphStoreFullVersionAssociatedBranchEndNode =
|
|
18848
|
+
export type GraphStoreFullVersionAssociatedBranchEndNode = {
|
|
18129
18849
|
__typename?: 'GraphStoreFullVersionAssociatedBranchEndNode';
|
|
18130
18850
|
id: Scalars['ID']['output'];
|
|
18131
18851
|
};
|
|
@@ -18137,7 +18857,7 @@ export type GraphStoreFullVersionAssociatedBranchNode = Node & {
|
|
|
18137
18857
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18138
18858
|
to: GraphStoreFullVersionAssociatedBranchEndNode;
|
|
18139
18859
|
};
|
|
18140
|
-
export type GraphStoreFullVersionAssociatedBranchStartNode =
|
|
18860
|
+
export type GraphStoreFullVersionAssociatedBranchStartNode = {
|
|
18141
18861
|
__typename?: 'GraphStoreFullVersionAssociatedBranchStartNode';
|
|
18142
18862
|
id: Scalars['ID']['output'];
|
|
18143
18863
|
};
|
|
@@ -18154,7 +18874,7 @@ export type GraphStoreFullVersionAssociatedBuildEdge = {
|
|
|
18154
18874
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18155
18875
|
node: GraphStoreFullVersionAssociatedBuildNode;
|
|
18156
18876
|
};
|
|
18157
|
-
export type GraphStoreFullVersionAssociatedBuildEndNode =
|
|
18877
|
+
export type GraphStoreFullVersionAssociatedBuildEndNode = {
|
|
18158
18878
|
__typename?: 'GraphStoreFullVersionAssociatedBuildEndNode';
|
|
18159
18879
|
id: Scalars['ID']['output'];
|
|
18160
18880
|
};
|
|
@@ -18166,7 +18886,7 @@ export type GraphStoreFullVersionAssociatedBuildNode = Node & {
|
|
|
18166
18886
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18167
18887
|
to: GraphStoreFullVersionAssociatedBuildEndNode;
|
|
18168
18888
|
};
|
|
18169
|
-
export type GraphStoreFullVersionAssociatedBuildStartNode =
|
|
18889
|
+
export type GraphStoreFullVersionAssociatedBuildStartNode = {
|
|
18170
18890
|
__typename?: 'GraphStoreFullVersionAssociatedBuildStartNode';
|
|
18171
18891
|
id: Scalars['ID']['output'];
|
|
18172
18892
|
};
|
|
@@ -18183,7 +18903,7 @@ export type GraphStoreFullVersionAssociatedCommitEdge = {
|
|
|
18183
18903
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18184
18904
|
node: GraphStoreFullVersionAssociatedCommitNode;
|
|
18185
18905
|
};
|
|
18186
|
-
export type GraphStoreFullVersionAssociatedCommitEndNode =
|
|
18906
|
+
export type GraphStoreFullVersionAssociatedCommitEndNode = {
|
|
18187
18907
|
__typename?: 'GraphStoreFullVersionAssociatedCommitEndNode';
|
|
18188
18908
|
id: Scalars['ID']['output'];
|
|
18189
18909
|
};
|
|
@@ -18195,7 +18915,7 @@ export type GraphStoreFullVersionAssociatedCommitNode = Node & {
|
|
|
18195
18915
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18196
18916
|
to: GraphStoreFullVersionAssociatedCommitEndNode;
|
|
18197
18917
|
};
|
|
18198
|
-
export type GraphStoreFullVersionAssociatedCommitStartNode =
|
|
18918
|
+
export type GraphStoreFullVersionAssociatedCommitStartNode = {
|
|
18199
18919
|
__typename?: 'GraphStoreFullVersionAssociatedCommitStartNode';
|
|
18200
18920
|
id: Scalars['ID']['output'];
|
|
18201
18921
|
};
|
|
@@ -18212,7 +18932,7 @@ export type GraphStoreFullVersionAssociatedDeploymentEdge = {
|
|
|
18212
18932
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18213
18933
|
node: GraphStoreFullVersionAssociatedDeploymentNode;
|
|
18214
18934
|
};
|
|
18215
|
-
export type GraphStoreFullVersionAssociatedDeploymentEndNode =
|
|
18935
|
+
export type GraphStoreFullVersionAssociatedDeploymentEndNode = {
|
|
18216
18936
|
__typename?: 'GraphStoreFullVersionAssociatedDeploymentEndNode';
|
|
18217
18937
|
id: Scalars['ID']['output'];
|
|
18218
18938
|
};
|
|
@@ -18224,7 +18944,7 @@ export type GraphStoreFullVersionAssociatedDeploymentNode = Node & {
|
|
|
18224
18944
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18225
18945
|
to: GraphStoreFullVersionAssociatedDeploymentEndNode;
|
|
18226
18946
|
};
|
|
18227
|
-
export type GraphStoreFullVersionAssociatedDeploymentStartNode =
|
|
18947
|
+
export type GraphStoreFullVersionAssociatedDeploymentStartNode = {
|
|
18228
18948
|
__typename?: 'GraphStoreFullVersionAssociatedDeploymentStartNode';
|
|
18229
18949
|
id: Scalars['ID']['output'];
|
|
18230
18950
|
};
|
|
@@ -18241,7 +18961,7 @@ export type GraphStoreFullVersionAssociatedFeatureFlagEdge = {
|
|
|
18241
18961
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18242
18962
|
node: GraphStoreFullVersionAssociatedFeatureFlagNode;
|
|
18243
18963
|
};
|
|
18244
|
-
export type GraphStoreFullVersionAssociatedFeatureFlagEndNode =
|
|
18964
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagEndNode = {
|
|
18245
18965
|
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagEndNode';
|
|
18246
18966
|
id: Scalars['ID']['output'];
|
|
18247
18967
|
};
|
|
@@ -18253,7 +18973,7 @@ export type GraphStoreFullVersionAssociatedFeatureFlagNode = Node & {
|
|
|
18253
18973
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18254
18974
|
to: GraphStoreFullVersionAssociatedFeatureFlagEndNode;
|
|
18255
18975
|
};
|
|
18256
|
-
export type GraphStoreFullVersionAssociatedFeatureFlagStartNode =
|
|
18976
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagStartNode = {
|
|
18257
18977
|
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagStartNode';
|
|
18258
18978
|
id: Scalars['ID']['output'];
|
|
18259
18979
|
};
|
|
@@ -18268,7 +18988,7 @@ export type GraphStoreFullVersionAssociatedIssueEdge = {
|
|
|
18268
18988
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18269
18989
|
node: GraphStoreFullVersionAssociatedIssueNode;
|
|
18270
18990
|
};
|
|
18271
|
-
export type GraphStoreFullVersionAssociatedIssueEndNode =
|
|
18991
|
+
export type GraphStoreFullVersionAssociatedIssueEndNode = {
|
|
18272
18992
|
__typename?: 'GraphStoreFullVersionAssociatedIssueEndNode';
|
|
18273
18993
|
id: Scalars['ID']['output'];
|
|
18274
18994
|
};
|
|
@@ -18280,7 +19000,7 @@ export type GraphStoreFullVersionAssociatedIssueNode = Node & {
|
|
|
18280
19000
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18281
19001
|
to: GraphStoreFullVersionAssociatedIssueEndNode;
|
|
18282
19002
|
};
|
|
18283
|
-
export type GraphStoreFullVersionAssociatedIssueStartNode =
|
|
19003
|
+
export type GraphStoreFullVersionAssociatedIssueStartNode = {
|
|
18284
19004
|
__typename?: 'GraphStoreFullVersionAssociatedIssueStartNode';
|
|
18285
19005
|
id: Scalars['ID']['output'];
|
|
18286
19006
|
};
|
|
@@ -18297,7 +19017,7 @@ export type GraphStoreFullVersionAssociatedPullRequestEdge = {
|
|
|
18297
19017
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18298
19018
|
node: GraphStoreFullVersionAssociatedPullRequestNode;
|
|
18299
19019
|
};
|
|
18300
|
-
export type GraphStoreFullVersionAssociatedPullRequestEndNode =
|
|
19020
|
+
export type GraphStoreFullVersionAssociatedPullRequestEndNode = {
|
|
18301
19021
|
__typename?: 'GraphStoreFullVersionAssociatedPullRequestEndNode';
|
|
18302
19022
|
id: Scalars['ID']['output'];
|
|
18303
19023
|
};
|
|
@@ -18309,7 +19029,7 @@ export type GraphStoreFullVersionAssociatedPullRequestNode = Node & {
|
|
|
18309
19029
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18310
19030
|
to: GraphStoreFullVersionAssociatedPullRequestEndNode;
|
|
18311
19031
|
};
|
|
18312
|
-
export type GraphStoreFullVersionAssociatedPullRequestStartNode =
|
|
19032
|
+
export type GraphStoreFullVersionAssociatedPullRequestStartNode = {
|
|
18313
19033
|
__typename?: 'GraphStoreFullVersionAssociatedPullRequestStartNode';
|
|
18314
19034
|
id: Scalars['ID']['output'];
|
|
18315
19035
|
};
|
|
@@ -18324,7 +19044,7 @@ export type GraphStoreFullVersionUserAssociatedFeatureFlagEdge = {
|
|
|
18324
19044
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18325
19045
|
node: GraphStoreFullVersionUserAssociatedFeatureFlagNode;
|
|
18326
19046
|
};
|
|
18327
|
-
export type GraphStoreFullVersionUserAssociatedFeatureFlagEndNode =
|
|
19047
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagEndNode = {
|
|
18328
19048
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagEndNode';
|
|
18329
19049
|
id: Scalars['ID']['output'];
|
|
18330
19050
|
};
|
|
@@ -18336,7 +19056,7 @@ export type GraphStoreFullVersionUserAssociatedFeatureFlagNode = Node & {
|
|
|
18336
19056
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18337
19057
|
to: GraphStoreFullVersionUserAssociatedFeatureFlagEndNode;
|
|
18338
19058
|
};
|
|
18339
|
-
export type GraphStoreFullVersionUserAssociatedFeatureFlagStartNode =
|
|
19059
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagStartNode = {
|
|
18340
19060
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagStartNode';
|
|
18341
19061
|
id: Scalars['ID']['output'];
|
|
18342
19062
|
};
|
|
@@ -18348,12 +19068,16 @@ export type GraphStoreFullVulnerabilityAssociatedIssueConnection = HasPageInfo &
|
|
|
18348
19068
|
pageInfo: PageInfo;
|
|
18349
19069
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
18350
19070
|
};
|
|
19071
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueContainerOutput = {
|
|
19072
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueContainerOutput';
|
|
19073
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
19074
|
+
};
|
|
18351
19075
|
export type GraphStoreFullVulnerabilityAssociatedIssueEdge = {
|
|
18352
19076
|
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueEdge';
|
|
18353
19077
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18354
19078
|
node: GraphStoreFullVulnerabilityAssociatedIssueNode;
|
|
18355
19079
|
};
|
|
18356
|
-
export type GraphStoreFullVulnerabilityAssociatedIssueEndNode =
|
|
19080
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueEndNode = {
|
|
18357
19081
|
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueEndNode';
|
|
18358
19082
|
id: Scalars['ID']['output'];
|
|
18359
19083
|
};
|
|
@@ -18365,10 +19089,40 @@ export type GraphStoreFullVulnerabilityAssociatedIssueNode = Node & {
|
|
|
18365
19089
|
lastUpdated: Scalars['DateTime']['output'];
|
|
18366
19090
|
to: GraphStoreFullVulnerabilityAssociatedIssueEndNode;
|
|
18367
19091
|
};
|
|
18368
|
-
export type
|
|
19092
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput = {
|
|
19093
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput';
|
|
19094
|
+
container?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueContainerOutput>;
|
|
19095
|
+
severity?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilitySeverityOutput>;
|
|
19096
|
+
status?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityStatusOutput>;
|
|
19097
|
+
type?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeOutput>;
|
|
19098
|
+
};
|
|
19099
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueStartNode = {
|
|
18369
19100
|
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueStartNode';
|
|
18370
19101
|
id: Scalars['ID']['output'];
|
|
19102
|
+
metadata?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput>;
|
|
18371
19103
|
};
|
|
19104
|
+
export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilitySeverityOutput {
|
|
19105
|
+
Critical = "CRITICAL",
|
|
19106
|
+
High = "HIGH",
|
|
19107
|
+
Low = "LOW",
|
|
19108
|
+
Medium = "MEDIUM",
|
|
19109
|
+
NotSet = "NOT_SET",
|
|
19110
|
+
Unknown = "UNKNOWN"
|
|
19111
|
+
}
|
|
19112
|
+
export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityStatusOutput {
|
|
19113
|
+
Closed = "CLOSED",
|
|
19114
|
+
Ignored = "IGNORED",
|
|
19115
|
+
NotSet = "NOT_SET",
|
|
19116
|
+
Open = "OPEN",
|
|
19117
|
+
Unknown = "UNKNOWN"
|
|
19118
|
+
}
|
|
19119
|
+
export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeOutput {
|
|
19120
|
+
Dast = "DAST",
|
|
19121
|
+
NotSet = "NOT_SET",
|
|
19122
|
+
Sast = "SAST",
|
|
19123
|
+
Sca = "SCA",
|
|
19124
|
+
Unknown = "UNKNOWN"
|
|
19125
|
+
}
|
|
18372
19126
|
export type GraphStoreIntFilterInput = {
|
|
18373
19127
|
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
18374
19128
|
greaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -19044,6 +19798,21 @@ export type GraphStoreSimplifiedProjectAssociatedDeploymentEdge = {
|
|
|
19044
19798
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentUnion>;
|
|
19045
19799
|
};
|
|
19046
19800
|
export type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary;
|
|
19801
|
+
export type GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
19802
|
+
__typename?: 'GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection';
|
|
19803
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge>>>;
|
|
19804
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
19805
|
+
pageInfo: PageInfo;
|
|
19806
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
19807
|
+
};
|
|
19808
|
+
export type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
19809
|
+
__typename?: 'GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge';
|
|
19810
|
+
createdAt: Scalars['DateTime']['output'];
|
|
19811
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19812
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
19813
|
+
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
19814
|
+
};
|
|
19815
|
+
export type GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion = ConfluenceWhiteboard;
|
|
19047
19816
|
export type GraphStoreSortInput = {
|
|
19048
19817
|
direction: SortDirection;
|
|
19049
19818
|
priority: Scalars['Int']['input'];
|
|
@@ -19250,6 +20019,53 @@ export type GraphStoreSprintAssociatedPrSortInput = {
|
|
|
19250
20019
|
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
19251
20020
|
to_taskCount?: InputMaybe<GraphStoreSortInput>;
|
|
19252
20021
|
};
|
|
20022
|
+
export type GraphStoreSprintAssociatedVulnerabilityConditionalFilterInput = {
|
|
20023
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
20024
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
20025
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
20026
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
20027
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
20028
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
20029
|
+
to_severity?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverityFilterInput>;
|
|
20030
|
+
to_status?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatusFilterInput>;
|
|
20031
|
+
};
|
|
20032
|
+
export type GraphStoreSprintAssociatedVulnerabilityFilterInput = {
|
|
20033
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedVulnerabilityConditionalFilterInput>>>;
|
|
20034
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedVulnerabilityConditionalFilterInput>>>;
|
|
20035
|
+
};
|
|
20036
|
+
export type GraphStoreSprintAssociatedVulnerabilitySortInput = {
|
|
20037
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
20038
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
20039
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
20040
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
20041
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
20042
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
20043
|
+
to_severity?: InputMaybe<GraphStoreSortInput>;
|
|
20044
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
20045
|
+
};
|
|
20046
|
+
export declare enum GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverity {
|
|
20047
|
+
Critical = "CRITICAL",
|
|
20048
|
+
High = "HIGH",
|
|
20049
|
+
Low = "LOW",
|
|
20050
|
+
Medium = "MEDIUM",
|
|
20051
|
+
NotSet = "NOT_SET",
|
|
20052
|
+
Unknown = "UNKNOWN"
|
|
20053
|
+
}
|
|
20054
|
+
export type GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverityFilterInput = {
|
|
20055
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverity>>;
|
|
20056
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverity>>;
|
|
20057
|
+
};
|
|
20058
|
+
export declare enum GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus {
|
|
20059
|
+
Closed = "CLOSED",
|
|
20060
|
+
Ignored = "IGNORED",
|
|
20061
|
+
NotSet = "NOT_SET",
|
|
20062
|
+
Open = "OPEN",
|
|
20063
|
+
Unknown = "UNKNOWN"
|
|
20064
|
+
}
|
|
20065
|
+
export type GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatusFilterInput = {
|
|
20066
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
20067
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
20068
|
+
};
|
|
19253
20069
|
export type GrowthRecContext = {
|
|
19254
20070
|
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
19255
20071
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22660,6 +23476,11 @@ export type JiraDevOpsEntityAuthor = {
|
|
|
22660
23476
|
avatar?: Maybe<JiraAvatar>;
|
|
22661
23477
|
name?: Maybe<Scalars['String']['output']>;
|
|
22662
23478
|
};
|
|
23479
|
+
export declare enum JiraDevOpsInContextConfigPromptLocation {
|
|
23480
|
+
DevelopmentPanel = "DEVELOPMENT_PANEL",
|
|
23481
|
+
ReleasesPanel = "RELEASES_PANEL",
|
|
23482
|
+
SecurityPanel = "SECURITY_PANEL"
|
|
23483
|
+
}
|
|
22663
23484
|
export type JiraDevOpsIssuePanel = {
|
|
22664
23485
|
__typename?: 'JiraDevOpsIssuePanel';
|
|
22665
23486
|
devOpsIssuePanelBanner?: Maybe<JiraDevOpsIssuePanelBannerType>;
|
|
@@ -22680,6 +23501,7 @@ export type JiraDevOpsMutation = {
|
|
|
22680
23501
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
22681
23502
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
22682
23503
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
23504
|
+
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
22683
23505
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
22684
23506
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
22685
23507
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
@@ -22695,6 +23517,10 @@ export type JiraDevOpsMutationDismissBitbucketPendingAccessRequestBannerArgs = {
|
|
|
22695
23517
|
export type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
22696
23518
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
22697
23519
|
};
|
|
23520
|
+
export type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
23521
|
+
cloudId: Scalars['ID']['input'];
|
|
23522
|
+
input: JiraDismissInContextConfigPromptInput;
|
|
23523
|
+
};
|
|
22698
23524
|
export type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
22699
23525
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
22700
23526
|
};
|
|
@@ -22727,6 +23553,7 @@ export type JiraDevOpsQuery = {
|
|
|
22727
23553
|
configState?: Maybe<JiraAppConfigState>;
|
|
22728
23554
|
configStates?: Maybe<JiraAppConfigStateConnection>;
|
|
22729
23555
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
23556
|
+
isInContextConfigPromptDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
22730
23557
|
toolchain?: Maybe<JiraToolchain>;
|
|
22731
23558
|
};
|
|
22732
23559
|
export type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
@@ -22743,6 +23570,10 @@ export type JiraDevOpsQueryConfigStatesArgs = {
|
|
|
22743
23570
|
export type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
22744
23571
|
issueId: Scalars['ID']['input'];
|
|
22745
23572
|
};
|
|
23573
|
+
export type JiraDevOpsQueryIsInContextConfigPromptDismissedArgs = {
|
|
23574
|
+
cloudId: Scalars['ID']['input'];
|
|
23575
|
+
location: JiraDevOpsInContextConfigPromptLocation;
|
|
23576
|
+
};
|
|
22746
23577
|
export type JiraDevOpsQueryToolchainArgs = {
|
|
22747
23578
|
cloudId: Scalars['ID']['input'];
|
|
22748
23579
|
};
|
|
@@ -22773,6 +23604,15 @@ export type JiraDismissDevOpsIssuePanelBannerPayload = Payload & {
|
|
|
22773
23604
|
errors?: Maybe<Array<MutationError>>;
|
|
22774
23605
|
success: Scalars['Boolean']['output'];
|
|
22775
23606
|
};
|
|
23607
|
+
export type JiraDismissInContextConfigPromptInput = {
|
|
23608
|
+
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23609
|
+
locations: Array<JiraDevOpsInContextConfigPromptLocation>;
|
|
23610
|
+
};
|
|
23611
|
+
export type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
23612
|
+
__typename?: 'JiraDismissInContextConfigPromptPayload';
|
|
23613
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23614
|
+
success: Scalars['Boolean']['output'];
|
|
23615
|
+
};
|
|
22776
23616
|
export declare enum JiraEmailMimeType {
|
|
22777
23617
|
Html = "HTML",
|
|
22778
23618
|
Text = "TEXT"
|
|
@@ -23359,6 +24199,15 @@ export declare enum JiraIncidentPriority {
|
|
|
23359
24199
|
P4 = "P4",
|
|
23360
24200
|
P5 = "P5"
|
|
23361
24201
|
}
|
|
24202
|
+
export type JiraInitializeProjectNotificationPreferencesInput = {
|
|
24203
|
+
projectId: Scalars['ID']['input'];
|
|
24204
|
+
};
|
|
24205
|
+
export type JiraInitializeProjectNotificationPreferencesPayload = Payload & {
|
|
24206
|
+
__typename?: 'JiraInitializeProjectNotificationPreferencesPayload';
|
|
24207
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24208
|
+
projectPreferences?: Maybe<JiraNotificationProjectPreferences>;
|
|
24209
|
+
success: Scalars['Boolean']['output'];
|
|
24210
|
+
};
|
|
23362
24211
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
23363
24212
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
23364
24213
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -25219,6 +26068,7 @@ export type JiraMutation = {
|
|
|
25219
26068
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
25220
26069
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
25221
26070
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
26071
|
+
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
25222
26072
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
25223
26073
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
25224
26074
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
@@ -25244,7 +26094,6 @@ export type JiraMutation = {
|
|
|
25244
26094
|
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
25245
26095
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
25246
26096
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
25247
|
-
updateEmailMimeType?: Maybe<JiraUpdateEmailMimeTypePayload>;
|
|
25248
26097
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
25249
26098
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
25250
26099
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -25365,6 +26214,10 @@ export type JiraMutationGrantGlobalPermissionArgs = {
|
|
|
25365
26214
|
cloudId: Scalars['ID']['input'];
|
|
25366
26215
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
25367
26216
|
};
|
|
26217
|
+
export type JiraMutationInitializeProjectNotificationPreferencesArgs = {
|
|
26218
|
+
cloudId: Scalars['ID']['input'];
|
|
26219
|
+
input: JiraInitializeProjectNotificationPreferencesInput;
|
|
26220
|
+
};
|
|
25368
26221
|
export type JiraMutationJwmDeleteAttachmentArgs = {
|
|
25369
26222
|
input: JiraWorkManagementDeleteAttachmentInput;
|
|
25370
26223
|
};
|
|
@@ -25441,10 +26294,6 @@ export type JiraMutationUpdateDateFieldArgs = {
|
|
|
25441
26294
|
export type JiraMutationUpdateDateTimeFieldArgs = {
|
|
25442
26295
|
input: JiraUpdateDateTimeFieldInput;
|
|
25443
26296
|
};
|
|
25444
|
-
export type JiraMutationUpdateEmailMimeTypeArgs = {
|
|
25445
|
-
cloudId: Scalars['ID']['input'];
|
|
25446
|
-
input: JiraUpdateEmailMimeTypeInput;
|
|
25447
|
-
};
|
|
25448
26297
|
export type JiraMutationUpdateGlobalNotificationOptionsArgs = {
|
|
25449
26298
|
cloudId: Scalars['ID']['input'];
|
|
25450
26299
|
input: JiraUpdateNotificationOptionsInput;
|
|
@@ -25633,7 +26482,8 @@ export type JiraNotificationPreference = {
|
|
|
25633
26482
|
type?: Maybe<JiraNotificationType>;
|
|
25634
26483
|
};
|
|
25635
26484
|
export type JiraNotificationPreferenceInput = {
|
|
25636
|
-
|
|
26485
|
+
channel?: InputMaybe<JiraNotificationChannelType>;
|
|
26486
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25637
26487
|
type: JiraNotificationType;
|
|
25638
26488
|
};
|
|
25639
26489
|
export type JiraNotificationPreferences = {
|
|
@@ -26950,6 +27800,7 @@ export type JiraQuery = {
|
|
|
26950
27800
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
26951
27801
|
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
26952
27802
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
27803
|
+
notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
|
|
26953
27804
|
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
26954
27805
|
permission?: Maybe<JiraPermission>;
|
|
26955
27806
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
@@ -27349,6 +28200,10 @@ export type JiraQueryNavigationUiStateArgs = {
|
|
|
27349
28200
|
export type JiraQueryNotificationGlobalPreferenceArgs = {
|
|
27350
28201
|
cloudId: Scalars['ID']['input'];
|
|
27351
28202
|
};
|
|
28203
|
+
export type JiraQueryNotificationProjectPreferenceArgs = {
|
|
28204
|
+
cloudId: Scalars['ID']['input'];
|
|
28205
|
+
projectId: Scalars['ID']['input'];
|
|
28206
|
+
};
|
|
27352
28207
|
export type JiraQueryNotificationProjectPreferencesArgs = {
|
|
27353
28208
|
cloudId: Scalars['ID']['input'];
|
|
27354
28209
|
projectIds: Array<Scalars['ID']['input']>;
|
|
@@ -29587,15 +30442,6 @@ export type JiraUpdateDateTimeFieldInput = {
|
|
|
29587
30442
|
id: Scalars['ID']['input'];
|
|
29588
30443
|
operation: JiraDateTimeFieldOperationInput;
|
|
29589
30444
|
};
|
|
29590
|
-
export type JiraUpdateEmailMimeTypeInput = {
|
|
29591
|
-
emailMimeType: JiraEmailMimeType;
|
|
29592
|
-
};
|
|
29593
|
-
export type JiraUpdateEmailMimeTypePayload = Payload & {
|
|
29594
|
-
__typename?: 'JiraUpdateEmailMimeTypePayload';
|
|
29595
|
-
errors?: Maybe<Array<MutationError>>;
|
|
29596
|
-
options?: Maybe<JiraNotificationOptions>;
|
|
29597
|
-
success: Scalars['Boolean']['output'];
|
|
29598
|
-
};
|
|
29599
30445
|
export type JiraUpdateGlobalNotificationPreferencesInput = {
|
|
29600
30446
|
preferences: Array<JiraNotificationPreferenceInput>;
|
|
29601
30447
|
};
|
|
@@ -32170,26 +33016,26 @@ export type NadelHydrationArgument = {
|
|
|
32170
33016
|
name: Scalars['String']['input'];
|
|
32171
33017
|
value: Scalars['String']['input'];
|
|
32172
33018
|
};
|
|
33019
|
+
export type NadelHydrationCondition = {
|
|
33020
|
+
result: NadelHydrationResultCondition;
|
|
33021
|
+
};
|
|
32173
33022
|
export type NadelHydrationFromArgument = {
|
|
32174
33023
|
name: Scalars['String']['input'];
|
|
32175
33024
|
valueFromArg?: InputMaybe<Scalars['String']['input']>;
|
|
32176
33025
|
valueFromField?: InputMaybe<Scalars['String']['input']>;
|
|
32177
33026
|
};
|
|
32178
|
-
export
|
|
32179
|
-
|
|
32180
|
-
|
|
32181
|
-
export type NadelWhenCondition = {
|
|
32182
|
-
result: NadelWhenConditionResult;
|
|
33027
|
+
export type NadelHydrationResultCondition = {
|
|
33028
|
+
predicate: NadelHydrationResultFieldPredicate;
|
|
33029
|
+
sourceField: Scalars['String']['input'];
|
|
32183
33030
|
};
|
|
32184
|
-
export type
|
|
33031
|
+
export type NadelHydrationResultFieldPredicate = {
|
|
32185
33032
|
equals?: InputMaybe<Scalars['JSON']['input']>;
|
|
32186
33033
|
matches?: InputMaybe<Scalars['String']['input']>;
|
|
32187
33034
|
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
32188
33035
|
};
|
|
32189
|
-
export
|
|
32190
|
-
|
|
32191
|
-
|
|
32192
|
-
};
|
|
33036
|
+
export declare enum NadelHydrationTemplate {
|
|
33037
|
+
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
33038
|
+
}
|
|
32193
33039
|
export type NewCard = {
|
|
32194
33040
|
assigneeId?: InputMaybe<Scalars['ID']['input']>;
|
|
32195
33041
|
fixVersions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -36445,6 +37291,7 @@ export type ShepherdActivityHighlight = {
|
|
|
36445
37291
|
__typename?: 'ShepherdActivityHighlight';
|
|
36446
37292
|
action?: Maybe<ShepherdActionType>;
|
|
36447
37293
|
actor?: Maybe<ShepherdActor>;
|
|
37294
|
+
actorSessionInfo?: Maybe<Array<Maybe<ShepherdActorSessionInfo>>>;
|
|
36448
37295
|
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
36449
37296
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
36450
37297
|
subject?: Maybe<ShepherdSubject>;
|
|
@@ -36533,6 +37380,13 @@ export type ShepherdActorSession = {
|
|
|
36533
37380
|
loginTime: Scalars['DateTime']['output'];
|
|
36534
37381
|
sessionId: Scalars['String']['output'];
|
|
36535
37382
|
};
|
|
37383
|
+
export type ShepherdActorSessionInfo = {
|
|
37384
|
+
__typename?: 'ShepherdActorSessionInfo';
|
|
37385
|
+
authFactors: Array<ShepherdSessionAuthFactors>;
|
|
37386
|
+
ipAddress: Scalars['String']['output'];
|
|
37387
|
+
sessionId: Scalars['String']['output'];
|
|
37388
|
+
userAgent: Scalars['String']['output'];
|
|
37389
|
+
};
|
|
36536
37390
|
export type ShepherdAlert = Node & {
|
|
36537
37391
|
__typename?: 'ShepherdAlert';
|
|
36538
37392
|
assignee?: Maybe<ShepherdUser>;
|
|
@@ -36613,6 +37467,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
36613
37467
|
DataSecurityPolicyActivated = "DATA_SECURITY_POLICY_ACTIVATED",
|
|
36614
37468
|
DataSecurityPolicyDeactivated = "DATA_SECURITY_POLICY_DEACTIVATED",
|
|
36615
37469
|
DataSecurityPolicyDeleted = "DATA_SECURITY_POLICY_DELETED",
|
|
37470
|
+
DataSecurityPolicyUpdated = "DATA_SECURITY_POLICY_UPDATED",
|
|
36616
37471
|
Default = "DEFAULT",
|
|
36617
37472
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
36618
37473
|
DeletedDomain = "DELETED_DOMAIN",
|
|
@@ -36716,6 +37571,48 @@ export type ShepherdCurrentUser = {
|
|
|
36716
37571
|
isOrgAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
36717
37572
|
user?: Maybe<ShepherdUser>;
|
|
36718
37573
|
};
|
|
37574
|
+
export type ShepherdCustomContentScanningDetection = {
|
|
37575
|
+
__typename?: 'ShepherdCustomContentScanningDetection';
|
|
37576
|
+
rules: Array<Maybe<ShepherdCustomScanningRule>>;
|
|
37577
|
+
};
|
|
37578
|
+
export type ShepherdCustomDetection = {
|
|
37579
|
+
__typename?: 'ShepherdCustomDetection';
|
|
37580
|
+
description: Scalars['String']['output'];
|
|
37581
|
+
enabled: Scalars['Boolean']['output'];
|
|
37582
|
+
id: Scalars['ID']['output'];
|
|
37583
|
+
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
37584
|
+
title: Scalars['String']['output'];
|
|
37585
|
+
value: ShepherdCustomDetectionValueType;
|
|
37586
|
+
};
|
|
37587
|
+
export type ShepherdCustomDetectionMutationPayload = Payload & {
|
|
37588
|
+
__typename?: 'ShepherdCustomDetectionMutationPayload';
|
|
37589
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37590
|
+
node?: Maybe<ShepherdCustomDetection>;
|
|
37591
|
+
success: Scalars['Boolean']['output'];
|
|
37592
|
+
};
|
|
37593
|
+
export type ShepherdCustomDetectionValueType = ShepherdCustomContentScanningDetection;
|
|
37594
|
+
export declare enum ShepherdCustomScanningMatchType {
|
|
37595
|
+
String = "STRING",
|
|
37596
|
+
Word = "WORD"
|
|
37597
|
+
}
|
|
37598
|
+
export type ShepherdCustomScanningRule = ShepherdCustomScanningStringMatchRule;
|
|
37599
|
+
export type ShepherdCustomScanningRuleInput = {
|
|
37600
|
+
stringMatch?: InputMaybe<ShepherdCustomScanningStringMatchRuleInput>;
|
|
37601
|
+
};
|
|
37602
|
+
export type ShepherdCustomScanningStringMatchRule = {
|
|
37603
|
+
__typename?: 'ShepherdCustomScanningStringMatchRule';
|
|
37604
|
+
matchType: ShepherdCustomScanningMatchType;
|
|
37605
|
+
term: Scalars['String']['output'];
|
|
37606
|
+
};
|
|
37607
|
+
export type ShepherdCustomScanningStringMatchRuleInput = {
|
|
37608
|
+
matchType: ShepherdCustomScanningMatchType;
|
|
37609
|
+
term: Scalars['String']['input'];
|
|
37610
|
+
};
|
|
37611
|
+
export type ShepherdDeleteAlertPayload = Payload & {
|
|
37612
|
+
__typename?: 'ShepherdDeleteAlertPayload';
|
|
37613
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37614
|
+
success: Scalars['Boolean']['output'];
|
|
37615
|
+
};
|
|
36719
37616
|
export type ShepherdDescriptionTemplate = {
|
|
36720
37617
|
__typename?: 'ShepherdDescriptionTemplate';
|
|
36721
37618
|
extendedText?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -36824,6 +37721,7 @@ export type ShepherdMutation = {
|
|
|
36824
37721
|
actor?: Maybe<ShepherdActorMutations>;
|
|
36825
37722
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
36826
37723
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
37724
|
+
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
36827
37725
|
subscription?: Maybe<ShepherdSubscriptionMutations>;
|
|
36828
37726
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
36829
37727
|
updateAlerts?: Maybe<ShepherdUpdateAlertsPayload>;
|
|
@@ -36835,6 +37733,9 @@ export type ShepherdMutationCreateAlertArgs = {
|
|
|
36835
37733
|
export type ShepherdMutationCreateExampleAlertArgs = {
|
|
36836
37734
|
input: ShepherdCreateExampleAlertInput;
|
|
36837
37735
|
};
|
|
37736
|
+
export type ShepherdMutationDeleteAlertArgs = {
|
|
37737
|
+
id: Scalars['ID']['input'];
|
|
37738
|
+
};
|
|
36838
37739
|
export type ShepherdMutationUpdateAlertArgs = {
|
|
36839
37740
|
id: Scalars['ID']['input'];
|
|
36840
37741
|
input: ShepherdUpdateAlertInput;
|
|
@@ -36922,6 +37823,15 @@ export type ShepherdResourceActivity = {
|
|
|
36922
37823
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
36923
37824
|
time: Scalars['DateTime']['output'];
|
|
36924
37825
|
};
|
|
37826
|
+
export declare enum ShepherdSessionAuthFactors {
|
|
37827
|
+
Google = "GOOGLE",
|
|
37828
|
+
Microsoft = "MICROSOFT",
|
|
37829
|
+
Password = "PASSWORD",
|
|
37830
|
+
Saml = "SAML",
|
|
37831
|
+
Slack = "SLACK",
|
|
37832
|
+
Sms = "SMS",
|
|
37833
|
+
Totp = "TOTP"
|
|
37834
|
+
}
|
|
36925
37835
|
export type ShepherdSite = {
|
|
36926
37836
|
__typename?: 'ShepherdSite';
|
|
36927
37837
|
cloudId: Scalars['ID']['output'];
|
|
@@ -37101,6 +38011,7 @@ export type ShepherdWorkspace = {
|
|
|
37101
38011
|
cloudId: Scalars['ID']['output'];
|
|
37102
38012
|
cloudName?: Maybe<Scalars['String']['output']>;
|
|
37103
38013
|
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
38014
|
+
customDetections: Array<ShepherdCustomDetection>;
|
|
37104
38015
|
detections: Array<ShepherdDetection>;
|
|
37105
38016
|
id: Scalars['ID']['output'];
|
|
37106
38017
|
orgId: Scalars['ID']['output'];
|
|
@@ -37108,6 +38019,9 @@ export type ShepherdWorkspace = {
|
|
|
37108
38019
|
sites?: Maybe<Array<Maybe<ShepherdSite>>>;
|
|
37109
38020
|
vortexMode?: Maybe<ShepherdVortexModeStatus>;
|
|
37110
38021
|
};
|
|
38022
|
+
export type ShepherdWorkspaceCustomDetectionsArgs = {
|
|
38023
|
+
customDetectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
38024
|
+
};
|
|
37111
38025
|
export type ShepherdWorkspaceDetectionsArgs = {
|
|
37112
38026
|
detectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
37113
38027
|
settingId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -37116,6 +38030,12 @@ export type ShepherdWorkspaceConnection = {
|
|
|
37116
38030
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
37117
38031
|
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|
|
37118
38032
|
};
|
|
38033
|
+
export type ShepherdWorkspaceCreateCustomDetectionInput = {
|
|
38034
|
+
description: Scalars['String']['input'];
|
|
38035
|
+
products: Array<ShepherdAtlassianProduct>;
|
|
38036
|
+
rules: Array<ShepherdCustomScanningRuleInput>;
|
|
38037
|
+
title: Scalars['String']['input'];
|
|
38038
|
+
};
|
|
37119
38039
|
export type ShepherdWorkspaceEdge = {
|
|
37120
38040
|
__typename?: 'ShepherdWorkspaceEdge';
|
|
37121
38041
|
node?: Maybe<ShepherdWorkspace>;
|
|
@@ -37128,10 +38048,21 @@ export type ShepherdWorkspaceMutationPayload = Payload & {
|
|
|
37128
38048
|
};
|
|
37129
38049
|
export type ShepherdWorkspaceMutations = {
|
|
37130
38050
|
__typename?: 'ShepherdWorkspaceMutations';
|
|
38051
|
+
createCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
38052
|
+
deleteCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
37131
38053
|
onboard?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
37132
38054
|
update?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
38055
|
+
updateCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
37133
38056
|
updateDetectionSetting?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
37134
38057
|
};
|
|
38058
|
+
export type ShepherdWorkspaceMutationsCreateCustomDetectionArgs = {
|
|
38059
|
+
input: ShepherdWorkspaceCreateCustomDetectionInput;
|
|
38060
|
+
workspaceId: Scalars['ID']['input'];
|
|
38061
|
+
};
|
|
38062
|
+
export type ShepherdWorkspaceMutationsDeleteCustomDetectionArgs = {
|
|
38063
|
+
customDetectionId: Scalars['ID']['input'];
|
|
38064
|
+
workspaceId: Scalars['ID']['input'];
|
|
38065
|
+
};
|
|
37135
38066
|
export type ShepherdWorkspaceMutationsOnboardArgs = {
|
|
37136
38067
|
id: Scalars['ID']['input'];
|
|
37137
38068
|
};
|
|
@@ -37139,6 +38070,10 @@ export type ShepherdWorkspaceMutationsUpdateArgs = {
|
|
|
37139
38070
|
id: Scalars['ID']['input'];
|
|
37140
38071
|
input: ShepherdWorkspaceUpdateInput;
|
|
37141
38072
|
};
|
|
38073
|
+
export type ShepherdWorkspaceMutationsUpdateCustomDetectionArgs = {
|
|
38074
|
+
input: ShepherdWorkspaceUpdateCustomDetectionInput;
|
|
38075
|
+
workspaceId: Scalars['ID']['input'];
|
|
38076
|
+
};
|
|
37142
38077
|
export type ShepherdWorkspaceMutationsUpdateDetectionSettingArgs = {
|
|
37143
38078
|
id: Scalars['ID']['input'];
|
|
37144
38079
|
input: ShepherdWorkspaceSettingUpdateInput;
|
|
@@ -37153,6 +38088,14 @@ export type ShepherdWorkspaceSettingValueInput = {
|
|
|
37153
38088
|
enabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37154
38089
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
37155
38090
|
};
|
|
38091
|
+
export type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
38092
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
38093
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38094
|
+
id: Scalars['ID']['input'];
|
|
38095
|
+
products?: InputMaybe<Array<ShepherdAtlassianProduct>>;
|
|
38096
|
+
rules?: InputMaybe<Array<ShepherdCustomScanningRuleInput>>;
|
|
38097
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
38098
|
+
};
|
|
37156
38099
|
export type ShepherdWorkspaceUpdateInput = {
|
|
37157
38100
|
shouldOnboard: Scalars['Boolean']['input'];
|
|
37158
38101
|
};
|