@forge/cli-shared 3.7.1-next.0 → 3.8.0-next.2
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 +15 -0
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +5 -2
- package/out/apps/create-app-graphql-client.d.ts +2 -2
- package/out/apps/create-app-graphql-client.d.ts.map +1 -1
- package/out/apps/create-app-graphql-client.js +4 -1
- package/out/apps/register-app.d.ts +9 -2
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +8 -5
- package/out/graphql/app-environment-graphql-client.d.ts +11 -3
- package/out/graphql/app-environment-graphql-client.d.ts.map +1 -1
- package/out/graphql/app-environment-graphql-client.js +36 -6
- package/out/graphql/graphql-types.d.ts +266 -243
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +12 -19
- package/out/shared/environment.d.ts +1 -0
- package/out/shared/environment.d.ts.map +1 -1
- package/out/shared/environment.js +2 -1
- package/out/ui/text.d.ts +21 -13
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +32 -15
- package/package.json +2 -2
|
@@ -6173,6 +6173,22 @@ export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
6173
6173
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6174
6174
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6175
6175
|
};
|
|
6176
|
+
export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
6177
|
+
__typename?: 'DevOpsDocumentationProvider';
|
|
6178
|
+
id: Scalars['ID'];
|
|
6179
|
+
name?: Maybe<Scalars['String']>;
|
|
6180
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
6181
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
6182
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6183
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6184
|
+
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
6185
|
+
};
|
|
6186
|
+
export declare type DevOpsDocumentationProviderLinkedContainersArgs = {
|
|
6187
|
+
first?: Maybe<Scalars['Int']>;
|
|
6188
|
+
after?: Maybe<Scalars['String']>;
|
|
6189
|
+
type?: Maybe<Scalars['String']>;
|
|
6190
|
+
jiraProjectId: Scalars['ID'];
|
|
6191
|
+
};
|
|
6176
6192
|
export declare type DevOpsEntities = {
|
|
6177
6193
|
__typename?: 'DevOpsEntities';
|
|
6178
6194
|
featureFlagEntities?: Maybe<DevOpsFeatureFlagConnection>;
|
|
@@ -6466,7 +6482,8 @@ export declare enum DevOpsProviderType {
|
|
|
6466
6482
|
Deployment = "DEPLOYMENT",
|
|
6467
6483
|
FeatureFlag = "FEATURE_FLAG",
|
|
6468
6484
|
RemoteLinks = "REMOTE_LINKS",
|
|
6469
|
-
Security = "SECURITY"
|
|
6485
|
+
Security = "SECURITY",
|
|
6486
|
+
Documentation = "DOCUMENTATION"
|
|
6470
6487
|
}
|
|
6471
6488
|
export declare type DevOpsProviders = {
|
|
6472
6489
|
__typename?: 'DevOpsProviders';
|
|
@@ -6476,6 +6493,7 @@ export declare type DevOpsProviders = {
|
|
|
6476
6493
|
featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
|
|
6477
6494
|
remoteLinksProviders?: Maybe<Array<Maybe<DevOpsRemoteLinksProvider>>>;
|
|
6478
6495
|
securityProviders?: Maybe<Array<Maybe<DevOpsSecurityProvider>>>;
|
|
6496
|
+
documentationProviders?: Maybe<Array<Maybe<DevOpsDocumentationProvider>>>;
|
|
6479
6497
|
};
|
|
6480
6498
|
export declare enum DevOpsPullRequestApprovalStatus {
|
|
6481
6499
|
Approved = "APPROVED",
|
|
@@ -6966,13 +6984,6 @@ export declare type DevOpsToolConnection = {
|
|
|
6966
6984
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
6967
6985
|
pageInfo: PageInfo;
|
|
6968
6986
|
};
|
|
6969
|
-
export declare enum DevOpsToolConnectionState {
|
|
6970
|
-
Initial = "INITIAL",
|
|
6971
|
-
Unconnected = "UNCONNECTED",
|
|
6972
|
-
Incomplete = "INCOMPLETE",
|
|
6973
|
-
Connected = "CONNECTED",
|
|
6974
|
-
Seen = "SEEN"
|
|
6975
|
-
}
|
|
6976
6987
|
export declare type DevOpsToolContainer = Node & {
|
|
6977
6988
|
__typename?: 'DevOpsToolContainer';
|
|
6978
6989
|
id: Scalars['ID'];
|
|
@@ -7110,17 +7121,6 @@ export declare type DevOpsToolNamespaceEdge = {
|
|
|
7110
7121
|
cursor: Scalars['String'];
|
|
7111
7122
|
node?: Maybe<DevOpsToolNamespace>;
|
|
7112
7123
|
};
|
|
7113
|
-
export declare type DevOpsToolNavbarConnectionState = {
|
|
7114
|
-
__typename?: 'DevOpsToolNavbarConnectionState';
|
|
7115
|
-
codeTab: DevOpsToolConnectionState;
|
|
7116
|
-
oncallTab: DevOpsToolConnectionState;
|
|
7117
|
-
pagesTab: DevOpsToolConnectionState;
|
|
7118
|
-
};
|
|
7119
|
-
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
7120
|
-
CodeTab = "CODE_TAB",
|
|
7121
|
-
OncallTab = "ONCALL_TAB",
|
|
7122
|
-
PagesTab = "PAGES_TAB"
|
|
7123
|
-
}
|
|
7124
7124
|
export declare type DevOpsToolOAuth = DevOpsToolAuth & {
|
|
7125
7125
|
__typename?: 'DevOpsToolOAuth';
|
|
7126
7126
|
authenticated: Scalars['Boolean'];
|
|
@@ -7145,17 +7145,6 @@ export declare type DevOpsToolUnknownTool = {
|
|
|
7145
7145
|
__typename?: 'DevOpsToolUnknownTool';
|
|
7146
7146
|
toolId?: Maybe<Scalars['String']>;
|
|
7147
7147
|
};
|
|
7148
|
-
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenInput = {
|
|
7149
|
-
cloudId: Scalars['ID'];
|
|
7150
|
-
projectId: Scalars['ID'];
|
|
7151
|
-
tab?: Maybe<DevOpsToolNavbarConnectionStateTab>;
|
|
7152
|
-
};
|
|
7153
|
-
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payload & {
|
|
7154
|
-
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
7155
|
-
success: Scalars['Boolean'];
|
|
7156
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7157
|
-
updatedNavbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
7158
|
-
};
|
|
7159
7148
|
export declare type DevOpsTools = {
|
|
7160
7149
|
__typename?: 'DevOpsTools';
|
|
7161
7150
|
tools?: Maybe<DevOpsToolConnection>;
|
|
@@ -7164,7 +7153,6 @@ export declare type DevOpsTools = {
|
|
|
7164
7153
|
isInstalled?: Maybe<Scalars['Boolean']>;
|
|
7165
7154
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
7166
7155
|
container?: Maybe<DevOpsToolContainer>;
|
|
7167
|
-
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
7168
7156
|
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
7169
7157
|
groups?: Maybe<DevOpsToolGroupConnection>;
|
|
7170
7158
|
};
|
|
@@ -7195,10 +7183,6 @@ export declare type DevOpsToolsNamespaceArgs = {
|
|
|
7195
7183
|
export declare type DevOpsToolsContainerArgs = {
|
|
7196
7184
|
id: Scalars['ID'];
|
|
7197
7185
|
};
|
|
7198
|
-
export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
7199
|
-
cloudId: Scalars['ID'];
|
|
7200
|
-
projectId: Scalars['ID'];
|
|
7201
|
-
};
|
|
7202
7186
|
export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
7203
7187
|
cloudId: Scalars['ID'];
|
|
7204
7188
|
toolId: Scalars['String'];
|
|
@@ -8163,7 +8147,6 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
8163
8147
|
displayLink?: Maybe<Scalars['String']>;
|
|
8164
8148
|
entityId?: Maybe<Scalars['String']>;
|
|
8165
8149
|
entityKey?: Maybe<Scalars['String']>;
|
|
8166
|
-
entityProjectId?: Maybe<Scalars['String']>;
|
|
8167
8150
|
containerId?: Maybe<Scalars['String']>;
|
|
8168
8151
|
containerKey?: Maybe<Scalars['String']>;
|
|
8169
8152
|
};
|
|
@@ -8188,7 +8171,6 @@ export declare type HelpObjectStoreChannelResult = HelpObjectStoreChannel | Help
|
|
|
8188
8171
|
export declare type HelpObjectStoreCreateEntityMappingInput = {
|
|
8189
8172
|
entityId: Scalars['String'];
|
|
8190
8173
|
entityKey?: Maybe<Scalars['String']>;
|
|
8191
|
-
projectId?: Maybe<Scalars['String']>;
|
|
8192
8174
|
containerId?: Maybe<Scalars['String']>;
|
|
8193
8175
|
containerKey?: Maybe<Scalars['String']>;
|
|
8194
8176
|
type: HelpObjectStoreJsmEntityType;
|
|
@@ -8259,7 +8241,6 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
8259
8241
|
displayLink?: Maybe<Scalars['String']>;
|
|
8260
8242
|
entityId?: Maybe<Scalars['String']>;
|
|
8261
8243
|
entityKey?: Maybe<Scalars['String']>;
|
|
8262
|
-
entityProjectId?: Maybe<Scalars['String']>;
|
|
8263
8244
|
containerId?: Maybe<Scalars['String']>;
|
|
8264
8245
|
containerKey?: Maybe<Scalars['String']>;
|
|
8265
8246
|
};
|
|
@@ -8269,7 +8250,6 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
8269
8250
|
ari: Scalars['ID'];
|
|
8270
8251
|
entityId: Scalars['String'];
|
|
8271
8252
|
entityKey?: Maybe<Scalars['String']>;
|
|
8272
|
-
projectId?: Maybe<Scalars['String']>;
|
|
8273
8253
|
containerId?: Maybe<Scalars['String']>;
|
|
8274
8254
|
containerKey?: Maybe<Scalars['String']>;
|
|
8275
8255
|
};
|
|
@@ -11854,6 +11834,17 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
11854
11834
|
};
|
|
11855
11835
|
export declare type JiraMutation = {
|
|
11856
11836
|
__typename?: 'JiraMutation';
|
|
11837
|
+
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11838
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
11839
|
+
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
11840
|
+
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
11841
|
+
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
11842
|
+
updateVersionName?: Maybe<JiraUpdateVersionPayload>;
|
|
11843
|
+
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
11844
|
+
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11845
|
+
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11846
|
+
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
11847
|
+
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
11857
11848
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
11858
11849
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
11859
11850
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
@@ -11863,7 +11854,6 @@ export declare type JiraMutation = {
|
|
|
11863
11854
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
11864
11855
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
11865
11856
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
11866
|
-
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11867
11857
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
11868
11858
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
11869
11859
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -11889,21 +11879,46 @@ export declare type JiraMutation = {
|
|
|
11889
11879
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
11890
11880
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
11891
11881
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
11892
|
-
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
11893
|
-
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
11894
|
-
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
11895
|
-
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
11896
|
-
updateVersionName?: Maybe<JiraUpdateVersionPayload>;
|
|
11897
|
-
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
11898
|
-
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11899
|
-
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11900
|
-
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
11901
|
-
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
11902
11882
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
11903
11883
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11904
11884
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11905
11885
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11906
11886
|
};
|
|
11887
|
+
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
11888
|
+
cloudId: Scalars['ID'];
|
|
11889
|
+
input: Array<JiraSetApplicationPropertyInput>;
|
|
11890
|
+
};
|
|
11891
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
11892
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
11893
|
+
};
|
|
11894
|
+
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
11895
|
+
input: JiraMoveIssuesToFixVersionInput;
|
|
11896
|
+
};
|
|
11897
|
+
export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
|
|
11898
|
+
input: JiraRemoveIssuesFromFixVersionInput;
|
|
11899
|
+
};
|
|
11900
|
+
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
11901
|
+
input: JiraUpdateVersionWarningConfigInput;
|
|
11902
|
+
};
|
|
11903
|
+
export declare type JiraMutationUpdateVersionNameArgs = {
|
|
11904
|
+
input: JiraUpdateVersionNameInput;
|
|
11905
|
+
};
|
|
11906
|
+
export declare type JiraMutationUpdateVersionDescriptionArgs = {
|
|
11907
|
+
input: JiraUpdateVersionDescriptionInput;
|
|
11908
|
+
};
|
|
11909
|
+
export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
11910
|
+
input: JiraUpdateVersionStartDateInput;
|
|
11911
|
+
};
|
|
11912
|
+
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
11913
|
+
input: JiraUpdateVersionReleaseDateInput;
|
|
11914
|
+
};
|
|
11915
|
+
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
11916
|
+
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
11917
|
+
};
|
|
11918
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
11919
|
+
id: Scalars['ID'];
|
|
11920
|
+
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
11921
|
+
};
|
|
11907
11922
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
11908
11923
|
cloudId: Scalars['ID'];
|
|
11909
11924
|
};
|
|
@@ -11928,10 +11943,6 @@ export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
|
11928
11943
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
11929
11944
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
11930
11945
|
};
|
|
11931
|
-
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
11932
|
-
cloudId: Scalars['ID'];
|
|
11933
|
-
input: Array<JiraSetApplicationPropertyInput>;
|
|
11934
|
-
};
|
|
11935
11946
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
11936
11947
|
input: JiraSetIsFavouriteInput;
|
|
11937
11948
|
};
|
|
@@ -12010,37 +12021,6 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
12010
12021
|
cloudId: Scalars['ID'];
|
|
12011
12022
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
12012
12023
|
};
|
|
12013
|
-
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
12014
|
-
input: JiraAddIssuesToFixVersionInput;
|
|
12015
|
-
};
|
|
12016
|
-
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
12017
|
-
input: JiraMoveIssuesToFixVersionInput;
|
|
12018
|
-
};
|
|
12019
|
-
export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
|
|
12020
|
-
input: JiraRemoveIssuesFromFixVersionInput;
|
|
12021
|
-
};
|
|
12022
|
-
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
12023
|
-
input: JiraUpdateVersionWarningConfigInput;
|
|
12024
|
-
};
|
|
12025
|
-
export declare type JiraMutationUpdateVersionNameArgs = {
|
|
12026
|
-
input: JiraUpdateVersionNameInput;
|
|
12027
|
-
};
|
|
12028
|
-
export declare type JiraMutationUpdateVersionDescriptionArgs = {
|
|
12029
|
-
input: JiraUpdateVersionDescriptionInput;
|
|
12030
|
-
};
|
|
12031
|
-
export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
12032
|
-
input: JiraUpdateVersionStartDateInput;
|
|
12033
|
-
};
|
|
12034
|
-
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
12035
|
-
input: JiraUpdateVersionReleaseDateInput;
|
|
12036
|
-
};
|
|
12037
|
-
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
12038
|
-
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
12039
|
-
};
|
|
12040
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
12041
|
-
id: Scalars['ID'];
|
|
12042
|
-
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
12043
|
-
};
|
|
12044
12024
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
12045
12025
|
input: JiraCreateShortcutInput;
|
|
12046
12026
|
};
|
|
@@ -12614,6 +12594,7 @@ export declare type JiraProject = Node & {
|
|
|
12614
12594
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
12615
12595
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
12616
12596
|
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
12597
|
+
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
12617
12598
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12618
12599
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
12619
12600
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -12656,6 +12637,11 @@ export declare type JiraProjectLinkedSecurityVulnerabilitiesArgs = {
|
|
|
12656
12637
|
after?: Maybe<Scalars['String']>;
|
|
12657
12638
|
type?: Maybe<Scalars['String']>;
|
|
12658
12639
|
};
|
|
12640
|
+
export declare type JiraProjectLinkedDocumentationContainersArgs = {
|
|
12641
|
+
first?: Maybe<Scalars['Int']>;
|
|
12642
|
+
after?: Maybe<Scalars['String']>;
|
|
12643
|
+
type?: Maybe<Scalars['String']>;
|
|
12644
|
+
};
|
|
12659
12645
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
12660
12646
|
first?: Maybe<Scalars['Int']>;
|
|
12661
12647
|
after?: Maybe<Scalars['String']>;
|
|
@@ -12917,6 +12903,24 @@ export declare type JiraProjectFilterInput = {
|
|
|
12917
12903
|
keyword?: Maybe<Scalars['String']>;
|
|
12918
12904
|
sortBy?: Maybe<JiraProjectSortInput>;
|
|
12919
12905
|
};
|
|
12906
|
+
export declare type JiraProjectListViewTemplateConnection = {
|
|
12907
|
+
__typename?: 'JiraProjectListViewTemplateConnection';
|
|
12908
|
+
edges?: Maybe<Array<Maybe<JiraProjectListViewTemplateEdge>>>;
|
|
12909
|
+
nodes?: Maybe<Array<Maybe<JiraProjectListViewTemplateItem>>>;
|
|
12910
|
+
pageInfo: PageInfo;
|
|
12911
|
+
};
|
|
12912
|
+
export declare type JiraProjectListViewTemplateEdge = {
|
|
12913
|
+
__typename?: 'JiraProjectListViewTemplateEdge';
|
|
12914
|
+
cursor: Scalars['String'];
|
|
12915
|
+
node?: Maybe<JiraProjectListViewTemplateItem>;
|
|
12916
|
+
};
|
|
12917
|
+
export declare type JiraProjectListViewTemplateItem = {
|
|
12918
|
+
__typename?: 'JiraProjectListViewTemplateItem';
|
|
12919
|
+
isLastUsed?: Maybe<Scalars['Boolean']>;
|
|
12920
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
12921
|
+
title?: Maybe<Scalars['String']>;
|
|
12922
|
+
key?: Maybe<Scalars['String']>;
|
|
12923
|
+
};
|
|
12920
12924
|
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
12921
12925
|
export declare type JiraProjectPermission = {
|
|
12922
12926
|
__typename?: 'JiraProjectPermission';
|
|
@@ -13022,13 +13026,40 @@ export declare enum JiraPullRequestState {
|
|
|
13022
13026
|
export declare type JiraQuery = {
|
|
13023
13027
|
__typename?: 'JiraQuery';
|
|
13024
13028
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
13029
|
+
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
13030
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
13031
|
+
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
13032
|
+
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
13033
|
+
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
13034
|
+
jiraProject?: Maybe<JiraProject>;
|
|
13035
|
+
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
13036
|
+
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
13037
|
+
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
13038
|
+
jiraProjectByKey?: Maybe<JiraProject>;
|
|
13039
|
+
version?: Maybe<JiraVersionResult>;
|
|
13040
|
+
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
13041
|
+
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
13042
|
+
isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
13043
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
13044
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
13045
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
13046
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
13047
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
13048
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
13049
|
+
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13050
|
+
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13051
|
+
permission?: Maybe<JiraPermission>;
|
|
13052
|
+
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
13053
|
+
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
13054
|
+
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
13055
|
+
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
13056
|
+
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
13025
13057
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
13026
13058
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
13027
13059
|
filter?: Maybe<JiraFilter>;
|
|
13028
13060
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
13029
13061
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
13030
13062
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
13031
|
-
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
13032
13063
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
13033
13064
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
13034
13065
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
@@ -13041,7 +13072,6 @@ export declare type JiraQuery = {
|
|
|
13041
13072
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
13042
13073
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
13043
13074
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
13044
|
-
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
13045
13075
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
13046
13076
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
13047
13077
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
@@ -13056,34 +13086,10 @@ export declare type JiraQuery = {
|
|
|
13056
13086
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
13057
13087
|
issueHierarchyConfigUpdateTask?: Maybe<JiraHierarchyConfigTask>;
|
|
13058
13088
|
issueLinkTypes?: Maybe<JiraIssueLinkTypeConnection>;
|
|
13059
|
-
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
13060
|
-
jiraProject?: Maybe<JiraProject>;
|
|
13061
|
-
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
13062
|
-
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
13063
|
-
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
13064
|
-
jiraProjectByKey?: Maybe<JiraProject>;
|
|
13065
13089
|
canPerform?: Maybe<Scalars['Boolean']>;
|
|
13066
|
-
version?: Maybe<JiraVersionResult>;
|
|
13067
|
-
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
13068
|
-
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
13069
|
-
isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
13070
13090
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
13071
13091
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
13072
|
-
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
13073
|
-
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
13074
|
-
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
13075
|
-
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
13076
|
-
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
13077
|
-
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
13078
|
-
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13079
|
-
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13080
|
-
permission?: Maybe<JiraPermission>;
|
|
13081
|
-
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
13082
|
-
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
13083
13092
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
13084
|
-
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
13085
|
-
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
13086
|
-
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
13087
13093
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
13088
13094
|
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
13089
13095
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
@@ -13092,6 +13098,142 @@ export declare type JiraQuery = {
|
|
|
13092
13098
|
export declare type JiraQueryGlobalTimeTrackingSettingsArgs = {
|
|
13093
13099
|
cloudId: Scalars['ID'];
|
|
13094
13100
|
};
|
|
13101
|
+
export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
13102
|
+
first?: Maybe<Scalars['Int']>;
|
|
13103
|
+
after?: Maybe<Scalars['String']>;
|
|
13104
|
+
cloudId: Scalars['ID'];
|
|
13105
|
+
};
|
|
13106
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
13107
|
+
cloudId: Scalars['ID'];
|
|
13108
|
+
keys: Array<Scalars['String']>;
|
|
13109
|
+
};
|
|
13110
|
+
export declare type JiraQueryUserSegmentationArgs = {
|
|
13111
|
+
cloudId: Scalars['ID'];
|
|
13112
|
+
};
|
|
13113
|
+
export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
13114
|
+
cloudId: Scalars['ID'];
|
|
13115
|
+
projectStyle?: Maybe<JiraProjectStyle>;
|
|
13116
|
+
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13117
|
+
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13118
|
+
};
|
|
13119
|
+
export declare type JiraQueryAllJiraProjectTypesArgs = {
|
|
13120
|
+
cloudId: Scalars['ID'];
|
|
13121
|
+
first?: Maybe<Scalars['Int']>;
|
|
13122
|
+
last?: Maybe<Scalars['Int']>;
|
|
13123
|
+
after?: Maybe<Scalars['String']>;
|
|
13124
|
+
before?: Maybe<Scalars['String']>;
|
|
13125
|
+
};
|
|
13126
|
+
export declare type JiraQueryJiraProjectArgs = {
|
|
13127
|
+
id: Scalars['ID'];
|
|
13128
|
+
};
|
|
13129
|
+
export declare type JiraQueryAllJiraProjectsArgs = {
|
|
13130
|
+
cloudId: Scalars['ID'];
|
|
13131
|
+
first?: Maybe<Scalars['Int']>;
|
|
13132
|
+
last?: Maybe<Scalars['Int']>;
|
|
13133
|
+
after?: Maybe<Scalars['String']>;
|
|
13134
|
+
before?: Maybe<Scalars['String']>;
|
|
13135
|
+
filter: JiraProjectFilterInput;
|
|
13136
|
+
};
|
|
13137
|
+
export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
13138
|
+
cloudId: Scalars['ID'];
|
|
13139
|
+
first?: Maybe<Scalars['Int']>;
|
|
13140
|
+
last?: Maybe<Scalars['Int']>;
|
|
13141
|
+
after?: Maybe<Scalars['String']>;
|
|
13142
|
+
before?: Maybe<Scalars['String']>;
|
|
13143
|
+
filter?: Maybe<JiraProjectCategoryFilterInput>;
|
|
13144
|
+
};
|
|
13145
|
+
export declare type JiraQueryJiraProjectsArgs = {
|
|
13146
|
+
ids: Array<Scalars['ID']>;
|
|
13147
|
+
};
|
|
13148
|
+
export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
13149
|
+
key: Scalars['String'];
|
|
13150
|
+
cloudId: Scalars['ID'];
|
|
13151
|
+
};
|
|
13152
|
+
export declare type JiraQueryVersionArgs = {
|
|
13153
|
+
id: Scalars['ID'];
|
|
13154
|
+
};
|
|
13155
|
+
export declare type JiraQueryVersionsForProjectArgs = {
|
|
13156
|
+
jiraProjectId: Scalars['ID'];
|
|
13157
|
+
first?: Maybe<Scalars['Int']>;
|
|
13158
|
+
after?: Maybe<Scalars['String']>;
|
|
13159
|
+
last?: Maybe<Scalars['Int']>;
|
|
13160
|
+
before?: Maybe<Scalars['String']>;
|
|
13161
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
13162
|
+
releaseDateAfter?: Maybe<Scalars['Date']>;
|
|
13163
|
+
releaseDateBefore?: Maybe<Scalars['Date']>;
|
|
13164
|
+
searchString?: Maybe<Scalars['String']>;
|
|
13165
|
+
};
|
|
13166
|
+
export declare type JiraQueryVersionsForProjectsArgs = {
|
|
13167
|
+
jiraProjectIds: Array<Scalars['ID']>;
|
|
13168
|
+
first?: Maybe<Scalars['Int']>;
|
|
13169
|
+
after?: Maybe<Scalars['String']>;
|
|
13170
|
+
last?: Maybe<Scalars['Int']>;
|
|
13171
|
+
before?: Maybe<Scalars['String']>;
|
|
13172
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
13173
|
+
searchString?: Maybe<Scalars['String']>;
|
|
13174
|
+
};
|
|
13175
|
+
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
13176
|
+
cloudId: Scalars['ID'];
|
|
13177
|
+
};
|
|
13178
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
13179
|
+
cloudId: Scalars['ID'];
|
|
13180
|
+
jql: Scalars['String'];
|
|
13181
|
+
};
|
|
13182
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
13183
|
+
id: Scalars['ID'];
|
|
13184
|
+
};
|
|
13185
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
13186
|
+
ids: Array<Scalars['ID']>;
|
|
13187
|
+
};
|
|
13188
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
13189
|
+
id: Scalars['ID'];
|
|
13190
|
+
};
|
|
13191
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
13192
|
+
cloudId: Scalars['ID'];
|
|
13193
|
+
namespace?: Maybe<Scalars['String']>;
|
|
13194
|
+
viewId?: Maybe<Scalars['String']>;
|
|
13195
|
+
};
|
|
13196
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
13197
|
+
cloudId: Scalars['ID'];
|
|
13198
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
13199
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
13200
|
+
first?: Maybe<Scalars['Int']>;
|
|
13201
|
+
after?: Maybe<Scalars['String']>;
|
|
13202
|
+
last?: Maybe<Scalars['Int']>;
|
|
13203
|
+
before?: Maybe<Scalars['String']>;
|
|
13204
|
+
};
|
|
13205
|
+
export declare type JiraQueryIssueSearchTotalCountArgs = {
|
|
13206
|
+
cloudId: Scalars['ID'];
|
|
13207
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
13208
|
+
};
|
|
13209
|
+
export declare type JiraQueryIssueSearchStatusArgs = {
|
|
13210
|
+
cloudId: Scalars['ID'];
|
|
13211
|
+
jql: Scalars['String'];
|
|
13212
|
+
};
|
|
13213
|
+
export declare type JiraQueryPermissionArgs = {
|
|
13214
|
+
cloudId: Scalars['ID'];
|
|
13215
|
+
type: JiraPermissionType;
|
|
13216
|
+
};
|
|
13217
|
+
export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
13218
|
+
cloudId: Scalars['ID'];
|
|
13219
|
+
};
|
|
13220
|
+
export declare type JiraQueryRequestTypeTemplateDefaultConfigurationDependenciesArgs = {
|
|
13221
|
+
projectId: Scalars['ID'];
|
|
13222
|
+
};
|
|
13223
|
+
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
13224
|
+
id: Scalars['ID'];
|
|
13225
|
+
};
|
|
13226
|
+
export declare type JiraQueryResourceUsageMetricArgs = {
|
|
13227
|
+
cloudId: Scalars['ID'];
|
|
13228
|
+
metricKey: Scalars['String'];
|
|
13229
|
+
};
|
|
13230
|
+
export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
13231
|
+
cloudId: Scalars['ID'];
|
|
13232
|
+
first?: Maybe<Scalars['Int']>;
|
|
13233
|
+
after?: Maybe<Scalars['String']>;
|
|
13234
|
+
last?: Maybe<Scalars['Int']>;
|
|
13235
|
+
before?: Maybe<Scalars['String']>;
|
|
13236
|
+
};
|
|
13095
13237
|
export declare type JiraQueryUserPreferencesArgs = {
|
|
13096
13238
|
cloudId: Scalars['ID'];
|
|
13097
13239
|
};
|
|
@@ -13120,10 +13262,6 @@ export declare type JiraQueryDevOpsProvidersArgs = {
|
|
|
13120
13262
|
cloudId: Scalars['ID'];
|
|
13121
13263
|
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
13122
13264
|
};
|
|
13123
|
-
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
13124
|
-
cloudId: Scalars['ID'];
|
|
13125
|
-
keys: Array<Scalars['String']>;
|
|
13126
|
-
};
|
|
13127
13265
|
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
13128
13266
|
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
13129
13267
|
};
|
|
@@ -13168,12 +13306,6 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
13168
13306
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
13169
13307
|
cloudId?: Maybe<Scalars['ID']>;
|
|
13170
13308
|
};
|
|
13171
|
-
export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
13172
|
-
cloudId: Scalars['ID'];
|
|
13173
|
-
projectStyle?: Maybe<JiraProjectStyle>;
|
|
13174
|
-
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13175
|
-
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13176
|
-
};
|
|
13177
13309
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
13178
13310
|
cloudId: Scalars['ID'];
|
|
13179
13311
|
};
|
|
@@ -13247,69 +13379,10 @@ export declare type JiraQueryIssueLinkTypesArgs = {
|
|
|
13247
13379
|
last?: Maybe<Scalars['Int']>;
|
|
13248
13380
|
before?: Maybe<Scalars['String']>;
|
|
13249
13381
|
};
|
|
13250
|
-
export declare type JiraQueryAllJiraProjectTypesArgs = {
|
|
13251
|
-
cloudId: Scalars['ID'];
|
|
13252
|
-
first?: Maybe<Scalars['Int']>;
|
|
13253
|
-
last?: Maybe<Scalars['Int']>;
|
|
13254
|
-
after?: Maybe<Scalars['String']>;
|
|
13255
|
-
before?: Maybe<Scalars['String']>;
|
|
13256
|
-
};
|
|
13257
|
-
export declare type JiraQueryJiraProjectArgs = {
|
|
13258
|
-
id: Scalars['ID'];
|
|
13259
|
-
};
|
|
13260
|
-
export declare type JiraQueryAllJiraProjectsArgs = {
|
|
13261
|
-
cloudId: Scalars['ID'];
|
|
13262
|
-
first?: Maybe<Scalars['Int']>;
|
|
13263
|
-
last?: Maybe<Scalars['Int']>;
|
|
13264
|
-
after?: Maybe<Scalars['String']>;
|
|
13265
|
-
before?: Maybe<Scalars['String']>;
|
|
13266
|
-
filter: JiraProjectFilterInput;
|
|
13267
|
-
};
|
|
13268
|
-
export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
13269
|
-
cloudId: Scalars['ID'];
|
|
13270
|
-
first?: Maybe<Scalars['Int']>;
|
|
13271
|
-
last?: Maybe<Scalars['Int']>;
|
|
13272
|
-
after?: Maybe<Scalars['String']>;
|
|
13273
|
-
before?: Maybe<Scalars['String']>;
|
|
13274
|
-
filter?: Maybe<JiraProjectCategoryFilterInput>;
|
|
13275
|
-
};
|
|
13276
|
-
export declare type JiraQueryJiraProjectsArgs = {
|
|
13277
|
-
ids: Array<Scalars['ID']>;
|
|
13278
|
-
};
|
|
13279
|
-
export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
13280
|
-
key: Scalars['String'];
|
|
13281
|
-
cloudId: Scalars['ID'];
|
|
13282
|
-
};
|
|
13283
13382
|
export declare type JiraQueryCanPerformArgs = {
|
|
13284
13383
|
type: JiraActionType;
|
|
13285
13384
|
cloudId: Scalars['ID'];
|
|
13286
13385
|
};
|
|
13287
|
-
export declare type JiraQueryVersionArgs = {
|
|
13288
|
-
id: Scalars['ID'];
|
|
13289
|
-
};
|
|
13290
|
-
export declare type JiraQueryVersionsForProjectArgs = {
|
|
13291
|
-
jiraProjectId: Scalars['ID'];
|
|
13292
|
-
first?: Maybe<Scalars['Int']>;
|
|
13293
|
-
after?: Maybe<Scalars['String']>;
|
|
13294
|
-
last?: Maybe<Scalars['Int']>;
|
|
13295
|
-
before?: Maybe<Scalars['String']>;
|
|
13296
|
-
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
13297
|
-
releaseDateAfter?: Maybe<Scalars['Date']>;
|
|
13298
|
-
releaseDateBefore?: Maybe<Scalars['Date']>;
|
|
13299
|
-
searchString?: Maybe<Scalars['String']>;
|
|
13300
|
-
};
|
|
13301
|
-
export declare type JiraQueryVersionsForProjectsArgs = {
|
|
13302
|
-
jiraProjectIds: Array<Scalars['ID']>;
|
|
13303
|
-
first?: Maybe<Scalars['Int']>;
|
|
13304
|
-
after?: Maybe<Scalars['String']>;
|
|
13305
|
-
last?: Maybe<Scalars['Int']>;
|
|
13306
|
-
before?: Maybe<Scalars['String']>;
|
|
13307
|
-
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
13308
|
-
searchString?: Maybe<Scalars['String']>;
|
|
13309
|
-
};
|
|
13310
|
-
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
13311
|
-
cloudId: Scalars['ID'];
|
|
13312
|
-
};
|
|
13313
13386
|
export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
13314
13387
|
id: Scalars['ID'];
|
|
13315
13388
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -13322,65 +13395,6 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
13322
13395
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
13323
13396
|
cloudId: Scalars['ID'];
|
|
13324
13397
|
};
|
|
13325
|
-
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
13326
|
-
cloudId: Scalars['ID'];
|
|
13327
|
-
jql: Scalars['String'];
|
|
13328
|
-
};
|
|
13329
|
-
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
13330
|
-
id: Scalars['ID'];
|
|
13331
|
-
};
|
|
13332
|
-
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
13333
|
-
ids: Array<Scalars['ID']>;
|
|
13334
|
-
};
|
|
13335
|
-
export declare type JiraQueryIssueSearchViewArgs = {
|
|
13336
|
-
id: Scalars['ID'];
|
|
13337
|
-
};
|
|
13338
|
-
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
13339
|
-
cloudId: Scalars['ID'];
|
|
13340
|
-
namespace?: Maybe<Scalars['String']>;
|
|
13341
|
-
viewId?: Maybe<Scalars['String']>;
|
|
13342
|
-
};
|
|
13343
|
-
export declare type JiraQueryIssueSearchStableArgs = {
|
|
13344
|
-
cloudId: Scalars['ID'];
|
|
13345
|
-
issueSearchInput: JiraIssueSearchInput;
|
|
13346
|
-
options?: Maybe<JiraIssueSearchOptions>;
|
|
13347
|
-
first?: Maybe<Scalars['Int']>;
|
|
13348
|
-
after?: Maybe<Scalars['String']>;
|
|
13349
|
-
last?: Maybe<Scalars['Int']>;
|
|
13350
|
-
before?: Maybe<Scalars['String']>;
|
|
13351
|
-
};
|
|
13352
|
-
export declare type JiraQueryIssueSearchTotalCountArgs = {
|
|
13353
|
-
cloudId: Scalars['ID'];
|
|
13354
|
-
issueSearchInput: JiraIssueSearchInput;
|
|
13355
|
-
};
|
|
13356
|
-
export declare type JiraQueryIssueSearchStatusArgs = {
|
|
13357
|
-
cloudId: Scalars['ID'];
|
|
13358
|
-
jql: Scalars['String'];
|
|
13359
|
-
};
|
|
13360
|
-
export declare type JiraQueryPermissionArgs = {
|
|
13361
|
-
cloudId: Scalars['ID'];
|
|
13362
|
-
type: JiraPermissionType;
|
|
13363
|
-
};
|
|
13364
|
-
export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
13365
|
-
cloudId: Scalars['ID'];
|
|
13366
|
-
};
|
|
13367
|
-
export declare type JiraQueryRequestTypeTemplateDefaultConfigurationDependenciesArgs = {
|
|
13368
|
-
projectId: Scalars['ID'];
|
|
13369
|
-
};
|
|
13370
|
-
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
13371
|
-
id: Scalars['ID'];
|
|
13372
|
-
};
|
|
13373
|
-
export declare type JiraQueryResourceUsageMetricArgs = {
|
|
13374
|
-
cloudId: Scalars['ID'];
|
|
13375
|
-
metricKey: Scalars['String'];
|
|
13376
|
-
};
|
|
13377
|
-
export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
13378
|
-
cloudId: Scalars['ID'];
|
|
13379
|
-
first?: Maybe<Scalars['Int']>;
|
|
13380
|
-
after?: Maybe<Scalars['String']>;
|
|
13381
|
-
last?: Maybe<Scalars['Int']>;
|
|
13382
|
-
before?: Maybe<Scalars['String']>;
|
|
13383
|
-
};
|
|
13384
13398
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
13385
13399
|
projectId: Scalars['ID'];
|
|
13386
13400
|
};
|
|
@@ -15142,6 +15156,11 @@ export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
|
15142
15156
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
15143
15157
|
searchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
15144
15158
|
};
|
|
15159
|
+
export declare type JiraUserSegmentation = {
|
|
15160
|
+
__typename?: 'JiraUserSegmentation';
|
|
15161
|
+
role?: Maybe<Scalars['String']>;
|
|
15162
|
+
teamType?: Maybe<Scalars['String']>;
|
|
15163
|
+
};
|
|
15145
15164
|
export declare type JiraVersion = Node & {
|
|
15146
15165
|
__typename?: 'JiraVersion';
|
|
15147
15166
|
id: Scalars['ID'];
|
|
@@ -16323,7 +16342,6 @@ export declare type Mutation = {
|
|
|
16323
16342
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
16324
16343
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
16325
16344
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
16326
|
-
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
16327
16345
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
16328
16346
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
16329
16347
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -16767,9 +16785,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
16767
16785
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
16768
16786
|
input: AppUnsubscribeInput;
|
|
16769
16787
|
};
|
|
16770
|
-
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
16771
|
-
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
16772
|
-
};
|
|
16773
16788
|
export declare type MutationCreateDevOpsServiceArgs = {
|
|
16774
16789
|
input: CreateDevOpsServiceInput;
|
|
16775
16790
|
};
|
|
@@ -19301,7 +19316,13 @@ export declare type RoadmapBoardConfiguration = {
|
|
|
19301
19316
|
isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']>;
|
|
19302
19317
|
isChildIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
19303
19318
|
derivedFields?: Maybe<Array<RoadmapField>>;
|
|
19319
|
+
childIssuePlanningMode?: Maybe<RoadmapChildIssuePlanningMode>;
|
|
19304
19320
|
};
|
|
19321
|
+
export declare enum RoadmapChildIssuePlanningMode {
|
|
19322
|
+
Date = "DATE",
|
|
19323
|
+
Sprint = "SPRINT",
|
|
19324
|
+
Disabled = "DISABLED"
|
|
19325
|
+
}
|
|
19305
19326
|
export declare type RoadmapChildItem = {
|
|
19306
19327
|
__typename?: 'RoadmapChildItem';
|
|
19307
19328
|
id: Scalars['ID'];
|
|
@@ -19764,11 +19785,13 @@ export declare type RoadmapUpdateItemResponse = {
|
|
|
19764
19785
|
export declare type RoadmapUpdateSettingsInput = {
|
|
19765
19786
|
roadmapEnabled?: Maybe<Scalars['Boolean']>;
|
|
19766
19787
|
childIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
19788
|
+
childIssuePlanningMode?: Maybe<RoadmapChildIssuePlanningMode>;
|
|
19767
19789
|
};
|
|
19768
19790
|
export declare type RoadmapUpdateSettingsOutput = {
|
|
19769
19791
|
__typename?: 'RoadmapUpdateSettingsOutput';
|
|
19770
19792
|
roadmapEnabled?: Maybe<Scalars['Boolean']>;
|
|
19771
19793
|
childIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
19794
|
+
childIssuePlanningMode?: Maybe<RoadmapChildIssuePlanningMode>;
|
|
19772
19795
|
};
|
|
19773
19796
|
export declare type RoadmapUpdateSettingsPayload = Payload & {
|
|
19774
19797
|
__typename?: 'RoadmapUpdateSettingsPayload';
|