@forge/cli-shared 8.0.1-next.6 → 8.1.0-experimental-b2e5f99
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 +63 -0
- package/out/apps/create-an-app.d.ts +1 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +4 -1
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/file-system/file-system-reader.js +6 -9
- package/out/graphql/graphql-types.d.ts +489 -81
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -19
- package/out/service/bridge-script-service.d.ts.map +1 -1
- package/out/service/bridge-script-service.js +2 -3
- package/out/service/iframe-resizer-script-service.d.ts.map +1 -1
- package/out/service/iframe-resizer-script-service.js +2 -3
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/package.json +6 -7
|
@@ -1308,6 +1308,12 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
1308
1308
|
scenario?: Maybe<AgentStudioScenario>;
|
|
1309
1309
|
success: Scalars['Boolean']['output'];
|
|
1310
1310
|
};
|
|
1311
|
+
export declare type AgentStudioDeleteAgentPayload = Payload & {
|
|
1312
|
+
__typename?: 'AgentStudioDeleteAgentPayload';
|
|
1313
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
1314
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1315
|
+
success: Scalars['Boolean']['output'];
|
|
1316
|
+
};
|
|
1311
1317
|
export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
1312
1318
|
__typename?: 'AgentStudioDeleteScenarioPayload';
|
|
1313
1319
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -1800,12 +1806,42 @@ export declare type AppContainerInput = {
|
|
|
1800
1806
|
appId: Scalars['ID']['input'];
|
|
1801
1807
|
containerKey: Scalars['String']['input'];
|
|
1802
1808
|
};
|
|
1809
|
+
export declare type AppContainerInstance = {
|
|
1810
|
+
__typename?: 'AppContainerInstance';
|
|
1811
|
+
containerStatus?: Maybe<Scalars['String']['output']>;
|
|
1812
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1813
|
+
healthStatus?: Maybe<Scalars['String']['output']>;
|
|
1814
|
+
id: Scalars['ID']['output'];
|
|
1815
|
+
imageURI?: Maybe<Scalars['String']['output']>;
|
|
1816
|
+
};
|
|
1817
|
+
export declare type AppContainerInstances = {
|
|
1818
|
+
__typename?: 'AppContainerInstances';
|
|
1819
|
+
instances?: Maybe<Array<AppContainerInstance>>;
|
|
1820
|
+
key: Scalars['ID']['output'];
|
|
1821
|
+
};
|
|
1803
1822
|
export declare type AppContainerRegistryLogin = {
|
|
1804
1823
|
__typename?: 'AppContainerRegistryLogin';
|
|
1805
1824
|
endpoint: Scalars['String']['output'];
|
|
1806
1825
|
password: Scalars['String']['output'];
|
|
1807
1826
|
username: Scalars['String']['output'];
|
|
1808
1827
|
};
|
|
1828
|
+
export declare type AppContainerService = {
|
|
1829
|
+
__typename?: 'AppContainerService';
|
|
1830
|
+
containers?: Maybe<Array<AppContainerInstances>>;
|
|
1831
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1832
|
+
key: Scalars['ID']['output'];
|
|
1833
|
+
maxCount?: Maybe<Scalars['String']['output']>;
|
|
1834
|
+
minCount?: Maybe<Scalars['String']['output']>;
|
|
1835
|
+
pendingCount?: Maybe<Scalars['String']['output']>;
|
|
1836
|
+
runningCount?: Maybe<Scalars['String']['output']>;
|
|
1837
|
+
serviceStatus?: Maybe<Scalars['String']['output']>;
|
|
1838
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
1839
|
+
versionStatus?: Maybe<Scalars['String']['output']>;
|
|
1840
|
+
};
|
|
1841
|
+
export declare type AppContainerServices = {
|
|
1842
|
+
__typename?: 'AppContainerServices';
|
|
1843
|
+
services?: Maybe<Array<AppContainerService>>;
|
|
1844
|
+
};
|
|
1809
1845
|
export declare type AppContributor = {
|
|
1810
1846
|
__typename?: 'AppContributor';
|
|
1811
1847
|
accountId: Scalars['String']['output'];
|
|
@@ -3264,6 +3300,7 @@ export declare type AtlassianStudioUserProductPermissions = {
|
|
|
3264
3300
|
export declare type AtlassianStudioUserSiteContextOutput = {
|
|
3265
3301
|
__typename?: 'AtlassianStudioUserSiteContextOutput';
|
|
3266
3302
|
isAIEnabledForVirtualAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
3303
|
+
isAIEnabledOnAnyActiveProducts?: Maybe<Scalars['Boolean']['output']>;
|
|
3267
3304
|
isAssetsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3268
3305
|
isCompanyHubAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3269
3306
|
isConfluenceAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3272,6 +3309,7 @@ export declare type AtlassianStudioUserSiteContextOutput = {
|
|
|
3272
3309
|
isJSMAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3273
3310
|
isJSMEditionPremiumOrEnterprise?: Maybe<Scalars['Boolean']['output']>;
|
|
3274
3311
|
isJiraAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3312
|
+
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3275
3313
|
isVirtualAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3276
3314
|
userPermissions?: Maybe<AtlassianStudioUserProductPermissions>;
|
|
3277
3315
|
};
|
|
@@ -7190,7 +7228,6 @@ export declare type CompassCatalogQueryApi = {
|
|
|
7190
7228
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
7191
7229
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
7192
7230
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
7193
|
-
topScorecards?: Maybe<CompassTopScorecardConnection>;
|
|
7194
7231
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
7195
7232
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
7196
7233
|
};
|
|
@@ -7355,12 +7392,6 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
7355
7392
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
7356
7393
|
input: CompassTeamDataInput;
|
|
7357
7394
|
};
|
|
7358
|
-
export declare type CompassCatalogQueryApiTopScorecardsArgs = {
|
|
7359
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
7360
|
-
cloudId: Scalars['ID']['input'];
|
|
7361
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7362
|
-
query?: InputMaybe<CompassTopScorecardsQuery>;
|
|
7363
|
-
};
|
|
7364
7395
|
export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
7365
7396
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7366
7397
|
componentId: Scalars['ID']['input'];
|
|
@@ -11188,53 +11219,6 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
11188
11219
|
cursor: Scalars['String']['output'];
|
|
11189
11220
|
node?: Maybe<CompassTeamMetricSource>;
|
|
11190
11221
|
};
|
|
11191
|
-
export declare type CompassTopComponentsQuery = {
|
|
11192
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11193
|
-
sort?: InputMaybe<CompassTopComponentsQuerySort>;
|
|
11194
|
-
};
|
|
11195
|
-
export declare type CompassTopComponentsQuerySort = {
|
|
11196
|
-
order: CompassScorecardQuerySortOrder;
|
|
11197
|
-
};
|
|
11198
|
-
export declare type CompassTopScorecardComponentConnection = {
|
|
11199
|
-
__typename?: 'CompassTopScorecardComponentConnection';
|
|
11200
|
-
edges?: Maybe<Array<CompassTopScorecardComponentEdge>>;
|
|
11201
|
-
nodes?: Maybe<Array<CompassComponent>>;
|
|
11202
|
-
pageInfo: PageInfo;
|
|
11203
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
11204
|
-
};
|
|
11205
|
-
export declare type CompassTopScorecardComponentEdge = {
|
|
11206
|
-
__typename?: 'CompassTopScorecardComponentEdge';
|
|
11207
|
-
cursor: Scalars['String']['output'];
|
|
11208
|
-
node?: Maybe<CompassComponent>;
|
|
11209
|
-
};
|
|
11210
|
-
export declare type CompassTopScorecardConnection = {
|
|
11211
|
-
__typename?: 'CompassTopScorecardConnection';
|
|
11212
|
-
edges?: Maybe<Array<CompassTopScorecardEdge>>;
|
|
11213
|
-
nodes?: Maybe<Array<CompassScorecard>>;
|
|
11214
|
-
pageInfo: PageInfo;
|
|
11215
|
-
};
|
|
11216
|
-
export declare type CompassTopScorecardEdge = {
|
|
11217
|
-
__typename?: 'CompassTopScorecardEdge';
|
|
11218
|
-
compositeScore: Scalars['Int']['output'];
|
|
11219
|
-
cursor: Scalars['String']['output'];
|
|
11220
|
-
node?: Maybe<CompassScorecard>;
|
|
11221
|
-
topComponents?: Maybe<CompassTopScorecardComponentConnection>;
|
|
11222
|
-
};
|
|
11223
|
-
export declare type CompassTopScorecardEdgeTopComponentsArgs = {
|
|
11224
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
11225
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11226
|
-
query?: InputMaybe<CompassTopComponentsQuery>;
|
|
11227
|
-
};
|
|
11228
|
-
export declare type CompassTopScorecardsQuery = {
|
|
11229
|
-
filter?: InputMaybe<CompassTopScorecardsQueryFilter>;
|
|
11230
|
-
sort?: InputMaybe<CompassTopScorecardsQuerySort>;
|
|
11231
|
-
};
|
|
11232
|
-
export declare type CompassTopScorecardsQueryFilter = {
|
|
11233
|
-
teams?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
11234
|
-
};
|
|
11235
|
-
export declare type CompassTopScorecardsQuerySort = {
|
|
11236
|
-
order?: InputMaybe<CompassScorecardQuerySortOrder>;
|
|
11237
|
-
};
|
|
11238
11222
|
export declare type CompassUnsetEntityPropertyInput = {
|
|
11239
11223
|
cloudId: Scalars['ID']['input'];
|
|
11240
11224
|
key: Scalars['String']['input'];
|
|
@@ -16283,6 +16267,36 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
16283
16267
|
isValid: Scalars['Boolean']['output'];
|
|
16284
16268
|
message?: Maybe<Scalars['String']['output']>;
|
|
16285
16269
|
};
|
|
16270
|
+
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
16271
|
+
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
16272
|
+
entity?: Maybe<ConfluenceBlogPost>;
|
|
16273
|
+
id: Scalars['ID']['output'];
|
|
16274
|
+
suggestionSources: Array<Scalars['String']['output']>;
|
|
16275
|
+
url: Scalars['String']['output'];
|
|
16276
|
+
};
|
|
16277
|
+
export declare type ConvoAiJiraConfluencePageSuggestion = {
|
|
16278
|
+
__typename?: 'ConvoAiJiraConfluencePageSuggestion';
|
|
16279
|
+
entity?: Maybe<ConfluencePage>;
|
|
16280
|
+
id: Scalars['ID']['output'];
|
|
16281
|
+
suggestionSources: Array<Scalars['String']['output']>;
|
|
16282
|
+
url: Scalars['String']['output'];
|
|
16283
|
+
};
|
|
16284
|
+
export declare type ConvoAiJiraIssueRelatedResourcesResult = {
|
|
16285
|
+
__typename?: 'ConvoAiJiraIssueRelatedResourcesResult';
|
|
16286
|
+
edges?: Maybe<Array<ConvoAiJiraRelatedResourcesEdge>>;
|
|
16287
|
+
errors?: Maybe<Array<QueryError>>;
|
|
16288
|
+
pageInfo: PageInfo;
|
|
16289
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16290
|
+
};
|
|
16291
|
+
export declare type ConvoAiJiraRelatedResourceSuggestion = ConvoAiJiraConfluenceBlogSuggestion | ConvoAiJiraConfluencePageSuggestion;
|
|
16292
|
+
export declare type ConvoAiJiraRelatedResourcesEdge = {
|
|
16293
|
+
__typename?: 'ConvoAiJiraRelatedResourcesEdge';
|
|
16294
|
+
cursor: Scalars['String']['output'];
|
|
16295
|
+
node?: Maybe<ConvoAiJiraRelatedResourceSuggestion>;
|
|
16296
|
+
};
|
|
16297
|
+
export declare type ConvoAiJiraSearchSourcesInput = {
|
|
16298
|
+
confluenceSiteAri: Scalars['ID']['input'];
|
|
16299
|
+
};
|
|
16286
16300
|
export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
16287
16301
|
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
16288
16302
|
id: Scalars['ID']['output'];
|
|
@@ -16881,6 +16895,20 @@ export declare type CreateJiraPlaybookInput = {
|
|
|
16881
16895
|
state?: InputMaybe<JiraPlaybookStateField>;
|
|
16882
16896
|
steps: Array<CreateJiraPlaybookStepInput>;
|
|
16883
16897
|
};
|
|
16898
|
+
export declare type CreateJiraPlaybookLabelInput = {
|
|
16899
|
+
cloudId: Scalars['ID']['input'];
|
|
16900
|
+
name: Scalars['String']['input'];
|
|
16901
|
+
playbookId?: InputMaybe<Scalars['ID']['input']>;
|
|
16902
|
+
property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
|
|
16903
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
16904
|
+
scopeType: JiraPlaybookScopeType;
|
|
16905
|
+
};
|
|
16906
|
+
export declare type CreateJiraPlaybookLabelPayload = Payload & {
|
|
16907
|
+
__typename?: 'CreateJiraPlaybookLabelPayload';
|
|
16908
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16909
|
+
label?: Maybe<JiraPlaybookLabel>;
|
|
16910
|
+
success: Scalars['Boolean']['output'];
|
|
16911
|
+
};
|
|
16884
16912
|
export declare type CreateJiraPlaybookPayload = Payload & {
|
|
16885
16913
|
__typename?: 'CreateJiraPlaybookPayload';
|
|
16886
16914
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -19491,12 +19519,23 @@ export declare type DevAiFlowSessionCompletePayload = Payload & {
|
|
|
19491
19519
|
errors?: Maybe<Array<MutationError>>;
|
|
19492
19520
|
success: Scalars['Boolean']['output'];
|
|
19493
19521
|
};
|
|
19522
|
+
export declare type DevAiFlowSessionConnection = {
|
|
19523
|
+
__typename?: 'DevAiFlowSessionConnection';
|
|
19524
|
+
edges?: Maybe<Array<Maybe<DevAiFlowSessionEdge>>>;
|
|
19525
|
+
nodes?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
19526
|
+
pageInfo: PageInfo;
|
|
19527
|
+
};
|
|
19494
19528
|
export declare type DevAiFlowSessionCreatePayload = Payload & {
|
|
19495
19529
|
__typename?: 'DevAiFlowSessionCreatePayload';
|
|
19496
19530
|
data?: Maybe<DevAiFlowSession>;
|
|
19497
19531
|
errors?: Maybe<Array<MutationError>>;
|
|
19498
19532
|
success: Scalars['Boolean']['output'];
|
|
19499
19533
|
};
|
|
19534
|
+
export declare type DevAiFlowSessionEdge = {
|
|
19535
|
+
__typename?: 'DevAiFlowSessionEdge';
|
|
19536
|
+
cursor: Scalars['String']['output'];
|
|
19537
|
+
node?: Maybe<DevAiFlowSession>;
|
|
19538
|
+
};
|
|
19500
19539
|
export declare enum DevAiFlowSessionsStatus {
|
|
19501
19540
|
Completed = "COMPLETED",
|
|
19502
19541
|
Failed = "FAILED",
|
|
@@ -47681,7 +47720,7 @@ export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge
|
|
|
47681
47720
|
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion>;
|
|
47682
47721
|
};
|
|
47683
47722
|
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47684
|
-
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentUnion =
|
|
47723
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentUnion = ConfluenceSpace;
|
|
47685
47724
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
47686
47725
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
47687
47726
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -50166,6 +50205,7 @@ export declare type HelpCenter = Node & {
|
|
|
50166
50205
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
50167
50206
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
50168
50207
|
name?: Maybe<HelpCenterName>;
|
|
50208
|
+
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
50169
50209
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
50170
50210
|
portals?: Maybe<HelpCenterPortals>;
|
|
50171
50211
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
@@ -50177,6 +50217,9 @@ export declare type HelpCenter = Node & {
|
|
|
50177
50217
|
virtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
50178
50218
|
virtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50179
50219
|
};
|
|
50220
|
+
export declare type HelpCenterPagesArgs = {
|
|
50221
|
+
filter?: InputMaybe<HelpCenterPagesFilter>;
|
|
50222
|
+
};
|
|
50180
50223
|
export declare type HelpCenterPortalsArgs = {
|
|
50181
50224
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
50182
50225
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
@@ -50534,6 +50577,9 @@ export declare type HelpCenterPageUpdatePayload = Payload & {
|
|
|
50534
50577
|
helpCenterPage?: Maybe<HelpCenterPage>;
|
|
50535
50578
|
success: Scalars['Boolean']['output'];
|
|
50536
50579
|
};
|
|
50580
|
+
export declare type HelpCenterPagesFilter = {
|
|
50581
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50582
|
+
};
|
|
50537
50583
|
export declare type HelpCenterPermissionSettings = {
|
|
50538
50584
|
__typename?: 'HelpCenterPermissionSettings';
|
|
50539
50585
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -51241,6 +51287,7 @@ export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
|
51241
51287
|
hideTitle?: Maybe<Scalars['Boolean']['output']>;
|
|
51242
51288
|
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
51243
51289
|
id: Scalars['ID']['output'];
|
|
51290
|
+
showCSMAISearchTrigger?: Maybe<Scalars['Boolean']['output']>;
|
|
51244
51291
|
useGlobalSettings?: Maybe<Scalars['Boolean']['output']>;
|
|
51245
51292
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
51246
51293
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
@@ -51608,6 +51655,10 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
51608
51655
|
id: Scalars['ID']['output'];
|
|
51609
51656
|
title?: Maybe<Scalars['String']['output']>;
|
|
51610
51657
|
};
|
|
51658
|
+
export declare enum HelpObjectStoreArticleContentType {
|
|
51659
|
+
Folder = "FOLDER",
|
|
51660
|
+
Page = "PAGE"
|
|
51661
|
+
}
|
|
51611
51662
|
export declare type HelpObjectStoreArticleMetadata = {
|
|
51612
51663
|
__typename?: 'HelpObjectStoreArticleMetadata';
|
|
51613
51664
|
isExternal: Scalars['Boolean']['output'];
|
|
@@ -51644,6 +51695,18 @@ export declare enum HelpObjectStoreArticleSourceSystem {
|
|
|
51644
51695
|
GoogleDrive = "GOOGLE_DRIVE",
|
|
51645
51696
|
Sharepoint = "SHAREPOINT"
|
|
51646
51697
|
}
|
|
51698
|
+
export declare type HelpObjectStoreArticleSpaceInfo = {
|
|
51699
|
+
__typename?: 'HelpObjectStoreArticleSpaceInfo';
|
|
51700
|
+
spaceId?: Maybe<Scalars['Long']['output']>;
|
|
51701
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
51702
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
51703
|
+
};
|
|
51704
|
+
export declare type HelpObjectStoreArticleUrlInfo = {
|
|
51705
|
+
__typename?: 'HelpObjectStoreArticleURLInfo';
|
|
51706
|
+
editUrl: Scalars['String']['output'];
|
|
51707
|
+
shareUrl: Scalars['String']['output'];
|
|
51708
|
+
viewUrl: Scalars['String']['output'];
|
|
51709
|
+
};
|
|
51647
51710
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
51648
51711
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
51649
51712
|
};
|
|
@@ -51880,6 +51943,35 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
51880
51943
|
entityId: Scalars['String']['output'];
|
|
51881
51944
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
51882
51945
|
};
|
|
51946
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
51947
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
51948
|
+
parentId?: InputMaybe<Scalars['Long']['input']>;
|
|
51949
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
51950
|
+
topLevelArticlesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51951
|
+
};
|
|
51952
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
|
|
51953
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
51954
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
51955
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
51956
|
+
contentType?: Maybe<HelpObjectStoreArticleContentType>;
|
|
51957
|
+
id: Scalars['ID']['output'];
|
|
51958
|
+
lastModified: Scalars['String']['output'];
|
|
51959
|
+
spaceInfo: HelpObjectStoreArticleSpaceInfo;
|
|
51960
|
+
title: Scalars['String']['output'];
|
|
51961
|
+
urlInfo: HelpObjectStoreArticleUrlInfo;
|
|
51962
|
+
viewCount?: Maybe<Scalars['Long']['output']>;
|
|
51963
|
+
};
|
|
51964
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
|
|
51965
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
|
|
51966
|
+
edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge>>;
|
|
51967
|
+
nodes?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResult>>;
|
|
51968
|
+
pageInfo: PageInfo;
|
|
51969
|
+
};
|
|
51970
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
|
|
51971
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
|
|
51972
|
+
cursor: Scalars['String']['output'];
|
|
51973
|
+
node: HelpObjectStoreSupportSiteArticleSearchResult;
|
|
51974
|
+
};
|
|
51883
51975
|
export declare type History = {
|
|
51884
51976
|
__typename?: 'History';
|
|
51885
51977
|
archivedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -54028,6 +54120,7 @@ export declare enum JiraBoardType {
|
|
|
54028
54120
|
}
|
|
54029
54121
|
export declare type JiraBoardView = {
|
|
54030
54122
|
__typename?: 'JiraBoardView';
|
|
54123
|
+
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
54031
54124
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
54032
54125
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
54033
54126
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
@@ -55897,6 +55990,27 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
55897
55990
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
55898
55991
|
success: Scalars['Boolean']['output'];
|
|
55899
55992
|
};
|
|
55993
|
+
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
55994
|
+
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
55995
|
+
expression: JiraFormattingRuleExpressionInput;
|
|
55996
|
+
formattingArea: JiraFormattingArea;
|
|
55997
|
+
formattingColor?: InputMaybe<JiraColorInput>;
|
|
55998
|
+
viewId: Scalars['ID']['input'];
|
|
55999
|
+
};
|
|
56000
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
56001
|
+
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
56002
|
+
createdRule?: Maybe<JiraFormattingRule>;
|
|
56003
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56004
|
+
success: Scalars['Boolean']['output'];
|
|
56005
|
+
};
|
|
56006
|
+
export declare type JiraCreateIssueTypeInput = {
|
|
56007
|
+
avatarId: Scalars['String']['input'];
|
|
56008
|
+
cloudId: Scalars['ID']['input'];
|
|
56009
|
+
description: Scalars['String']['input'];
|
|
56010
|
+
hierarchyLevel: Scalars['Int']['input'];
|
|
56011
|
+
name: Scalars['String']['input'];
|
|
56012
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
56013
|
+
};
|
|
55900
56014
|
export declare type JiraCreateJourneyConfigurationInput = {
|
|
55901
56015
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
55902
56016
|
name: Scalars['String']['input'];
|
|
@@ -56395,6 +56509,16 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
56395
56509
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
56396
56510
|
success: Scalars['Boolean']['output'];
|
|
56397
56511
|
};
|
|
56512
|
+
export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
56513
|
+
ruleId: Scalars['ID']['input'];
|
|
56514
|
+
viewId: Scalars['ID']['input'];
|
|
56515
|
+
};
|
|
56516
|
+
export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
56517
|
+
__typename?: 'JiraDeleteIssueSearchFormattingRulePayload';
|
|
56518
|
+
deletedRuleId?: Maybe<Scalars['ID']['output']>;
|
|
56519
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56520
|
+
success: Scalars['Boolean']['output'];
|
|
56521
|
+
};
|
|
56398
56522
|
export declare type JiraDeleteJourneyItemInput = {
|
|
56399
56523
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
56400
56524
|
itemId: Scalars['ID']['input'];
|
|
@@ -58248,6 +58372,7 @@ export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
|
58248
58372
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
58249
58373
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58250
58374
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
58375
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
58251
58376
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
58252
58377
|
};
|
|
58253
58378
|
export declare enum JiraGroupsContext {
|
|
@@ -58901,6 +59026,7 @@ export declare type JiraIssueEdge = {
|
|
|
58901
59026
|
cursor: Scalars['String']['output'];
|
|
58902
59027
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
58903
59028
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
59029
|
+
issueError?: Maybe<JiraIssueError>;
|
|
58904
59030
|
node?: Maybe<JiraIssue>;
|
|
58905
59031
|
};
|
|
58906
59032
|
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
@@ -58915,6 +59041,7 @@ export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
|
58915
59041
|
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
58916
59042
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
58917
59043
|
};
|
|
59044
|
+
export declare type JiraIssueError = JiraRemoteLinkedIssueError;
|
|
58918
59045
|
export declare type JiraIssueExpandedGroup = {
|
|
58919
59046
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
58920
59047
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -59424,6 +59551,26 @@ export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
|
59424
59551
|
linkType: Scalars['ID']['input'];
|
|
59425
59552
|
operation: JiraAddValueFieldOperations;
|
|
59426
59553
|
};
|
|
59554
|
+
export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
59555
|
+
__typename?: 'JiraIssueLinkRelationshipTypeField';
|
|
59556
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
59557
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
59558
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
59559
|
+
fieldId: Scalars['String']['output'];
|
|
59560
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
59561
|
+
id: Scalars['ID']['output'];
|
|
59562
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
59563
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
59564
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
59565
|
+
issue?: Maybe<JiraIssue>;
|
|
59566
|
+
issueLink?: Maybe<JiraIssueLink>;
|
|
59567
|
+
name: Scalars['String']['output'];
|
|
59568
|
+
type: Scalars['String']['output'];
|
|
59569
|
+
};
|
|
59570
|
+
export declare type JiraIssueLinkRelationshipTypeUpdateInput = {
|
|
59571
|
+
issueLinkId: Scalars['ID']['input'];
|
|
59572
|
+
issueLinkTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59573
|
+
};
|
|
59427
59574
|
export declare type JiraIssueLinkType = Node & {
|
|
59428
59575
|
__typename?: 'JiraIssueLinkType';
|
|
59429
59576
|
id: Scalars['ID']['output'];
|
|
@@ -59798,7 +59945,9 @@ export declare type JiraIssueSearchScope = {
|
|
|
59798
59945
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
59799
59946
|
};
|
|
59800
59947
|
export declare type JiraIssueSearchSettings = {
|
|
59948
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
59801
59949
|
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59950
|
+
hierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59802
59951
|
};
|
|
59803
59952
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
59804
59953
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61698,6 +61847,7 @@ export declare type JiraMutation = {
|
|
|
61698
61847
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
61699
61848
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
61700
61849
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
61850
|
+
updateIssueLinkRelationshipTypeField?: Maybe<JiraUpdateIssueLinkRelationshipTypeFieldPayload>;
|
|
61701
61851
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
61702
61852
|
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
61703
61853
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
@@ -62215,6 +62365,9 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
62215
62365
|
cloudId: Scalars['ID']['input'];
|
|
62216
62366
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
62217
62367
|
};
|
|
62368
|
+
export declare type JiraMutationUpdateIssueLinkRelationshipTypeFieldArgs = {
|
|
62369
|
+
input: JiraUpdateIssueLinkRelationshipTypeFieldInput;
|
|
62370
|
+
};
|
|
62218
62371
|
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
62219
62372
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
62220
62373
|
viewId: Scalars['ID']['input'];
|
|
@@ -63456,6 +63609,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
63456
63609
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
63457
63610
|
id: Scalars['ID']['output'];
|
|
63458
63611
|
jql?: Maybe<Scalars['String']['output']>;
|
|
63612
|
+
labels?: Maybe<Array<JiraPlaybookLabel>>;
|
|
63459
63613
|
name?: Maybe<Scalars['String']['output']>;
|
|
63460
63614
|
owner?: Maybe<User>;
|
|
63461
63615
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63485,6 +63639,7 @@ export declare type JiraPlaybookExecutionFilter = {
|
|
|
63485
63639
|
};
|
|
63486
63640
|
export declare type JiraPlaybookFilter = {
|
|
63487
63641
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
63642
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
63488
63643
|
};
|
|
63489
63644
|
export declare type JiraPlaybookInstance = Node & {
|
|
63490
63645
|
__typename?: 'JiraPlaybookInstance';
|
|
@@ -63530,6 +63685,49 @@ export declare enum JiraPlaybookIssueFilterType {
|
|
|
63530
63685
|
IssueTypes = "ISSUE_TYPES",
|
|
63531
63686
|
RequestTypes = "REQUEST_TYPES"
|
|
63532
63687
|
}
|
|
63688
|
+
export declare type JiraPlaybookLabel = Node & {
|
|
63689
|
+
__typename?: 'JiraPlaybookLabel';
|
|
63690
|
+
id: Scalars['ID']['output'];
|
|
63691
|
+
name: Scalars['String']['output'];
|
|
63692
|
+
property?: Maybe<JiraPlaybookLabelProperty>;
|
|
63693
|
+
scopeId?: Maybe<Scalars['String']['output']>;
|
|
63694
|
+
scopeType?: Maybe<JiraPlaybookScopeType>;
|
|
63695
|
+
};
|
|
63696
|
+
export declare type JiraPlaybookLabelAssignmentPayload = Payload & {
|
|
63697
|
+
__typename?: 'JiraPlaybookLabelAssignmentPayload';
|
|
63698
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63699
|
+
id: Scalars['ID']['output'];
|
|
63700
|
+
success: Scalars['Boolean']['output'];
|
|
63701
|
+
};
|
|
63702
|
+
export declare type JiraPlaybookLabelConnection = HasPageInfo & QueryPayload & {
|
|
63703
|
+
__typename?: 'JiraPlaybookLabelConnection';
|
|
63704
|
+
edges?: Maybe<Array<JiraPlaybookLabelEdge>>;
|
|
63705
|
+
errors?: Maybe<Array<QueryError>>;
|
|
63706
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookLabel>>>;
|
|
63707
|
+
pageInfo: PageInfo;
|
|
63708
|
+
success: Scalars['Boolean']['output'];
|
|
63709
|
+
};
|
|
63710
|
+
export declare type JiraPlaybookLabelEdge = {
|
|
63711
|
+
__typename?: 'JiraPlaybookLabelEdge';
|
|
63712
|
+
cursor: Scalars['String']['output'];
|
|
63713
|
+
node?: Maybe<JiraPlaybookLabel>;
|
|
63714
|
+
};
|
|
63715
|
+
export declare type JiraPlaybookLabelFilter = {
|
|
63716
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63717
|
+
};
|
|
63718
|
+
export declare type JiraPlaybookLabelProperty = {
|
|
63719
|
+
__typename?: 'JiraPlaybookLabelProperty';
|
|
63720
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
63721
|
+
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
63722
|
+
};
|
|
63723
|
+
export declare type JiraPlaybookLabelPropertyInput = {
|
|
63724
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
63725
|
+
editable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63726
|
+
};
|
|
63727
|
+
export declare type JiraPlaybookListFilter = {
|
|
63728
|
+
labels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63729
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63730
|
+
};
|
|
63533
63731
|
export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
63534
63732
|
__typename?: 'JiraPlaybookQueryPayload';
|
|
63535
63733
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -63543,6 +63741,7 @@ export declare enum JiraPlaybookScopeType {
|
|
|
63543
63741
|
}
|
|
63544
63742
|
export declare enum JiraPlaybookStateField {
|
|
63545
63743
|
Disabled = "DISABLED",
|
|
63744
|
+
Draft = "DRAFT",
|
|
63546
63745
|
Enabled = "ENABLED"
|
|
63547
63746
|
}
|
|
63548
63747
|
export declare type JiraPlaybookStep = {
|
|
@@ -63620,7 +63819,7 @@ export declare type JiraPlaybookStepUsage = Node & {
|
|
|
63620
63819
|
id: Scalars['ID']['output'];
|
|
63621
63820
|
maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63622
63821
|
minExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63623
|
-
|
|
63822
|
+
owner?: Maybe<User>;
|
|
63624
63823
|
playbookName?: Maybe<Scalars['String']['output']>;
|
|
63625
63824
|
stepName?: Maybe<Scalars['String']['output']>;
|
|
63626
63825
|
stepType?: Maybe<JiraPlaybookStepType>;
|
|
@@ -63764,6 +63963,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
63764
63963
|
};
|
|
63765
63964
|
export declare type JiraProject = Node & {
|
|
63766
63965
|
__typename?: 'JiraProject';
|
|
63966
|
+
accessLevel?: Maybe<JiraProjectAccessLevelType>;
|
|
63767
63967
|
action?: Maybe<JiraProjectAction>;
|
|
63768
63968
|
activeBackground?: Maybe<JiraBackground>;
|
|
63769
63969
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
@@ -64004,6 +64204,21 @@ export declare type JiraProjectVersionsV2Args = {
|
|
|
64004
64204
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
64005
64205
|
sortBy?: InputMaybe<JiraVersionSortInput>;
|
|
64006
64206
|
};
|
|
64207
|
+
export declare type JiraProjectAccessLevel = {
|
|
64208
|
+
__typename?: 'JiraProjectAccessLevel';
|
|
64209
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
64210
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
64211
|
+
everyoneRoleDescription?: Maybe<Scalars['String']['output']>;
|
|
64212
|
+
everyoneRoleName?: Maybe<Scalars['String']['output']>;
|
|
64213
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
64214
|
+
value: JiraProjectAccessLevelType;
|
|
64215
|
+
};
|
|
64216
|
+
export declare enum JiraProjectAccessLevelType {
|
|
64217
|
+
Free = "FREE",
|
|
64218
|
+
Limited = "LIMITED",
|
|
64219
|
+
Open = "OPEN",
|
|
64220
|
+
Private = "PRIVATE"
|
|
64221
|
+
}
|
|
64007
64222
|
export declare type JiraProjectAction = {
|
|
64008
64223
|
__typename?: 'JiraProjectAction';
|
|
64009
64224
|
canPerform: Scalars['Boolean']['output'];
|
|
@@ -64435,6 +64650,7 @@ export declare enum JiraProjectType {
|
|
|
64435
64650
|
}
|
|
64436
64651
|
export declare type JiraProjectTypeDetails = Node & {
|
|
64437
64652
|
__typename?: 'JiraProjectTypeDetails';
|
|
64653
|
+
availableAccessLevels: Array<JiraProjectAccessLevel>;
|
|
64438
64654
|
color: Scalars['String']['output'];
|
|
64439
64655
|
description: Scalars['String']['output'];
|
|
64440
64656
|
formattedKey: Scalars['String']['output'];
|
|
@@ -64985,6 +65201,7 @@ export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
|
64985
65201
|
cloudId: Scalars['ID']['input'];
|
|
64986
65202
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
64987
65203
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
65204
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
64988
65205
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
64989
65206
|
};
|
|
64990
65207
|
export declare type JiraQueryFieldSetsByIdArgs = {
|
|
@@ -66080,6 +66297,19 @@ export declare type JiraRemainingTimeEstimateFieldPayload = Payload & {
|
|
|
66080
66297
|
success: Scalars['Boolean']['output'];
|
|
66081
66298
|
};
|
|
66082
66299
|
export declare type JiraRemoteIssueLink = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
66300
|
+
export declare type JiraRemoteLinkedIssueError = {
|
|
66301
|
+
__typename?: 'JiraRemoteLinkedIssueError';
|
|
66302
|
+
errorType?: Maybe<JiraRemoteLinkedIssueErrorType>;
|
|
66303
|
+
repairLink?: Maybe<JiraRemoteLinkedIssueRepairLink>;
|
|
66304
|
+
};
|
|
66305
|
+
export declare enum JiraRemoteLinkedIssueErrorType {
|
|
66306
|
+
ApplinkMissing = "APPLINK_MISSING",
|
|
66307
|
+
ApplinkReqAuth = "APPLINK_REQ_AUTH"
|
|
66308
|
+
}
|
|
66309
|
+
export declare type JiraRemoteLinkedIssueRepairLink = {
|
|
66310
|
+
__typename?: 'JiraRemoteLinkedIssueRepairLink';
|
|
66311
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
66312
|
+
};
|
|
66083
66313
|
export declare type JiraRemoveActiveBackgroundInput = {
|
|
66084
66314
|
entityId: Scalars['ID']['input'];
|
|
66085
66315
|
};
|
|
@@ -68302,6 +68532,12 @@ export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
|
68302
68532
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
68303
68533
|
url?: Maybe<Scalars['String']['output']>;
|
|
68304
68534
|
};
|
|
68535
|
+
export declare type JiraShowUnscheduledIssuesCalendarMutationPayload = Payload & {
|
|
68536
|
+
__typename?: 'JiraShowUnscheduledIssuesCalendarMutationPayload';
|
|
68537
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68538
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
68539
|
+
success: Scalars['Boolean']['output'];
|
|
68540
|
+
};
|
|
68305
68541
|
export declare enum JiraSidebarMenuDisplayMode {
|
|
68306
68542
|
MostRecentOnly = "MOST_RECENT_ONLY",
|
|
68307
68543
|
Starred = "STARRED",
|
|
@@ -68676,6 +68912,7 @@ export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
|
68676
68912
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
68677
68913
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
68678
68914
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
68915
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
68679
68916
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
68680
68917
|
};
|
|
68681
68918
|
export declare type JiraSpreadsheetViewPayload = Payload & {
|
|
@@ -69646,6 +69883,33 @@ export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
|
69646
69883
|
id: Scalars['ID']['input'];
|
|
69647
69884
|
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
69648
69885
|
};
|
|
69886
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldInput = {
|
|
69887
|
+
id: Scalars['ID']['input'];
|
|
69888
|
+
operation: JiraUpdateIssueLinkRelationshipTypeFieldOperationInput;
|
|
69889
|
+
};
|
|
69890
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldOperationInput = {
|
|
69891
|
+
operation: JiraSingleValueFieldOperations;
|
|
69892
|
+
update: JiraIssueLinkRelationshipTypeUpdateInput;
|
|
69893
|
+
};
|
|
69894
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload & {
|
|
69895
|
+
__typename?: 'JiraUpdateIssueLinkRelationshipTypeFieldPayload';
|
|
69896
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69897
|
+
field?: Maybe<JiraIssueLinkRelationshipTypeField>;
|
|
69898
|
+
success: Scalars['Boolean']['output'];
|
|
69899
|
+
};
|
|
69900
|
+
export declare type JiraUpdateIssueSearchFormattingRuleInput = {
|
|
69901
|
+
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
69902
|
+
formatType?: InputMaybe<JiraFormattingArea>;
|
|
69903
|
+
formattingColor?: InputMaybe<JiraColorInput>;
|
|
69904
|
+
ruleId: Scalars['ID']['input'];
|
|
69905
|
+
viewId: Scalars['ID']['input'];
|
|
69906
|
+
};
|
|
69907
|
+
export declare type JiraUpdateIssueSearchFormattingRulePayload = {
|
|
69908
|
+
__typename?: 'JiraUpdateIssueSearchFormattingRulePayload';
|
|
69909
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69910
|
+
success: Scalars['Boolean']['output'];
|
|
69911
|
+
updatedRule?: Maybe<JiraFormattingRule>;
|
|
69912
|
+
};
|
|
69649
69913
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
69650
69914
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
69651
69915
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
@@ -69971,6 +70235,12 @@ export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
|
69971
70235
|
id: Scalars['ID']['input'];
|
|
69972
70236
|
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
69973
70237
|
};
|
|
70238
|
+
export declare type JiraUpsertIssueTypePayload = Payload & {
|
|
70239
|
+
__typename?: 'JiraUpsertIssueTypePayload';
|
|
70240
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70241
|
+
issueType?: Maybe<JiraIssueType>;
|
|
70242
|
+
success: Scalars['Boolean']['output'];
|
|
70243
|
+
};
|
|
69974
70244
|
export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
69975
70245
|
__typename?: 'JiraUrlField';
|
|
69976
70246
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -70136,6 +70406,7 @@ export declare type JiraUserPreferences = {
|
|
|
70136
70406
|
showRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
70137
70407
|
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
70138
70408
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
70409
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
70139
70410
|
};
|
|
70140
70411
|
export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplatesArgs = {
|
|
70141
70412
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77180,11 +77451,6 @@ export declare type MercuryFocusAreaType = {
|
|
|
77180
77451
|
id: Scalars['ID']['output'];
|
|
77181
77452
|
name: Scalars['String']['output'];
|
|
77182
77453
|
};
|
|
77183
|
-
export declare type MercuryForYouFocusAreaActivityHistory = {
|
|
77184
|
-
__typename?: 'MercuryForYouFocusAreaActivityHistory';
|
|
77185
|
-
activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
77186
|
-
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
77187
|
-
};
|
|
77188
77454
|
export declare type MercuryFundChangeSummary = {
|
|
77189
77455
|
__typename?: 'MercuryFundChangeSummary';
|
|
77190
77456
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -77396,6 +77662,7 @@ export declare type MercuryMutationApi = {
|
|
|
77396
77662
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
77397
77663
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
77398
77664
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
77665
|
+
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
77399
77666
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
77400
77667
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
77401
77668
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -77467,6 +77734,9 @@ export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
|
77467
77734
|
export declare type MercuryMutationApiLinkGoalsToFocusAreaArgs = {
|
|
77468
77735
|
input: MercuryLinkGoalsToFocusAreaInput;
|
|
77469
77736
|
};
|
|
77737
|
+
export declare type MercuryMutationApiPublishFocusAreaArgs = {
|
|
77738
|
+
input: MercuryPublishFocusAreaInput;
|
|
77739
|
+
};
|
|
77470
77740
|
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
77471
77741
|
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
77472
77742
|
};
|
|
@@ -77842,6 +78112,15 @@ export declare enum MercuryProviderWorkTargetDateType {
|
|
|
77842
78112
|
Month = "MONTH",
|
|
77843
78113
|
Quarter = "QUARTER"
|
|
77844
78114
|
}
|
|
78115
|
+
export declare type MercuryPublishFocusAreaInput = {
|
|
78116
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78117
|
+
id: Scalars['ID']['input'];
|
|
78118
|
+
};
|
|
78119
|
+
export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
78120
|
+
__typename?: 'MercuryPublishFocusAreaPayload';
|
|
78121
|
+
errors?: Maybe<Array<MutationError>>;
|
|
78122
|
+
success: Scalars['Boolean']['output'];
|
|
78123
|
+
};
|
|
77845
78124
|
export declare type MercuryQueryApi = {
|
|
77846
78125
|
__typename?: 'MercuryQueryApi';
|
|
77847
78126
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -77859,7 +78138,6 @@ export declare type MercuryQueryApi = {
|
|
|
77859
78138
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
77860
78139
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
77861
78140
|
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
77862
|
-
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
77863
78141
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
77864
78142
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
77865
78143
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -77943,14 +78221,6 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
|
77943
78221
|
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
77944
78222
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
77945
78223
|
};
|
|
77946
|
-
export declare type MercuryQueryApiForYouFocusAreaActivityHistoryArgs = {
|
|
77947
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
77948
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77949
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77950
|
-
focusAreaFirst?: InputMaybe<Scalars['Int']['input']>;
|
|
77951
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
77952
|
-
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
77953
|
-
};
|
|
77954
78224
|
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
77955
78225
|
cloudId: Scalars['ID']['input'];
|
|
77956
78226
|
};
|
|
@@ -78938,6 +79208,7 @@ export declare type Mutation = {
|
|
|
78938
79208
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
78939
79209
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
78940
79210
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
79211
|
+
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
78941
79212
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
78942
79213
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
78943
79214
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
@@ -79185,9 +79456,12 @@ export declare type Mutation = {
|
|
|
79185
79456
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
79186
79457
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
79187
79458
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79459
|
+
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
79460
|
+
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
79188
79461
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
79189
79462
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
79190
79463
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
79464
|
+
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
79191
79465
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
79192
79466
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
79193
79467
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -79215,11 +79489,13 @@ export declare type Mutation = {
|
|
|
79215
79489
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
79216
79490
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
79217
79491
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
79492
|
+
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
79218
79493
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
79219
79494
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
79220
79495
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
79221
79496
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
79222
79497
|
jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
|
|
79498
|
+
jira_updateIssueSearchFormattingRule?: Maybe<JiraUpdateIssueSearchFormattingRulePayload>;
|
|
79223
79499
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
79224
79500
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
79225
79501
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -79253,9 +79529,12 @@ export declare type Mutation = {
|
|
|
79253
79529
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
79254
79530
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
79255
79531
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
79532
|
+
playbook_assignJiraPlaybookLabelToJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79256
79533
|
playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
|
|
79534
|
+
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
79257
79535
|
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
79258
79536
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
79537
|
+
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79259
79538
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
79260
79539
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
79261
79540
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -79479,6 +79758,9 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
|
79479
79758
|
cloudId: Scalars['String']['input'];
|
|
79480
79759
|
input: AgentStudioCreateScenarioInput;
|
|
79481
79760
|
};
|
|
79761
|
+
export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
79762
|
+
id: Scalars['ID']['input'];
|
|
79763
|
+
};
|
|
79482
79764
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
79483
79765
|
id: Scalars['ID']['input'];
|
|
79484
79766
|
};
|
|
@@ -80301,6 +80583,12 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
80301
80583
|
cloudId: Scalars['ID']['input'];
|
|
80302
80584
|
input: JiraCreateGlobalCustomFieldInput;
|
|
80303
80585
|
};
|
|
80586
|
+
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
80587
|
+
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
80588
|
+
};
|
|
80589
|
+
export declare type MutationJira_CreateIssueTypeArgs = {
|
|
80590
|
+
input: JiraCreateIssueTypeInput;
|
|
80591
|
+
};
|
|
80304
80592
|
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80305
80593
|
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80306
80594
|
};
|
|
@@ -80311,6 +80599,9 @@ export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
|
80311
80599
|
cloudId: Scalars['ID']['input'];
|
|
80312
80600
|
input: JiraDeleteFieldSchemeInput;
|
|
80313
80601
|
};
|
|
80602
|
+
export declare type MutationJira_DeleteIssueSearchFormattingRuleArgs = {
|
|
80603
|
+
input: JiraDeleteIssueSearchFormattingRuleInput;
|
|
80604
|
+
};
|
|
80314
80605
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
80315
80606
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
80316
80607
|
};
|
|
@@ -80395,6 +80686,10 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
|
80395
80686
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
80396
80687
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
80397
80688
|
};
|
|
80689
|
+
export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
80690
|
+
cloudId: Scalars['ID']['input'];
|
|
80691
|
+
show: Scalars['Boolean']['input'];
|
|
80692
|
+
};
|
|
80398
80693
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
80399
80694
|
input: JiraSetViewFilterInput;
|
|
80400
80695
|
};
|
|
@@ -80413,6 +80708,9 @@ export declare type MutationJira_UpdateGlobalCustomFieldArgs = {
|
|
|
80413
80708
|
cloudId: Scalars['ID']['input'];
|
|
80414
80709
|
input: JiraUpdateGlobalCustomFieldInput;
|
|
80415
80710
|
};
|
|
80711
|
+
export declare type MutationJira_UpdateIssueSearchFormattingRuleArgs = {
|
|
80712
|
+
input: JiraUpdateIssueSearchFormattingRuleInput;
|
|
80713
|
+
};
|
|
80416
80714
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
80417
80715
|
input: JiraUpdateBackgroundInput;
|
|
80418
80716
|
};
|
|
@@ -80488,15 +80786,26 @@ export declare type MutationPlanModeCardCreateArgs = {
|
|
|
80488
80786
|
export declare type MutationPlanModeCardMoveArgs = {
|
|
80489
80787
|
input?: InputMaybe<PlanModeCardMoveInput>;
|
|
80490
80788
|
};
|
|
80789
|
+
export declare type MutationPlaybook_AssignJiraPlaybookLabelToJiraPlaybookArgs = {
|
|
80790
|
+
labelId: Scalars['ID']['input'];
|
|
80791
|
+
playbookId: Scalars['ID']['input'];
|
|
80792
|
+
};
|
|
80491
80793
|
export declare type MutationPlaybook_CreateJiraPlaybookArgs = {
|
|
80492
80794
|
input: CreateJiraPlaybookInput;
|
|
80493
80795
|
};
|
|
80796
|
+
export declare type MutationPlaybook_CreateJiraPlaybookLabelArgs = {
|
|
80797
|
+
input: CreateJiraPlaybookLabelInput;
|
|
80798
|
+
};
|
|
80494
80799
|
export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
|
|
80495
80800
|
input: CreateJiraPlaybookStepRunInput;
|
|
80496
80801
|
};
|
|
80497
80802
|
export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
|
|
80498
80803
|
input: DeleteJiraPlaybookInput;
|
|
80499
80804
|
};
|
|
80805
|
+
export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
|
|
80806
|
+
labelId: Scalars['ID']['input'];
|
|
80807
|
+
playbookId: Scalars['ID']['input'];
|
|
80808
|
+
};
|
|
80500
80809
|
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
80501
80810
|
input: UpdateJiraPlaybookInput;
|
|
80502
80811
|
};
|
|
@@ -83870,6 +84179,7 @@ export declare type Query = {
|
|
|
83870
84179
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
83871
84180
|
appContainer?: Maybe<AppContainer>;
|
|
83872
84181
|
appContainerRegistryLogin?: Maybe<AppContainerRegistryLogin>;
|
|
84182
|
+
appContainerServices?: Maybe<AppContainerServices>;
|
|
83873
84183
|
appContainers?: Maybe<Array<AppContainer>>;
|
|
83874
84184
|
appContributors: Array<AppContributor>;
|
|
83875
84185
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -84012,6 +84322,7 @@ export declare type Query = {
|
|
|
84012
84322
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
84013
84323
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84014
84324
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
84325
|
+
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
84015
84326
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
84016
84327
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
84017
84328
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
@@ -84063,6 +84374,7 @@ export declare type Query = {
|
|
|
84063
84374
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
84064
84375
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
84065
84376
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84377
|
+
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84066
84378
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
84067
84379
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
84068
84380
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -84135,6 +84447,7 @@ export declare type Query = {
|
|
|
84135
84447
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
84136
84448
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
84137
84449
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
84450
|
+
helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
|
|
84138
84451
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
84139
84452
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
84140
84453
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
@@ -84177,6 +84490,7 @@ export declare type Query = {
|
|
|
84177
84490
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84178
84491
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
84179
84492
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
84493
|
+
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
84180
84494
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
84181
84495
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
84182
84496
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -84261,6 +84575,7 @@ export declare type Query = {
|
|
|
84261
84575
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
84262
84576
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
84263
84577
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
84578
|
+
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
84264
84579
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
84265
84580
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
84266
84581
|
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
@@ -84289,6 +84604,10 @@ export declare type Query = {
|
|
|
84289
84604
|
productListings: Array<ProductListingResult>;
|
|
84290
84605
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
84291
84606
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84607
|
+
projects_byId?: Maybe<TownsquareProject>;
|
|
84608
|
+
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84609
|
+
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
84610
|
+
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
84292
84611
|
ptpage?: Maybe<PtPage>;
|
|
84293
84612
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
84294
84613
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -84529,6 +84848,11 @@ export declare type QueryAppContainerArgs = {
|
|
|
84529
84848
|
export declare type QueryAppContainerRegistryLoginArgs = {
|
|
84530
84849
|
appId: Scalars['ID']['input'];
|
|
84531
84850
|
};
|
|
84851
|
+
export declare type QueryAppContainerServicesArgs = {
|
|
84852
|
+
appId: Scalars['ID']['input'];
|
|
84853
|
+
environmentKey: Scalars['String']['input'];
|
|
84854
|
+
serviceNames: Array<Scalars['String']['input']>;
|
|
84855
|
+
};
|
|
84532
84856
|
export declare type QueryAppContainersArgs = {
|
|
84533
84857
|
appId: Scalars['ID']['input'];
|
|
84534
84858
|
};
|
|
@@ -85207,6 +85531,17 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
85207
85531
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85208
85532
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
85209
85533
|
};
|
|
85534
|
+
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
85535
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85536
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
85537
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85538
|
+
id: Scalars['ID']['input'];
|
|
85539
|
+
l2ScoreThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
85540
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
85541
|
+
searchSourcesInput?: InputMaybe<ConvoAiJiraSearchSourcesInput>;
|
|
85542
|
+
xpsearchL1?: InputMaybe<Scalars['String']['input']>;
|
|
85543
|
+
xpsearchL2?: InputMaybe<Scalars['String']['input']>;
|
|
85544
|
+
};
|
|
85210
85545
|
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
85211
85546
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85212
85547
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -85435,6 +85770,11 @@ export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
|
85435
85770
|
creator: Scalars['String']['input'];
|
|
85436
85771
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85437
85772
|
};
|
|
85773
|
+
export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
85774
|
+
cloudId: Scalars['ID']['input'];
|
|
85775
|
+
issueKey: Scalars['String']['input'];
|
|
85776
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85777
|
+
};
|
|
85438
85778
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
85439
85779
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85440
85780
|
cloudId: Scalars['ID']['input'];
|
|
@@ -85679,6 +86019,13 @@ export declare type QueryHelpObjectStore_SearchArticlesArgs = {
|
|
|
85679
86019
|
queryTerm?: InputMaybe<Scalars['String']['input']>;
|
|
85680
86020
|
skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85681
86021
|
};
|
|
86022
|
+
export declare type QueryHelpObjectStore_SearchArticlesForSupportSiteArgs = {
|
|
86023
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86024
|
+
cloudId: Scalars['String']['input'];
|
|
86025
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86026
|
+
helpCenterAri: Scalars['String']['input'];
|
|
86027
|
+
input?: InputMaybe<HelpObjectStoreSupportSiteArticleSearchInput>;
|
|
86028
|
+
};
|
|
85682
86029
|
export declare type QueryHelpObjectStore_SearchPortalsArgs = {
|
|
85683
86030
|
cloudId: Scalars['ID']['input'];
|
|
85684
86031
|
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -85803,6 +86150,9 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
85803
86150
|
cloudId: Scalars['ID']['input'];
|
|
85804
86151
|
idOrKey: Scalars['String']['input'];
|
|
85805
86152
|
};
|
|
86153
|
+
export declare type QueryJira_ProjectTypesByIdsArgs = {
|
|
86154
|
+
ids: Array<Scalars['ID']['input']>;
|
|
86155
|
+
};
|
|
85806
86156
|
export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
85807
86157
|
cloudId: Scalars['ID']['input'];
|
|
85808
86158
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -86048,6 +86398,13 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
|
86048
86398
|
issueId: Scalars['String']['input'];
|
|
86049
86399
|
projectKey: Scalars['String']['input'];
|
|
86050
86400
|
};
|
|
86401
|
+
export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
86402
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86403
|
+
cloudId: Scalars['ID']['input'];
|
|
86404
|
+
filters?: InputMaybe<JiraPlaybookLabelFilter>;
|
|
86405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86406
|
+
projectKey: Scalars['String']['input'];
|
|
86407
|
+
};
|
|
86051
86408
|
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
86052
86409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86053
86410
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -86072,6 +86429,7 @@ export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
|
86072
86429
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86073
86430
|
cloudId: Scalars['ID']['input'];
|
|
86074
86431
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
86432
|
+
filters?: InputMaybe<JiraPlaybookListFilter>;
|
|
86075
86433
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86076
86434
|
projectKey: Scalars['String']['input'];
|
|
86077
86435
|
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
@@ -86149,6 +86507,22 @@ export declare type QueryProjects_ByAriArgs = {
|
|
|
86149
86507
|
export declare type QueryProjects_ByArisArgs = {
|
|
86150
86508
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
86151
86509
|
};
|
|
86510
|
+
export declare type QueryProjects_ByIdArgs = {
|
|
86511
|
+
projectId: Scalars['String']['input'];
|
|
86512
|
+
};
|
|
86513
|
+
export declare type QueryProjects_ByIdsArgs = {
|
|
86514
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
86515
|
+
};
|
|
86516
|
+
export declare type QueryProjects_SearchArgs = {
|
|
86517
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86518
|
+
containerId: Scalars['String']['input'];
|
|
86519
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86520
|
+
searchString: Scalars['String']['input'];
|
|
86521
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
86522
|
+
};
|
|
86523
|
+
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
86524
|
+
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
86525
|
+
};
|
|
86152
86526
|
export declare type QueryPtpageArgs = {
|
|
86153
86527
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86154
86528
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -89151,6 +89525,7 @@ export declare type SearchJiraFilter = {
|
|
|
89151
89525
|
export declare type SearchJiraIssueFilter = {
|
|
89152
89526
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89153
89527
|
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89528
|
+
issueLabels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89154
89529
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89155
89530
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89156
89531
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -89502,6 +89877,17 @@ export declare type SearchResultJiraIssueStatusCategory = {
|
|
|
89502
89877
|
key: Scalars['String']['output'];
|
|
89503
89878
|
name: Scalars['String']['output'];
|
|
89504
89879
|
};
|
|
89880
|
+
export declare type SearchResultJiraPlan = SearchResult & {
|
|
89881
|
+
__typename?: 'SearchResultJiraPlan';
|
|
89882
|
+
description: Scalars['String']['output'];
|
|
89883
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
89884
|
+
id: Scalars['ID']['output'];
|
|
89885
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
89886
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
89887
|
+
title: Scalars['String']['output'];
|
|
89888
|
+
type: SearchResultType;
|
|
89889
|
+
url: Scalars['URL']['output'];
|
|
89890
|
+
};
|
|
89505
89891
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
89506
89892
|
__typename?: 'SearchResultJiraProject';
|
|
89507
89893
|
canView: Scalars['Boolean']['output'];
|
|
@@ -90626,7 +91012,6 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
90626
91012
|
callbackURL: Scalars['URL']['input'];
|
|
90627
91013
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
90628
91014
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
90629
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
90630
91015
|
};
|
|
90631
91016
|
export declare type ShepherdCurrentUser = {
|
|
90632
91017
|
__typename?: 'ShepherdCurrentUser';
|
|
@@ -90637,7 +91022,7 @@ export declare type ShepherdCustomContentScanningDetection = {
|
|
|
90637
91022
|
__typename?: 'ShepherdCustomContentScanningDetection';
|
|
90638
91023
|
rules: Array<Maybe<ShepherdCustomScanningRule>>;
|
|
90639
91024
|
};
|
|
90640
|
-
export declare type ShepherdCustomDetection = {
|
|
91025
|
+
export declare type ShepherdCustomDetection = Node & {
|
|
90641
91026
|
__typename?: 'ShepherdCustomDetection';
|
|
90642
91027
|
description?: Maybe<Scalars['String']['output']>;
|
|
90643
91028
|
id: Scalars['ID']['output'];
|
|
@@ -90694,7 +91079,7 @@ export declare type ShepherdDescriptionTemplate = {
|
|
|
90694
91079
|
text?: Maybe<Scalars['JSON']['output']>;
|
|
90695
91080
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
90696
91081
|
};
|
|
90697
|
-
export declare type ShepherdDetection = {
|
|
91082
|
+
export declare type ShepherdDetection = Node & {
|
|
90698
91083
|
__typename?: 'ShepherdDetection';
|
|
90699
91084
|
businessTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
90700
91085
|
category: ShepherdAlertDetectionCategory;
|
|
@@ -90753,7 +91138,7 @@ export declare type ShepherdDetectionScanningInfo = {
|
|
|
90753
91138
|
__typename?: 'ShepherdDetectionScanningInfo';
|
|
90754
91139
|
scanningFrequency: ShepherdDetectionScanningFrequency;
|
|
90755
91140
|
};
|
|
90756
|
-
export declare type ShepherdDetectionSetting = {
|
|
91141
|
+
export declare type ShepherdDetectionSetting = Node & {
|
|
90757
91142
|
__typename?: 'ShepherdDetectionSetting';
|
|
90758
91143
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
90759
91144
|
id: Scalars['ID']['output'];
|
|
@@ -91296,11 +91681,27 @@ export declare type ShepherdSuspiciousSearchTerm = {
|
|
|
91296
91681
|
export declare type ShepherdTeamworkGraphQueries = {
|
|
91297
91682
|
__typename?: 'ShepherdTeamworkGraphQueries';
|
|
91298
91683
|
alerts?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
91684
|
+
customDetections?: Maybe<Array<Maybe<ShepherdCustomDetection>>>;
|
|
91685
|
+
detectionSettings?: Maybe<Array<Maybe<ShepherdDetectionSetting>>>;
|
|
91686
|
+
detections?: Maybe<Array<Maybe<ShepherdDetection>>>;
|
|
91687
|
+
subscriptions?: Maybe<Array<Maybe<ShepherdSubscription>>>;
|
|
91299
91688
|
workspaces?: Maybe<Array<Maybe<ShepherdWorkspace>>>;
|
|
91300
91689
|
};
|
|
91301
91690
|
export declare type ShepherdTeamworkGraphQueriesAlertsArgs = {
|
|
91302
91691
|
ids: Array<Scalars['ID']['input']>;
|
|
91303
91692
|
};
|
|
91693
|
+
export declare type ShepherdTeamworkGraphQueriesCustomDetectionsArgs = {
|
|
91694
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91695
|
+
};
|
|
91696
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionSettingsArgs = {
|
|
91697
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91698
|
+
};
|
|
91699
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionsArgs = {
|
|
91700
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91701
|
+
};
|
|
91702
|
+
export declare type ShepherdTeamworkGraphQueriesSubscriptionsArgs = {
|
|
91703
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91704
|
+
};
|
|
91304
91705
|
export declare type ShepherdTeamworkGraphQueriesWorkspacesArgs = {
|
|
91305
91706
|
ids: Array<Scalars['ID']['input']>;
|
|
91306
91707
|
};
|
|
@@ -91347,7 +91748,6 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
91347
91748
|
callbackURL?: InputMaybe<Scalars['URL']['input']>;
|
|
91348
91749
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
91349
91750
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
91350
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
91351
91751
|
};
|
|
91352
91752
|
export declare type ShepherdUser = {
|
|
91353
91753
|
__typename?: 'ShepherdUser';
|
|
@@ -91377,15 +91777,9 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
91377
91777
|
destinationType: ShepherdWebhookDestinationType;
|
|
91378
91778
|
id: Scalars['ID']['output'];
|
|
91379
91779
|
status: ShepherdSubscriptionStatus;
|
|
91380
|
-
type?: Maybe<ShepherdWebhookType>;
|
|
91381
91780
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
91382
91781
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
91383
91782
|
};
|
|
91384
|
-
export declare enum ShepherdWebhookType {
|
|
91385
|
-
Custom = "CUSTOM",
|
|
91386
|
-
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
91387
|
-
Slack = "SLACK"
|
|
91388
|
-
}
|
|
91389
91783
|
export declare type ShepherdWorkspace = Node & {
|
|
91390
91784
|
__typename?: 'ShepherdWorkspace';
|
|
91391
91785
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
@@ -93651,6 +94045,7 @@ export declare type SupportRequestTransitionInput = {
|
|
|
93651
94045
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
93652
94046
|
requestKey: Scalars['String']['input'];
|
|
93653
94047
|
transitionId: Scalars['ID']['input'];
|
|
94048
|
+
transitionName?: InputMaybe<Scalars['String']['input']>;
|
|
93654
94049
|
};
|
|
93655
94050
|
export declare type SupportRequestTransitions = {
|
|
93656
94051
|
__typename?: 'SupportRequestTransitions';
|
|
@@ -99945,6 +100340,19 @@ export declare type UpdateJiraPlaybookInput = {
|
|
|
99945
100340
|
state?: InputMaybe<JiraPlaybookStateField>;
|
|
99946
100341
|
steps: Array<UpdateJiraPlaybookStepInput>;
|
|
99947
100342
|
};
|
|
100343
|
+
export declare type UpdateJiraPlaybookLabelInput = {
|
|
100344
|
+
id: Scalars['ID']['input'];
|
|
100345
|
+
name: Scalars['String']['input'];
|
|
100346
|
+
property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
|
|
100347
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
100348
|
+
scopeType: JiraPlaybookScopeType;
|
|
100349
|
+
};
|
|
100350
|
+
export declare type UpdateJiraPlaybookLabelPayload = Payload & {
|
|
100351
|
+
__typename?: 'UpdateJiraPlaybookLabelPayload';
|
|
100352
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100353
|
+
label?: Maybe<JiraPlaybookLabel>;
|
|
100354
|
+
success: Scalars['Boolean']['output'];
|
|
100355
|
+
};
|
|
99948
100356
|
export declare type UpdateJiraPlaybookPayload = Payload & {
|
|
99949
100357
|
__typename?: 'UpdateJiraPlaybookPayload';
|
|
99950
100358
|
errors?: Maybe<Array<MutationError>>;
|