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