@forge/cli-shared 8.0.1-next.6 → 8.1.0-experimental-cb85ac6
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 +507 -93
- 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",
|
|
@@ -19768,6 +19807,10 @@ export declare type DevAiWorkspace = {
|
|
|
19768
19807
|
status?: Maybe<Scalars['String']['output']>;
|
|
19769
19808
|
workspaceAri: Scalars['ID']['output'];
|
|
19770
19809
|
};
|
|
19810
|
+
export declare type DevConsoleBulkDeveloperSpaceDetailsResponse = {
|
|
19811
|
+
__typename?: 'DevConsoleBulkDeveloperSpaceDetailsResponse';
|
|
19812
|
+
results: Array<DevConsoleDeveloperSpaceDetailsResult>;
|
|
19813
|
+
};
|
|
19771
19814
|
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
19772
19815
|
name: Scalars['String']['input'];
|
|
19773
19816
|
};
|
|
@@ -19785,6 +19828,18 @@ export declare type DevConsoleDeveloperSpaceDetails = {
|
|
|
19785
19828
|
logo?: Maybe<Scalars['String']['output']>;
|
|
19786
19829
|
name: Scalars['String']['output'];
|
|
19787
19830
|
};
|
|
19831
|
+
export declare type DevConsoleDeveloperSpaceDetailsError = {
|
|
19832
|
+
__typename?: 'DevConsoleDeveloperSpaceDetailsError';
|
|
19833
|
+
code: Scalars['String']['output'];
|
|
19834
|
+
message: Scalars['String']['output'];
|
|
19835
|
+
};
|
|
19836
|
+
export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
19837
|
+
__typename?: 'DevConsoleDeveloperSpaceDetailsResult';
|
|
19838
|
+
details?: Maybe<DevConsoleDeveloperSpaceDetails>;
|
|
19839
|
+
developerSpaceId: Scalars['String']['output'];
|
|
19840
|
+
error?: Maybe<DevConsoleDeveloperSpaceDetailsError>;
|
|
19841
|
+
success: Scalars['Boolean']['output'];
|
|
19842
|
+
};
|
|
19788
19843
|
export declare enum DevConsoleDeveloperSpaceType {
|
|
19789
19844
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
19790
19845
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
@@ -19798,11 +19853,11 @@ export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
|
19798
19853
|
};
|
|
19799
19854
|
export declare type DevConsoleQuery = {
|
|
19800
19855
|
__typename?: 'DevConsoleQuery';
|
|
19801
|
-
getDeveloperSpaceDetails:
|
|
19856
|
+
getDeveloperSpaceDetails: DevConsoleBulkDeveloperSpaceDetailsResponse;
|
|
19802
19857
|
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
19803
19858
|
};
|
|
19804
19859
|
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
19805
|
-
|
|
19860
|
+
developerSpaceIds: Array<Scalars['String']['input']>;
|
|
19806
19861
|
};
|
|
19807
19862
|
export declare type DevOps = {
|
|
19808
19863
|
__typename?: 'DevOps';
|
|
@@ -47681,7 +47736,7 @@ export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge
|
|
|
47681
47736
|
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion>;
|
|
47682
47737
|
};
|
|
47683
47738
|
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47684
|
-
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentUnion =
|
|
47739
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentUnion = ConfluenceSpace;
|
|
47685
47740
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
47686
47741
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
47687
47742
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -50166,6 +50221,7 @@ export declare type HelpCenter = Node & {
|
|
|
50166
50221
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
50167
50222
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
50168
50223
|
name?: Maybe<HelpCenterName>;
|
|
50224
|
+
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
50169
50225
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
50170
50226
|
portals?: Maybe<HelpCenterPortals>;
|
|
50171
50227
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
@@ -50177,6 +50233,9 @@ export declare type HelpCenter = Node & {
|
|
|
50177
50233
|
virtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
50178
50234
|
virtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50179
50235
|
};
|
|
50236
|
+
export declare type HelpCenterPagesArgs = {
|
|
50237
|
+
filter?: InputMaybe<HelpCenterPagesFilter>;
|
|
50238
|
+
};
|
|
50180
50239
|
export declare type HelpCenterPortalsArgs = {
|
|
50181
50240
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
50182
50241
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
@@ -50534,6 +50593,9 @@ export declare type HelpCenterPageUpdatePayload = Payload & {
|
|
|
50534
50593
|
helpCenterPage?: Maybe<HelpCenterPage>;
|
|
50535
50594
|
success: Scalars['Boolean']['output'];
|
|
50536
50595
|
};
|
|
50596
|
+
export declare type HelpCenterPagesFilter = {
|
|
50597
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50598
|
+
};
|
|
50537
50599
|
export declare type HelpCenterPermissionSettings = {
|
|
50538
50600
|
__typename?: 'HelpCenterPermissionSettings';
|
|
50539
50601
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -51241,6 +51303,7 @@ export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
|
51241
51303
|
hideTitle?: Maybe<Scalars['Boolean']['output']>;
|
|
51242
51304
|
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
51243
51305
|
id: Scalars['ID']['output'];
|
|
51306
|
+
showCSMAISearchTrigger?: Maybe<Scalars['Boolean']['output']>;
|
|
51244
51307
|
useGlobalSettings?: Maybe<Scalars['Boolean']['output']>;
|
|
51245
51308
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
51246
51309
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
@@ -51608,6 +51671,10 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
51608
51671
|
id: Scalars['ID']['output'];
|
|
51609
51672
|
title?: Maybe<Scalars['String']['output']>;
|
|
51610
51673
|
};
|
|
51674
|
+
export declare enum HelpObjectStoreArticleContentType {
|
|
51675
|
+
Folder = "FOLDER",
|
|
51676
|
+
Page = "PAGE"
|
|
51677
|
+
}
|
|
51611
51678
|
export declare type HelpObjectStoreArticleMetadata = {
|
|
51612
51679
|
__typename?: 'HelpObjectStoreArticleMetadata';
|
|
51613
51680
|
isExternal: Scalars['Boolean']['output'];
|
|
@@ -51644,6 +51711,18 @@ export declare enum HelpObjectStoreArticleSourceSystem {
|
|
|
51644
51711
|
GoogleDrive = "GOOGLE_DRIVE",
|
|
51645
51712
|
Sharepoint = "SHAREPOINT"
|
|
51646
51713
|
}
|
|
51714
|
+
export declare type HelpObjectStoreArticleSpaceInfo = {
|
|
51715
|
+
__typename?: 'HelpObjectStoreArticleSpaceInfo';
|
|
51716
|
+
spaceId?: Maybe<Scalars['Long']['output']>;
|
|
51717
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
51718
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
51719
|
+
};
|
|
51720
|
+
export declare type HelpObjectStoreArticleUrlInfo = {
|
|
51721
|
+
__typename?: 'HelpObjectStoreArticleURLInfo';
|
|
51722
|
+
editUrl: Scalars['String']['output'];
|
|
51723
|
+
shareUrl: Scalars['String']['output'];
|
|
51724
|
+
viewUrl: Scalars['String']['output'];
|
|
51725
|
+
};
|
|
51647
51726
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
51648
51727
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
51649
51728
|
};
|
|
@@ -51880,6 +51959,35 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
51880
51959
|
entityId: Scalars['String']['output'];
|
|
51881
51960
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
51882
51961
|
};
|
|
51962
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
51963
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
51964
|
+
parentId?: InputMaybe<Scalars['Long']['input']>;
|
|
51965
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
51966
|
+
topLevelArticlesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51967
|
+
};
|
|
51968
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
|
|
51969
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
51970
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
51971
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
51972
|
+
contentType?: Maybe<HelpObjectStoreArticleContentType>;
|
|
51973
|
+
id: Scalars['ID']['output'];
|
|
51974
|
+
lastModified: Scalars['String']['output'];
|
|
51975
|
+
spaceInfo: HelpObjectStoreArticleSpaceInfo;
|
|
51976
|
+
title: Scalars['String']['output'];
|
|
51977
|
+
urlInfo: HelpObjectStoreArticleUrlInfo;
|
|
51978
|
+
viewCount?: Maybe<Scalars['Long']['output']>;
|
|
51979
|
+
};
|
|
51980
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
|
|
51981
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
|
|
51982
|
+
edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge>>;
|
|
51983
|
+
nodes?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResult>>;
|
|
51984
|
+
pageInfo: PageInfo;
|
|
51985
|
+
};
|
|
51986
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
|
|
51987
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
|
|
51988
|
+
cursor: Scalars['String']['output'];
|
|
51989
|
+
node: HelpObjectStoreSupportSiteArticleSearchResult;
|
|
51990
|
+
};
|
|
51883
51991
|
export declare type History = {
|
|
51884
51992
|
__typename?: 'History';
|
|
51885
51993
|
archivedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -54028,6 +54136,7 @@ export declare enum JiraBoardType {
|
|
|
54028
54136
|
}
|
|
54029
54137
|
export declare type JiraBoardView = {
|
|
54030
54138
|
__typename?: 'JiraBoardView';
|
|
54139
|
+
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
54031
54140
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
54032
54141
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
54033
54142
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
@@ -55897,6 +56006,27 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
55897
56006
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
55898
56007
|
success: Scalars['Boolean']['output'];
|
|
55899
56008
|
};
|
|
56009
|
+
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
56010
|
+
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
56011
|
+
expression: JiraFormattingRuleExpressionInput;
|
|
56012
|
+
formattingArea: JiraFormattingArea;
|
|
56013
|
+
formattingColor?: InputMaybe<JiraColorInput>;
|
|
56014
|
+
viewId: Scalars['ID']['input'];
|
|
56015
|
+
};
|
|
56016
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
56017
|
+
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
56018
|
+
createdRule?: Maybe<JiraFormattingRule>;
|
|
56019
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56020
|
+
success: Scalars['Boolean']['output'];
|
|
56021
|
+
};
|
|
56022
|
+
export declare type JiraCreateIssueTypeInput = {
|
|
56023
|
+
avatarId: Scalars['String']['input'];
|
|
56024
|
+
cloudId: Scalars['ID']['input'];
|
|
56025
|
+
description: Scalars['String']['input'];
|
|
56026
|
+
hierarchyLevel: Scalars['Int']['input'];
|
|
56027
|
+
name: Scalars['String']['input'];
|
|
56028
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
56029
|
+
};
|
|
55900
56030
|
export declare type JiraCreateJourneyConfigurationInput = {
|
|
55901
56031
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
55902
56032
|
name: Scalars['String']['input'];
|
|
@@ -56395,6 +56525,16 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
56395
56525
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
56396
56526
|
success: Scalars['Boolean']['output'];
|
|
56397
56527
|
};
|
|
56528
|
+
export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
56529
|
+
ruleId: Scalars['ID']['input'];
|
|
56530
|
+
viewId: Scalars['ID']['input'];
|
|
56531
|
+
};
|
|
56532
|
+
export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
56533
|
+
__typename?: 'JiraDeleteIssueSearchFormattingRulePayload';
|
|
56534
|
+
deletedRuleId?: Maybe<Scalars['ID']['output']>;
|
|
56535
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56536
|
+
success: Scalars['Boolean']['output'];
|
|
56537
|
+
};
|
|
56398
56538
|
export declare type JiraDeleteJourneyItemInput = {
|
|
56399
56539
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
56400
56540
|
itemId: Scalars['ID']['input'];
|
|
@@ -58248,6 +58388,7 @@ export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
|
58248
58388
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
58249
58389
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58250
58390
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
58391
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
58251
58392
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
58252
58393
|
};
|
|
58253
58394
|
export declare enum JiraGroupsContext {
|
|
@@ -58901,6 +59042,7 @@ export declare type JiraIssueEdge = {
|
|
|
58901
59042
|
cursor: Scalars['String']['output'];
|
|
58902
59043
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
58903
59044
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
59045
|
+
issueError?: Maybe<JiraIssueError>;
|
|
58904
59046
|
node?: Maybe<JiraIssue>;
|
|
58905
59047
|
};
|
|
58906
59048
|
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
@@ -58915,6 +59057,7 @@ export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
|
58915
59057
|
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
58916
59058
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
58917
59059
|
};
|
|
59060
|
+
export declare type JiraIssueError = JiraRemoteLinkedIssueError;
|
|
58918
59061
|
export declare type JiraIssueExpandedGroup = {
|
|
58919
59062
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
58920
59063
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -59424,6 +59567,26 @@ export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
|
59424
59567
|
linkType: Scalars['ID']['input'];
|
|
59425
59568
|
operation: JiraAddValueFieldOperations;
|
|
59426
59569
|
};
|
|
59570
|
+
export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
59571
|
+
__typename?: 'JiraIssueLinkRelationshipTypeField';
|
|
59572
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
59573
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
59574
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
59575
|
+
fieldId: Scalars['String']['output'];
|
|
59576
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
59577
|
+
id: Scalars['ID']['output'];
|
|
59578
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
59579
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
59580
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
59581
|
+
issue?: Maybe<JiraIssue>;
|
|
59582
|
+
issueLink?: Maybe<JiraIssueLink>;
|
|
59583
|
+
name: Scalars['String']['output'];
|
|
59584
|
+
type: Scalars['String']['output'];
|
|
59585
|
+
};
|
|
59586
|
+
export declare type JiraIssueLinkRelationshipTypeUpdateInput = {
|
|
59587
|
+
issueLinkId: Scalars['ID']['input'];
|
|
59588
|
+
issueLinkTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59589
|
+
};
|
|
59427
59590
|
export declare type JiraIssueLinkType = Node & {
|
|
59428
59591
|
__typename?: 'JiraIssueLinkType';
|
|
59429
59592
|
id: Scalars['ID']['output'];
|
|
@@ -59798,7 +59961,9 @@ export declare type JiraIssueSearchScope = {
|
|
|
59798
59961
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
59799
59962
|
};
|
|
59800
59963
|
export declare type JiraIssueSearchSettings = {
|
|
59964
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
59801
59965
|
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59966
|
+
hierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59802
59967
|
};
|
|
59803
59968
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
59804
59969
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61698,6 +61863,7 @@ export declare type JiraMutation = {
|
|
|
61698
61863
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
61699
61864
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
61700
61865
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
61866
|
+
updateIssueLinkRelationshipTypeField?: Maybe<JiraUpdateIssueLinkRelationshipTypeFieldPayload>;
|
|
61701
61867
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
61702
61868
|
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
61703
61869
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
@@ -62215,6 +62381,9 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
62215
62381
|
cloudId: Scalars['ID']['input'];
|
|
62216
62382
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
62217
62383
|
};
|
|
62384
|
+
export declare type JiraMutationUpdateIssueLinkRelationshipTypeFieldArgs = {
|
|
62385
|
+
input: JiraUpdateIssueLinkRelationshipTypeFieldInput;
|
|
62386
|
+
};
|
|
62218
62387
|
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
62219
62388
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
62220
62389
|
viewId: Scalars['ID']['input'];
|
|
@@ -63456,6 +63625,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
63456
63625
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
63457
63626
|
id: Scalars['ID']['output'];
|
|
63458
63627
|
jql?: Maybe<Scalars['String']['output']>;
|
|
63628
|
+
labels?: Maybe<Array<JiraPlaybookLabel>>;
|
|
63459
63629
|
name?: Maybe<Scalars['String']['output']>;
|
|
63460
63630
|
owner?: Maybe<User>;
|
|
63461
63631
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63485,6 +63655,7 @@ export declare type JiraPlaybookExecutionFilter = {
|
|
|
63485
63655
|
};
|
|
63486
63656
|
export declare type JiraPlaybookFilter = {
|
|
63487
63657
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
63658
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
63488
63659
|
};
|
|
63489
63660
|
export declare type JiraPlaybookInstance = Node & {
|
|
63490
63661
|
__typename?: 'JiraPlaybookInstance';
|
|
@@ -63530,6 +63701,49 @@ export declare enum JiraPlaybookIssueFilterType {
|
|
|
63530
63701
|
IssueTypes = "ISSUE_TYPES",
|
|
63531
63702
|
RequestTypes = "REQUEST_TYPES"
|
|
63532
63703
|
}
|
|
63704
|
+
export declare type JiraPlaybookLabel = Node & {
|
|
63705
|
+
__typename?: 'JiraPlaybookLabel';
|
|
63706
|
+
id: Scalars['ID']['output'];
|
|
63707
|
+
name: Scalars['String']['output'];
|
|
63708
|
+
property?: Maybe<JiraPlaybookLabelProperty>;
|
|
63709
|
+
scopeId?: Maybe<Scalars['String']['output']>;
|
|
63710
|
+
scopeType?: Maybe<JiraPlaybookScopeType>;
|
|
63711
|
+
};
|
|
63712
|
+
export declare type JiraPlaybookLabelAssignmentPayload = Payload & {
|
|
63713
|
+
__typename?: 'JiraPlaybookLabelAssignmentPayload';
|
|
63714
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63715
|
+
id: Scalars['ID']['output'];
|
|
63716
|
+
success: Scalars['Boolean']['output'];
|
|
63717
|
+
};
|
|
63718
|
+
export declare type JiraPlaybookLabelConnection = HasPageInfo & QueryPayload & {
|
|
63719
|
+
__typename?: 'JiraPlaybookLabelConnection';
|
|
63720
|
+
edges?: Maybe<Array<JiraPlaybookLabelEdge>>;
|
|
63721
|
+
errors?: Maybe<Array<QueryError>>;
|
|
63722
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookLabel>>>;
|
|
63723
|
+
pageInfo: PageInfo;
|
|
63724
|
+
success: Scalars['Boolean']['output'];
|
|
63725
|
+
};
|
|
63726
|
+
export declare type JiraPlaybookLabelEdge = {
|
|
63727
|
+
__typename?: 'JiraPlaybookLabelEdge';
|
|
63728
|
+
cursor: Scalars['String']['output'];
|
|
63729
|
+
node?: Maybe<JiraPlaybookLabel>;
|
|
63730
|
+
};
|
|
63731
|
+
export declare type JiraPlaybookLabelFilter = {
|
|
63732
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63733
|
+
};
|
|
63734
|
+
export declare type JiraPlaybookLabelProperty = {
|
|
63735
|
+
__typename?: 'JiraPlaybookLabelProperty';
|
|
63736
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
63737
|
+
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
63738
|
+
};
|
|
63739
|
+
export declare type JiraPlaybookLabelPropertyInput = {
|
|
63740
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
63741
|
+
editable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63742
|
+
};
|
|
63743
|
+
export declare type JiraPlaybookListFilter = {
|
|
63744
|
+
labels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63745
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63746
|
+
};
|
|
63533
63747
|
export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
63534
63748
|
__typename?: 'JiraPlaybookQueryPayload';
|
|
63535
63749
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -63543,6 +63757,7 @@ export declare enum JiraPlaybookScopeType {
|
|
|
63543
63757
|
}
|
|
63544
63758
|
export declare enum JiraPlaybookStateField {
|
|
63545
63759
|
Disabled = "DISABLED",
|
|
63760
|
+
Draft = "DRAFT",
|
|
63546
63761
|
Enabled = "ENABLED"
|
|
63547
63762
|
}
|
|
63548
63763
|
export declare type JiraPlaybookStep = {
|
|
@@ -63620,7 +63835,7 @@ export declare type JiraPlaybookStepUsage = Node & {
|
|
|
63620
63835
|
id: Scalars['ID']['output'];
|
|
63621
63836
|
maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63622
63837
|
minExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63623
|
-
|
|
63838
|
+
owner?: Maybe<User>;
|
|
63624
63839
|
playbookName?: Maybe<Scalars['String']['output']>;
|
|
63625
63840
|
stepName?: Maybe<Scalars['String']['output']>;
|
|
63626
63841
|
stepType?: Maybe<JiraPlaybookStepType>;
|
|
@@ -63764,6 +63979,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
63764
63979
|
};
|
|
63765
63980
|
export declare type JiraProject = Node & {
|
|
63766
63981
|
__typename?: 'JiraProject';
|
|
63982
|
+
accessLevel?: Maybe<JiraProjectAccessLevelType>;
|
|
63767
63983
|
action?: Maybe<JiraProjectAction>;
|
|
63768
63984
|
activeBackground?: Maybe<JiraBackground>;
|
|
63769
63985
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
@@ -64004,6 +64220,21 @@ export declare type JiraProjectVersionsV2Args = {
|
|
|
64004
64220
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
64005
64221
|
sortBy?: InputMaybe<JiraVersionSortInput>;
|
|
64006
64222
|
};
|
|
64223
|
+
export declare type JiraProjectAccessLevel = {
|
|
64224
|
+
__typename?: 'JiraProjectAccessLevel';
|
|
64225
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
64226
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
64227
|
+
everyoneRoleDescription?: Maybe<Scalars['String']['output']>;
|
|
64228
|
+
everyoneRoleName?: Maybe<Scalars['String']['output']>;
|
|
64229
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
64230
|
+
value: JiraProjectAccessLevelType;
|
|
64231
|
+
};
|
|
64232
|
+
export declare enum JiraProjectAccessLevelType {
|
|
64233
|
+
Free = "FREE",
|
|
64234
|
+
Limited = "LIMITED",
|
|
64235
|
+
Open = "OPEN",
|
|
64236
|
+
Private = "PRIVATE"
|
|
64237
|
+
}
|
|
64007
64238
|
export declare type JiraProjectAction = {
|
|
64008
64239
|
__typename?: 'JiraProjectAction';
|
|
64009
64240
|
canPerform: Scalars['Boolean']['output'];
|
|
@@ -64435,6 +64666,7 @@ export declare enum JiraProjectType {
|
|
|
64435
64666
|
}
|
|
64436
64667
|
export declare type JiraProjectTypeDetails = Node & {
|
|
64437
64668
|
__typename?: 'JiraProjectTypeDetails';
|
|
64669
|
+
availableAccessLevels: Array<JiraProjectAccessLevel>;
|
|
64438
64670
|
color: Scalars['String']['output'];
|
|
64439
64671
|
description: Scalars['String']['output'];
|
|
64440
64672
|
formattedKey: Scalars['String']['output'];
|
|
@@ -64985,6 +65217,7 @@ export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
|
64985
65217
|
cloudId: Scalars['ID']['input'];
|
|
64986
65218
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
64987
65219
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
65220
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
64988
65221
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
64989
65222
|
};
|
|
64990
65223
|
export declare type JiraQueryFieldSetsByIdArgs = {
|
|
@@ -66080,6 +66313,19 @@ export declare type JiraRemainingTimeEstimateFieldPayload = Payload & {
|
|
|
66080
66313
|
success: Scalars['Boolean']['output'];
|
|
66081
66314
|
};
|
|
66082
66315
|
export declare type JiraRemoteIssueLink = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
66316
|
+
export declare type JiraRemoteLinkedIssueError = {
|
|
66317
|
+
__typename?: 'JiraRemoteLinkedIssueError';
|
|
66318
|
+
errorType?: Maybe<JiraRemoteLinkedIssueErrorType>;
|
|
66319
|
+
repairLink?: Maybe<JiraRemoteLinkedIssueRepairLink>;
|
|
66320
|
+
};
|
|
66321
|
+
export declare enum JiraRemoteLinkedIssueErrorType {
|
|
66322
|
+
ApplinkMissing = "APPLINK_MISSING",
|
|
66323
|
+
ApplinkReqAuth = "APPLINK_REQ_AUTH"
|
|
66324
|
+
}
|
|
66325
|
+
export declare type JiraRemoteLinkedIssueRepairLink = {
|
|
66326
|
+
__typename?: 'JiraRemoteLinkedIssueRepairLink';
|
|
66327
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
66328
|
+
};
|
|
66083
66329
|
export declare type JiraRemoveActiveBackgroundInput = {
|
|
66084
66330
|
entityId: Scalars['ID']['input'];
|
|
66085
66331
|
};
|
|
@@ -68302,6 +68548,12 @@ export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
|
68302
68548
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
68303
68549
|
url?: Maybe<Scalars['String']['output']>;
|
|
68304
68550
|
};
|
|
68551
|
+
export declare type JiraShowUnscheduledIssuesCalendarMutationPayload = Payload & {
|
|
68552
|
+
__typename?: 'JiraShowUnscheduledIssuesCalendarMutationPayload';
|
|
68553
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68554
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
68555
|
+
success: Scalars['Boolean']['output'];
|
|
68556
|
+
};
|
|
68305
68557
|
export declare enum JiraSidebarMenuDisplayMode {
|
|
68306
68558
|
MostRecentOnly = "MOST_RECENT_ONLY",
|
|
68307
68559
|
Starred = "STARRED",
|
|
@@ -68676,6 +68928,7 @@ export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
|
68676
68928
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
68677
68929
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
68678
68930
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
68931
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
68679
68932
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
68680
68933
|
};
|
|
68681
68934
|
export declare type JiraSpreadsheetViewPayload = Payload & {
|
|
@@ -69646,6 +69899,33 @@ export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
|
69646
69899
|
id: Scalars['ID']['input'];
|
|
69647
69900
|
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
69648
69901
|
};
|
|
69902
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldInput = {
|
|
69903
|
+
id: Scalars['ID']['input'];
|
|
69904
|
+
operation: JiraUpdateIssueLinkRelationshipTypeFieldOperationInput;
|
|
69905
|
+
};
|
|
69906
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldOperationInput = {
|
|
69907
|
+
operation: JiraSingleValueFieldOperations;
|
|
69908
|
+
update: JiraIssueLinkRelationshipTypeUpdateInput;
|
|
69909
|
+
};
|
|
69910
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload & {
|
|
69911
|
+
__typename?: 'JiraUpdateIssueLinkRelationshipTypeFieldPayload';
|
|
69912
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69913
|
+
field?: Maybe<JiraIssueLinkRelationshipTypeField>;
|
|
69914
|
+
success: Scalars['Boolean']['output'];
|
|
69915
|
+
};
|
|
69916
|
+
export declare type JiraUpdateIssueSearchFormattingRuleInput = {
|
|
69917
|
+
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
69918
|
+
formatType?: InputMaybe<JiraFormattingArea>;
|
|
69919
|
+
formattingColor?: InputMaybe<JiraColorInput>;
|
|
69920
|
+
ruleId: Scalars['ID']['input'];
|
|
69921
|
+
viewId: Scalars['ID']['input'];
|
|
69922
|
+
};
|
|
69923
|
+
export declare type JiraUpdateIssueSearchFormattingRulePayload = {
|
|
69924
|
+
__typename?: 'JiraUpdateIssueSearchFormattingRulePayload';
|
|
69925
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69926
|
+
success: Scalars['Boolean']['output'];
|
|
69927
|
+
updatedRule?: Maybe<JiraFormattingRule>;
|
|
69928
|
+
};
|
|
69649
69929
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
69650
69930
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
69651
69931
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
@@ -69971,6 +70251,12 @@ export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
|
69971
70251
|
id: Scalars['ID']['input'];
|
|
69972
70252
|
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
69973
70253
|
};
|
|
70254
|
+
export declare type JiraUpsertIssueTypePayload = Payload & {
|
|
70255
|
+
__typename?: 'JiraUpsertIssueTypePayload';
|
|
70256
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70257
|
+
issueType?: Maybe<JiraIssueType>;
|
|
70258
|
+
success: Scalars['Boolean']['output'];
|
|
70259
|
+
};
|
|
69974
70260
|
export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
69975
70261
|
__typename?: 'JiraUrlField';
|
|
69976
70262
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -70136,6 +70422,7 @@ export declare type JiraUserPreferences = {
|
|
|
70136
70422
|
showRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
70137
70423
|
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
70138
70424
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
70425
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
70139
70426
|
};
|
|
70140
70427
|
export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplatesArgs = {
|
|
70141
70428
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77180,11 +77467,6 @@ export declare type MercuryFocusAreaType = {
|
|
|
77180
77467
|
id: Scalars['ID']['output'];
|
|
77181
77468
|
name: Scalars['String']['output'];
|
|
77182
77469
|
};
|
|
77183
|
-
export declare type MercuryForYouFocusAreaActivityHistory = {
|
|
77184
|
-
__typename?: 'MercuryForYouFocusAreaActivityHistory';
|
|
77185
|
-
activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
77186
|
-
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
77187
|
-
};
|
|
77188
77470
|
export declare type MercuryFundChangeSummary = {
|
|
77189
77471
|
__typename?: 'MercuryFundChangeSummary';
|
|
77190
77472
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -77396,6 +77678,7 @@ export declare type MercuryMutationApi = {
|
|
|
77396
77678
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
77397
77679
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
77398
77680
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
77681
|
+
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
77399
77682
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
77400
77683
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
77401
77684
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -77467,6 +77750,9 @@ export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
|
77467
77750
|
export declare type MercuryMutationApiLinkGoalsToFocusAreaArgs = {
|
|
77468
77751
|
input: MercuryLinkGoalsToFocusAreaInput;
|
|
77469
77752
|
};
|
|
77753
|
+
export declare type MercuryMutationApiPublishFocusAreaArgs = {
|
|
77754
|
+
input: MercuryPublishFocusAreaInput;
|
|
77755
|
+
};
|
|
77470
77756
|
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
77471
77757
|
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
77472
77758
|
};
|
|
@@ -77842,6 +78128,15 @@ export declare enum MercuryProviderWorkTargetDateType {
|
|
|
77842
78128
|
Month = "MONTH",
|
|
77843
78129
|
Quarter = "QUARTER"
|
|
77844
78130
|
}
|
|
78131
|
+
export declare type MercuryPublishFocusAreaInput = {
|
|
78132
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78133
|
+
id: Scalars['ID']['input'];
|
|
78134
|
+
};
|
|
78135
|
+
export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
78136
|
+
__typename?: 'MercuryPublishFocusAreaPayload';
|
|
78137
|
+
errors?: Maybe<Array<MutationError>>;
|
|
78138
|
+
success: Scalars['Boolean']['output'];
|
|
78139
|
+
};
|
|
77845
78140
|
export declare type MercuryQueryApi = {
|
|
77846
78141
|
__typename?: 'MercuryQueryApi';
|
|
77847
78142
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -77859,7 +78154,6 @@ export declare type MercuryQueryApi = {
|
|
|
77859
78154
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
77860
78155
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
77861
78156
|
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
77862
|
-
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
77863
78157
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
77864
78158
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
77865
78159
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -77943,14 +78237,6 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
|
77943
78237
|
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
77944
78238
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
77945
78239
|
};
|
|
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
78240
|
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
77955
78241
|
cloudId: Scalars['ID']['input'];
|
|
77956
78242
|
};
|
|
@@ -78938,6 +79224,7 @@ export declare type Mutation = {
|
|
|
78938
79224
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
78939
79225
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
78940
79226
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
79227
|
+
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
78941
79228
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
78942
79229
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
78943
79230
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
@@ -79185,9 +79472,12 @@ export declare type Mutation = {
|
|
|
79185
79472
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
79186
79473
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
79187
79474
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79475
|
+
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
79476
|
+
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
79188
79477
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
79189
79478
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
79190
79479
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
79480
|
+
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
79191
79481
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
79192
79482
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
79193
79483
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -79215,11 +79505,13 @@ export declare type Mutation = {
|
|
|
79215
79505
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
79216
79506
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
79217
79507
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
79508
|
+
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
79218
79509
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
79219
79510
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
79220
79511
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
79221
79512
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
79222
79513
|
jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
|
|
79514
|
+
jira_updateIssueSearchFormattingRule?: Maybe<JiraUpdateIssueSearchFormattingRulePayload>;
|
|
79223
79515
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
79224
79516
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
79225
79517
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -79253,9 +79545,12 @@ export declare type Mutation = {
|
|
|
79253
79545
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
79254
79546
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
79255
79547
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
79548
|
+
playbook_assignJiraPlaybookLabelToJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79256
79549
|
playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
|
|
79550
|
+
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
79257
79551
|
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
79258
79552
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
79553
|
+
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79259
79554
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
79260
79555
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
79261
79556
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -79414,7 +79709,6 @@ export declare type Mutation = {
|
|
|
79414
79709
|
updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
|
|
79415
79710
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
79416
79711
|
updatePolarisViewArrangementInfo?: Maybe<UpdatePolarisViewArrangementInfoPayload>;
|
|
79417
|
-
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
79418
79712
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
79419
79713
|
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
79420
79714
|
updatePushNotificationCustomSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
@@ -79479,6 +79773,9 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
|
79479
79773
|
cloudId: Scalars['String']['input'];
|
|
79480
79774
|
input: AgentStudioCreateScenarioInput;
|
|
79481
79775
|
};
|
|
79776
|
+
export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
79777
|
+
id: Scalars['ID']['input'];
|
|
79778
|
+
};
|
|
79482
79779
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
79483
79780
|
id: Scalars['ID']['input'];
|
|
79484
79781
|
};
|
|
@@ -80301,6 +80598,12 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
80301
80598
|
cloudId: Scalars['ID']['input'];
|
|
80302
80599
|
input: JiraCreateGlobalCustomFieldInput;
|
|
80303
80600
|
};
|
|
80601
|
+
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
80602
|
+
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
80603
|
+
};
|
|
80604
|
+
export declare type MutationJira_CreateIssueTypeArgs = {
|
|
80605
|
+
input: JiraCreateIssueTypeInput;
|
|
80606
|
+
};
|
|
80304
80607
|
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80305
80608
|
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80306
80609
|
};
|
|
@@ -80311,6 +80614,9 @@ export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
|
80311
80614
|
cloudId: Scalars['ID']['input'];
|
|
80312
80615
|
input: JiraDeleteFieldSchemeInput;
|
|
80313
80616
|
};
|
|
80617
|
+
export declare type MutationJira_DeleteIssueSearchFormattingRuleArgs = {
|
|
80618
|
+
input: JiraDeleteIssueSearchFormattingRuleInput;
|
|
80619
|
+
};
|
|
80314
80620
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
80315
80621
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
80316
80622
|
};
|
|
@@ -80395,6 +80701,10 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
|
80395
80701
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
80396
80702
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
80397
80703
|
};
|
|
80704
|
+
export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
80705
|
+
cloudId: Scalars['ID']['input'];
|
|
80706
|
+
show: Scalars['Boolean']['input'];
|
|
80707
|
+
};
|
|
80398
80708
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
80399
80709
|
input: JiraSetViewFilterInput;
|
|
80400
80710
|
};
|
|
@@ -80413,6 +80723,9 @@ export declare type MutationJira_UpdateGlobalCustomFieldArgs = {
|
|
|
80413
80723
|
cloudId: Scalars['ID']['input'];
|
|
80414
80724
|
input: JiraUpdateGlobalCustomFieldInput;
|
|
80415
80725
|
};
|
|
80726
|
+
export declare type MutationJira_UpdateIssueSearchFormattingRuleArgs = {
|
|
80727
|
+
input: JiraUpdateIssueSearchFormattingRuleInput;
|
|
80728
|
+
};
|
|
80416
80729
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
80417
80730
|
input: JiraUpdateBackgroundInput;
|
|
80418
80731
|
};
|
|
@@ -80488,15 +80801,26 @@ export declare type MutationPlanModeCardCreateArgs = {
|
|
|
80488
80801
|
export declare type MutationPlanModeCardMoveArgs = {
|
|
80489
80802
|
input?: InputMaybe<PlanModeCardMoveInput>;
|
|
80490
80803
|
};
|
|
80804
|
+
export declare type MutationPlaybook_AssignJiraPlaybookLabelToJiraPlaybookArgs = {
|
|
80805
|
+
labelId: Scalars['ID']['input'];
|
|
80806
|
+
playbookId: Scalars['ID']['input'];
|
|
80807
|
+
};
|
|
80491
80808
|
export declare type MutationPlaybook_CreateJiraPlaybookArgs = {
|
|
80492
80809
|
input: CreateJiraPlaybookInput;
|
|
80493
80810
|
};
|
|
80811
|
+
export declare type MutationPlaybook_CreateJiraPlaybookLabelArgs = {
|
|
80812
|
+
input: CreateJiraPlaybookLabelInput;
|
|
80813
|
+
};
|
|
80494
80814
|
export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
|
|
80495
80815
|
input: CreateJiraPlaybookStepRunInput;
|
|
80496
80816
|
};
|
|
80497
80817
|
export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
|
|
80498
80818
|
input: DeleteJiraPlaybookInput;
|
|
80499
80819
|
};
|
|
80820
|
+
export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
|
|
80821
|
+
labelId: Scalars['ID']['input'];
|
|
80822
|
+
playbookId: Scalars['ID']['input'];
|
|
80823
|
+
};
|
|
80500
80824
|
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
80501
80825
|
input: UpdateJiraPlaybookInput;
|
|
80502
80826
|
};
|
|
@@ -80988,10 +81312,6 @@ export declare type MutationUpdatePolarisViewArrangementInfoArgs = {
|
|
|
80988
81312
|
id: Scalars['ID']['input'];
|
|
80989
81313
|
input?: InputMaybe<Scalars['JSON']['input']>;
|
|
80990
81314
|
};
|
|
80991
|
-
export declare type MutationUpdatePolarisViewLastViewedTimestampArgs = {
|
|
80992
|
-
timestampInput?: InputMaybe<Scalars['String']['input']>;
|
|
80993
|
-
viewId: Scalars['ID']['input'];
|
|
80994
|
-
};
|
|
80995
81315
|
export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
80996
81316
|
id: Scalars['ID']['input'];
|
|
80997
81317
|
input: UpdatePolarisViewRankInput;
|
|
@@ -83870,6 +84190,7 @@ export declare type Query = {
|
|
|
83870
84190
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
83871
84191
|
appContainer?: Maybe<AppContainer>;
|
|
83872
84192
|
appContainerRegistryLogin?: Maybe<AppContainerRegistryLogin>;
|
|
84193
|
+
appContainerServices?: Maybe<AppContainerServices>;
|
|
83873
84194
|
appContainers?: Maybe<Array<AppContainer>>;
|
|
83874
84195
|
appContributors: Array<AppContributor>;
|
|
83875
84196
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -84012,6 +84333,7 @@ export declare type Query = {
|
|
|
84012
84333
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
84013
84334
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84014
84335
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
84336
|
+
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
84015
84337
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
84016
84338
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
84017
84339
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
@@ -84063,6 +84385,7 @@ export declare type Query = {
|
|
|
84063
84385
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
84064
84386
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
84065
84387
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84388
|
+
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84066
84389
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
84067
84390
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
84068
84391
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -84135,6 +84458,7 @@ export declare type Query = {
|
|
|
84135
84458
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
84136
84459
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
84137
84460
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
84461
|
+
helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
|
|
84138
84462
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
84139
84463
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
84140
84464
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
@@ -84177,6 +84501,7 @@ export declare type Query = {
|
|
|
84177
84501
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84178
84502
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
84179
84503
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
84504
|
+
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
84180
84505
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
84181
84506
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
84182
84507
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -84261,6 +84586,7 @@ export declare type Query = {
|
|
|
84261
84586
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
84262
84587
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
84263
84588
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
84589
|
+
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
84264
84590
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
84265
84591
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
84266
84592
|
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
@@ -84289,6 +84615,10 @@ export declare type Query = {
|
|
|
84289
84615
|
productListings: Array<ProductListingResult>;
|
|
84290
84616
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
84291
84617
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84618
|
+
projects_byId?: Maybe<TownsquareProject>;
|
|
84619
|
+
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84620
|
+
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
84621
|
+
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
84292
84622
|
ptpage?: Maybe<PtPage>;
|
|
84293
84623
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
84294
84624
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -84529,6 +84859,11 @@ export declare type QueryAppContainerArgs = {
|
|
|
84529
84859
|
export declare type QueryAppContainerRegistryLoginArgs = {
|
|
84530
84860
|
appId: Scalars['ID']['input'];
|
|
84531
84861
|
};
|
|
84862
|
+
export declare type QueryAppContainerServicesArgs = {
|
|
84863
|
+
appId: Scalars['ID']['input'];
|
|
84864
|
+
environmentKey: Scalars['String']['input'];
|
|
84865
|
+
serviceNames: Array<Scalars['String']['input']>;
|
|
84866
|
+
};
|
|
84532
84867
|
export declare type QueryAppContainersArgs = {
|
|
84533
84868
|
appId: Scalars['ID']['input'];
|
|
84534
84869
|
};
|
|
@@ -85207,6 +85542,17 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
85207
85542
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85208
85543
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
85209
85544
|
};
|
|
85545
|
+
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
85546
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85547
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
85548
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85549
|
+
id: Scalars['ID']['input'];
|
|
85550
|
+
l2ScoreThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
85551
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
85552
|
+
searchSourcesInput?: InputMaybe<ConvoAiJiraSearchSourcesInput>;
|
|
85553
|
+
xpsearchL1?: InputMaybe<Scalars['String']['input']>;
|
|
85554
|
+
xpsearchL2?: InputMaybe<Scalars['String']['input']>;
|
|
85555
|
+
};
|
|
85210
85556
|
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
85211
85557
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85212
85558
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -85435,6 +85781,11 @@ export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
|
85435
85781
|
creator: Scalars['String']['input'];
|
|
85436
85782
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85437
85783
|
};
|
|
85784
|
+
export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
85785
|
+
cloudId: Scalars['ID']['input'];
|
|
85786
|
+
issueKey: Scalars['String']['input'];
|
|
85787
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85788
|
+
};
|
|
85438
85789
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
85439
85790
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85440
85791
|
cloudId: Scalars['ID']['input'];
|
|
@@ -85679,6 +86030,13 @@ export declare type QueryHelpObjectStore_SearchArticlesArgs = {
|
|
|
85679
86030
|
queryTerm?: InputMaybe<Scalars['String']['input']>;
|
|
85680
86031
|
skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85681
86032
|
};
|
|
86033
|
+
export declare type QueryHelpObjectStore_SearchArticlesForSupportSiteArgs = {
|
|
86034
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86035
|
+
cloudId: Scalars['String']['input'];
|
|
86036
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86037
|
+
helpCenterAri: Scalars['String']['input'];
|
|
86038
|
+
input?: InputMaybe<HelpObjectStoreSupportSiteArticleSearchInput>;
|
|
86039
|
+
};
|
|
85682
86040
|
export declare type QueryHelpObjectStore_SearchPortalsArgs = {
|
|
85683
86041
|
cloudId: Scalars['ID']['input'];
|
|
85684
86042
|
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -85803,6 +86161,9 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
85803
86161
|
cloudId: Scalars['ID']['input'];
|
|
85804
86162
|
idOrKey: Scalars['String']['input'];
|
|
85805
86163
|
};
|
|
86164
|
+
export declare type QueryJira_ProjectTypesByIdsArgs = {
|
|
86165
|
+
ids: Array<Scalars['ID']['input']>;
|
|
86166
|
+
};
|
|
85806
86167
|
export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
85807
86168
|
cloudId: Scalars['ID']['input'];
|
|
85808
86169
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -86048,6 +86409,13 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
|
86048
86409
|
issueId: Scalars['String']['input'];
|
|
86049
86410
|
projectKey: Scalars['String']['input'];
|
|
86050
86411
|
};
|
|
86412
|
+
export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
86413
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86414
|
+
cloudId: Scalars['ID']['input'];
|
|
86415
|
+
filters?: InputMaybe<JiraPlaybookLabelFilter>;
|
|
86416
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86417
|
+
projectKey: Scalars['String']['input'];
|
|
86418
|
+
};
|
|
86051
86419
|
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
86052
86420
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86053
86421
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -86072,6 +86440,7 @@ export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
|
86072
86440
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86073
86441
|
cloudId: Scalars['ID']['input'];
|
|
86074
86442
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
86443
|
+
filters?: InputMaybe<JiraPlaybookListFilter>;
|
|
86075
86444
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86076
86445
|
projectKey: Scalars['String']['input'];
|
|
86077
86446
|
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
@@ -86149,6 +86518,22 @@ export declare type QueryProjects_ByAriArgs = {
|
|
|
86149
86518
|
export declare type QueryProjects_ByArisArgs = {
|
|
86150
86519
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
86151
86520
|
};
|
|
86521
|
+
export declare type QueryProjects_ByIdArgs = {
|
|
86522
|
+
projectId: Scalars['String']['input'];
|
|
86523
|
+
};
|
|
86524
|
+
export declare type QueryProjects_ByIdsArgs = {
|
|
86525
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
86526
|
+
};
|
|
86527
|
+
export declare type QueryProjects_SearchArgs = {
|
|
86528
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86529
|
+
containerId: Scalars['String']['input'];
|
|
86530
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86531
|
+
searchString: Scalars['String']['input'];
|
|
86532
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
86533
|
+
};
|
|
86534
|
+
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
86535
|
+
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
86536
|
+
};
|
|
86152
86537
|
export declare type QueryPtpageArgs = {
|
|
86153
86538
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86154
86539
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -89151,6 +89536,7 @@ export declare type SearchJiraFilter = {
|
|
|
89151
89536
|
export declare type SearchJiraIssueFilter = {
|
|
89152
89537
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89153
89538
|
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89539
|
+
issueLabels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89154
89540
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89155
89541
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89156
89542
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -89502,6 +89888,17 @@ export declare type SearchResultJiraIssueStatusCategory = {
|
|
|
89502
89888
|
key: Scalars['String']['output'];
|
|
89503
89889
|
name: Scalars['String']['output'];
|
|
89504
89890
|
};
|
|
89891
|
+
export declare type SearchResultJiraPlan = SearchResult & {
|
|
89892
|
+
__typename?: 'SearchResultJiraPlan';
|
|
89893
|
+
description: Scalars['String']['output'];
|
|
89894
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
89895
|
+
id: Scalars['ID']['output'];
|
|
89896
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
89897
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
89898
|
+
title: Scalars['String']['output'];
|
|
89899
|
+
type: SearchResultType;
|
|
89900
|
+
url: Scalars['URL']['output'];
|
|
89901
|
+
};
|
|
89505
89902
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
89506
89903
|
__typename?: 'SearchResultJiraProject';
|
|
89507
89904
|
canView: Scalars['Boolean']['output'];
|
|
@@ -90626,7 +91023,6 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
90626
91023
|
callbackURL: Scalars['URL']['input'];
|
|
90627
91024
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
90628
91025
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
90629
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
90630
91026
|
};
|
|
90631
91027
|
export declare type ShepherdCurrentUser = {
|
|
90632
91028
|
__typename?: 'ShepherdCurrentUser';
|
|
@@ -90637,7 +91033,7 @@ export declare type ShepherdCustomContentScanningDetection = {
|
|
|
90637
91033
|
__typename?: 'ShepherdCustomContentScanningDetection';
|
|
90638
91034
|
rules: Array<Maybe<ShepherdCustomScanningRule>>;
|
|
90639
91035
|
};
|
|
90640
|
-
export declare type ShepherdCustomDetection = {
|
|
91036
|
+
export declare type ShepherdCustomDetection = Node & {
|
|
90641
91037
|
__typename?: 'ShepherdCustomDetection';
|
|
90642
91038
|
description?: Maybe<Scalars['String']['output']>;
|
|
90643
91039
|
id: Scalars['ID']['output'];
|
|
@@ -90694,7 +91090,7 @@ export declare type ShepherdDescriptionTemplate = {
|
|
|
90694
91090
|
text?: Maybe<Scalars['JSON']['output']>;
|
|
90695
91091
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
90696
91092
|
};
|
|
90697
|
-
export declare type ShepherdDetection = {
|
|
91093
|
+
export declare type ShepherdDetection = Node & {
|
|
90698
91094
|
__typename?: 'ShepherdDetection';
|
|
90699
91095
|
businessTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
90700
91096
|
category: ShepherdAlertDetectionCategory;
|
|
@@ -90753,7 +91149,7 @@ export declare type ShepherdDetectionScanningInfo = {
|
|
|
90753
91149
|
__typename?: 'ShepherdDetectionScanningInfo';
|
|
90754
91150
|
scanningFrequency: ShepherdDetectionScanningFrequency;
|
|
90755
91151
|
};
|
|
90756
|
-
export declare type ShepherdDetectionSetting = {
|
|
91152
|
+
export declare type ShepherdDetectionSetting = Node & {
|
|
90757
91153
|
__typename?: 'ShepherdDetectionSetting';
|
|
90758
91154
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
90759
91155
|
id: Scalars['ID']['output'];
|
|
@@ -91296,11 +91692,27 @@ export declare type ShepherdSuspiciousSearchTerm = {
|
|
|
91296
91692
|
export declare type ShepherdTeamworkGraphQueries = {
|
|
91297
91693
|
__typename?: 'ShepherdTeamworkGraphQueries';
|
|
91298
91694
|
alerts?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
91695
|
+
customDetections?: Maybe<Array<Maybe<ShepherdCustomDetection>>>;
|
|
91696
|
+
detectionSettings?: Maybe<Array<Maybe<ShepherdDetectionSetting>>>;
|
|
91697
|
+
detections?: Maybe<Array<Maybe<ShepherdDetection>>>;
|
|
91698
|
+
subscriptions?: Maybe<Array<Maybe<ShepherdSubscription>>>;
|
|
91299
91699
|
workspaces?: Maybe<Array<Maybe<ShepherdWorkspace>>>;
|
|
91300
91700
|
};
|
|
91301
91701
|
export declare type ShepherdTeamworkGraphQueriesAlertsArgs = {
|
|
91302
91702
|
ids: Array<Scalars['ID']['input']>;
|
|
91303
91703
|
};
|
|
91704
|
+
export declare type ShepherdTeamworkGraphQueriesCustomDetectionsArgs = {
|
|
91705
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91706
|
+
};
|
|
91707
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionSettingsArgs = {
|
|
91708
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91709
|
+
};
|
|
91710
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionsArgs = {
|
|
91711
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91712
|
+
};
|
|
91713
|
+
export declare type ShepherdTeamworkGraphQueriesSubscriptionsArgs = {
|
|
91714
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91715
|
+
};
|
|
91304
91716
|
export declare type ShepherdTeamworkGraphQueriesWorkspacesArgs = {
|
|
91305
91717
|
ids: Array<Scalars['ID']['input']>;
|
|
91306
91718
|
};
|
|
@@ -91347,7 +91759,6 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
91347
91759
|
callbackURL?: InputMaybe<Scalars['URL']['input']>;
|
|
91348
91760
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
91349
91761
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
91350
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
91351
91762
|
};
|
|
91352
91763
|
export declare type ShepherdUser = {
|
|
91353
91764
|
__typename?: 'ShepherdUser';
|
|
@@ -91377,15 +91788,9 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
91377
91788
|
destinationType: ShepherdWebhookDestinationType;
|
|
91378
91789
|
id: Scalars['ID']['output'];
|
|
91379
91790
|
status: ShepherdSubscriptionStatus;
|
|
91380
|
-
type?: Maybe<ShepherdWebhookType>;
|
|
91381
91791
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
91382
91792
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
91383
91793
|
};
|
|
91384
|
-
export declare enum ShepherdWebhookType {
|
|
91385
|
-
Custom = "CUSTOM",
|
|
91386
|
-
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
91387
|
-
Slack = "SLACK"
|
|
91388
|
-
}
|
|
91389
91794
|
export declare type ShepherdWorkspace = Node & {
|
|
91390
91795
|
__typename?: 'ShepherdWorkspace';
|
|
91391
91796
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
@@ -93651,6 +94056,7 @@ export declare type SupportRequestTransitionInput = {
|
|
|
93651
94056
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
93652
94057
|
requestKey: Scalars['String']['input'];
|
|
93653
94058
|
transitionId: Scalars['ID']['input'];
|
|
94059
|
+
transitionName?: InputMaybe<Scalars['String']['input']>;
|
|
93654
94060
|
};
|
|
93655
94061
|
export declare type SupportRequestTransitions = {
|
|
93656
94062
|
__typename?: 'SupportRequestTransitions';
|
|
@@ -99945,6 +100351,19 @@ export declare type UpdateJiraPlaybookInput = {
|
|
|
99945
100351
|
state?: InputMaybe<JiraPlaybookStateField>;
|
|
99946
100352
|
steps: Array<UpdateJiraPlaybookStepInput>;
|
|
99947
100353
|
};
|
|
100354
|
+
export declare type UpdateJiraPlaybookLabelInput = {
|
|
100355
|
+
id: Scalars['ID']['input'];
|
|
100356
|
+
name: Scalars['String']['input'];
|
|
100357
|
+
property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
|
|
100358
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
100359
|
+
scopeType: JiraPlaybookScopeType;
|
|
100360
|
+
};
|
|
100361
|
+
export declare type UpdateJiraPlaybookLabelPayload = Payload & {
|
|
100362
|
+
__typename?: 'UpdateJiraPlaybookLabelPayload';
|
|
100363
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100364
|
+
label?: Maybe<JiraPlaybookLabel>;
|
|
100365
|
+
success: Scalars['Boolean']['output'];
|
|
100366
|
+
};
|
|
99948
100367
|
export declare type UpdateJiraPlaybookPayload = Payload & {
|
|
99949
100368
|
__typename?: 'UpdateJiraPlaybookPayload';
|
|
99950
100369
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -100200,11 +100619,6 @@ export declare type UpdatePolarisViewSetPayload = Payload & {
|
|
|
100200
100619
|
node?: Maybe<PolarisViewSet>;
|
|
100201
100620
|
success: Scalars['Boolean']['output'];
|
|
100202
100621
|
};
|
|
100203
|
-
export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
100204
|
-
__typename?: 'UpdatePolarisViewTimestampPayload';
|
|
100205
|
-
errors?: Maybe<Array<MutationError>>;
|
|
100206
|
-
success: Scalars['Boolean']['output'];
|
|
100207
|
-
};
|
|
100208
100622
|
export declare type UpdatePolarisWhiteboardConfig = {
|
|
100209
100623
|
id: Scalars['ID']['input'];
|
|
100210
100624
|
};
|