@forge/cli-shared 3.8.0-next.1 → 3.8.0-next.3
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/graphql/graphql-types.d.ts +263 -245
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +6 -19
- package/package.json +3 -3
|
@@ -5123,6 +5123,8 @@ export declare type CreateCompassComponentInput = {
|
|
|
5123
5123
|
typeId?: Maybe<Scalars['ID']>;
|
|
5124
5124
|
ownerId?: Maybe<Scalars['ID']>;
|
|
5125
5125
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
5126
|
+
links?: Maybe<Array<CreateCompassLinkInput>>;
|
|
5127
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
5126
5128
|
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
5127
5129
|
};
|
|
5128
5130
|
export declare type CreateCompassComponentLinkInput = {
|
|
@@ -6173,6 +6175,22 @@ export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
6173
6175
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6174
6176
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6175
6177
|
};
|
|
6178
|
+
export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
6179
|
+
__typename?: 'DevOpsDocumentationProvider';
|
|
6180
|
+
id: Scalars['ID'];
|
|
6181
|
+
name?: Maybe<Scalars['String']>;
|
|
6182
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
6183
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
6184
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6185
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6186
|
+
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
6187
|
+
};
|
|
6188
|
+
export declare type DevOpsDocumentationProviderLinkedContainersArgs = {
|
|
6189
|
+
first?: Maybe<Scalars['Int']>;
|
|
6190
|
+
after?: Maybe<Scalars['String']>;
|
|
6191
|
+
type?: Maybe<Scalars['String']>;
|
|
6192
|
+
jiraProjectId: Scalars['ID'];
|
|
6193
|
+
};
|
|
6176
6194
|
export declare type DevOpsEntities = {
|
|
6177
6195
|
__typename?: 'DevOpsEntities';
|
|
6178
6196
|
featureFlagEntities?: Maybe<DevOpsFeatureFlagConnection>;
|
|
@@ -6466,7 +6484,8 @@ export declare enum DevOpsProviderType {
|
|
|
6466
6484
|
Deployment = "DEPLOYMENT",
|
|
6467
6485
|
FeatureFlag = "FEATURE_FLAG",
|
|
6468
6486
|
RemoteLinks = "REMOTE_LINKS",
|
|
6469
|
-
Security = "SECURITY"
|
|
6487
|
+
Security = "SECURITY",
|
|
6488
|
+
Documentation = "DOCUMENTATION"
|
|
6470
6489
|
}
|
|
6471
6490
|
export declare type DevOpsProviders = {
|
|
6472
6491
|
__typename?: 'DevOpsProviders';
|
|
@@ -6476,6 +6495,7 @@ export declare type DevOpsProviders = {
|
|
|
6476
6495
|
featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
|
|
6477
6496
|
remoteLinksProviders?: Maybe<Array<Maybe<DevOpsRemoteLinksProvider>>>;
|
|
6478
6497
|
securityProviders?: Maybe<Array<Maybe<DevOpsSecurityProvider>>>;
|
|
6498
|
+
documentationProviders?: Maybe<Array<Maybe<DevOpsDocumentationProvider>>>;
|
|
6479
6499
|
};
|
|
6480
6500
|
export declare enum DevOpsPullRequestApprovalStatus {
|
|
6481
6501
|
Approved = "APPROVED",
|
|
@@ -6966,13 +6986,6 @@ export declare type DevOpsToolConnection = {
|
|
|
6966
6986
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
6967
6987
|
pageInfo: PageInfo;
|
|
6968
6988
|
};
|
|
6969
|
-
export declare enum DevOpsToolConnectionState {
|
|
6970
|
-
Initial = "INITIAL",
|
|
6971
|
-
Unconnected = "UNCONNECTED",
|
|
6972
|
-
Incomplete = "INCOMPLETE",
|
|
6973
|
-
Connected = "CONNECTED",
|
|
6974
|
-
Seen = "SEEN"
|
|
6975
|
-
}
|
|
6976
6989
|
export declare type DevOpsToolContainer = Node & {
|
|
6977
6990
|
__typename?: 'DevOpsToolContainer';
|
|
6978
6991
|
id: Scalars['ID'];
|
|
@@ -7110,17 +7123,6 @@ export declare type DevOpsToolNamespaceEdge = {
|
|
|
7110
7123
|
cursor: Scalars['String'];
|
|
7111
7124
|
node?: Maybe<DevOpsToolNamespace>;
|
|
7112
7125
|
};
|
|
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
7126
|
export declare type DevOpsToolOAuth = DevOpsToolAuth & {
|
|
7125
7127
|
__typename?: 'DevOpsToolOAuth';
|
|
7126
7128
|
authenticated: Scalars['Boolean'];
|
|
@@ -7145,17 +7147,6 @@ export declare type DevOpsToolUnknownTool = {
|
|
|
7145
7147
|
__typename?: 'DevOpsToolUnknownTool';
|
|
7146
7148
|
toolId?: Maybe<Scalars['String']>;
|
|
7147
7149
|
};
|
|
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
7150
|
export declare type DevOpsTools = {
|
|
7160
7151
|
__typename?: 'DevOpsTools';
|
|
7161
7152
|
tools?: Maybe<DevOpsToolConnection>;
|
|
@@ -7164,7 +7155,6 @@ export declare type DevOpsTools = {
|
|
|
7164
7155
|
isInstalled?: Maybe<Scalars['Boolean']>;
|
|
7165
7156
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
7166
7157
|
container?: Maybe<DevOpsToolContainer>;
|
|
7167
|
-
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
7168
7158
|
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
7169
7159
|
groups?: Maybe<DevOpsToolGroupConnection>;
|
|
7170
7160
|
};
|
|
@@ -7195,10 +7185,6 @@ export declare type DevOpsToolsNamespaceArgs = {
|
|
|
7195
7185
|
export declare type DevOpsToolsContainerArgs = {
|
|
7196
7186
|
id: Scalars['ID'];
|
|
7197
7187
|
};
|
|
7198
|
-
export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
7199
|
-
cloudId: Scalars['ID'];
|
|
7200
|
-
projectId: Scalars['ID'];
|
|
7201
|
-
};
|
|
7202
7188
|
export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
7203
7189
|
cloudId: Scalars['ID'];
|
|
7204
7190
|
toolId: Scalars['String'];
|
|
@@ -8163,7 +8149,6 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
8163
8149
|
displayLink?: Maybe<Scalars['String']>;
|
|
8164
8150
|
entityId?: Maybe<Scalars['String']>;
|
|
8165
8151
|
entityKey?: Maybe<Scalars['String']>;
|
|
8166
|
-
entityProjectId?: Maybe<Scalars['String']>;
|
|
8167
8152
|
containerId?: Maybe<Scalars['String']>;
|
|
8168
8153
|
containerKey?: Maybe<Scalars['String']>;
|
|
8169
8154
|
};
|
|
@@ -8188,7 +8173,6 @@ export declare type HelpObjectStoreChannelResult = HelpObjectStoreChannel | Help
|
|
|
8188
8173
|
export declare type HelpObjectStoreCreateEntityMappingInput = {
|
|
8189
8174
|
entityId: Scalars['String'];
|
|
8190
8175
|
entityKey?: Maybe<Scalars['String']>;
|
|
8191
|
-
projectId?: Maybe<Scalars['String']>;
|
|
8192
8176
|
containerId?: Maybe<Scalars['String']>;
|
|
8193
8177
|
containerKey?: Maybe<Scalars['String']>;
|
|
8194
8178
|
type: HelpObjectStoreJsmEntityType;
|
|
@@ -8259,7 +8243,6 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
8259
8243
|
displayLink?: Maybe<Scalars['String']>;
|
|
8260
8244
|
entityId?: Maybe<Scalars['String']>;
|
|
8261
8245
|
entityKey?: Maybe<Scalars['String']>;
|
|
8262
|
-
entityProjectId?: Maybe<Scalars['String']>;
|
|
8263
8246
|
containerId?: Maybe<Scalars['String']>;
|
|
8264
8247
|
containerKey?: Maybe<Scalars['String']>;
|
|
8265
8248
|
};
|
|
@@ -8269,7 +8252,6 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
8269
8252
|
ari: Scalars['ID'];
|
|
8270
8253
|
entityId: Scalars['String'];
|
|
8271
8254
|
entityKey?: Maybe<Scalars['String']>;
|
|
8272
|
-
projectId?: Maybe<Scalars['String']>;
|
|
8273
8255
|
containerId?: Maybe<Scalars['String']>;
|
|
8274
8256
|
containerKey?: Maybe<Scalars['String']>;
|
|
8275
8257
|
};
|
|
@@ -11854,6 +11836,17 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
11854
11836
|
};
|
|
11855
11837
|
export declare type JiraMutation = {
|
|
11856
11838
|
__typename?: 'JiraMutation';
|
|
11839
|
+
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11840
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
11841
|
+
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
11842
|
+
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
11843
|
+
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
11844
|
+
updateVersionName?: Maybe<JiraUpdateVersionPayload>;
|
|
11845
|
+
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
11846
|
+
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11847
|
+
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11848
|
+
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
11849
|
+
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
11857
11850
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
11858
11851
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
11859
11852
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
@@ -11863,7 +11856,6 @@ export declare type JiraMutation = {
|
|
|
11863
11856
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
11864
11857
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
11865
11858
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
11866
|
-
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11867
11859
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
11868
11860
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
11869
11861
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -11889,21 +11881,46 @@ export declare type JiraMutation = {
|
|
|
11889
11881
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
11890
11882
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
11891
11883
|
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
11884
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
11903
11885
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11904
11886
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11905
11887
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11906
11888
|
};
|
|
11889
|
+
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
11890
|
+
cloudId: Scalars['ID'];
|
|
11891
|
+
input: Array<JiraSetApplicationPropertyInput>;
|
|
11892
|
+
};
|
|
11893
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
11894
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
11895
|
+
};
|
|
11896
|
+
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
11897
|
+
input: JiraMoveIssuesToFixVersionInput;
|
|
11898
|
+
};
|
|
11899
|
+
export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
|
|
11900
|
+
input: JiraRemoveIssuesFromFixVersionInput;
|
|
11901
|
+
};
|
|
11902
|
+
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
11903
|
+
input: JiraUpdateVersionWarningConfigInput;
|
|
11904
|
+
};
|
|
11905
|
+
export declare type JiraMutationUpdateVersionNameArgs = {
|
|
11906
|
+
input: JiraUpdateVersionNameInput;
|
|
11907
|
+
};
|
|
11908
|
+
export declare type JiraMutationUpdateVersionDescriptionArgs = {
|
|
11909
|
+
input: JiraUpdateVersionDescriptionInput;
|
|
11910
|
+
};
|
|
11911
|
+
export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
11912
|
+
input: JiraUpdateVersionStartDateInput;
|
|
11913
|
+
};
|
|
11914
|
+
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
11915
|
+
input: JiraUpdateVersionReleaseDateInput;
|
|
11916
|
+
};
|
|
11917
|
+
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
11918
|
+
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
11919
|
+
};
|
|
11920
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
11921
|
+
id: Scalars['ID'];
|
|
11922
|
+
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
11923
|
+
};
|
|
11907
11924
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
11908
11925
|
cloudId: Scalars['ID'];
|
|
11909
11926
|
};
|
|
@@ -11928,10 +11945,6 @@ export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
|
11928
11945
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
11929
11946
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
11930
11947
|
};
|
|
11931
|
-
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
11932
|
-
cloudId: Scalars['ID'];
|
|
11933
|
-
input: Array<JiraSetApplicationPropertyInput>;
|
|
11934
|
-
};
|
|
11935
11948
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
11936
11949
|
input: JiraSetIsFavouriteInput;
|
|
11937
11950
|
};
|
|
@@ -12010,37 +12023,6 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
12010
12023
|
cloudId: Scalars['ID'];
|
|
12011
12024
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
12012
12025
|
};
|
|
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
12026
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
12045
12027
|
input: JiraCreateShortcutInput;
|
|
12046
12028
|
};
|
|
@@ -12614,6 +12596,7 @@ export declare type JiraProject = Node & {
|
|
|
12614
12596
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
12615
12597
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
12616
12598
|
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
12599
|
+
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
12617
12600
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12618
12601
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
12619
12602
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -12656,6 +12639,11 @@ export declare type JiraProjectLinkedSecurityVulnerabilitiesArgs = {
|
|
|
12656
12639
|
after?: Maybe<Scalars['String']>;
|
|
12657
12640
|
type?: Maybe<Scalars['String']>;
|
|
12658
12641
|
};
|
|
12642
|
+
export declare type JiraProjectLinkedDocumentationContainersArgs = {
|
|
12643
|
+
first?: Maybe<Scalars['Int']>;
|
|
12644
|
+
after?: Maybe<Scalars['String']>;
|
|
12645
|
+
type?: Maybe<Scalars['String']>;
|
|
12646
|
+
};
|
|
12659
12647
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
12660
12648
|
first?: Maybe<Scalars['Int']>;
|
|
12661
12649
|
after?: Maybe<Scalars['String']>;
|
|
@@ -12917,6 +12905,24 @@ export declare type JiraProjectFilterInput = {
|
|
|
12917
12905
|
keyword?: Maybe<Scalars['String']>;
|
|
12918
12906
|
sortBy?: Maybe<JiraProjectSortInput>;
|
|
12919
12907
|
};
|
|
12908
|
+
export declare type JiraProjectListViewTemplateConnection = {
|
|
12909
|
+
__typename?: 'JiraProjectListViewTemplateConnection';
|
|
12910
|
+
edges?: Maybe<Array<Maybe<JiraProjectListViewTemplateEdge>>>;
|
|
12911
|
+
nodes?: Maybe<Array<Maybe<JiraProjectListViewTemplateItem>>>;
|
|
12912
|
+
pageInfo: PageInfo;
|
|
12913
|
+
};
|
|
12914
|
+
export declare type JiraProjectListViewTemplateEdge = {
|
|
12915
|
+
__typename?: 'JiraProjectListViewTemplateEdge';
|
|
12916
|
+
cursor: Scalars['String'];
|
|
12917
|
+
node?: Maybe<JiraProjectListViewTemplateItem>;
|
|
12918
|
+
};
|
|
12919
|
+
export declare type JiraProjectListViewTemplateItem = {
|
|
12920
|
+
__typename?: 'JiraProjectListViewTemplateItem';
|
|
12921
|
+
isLastUsed?: Maybe<Scalars['Boolean']>;
|
|
12922
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
12923
|
+
title?: Maybe<Scalars['String']>;
|
|
12924
|
+
key?: Maybe<Scalars['String']>;
|
|
12925
|
+
};
|
|
12920
12926
|
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
12921
12927
|
export declare type JiraProjectPermission = {
|
|
12922
12928
|
__typename?: 'JiraProjectPermission';
|
|
@@ -13022,13 +13028,40 @@ export declare enum JiraPullRequestState {
|
|
|
13022
13028
|
export declare type JiraQuery = {
|
|
13023
13029
|
__typename?: 'JiraQuery';
|
|
13024
13030
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
13031
|
+
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
13032
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
13033
|
+
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
13034
|
+
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
13035
|
+
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
13036
|
+
jiraProject?: Maybe<JiraProject>;
|
|
13037
|
+
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
13038
|
+
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
13039
|
+
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
13040
|
+
jiraProjectByKey?: Maybe<JiraProject>;
|
|
13041
|
+
version?: Maybe<JiraVersionResult>;
|
|
13042
|
+
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
13043
|
+
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
13044
|
+
isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
13045
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
13046
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
13047
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
13048
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
13049
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
13050
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
13051
|
+
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13052
|
+
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13053
|
+
permission?: Maybe<JiraPermission>;
|
|
13054
|
+
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
13055
|
+
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
13056
|
+
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
13057
|
+
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
13058
|
+
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
13025
13059
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
13026
13060
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
13027
13061
|
filter?: Maybe<JiraFilter>;
|
|
13028
13062
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
13029
13063
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
13030
13064
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
13031
|
-
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
13032
13065
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
13033
13066
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
13034
13067
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
@@ -13041,7 +13074,6 @@ export declare type JiraQuery = {
|
|
|
13041
13074
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
13042
13075
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
13043
13076
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
13044
|
-
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
13045
13077
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
13046
13078
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
13047
13079
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
@@ -13056,34 +13088,10 @@ export declare type JiraQuery = {
|
|
|
13056
13088
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
13057
13089
|
issueHierarchyConfigUpdateTask?: Maybe<JiraHierarchyConfigTask>;
|
|
13058
13090
|
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
13091
|
canPerform?: Maybe<Scalars['Boolean']>;
|
|
13066
|
-
version?: Maybe<JiraVersionResult>;
|
|
13067
|
-
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
13068
|
-
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
13069
|
-
isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
13070
13092
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
13071
13093
|
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
13094
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
13084
|
-
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
13085
|
-
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
13086
|
-
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
13087
13095
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
13088
13096
|
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
13089
13097
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
@@ -13092,6 +13100,142 @@ export declare type JiraQuery = {
|
|
|
13092
13100
|
export declare type JiraQueryGlobalTimeTrackingSettingsArgs = {
|
|
13093
13101
|
cloudId: Scalars['ID'];
|
|
13094
13102
|
};
|
|
13103
|
+
export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
13104
|
+
first?: Maybe<Scalars['Int']>;
|
|
13105
|
+
after?: Maybe<Scalars['String']>;
|
|
13106
|
+
cloudId: Scalars['ID'];
|
|
13107
|
+
};
|
|
13108
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
13109
|
+
cloudId: Scalars['ID'];
|
|
13110
|
+
keys: Array<Scalars['String']>;
|
|
13111
|
+
};
|
|
13112
|
+
export declare type JiraQueryUserSegmentationArgs = {
|
|
13113
|
+
cloudId: Scalars['ID'];
|
|
13114
|
+
};
|
|
13115
|
+
export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
13116
|
+
cloudId: Scalars['ID'];
|
|
13117
|
+
projectStyle?: Maybe<JiraProjectStyle>;
|
|
13118
|
+
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13119
|
+
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13120
|
+
};
|
|
13121
|
+
export declare type JiraQueryAllJiraProjectTypesArgs = {
|
|
13122
|
+
cloudId: Scalars['ID'];
|
|
13123
|
+
first?: Maybe<Scalars['Int']>;
|
|
13124
|
+
last?: Maybe<Scalars['Int']>;
|
|
13125
|
+
after?: Maybe<Scalars['String']>;
|
|
13126
|
+
before?: Maybe<Scalars['String']>;
|
|
13127
|
+
};
|
|
13128
|
+
export declare type JiraQueryJiraProjectArgs = {
|
|
13129
|
+
id: Scalars['ID'];
|
|
13130
|
+
};
|
|
13131
|
+
export declare type JiraQueryAllJiraProjectsArgs = {
|
|
13132
|
+
cloudId: Scalars['ID'];
|
|
13133
|
+
first?: Maybe<Scalars['Int']>;
|
|
13134
|
+
last?: Maybe<Scalars['Int']>;
|
|
13135
|
+
after?: Maybe<Scalars['String']>;
|
|
13136
|
+
before?: Maybe<Scalars['String']>;
|
|
13137
|
+
filter: JiraProjectFilterInput;
|
|
13138
|
+
};
|
|
13139
|
+
export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
13140
|
+
cloudId: Scalars['ID'];
|
|
13141
|
+
first?: Maybe<Scalars['Int']>;
|
|
13142
|
+
last?: Maybe<Scalars['Int']>;
|
|
13143
|
+
after?: Maybe<Scalars['String']>;
|
|
13144
|
+
before?: Maybe<Scalars['String']>;
|
|
13145
|
+
filter?: Maybe<JiraProjectCategoryFilterInput>;
|
|
13146
|
+
};
|
|
13147
|
+
export declare type JiraQueryJiraProjectsArgs = {
|
|
13148
|
+
ids: Array<Scalars['ID']>;
|
|
13149
|
+
};
|
|
13150
|
+
export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
13151
|
+
key: Scalars['String'];
|
|
13152
|
+
cloudId: Scalars['ID'];
|
|
13153
|
+
};
|
|
13154
|
+
export declare type JiraQueryVersionArgs = {
|
|
13155
|
+
id: Scalars['ID'];
|
|
13156
|
+
};
|
|
13157
|
+
export declare type JiraQueryVersionsForProjectArgs = {
|
|
13158
|
+
jiraProjectId: Scalars['ID'];
|
|
13159
|
+
first?: Maybe<Scalars['Int']>;
|
|
13160
|
+
after?: Maybe<Scalars['String']>;
|
|
13161
|
+
last?: Maybe<Scalars['Int']>;
|
|
13162
|
+
before?: Maybe<Scalars['String']>;
|
|
13163
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
13164
|
+
releaseDateAfter?: Maybe<Scalars['Date']>;
|
|
13165
|
+
releaseDateBefore?: Maybe<Scalars['Date']>;
|
|
13166
|
+
searchString?: Maybe<Scalars['String']>;
|
|
13167
|
+
};
|
|
13168
|
+
export declare type JiraQueryVersionsForProjectsArgs = {
|
|
13169
|
+
jiraProjectIds: Array<Scalars['ID']>;
|
|
13170
|
+
first?: Maybe<Scalars['Int']>;
|
|
13171
|
+
after?: Maybe<Scalars['String']>;
|
|
13172
|
+
last?: Maybe<Scalars['Int']>;
|
|
13173
|
+
before?: Maybe<Scalars['String']>;
|
|
13174
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
13175
|
+
searchString?: Maybe<Scalars['String']>;
|
|
13176
|
+
};
|
|
13177
|
+
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
13178
|
+
cloudId: Scalars['ID'];
|
|
13179
|
+
};
|
|
13180
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
13181
|
+
cloudId: Scalars['ID'];
|
|
13182
|
+
jql: Scalars['String'];
|
|
13183
|
+
};
|
|
13184
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
13185
|
+
id: Scalars['ID'];
|
|
13186
|
+
};
|
|
13187
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
13188
|
+
ids: Array<Scalars['ID']>;
|
|
13189
|
+
};
|
|
13190
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
13191
|
+
id: Scalars['ID'];
|
|
13192
|
+
};
|
|
13193
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
13194
|
+
cloudId: Scalars['ID'];
|
|
13195
|
+
namespace?: Maybe<Scalars['String']>;
|
|
13196
|
+
viewId?: Maybe<Scalars['String']>;
|
|
13197
|
+
};
|
|
13198
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
13199
|
+
cloudId: Scalars['ID'];
|
|
13200
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
13201
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
13202
|
+
first?: Maybe<Scalars['Int']>;
|
|
13203
|
+
after?: Maybe<Scalars['String']>;
|
|
13204
|
+
last?: Maybe<Scalars['Int']>;
|
|
13205
|
+
before?: Maybe<Scalars['String']>;
|
|
13206
|
+
};
|
|
13207
|
+
export declare type JiraQueryIssueSearchTotalCountArgs = {
|
|
13208
|
+
cloudId: Scalars['ID'];
|
|
13209
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
13210
|
+
};
|
|
13211
|
+
export declare type JiraQueryIssueSearchStatusArgs = {
|
|
13212
|
+
cloudId: Scalars['ID'];
|
|
13213
|
+
jql: Scalars['String'];
|
|
13214
|
+
};
|
|
13215
|
+
export declare type JiraQueryPermissionArgs = {
|
|
13216
|
+
cloudId: Scalars['ID'];
|
|
13217
|
+
type: JiraPermissionType;
|
|
13218
|
+
};
|
|
13219
|
+
export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
13220
|
+
cloudId: Scalars['ID'];
|
|
13221
|
+
};
|
|
13222
|
+
export declare type JiraQueryRequestTypeTemplateDefaultConfigurationDependenciesArgs = {
|
|
13223
|
+
projectId: Scalars['ID'];
|
|
13224
|
+
};
|
|
13225
|
+
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
13226
|
+
id: Scalars['ID'];
|
|
13227
|
+
};
|
|
13228
|
+
export declare type JiraQueryResourceUsageMetricArgs = {
|
|
13229
|
+
cloudId: Scalars['ID'];
|
|
13230
|
+
metricKey: Scalars['String'];
|
|
13231
|
+
};
|
|
13232
|
+
export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
13233
|
+
cloudId: Scalars['ID'];
|
|
13234
|
+
first?: Maybe<Scalars['Int']>;
|
|
13235
|
+
after?: Maybe<Scalars['String']>;
|
|
13236
|
+
last?: Maybe<Scalars['Int']>;
|
|
13237
|
+
before?: Maybe<Scalars['String']>;
|
|
13238
|
+
};
|
|
13095
13239
|
export declare type JiraQueryUserPreferencesArgs = {
|
|
13096
13240
|
cloudId: Scalars['ID'];
|
|
13097
13241
|
};
|
|
@@ -13120,10 +13264,6 @@ export declare type JiraQueryDevOpsProvidersArgs = {
|
|
|
13120
13264
|
cloudId: Scalars['ID'];
|
|
13121
13265
|
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
13122
13266
|
};
|
|
13123
|
-
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
13124
|
-
cloudId: Scalars['ID'];
|
|
13125
|
-
keys: Array<Scalars['String']>;
|
|
13126
|
-
};
|
|
13127
13267
|
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
13128
13268
|
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
13129
13269
|
};
|
|
@@ -13168,12 +13308,6 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
13168
13308
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
13169
13309
|
cloudId?: Maybe<Scalars['ID']>;
|
|
13170
13310
|
};
|
|
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
13311
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
13178
13312
|
cloudId: Scalars['ID'];
|
|
13179
13313
|
};
|
|
@@ -13247,69 +13381,10 @@ export declare type JiraQueryIssueLinkTypesArgs = {
|
|
|
13247
13381
|
last?: Maybe<Scalars['Int']>;
|
|
13248
13382
|
before?: Maybe<Scalars['String']>;
|
|
13249
13383
|
};
|
|
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
13384
|
export declare type JiraQueryCanPerformArgs = {
|
|
13284
13385
|
type: JiraActionType;
|
|
13285
13386
|
cloudId: Scalars['ID'];
|
|
13286
13387
|
};
|
|
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
13388
|
export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
13314
13389
|
id: Scalars['ID'];
|
|
13315
13390
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -13322,65 +13397,6 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
13322
13397
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
13323
13398
|
cloudId: Scalars['ID'];
|
|
13324
13399
|
};
|
|
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
13400
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
13385
13401
|
projectId: Scalars['ID'];
|
|
13386
13402
|
};
|
|
@@ -15142,6 +15158,11 @@ export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
|
15142
15158
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
15143
15159
|
searchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
15144
15160
|
};
|
|
15161
|
+
export declare type JiraUserSegmentation = {
|
|
15162
|
+
__typename?: 'JiraUserSegmentation';
|
|
15163
|
+
role?: Maybe<Scalars['String']>;
|
|
15164
|
+
teamType?: Maybe<Scalars['String']>;
|
|
15165
|
+
};
|
|
15145
15166
|
export declare type JiraVersion = Node & {
|
|
15146
15167
|
__typename?: 'JiraVersion';
|
|
15147
15168
|
id: Scalars['ID'];
|
|
@@ -15168,6 +15189,7 @@ export declare type JiraVersion = Node & {
|
|
|
15168
15189
|
versionIssueTableHiddenColumns?: Maybe<Array<Maybe<JiraVersionIssueTableColumn>>>;
|
|
15169
15190
|
epicsForFilter?: Maybe<JiraIssueConnection>;
|
|
15170
15191
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
15192
|
+
warningsCount?: Maybe<Scalars['Long']>;
|
|
15171
15193
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
15172
15194
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
15173
15195
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -16323,7 +16345,6 @@ export declare type Mutation = {
|
|
|
16323
16345
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
16324
16346
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
16325
16347
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
16326
|
-
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
16327
16348
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
16328
16349
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
16329
16350
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -16767,9 +16788,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
16767
16788
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
16768
16789
|
input: AppUnsubscribeInput;
|
|
16769
16790
|
};
|
|
16770
|
-
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
16771
|
-
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
16772
|
-
};
|
|
16773
16791
|
export declare type MutationCreateDevOpsServiceArgs = {
|
|
16774
16792
|
input: CreateDevOpsServiceInput;
|
|
16775
16793
|
};
|
|
@@ -22676,8 +22694,8 @@ export declare type TrelloTemplateGalleryCategory = {
|
|
|
22676
22694
|
};
|
|
22677
22695
|
export declare type TrelloTemplateGalleryConnection = {
|
|
22678
22696
|
__typename?: 'TrelloTemplateGalleryConnection';
|
|
22679
|
-
edges: Array<
|
|
22680
|
-
nodes: Array<
|
|
22697
|
+
edges: Array<TrelloBoardEdge>;
|
|
22698
|
+
nodes: Array<TrelloBoard>;
|
|
22681
22699
|
pageInfo: PageInfo;
|
|
22682
22700
|
};
|
|
22683
22701
|
export declare type TrelloTemplateGalleryFilterInput = {
|