@forge/cli-shared 3.25.1-next.3 → 3.25.1-next.3-experimental-7fc11d3
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 +10 -0
- package/out/graphql/graphql-types.d.ts +689 -210
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +65 -10
- package/package.json +2 -2
|
@@ -1757,7 +1757,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1757
1757
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1758
1758
|
id: Scalars['ID']['output'];
|
|
1759
1759
|
};
|
|
1760
|
-
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1760
|
+
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1761
1761
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1762
1762
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1763
1763
|
from?: Maybe<Scalars['ID']['output']>;
|
|
@@ -1852,6 +1852,7 @@ export declare type AtlassianAccountUser = LocalizationContext & User & {
|
|
|
1852
1852
|
accountId: Scalars['ID']['output'];
|
|
1853
1853
|
accountStatus: AccountStatus;
|
|
1854
1854
|
canonicalAccountId: Scalars['ID']['output'];
|
|
1855
|
+
characteristics?: Maybe<Scalars['JSON']['output']>;
|
|
1855
1856
|
email?: Maybe<Scalars['String']['output']>;
|
|
1856
1857
|
extendedProfile?: Maybe<AtlassianAccountUserExtendedProfile>;
|
|
1857
1858
|
id: Scalars['ID']['output'];
|
|
@@ -1864,10 +1865,13 @@ export declare type AtlassianAccountUser = LocalizationContext & User & {
|
|
|
1864
1865
|
};
|
|
1865
1866
|
export declare type AtlassianAccountUserExtendedProfile = {
|
|
1866
1867
|
__typename?: 'AtlassianAccountUserExtendedProfile';
|
|
1868
|
+
closedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1867
1869
|
department?: Maybe<Scalars['String']['output']>;
|
|
1870
|
+
inactiveDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1868
1871
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
1869
1872
|
location?: Maybe<Scalars['String']['output']>;
|
|
1870
1873
|
organization?: Maybe<Scalars['String']['output']>;
|
|
1874
|
+
phoneNumbers?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1871
1875
|
};
|
|
1872
1876
|
export declare type AtlassianOAuthClient = {
|
|
1873
1877
|
__typename?: 'AtlassianOAuthClient';
|
|
@@ -3067,6 +3071,18 @@ export declare type CompassAcknowledgeAnnouncementPayload = Payload & {
|
|
|
3067
3071
|
errors?: Maybe<Array<MutationError>>;
|
|
3068
3072
|
success: Scalars['Boolean']['output'];
|
|
3069
3073
|
};
|
|
3074
|
+
export declare type CompassAddDocumentInput = {
|
|
3075
|
+
componentId: Scalars['ID']['input'];
|
|
3076
|
+
documentationCategoryId: Scalars['ID']['input'];
|
|
3077
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
3078
|
+
url: Scalars['URL']['input'];
|
|
3079
|
+
};
|
|
3080
|
+
export declare type CompassAddDocumentPayload = Payload & {
|
|
3081
|
+
__typename?: 'CompassAddDocumentPayload';
|
|
3082
|
+
documentDetails?: Maybe<CompassDocument>;
|
|
3083
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3084
|
+
success: Scalars['Boolean']['output'];
|
|
3085
|
+
};
|
|
3070
3086
|
export declare type CompassAddTeamLabelsInput = {
|
|
3071
3087
|
cloudId: Scalars['ID']['input'];
|
|
3072
3088
|
labels: Array<Scalars['String']['input']>;
|
|
@@ -3205,6 +3221,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3205
3221
|
__typename?: 'CompassCatalogMutationApi';
|
|
3206
3222
|
acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
|
|
3207
3223
|
addComponentLabels?: Maybe<AddCompassComponentLabelsPayload>;
|
|
3224
|
+
addDocument?: Maybe<CompassAddDocumentPayload>;
|
|
3208
3225
|
addTeamLabels?: Maybe<CompassAddTeamLabelsPayload>;
|
|
3209
3226
|
applyScorecardToComponent?: Maybe<ApplyCompassScorecardToComponentPayload>;
|
|
3210
3227
|
attachComponentDataManager?: Maybe<AttachCompassComponentDataManagerPayload>;
|
|
@@ -3270,6 +3287,9 @@ export declare type CompassCatalogMutationApiAcknowledgeAnnouncementArgs = {
|
|
|
3270
3287
|
export declare type CompassCatalogMutationApiAddComponentLabelsArgs = {
|
|
3271
3288
|
input: AddCompassComponentLabelsInput;
|
|
3272
3289
|
};
|
|
3290
|
+
export declare type CompassCatalogMutationApiAddDocumentArgs = {
|
|
3291
|
+
input: CompassAddDocumentInput;
|
|
3292
|
+
};
|
|
3273
3293
|
export declare type CompassCatalogMutationApiAddTeamLabelsArgs = {
|
|
3274
3294
|
input: CompassAddTeamLabelsInput;
|
|
3275
3295
|
};
|
|
@@ -3981,7 +4001,7 @@ export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
|
3981
4001
|
success: Scalars['Boolean']['output'];
|
|
3982
4002
|
};
|
|
3983
4003
|
export declare type CompassCreatePullRequestEventInput = {
|
|
3984
|
-
cloudId
|
|
4004
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
3985
4005
|
lastUpdated: Scalars['DateTime']['input'];
|
|
3986
4006
|
pullRequestProperties: CompassPullRequestInputProperties;
|
|
3987
4007
|
};
|
|
@@ -4367,6 +4387,15 @@ export declare enum CompassDeploymentEventState {
|
|
|
4367
4387
|
Successful = "SUCCESSFUL",
|
|
4368
4388
|
Unknown = "UNKNOWN"
|
|
4369
4389
|
}
|
|
4390
|
+
export declare type CompassDocument = Node & {
|
|
4391
|
+
__typename?: 'CompassDocument';
|
|
4392
|
+
changeMetadata: CompassChangeMetadata;
|
|
4393
|
+
componentId: Scalars['ID']['output'];
|
|
4394
|
+
documentCategoryId: Scalars['ID']['output'];
|
|
4395
|
+
id: Scalars['ID']['output'];
|
|
4396
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
4397
|
+
url: Scalars['URL']['output'];
|
|
4398
|
+
};
|
|
4370
4399
|
export declare type CompassDocumentationCategoriesConnection = {
|
|
4371
4400
|
__typename?: 'CompassDocumentationCategoriesConnection';
|
|
4372
4401
|
edges?: Maybe<Array<CompassDocumentationCategoryEdge>>;
|
|
@@ -4855,6 +4884,23 @@ export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTim
|
|
|
4855
4884
|
export declare type CompassPlainMetricSourceConfigurationInput = {
|
|
4856
4885
|
query: Scalars['String']['input'];
|
|
4857
4886
|
};
|
|
4887
|
+
export declare type CompassPullRequestEvent = CompassEvent & {
|
|
4888
|
+
__typename?: 'CompassPullRequestEvent';
|
|
4889
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4890
|
+
displayName: Scalars['String']['output'];
|
|
4891
|
+
eventType: CompassEventType;
|
|
4892
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
4893
|
+
pullRequestEventProperties: CompassPullRequestEventProperties;
|
|
4894
|
+
updateSequenceNumber: Scalars['Long']['output'];
|
|
4895
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
4896
|
+
};
|
|
4897
|
+
export declare type CompassPullRequestEventProperties = {
|
|
4898
|
+
__typename?: 'CompassPullRequestEventProperties';
|
|
4899
|
+
id: Scalars['String']['output'];
|
|
4900
|
+
pullRequestUrl: Scalars['String']['output'];
|
|
4901
|
+
repoUrl: Scalars['String']['output'];
|
|
4902
|
+
status: CompassCreatePullRequestStatus;
|
|
4903
|
+
};
|
|
4858
4904
|
export declare type CompassPullRequestInputProperties = {
|
|
4859
4905
|
id: Scalars['String']['input'];
|
|
4860
4906
|
pullRequestUrl: Scalars['String']['input'];
|
|
@@ -4972,8 +5018,6 @@ export declare type CompassScorecard = Node & {
|
|
|
4972
5018
|
changeMetadata: CompassChangeMetadata;
|
|
4973
5019
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
4974
5020
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
4975
|
-
componentType: CompassComponentType;
|
|
4976
|
-
componentTypeId: Scalars['ID']['output'];
|
|
4977
5021
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
4978
5022
|
criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
|
|
4979
5023
|
criterias?: Maybe<Array<CompassScorecardCriteria>>;
|
|
@@ -5419,6 +5463,10 @@ export declare type CompassStarredComponentsResult = CompassStarredComponentConn
|
|
|
5419
5463
|
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
5420
5464
|
cloudId: Scalars['ID']['input'];
|
|
5421
5465
|
forgeAppId: Scalars['ID']['input'];
|
|
5466
|
+
options?: InputMaybe<CompassSynchronizeLinkAssociationsOptions>;
|
|
5467
|
+
};
|
|
5468
|
+
export declare type CompassSynchronizeLinkAssociationsOptions = {
|
|
5469
|
+
eventTypes?: InputMaybe<Array<InputMaybe<CompassEventType>>>;
|
|
5422
5470
|
};
|
|
5423
5471
|
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
5424
5472
|
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
@@ -6923,6 +6971,15 @@ export declare type ContentPlatformEmbeddedVideoAsset = {
|
|
|
6923
6971
|
embeddedVideoAssetName?: Maybe<Scalars['String']['output']>;
|
|
6924
6972
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6925
6973
|
};
|
|
6974
|
+
export declare type ContentPlatformFeaturedVideo = {
|
|
6975
|
+
__typename?: 'ContentPlatformFeaturedVideo';
|
|
6976
|
+
callToActionText?: Maybe<Scalars['String']['output']>;
|
|
6977
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6978
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
6979
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
6980
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6981
|
+
videoName?: Maybe<Scalars['String']['output']>;
|
|
6982
|
+
};
|
|
6926
6983
|
export declare type ContentPlatformField = {
|
|
6927
6984
|
field: ContentPlatformFieldNames;
|
|
6928
6985
|
};
|
|
@@ -6944,7 +7001,7 @@ export declare type ContentPlatformHubArticle = {
|
|
|
6944
7001
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6945
7002
|
urlSlug: Scalars['String']['output'];
|
|
6946
7003
|
};
|
|
6947
|
-
export declare type
|
|
7004
|
+
export declare type ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion = ContentPlatformFeaturedVideo | ContentPlatformHubArticle | ContentPlatformProductFeature | ContentPlatformTutorial;
|
|
6948
7005
|
export declare type ContentPlatformHubArticleAndTutorialUnion = ContentPlatformHubArticle | ContentPlatformTutorial;
|
|
6949
7006
|
export declare type ContentPlatformImageAsset = {
|
|
6950
7007
|
__typename?: 'ContentPlatformImageAsset';
|
|
@@ -7332,7 +7389,7 @@ export declare type ContentPlatformTopicOverview = {
|
|
|
7332
7389
|
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
7333
7390
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7334
7391
|
description?: Maybe<Scalars['String']['output']>;
|
|
7335
|
-
featuredContentContainer?: Maybe<Array<
|
|
7392
|
+
featuredContentContainer?: Maybe<Array<ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion>>;
|
|
7336
7393
|
mainCallToAction?: Maybe<ContentPlatformCallToAction>;
|
|
7337
7394
|
name?: Maybe<Scalars['String']['output']>;
|
|
7338
7395
|
nextBestAction: Array<ContentPlatformHubArticleAndTutorialUnion>;
|
|
@@ -8018,6 +8075,7 @@ export declare type CustomerServiceAttributeConfigMetadataUpdateInput = {
|
|
|
8018
8075
|
contextConfigurations?: InputMaybe<Array<InputMaybe<CustomerServiceContextConfigurationInput>>>;
|
|
8019
8076
|
id: Scalars['ID']['input'];
|
|
8020
8077
|
position?: InputMaybe<Scalars['Int']['input']>;
|
|
8078
|
+
styleConfiguration?: InputMaybe<CustomerServiceCustomAttributeStyleConfigurationInput>;
|
|
8021
8079
|
};
|
|
8022
8080
|
export declare type CustomerServiceAttributeConfigMetadataUpdatePayload = Payload & {
|
|
8023
8081
|
__typename?: 'CustomerServiceAttributeConfigMetadataUpdatePayload';
|
|
@@ -8061,7 +8119,8 @@ export declare enum CustomerServiceAttributeTypeName {
|
|
|
8061
8119
|
Phone = "PHONE",
|
|
8062
8120
|
Select = "SELECT",
|
|
8063
8121
|
Text = "TEXT",
|
|
8064
|
-
Url = "URL"
|
|
8122
|
+
Url = "URL",
|
|
8123
|
+
User = "USER"
|
|
8065
8124
|
}
|
|
8066
8125
|
export declare type CustomerServiceAttributeUpdateInput = {
|
|
8067
8126
|
id: Scalars['ID']['input'];
|
|
@@ -8083,6 +8142,7 @@ export declare type CustomerServiceAttributeValue = Node & {
|
|
|
8083
8142
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
8084
8143
|
id: Scalars['ID']['output'];
|
|
8085
8144
|
name: Scalars['String']['output'];
|
|
8145
|
+
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
8086
8146
|
type: CustomerServiceAttributeType;
|
|
8087
8147
|
value?: Maybe<Scalars['String']['output']>;
|
|
8088
8148
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -8109,6 +8169,29 @@ export declare enum CustomerServiceContextType {
|
|
|
8109
8169
|
Default = "DEFAULT",
|
|
8110
8170
|
Issue = "ISSUE"
|
|
8111
8171
|
}
|
|
8172
|
+
export declare type CustomerServiceCustomAttributeOptionStyle = {
|
|
8173
|
+
__typename?: 'CustomerServiceCustomAttributeOptionStyle';
|
|
8174
|
+
backgroundColour: Scalars['String']['output'];
|
|
8175
|
+
};
|
|
8176
|
+
export declare type CustomerServiceCustomAttributeOptionStyleInput = {
|
|
8177
|
+
backgroundColour: Scalars['String']['input'];
|
|
8178
|
+
};
|
|
8179
|
+
export declare type CustomerServiceCustomAttributeOptionsStyleConfiguration = {
|
|
8180
|
+
__typename?: 'CustomerServiceCustomAttributeOptionsStyleConfiguration';
|
|
8181
|
+
optionValue: Scalars['String']['output'];
|
|
8182
|
+
style: CustomerServiceCustomAttributeOptionStyle;
|
|
8183
|
+
};
|
|
8184
|
+
export declare type CustomerServiceCustomAttributeOptionsStyleConfigurationInput = {
|
|
8185
|
+
optionValue: Scalars['String']['input'];
|
|
8186
|
+
style: CustomerServiceCustomAttributeOptionStyleInput;
|
|
8187
|
+
};
|
|
8188
|
+
export declare type CustomerServiceCustomAttributeStyleConfiguration = {
|
|
8189
|
+
__typename?: 'CustomerServiceCustomAttributeStyleConfiguration';
|
|
8190
|
+
options?: Maybe<Array<CustomerServiceCustomAttributeOptionsStyleConfiguration>>;
|
|
8191
|
+
};
|
|
8192
|
+
export declare type CustomerServiceCustomAttributeStyleConfigurationInput = {
|
|
8193
|
+
options?: InputMaybe<Array<CustomerServiceCustomAttributeOptionsStyleConfigurationInput>>;
|
|
8194
|
+
};
|
|
8112
8195
|
export declare type CustomerServiceCustomDetail = Node & {
|
|
8113
8196
|
__typename?: 'CustomerServiceCustomDetail';
|
|
8114
8197
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
@@ -8120,11 +8203,13 @@ export declare type CustomerServiceCustomDetailConfigMetadata = {
|
|
|
8120
8203
|
__typename?: 'CustomerServiceCustomDetailConfigMetadata';
|
|
8121
8204
|
contextConfigurations?: Maybe<Array<CustomerServiceContextConfiguration>>;
|
|
8122
8205
|
position?: Maybe<Scalars['Int']['output']>;
|
|
8206
|
+
styleConfiguration?: Maybe<CustomerServiceCustomAttributeStyleConfiguration>;
|
|
8123
8207
|
};
|
|
8124
8208
|
export declare type CustomerServiceCustomDetailConfigMetadataUpdateInput = {
|
|
8125
8209
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
8126
8210
|
id: Scalars['ID']['input'];
|
|
8127
8211
|
position?: InputMaybe<Scalars['Int']['input']>;
|
|
8212
|
+
styleConfiguration?: InputMaybe<CustomerServiceCustomAttributeStyleConfigurationInput>;
|
|
8128
8213
|
};
|
|
8129
8214
|
export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Payload & {
|
|
8130
8215
|
__typename?: 'CustomerServiceCustomDetailConfigMetadataUpdatePayload';
|
|
@@ -8136,6 +8221,7 @@ export declare type CustomerServiceCustomDetailCreateInput = {
|
|
|
8136
8221
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
8137
8222
|
customDetailEntityType: CustomerServiceCustomDetailsEntityType;
|
|
8138
8223
|
name: Scalars['String']['input'];
|
|
8224
|
+
styleConfiguration?: InputMaybe<CustomerServiceCustomAttributeStyleConfigurationInput>;
|
|
8139
8225
|
type?: InputMaybe<CustomerServiceCustomDetailCreateTypeInput>;
|
|
8140
8226
|
};
|
|
8141
8227
|
export declare type CustomerServiceCustomDetailCreatePayload = Payload & {
|
|
@@ -8175,7 +8261,8 @@ export declare enum CustomerServiceCustomDetailTypeName {
|
|
|
8175
8261
|
Phone = "PHONE",
|
|
8176
8262
|
Select = "SELECT",
|
|
8177
8263
|
Text = "TEXT",
|
|
8178
|
-
Url = "URL"
|
|
8264
|
+
Url = "URL",
|
|
8265
|
+
User = "USER"
|
|
8179
8266
|
}
|
|
8180
8267
|
export declare type CustomerServiceCustomDetailUpdateInput = {
|
|
8181
8268
|
id: Scalars['ID']['input'];
|
|
@@ -8197,6 +8284,7 @@ export declare type CustomerServiceCustomDetailValue = Node & {
|
|
|
8197
8284
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
8198
8285
|
id: Scalars['ID']['output'];
|
|
8199
8286
|
name: Scalars['String']['output'];
|
|
8287
|
+
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
8200
8288
|
type: CustomerServiceCustomDetailType;
|
|
8201
8289
|
value?: Maybe<Scalars['String']['output']>;
|
|
8202
8290
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -8611,6 +8699,7 @@ export declare type CustomerServiceOrganizationUpdatePayload = Payload & {
|
|
|
8611
8699
|
success: Scalars['Boolean']['output'];
|
|
8612
8700
|
successfullyUpdatedOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
8613
8701
|
};
|
|
8702
|
+
export declare type CustomerServicePlatformDetailValue = CustomerServiceUserDetailValue;
|
|
8614
8703
|
export declare type CustomerServiceProduct = Node & {
|
|
8615
8704
|
__typename?: 'CustomerServiceProduct';
|
|
8616
8705
|
entitlementsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8675,6 +8764,7 @@ export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
|
8675
8764
|
};
|
|
8676
8765
|
export declare type CustomerServiceQueryApiEntitlementByIdArgs = {
|
|
8677
8766
|
entitlementId: Scalars['ID']['input'];
|
|
8767
|
+
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
8678
8768
|
};
|
|
8679
8769
|
export declare type CustomerServiceQueryApiIndividualByAccountIdArgs = {
|
|
8680
8770
|
accountId: Scalars['ID']['input'];
|
|
@@ -8711,6 +8801,12 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
8711
8801
|
errors?: Maybe<Array<MutationError>>;
|
|
8712
8802
|
success: Scalars['Boolean']['output'];
|
|
8713
8803
|
};
|
|
8804
|
+
export declare type CustomerServiceUserDetailValue = {
|
|
8805
|
+
__typename?: 'CustomerServiceUserDetailValue';
|
|
8806
|
+
accountId: Scalars['ID']['output'];
|
|
8807
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8808
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8809
|
+
};
|
|
8714
8810
|
export declare type CustomerUser = LocalizationContext & User & {
|
|
8715
8811
|
__typename?: 'CustomerUser';
|
|
8716
8812
|
accountId: Scalars['ID']['output'];
|
|
@@ -9113,6 +9209,8 @@ export declare type DevOps = {
|
|
|
9113
9209
|
designEntityDetails?: Maybe<Array<Maybe<DevOpsDesign>>>;
|
|
9114
9210
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
9115
9211
|
graph?: Maybe<Graph>;
|
|
9212
|
+
operationsIncidentEntityDetails?: Maybe<Array<Maybe<DevOpsOperationsIncidentDetails>>>;
|
|
9213
|
+
operationsPostIncidentReviewEntityDetails?: Maybe<Array<Maybe<DevOpsOperationsPostIncidentReviewDetails>>>;
|
|
9116
9214
|
providers?: Maybe<DevOpsProviders>;
|
|
9117
9215
|
providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
9118
9216
|
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
@@ -9126,6 +9224,12 @@ export declare type DevOpsDesignEntityDetailsArgs = {
|
|
|
9126
9224
|
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
9127
9225
|
ids: Array<Scalars['ID']['input']>;
|
|
9128
9226
|
};
|
|
9227
|
+
export declare type DevOpsOperationsIncidentEntityDetailsArgs = {
|
|
9228
|
+
ids: Array<Scalars['ID']['input']>;
|
|
9229
|
+
};
|
|
9230
|
+
export declare type DevOpsOperationsPostIncidentReviewEntityDetailsArgs = {
|
|
9231
|
+
ids: Array<Scalars['ID']['input']>;
|
|
9232
|
+
};
|
|
9129
9233
|
export declare type DevOpsProvidersArgs = {
|
|
9130
9234
|
id: Scalars['ID']['input'];
|
|
9131
9235
|
providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
|
|
@@ -9200,6 +9304,45 @@ export declare type DevOpsBuildTestInfo = {
|
|
|
9200
9304
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
9201
9305
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
9202
9306
|
};
|
|
9307
|
+
export declare enum DevOpsComponentTier {
|
|
9308
|
+
Tier_1 = "TIER_1",
|
|
9309
|
+
Tier_2 = "TIER_2",
|
|
9310
|
+
Tier_3 = "TIER_3",
|
|
9311
|
+
Tier_4 = "TIER_4"
|
|
9312
|
+
}
|
|
9313
|
+
export declare enum DevOpsComponentType {
|
|
9314
|
+
Application = "APPLICATION",
|
|
9315
|
+
Capability = "CAPABILITY",
|
|
9316
|
+
CloudResource = "CLOUD_RESOURCE",
|
|
9317
|
+
DataPipeline = "DATA_PIPELINE",
|
|
9318
|
+
Library = "LIBRARY",
|
|
9319
|
+
MachineLearningModel = "MACHINE_LEARNING_MODEL",
|
|
9320
|
+
Other = "OTHER",
|
|
9321
|
+
Service = "SERVICE",
|
|
9322
|
+
UiElement = "UI_ELEMENT",
|
|
9323
|
+
Website = "WEBSITE"
|
|
9324
|
+
}
|
|
9325
|
+
export declare type DevOpsComponentsProvider = DevOpsDataProvider & {
|
|
9326
|
+
__typename?: 'DevOpsComponentsProvider';
|
|
9327
|
+
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9328
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
9329
|
+
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9330
|
+
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9331
|
+
id: Scalars['ID']['output'];
|
|
9332
|
+
linkedContainers?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
|
|
9333
|
+
logoUrl?: Maybe<Scalars['URL']['output']>;
|
|
9334
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9335
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
9336
|
+
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
9337
|
+
};
|
|
9338
|
+
export declare type DevOpsComponentsProviderConfigStateArgs = {
|
|
9339
|
+
cloudId: Scalars['ID']['input'];
|
|
9340
|
+
};
|
|
9341
|
+
export declare type DevOpsComponentsProviderLinkedContainersArgs = {
|
|
9342
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9343
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9344
|
+
id: Scalars['ID']['input'];
|
|
9345
|
+
};
|
|
9203
9346
|
export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
9204
9347
|
key: Scalars['String']['input'];
|
|
9205
9348
|
value: Scalars['JSON']['input'];
|
|
@@ -9658,10 +9801,25 @@ export declare type DevOpsMutation = {
|
|
|
9658
9801
|
export declare type DevOpsMutation_EmptyArgs = {
|
|
9659
9802
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
9660
9803
|
};
|
|
9804
|
+
export declare type DevOpsOperationsComponentDetails = {
|
|
9805
|
+
__typename?: 'DevOpsOperationsComponentDetails';
|
|
9806
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
9807
|
+
componentType?: Maybe<DevOpsComponentType>;
|
|
9808
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
9809
|
+
id: Scalars['ID']['output'];
|
|
9810
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9811
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9812
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
9813
|
+
providerComponentId?: Maybe<Scalars['String']['output']>;
|
|
9814
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
9815
|
+
tier?: Maybe<DevOpsComponentTier>;
|
|
9816
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
9817
|
+
};
|
|
9661
9818
|
export declare type DevOpsOperationsIncidentDetails = {
|
|
9662
9819
|
__typename?: 'DevOpsOperationsIncidentDetails';
|
|
9663
9820
|
actionItems?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueConnection>;
|
|
9664
9821
|
affectedComponentIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9822
|
+
affectedComponents?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
9665
9823
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
9666
9824
|
description?: Maybe<Scalars['String']['output']>;
|
|
9667
9825
|
id: Scalars['ID']['output'];
|
|
@@ -9675,6 +9833,10 @@ export declare type DevOpsOperationsIncidentDetailsActionItemsArgs = {
|
|
|
9675
9833
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9676
9834
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9677
9835
|
};
|
|
9836
|
+
export declare type DevOpsOperationsIncidentDetailsAffectedComponentsArgs = {
|
|
9837
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9838
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9839
|
+
};
|
|
9678
9840
|
export declare type DevOpsOperationsIncidentDetailsLinkedPostIncidentReviewsArgs = {
|
|
9679
9841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9680
9842
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -9693,6 +9855,19 @@ export declare enum DevOpsOperationsIncidentStatus {
|
|
|
9693
9855
|
Resolved = "RESOLVED",
|
|
9694
9856
|
Unknown = "UNKNOWN"
|
|
9695
9857
|
}
|
|
9858
|
+
export declare type DevOpsOperationsPostIncidentReviewDetails = {
|
|
9859
|
+
__typename?: 'DevOpsOperationsPostIncidentReviewDetails';
|
|
9860
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
9861
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
9862
|
+
id: Scalars['ID']['output'];
|
|
9863
|
+
lastUpdatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
9864
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
9865
|
+
providerPostIncidentReviewId?: Maybe<Scalars['String']['output']>;
|
|
9866
|
+
reviewsIncidentIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9867
|
+
status?: Maybe<DevOpsPostIncidentReviewStatus>;
|
|
9868
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
9869
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
9870
|
+
};
|
|
9696
9871
|
export declare type DevOpsOperationsProvider = DevOpsDataProvider & {
|
|
9697
9872
|
__typename?: 'DevOpsOperationsProvider';
|
|
9698
9873
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -9714,6 +9889,11 @@ export declare type DevOpsOperationsProviderLinkedContainersArgs = {
|
|
|
9714
9889
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9715
9890
|
id: Scalars['ID']['input'];
|
|
9716
9891
|
};
|
|
9892
|
+
export declare enum DevOpsPostIncidentReviewStatus {
|
|
9893
|
+
Completed = "COMPLETED",
|
|
9894
|
+
InProgress = "IN_PROGRESS",
|
|
9895
|
+
Todo = "TODO"
|
|
9896
|
+
}
|
|
9717
9897
|
export declare type DevOpsProvider = {
|
|
9718
9898
|
__typename?: 'DevOpsProvider';
|
|
9719
9899
|
links?: Maybe<DevOpsProviderLinks>;
|
|
@@ -9730,6 +9910,7 @@ export declare enum DevOpsProviderType {
|
|
|
9730
9910
|
Build = "BUILD",
|
|
9731
9911
|
Deployment = "DEPLOYMENT",
|
|
9732
9912
|
Design = "DESIGN",
|
|
9913
|
+
DevopsComponents = "DEVOPS_COMPONENTS",
|
|
9733
9914
|
DevInfo = "DEV_INFO",
|
|
9734
9915
|
Documentation = "DOCUMENTATION",
|
|
9735
9916
|
FeatureFlag = "FEATURE_FLAG",
|
|
@@ -9743,6 +9924,7 @@ export declare type DevOpsProviders = {
|
|
|
9743
9924
|
deploymentProviders?: Maybe<Array<Maybe<DevOpsDeploymentProvider>>>;
|
|
9744
9925
|
designProviders?: Maybe<Array<Maybe<DevOpsDesignProvider>>>;
|
|
9745
9926
|
devInfoProviders?: Maybe<Array<Maybe<DevOpsDevInfoProvider>>>;
|
|
9927
|
+
devopsComponentsProviders?: Maybe<Array<Maybe<DevOpsComponentsProvider>>>;
|
|
9746
9928
|
documentationProviders?: Maybe<Array<Maybe<DevOpsDocumentationProvider>>>;
|
|
9747
9929
|
featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
|
|
9748
9930
|
operationsProviders?: Maybe<Array<Maybe<DevOpsOperationsProvider>>>;
|
|
@@ -9762,7 +9944,9 @@ export declare type DevOpsPullRequestDetails = {
|
|
|
9762
9944
|
destinationBranch?: Maybe<DevOpsBranchInfo>;
|
|
9763
9945
|
id: Scalars['ID']['output'];
|
|
9764
9946
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9947
|
+
providerIcon?: Maybe<Scalars['URL']['output']>;
|
|
9765
9948
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
9949
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
9766
9950
|
pullRequestInternalId?: Maybe<Scalars['String']['output']>;
|
|
9767
9951
|
repositoryId?: Maybe<Scalars['ID']['output']>;
|
|
9768
9952
|
repositoryInternalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -11892,6 +12076,7 @@ export declare type Graph = {
|
|
|
11892
12076
|
projectAssociatedVulnerabilityInverse?: Maybe<GraphJiraProjectConnection>;
|
|
11893
12077
|
projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
11894
12078
|
projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
12079
|
+
projectHasIssueRelationship?: Maybe<GraphProjectHasIssueRelationshipConnection>;
|
|
11895
12080
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection>;
|
|
11896
12081
|
securityContainerAssociatedToVulnerabilityRelationshipBatch?: Maybe<Array<Maybe<GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection>>>;
|
|
11897
12082
|
serviceLinkedIncident?: Maybe<GraphJiraIssueConnection>;
|
|
@@ -12152,6 +12337,12 @@ export declare type GraphProjectAssociatedVulnerabilityRelationshipInverseArgs =
|
|
|
12152
12337
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12153
12338
|
to: Scalars['ID']['input'];
|
|
12154
12339
|
};
|
|
12340
|
+
export declare type GraphProjectHasIssueRelationshipArgs = {
|
|
12341
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
12342
|
+
filter?: InputMaybe<GraphQueryMetadataProjectHasIssueInput>;
|
|
12343
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12344
|
+
from: Scalars['ID']['input'];
|
|
12345
|
+
};
|
|
12155
12346
|
export declare type GraphSecurityContainerAssociatedToVulnerabilityRelationshipArgs = {
|
|
12156
12347
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
12157
12348
|
filter?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInput>;
|
|
@@ -12522,6 +12713,29 @@ export declare enum GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnera
|
|
|
12522
12713
|
Sca = "SCA",
|
|
12523
12714
|
Unknown = "UNKNOWN"
|
|
12524
12715
|
}
|
|
12716
|
+
export declare type GraphCreateMetadataProjectHasIssueJiraIssueOutput = {
|
|
12717
|
+
__typename?: 'GraphCreateMetadataProjectHasIssueJiraIssueOutput';
|
|
12718
|
+
assigneeAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12719
|
+
creatorAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12720
|
+
fixVersionIds?: Maybe<Array<Maybe<Scalars['Long']['output']>>>;
|
|
12721
|
+
issueAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12722
|
+
issueTypeAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12723
|
+
reporterAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12724
|
+
statusAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12725
|
+
};
|
|
12726
|
+
export declare type GraphCreateMetadataProjectHasIssueJiraIssueOutputAri = {
|
|
12727
|
+
__typename?: 'GraphCreateMetadataProjectHasIssueJiraIssueOutputAri';
|
|
12728
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
12729
|
+
};
|
|
12730
|
+
export declare type GraphCreateMetadataProjectHasIssueOutput = {
|
|
12731
|
+
__typename?: 'GraphCreateMetadataProjectHasIssueOutput';
|
|
12732
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
12733
|
+
sprintAris?: Maybe<Array<Maybe<GraphCreateMetadataProjectHasIssueOutputAri>>>;
|
|
12734
|
+
};
|
|
12735
|
+
export declare type GraphCreateMetadataProjectHasIssueOutputAri = {
|
|
12736
|
+
__typename?: 'GraphCreateMetadataProjectHasIssueOutputAri';
|
|
12737
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
12738
|
+
};
|
|
12525
12739
|
export declare type GraphCreateMetadataSprintAssociatedBuildJiraBuildOutput = {
|
|
12526
12740
|
__typename?: 'GraphCreateMetadataSprintAssociatedBuildJiraBuildOutput';
|
|
12527
12741
|
state?: Maybe<GraphCreateMetadataSprintAssociatedBuildJiraBuildOutputBuildStateEnum>;
|
|
@@ -13158,6 +13372,34 @@ export declare type GraphProjectAssociatedVulnerabilityRelationshipEdge = {
|
|
|
13158
13372
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
13159
13373
|
node: GraphProjectAssociatedVulnerabilityRelationship;
|
|
13160
13374
|
};
|
|
13375
|
+
export declare type GraphProjectHasIssuePayload = Payload & {
|
|
13376
|
+
__typename?: 'GraphProjectHasIssuePayload';
|
|
13377
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13378
|
+
projectHasIssueRelationship: Array<Maybe<GraphProjectHasIssueRelationship>>;
|
|
13379
|
+
success: Scalars['Boolean']['output'];
|
|
13380
|
+
};
|
|
13381
|
+
export declare type GraphProjectHasIssueRelationship = Node & {
|
|
13382
|
+
__typename?: 'GraphProjectHasIssueRelationship';
|
|
13383
|
+
from: GraphJiraProject;
|
|
13384
|
+
id: Scalars['ID']['output'];
|
|
13385
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
13386
|
+
relationshipMetadata?: Maybe<GraphCreateMetadataProjectHasIssueOutput>;
|
|
13387
|
+
to: GraphJiraIssue;
|
|
13388
|
+
toMetadata?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutput>;
|
|
13389
|
+
};
|
|
13390
|
+
export declare type GraphProjectHasIssueRelationshipConnection = {
|
|
13391
|
+
__typename?: 'GraphProjectHasIssueRelationshipConnection';
|
|
13392
|
+
edges: Array<Maybe<GraphProjectHasIssueRelationshipEdge>>;
|
|
13393
|
+
fromId?: Maybe<Scalars['ID']['output']>;
|
|
13394
|
+
pageInfo: PageInfo;
|
|
13395
|
+
toId?: Maybe<Scalars['ID']['output']>;
|
|
13396
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
13397
|
+
};
|
|
13398
|
+
export declare type GraphProjectHasIssueRelationshipEdge = {
|
|
13399
|
+
__typename?: 'GraphProjectHasIssueRelationshipEdge';
|
|
13400
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
13401
|
+
node: GraphProjectHasIssueRelationship;
|
|
13402
|
+
};
|
|
13161
13403
|
export declare type GraphProjectService = Node & {
|
|
13162
13404
|
__typename?: 'GraphProjectService';
|
|
13163
13405
|
id: Scalars['ID']['output'];
|
|
@@ -13973,6 +14215,158 @@ export declare enum GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulne
|
|
|
13973
14215
|
Sca = "SCA",
|
|
13974
14216
|
Unknown = "UNKNOWN"
|
|
13975
14217
|
}
|
|
14218
|
+
export declare type GraphQueryMetadataProjectHasIssueInput = {
|
|
14219
|
+
and?: InputMaybe<Array<GraphQueryMetadataProjectHasIssueInputAnd>>;
|
|
14220
|
+
or?: InputMaybe<Array<GraphQueryMetadataProjectHasIssueInputOr>>;
|
|
14221
|
+
};
|
|
14222
|
+
export declare type GraphQueryMetadataProjectHasIssueInputAnd = {
|
|
14223
|
+
createdAt?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAt>;
|
|
14224
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdated>;
|
|
14225
|
+
or?: InputMaybe<Array<GraphQueryMetadataProjectHasIssueInputOrInner>>;
|
|
14226
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn>;
|
|
14227
|
+
relationship_sprintAris?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAri>;
|
|
14228
|
+
to_assigneeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14229
|
+
to_creatorAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14230
|
+
to_fixVersionIds?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIds>;
|
|
14231
|
+
to_issueAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14232
|
+
to_issueTypeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14233
|
+
to_reporterAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14234
|
+
to_statusAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14235
|
+
};
|
|
14236
|
+
export declare type GraphQueryMetadataProjectHasIssueInputAndInner = {
|
|
14237
|
+
createdAt?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAt>;
|
|
14238
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdated>;
|
|
14239
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn>;
|
|
14240
|
+
relationship_sprintAris?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAri>;
|
|
14241
|
+
to_assigneeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14242
|
+
to_creatorAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14243
|
+
to_fixVersionIds?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIds>;
|
|
14244
|
+
to_issueAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14245
|
+
to_issueTypeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14246
|
+
to_reporterAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14247
|
+
to_statusAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14248
|
+
};
|
|
14249
|
+
export declare type GraphQueryMetadataProjectHasIssueInputCreatedAt = {
|
|
14250
|
+
notValues?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
14251
|
+
range?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAtRangeField>;
|
|
14252
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAtMetadataSortField>;
|
|
14253
|
+
values?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
14254
|
+
};
|
|
14255
|
+
export declare type GraphQueryMetadataProjectHasIssueInputCreatedAtMetadataSortField = {
|
|
14256
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14257
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14258
|
+
};
|
|
14259
|
+
export declare type GraphQueryMetadataProjectHasIssueInputCreatedAtRangeField = {
|
|
14260
|
+
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14261
|
+
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14262
|
+
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14263
|
+
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14264
|
+
};
|
|
14265
|
+
export declare type GraphQueryMetadataProjectHasIssueInputLastUpdated = {
|
|
14266
|
+
notValues?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
14267
|
+
range?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdatedRangeField>;
|
|
14268
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdatedMetadataSortField>;
|
|
14269
|
+
values?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
14270
|
+
};
|
|
14271
|
+
export declare type GraphQueryMetadataProjectHasIssueInputLastUpdatedMetadataSortField = {
|
|
14272
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14273
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14274
|
+
};
|
|
14275
|
+
export declare type GraphQueryMetadataProjectHasIssueInputLastUpdatedRangeField = {
|
|
14276
|
+
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14277
|
+
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14278
|
+
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14279
|
+
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14280
|
+
};
|
|
14281
|
+
export declare type GraphQueryMetadataProjectHasIssueInputOr = {
|
|
14282
|
+
and?: InputMaybe<Array<GraphQueryMetadataProjectHasIssueInputAndInner>>;
|
|
14283
|
+
createdAt?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAt>;
|
|
14284
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdated>;
|
|
14285
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn>;
|
|
14286
|
+
relationship_sprintAris?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAri>;
|
|
14287
|
+
to_assigneeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14288
|
+
to_creatorAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14289
|
+
to_fixVersionIds?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIds>;
|
|
14290
|
+
to_issueAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14291
|
+
to_issueTypeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14292
|
+
to_reporterAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14293
|
+
to_statusAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14294
|
+
};
|
|
14295
|
+
export declare type GraphQueryMetadataProjectHasIssueInputOrInner = {
|
|
14296
|
+
createdAt?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAt>;
|
|
14297
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdated>;
|
|
14298
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn>;
|
|
14299
|
+
relationship_sprintAris?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAri>;
|
|
14300
|
+
to_assigneeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14301
|
+
to_creatorAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14302
|
+
to_fixVersionIds?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIds>;
|
|
14303
|
+
to_issueAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14304
|
+
to_issueTypeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14305
|
+
to_reporterAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14306
|
+
to_statusAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14307
|
+
};
|
|
14308
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipAri = {
|
|
14309
|
+
matchType?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipArimatchTypeEnum>;
|
|
14310
|
+
value?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAriValue>;
|
|
14311
|
+
};
|
|
14312
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipAriValue = {
|
|
14313
|
+
notValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14314
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAriValueMetadataSortField>;
|
|
14315
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14316
|
+
};
|
|
14317
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipAriValueMetadataSortField = {
|
|
14318
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14319
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14320
|
+
};
|
|
14321
|
+
export declare enum GraphQueryMetadataProjectHasIssueInputRelationshipArimatchTypeEnum {
|
|
14322
|
+
All = "ALL",
|
|
14323
|
+
Any = "ANY",
|
|
14324
|
+
None = "NONE"
|
|
14325
|
+
}
|
|
14326
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn = {
|
|
14327
|
+
notValues?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14328
|
+
range?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOnRangeField>;
|
|
14329
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOnMetadataSortField>;
|
|
14330
|
+
values?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14331
|
+
};
|
|
14332
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOnMetadataSortField = {
|
|
14333
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14334
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14335
|
+
};
|
|
14336
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOnRangeField = {
|
|
14337
|
+
gt?: InputMaybe<Scalars['Long']['input']>;
|
|
14338
|
+
gte?: InputMaybe<Scalars['Long']['input']>;
|
|
14339
|
+
lt?: InputMaybe<Scalars['Long']['input']>;
|
|
14340
|
+
lte?: InputMaybe<Scalars['Long']['input']>;
|
|
14341
|
+
};
|
|
14342
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToAri = {
|
|
14343
|
+
value?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAriValue>;
|
|
14344
|
+
};
|
|
14345
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToAriValue = {
|
|
14346
|
+
notValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14347
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAriValueMetadataSortField>;
|
|
14348
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14349
|
+
};
|
|
14350
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToAriValueMetadataSortField = {
|
|
14351
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14352
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14353
|
+
};
|
|
14354
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToFixVersionIds = {
|
|
14355
|
+
notValues?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14356
|
+
range?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIdsRangeField>;
|
|
14357
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIdsMetadataSortField>;
|
|
14358
|
+
values?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14359
|
+
};
|
|
14360
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToFixVersionIdsMetadataSortField = {
|
|
14361
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14362
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14363
|
+
};
|
|
14364
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToFixVersionIdsRangeField = {
|
|
14365
|
+
gt?: InputMaybe<Scalars['Long']['input']>;
|
|
14366
|
+
gte?: InputMaybe<Scalars['Long']['input']>;
|
|
14367
|
+
lt?: InputMaybe<Scalars['Long']['input']>;
|
|
14368
|
+
lte?: InputMaybe<Scalars['Long']['input']>;
|
|
14369
|
+
};
|
|
13976
14370
|
export declare type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInput = {
|
|
13977
14371
|
and?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputAnd>>;
|
|
13978
14372
|
or?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputOr>>;
|
|
@@ -15017,7 +15411,7 @@ export declare type GraphQueryMetadataSprintContainsIssueInputToStatusCategoryMe
|
|
|
15017
15411
|
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
15018
15412
|
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
15019
15413
|
};
|
|
15020
|
-
export declare type GraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
15414
|
+
export declare type GraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
15021
15415
|
export declare type GraphSecurityContainerAssociatedToVulnerabilityRelationship = Node & {
|
|
15022
15416
|
__typename?: 'GraphSecurityContainerAssociatedToVulnerabilityRelationship';
|
|
15023
15417
|
from: GraphJiraSecurityContainer;
|
|
@@ -15198,6 +15592,7 @@ export declare type GraphStore = {
|
|
|
15198
15592
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
15199
15593
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
15200
15594
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
15595
|
+
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
15201
15596
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
15202
15597
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
15203
15598
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
@@ -15256,7 +15651,10 @@ export declare type GraphStore = {
|
|
|
15256
15651
|
issueAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection>;
|
|
15257
15652
|
issueAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagConnection>;
|
|
15258
15653
|
issueAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagConnection>;
|
|
15654
|
+
issueAssociatedIssueRemoteLink?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection>;
|
|
15655
|
+
issueAssociatedIssueRemoteLinkBatch?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection>;
|
|
15259
15656
|
issueAssociatedIssueRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection>;
|
|
15657
|
+
issueAssociatedIssueRemoteLinkInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection>;
|
|
15260
15658
|
issueAssociatedIssueRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkConnection>;
|
|
15261
15659
|
issueAssociatedIssueRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkConnection>;
|
|
15262
15660
|
issueAssociatedPr?: Maybe<GraphStoreSimplifiedIssueAssociatedPrConnection>;
|
|
@@ -15427,20 +15825,12 @@ export declare type GraphStore = {
|
|
|
15427
15825
|
serviceLinkedIncidentRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
15428
15826
|
shipit57IssueLinksToPage?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageConnection>;
|
|
15429
15827
|
shipit57IssueLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageInverseConnection>;
|
|
15430
|
-
shipit57IssueLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageConnection>;
|
|
15431
15828
|
shipit57IssueLinksToPageManual?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualConnection>;
|
|
15432
15829
|
shipit57IssueLinksToPageManualInverse?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseConnection>;
|
|
15433
|
-
shipit57IssueLinksToPageManualInverseRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualConnection>;
|
|
15434
|
-
shipit57IssueLinksToPageManualRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualConnection>;
|
|
15435
|
-
shipit57IssueLinksToPageRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageConnection>;
|
|
15436
15830
|
shipit57IssueRecursiveLinksToPage?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageConnection>;
|
|
15437
15831
|
shipit57IssueRecursiveLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseConnection>;
|
|
15438
|
-
shipit57IssueRecursiveLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageConnection>;
|
|
15439
|
-
shipit57IssueRecursiveLinksToPageRelationship?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageConnection>;
|
|
15440
15832
|
shipit57PullRequestLinksToPage?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageConnection>;
|
|
15441
15833
|
shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
|
|
15442
|
-
shipit57PullRequestLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageConnection>;
|
|
15443
|
-
shipit57PullRequestLinksToPageRelationship?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageConnection>;
|
|
15444
15834
|
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
15445
15835
|
sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
15446
15836
|
sprintAssociatedDeployment?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentConnection>;
|
|
@@ -15603,6 +15993,11 @@ export declare type GraphStoreComponentImpactedByIncidentArgs = {
|
|
|
15603
15993
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15604
15994
|
id: Scalars['ID']['input'];
|
|
15605
15995
|
};
|
|
15996
|
+
export declare type GraphStoreComponentImpactedByIncidentInverseArgs = {
|
|
15997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15999
|
+
id: Scalars['ID']['input'];
|
|
16000
|
+
};
|
|
15606
16001
|
export declare type GraphStoreComponentImpactedByIncidentInverseRelationshipArgs = {
|
|
15607
16002
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15608
16003
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15894,11 +16289,26 @@ export declare type GraphStoreIssueAssociatedFeatureFlagRelationshipArgs = {
|
|
|
15894
16289
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15895
16290
|
id: Scalars['ID']['input'];
|
|
15896
16291
|
};
|
|
16292
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkArgs = {
|
|
16293
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16294
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16295
|
+
id: Scalars['ID']['input'];
|
|
16296
|
+
};
|
|
16297
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkBatchArgs = {
|
|
16298
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16299
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16300
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16301
|
+
};
|
|
15897
16302
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
|
|
15898
16303
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15899
16304
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15900
16305
|
id: Scalars['ID']['input'];
|
|
15901
16306
|
};
|
|
16307
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseBatchArgs = {
|
|
16308
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16309
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16310
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16311
|
+
};
|
|
15902
16312
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseRelationshipArgs = {
|
|
15903
16313
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15904
16314
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16682,23 +17092,31 @@ export declare type GraphStoreProjectExplicitlyAssociatedRepoRelationshipArgs =
|
|
|
16682
17092
|
};
|
|
16683
17093
|
export declare type GraphStoreProjectHasIssueArgs = {
|
|
16684
17094
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17095
|
+
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
16685
17096
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16686
17097
|
id: Scalars['ID']['input'];
|
|
17098
|
+
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
16687
17099
|
};
|
|
16688
17100
|
export declare type GraphStoreProjectHasIssueInverseArgs = {
|
|
16689
17101
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17102
|
+
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
16690
17103
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16691
17104
|
id: Scalars['ID']['input'];
|
|
17105
|
+
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
16692
17106
|
};
|
|
16693
17107
|
export declare type GraphStoreProjectHasIssueInverseRelationshipArgs = {
|
|
16694
17108
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17109
|
+
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
16695
17110
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16696
17111
|
id: Scalars['ID']['input'];
|
|
17112
|
+
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
16697
17113
|
};
|
|
16698
17114
|
export declare type GraphStoreProjectHasIssueRelationshipArgs = {
|
|
16699
17115
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17116
|
+
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
16700
17117
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16701
17118
|
id: Scalars['ID']['input'];
|
|
17119
|
+
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
16702
17120
|
};
|
|
16703
17121
|
export declare type GraphStoreProjectHasSharedVersionWithArgs = {
|
|
16704
17122
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16803,11 +17221,6 @@ export declare type GraphStoreShipit57IssueLinksToPageInverseArgs = {
|
|
|
16803
17221
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16804
17222
|
id: Scalars['ID']['input'];
|
|
16805
17223
|
};
|
|
16806
|
-
export declare type GraphStoreShipit57IssueLinksToPageInverseRelationshipArgs = {
|
|
16807
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16808
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16809
|
-
id: Scalars['ID']['input'];
|
|
16810
|
-
};
|
|
16811
17224
|
export declare type GraphStoreShipit57IssueLinksToPageManualArgs = {
|
|
16812
17225
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16813
17226
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16818,21 +17231,6 @@ export declare type GraphStoreShipit57IssueLinksToPageManualInverseArgs = {
|
|
|
16818
17231
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16819
17232
|
id: Scalars['ID']['input'];
|
|
16820
17233
|
};
|
|
16821
|
-
export declare type GraphStoreShipit57IssueLinksToPageManualInverseRelationshipArgs = {
|
|
16822
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16823
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16824
|
-
id: Scalars['ID']['input'];
|
|
16825
|
-
};
|
|
16826
|
-
export declare type GraphStoreShipit57IssueLinksToPageManualRelationshipArgs = {
|
|
16827
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16828
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16829
|
-
id: Scalars['ID']['input'];
|
|
16830
|
-
};
|
|
16831
|
-
export declare type GraphStoreShipit57IssueLinksToPageRelationshipArgs = {
|
|
16832
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16833
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16834
|
-
id: Scalars['ID']['input'];
|
|
16835
|
-
};
|
|
16836
17234
|
export declare type GraphStoreShipit57IssueRecursiveLinksToPageArgs = {
|
|
16837
17235
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16838
17236
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16843,16 +17241,6 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageInverseArgs = {
|
|
|
16843
17241
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16844
17242
|
id: Scalars['ID']['input'];
|
|
16845
17243
|
};
|
|
16846
|
-
export declare type GraphStoreShipit57IssueRecursiveLinksToPageInverseRelationshipArgs = {
|
|
16847
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16848
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16849
|
-
id: Scalars['ID']['input'];
|
|
16850
|
-
};
|
|
16851
|
-
export declare type GraphStoreShipit57IssueRecursiveLinksToPageRelationshipArgs = {
|
|
16852
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16853
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16854
|
-
id: Scalars['ID']['input'];
|
|
16855
|
-
};
|
|
16856
17244
|
export declare type GraphStoreShipit57PullRequestLinksToPageArgs = {
|
|
16857
17245
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16858
17246
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16863,16 +17251,6 @@ export declare type GraphStoreShipit57PullRequestLinksToPageInverseArgs = {
|
|
|
16863
17251
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16864
17252
|
id: Scalars['ID']['input'];
|
|
16865
17253
|
};
|
|
16866
|
-
export declare type GraphStoreShipit57PullRequestLinksToPageInverseRelationshipArgs = {
|
|
16867
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16868
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16869
|
-
id: Scalars['ID']['input'];
|
|
16870
|
-
};
|
|
16871
|
-
export declare type GraphStoreShipit57PullRequestLinksToPageRelationshipArgs = {
|
|
16872
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16873
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16874
|
-
id: Scalars['ID']['input'];
|
|
16875
|
-
};
|
|
16876
17254
|
export declare type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
16877
17255
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16878
17256
|
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
@@ -17427,7 +17805,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNo
|
|
|
17427
17805
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndUnion>;
|
|
17428
17806
|
id: Scalars['ID']['output'];
|
|
17429
17807
|
};
|
|
17430
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndUnion = JiraIssue | JiraPostIncidentReviewLink;
|
|
17808
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndUnion = DevOpsOperationsPostIncidentReviewDetails | JiraIssue | JiraPostIncidentReviewLink;
|
|
17431
17809
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkInnerConnection = {
|
|
17432
17810
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkInnerConnection';
|
|
17433
17811
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkInnerEdge>>;
|
|
@@ -17549,6 +17927,47 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode = Node & {
|
|
|
17549
17927
|
id: Scalars['ID']['output'];
|
|
17550
17928
|
};
|
|
17551
17929
|
export declare type GraphStoreBatchIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
17930
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
17931
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection';
|
|
17932
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge>>;
|
|
17933
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkNode>>;
|
|
17934
|
+
pageInfo: PageInfo;
|
|
17935
|
+
};
|
|
17936
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge = {
|
|
17937
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge';
|
|
17938
|
+
node: GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerConnection;
|
|
17939
|
+
};
|
|
17940
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode = Node & {
|
|
17941
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode';
|
|
17942
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEndUnion>;
|
|
17943
|
+
id: Scalars['ID']['output'];
|
|
17944
|
+
};
|
|
17945
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEndUnion = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
17946
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerConnection = {
|
|
17947
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerConnection';
|
|
17948
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerEdge>>;
|
|
17949
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkNode>>;
|
|
17950
|
+
requestedId: Scalars['ID']['output'];
|
|
17951
|
+
};
|
|
17952
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerEdge = {
|
|
17953
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerEdge';
|
|
17954
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17955
|
+
node: GraphStoreBatchIssueAssociatedIssueRemoteLinkNode;
|
|
17956
|
+
};
|
|
17957
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkNode = Node & {
|
|
17958
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkNode';
|
|
17959
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17960
|
+
from: GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode;
|
|
17961
|
+
id: Scalars['ID']['output'];
|
|
17962
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17963
|
+
to: GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode;
|
|
17964
|
+
};
|
|
17965
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode = Node & {
|
|
17966
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode';
|
|
17967
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkStartUnion>;
|
|
17968
|
+
id: Scalars['ID']['output'];
|
|
17969
|
+
};
|
|
17970
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartUnion = JiraIssue;
|
|
17552
17971
|
export declare type GraphStoreBatchJsmProjectAssociatedServiceConnection = HasPageInfo & {
|
|
17553
17972
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceConnection';
|
|
17554
17973
|
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceEdge>>;
|
|
@@ -18379,6 +18798,7 @@ export declare type GraphStoreFullComponentImpactedByIncidentNode = Node & {
|
|
|
18379
18798
|
};
|
|
18380
18799
|
export declare type GraphStoreFullComponentImpactedByIncidentRelationshipObjectMetadataOutput = {
|
|
18381
18800
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentRelationshipObjectMetadataOutput';
|
|
18801
|
+
affectedServiceAris?: Maybe<Scalars['String']['output']>;
|
|
18382
18802
|
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18383
18803
|
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
18384
18804
|
priority?: Maybe<GraphStoreFullComponentImpactedByIncidentJiraIncidentPriorityOutput>;
|
|
@@ -18387,8 +18807,10 @@ export declare type GraphStoreFullComponentImpactedByIncidentRelationshipObjectM
|
|
|
18387
18807
|
};
|
|
18388
18808
|
export declare type GraphStoreFullComponentImpactedByIncidentStartNode = {
|
|
18389
18809
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentStartNode';
|
|
18810
|
+
data?: Maybe<GraphStoreFullComponentImpactedByIncidentStartUnion>;
|
|
18390
18811
|
id: Scalars['ID']['output'];
|
|
18391
18812
|
};
|
|
18813
|
+
export declare type GraphStoreFullComponentImpactedByIncidentStartUnion = DevOpsOperationsComponentDetails;
|
|
18392
18814
|
export declare type GraphStoreFullComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
18393
18815
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueConnection';
|
|
18394
18816
|
edges: Array<Maybe<GraphStoreFullComponentLinkedJswIssueEdge>>;
|
|
@@ -18421,7 +18843,7 @@ export declare type GraphStoreFullComponentLinkedJswIssueStartNode = {
|
|
|
18421
18843
|
data?: Maybe<GraphStoreFullComponentLinkedJswIssueStartUnion>;
|
|
18422
18844
|
id: Scalars['ID']['output'];
|
|
18423
18845
|
};
|
|
18424
|
-
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = DevOpsService;
|
|
18846
|
+
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
18425
18847
|
export declare type GraphStoreFullContentReferencedEntityConnection = HasPageInfo & {
|
|
18426
18848
|
__typename?: 'GraphStoreFullContentReferencedEntityConnection';
|
|
18427
18849
|
edges: Array<Maybe<GraphStoreFullContentReferencedEntityEdge>>;
|
|
@@ -18490,7 +18912,7 @@ export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNod
|
|
|
18490
18912
|
data?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndUnion>;
|
|
18491
18913
|
id: Scalars['ID']['output'];
|
|
18492
18914
|
};
|
|
18493
|
-
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndUnion = JiraIssue | JiraPostIncidentReviewLink;
|
|
18915
|
+
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndUnion = DevOpsOperationsPostIncidentReviewDetails | JiraIssue | JiraPostIncidentReviewLink;
|
|
18494
18916
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode = Node & {
|
|
18495
18917
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode';
|
|
18496
18918
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -18850,9 +19272,11 @@ export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEdge = {
|
|
|
18850
19272
|
};
|
|
18851
19273
|
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEndNode = {
|
|
18852
19274
|
__typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkEndNode';
|
|
19275
|
+
data?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkEndUnion>;
|
|
18853
19276
|
id: Scalars['ID']['output'];
|
|
18854
19277
|
metadata?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkRelationshipObjectMetadataOutput>;
|
|
18855
19278
|
};
|
|
19279
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEndUnion = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
18856
19280
|
export declare enum GraphStoreFullIssueAssociatedIssueRemoteLinkLinkApplicationTypeOutput {
|
|
18857
19281
|
Bamboo = "BAMBOO",
|
|
18858
19282
|
BbPrComment = "BB_PR_COMMENT",
|
|
@@ -19275,7 +19699,7 @@ export declare type GraphStoreFullJswProjectAssociatedComponentEndNode = {
|
|
|
19275
19699
|
data?: Maybe<GraphStoreFullJswProjectAssociatedComponentEndUnion>;
|
|
19276
19700
|
id: Scalars['ID']['output'];
|
|
19277
19701
|
};
|
|
19278
|
-
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = DevOpsService;
|
|
19702
|
+
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
19279
19703
|
export declare type GraphStoreFullJswProjectAssociatedComponentNode = Node & {
|
|
19280
19704
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentNode';
|
|
19281
19705
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -19337,6 +19761,7 @@ export declare type GraphStoreFullJswProjectAssociatedIncidentNode = Node & {
|
|
|
19337
19761
|
};
|
|
19338
19762
|
export declare type GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput = {
|
|
19339
19763
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput';
|
|
19764
|
+
affectedServiceAris?: Maybe<Scalars['String']['output']>;
|
|
19340
19765
|
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
19341
19766
|
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
19342
19767
|
priority?: Maybe<GraphStoreFullJswProjectAssociatedIncidentJiraIncidentPriorityOutput>;
|
|
@@ -20349,11 +20774,13 @@ export declare type GraphStoreFullProjectExplicitlyAssociatedRepoStartNode = {
|
|
|
20349
20774
|
id: Scalars['ID']['output'];
|
|
20350
20775
|
};
|
|
20351
20776
|
export declare type GraphStoreFullProjectExplicitlyAssociatedRepoStartUnion = JiraProject;
|
|
20352
|
-
export declare type GraphStoreFullProjectHasIssueConnection = HasPageInfo & {
|
|
20777
|
+
export declare type GraphStoreFullProjectHasIssueConnection = HasPageInfo & HasTotal & {
|
|
20353
20778
|
__typename?: 'GraphStoreFullProjectHasIssueConnection';
|
|
20354
20779
|
edges: Array<Maybe<GraphStoreFullProjectHasIssueEdge>>;
|
|
20780
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20355
20781
|
nodes: Array<Maybe<GraphStoreFullProjectHasIssueNode>>;
|
|
20356
20782
|
pageInfo: PageInfo;
|
|
20783
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20357
20784
|
};
|
|
20358
20785
|
export declare type GraphStoreFullProjectHasIssueEdge = {
|
|
20359
20786
|
__typename?: 'GraphStoreFullProjectHasIssueEdge';
|
|
@@ -20379,6 +20806,7 @@ export declare type GraphStoreFullProjectHasIssueNode = Node & {
|
|
|
20379
20806
|
export declare type GraphStoreFullProjectHasIssueRelationshipMetadataOutput = {
|
|
20380
20807
|
__typename?: 'GraphStoreFullProjectHasIssueRelationshipMetadataOutput';
|
|
20381
20808
|
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
20809
|
+
sprintAris?: Maybe<Scalars['String']['output']>;
|
|
20382
20810
|
};
|
|
20383
20811
|
export declare type GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput = {
|
|
20384
20812
|
__typename?: 'GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput';
|
|
@@ -20570,6 +20998,7 @@ export declare type GraphStoreFullServiceLinkedIncidentNode = Node & {
|
|
|
20570
20998
|
};
|
|
20571
20999
|
export declare type GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput = {
|
|
20572
21000
|
__typename?: 'GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput';
|
|
21001
|
+
affectedServiceAris?: Maybe<Scalars['String']['output']>;
|
|
20573
21002
|
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
20574
21003
|
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
20575
21004
|
priority?: Maybe<GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentPriorityOutput>;
|
|
@@ -20582,134 +21011,6 @@ export declare type GraphStoreFullServiceLinkedIncidentStartNode = {
|
|
|
20582
21011
|
id: Scalars['ID']['output'];
|
|
20583
21012
|
};
|
|
20584
21013
|
export declare type GraphStoreFullServiceLinkedIncidentStartUnion = DevOpsService;
|
|
20585
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageConnection = HasPageInfo & HasTotal & {
|
|
20586
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageConnection';
|
|
20587
|
-
edges: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageEdge>>;
|
|
20588
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20589
|
-
nodes: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageNode>>;
|
|
20590
|
-
pageInfo: PageInfo;
|
|
20591
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20592
|
-
};
|
|
20593
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageEdge = {
|
|
20594
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageEdge';
|
|
20595
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
20596
|
-
node: GraphStoreFullShipit57IssueLinksToPageNode;
|
|
20597
|
-
};
|
|
20598
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageEndNode = {
|
|
20599
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageEndNode';
|
|
20600
|
-
data?: Maybe<GraphStoreFullShipit57IssueLinksToPageEndUnion>;
|
|
20601
|
-
id: Scalars['ID']['output'];
|
|
20602
|
-
};
|
|
20603
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageEndUnion = ConfluencePage;
|
|
20604
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualConnection = HasPageInfo & {
|
|
20605
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualConnection';
|
|
20606
|
-
edges: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageManualEdge>>;
|
|
20607
|
-
nodes: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageManualNode>>;
|
|
20608
|
-
pageInfo: PageInfo;
|
|
20609
|
-
};
|
|
20610
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualEdge = {
|
|
20611
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualEdge';
|
|
20612
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
20613
|
-
node: GraphStoreFullShipit57IssueLinksToPageManualNode;
|
|
20614
|
-
};
|
|
20615
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualEndNode = {
|
|
20616
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualEndNode';
|
|
20617
|
-
data?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualEndUnion>;
|
|
20618
|
-
id: Scalars['ID']['output'];
|
|
20619
|
-
};
|
|
20620
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualEndUnion = ConfluencePage;
|
|
20621
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualNode = Node & {
|
|
20622
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualNode';
|
|
20623
|
-
createdAt: Scalars['DateTime']['output'];
|
|
20624
|
-
from: GraphStoreFullShipit57IssueLinksToPageManualStartNode;
|
|
20625
|
-
id: Scalars['ID']['output'];
|
|
20626
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
20627
|
-
to: GraphStoreFullShipit57IssueLinksToPageManualEndNode;
|
|
20628
|
-
};
|
|
20629
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualStartNode = {
|
|
20630
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualStartNode';
|
|
20631
|
-
data?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualStartUnion>;
|
|
20632
|
-
id: Scalars['ID']['output'];
|
|
20633
|
-
};
|
|
20634
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualStartUnion = JiraIssue;
|
|
20635
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageNode = Node & {
|
|
20636
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageNode';
|
|
20637
|
-
createdAt: Scalars['DateTime']['output'];
|
|
20638
|
-
from: GraphStoreFullShipit57IssueLinksToPageStartNode;
|
|
20639
|
-
id: Scalars['ID']['output'];
|
|
20640
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
20641
|
-
to: GraphStoreFullShipit57IssueLinksToPageEndNode;
|
|
20642
|
-
};
|
|
20643
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageStartNode = {
|
|
20644
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageStartNode';
|
|
20645
|
-
data?: Maybe<GraphStoreFullShipit57IssueLinksToPageStartUnion>;
|
|
20646
|
-
id: Scalars['ID']['output'];
|
|
20647
|
-
};
|
|
20648
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageStartUnion = JiraIssue;
|
|
20649
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageConnection = HasPageInfo & HasTotal & {
|
|
20650
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageConnection';
|
|
20651
|
-
edges: Array<Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageEdge>>;
|
|
20652
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20653
|
-
nodes: Array<Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageNode>>;
|
|
20654
|
-
pageInfo: PageInfo;
|
|
20655
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20656
|
-
};
|
|
20657
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageEdge = {
|
|
20658
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageEdge';
|
|
20659
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
20660
|
-
node: GraphStoreFullShipit57IssueRecursiveLinksToPageNode;
|
|
20661
|
-
};
|
|
20662
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode = {
|
|
20663
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode';
|
|
20664
|
-
data?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageEndUnion>;
|
|
20665
|
-
id: Scalars['ID']['output'];
|
|
20666
|
-
};
|
|
20667
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageEndUnion = ConfluencePage;
|
|
20668
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageNode = Node & {
|
|
20669
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageNode';
|
|
20670
|
-
createdAt: Scalars['DateTime']['output'];
|
|
20671
|
-
from: GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode;
|
|
20672
|
-
id: Scalars['ID']['output'];
|
|
20673
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
20674
|
-
to: GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode;
|
|
20675
|
-
};
|
|
20676
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode = {
|
|
20677
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode';
|
|
20678
|
-
data?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageStartUnion>;
|
|
20679
|
-
id: Scalars['ID']['output'];
|
|
20680
|
-
};
|
|
20681
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageStartUnion = JiraIssue;
|
|
20682
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageConnection = HasPageInfo & {
|
|
20683
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageConnection';
|
|
20684
|
-
edges: Array<Maybe<GraphStoreFullShipit57PullRequestLinksToPageEdge>>;
|
|
20685
|
-
nodes: Array<Maybe<GraphStoreFullShipit57PullRequestLinksToPageNode>>;
|
|
20686
|
-
pageInfo: PageInfo;
|
|
20687
|
-
};
|
|
20688
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageEdge = {
|
|
20689
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageEdge';
|
|
20690
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
20691
|
-
node: GraphStoreFullShipit57PullRequestLinksToPageNode;
|
|
20692
|
-
};
|
|
20693
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageEndNode = {
|
|
20694
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageEndNode';
|
|
20695
|
-
data?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageEndUnion>;
|
|
20696
|
-
id: Scalars['ID']['output'];
|
|
20697
|
-
};
|
|
20698
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageEndUnion = ConfluencePage;
|
|
20699
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageNode = Node & {
|
|
20700
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageNode';
|
|
20701
|
-
createdAt: Scalars['DateTime']['output'];
|
|
20702
|
-
from: GraphStoreFullShipit57PullRequestLinksToPageStartNode;
|
|
20703
|
-
id: Scalars['ID']['output'];
|
|
20704
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
20705
|
-
to: GraphStoreFullShipit57PullRequestLinksToPageEndNode;
|
|
20706
|
-
};
|
|
20707
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageStartNode = {
|
|
20708
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageStartNode';
|
|
20709
|
-
data?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageStartUnion>;
|
|
20710
|
-
id: Scalars['ID']['output'];
|
|
20711
|
-
};
|
|
20712
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageStartUnion = DevOpsPullRequestDetails;
|
|
20713
21014
|
export declare enum GraphStoreFullSprintAssociatedBuildBuildStateOutput {
|
|
20714
21015
|
Cancelled = "CANCELLED",
|
|
20715
21016
|
Failed = "FAILED",
|
|
@@ -21728,6 +22029,7 @@ export declare type GraphStoreJswProjectAssociatedIncidentConditionalFilterInput
|
|
|
21728
22029
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
21729
22030
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
21730
22031
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22032
|
+
to_affectedServiceAris?: InputMaybe<GraphStoreAriFilterInput>;
|
|
21731
22033
|
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
21732
22034
|
to_majorIncident?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
21733
22035
|
to_priority?: InputMaybe<GraphStoreJswProjectAssociatedIncidentJiraIncidentPriorityFilterInput>;
|
|
@@ -21768,6 +22070,7 @@ export declare type GraphStoreJswProjectAssociatedIncidentSortInput = {
|
|
|
21768
22070
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
21769
22071
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
21770
22072
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
22073
|
+
to_affectedServiceAris?: InputMaybe<GraphStoreSortInput>;
|
|
21771
22074
|
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
21772
22075
|
to_majorIncident?: InputMaybe<GraphStoreSortInput>;
|
|
21773
22076
|
to_priority?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -22221,11 +22524,46 @@ export declare type GraphStoreProjectAssociatedVulnerabilityVulnerabilityTypeFil
|
|
|
22221
22524
|
is?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityType>>;
|
|
22222
22525
|
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityType>>;
|
|
22223
22526
|
};
|
|
22527
|
+
export declare type GraphStoreProjectHasIssueConditionalFilterInput = {
|
|
22528
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
22529
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22530
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
22531
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
22532
|
+
relationship_sprintAris?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22533
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22534
|
+
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22535
|
+
to_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22536
|
+
to_fixVersionIds?: InputMaybe<GraphStoreLongFilterInput>;
|
|
22537
|
+
to_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22538
|
+
to_issueTypeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22539
|
+
to_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22540
|
+
to_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22541
|
+
};
|
|
22542
|
+
export declare type GraphStoreProjectHasIssueFilterInput = {
|
|
22543
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectHasIssueConditionalFilterInput>>>;
|
|
22544
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectHasIssueConditionalFilterInput>>>;
|
|
22545
|
+
};
|
|
22546
|
+
export declare type GraphStoreProjectHasIssueSortInput = {
|
|
22547
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
22548
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
22549
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
22550
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
22551
|
+
relationship_sprintAris?: InputMaybe<GraphStoreSortInput>;
|
|
22552
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
22553
|
+
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
22554
|
+
to_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
22555
|
+
to_fixVersionIds?: InputMaybe<GraphStoreSortInput>;
|
|
22556
|
+
to_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
22557
|
+
to_issueTypeAri?: InputMaybe<GraphStoreSortInput>;
|
|
22558
|
+
to_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
22559
|
+
to_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
22560
|
+
};
|
|
22224
22561
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
22225
22562
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
22226
22563
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22227
22564
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
22228
22565
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22566
|
+
to_affectedServiceAris?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22229
22567
|
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22230
22568
|
to_majorIncident?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
22231
22569
|
to_priority?: InputMaybe<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriorityFilterInput>;
|
|
@@ -22264,6 +22602,7 @@ export declare type GraphStoreServiceLinkedIncidentSortInput = {
|
|
|
22264
22602
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
22265
22603
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
22266
22604
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
22605
|
+
to_affectedServiceAris?: InputMaybe<GraphStoreSortInput>;
|
|
22267
22606
|
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
22268
22607
|
to_majorIncident?: InputMaybe<GraphStoreSortInput>;
|
|
22269
22608
|
to_priority?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -22347,6 +22686,19 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentEdge = {
|
|
|
22347
22686
|
lastUpdated: Scalars['DateTime']['output'];
|
|
22348
22687
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentUnion>;
|
|
22349
22688
|
};
|
|
22689
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection = HasPageInfo & {
|
|
22690
|
+
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection';
|
|
22691
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge>>>;
|
|
22692
|
+
pageInfo: PageInfo;
|
|
22693
|
+
};
|
|
22694
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge = {
|
|
22695
|
+
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge';
|
|
22696
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22697
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22698
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22699
|
+
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion>;
|
|
22700
|
+
};
|
|
22701
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion = DevOpsOperationsComponentDetails;
|
|
22350
22702
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
22351
22703
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
22352
22704
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
@@ -22376,7 +22728,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
22376
22728
|
lastUpdated: Scalars['DateTime']['output'];
|
|
22377
22729
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion>;
|
|
22378
22730
|
};
|
|
22379
|
-
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = DevOpsService;
|
|
22731
|
+
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
22380
22732
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
22381
22733
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
22382
22734
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
@@ -22462,7 +22814,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
22462
22814
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion>;
|
|
22463
22815
|
};
|
|
22464
22816
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
22465
|
-
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkUnion = JiraIssue | JiraPostIncidentReviewLink;
|
|
22817
|
+
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkUnion = DevOpsOperationsPostIncidentReviewDetails | JiraIssue | JiraPostIncidentReviewLink;
|
|
22466
22818
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewUnion = JiraIssue;
|
|
22467
22819
|
export declare type GraphStoreSimplifiedIncidentHasActionItemConnection = HasPageInfo & HasTotal & {
|
|
22468
22820
|
__typename?: 'GraphStoreSimplifiedIncidentHasActionItemConnection';
|
|
@@ -22641,6 +22993,18 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge =
|
|
|
22641
22993
|
};
|
|
22642
22994
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion = JiraIssue;
|
|
22643
22995
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
22996
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
22997
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection';
|
|
22998
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge>>>;
|
|
22999
|
+
pageInfo: PageInfo;
|
|
23000
|
+
};
|
|
23001
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge = {
|
|
23002
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge';
|
|
23003
|
+
createdAt: Scalars['DateTime']['output'];
|
|
23004
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
23005
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
23006
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion>;
|
|
23007
|
+
};
|
|
22644
23008
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection = HasPageInfo & {
|
|
22645
23009
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection';
|
|
22646
23010
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdge>>>;
|
|
@@ -22654,6 +23018,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdg
|
|
|
22654
23018
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion>;
|
|
22655
23019
|
};
|
|
22656
23020
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion = JiraIssue;
|
|
23021
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
22657
23022
|
export declare type GraphStoreSimplifiedIssueAssociatedPrConnection = HasPageInfo & {
|
|
22658
23023
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrConnection';
|
|
22659
23024
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrEdge>>>;
|
|
@@ -22943,7 +23308,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge
|
|
|
22943
23308
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion>;
|
|
22944
23309
|
};
|
|
22945
23310
|
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion = JiraProject;
|
|
22946
|
-
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = DevOpsService;
|
|
23311
|
+
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
22947
23312
|
export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
22948
23313
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentConnection';
|
|
22949
23314
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentEdge>>>;
|
|
@@ -23659,10 +24024,12 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
23659
24024
|
};
|
|
23660
24025
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion = JiraProject;
|
|
23661
24026
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion = DevOpsRepository;
|
|
23662
|
-
export declare type GraphStoreSimplifiedProjectHasIssueConnection = HasPageInfo & {
|
|
24027
|
+
export declare type GraphStoreSimplifiedProjectHasIssueConnection = HasPageInfo & HasTotal & {
|
|
23663
24028
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueConnection';
|
|
23664
24029
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasIssueEdge>>>;
|
|
24030
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
23665
24031
|
pageInfo: PageInfo;
|
|
24032
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
23666
24033
|
};
|
|
23667
24034
|
export declare type GraphStoreSimplifiedProjectHasIssueEdge = {
|
|
23668
24035
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueEdge';
|
|
@@ -23671,10 +24038,12 @@ export declare type GraphStoreSimplifiedProjectHasIssueEdge = {
|
|
|
23671
24038
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23672
24039
|
node?: Maybe<GraphStoreSimplifiedProjectHasIssueUnion>;
|
|
23673
24040
|
};
|
|
23674
|
-
export declare type GraphStoreSimplifiedProjectHasIssueInverseConnection = HasPageInfo & {
|
|
24041
|
+
export declare type GraphStoreSimplifiedProjectHasIssueInverseConnection = HasPageInfo & HasTotal & {
|
|
23675
24042
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueInverseConnection';
|
|
23676
24043
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasIssueInverseEdge>>>;
|
|
24044
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
23677
24045
|
pageInfo: PageInfo;
|
|
24046
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
23678
24047
|
};
|
|
23679
24048
|
export declare type GraphStoreSimplifiedProjectHasIssueInverseEdge = {
|
|
23680
24049
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueInverseEdge';
|
|
@@ -24963,7 +25332,6 @@ export declare type HelpCenterBulkUpdateTopicInput = {
|
|
|
24963
25332
|
export declare type HelpCenterContentGapIndicator = {
|
|
24964
25333
|
__typename?: 'HelpCenterContentGapIndicator';
|
|
24965
25334
|
clusterId: Scalars['ID']['output'];
|
|
24966
|
-
coverage: Scalars['Float']['output'];
|
|
24967
25335
|
keywords: Scalars['String']['output'];
|
|
24968
25336
|
questionsCount: Scalars['Int']['output'];
|
|
24969
25337
|
};
|
|
@@ -25271,6 +25639,7 @@ export declare type HelpCenterQueryApiHelpCentersArgs = {
|
|
|
25271
25639
|
export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
25272
25640
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25273
25641
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25642
|
+
sortOrder: HelpCenterSortOrder;
|
|
25274
25643
|
workspaceAri: Scalars['ID']['input'];
|
|
25275
25644
|
};
|
|
25276
25645
|
export declare type HelpCenterQueryApiHelpDeskByIdArgs = {
|
|
@@ -25312,6 +25681,10 @@ export declare type HelpCenterReportingPerformanceIndicatorsWithMetaData = {
|
|
|
25312
25681
|
refreshedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
25313
25682
|
};
|
|
25314
25683
|
export declare type HelpCenterReportingResult = HelpCenterReporting | QueryError;
|
|
25684
|
+
export declare enum HelpCenterSortOrder {
|
|
25685
|
+
CreatedDateAscending = "CREATED_DATE_ASCENDING",
|
|
25686
|
+
CreatedDateDescending = "CREATED_DATE_DESCENDING"
|
|
25687
|
+
}
|
|
25315
25688
|
export declare type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
25316
25689
|
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
25317
25690
|
helpCenterId: Scalars['ID']['output'];
|
|
@@ -27229,6 +27602,10 @@ export declare type JiraAdfToConvertedPlainText = {
|
|
|
27229
27602
|
isTruncated?: Maybe<Scalars['Boolean']['output']>;
|
|
27230
27603
|
plainText?: Maybe<Scalars['String']['output']>;
|
|
27231
27604
|
};
|
|
27605
|
+
export declare type JiraAdjustmentEstimate = {
|
|
27606
|
+
adjustEstimateType: JiraWorklogAdjustmentEstimateOperation;
|
|
27607
|
+
adjustTimeInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
27608
|
+
};
|
|
27232
27609
|
export declare type JiraAdminRichTextFieldConfig = {
|
|
27233
27610
|
__typename?: 'JiraAdminRichTextFieldConfig';
|
|
27234
27611
|
aiEnabledByProject?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -27567,7 +27944,7 @@ export declare type JiraAttachmentFieldPayload = Payload & {
|
|
|
27567
27944
|
};
|
|
27568
27945
|
export declare type JiraAttachmentFilterInput = {
|
|
27569
27946
|
authorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27570
|
-
dateRange?: InputMaybe<
|
|
27947
|
+
dateRange?: InputMaybe<JiraDateTimeRange>;
|
|
27571
27948
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
27572
27949
|
mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27573
27950
|
};
|
|
@@ -27580,8 +27957,8 @@ export declare type JiraAttachmentSearchViewContext = {
|
|
|
27580
27957
|
};
|
|
27581
27958
|
export declare type JiraAttachmentSearchViewContextInput = {
|
|
27582
27959
|
authorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27583
|
-
createdAfter?: InputMaybe<Scalars['
|
|
27584
|
-
createdBefore?: InputMaybe<Scalars['
|
|
27960
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27961
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27585
27962
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
27586
27963
|
mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27587
27964
|
projectKeys: Array<Scalars['String']['input']>;
|
|
@@ -27703,6 +28080,7 @@ export declare type JiraAutodevPullRequestEdge = {
|
|
|
27703
28080
|
node?: Maybe<JiraAutodevPullRequest>;
|
|
27704
28081
|
};
|
|
27705
28082
|
export declare enum JiraAutodevState {
|
|
28083
|
+
Cancelled = "CANCELLED",
|
|
27706
28084
|
CodeGenerating = "CODE_GENERATING",
|
|
27707
28085
|
CodeGenerationFail = "CODE_GENERATION_FAIL",
|
|
27708
28086
|
CodeGenerationReady = "CODE_GENERATION_READY",
|
|
@@ -27713,7 +28091,8 @@ export declare enum JiraAutodevState {
|
|
|
27713
28091
|
PlanGenerationSuccess = "PLAN_GENERATION_SUCCESS",
|
|
27714
28092
|
PullrequestCreating = "PULLREQUEST_CREATING",
|
|
27715
28093
|
PullrequestCreationFail = "PULLREQUEST_CREATION_FAIL",
|
|
27716
|
-
PullrequestCreationSuccess = "PULLREQUEST_CREATION_SUCCESS"
|
|
28094
|
+
PullrequestCreationSuccess = "PULLREQUEST_CREATION_SUCCESS",
|
|
28095
|
+
Unknown = "UNKNOWN"
|
|
27717
28096
|
}
|
|
27718
28097
|
export declare enum JiraAutodevStatus {
|
|
27719
28098
|
Cancelled = "CANCELLED",
|
|
@@ -27830,7 +28209,6 @@ export declare type JiraBulkEditInput = {
|
|
|
27830
28209
|
editedFieldsInput: JiraIssueFieldsInput;
|
|
27831
28210
|
selectedActions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
27832
28211
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
27833
|
-
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27834
28212
|
};
|
|
27835
28213
|
export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
27836
28214
|
Add = "ADD",
|
|
@@ -27854,6 +28232,7 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
27854
28232
|
export declare type JiraBulkOperationInput = {
|
|
27855
28233
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
27856
28234
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
28235
|
+
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27857
28236
|
};
|
|
27858
28237
|
export declare enum JiraBulkOperationType {
|
|
27859
28238
|
BulkEdit = "BULK_EDIT",
|
|
@@ -27928,7 +28307,6 @@ export declare type JiraBulkTransitionScreenResponseBulkTransitionsScreenArgs =
|
|
|
27928
28307
|
};
|
|
27929
28308
|
export declare type JiraBulkTransitionsInput = {
|
|
27930
28309
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
27931
|
-
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27932
28310
|
transitionId: Scalars['String']['input'];
|
|
27933
28311
|
transitionScreenInput?: InputMaybe<JiraTransitionScreenInput>;
|
|
27934
28312
|
};
|
|
@@ -28841,6 +29219,7 @@ export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
|
28841
29219
|
editGrants?: Maybe<JiraShareableEntityEditGrantConnection>;
|
|
28842
29220
|
emailSubscriptions?: Maybe<JiraFilterEmailSubscriptionConnection>;
|
|
28843
29221
|
filterId: Scalars['String']['output'];
|
|
29222
|
+
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
28844
29223
|
id: Scalars['ID']['output'];
|
|
28845
29224
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
28846
29225
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28895,6 +29274,14 @@ export declare type JiraCustomRemoteIssueLink = {
|
|
|
28895
29274
|
summary?: Maybe<Scalars['String']['output']>;
|
|
28896
29275
|
title?: Maybe<Scalars['String']['output']>;
|
|
28897
29276
|
};
|
|
29277
|
+
export declare type JiraDashboard = Node & {
|
|
29278
|
+
__typename?: 'JiraDashboard';
|
|
29279
|
+
dashboardId?: Maybe<Scalars['Long']['output']>;
|
|
29280
|
+
dashboardUrl?: Maybe<Scalars['URL']['output']>;
|
|
29281
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
29282
|
+
id: Scalars['ID']['output'];
|
|
29283
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
29284
|
+
};
|
|
28898
29285
|
export declare type JiraDataClassification = {
|
|
28899
29286
|
__typename?: 'JiraDataClassification';
|
|
28900
29287
|
color?: Maybe<JiraColor>;
|
|
@@ -28967,10 +29354,6 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
28967
29354
|
type: Scalars['String']['output'];
|
|
28968
29355
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
28969
29356
|
};
|
|
28970
|
-
export declare type JiraDateRange = {
|
|
28971
|
-
after?: InputMaybe<Scalars['Date']['input']>;
|
|
28972
|
-
before?: InputMaybe<Scalars['Date']['input']>;
|
|
28973
|
-
};
|
|
28974
29357
|
export declare type JiraDateTimeFieldInput = {
|
|
28975
29358
|
dateTime: JiraDateTimeInput;
|
|
28976
29359
|
fieldId: Scalars['ID']['input'];
|
|
@@ -29001,6 +29384,10 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
29001
29384
|
type: Scalars['String']['output'];
|
|
29002
29385
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
29003
29386
|
};
|
|
29387
|
+
export declare type JiraDateTimeRange = {
|
|
29388
|
+
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29389
|
+
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29390
|
+
};
|
|
29004
29391
|
export declare type JiraDateTimeWindow = {
|
|
29005
29392
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29006
29393
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -29214,6 +29601,9 @@ export declare type JiraDevOpsMutationSetProjectSelectedDeploymentAppsPropertyAr
|
|
|
29214
29601
|
input: JiraSetProjectSelectedDeploymentAppsPropertyInput;
|
|
29215
29602
|
};
|
|
29216
29603
|
export declare type JiraDevOpsMutationStartAutodevArgs = {
|
|
29604
|
+
acceptanceCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
29605
|
+
currentState?: InputMaybe<Scalars['String']['input']>;
|
|
29606
|
+
desiredState?: InputMaybe<Scalars['String']['input']>;
|
|
29217
29607
|
issueAri: Scalars['ID']['input'];
|
|
29218
29608
|
jobId: Scalars['ID']['input'];
|
|
29219
29609
|
};
|
|
@@ -29517,6 +29907,7 @@ export declare type JiraFieldType = {
|
|
|
29517
29907
|
};
|
|
29518
29908
|
export declare type JiraFilter = {
|
|
29519
29909
|
filterId: Scalars['String']['output'];
|
|
29910
|
+
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
29520
29911
|
id: Scalars['ID']['output'];
|
|
29521
29912
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
29522
29913
|
jql: Scalars['String']['output'];
|
|
@@ -30944,7 +31335,9 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
30944
31335
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
30945
31336
|
JiraSprintField?: InputMaybe<Array<JiraUpdateSprintFieldInput>>;
|
|
30946
31337
|
JiraTeamViewField?: InputMaybe<Array<JiraUpdateTeamFieldInput>>;
|
|
31338
|
+
JiraTimeTrackingField?: InputMaybe<Array<JiraUpdateTimeTrackingFieldInput>>;
|
|
30947
31339
|
JiraUrlField?: InputMaybe<Array<JiraUpdateUrlFieldInput>>;
|
|
31340
|
+
JiraWorkLogField?: InputMaybe<Array<JiraUpdateWorklogFieldInputForIssueTransitions>>;
|
|
30948
31341
|
};
|
|
30949
31342
|
export declare enum JiraIssueTransitionLayoutMessageType {
|
|
30950
31343
|
Error = "ERROR",
|
|
@@ -31942,6 +32335,7 @@ export declare type JiraMultipleSelectUserPickerFieldSelectedUsersConnectionArgs
|
|
|
31942
32335
|
export declare type JiraMultipleSelectUserPickerFieldUsersArgs = {
|
|
31943
32336
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31944
32337
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
32338
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31945
32339
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31946
32340
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31947
32341
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -32079,6 +32473,7 @@ export declare type JiraMutation = {
|
|
|
32079
32473
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
32080
32474
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
32081
32475
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
32476
|
+
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
32082
32477
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
32083
32478
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
32084
32479
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
@@ -32097,6 +32492,7 @@ export declare type JiraMutation = {
|
|
|
32097
32492
|
updateDataClassificationField?: Maybe<JiraDataClassificationFieldPayload>;
|
|
32098
32493
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
32099
32494
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
32495
|
+
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
32100
32496
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
32101
32497
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
32102
32498
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -32313,6 +32709,9 @@ export declare type JiraMutationRemovePostIncidentReviewLinkArgs = {
|
|
|
32313
32709
|
export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
32314
32710
|
input: JiraRemoveRelatedWorkFromVersionInput;
|
|
32315
32711
|
};
|
|
32712
|
+
export declare type JiraMutationRenameNavigationItemArgs = {
|
|
32713
|
+
input: JiraRenameNavigationItemInput;
|
|
32714
|
+
};
|
|
32316
32715
|
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
32317
32716
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
32318
32717
|
id: Scalars['ID']['input'];
|
|
@@ -32371,6 +32770,9 @@ export declare type JiraMutationUpdateDateFieldArgs = {
|
|
|
32371
32770
|
export declare type JiraMutationUpdateDateTimeFieldArgs = {
|
|
32372
32771
|
input: JiraUpdateDateTimeFieldInput;
|
|
32373
32772
|
};
|
|
32773
|
+
export declare type JiraMutationUpdateEntitlementFieldArgs = {
|
|
32774
|
+
input: JiraServiceManagementUpdateEntitlementFieldInput;
|
|
32775
|
+
};
|
|
32374
32776
|
export declare type JiraMutationUpdateGlobalNotificationOptionsArgs = {
|
|
32375
32777
|
cloudId: Scalars['ID']['input'];
|
|
32376
32778
|
input: JiraUpdateNotificationOptionsInput;
|
|
@@ -33334,6 +33736,7 @@ export declare type JiraProject = Node & {
|
|
|
33334
33736
|
lead?: Maybe<User>;
|
|
33335
33737
|
leadId?: Maybe<Scalars['ID']['output']>;
|
|
33336
33738
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
33739
|
+
linkedOperationsComponentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
|
|
33337
33740
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
33338
33741
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
33339
33742
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
@@ -33411,6 +33814,10 @@ export declare type JiraProjectLinkedDocumentationContainersArgs = {
|
|
|
33411
33814
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33412
33815
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
33413
33816
|
};
|
|
33817
|
+
export declare type JiraProjectLinkedOperationsComponentsByProjectArgs = {
|
|
33818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33819
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33820
|
+
};
|
|
33414
33821
|
export declare type JiraProjectLinkedOperationsIncidentsByProjectArgs = {
|
|
33415
33822
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33416
33823
|
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
@@ -33747,12 +34154,17 @@ export declare type JiraProjectListViewTemplateItem = {
|
|
|
33747
34154
|
__typename?: 'JiraProjectListViewTemplateItem';
|
|
33748
34155
|
canCreate?: Maybe<Scalars['Boolean']['output']>;
|
|
33749
34156
|
description?: Maybe<Scalars['String']['output']>;
|
|
34157
|
+
iconDarkUrl?: Maybe<Scalars['URL']['output']>;
|
|
33750
34158
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
33751
34159
|
isLastUsed?: Maybe<Scalars['Boolean']['output']>;
|
|
33752
34160
|
isPremiumOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
33753
34161
|
isProductLicensed?: Maybe<Scalars['Boolean']['output']>;
|
|
33754
34162
|
key?: Maybe<Scalars['String']['output']>;
|
|
34163
|
+
previewDarkUrl?: Maybe<Scalars['URL']['output']>;
|
|
34164
|
+
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
33755
34165
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
34166
|
+
recommendationSessionId?: Maybe<Scalars['String']['output']>;
|
|
34167
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
33756
34168
|
title?: Maybe<Scalars['String']['output']>;
|
|
33757
34169
|
};
|
|
33758
34170
|
export declare type JiraProjectNavigationMetadata = JiraServiceManagementProjectNavigationMetadata | JiraSoftwareProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
@@ -34663,6 +35075,8 @@ export declare type JiraQueryVersionsForProjectsArgs = {
|
|
|
34663
35075
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34664
35076
|
jiraProjectIds: Array<Scalars['ID']['input']>;
|
|
34665
35077
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35078
|
+
releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
35079
|
+
releaseDateBefore?: InputMaybe<Scalars['Date']['input']>;
|
|
34666
35080
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
34667
35081
|
};
|
|
34668
35082
|
export declare type JiraQueryViewPermissionSchemeArgs = {
|
|
@@ -34927,6 +35341,16 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
34927
35341
|
errors?: Maybe<Array<MutationError>>;
|
|
34928
35342
|
success: Scalars['Boolean']['output'];
|
|
34929
35343
|
};
|
|
35344
|
+
export declare type JiraRenameNavigationItemInput = {
|
|
35345
|
+
id: Scalars['ID']['input'];
|
|
35346
|
+
label: Scalars['String']['input'];
|
|
35347
|
+
};
|
|
35348
|
+
export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
35349
|
+
__typename?: 'JiraRenameNavigationItemPayload';
|
|
35350
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35351
|
+
navigationItem?: Maybe<JiraNavigationItem>;
|
|
35352
|
+
success: Scalars['Boolean']['output'];
|
|
35353
|
+
};
|
|
34930
35354
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
34931
35355
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34932
35356
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35667,6 +36091,12 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
35667
36091
|
type: Scalars['String']['output'];
|
|
35668
36092
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
35669
36093
|
};
|
|
36094
|
+
export declare type JiraServiceManagementEntitlementFieldPayload = Payload & {
|
|
36095
|
+
__typename?: 'JiraServiceManagementEntitlementFieldPayload';
|
|
36096
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36097
|
+
field?: Maybe<JiraServiceManagementEntitlementField>;
|
|
36098
|
+
success: Scalars['Boolean']['output'];
|
|
36099
|
+
};
|
|
35670
36100
|
export declare type JiraServiceManagementFeedback = {
|
|
35671
36101
|
__typename?: 'JiraServiceManagementFeedback';
|
|
35672
36102
|
rating?: Maybe<Scalars['Int']['output']>;
|
|
@@ -36099,6 +36529,14 @@ export declare type JiraServiceManagementUnknownPreviewField = JiraServiceManage
|
|
|
36099
36529
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
36100
36530
|
type?: Maybe<Scalars['String']['output']>;
|
|
36101
36531
|
};
|
|
36532
|
+
export declare type JiraServiceManagementUpdateEntitlementFieldInput = {
|
|
36533
|
+
id: Scalars['ID']['input'];
|
|
36534
|
+
operation?: InputMaybe<JiraServiceManagementUpdateEntitlementOperationInput>;
|
|
36535
|
+
};
|
|
36536
|
+
export declare type JiraServiceManagementUpdateEntitlementOperationInput = {
|
|
36537
|
+
entitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
36538
|
+
operation: JiraSingleValueFieldOperations;
|
|
36539
|
+
};
|
|
36102
36540
|
export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
36103
36541
|
__typename?: 'JiraServiceManagementUserApproverPrincipal';
|
|
36104
36542
|
jiraRest?: Maybe<Scalars['URL']['output']>;
|
|
@@ -36789,6 +37227,7 @@ export declare type JiraSuggestedIssueFieldValuesResult = {
|
|
|
36789
37227
|
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
36790
37228
|
__typename?: 'JiraSystemFilter';
|
|
36791
37229
|
filterId: Scalars['String']['output'];
|
|
37230
|
+
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
36792
37231
|
id: Scalars['ID']['output'];
|
|
36793
37232
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
36794
37233
|
jql: Scalars['String']['output'];
|
|
@@ -37339,6 +37778,10 @@ export declare type JiraUpdateWatchesFieldInput = {
|
|
|
37339
37778
|
id: Scalars['ID']['input'];
|
|
37340
37779
|
operation: JiraWatchesFieldOperationInput;
|
|
37341
37780
|
};
|
|
37781
|
+
export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
37782
|
+
id: Scalars['ID']['input'];
|
|
37783
|
+
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
37784
|
+
};
|
|
37342
37785
|
export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
37343
37786
|
__typename?: 'JiraUrlField';
|
|
37344
37787
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38562,6 +39005,18 @@ export declare type JiraWorklog = Node & {
|
|
|
38562
39005
|
workDescription?: Maybe<JiraRichText>;
|
|
38563
39006
|
worklogId: Scalars['ID']['output'];
|
|
38564
39007
|
};
|
|
39008
|
+
export declare enum JiraWorklogAdjustmentEstimateOperation {
|
|
39009
|
+
Auto = "AUTO",
|
|
39010
|
+
Leave = "LEAVE",
|
|
39011
|
+
Manual = "MANUAL",
|
|
39012
|
+
New = "NEW"
|
|
39013
|
+
}
|
|
39014
|
+
export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
39015
|
+
adjustEstimateInput: JiraAdjustmentEstimate;
|
|
39016
|
+
operation: JiraAddValueFieldOperations;
|
|
39017
|
+
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
39018
|
+
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
39019
|
+
};
|
|
38565
39020
|
export declare type JswMutation = {
|
|
38566
39021
|
__typename?: 'JswMutation';
|
|
38567
39022
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -43988,6 +44443,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
43988
44443
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43989
44444
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43990
44445
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
44446
|
+
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
43991
44447
|
};
|
|
43992
44448
|
export declare type SearchRecentFilterInput = {
|
|
43993
44449
|
entities: Array<Scalars['String']['input']>;
|
|
@@ -44143,6 +44599,15 @@ export declare enum SearchResultType {
|
|
|
44143
44599
|
Unrecognised = "unrecognised",
|
|
44144
44600
|
Whiteboard = "whiteboard"
|
|
44145
44601
|
}
|
|
44602
|
+
export declare type SearchSortInput = {
|
|
44603
|
+
field: Scalars['String']['input'];
|
|
44604
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
44605
|
+
order: SearchSortOrder;
|
|
44606
|
+
};
|
|
44607
|
+
export declare enum SearchSortOrder {
|
|
44608
|
+
Asc = "ASC",
|
|
44609
|
+
Desc = "DESC"
|
|
44610
|
+
}
|
|
44146
44611
|
export declare type Security = {
|
|
44147
44612
|
__typename?: 'Security';
|
|
44148
44613
|
caiq?: Maybe<Caiq>;
|
|
@@ -46504,7 +46969,7 @@ export declare type ToolchainAssociateEntityInput = {
|
|
|
46504
46969
|
fromId: Scalars['ID']['input'];
|
|
46505
46970
|
toEntityUrl: Scalars['URL']['input'];
|
|
46506
46971
|
};
|
|
46507
|
-
export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository | DevOpsService;
|
|
46972
|
+
export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService;
|
|
46508
46973
|
export declare type ToolchainAssociatedEntity = DevOpsDesign;
|
|
46509
46974
|
export declare type ToolchainCheck3Lo = {
|
|
46510
46975
|
__typename?: 'ToolchainCheck3LO';
|
|
@@ -46616,6 +47081,7 @@ export declare enum ToolchainProviderType {
|
|
|
46616
47081
|
Build = "BUILD",
|
|
46617
47082
|
Deployment = "DEPLOYMENT",
|
|
46618
47083
|
Design = "DESIGN",
|
|
47084
|
+
DevopsComponents = "DEVOPS_COMPONENTS",
|
|
46619
47085
|
DevInfo = "DEV_INFO",
|
|
46620
47086
|
Documentation = "DOCUMENTATION",
|
|
46621
47087
|
FeatureFlag = "FEATURE_FLAG",
|
|
@@ -46915,7 +47381,7 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
46915
47381
|
};
|
|
46916
47382
|
export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
46917
47383
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46918
|
-
|
|
47384
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
46919
47385
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46920
47386
|
q: Scalars['String']['input'];
|
|
46921
47387
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
@@ -46936,7 +47402,7 @@ export declare type TownsquareQueryApiProjectSearchArgs = {
|
|
|
46936
47402
|
};
|
|
46937
47403
|
export declare type TownsquareQueryApiProjectTqlArgs = {
|
|
46938
47404
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46939
|
-
|
|
47405
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
46940
47406
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46941
47407
|
q: Scalars['String']['input'];
|
|
46942
47408
|
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
@@ -49171,6 +49637,7 @@ export declare type VirtualAgentMutationApi = {
|
|
|
49171
49637
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
49172
49638
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
49173
49639
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
49640
|
+
updateJsmPortalConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
49174
49641
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
49175
49642
|
};
|
|
49176
49643
|
export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
|
|
@@ -49208,6 +49675,10 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
49208
49675
|
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
49209
49676
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
49210
49677
|
};
|
|
49678
|
+
export declare type VirtualAgentMutationApiUpdateJsmPortalConfigurationArgs = {
|
|
49679
|
+
input: VirtualAgentUpdateJsmPortalSettingsInput;
|
|
49680
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
49681
|
+
};
|
|
49211
49682
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
49212
49683
|
input: VirtualAgentUpdateConfigurationInput;
|
|
49213
49684
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -49296,7 +49767,6 @@ export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
|
49296
49767
|
success: Scalars['Boolean']['output'];
|
|
49297
49768
|
};
|
|
49298
49769
|
export declare type VirtualAgentUpdateConfigurationInput = {
|
|
49299
|
-
isEnabledOnJsmPortal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49300
49770
|
properties?: InputMaybe<VirtualAgentPropertiesInput>;
|
|
49301
49771
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49302
49772
|
};
|
|
@@ -49336,6 +49806,15 @@ export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Pay
|
|
|
49336
49806
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
49337
49807
|
success: Scalars['Boolean']['output'];
|
|
49338
49808
|
};
|
|
49809
|
+
export declare type VirtualAgentUpdateJsmPortalSettingsInput = {
|
|
49810
|
+
isEnabledOnJsmPortal: Scalars['Boolean']['input'];
|
|
49811
|
+
};
|
|
49812
|
+
export declare type VirtualAgentUpdateJsmPortalSettingsPayload = Payload & {
|
|
49813
|
+
__typename?: 'VirtualAgentUpdateJsmPortalSettingsPayload';
|
|
49814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49815
|
+
success: Scalars['Boolean']['output'];
|
|
49816
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
49817
|
+
};
|
|
49339
49818
|
export declare type VirtualAgentUpdatedQuestionInput = {
|
|
49340
49819
|
id: Scalars['ID']['input'];
|
|
49341
49820
|
question: Scalars['String']['input'];
|