@forge/cli-shared 8.0.1-next.6 → 8.1.0-next.7-experimental-effab31
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 +36 -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/graphql/graphql-types.d.ts +391 -80
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +24 -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 +5 -6
|
@@ -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'];
|
|
@@ -7190,7 +7226,6 @@ export declare type CompassCatalogQueryApi = {
|
|
|
7190
7226
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
7191
7227
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
7192
7228
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
7193
|
-
topScorecards?: Maybe<CompassTopScorecardConnection>;
|
|
7194
7229
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
7195
7230
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
7196
7231
|
};
|
|
@@ -7355,12 +7390,6 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
7355
7390
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
7356
7391
|
input: CompassTeamDataInput;
|
|
7357
7392
|
};
|
|
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
7393
|
export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
7365
7394
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7366
7395
|
componentId: Scalars['ID']['input'];
|
|
@@ -11188,53 +11217,6 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
11188
11217
|
cursor: Scalars['String']['output'];
|
|
11189
11218
|
node?: Maybe<CompassTeamMetricSource>;
|
|
11190
11219
|
};
|
|
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
11220
|
export declare type CompassUnsetEntityPropertyInput = {
|
|
11239
11221
|
cloudId: Scalars['ID']['input'];
|
|
11240
11222
|
key: Scalars['String']['input'];
|
|
@@ -16283,6 +16265,36 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
16283
16265
|
isValid: Scalars['Boolean']['output'];
|
|
16284
16266
|
message?: Maybe<Scalars['String']['output']>;
|
|
16285
16267
|
};
|
|
16268
|
+
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
16269
|
+
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
16270
|
+
entity?: Maybe<ConfluenceBlogPost>;
|
|
16271
|
+
id: Scalars['ID']['output'];
|
|
16272
|
+
suggestionSources: Array<Scalars['String']['output']>;
|
|
16273
|
+
url: Scalars['String']['output'];
|
|
16274
|
+
};
|
|
16275
|
+
export declare type ConvoAiJiraConfluencePageSuggestion = {
|
|
16276
|
+
__typename?: 'ConvoAiJiraConfluencePageSuggestion';
|
|
16277
|
+
entity?: Maybe<ConfluencePage>;
|
|
16278
|
+
id: Scalars['ID']['output'];
|
|
16279
|
+
suggestionSources: Array<Scalars['String']['output']>;
|
|
16280
|
+
url: Scalars['String']['output'];
|
|
16281
|
+
};
|
|
16282
|
+
export declare type ConvoAiJiraIssueRelatedResourcesResult = {
|
|
16283
|
+
__typename?: 'ConvoAiJiraIssueRelatedResourcesResult';
|
|
16284
|
+
edges?: Maybe<Array<ConvoAiJiraRelatedResourcesEdge>>;
|
|
16285
|
+
errors?: Maybe<Array<QueryError>>;
|
|
16286
|
+
pageInfo: PageInfo;
|
|
16287
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16288
|
+
};
|
|
16289
|
+
export declare type ConvoAiJiraRelatedResourceSuggestion = ConvoAiJiraConfluenceBlogSuggestion | ConvoAiJiraConfluencePageSuggestion;
|
|
16290
|
+
export declare type ConvoAiJiraRelatedResourcesEdge = {
|
|
16291
|
+
__typename?: 'ConvoAiJiraRelatedResourcesEdge';
|
|
16292
|
+
cursor: Scalars['String']['output'];
|
|
16293
|
+
node?: Maybe<ConvoAiJiraRelatedResourceSuggestion>;
|
|
16294
|
+
};
|
|
16295
|
+
export declare type ConvoAiJiraSearchSourcesInput = {
|
|
16296
|
+
confluenceSiteAri: Scalars['ID']['input'];
|
|
16297
|
+
};
|
|
16286
16298
|
export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
16287
16299
|
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
16288
16300
|
id: Scalars['ID']['output'];
|
|
@@ -16881,6 +16893,20 @@ export declare type CreateJiraPlaybookInput = {
|
|
|
16881
16893
|
state?: InputMaybe<JiraPlaybookStateField>;
|
|
16882
16894
|
steps: Array<CreateJiraPlaybookStepInput>;
|
|
16883
16895
|
};
|
|
16896
|
+
export declare type CreateJiraPlaybookLabelInput = {
|
|
16897
|
+
cloudId: Scalars['ID']['input'];
|
|
16898
|
+
name: Scalars['String']['input'];
|
|
16899
|
+
playbookId?: InputMaybe<Scalars['ID']['input']>;
|
|
16900
|
+
property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
|
|
16901
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
16902
|
+
scopeType: JiraPlaybookScopeType;
|
|
16903
|
+
};
|
|
16904
|
+
export declare type CreateJiraPlaybookLabelPayload = Payload & {
|
|
16905
|
+
__typename?: 'CreateJiraPlaybookLabelPayload';
|
|
16906
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16907
|
+
label?: Maybe<JiraPlaybookLabel>;
|
|
16908
|
+
success: Scalars['Boolean']['output'];
|
|
16909
|
+
};
|
|
16884
16910
|
export declare type CreateJiraPlaybookPayload = Payload & {
|
|
16885
16911
|
__typename?: 'CreateJiraPlaybookPayload';
|
|
16886
16912
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -19491,12 +19517,23 @@ export declare type DevAiFlowSessionCompletePayload = Payload & {
|
|
|
19491
19517
|
errors?: Maybe<Array<MutationError>>;
|
|
19492
19518
|
success: Scalars['Boolean']['output'];
|
|
19493
19519
|
};
|
|
19520
|
+
export declare type DevAiFlowSessionConnection = {
|
|
19521
|
+
__typename?: 'DevAiFlowSessionConnection';
|
|
19522
|
+
edges?: Maybe<Array<Maybe<DevAiFlowSessionEdge>>>;
|
|
19523
|
+
nodes?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
19524
|
+
pageInfo: PageInfo;
|
|
19525
|
+
};
|
|
19494
19526
|
export declare type DevAiFlowSessionCreatePayload = Payload & {
|
|
19495
19527
|
__typename?: 'DevAiFlowSessionCreatePayload';
|
|
19496
19528
|
data?: Maybe<DevAiFlowSession>;
|
|
19497
19529
|
errors?: Maybe<Array<MutationError>>;
|
|
19498
19530
|
success: Scalars['Boolean']['output'];
|
|
19499
19531
|
};
|
|
19532
|
+
export declare type DevAiFlowSessionEdge = {
|
|
19533
|
+
__typename?: 'DevAiFlowSessionEdge';
|
|
19534
|
+
cursor: Scalars['String']['output'];
|
|
19535
|
+
node?: Maybe<DevAiFlowSession>;
|
|
19536
|
+
};
|
|
19500
19537
|
export declare enum DevAiFlowSessionsStatus {
|
|
19501
19538
|
Completed = "COMPLETED",
|
|
19502
19539
|
Failed = "FAILED",
|
|
@@ -50166,6 +50203,7 @@ export declare type HelpCenter = Node & {
|
|
|
50166
50203
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
50167
50204
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
50168
50205
|
name?: Maybe<HelpCenterName>;
|
|
50206
|
+
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
50169
50207
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
50170
50208
|
portals?: Maybe<HelpCenterPortals>;
|
|
50171
50209
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
@@ -50177,6 +50215,9 @@ export declare type HelpCenter = Node & {
|
|
|
50177
50215
|
virtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
50178
50216
|
virtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50179
50217
|
};
|
|
50218
|
+
export declare type HelpCenterPagesArgs = {
|
|
50219
|
+
filter?: InputMaybe<HelpCenterPagesFilter>;
|
|
50220
|
+
};
|
|
50180
50221
|
export declare type HelpCenterPortalsArgs = {
|
|
50181
50222
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
50182
50223
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
@@ -50534,6 +50575,9 @@ export declare type HelpCenterPageUpdatePayload = Payload & {
|
|
|
50534
50575
|
helpCenterPage?: Maybe<HelpCenterPage>;
|
|
50535
50576
|
success: Scalars['Boolean']['output'];
|
|
50536
50577
|
};
|
|
50578
|
+
export declare type HelpCenterPagesFilter = {
|
|
50579
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50580
|
+
};
|
|
50537
50581
|
export declare type HelpCenterPermissionSettings = {
|
|
50538
50582
|
__typename?: 'HelpCenterPermissionSettings';
|
|
50539
50583
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -51608,6 +51652,10 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
51608
51652
|
id: Scalars['ID']['output'];
|
|
51609
51653
|
title?: Maybe<Scalars['String']['output']>;
|
|
51610
51654
|
};
|
|
51655
|
+
export declare enum HelpObjectStoreArticleContentType {
|
|
51656
|
+
Folder = "FOLDER",
|
|
51657
|
+
Page = "PAGE"
|
|
51658
|
+
}
|
|
51611
51659
|
export declare type HelpObjectStoreArticleMetadata = {
|
|
51612
51660
|
__typename?: 'HelpObjectStoreArticleMetadata';
|
|
51613
51661
|
isExternal: Scalars['Boolean']['output'];
|
|
@@ -51644,6 +51692,18 @@ export declare enum HelpObjectStoreArticleSourceSystem {
|
|
|
51644
51692
|
GoogleDrive = "GOOGLE_DRIVE",
|
|
51645
51693
|
Sharepoint = "SHAREPOINT"
|
|
51646
51694
|
}
|
|
51695
|
+
export declare type HelpObjectStoreArticleSpaceInfo = {
|
|
51696
|
+
__typename?: 'HelpObjectStoreArticleSpaceInfo';
|
|
51697
|
+
spaceId?: Maybe<Scalars['Long']['output']>;
|
|
51698
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
51699
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
51700
|
+
};
|
|
51701
|
+
export declare type HelpObjectStoreArticleUrlInfo = {
|
|
51702
|
+
__typename?: 'HelpObjectStoreArticleURLInfo';
|
|
51703
|
+
editUrl: Scalars['String']['output'];
|
|
51704
|
+
shareUrl: Scalars['String']['output'];
|
|
51705
|
+
viewUrl: Scalars['String']['output'];
|
|
51706
|
+
};
|
|
51647
51707
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
51648
51708
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
51649
51709
|
};
|
|
@@ -51880,6 +51940,35 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
51880
51940
|
entityId: Scalars['String']['output'];
|
|
51881
51941
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
51882
51942
|
};
|
|
51943
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
51944
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
51945
|
+
parentId?: InputMaybe<Scalars['Long']['input']>;
|
|
51946
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
51947
|
+
topLevelArticlesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51948
|
+
};
|
|
51949
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
|
|
51950
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
51951
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
51952
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
51953
|
+
contentType?: Maybe<HelpObjectStoreArticleContentType>;
|
|
51954
|
+
id: Scalars['ID']['output'];
|
|
51955
|
+
lastModified: Scalars['String']['output'];
|
|
51956
|
+
spaceInfo: HelpObjectStoreArticleSpaceInfo;
|
|
51957
|
+
title: Scalars['String']['output'];
|
|
51958
|
+
urlInfo: HelpObjectStoreArticleUrlInfo;
|
|
51959
|
+
viewCount?: Maybe<Scalars['Long']['output']>;
|
|
51960
|
+
};
|
|
51961
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
|
|
51962
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
|
|
51963
|
+
edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge>>;
|
|
51964
|
+
nodes?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResult>>;
|
|
51965
|
+
pageInfo: PageInfo;
|
|
51966
|
+
};
|
|
51967
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
|
|
51968
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
|
|
51969
|
+
cursor: Scalars['String']['output'];
|
|
51970
|
+
node: HelpObjectStoreSupportSiteArticleSearchResult;
|
|
51971
|
+
};
|
|
51883
51972
|
export declare type History = {
|
|
51884
51973
|
__typename?: 'History';
|
|
51885
51974
|
archivedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -54028,6 +54117,7 @@ export declare enum JiraBoardType {
|
|
|
54028
54117
|
}
|
|
54029
54118
|
export declare type JiraBoardView = {
|
|
54030
54119
|
__typename?: 'JiraBoardView';
|
|
54120
|
+
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
54031
54121
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
54032
54122
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
54033
54123
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
@@ -55897,6 +55987,19 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
55897
55987
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
55898
55988
|
success: Scalars['Boolean']['output'];
|
|
55899
55989
|
};
|
|
55990
|
+
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
55991
|
+
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
55992
|
+
expression: JiraFormattingRuleExpressionInput;
|
|
55993
|
+
formattingArea: JiraFormattingArea;
|
|
55994
|
+
formattingColor?: InputMaybe<JiraColorInput>;
|
|
55995
|
+
viewId: Scalars['ID']['input'];
|
|
55996
|
+
};
|
|
55997
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
55998
|
+
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
55999
|
+
createdRule?: Maybe<JiraFormattingRule>;
|
|
56000
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56001
|
+
success: Scalars['Boolean']['output'];
|
|
56002
|
+
};
|
|
55900
56003
|
export declare type JiraCreateJourneyConfigurationInput = {
|
|
55901
56004
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
55902
56005
|
name: Scalars['String']['input'];
|
|
@@ -58901,6 +59004,7 @@ export declare type JiraIssueEdge = {
|
|
|
58901
59004
|
cursor: Scalars['String']['output'];
|
|
58902
59005
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
58903
59006
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
59007
|
+
issueError?: Maybe<JiraIssueError>;
|
|
58904
59008
|
node?: Maybe<JiraIssue>;
|
|
58905
59009
|
};
|
|
58906
59010
|
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
@@ -58915,6 +59019,7 @@ export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
|
58915
59019
|
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
58916
59020
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
58917
59021
|
};
|
|
59022
|
+
export declare type JiraIssueError = JiraRemoteLinkedIssueError;
|
|
58918
59023
|
export declare type JiraIssueExpandedGroup = {
|
|
58919
59024
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
58920
59025
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -59424,6 +59529,26 @@ export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
|
59424
59529
|
linkType: Scalars['ID']['input'];
|
|
59425
59530
|
operation: JiraAddValueFieldOperations;
|
|
59426
59531
|
};
|
|
59532
|
+
export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
59533
|
+
__typename?: 'JiraIssueLinkRelationshipTypeField';
|
|
59534
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
59535
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
59536
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
59537
|
+
fieldId: Scalars['String']['output'];
|
|
59538
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
59539
|
+
id: Scalars['ID']['output'];
|
|
59540
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
59541
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
59542
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
59543
|
+
issue?: Maybe<JiraIssue>;
|
|
59544
|
+
issueLink?: Maybe<JiraIssueLink>;
|
|
59545
|
+
name: Scalars['String']['output'];
|
|
59546
|
+
type: Scalars['String']['output'];
|
|
59547
|
+
};
|
|
59548
|
+
export declare type JiraIssueLinkRelationshipTypeUpdateInput = {
|
|
59549
|
+
issueLinkId: Scalars['ID']['input'];
|
|
59550
|
+
issueLinkTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59551
|
+
};
|
|
59427
59552
|
export declare type JiraIssueLinkType = Node & {
|
|
59428
59553
|
__typename?: 'JiraIssueLinkType';
|
|
59429
59554
|
id: Scalars['ID']['output'];
|
|
@@ -61698,6 +61823,7 @@ export declare type JiraMutation = {
|
|
|
61698
61823
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
61699
61824
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
61700
61825
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
61826
|
+
updateIssueLinkRelationshipTypeField?: Maybe<JiraUpdateIssueLinkRelationshipTypeFieldPayload>;
|
|
61701
61827
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
61702
61828
|
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
61703
61829
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
@@ -62215,6 +62341,9 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
62215
62341
|
cloudId: Scalars['ID']['input'];
|
|
62216
62342
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
62217
62343
|
};
|
|
62344
|
+
export declare type JiraMutationUpdateIssueLinkRelationshipTypeFieldArgs = {
|
|
62345
|
+
input: JiraUpdateIssueLinkRelationshipTypeFieldInput;
|
|
62346
|
+
};
|
|
62218
62347
|
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
62219
62348
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
62220
62349
|
viewId: Scalars['ID']['input'];
|
|
@@ -63456,6 +63585,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
63456
63585
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
63457
63586
|
id: Scalars['ID']['output'];
|
|
63458
63587
|
jql?: Maybe<Scalars['String']['output']>;
|
|
63588
|
+
labels?: Maybe<Array<JiraPlaybookLabel>>;
|
|
63459
63589
|
name?: Maybe<Scalars['String']['output']>;
|
|
63460
63590
|
owner?: Maybe<User>;
|
|
63461
63591
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63485,6 +63615,7 @@ export declare type JiraPlaybookExecutionFilter = {
|
|
|
63485
63615
|
};
|
|
63486
63616
|
export declare type JiraPlaybookFilter = {
|
|
63487
63617
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
63618
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
63488
63619
|
};
|
|
63489
63620
|
export declare type JiraPlaybookInstance = Node & {
|
|
63490
63621
|
__typename?: 'JiraPlaybookInstance';
|
|
@@ -63530,6 +63661,49 @@ export declare enum JiraPlaybookIssueFilterType {
|
|
|
63530
63661
|
IssueTypes = "ISSUE_TYPES",
|
|
63531
63662
|
RequestTypes = "REQUEST_TYPES"
|
|
63532
63663
|
}
|
|
63664
|
+
export declare type JiraPlaybookLabel = Node & {
|
|
63665
|
+
__typename?: 'JiraPlaybookLabel';
|
|
63666
|
+
id: Scalars['ID']['output'];
|
|
63667
|
+
name: Scalars['String']['output'];
|
|
63668
|
+
property?: Maybe<JiraPlaybookLabelProperty>;
|
|
63669
|
+
scopeId?: Maybe<Scalars['String']['output']>;
|
|
63670
|
+
scopeType?: Maybe<JiraPlaybookScopeType>;
|
|
63671
|
+
};
|
|
63672
|
+
export declare type JiraPlaybookLabelAssignmentPayload = Payload & {
|
|
63673
|
+
__typename?: 'JiraPlaybookLabelAssignmentPayload';
|
|
63674
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63675
|
+
id: Scalars['ID']['output'];
|
|
63676
|
+
success: Scalars['Boolean']['output'];
|
|
63677
|
+
};
|
|
63678
|
+
export declare type JiraPlaybookLabelConnection = HasPageInfo & QueryPayload & {
|
|
63679
|
+
__typename?: 'JiraPlaybookLabelConnection';
|
|
63680
|
+
edges?: Maybe<Array<JiraPlaybookLabelEdge>>;
|
|
63681
|
+
errors?: Maybe<Array<QueryError>>;
|
|
63682
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookLabel>>>;
|
|
63683
|
+
pageInfo: PageInfo;
|
|
63684
|
+
success: Scalars['Boolean']['output'];
|
|
63685
|
+
};
|
|
63686
|
+
export declare type JiraPlaybookLabelEdge = {
|
|
63687
|
+
__typename?: 'JiraPlaybookLabelEdge';
|
|
63688
|
+
cursor: Scalars['String']['output'];
|
|
63689
|
+
node?: Maybe<JiraPlaybookLabel>;
|
|
63690
|
+
};
|
|
63691
|
+
export declare type JiraPlaybookLabelFilter = {
|
|
63692
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63693
|
+
};
|
|
63694
|
+
export declare type JiraPlaybookLabelProperty = {
|
|
63695
|
+
__typename?: 'JiraPlaybookLabelProperty';
|
|
63696
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
63697
|
+
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
63698
|
+
};
|
|
63699
|
+
export declare type JiraPlaybookLabelPropertyInput = {
|
|
63700
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
63701
|
+
editable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63702
|
+
};
|
|
63703
|
+
export declare type JiraPlaybookListFilter = {
|
|
63704
|
+
labels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63705
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63706
|
+
};
|
|
63533
63707
|
export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
63534
63708
|
__typename?: 'JiraPlaybookQueryPayload';
|
|
63535
63709
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -63543,6 +63717,7 @@ export declare enum JiraPlaybookScopeType {
|
|
|
63543
63717
|
}
|
|
63544
63718
|
export declare enum JiraPlaybookStateField {
|
|
63545
63719
|
Disabled = "DISABLED",
|
|
63720
|
+
Draft = "DRAFT",
|
|
63546
63721
|
Enabled = "ENABLED"
|
|
63547
63722
|
}
|
|
63548
63723
|
export declare type JiraPlaybookStep = {
|
|
@@ -63620,7 +63795,7 @@ export declare type JiraPlaybookStepUsage = Node & {
|
|
|
63620
63795
|
id: Scalars['ID']['output'];
|
|
63621
63796
|
maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63622
63797
|
minExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63623
|
-
|
|
63798
|
+
owner?: Maybe<User>;
|
|
63624
63799
|
playbookName?: Maybe<Scalars['String']['output']>;
|
|
63625
63800
|
stepName?: Maybe<Scalars['String']['output']>;
|
|
63626
63801
|
stepType?: Maybe<JiraPlaybookStepType>;
|
|
@@ -64985,6 +65160,7 @@ export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
|
64985
65160
|
cloudId: Scalars['ID']['input'];
|
|
64986
65161
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
64987
65162
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
65163
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
64988
65164
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
64989
65165
|
};
|
|
64990
65166
|
export declare type JiraQueryFieldSetsByIdArgs = {
|
|
@@ -66080,6 +66256,19 @@ export declare type JiraRemainingTimeEstimateFieldPayload = Payload & {
|
|
|
66080
66256
|
success: Scalars['Boolean']['output'];
|
|
66081
66257
|
};
|
|
66082
66258
|
export declare type JiraRemoteIssueLink = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
66259
|
+
export declare type JiraRemoteLinkedIssueError = {
|
|
66260
|
+
__typename?: 'JiraRemoteLinkedIssueError';
|
|
66261
|
+
errorType?: Maybe<JiraRemoteLinkedIssueErrorType>;
|
|
66262
|
+
repairLink?: Maybe<JiraRemoteLinkedIssueRepairLink>;
|
|
66263
|
+
};
|
|
66264
|
+
export declare enum JiraRemoteLinkedIssueErrorType {
|
|
66265
|
+
ApplinkMissing = "APPLINK_MISSING",
|
|
66266
|
+
ApplinkReqAuth = "APPLINK_REQ_AUTH"
|
|
66267
|
+
}
|
|
66268
|
+
export declare type JiraRemoteLinkedIssueRepairLink = {
|
|
66269
|
+
__typename?: 'JiraRemoteLinkedIssueRepairLink';
|
|
66270
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
66271
|
+
};
|
|
66083
66272
|
export declare type JiraRemoveActiveBackgroundInput = {
|
|
66084
66273
|
entityId: Scalars['ID']['input'];
|
|
66085
66274
|
};
|
|
@@ -68302,6 +68491,12 @@ export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
|
68302
68491
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
68303
68492
|
url?: Maybe<Scalars['String']['output']>;
|
|
68304
68493
|
};
|
|
68494
|
+
export declare type JiraShowUnscheduledIssuesCalendarMutationPayload = Payload & {
|
|
68495
|
+
__typename?: 'JiraShowUnscheduledIssuesCalendarMutationPayload';
|
|
68496
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68497
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
68498
|
+
success: Scalars['Boolean']['output'];
|
|
68499
|
+
};
|
|
68305
68500
|
export declare enum JiraSidebarMenuDisplayMode {
|
|
68306
68501
|
MostRecentOnly = "MOST_RECENT_ONLY",
|
|
68307
68502
|
Starred = "STARRED",
|
|
@@ -69646,6 +69841,20 @@ export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
|
69646
69841
|
id: Scalars['ID']['input'];
|
|
69647
69842
|
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
69648
69843
|
};
|
|
69844
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldInput = {
|
|
69845
|
+
id: Scalars['ID']['input'];
|
|
69846
|
+
operation: JiraUpdateIssueLinkRelationshipTypeFieldOperationInput;
|
|
69847
|
+
};
|
|
69848
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldOperationInput = {
|
|
69849
|
+
operation: JiraSingleValueFieldOperations;
|
|
69850
|
+
update: JiraIssueLinkRelationshipTypeUpdateInput;
|
|
69851
|
+
};
|
|
69852
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload & {
|
|
69853
|
+
__typename?: 'JiraUpdateIssueLinkRelationshipTypeFieldPayload';
|
|
69854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69855
|
+
field?: Maybe<JiraIssueLinkRelationshipTypeField>;
|
|
69856
|
+
success: Scalars['Boolean']['output'];
|
|
69857
|
+
};
|
|
69649
69858
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
69650
69859
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
69651
69860
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
@@ -70136,6 +70345,7 @@ export declare type JiraUserPreferences = {
|
|
|
70136
70345
|
showRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
70137
70346
|
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
70138
70347
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
70348
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
70139
70349
|
};
|
|
70140
70350
|
export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplatesArgs = {
|
|
70141
70351
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77180,11 +77390,6 @@ export declare type MercuryFocusAreaType = {
|
|
|
77180
77390
|
id: Scalars['ID']['output'];
|
|
77181
77391
|
name: Scalars['String']['output'];
|
|
77182
77392
|
};
|
|
77183
|
-
export declare type MercuryForYouFocusAreaActivityHistory = {
|
|
77184
|
-
__typename?: 'MercuryForYouFocusAreaActivityHistory';
|
|
77185
|
-
activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
77186
|
-
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
77187
|
-
};
|
|
77188
77393
|
export declare type MercuryFundChangeSummary = {
|
|
77189
77394
|
__typename?: 'MercuryFundChangeSummary';
|
|
77190
77395
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -77396,6 +77601,7 @@ export declare type MercuryMutationApi = {
|
|
|
77396
77601
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
77397
77602
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
77398
77603
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
77604
|
+
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
77399
77605
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
77400
77606
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
77401
77607
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -77467,6 +77673,9 @@ export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
|
77467
77673
|
export declare type MercuryMutationApiLinkGoalsToFocusAreaArgs = {
|
|
77468
77674
|
input: MercuryLinkGoalsToFocusAreaInput;
|
|
77469
77675
|
};
|
|
77676
|
+
export declare type MercuryMutationApiPublishFocusAreaArgs = {
|
|
77677
|
+
input: MercuryPublishFocusAreaInput;
|
|
77678
|
+
};
|
|
77470
77679
|
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
77471
77680
|
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
77472
77681
|
};
|
|
@@ -77842,6 +78051,15 @@ export declare enum MercuryProviderWorkTargetDateType {
|
|
|
77842
78051
|
Month = "MONTH",
|
|
77843
78052
|
Quarter = "QUARTER"
|
|
77844
78053
|
}
|
|
78054
|
+
export declare type MercuryPublishFocusAreaInput = {
|
|
78055
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78056
|
+
id: Scalars['ID']['input'];
|
|
78057
|
+
};
|
|
78058
|
+
export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
78059
|
+
__typename?: 'MercuryPublishFocusAreaPayload';
|
|
78060
|
+
errors?: Maybe<Array<MutationError>>;
|
|
78061
|
+
success: Scalars['Boolean']['output'];
|
|
78062
|
+
};
|
|
77845
78063
|
export declare type MercuryQueryApi = {
|
|
77846
78064
|
__typename?: 'MercuryQueryApi';
|
|
77847
78065
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -77859,7 +78077,6 @@ export declare type MercuryQueryApi = {
|
|
|
77859
78077
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
77860
78078
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
77861
78079
|
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
77862
|
-
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
77863
78080
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
77864
78081
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
77865
78082
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -77943,14 +78160,6 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
|
77943
78160
|
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
77944
78161
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
77945
78162
|
};
|
|
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
78163
|
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
77955
78164
|
cloudId: Scalars['ID']['input'];
|
|
77956
78165
|
};
|
|
@@ -78938,6 +79147,7 @@ export declare type Mutation = {
|
|
|
78938
79147
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
78939
79148
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
78940
79149
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
79150
|
+
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
78941
79151
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
78942
79152
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
78943
79153
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
@@ -79185,6 +79395,7 @@ export declare type Mutation = {
|
|
|
79185
79395
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
79186
79396
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
79187
79397
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79398
|
+
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
79188
79399
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
79189
79400
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
79190
79401
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
@@ -79215,6 +79426,7 @@ export declare type Mutation = {
|
|
|
79215
79426
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
79216
79427
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
79217
79428
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
79429
|
+
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
79218
79430
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
79219
79431
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
79220
79432
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
@@ -79253,9 +79465,12 @@ export declare type Mutation = {
|
|
|
79253
79465
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
79254
79466
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
79255
79467
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
79468
|
+
playbook_assignJiraPlaybookLabelToJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79256
79469
|
playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
|
|
79470
|
+
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
79257
79471
|
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
79258
79472
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
79473
|
+
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79259
79474
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
79260
79475
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
79261
79476
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -79479,6 +79694,9 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
|
79479
79694
|
cloudId: Scalars['String']['input'];
|
|
79480
79695
|
input: AgentStudioCreateScenarioInput;
|
|
79481
79696
|
};
|
|
79697
|
+
export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
79698
|
+
id: Scalars['ID']['input'];
|
|
79699
|
+
};
|
|
79482
79700
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
79483
79701
|
id: Scalars['ID']['input'];
|
|
79484
79702
|
};
|
|
@@ -80301,6 +80519,9 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
80301
80519
|
cloudId: Scalars['ID']['input'];
|
|
80302
80520
|
input: JiraCreateGlobalCustomFieldInput;
|
|
80303
80521
|
};
|
|
80522
|
+
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
80523
|
+
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
80524
|
+
};
|
|
80304
80525
|
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80305
80526
|
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80306
80527
|
};
|
|
@@ -80395,6 +80616,10 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
|
80395
80616
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
80396
80617
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
80397
80618
|
};
|
|
80619
|
+
export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
80620
|
+
cloudId: Scalars['ID']['input'];
|
|
80621
|
+
show: Scalars['Boolean']['input'];
|
|
80622
|
+
};
|
|
80398
80623
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
80399
80624
|
input: JiraSetViewFilterInput;
|
|
80400
80625
|
};
|
|
@@ -80488,15 +80713,26 @@ export declare type MutationPlanModeCardCreateArgs = {
|
|
|
80488
80713
|
export declare type MutationPlanModeCardMoveArgs = {
|
|
80489
80714
|
input?: InputMaybe<PlanModeCardMoveInput>;
|
|
80490
80715
|
};
|
|
80716
|
+
export declare type MutationPlaybook_AssignJiraPlaybookLabelToJiraPlaybookArgs = {
|
|
80717
|
+
labelId: Scalars['ID']['input'];
|
|
80718
|
+
playbookId: Scalars['ID']['input'];
|
|
80719
|
+
};
|
|
80491
80720
|
export declare type MutationPlaybook_CreateJiraPlaybookArgs = {
|
|
80492
80721
|
input: CreateJiraPlaybookInput;
|
|
80493
80722
|
};
|
|
80723
|
+
export declare type MutationPlaybook_CreateJiraPlaybookLabelArgs = {
|
|
80724
|
+
input: CreateJiraPlaybookLabelInput;
|
|
80725
|
+
};
|
|
80494
80726
|
export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
|
|
80495
80727
|
input: CreateJiraPlaybookStepRunInput;
|
|
80496
80728
|
};
|
|
80497
80729
|
export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
|
|
80498
80730
|
input: DeleteJiraPlaybookInput;
|
|
80499
80731
|
};
|
|
80732
|
+
export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
|
|
80733
|
+
labelId: Scalars['ID']['input'];
|
|
80734
|
+
playbookId: Scalars['ID']['input'];
|
|
80735
|
+
};
|
|
80500
80736
|
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
80501
80737
|
input: UpdateJiraPlaybookInput;
|
|
80502
80738
|
};
|
|
@@ -83870,6 +84106,7 @@ export declare type Query = {
|
|
|
83870
84106
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
83871
84107
|
appContainer?: Maybe<AppContainer>;
|
|
83872
84108
|
appContainerRegistryLogin?: Maybe<AppContainerRegistryLogin>;
|
|
84109
|
+
appContainerServices?: Maybe<AppContainerServices>;
|
|
83873
84110
|
appContainers?: Maybe<Array<AppContainer>>;
|
|
83874
84111
|
appContributors: Array<AppContributor>;
|
|
83875
84112
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -84012,6 +84249,7 @@ export declare type Query = {
|
|
|
84012
84249
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
84013
84250
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84014
84251
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
84252
|
+
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
84015
84253
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
84016
84254
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
84017
84255
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
@@ -84063,6 +84301,7 @@ export declare type Query = {
|
|
|
84063
84301
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
84064
84302
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
84065
84303
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84304
|
+
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84066
84305
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
84067
84306
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
84068
84307
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -84135,6 +84374,7 @@ export declare type Query = {
|
|
|
84135
84374
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
84136
84375
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
84137
84376
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
84377
|
+
helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
|
|
84138
84378
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
84139
84379
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
84140
84380
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
@@ -84261,6 +84501,7 @@ export declare type Query = {
|
|
|
84261
84501
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
84262
84502
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
84263
84503
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
84504
|
+
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
84264
84505
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
84265
84506
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
84266
84507
|
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
@@ -84289,6 +84530,9 @@ export declare type Query = {
|
|
|
84289
84530
|
productListings: Array<ProductListingResult>;
|
|
84290
84531
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
84291
84532
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84533
|
+
projects_byId?: Maybe<TownsquareProject>;
|
|
84534
|
+
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84535
|
+
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
84292
84536
|
ptpage?: Maybe<PtPage>;
|
|
84293
84537
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
84294
84538
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -84529,6 +84773,11 @@ export declare type QueryAppContainerArgs = {
|
|
|
84529
84773
|
export declare type QueryAppContainerRegistryLoginArgs = {
|
|
84530
84774
|
appId: Scalars['ID']['input'];
|
|
84531
84775
|
};
|
|
84776
|
+
export declare type QueryAppContainerServicesArgs = {
|
|
84777
|
+
appId: Scalars['ID']['input'];
|
|
84778
|
+
environmentKey: Scalars['String']['input'];
|
|
84779
|
+
serviceNames: Array<Scalars['String']['input']>;
|
|
84780
|
+
};
|
|
84532
84781
|
export declare type QueryAppContainersArgs = {
|
|
84533
84782
|
appId: Scalars['ID']['input'];
|
|
84534
84783
|
};
|
|
@@ -85207,6 +85456,17 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
85207
85456
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85208
85457
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
85209
85458
|
};
|
|
85459
|
+
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
85460
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85461
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
85462
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85463
|
+
id: Scalars['ID']['input'];
|
|
85464
|
+
l2ScoreThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
85465
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
85466
|
+
searchSourcesInput?: InputMaybe<ConvoAiJiraSearchSourcesInput>;
|
|
85467
|
+
xpsearchL1?: InputMaybe<Scalars['String']['input']>;
|
|
85468
|
+
xpsearchL2?: InputMaybe<Scalars['String']['input']>;
|
|
85469
|
+
};
|
|
85210
85470
|
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
85211
85471
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85212
85472
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -85435,6 +85695,11 @@ export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
|
85435
85695
|
creator: Scalars['String']['input'];
|
|
85436
85696
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85437
85697
|
};
|
|
85698
|
+
export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
85699
|
+
cloudId: Scalars['ID']['input'];
|
|
85700
|
+
issueKey: Scalars['String']['input'];
|
|
85701
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85702
|
+
};
|
|
85438
85703
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
85439
85704
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85440
85705
|
cloudId: Scalars['ID']['input'];
|
|
@@ -85679,6 +85944,13 @@ export declare type QueryHelpObjectStore_SearchArticlesArgs = {
|
|
|
85679
85944
|
queryTerm?: InputMaybe<Scalars['String']['input']>;
|
|
85680
85945
|
skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85681
85946
|
};
|
|
85947
|
+
export declare type QueryHelpObjectStore_SearchArticlesForSupportSiteArgs = {
|
|
85948
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85949
|
+
cloudId: Scalars['String']['input'];
|
|
85950
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85951
|
+
helpCenterAri: Scalars['String']['input'];
|
|
85952
|
+
input?: InputMaybe<HelpObjectStoreSupportSiteArticleSearchInput>;
|
|
85953
|
+
};
|
|
85682
85954
|
export declare type QueryHelpObjectStore_SearchPortalsArgs = {
|
|
85683
85955
|
cloudId: Scalars['ID']['input'];
|
|
85684
85956
|
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -86048,6 +86320,13 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
|
86048
86320
|
issueId: Scalars['String']['input'];
|
|
86049
86321
|
projectKey: Scalars['String']['input'];
|
|
86050
86322
|
};
|
|
86323
|
+
export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
86324
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86325
|
+
cloudId: Scalars['ID']['input'];
|
|
86326
|
+
filters?: InputMaybe<JiraPlaybookLabelFilter>;
|
|
86327
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86328
|
+
projectKey: Scalars['String']['input'];
|
|
86329
|
+
};
|
|
86051
86330
|
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
86052
86331
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86053
86332
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -86072,6 +86351,7 @@ export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
|
86072
86351
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86073
86352
|
cloudId: Scalars['ID']['input'];
|
|
86074
86353
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
86354
|
+
filters?: InputMaybe<JiraPlaybookListFilter>;
|
|
86075
86355
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86076
86356
|
projectKey: Scalars['String']['input'];
|
|
86077
86357
|
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
@@ -86149,6 +86429,15 @@ export declare type QueryProjects_ByAriArgs = {
|
|
|
86149
86429
|
export declare type QueryProjects_ByArisArgs = {
|
|
86150
86430
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
86151
86431
|
};
|
|
86432
|
+
export declare type QueryProjects_ByIdArgs = {
|
|
86433
|
+
projectId: Scalars['String']['input'];
|
|
86434
|
+
};
|
|
86435
|
+
export declare type QueryProjects_ByIdsArgs = {
|
|
86436
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
86437
|
+
};
|
|
86438
|
+
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
86439
|
+
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
86440
|
+
};
|
|
86152
86441
|
export declare type QueryPtpageArgs = {
|
|
86153
86442
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86154
86443
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -90626,7 +90915,6 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
90626
90915
|
callbackURL: Scalars['URL']['input'];
|
|
90627
90916
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
90628
90917
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
90629
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
90630
90918
|
};
|
|
90631
90919
|
export declare type ShepherdCurrentUser = {
|
|
90632
90920
|
__typename?: 'ShepherdCurrentUser';
|
|
@@ -90637,7 +90925,7 @@ export declare type ShepherdCustomContentScanningDetection = {
|
|
|
90637
90925
|
__typename?: 'ShepherdCustomContentScanningDetection';
|
|
90638
90926
|
rules: Array<Maybe<ShepherdCustomScanningRule>>;
|
|
90639
90927
|
};
|
|
90640
|
-
export declare type ShepherdCustomDetection = {
|
|
90928
|
+
export declare type ShepherdCustomDetection = Node & {
|
|
90641
90929
|
__typename?: 'ShepherdCustomDetection';
|
|
90642
90930
|
description?: Maybe<Scalars['String']['output']>;
|
|
90643
90931
|
id: Scalars['ID']['output'];
|
|
@@ -90694,7 +90982,7 @@ export declare type ShepherdDescriptionTemplate = {
|
|
|
90694
90982
|
text?: Maybe<Scalars['JSON']['output']>;
|
|
90695
90983
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
90696
90984
|
};
|
|
90697
|
-
export declare type ShepherdDetection = {
|
|
90985
|
+
export declare type ShepherdDetection = Node & {
|
|
90698
90986
|
__typename?: 'ShepherdDetection';
|
|
90699
90987
|
businessTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
90700
90988
|
category: ShepherdAlertDetectionCategory;
|
|
@@ -90753,7 +91041,7 @@ export declare type ShepherdDetectionScanningInfo = {
|
|
|
90753
91041
|
__typename?: 'ShepherdDetectionScanningInfo';
|
|
90754
91042
|
scanningFrequency: ShepherdDetectionScanningFrequency;
|
|
90755
91043
|
};
|
|
90756
|
-
export declare type ShepherdDetectionSetting = {
|
|
91044
|
+
export declare type ShepherdDetectionSetting = Node & {
|
|
90757
91045
|
__typename?: 'ShepherdDetectionSetting';
|
|
90758
91046
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
90759
91047
|
id: Scalars['ID']['output'];
|
|
@@ -91296,11 +91584,27 @@ export declare type ShepherdSuspiciousSearchTerm = {
|
|
|
91296
91584
|
export declare type ShepherdTeamworkGraphQueries = {
|
|
91297
91585
|
__typename?: 'ShepherdTeamworkGraphQueries';
|
|
91298
91586
|
alerts?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
91587
|
+
customDetections?: Maybe<Array<Maybe<ShepherdCustomDetection>>>;
|
|
91588
|
+
detectionSettings?: Maybe<Array<Maybe<ShepherdDetectionSetting>>>;
|
|
91589
|
+
detections?: Maybe<Array<Maybe<ShepherdDetection>>>;
|
|
91590
|
+
subscriptions?: Maybe<Array<Maybe<ShepherdSubscription>>>;
|
|
91299
91591
|
workspaces?: Maybe<Array<Maybe<ShepherdWorkspace>>>;
|
|
91300
91592
|
};
|
|
91301
91593
|
export declare type ShepherdTeamworkGraphQueriesAlertsArgs = {
|
|
91302
91594
|
ids: Array<Scalars['ID']['input']>;
|
|
91303
91595
|
};
|
|
91596
|
+
export declare type ShepherdTeamworkGraphQueriesCustomDetectionsArgs = {
|
|
91597
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91598
|
+
};
|
|
91599
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionSettingsArgs = {
|
|
91600
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91601
|
+
};
|
|
91602
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionsArgs = {
|
|
91603
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91604
|
+
};
|
|
91605
|
+
export declare type ShepherdTeamworkGraphQueriesSubscriptionsArgs = {
|
|
91606
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91607
|
+
};
|
|
91304
91608
|
export declare type ShepherdTeamworkGraphQueriesWorkspacesArgs = {
|
|
91305
91609
|
ids: Array<Scalars['ID']['input']>;
|
|
91306
91610
|
};
|
|
@@ -91347,7 +91651,6 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
91347
91651
|
callbackURL?: InputMaybe<Scalars['URL']['input']>;
|
|
91348
91652
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
91349
91653
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
91350
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
91351
91654
|
};
|
|
91352
91655
|
export declare type ShepherdUser = {
|
|
91353
91656
|
__typename?: 'ShepherdUser';
|
|
@@ -91377,15 +91680,9 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
91377
91680
|
destinationType: ShepherdWebhookDestinationType;
|
|
91378
91681
|
id: Scalars['ID']['output'];
|
|
91379
91682
|
status: ShepherdSubscriptionStatus;
|
|
91380
|
-
type?: Maybe<ShepherdWebhookType>;
|
|
91381
91683
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
91382
91684
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
91383
91685
|
};
|
|
91384
|
-
export declare enum ShepherdWebhookType {
|
|
91385
|
-
Custom = "CUSTOM",
|
|
91386
|
-
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
91387
|
-
Slack = "SLACK"
|
|
91388
|
-
}
|
|
91389
91686
|
export declare type ShepherdWorkspace = Node & {
|
|
91390
91687
|
__typename?: 'ShepherdWorkspace';
|
|
91391
91688
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
@@ -93651,6 +93948,7 @@ export declare type SupportRequestTransitionInput = {
|
|
|
93651
93948
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
93652
93949
|
requestKey: Scalars['String']['input'];
|
|
93653
93950
|
transitionId: Scalars['ID']['input'];
|
|
93951
|
+
transitionName?: InputMaybe<Scalars['String']['input']>;
|
|
93654
93952
|
};
|
|
93655
93953
|
export declare type SupportRequestTransitions = {
|
|
93656
93954
|
__typename?: 'SupportRequestTransitions';
|
|
@@ -99945,6 +100243,19 @@ export declare type UpdateJiraPlaybookInput = {
|
|
|
99945
100243
|
state?: InputMaybe<JiraPlaybookStateField>;
|
|
99946
100244
|
steps: Array<UpdateJiraPlaybookStepInput>;
|
|
99947
100245
|
};
|
|
100246
|
+
export declare type UpdateJiraPlaybookLabelInput = {
|
|
100247
|
+
id: Scalars['ID']['input'];
|
|
100248
|
+
name: Scalars['String']['input'];
|
|
100249
|
+
property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
|
|
100250
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
100251
|
+
scopeType: JiraPlaybookScopeType;
|
|
100252
|
+
};
|
|
100253
|
+
export declare type UpdateJiraPlaybookLabelPayload = Payload & {
|
|
100254
|
+
__typename?: 'UpdateJiraPlaybookLabelPayload';
|
|
100255
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100256
|
+
label?: Maybe<JiraPlaybookLabel>;
|
|
100257
|
+
success: Scalars['Boolean']['output'];
|
|
100258
|
+
};
|
|
99948
100259
|
export declare type UpdateJiraPlaybookPayload = Payload & {
|
|
99949
100260
|
__typename?: 'UpdateJiraPlaybookPayload';
|
|
99950
100261
|
errors?: Maybe<Array<MutationError>>;
|