@forge/cli-shared 8.0.1-next.5 → 8.1.0-experimental-b2e5f99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +70 -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 +854 -358
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +55 -54
- 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
|
@@ -325,6 +325,14 @@ export declare enum AvpDashboardStatus {
|
|
|
325
325
|
Archived = "ARCHIVED",
|
|
326
326
|
Trashed = "TRASHED"
|
|
327
327
|
}
|
|
328
|
+
export declare type AvpDatasourceLocator = {
|
|
329
|
+
__typename?: 'AVPDatasourceLocator';
|
|
330
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
331
|
+
datasourceAri?: Maybe<Scalars['String']['output']>;
|
|
332
|
+
datasourceId?: Maybe<Scalars['String']['output']>;
|
|
333
|
+
dstype?: Maybe<Scalars['String']['output']>;
|
|
334
|
+
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
335
|
+
};
|
|
328
336
|
export declare type AvpDeleteChartInput = {
|
|
329
337
|
chartAri: Scalars['ID']['input'];
|
|
330
338
|
};
|
|
@@ -339,7 +347,7 @@ export declare type AvpEnvVar = {
|
|
|
339
347
|
chartId?: Maybe<Scalars['ID']['output']>;
|
|
340
348
|
dataType?: Maybe<AvpEnvVarDataType>;
|
|
341
349
|
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
342
|
-
hotTierFilterConfig?: Maybe<Array<Maybe<
|
|
350
|
+
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
343
351
|
id?: Maybe<Scalars['ID']['output']>;
|
|
344
352
|
name?: Maybe<Scalars['String']['output']>;
|
|
345
353
|
operator?: Maybe<Scalars['String']['output']>;
|
|
@@ -353,6 +361,13 @@ export declare enum AvpEnvVarDataType {
|
|
|
353
361
|
NumberRange = "NUMBER_RANGE",
|
|
354
362
|
Text = "TEXT"
|
|
355
363
|
}
|
|
364
|
+
export declare type AvpHotTierFilterConfig = {
|
|
365
|
+
__typename?: 'AVPHotTierFilterConfig';
|
|
366
|
+
datasourceLocator?: Maybe<AvpDatasourceLocator>;
|
|
367
|
+
dimension?: Maybe<Scalars['String']['output']>;
|
|
368
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
369
|
+
semanticModel?: Maybe<Scalars['String']['output']>;
|
|
370
|
+
};
|
|
356
371
|
export declare type AvpMoveCanvasElementInput = {
|
|
357
372
|
dashboardAri: Scalars['ID']['input'];
|
|
358
373
|
sourceElementId: Scalars['ID']['input'];
|
|
@@ -1293,6 +1308,12 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
1293
1308
|
scenario?: Maybe<AgentStudioScenario>;
|
|
1294
1309
|
success: Scalars['Boolean']['output'];
|
|
1295
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
|
+
};
|
|
1296
1317
|
export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
1297
1318
|
__typename?: 'AgentStudioDeleteScenarioPayload';
|
|
1298
1319
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -1785,12 +1806,42 @@ export declare type AppContainerInput = {
|
|
|
1785
1806
|
appId: Scalars['ID']['input'];
|
|
1786
1807
|
containerKey: Scalars['String']['input'];
|
|
1787
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
|
+
};
|
|
1788
1822
|
export declare type AppContainerRegistryLogin = {
|
|
1789
1823
|
__typename?: 'AppContainerRegistryLogin';
|
|
1790
1824
|
endpoint: Scalars['String']['output'];
|
|
1791
1825
|
password: Scalars['String']['output'];
|
|
1792
1826
|
username: Scalars['String']['output'];
|
|
1793
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
|
+
};
|
|
1794
1845
|
export declare type AppContributor = {
|
|
1795
1846
|
__typename?: 'AppContributor';
|
|
1796
1847
|
accountId: Scalars['String']['output'];
|
|
@@ -3069,6 +3120,119 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
3069
3120
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
3070
3121
|
title: Scalars['String']['output'];
|
|
3071
3122
|
};
|
|
3123
|
+
export declare type AssetsDmAdapter = {
|
|
3124
|
+
__typename?: 'AssetsDMAdapter';
|
|
3125
|
+
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
3126
|
+
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
3127
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
3128
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
3129
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3130
|
+
vendor?: Maybe<Scalars['String']['output']>;
|
|
3131
|
+
};
|
|
3132
|
+
export declare type AssetsDmAdapters = {
|
|
3133
|
+
__typename?: 'AssetsDMAdapters';
|
|
3134
|
+
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3135
|
+
product?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3136
|
+
};
|
|
3137
|
+
export declare type AssetsDmAutoColumnMappingInput = {
|
|
3138
|
+
delimiter?: InputMaybe<Scalars['String']['input']>;
|
|
3139
|
+
header?: InputMaybe<Scalars['String']['input']>;
|
|
3140
|
+
};
|
|
3141
|
+
export declare type AssetsDmAutoColumnMappingResponse = {
|
|
3142
|
+
__typename?: 'AssetsDMAutoColumnMappingResponse';
|
|
3143
|
+
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
3144
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3145
|
+
returnValue?: Maybe<Array<Maybe<AssetsDmMappedColumn>>>;
|
|
3146
|
+
};
|
|
3147
|
+
export declare type AssetsDmDataSource = {
|
|
3148
|
+
__typename?: 'AssetsDMDataSource';
|
|
3149
|
+
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
3150
|
+
dataSourceName?: Maybe<Scalars['String']['output']>;
|
|
3151
|
+
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
3152
|
+
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
3153
|
+
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
3154
|
+
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
3155
|
+
statusText?: Maybe<Scalars['String']['output']>;
|
|
3156
|
+
};
|
|
3157
|
+
export declare type AssetsDmDataSourceFormFields = {
|
|
3158
|
+
__typename?: 'AssetsDMDataSourceFormFields';
|
|
3159
|
+
dataSourceTypes: AssetsDmDataSourceTypesConnection;
|
|
3160
|
+
dateFormats: Array<AssetsDmDateFormats>;
|
|
3161
|
+
};
|
|
3162
|
+
export declare type AssetsDmDataSourceFormFieldsDataSourceTypesArgs = {
|
|
3163
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3164
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3165
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
3166
|
+
};
|
|
3167
|
+
export declare type AssetsDmDataSourceInput = {
|
|
3168
|
+
adapterType: Scalars['String']['input'];
|
|
3169
|
+
configuration: Scalars['JSON']['input'];
|
|
3170
|
+
objectClassType: AssetsDmObjectClassEnum;
|
|
3171
|
+
};
|
|
3172
|
+
export declare type AssetsDmDataSourceResponse = {
|
|
3173
|
+
__typename?: 'AssetsDMDataSourceResponse';
|
|
3174
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3175
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3176
|
+
success: Scalars['Boolean']['output'];
|
|
3177
|
+
};
|
|
3178
|
+
export declare type AssetsDmDataSourceTypes = {
|
|
3179
|
+
__typename?: 'AssetsDMDataSourceTypes';
|
|
3180
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
3181
|
+
defaultGap: Scalars['Int']['output'];
|
|
3182
|
+
name: Scalars['String']['output'];
|
|
3183
|
+
tenantId: Scalars['String']['output'];
|
|
3184
|
+
};
|
|
3185
|
+
export declare type AssetsDmDataSourceTypesConnection = {
|
|
3186
|
+
__typename?: 'AssetsDMDataSourceTypesConnection';
|
|
3187
|
+
nodes: Array<AssetsDmDataSourceTypes>;
|
|
3188
|
+
pageInfo: PageInfo;
|
|
3189
|
+
totalCount: Scalars['Int']['output'];
|
|
3190
|
+
};
|
|
3191
|
+
export declare type AssetsDmDateFormats = {
|
|
3192
|
+
__typename?: 'AssetsDMDateFormats';
|
|
3193
|
+
createdBy: Scalars['String']['output'];
|
|
3194
|
+
dateFormatId: Scalars['ID']['output'];
|
|
3195
|
+
format: Scalars['String']['output'];
|
|
3196
|
+
name: Scalars['String']['output'];
|
|
3197
|
+
tenantId: Scalars['String']['output'];
|
|
3198
|
+
};
|
|
3199
|
+
export declare type AssetsDmGenerateAdapterTokenInput = {
|
|
3200
|
+
adapterType: Scalars['String']['input'];
|
|
3201
|
+
password: Scalars['String']['input'];
|
|
3202
|
+
username: Scalars['String']['input'];
|
|
3203
|
+
};
|
|
3204
|
+
export declare type AssetsDmGenerateAdapterTokenResponse = {
|
|
3205
|
+
__typename?: 'AssetsDMGenerateAdapterTokenResponse';
|
|
3206
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3207
|
+
success: Scalars['Boolean']['output'];
|
|
3208
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
3209
|
+
};
|
|
3210
|
+
export declare type AssetsDmMappedColumn = {
|
|
3211
|
+
__typename?: 'AssetsDMMappedColumn';
|
|
3212
|
+
columnMappingId?: Maybe<Scalars['ID']['output']>;
|
|
3213
|
+
columnType?: Maybe<Scalars['Int']['output']>;
|
|
3214
|
+
dateFormatId?: Maybe<Scalars['String']['output']>;
|
|
3215
|
+
destinationColumnName?: Maybe<Scalars['String']['output']>;
|
|
3216
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
3217
|
+
sourceColumnName?: Maybe<Scalars['String']['output']>;
|
|
3218
|
+
};
|
|
3219
|
+
export declare type AssetsDmObjectClass = {
|
|
3220
|
+
__typename?: 'AssetsDMObjectClass';
|
|
3221
|
+
allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
|
|
3222
|
+
computedIssuesCount?: Maybe<Scalars['String']['output']>;
|
|
3223
|
+
dataSources?: Maybe<Array<Maybe<AssetsDmDataSource>>>;
|
|
3224
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3225
|
+
objectId?: Maybe<Scalars['String']['output']>;
|
|
3226
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
3227
|
+
uniqueRecordsCount?: Maybe<Scalars['String']['output']>;
|
|
3228
|
+
};
|
|
3229
|
+
export declare enum AssetsDmObjectClassEnum {
|
|
3230
|
+
Compute = "Compute",
|
|
3231
|
+
Network = "Network",
|
|
3232
|
+
People = "People",
|
|
3233
|
+
Peripherals = "Peripherals",
|
|
3234
|
+
Software = "Software"
|
|
3235
|
+
}
|
|
3072
3236
|
export declare type AssignIssueParentInput = {
|
|
3073
3237
|
boardId: Scalars['ID']['input'];
|
|
3074
3238
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -3136,6 +3300,7 @@ export declare type AtlassianStudioUserProductPermissions = {
|
|
|
3136
3300
|
export declare type AtlassianStudioUserSiteContextOutput = {
|
|
3137
3301
|
__typename?: 'AtlassianStudioUserSiteContextOutput';
|
|
3138
3302
|
isAIEnabledForVirtualAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
3303
|
+
isAIEnabledOnAnyActiveProducts?: Maybe<Scalars['Boolean']['output']>;
|
|
3139
3304
|
isAssetsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3140
3305
|
isCompanyHubAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3141
3306
|
isConfluenceAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3144,6 +3309,7 @@ export declare type AtlassianStudioUserSiteContextOutput = {
|
|
|
3144
3309
|
isJSMAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3145
3310
|
isJSMEditionPremiumOrEnterprise?: Maybe<Scalars['Boolean']['output']>;
|
|
3146
3311
|
isJiraAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3312
|
+
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3147
3313
|
isVirtualAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
3148
3314
|
userPermissions?: Maybe<AtlassianStudioUserProductPermissions>;
|
|
3149
3315
|
};
|
|
@@ -6622,6 +6788,7 @@ export declare type CompassCampaignQuery = {
|
|
|
6622
6788
|
sort?: InputMaybe<CompassCampaignQuerySort>;
|
|
6623
6789
|
};
|
|
6624
6790
|
export declare type CompassCampaignQueryFilter = {
|
|
6791
|
+
componentId?: InputMaybe<Scalars['ID']['input']>;
|
|
6625
6792
|
createdByUserId?: InputMaybe<Scalars['ID']['input']>;
|
|
6626
6793
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
6627
6794
|
};
|
|
@@ -7061,7 +7228,6 @@ export declare type CompassCatalogQueryApi = {
|
|
|
7061
7228
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
7062
7229
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
7063
7230
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
7064
|
-
topScorecards?: Maybe<CompassScorecardConnection>;
|
|
7065
7231
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
7066
7232
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
7067
7233
|
};
|
|
@@ -7226,12 +7392,6 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
7226
7392
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
7227
7393
|
input: CompassTeamDataInput;
|
|
7228
7394
|
};
|
|
7229
|
-
export declare type CompassCatalogQueryApiTopScorecardsArgs = {
|
|
7230
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
7231
|
-
cloudId: Scalars['ID']['input'];
|
|
7232
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7233
|
-
query?: InputMaybe<CompassTopScorecardsQuery>;
|
|
7234
|
-
};
|
|
7235
7395
|
export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
7236
7396
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7237
7397
|
componentId: Scalars['ID']['input'];
|
|
@@ -11059,16 +11219,6 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
11059
11219
|
cursor: Scalars['String']['output'];
|
|
11060
11220
|
node?: Maybe<CompassTeamMetricSource>;
|
|
11061
11221
|
};
|
|
11062
|
-
export declare type CompassTopScorecardsQuery = {
|
|
11063
|
-
filter?: InputMaybe<CompassTopScorecardsQueryFilter>;
|
|
11064
|
-
sort?: InputMaybe<CompassTopScorecardsQuerySort>;
|
|
11065
|
-
};
|
|
11066
|
-
export declare type CompassTopScorecardsQueryFilter = {
|
|
11067
|
-
teams?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
11068
|
-
};
|
|
11069
|
-
export declare type CompassTopScorecardsQuerySort = {
|
|
11070
|
-
order?: InputMaybe<CompassScorecardQuerySortOrder>;
|
|
11071
|
-
};
|
|
11072
11222
|
export declare type CompassUnsetEntityPropertyInput = {
|
|
11073
11223
|
cloudId: Scalars['ID']['input'];
|
|
11074
11224
|
key: Scalars['String']['input'];
|
|
@@ -14100,6 +14250,7 @@ export declare enum ContainerType {
|
|
|
14100
14250
|
}
|
|
14101
14251
|
export declare type Content = {
|
|
14102
14252
|
__typename?: 'Content';
|
|
14253
|
+
aiProperty?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
14103
14254
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
14104
14255
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
14105
14256
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -14171,6 +14322,11 @@ export declare type Content = {
|
|
|
14171
14322
|
version?: Maybe<Version>;
|
|
14172
14323
|
visibleDescendantsCount: Scalars['Long']['output'];
|
|
14173
14324
|
};
|
|
14325
|
+
export declare type ContentAiPropertyArgs = {
|
|
14326
|
+
cloudId: Scalars['String']['input'];
|
|
14327
|
+
contentType: KnowledgeGraphContentType;
|
|
14328
|
+
objectType: KnowledgeGraphObjectType;
|
|
14329
|
+
};
|
|
14174
14330
|
export declare type ContentAttachmentsArgs = {
|
|
14175
14331
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14176
14332
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16111,6 +16267,36 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
16111
16267
|
isValid: Scalars['Boolean']['output'];
|
|
16112
16268
|
message?: Maybe<Scalars['String']['output']>;
|
|
16113
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
|
+
};
|
|
16114
16300
|
export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
16115
16301
|
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
16116
16302
|
id: Scalars['ID']['output'];
|
|
@@ -16709,6 +16895,20 @@ export declare type CreateJiraPlaybookInput = {
|
|
|
16709
16895
|
state?: InputMaybe<JiraPlaybookStateField>;
|
|
16710
16896
|
steps: Array<CreateJiraPlaybookStepInput>;
|
|
16711
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
|
+
};
|
|
16712
16912
|
export declare type CreateJiraPlaybookPayload = Payload & {
|
|
16713
16913
|
__typename?: 'CreateJiraPlaybookPayload';
|
|
16714
16914
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -19279,6 +19479,23 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
19279
19479
|
Starting = "STARTING",
|
|
19280
19480
|
Stopped = "STOPPED"
|
|
19281
19481
|
}
|
|
19482
|
+
export declare type DevAiFlowRepository = {
|
|
19483
|
+
__typename?: 'DevAiFlowRepository';
|
|
19484
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
19485
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19486
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19487
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19488
|
+
};
|
|
19489
|
+
export declare type DevAiFlowRepositoryConnection = {
|
|
19490
|
+
__typename?: 'DevAiFlowRepositoryConnection';
|
|
19491
|
+
edges?: Maybe<Array<Maybe<DevAiFlowRepositoryEdge>>>;
|
|
19492
|
+
pageInfo: PageInfo;
|
|
19493
|
+
};
|
|
19494
|
+
export declare type DevAiFlowRepositoryEdge = {
|
|
19495
|
+
__typename?: 'DevAiFlowRepositoryEdge';
|
|
19496
|
+
cursor: Scalars['String']['output'];
|
|
19497
|
+
node?: Maybe<DevAiFlowRepository>;
|
|
19498
|
+
};
|
|
19282
19499
|
export declare type DevAiFlowSession = {
|
|
19283
19500
|
__typename?: 'DevAiFlowSession';
|
|
19284
19501
|
additionalInfoJSON?: Maybe<Scalars['String']['output']>;
|
|
@@ -19302,12 +19519,23 @@ export declare type DevAiFlowSessionCompletePayload = Payload & {
|
|
|
19302
19519
|
errors?: Maybe<Array<MutationError>>;
|
|
19303
19520
|
success: Scalars['Boolean']['output'];
|
|
19304
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
|
+
};
|
|
19305
19528
|
export declare type DevAiFlowSessionCreatePayload = Payload & {
|
|
19306
19529
|
__typename?: 'DevAiFlowSessionCreatePayload';
|
|
19307
19530
|
data?: Maybe<DevAiFlowSession>;
|
|
19308
19531
|
errors?: Maybe<Array<MutationError>>;
|
|
19309
19532
|
success: Scalars['Boolean']['output'];
|
|
19310
19533
|
};
|
|
19534
|
+
export declare type DevAiFlowSessionEdge = {
|
|
19535
|
+
__typename?: 'DevAiFlowSessionEdge';
|
|
19536
|
+
cursor: Scalars['String']['output'];
|
|
19537
|
+
node?: Maybe<DevAiFlowSession>;
|
|
19538
|
+
};
|
|
19311
19539
|
export declare enum DevAiFlowSessionsStatus {
|
|
19312
19540
|
Completed = "COMPLETED",
|
|
19313
19541
|
Failed = "FAILED",
|
|
@@ -28728,12 +28956,16 @@ export declare type GraphStore = {
|
|
|
28728
28956
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28729
28957
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28730
28958
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28959
|
+
userSnapshottedConfluencePage?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageConnection>;
|
|
28960
|
+
userSnapshottedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection>;
|
|
28731
28961
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28732
28962
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28733
28963
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
28734
28964
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
28735
28965
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
28736
28966
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
28967
|
+
userTrashedConfluenceContent?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentConnection>;
|
|
28968
|
+
userTrashedConfluenceContentInverse?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection>;
|
|
28737
28969
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28738
28970
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28739
28971
|
userUpdatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalConnection>;
|
|
@@ -33140,6 +33372,20 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
33140
33372
|
id: Scalars['ID']['input'];
|
|
33141
33373
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
33142
33374
|
};
|
|
33375
|
+
export declare type GraphStoreUserSnapshottedConfluencePageArgs = {
|
|
33376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33377
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33379
|
+
id: Scalars['ID']['input'];
|
|
33380
|
+
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
33381
|
+
};
|
|
33382
|
+
export declare type GraphStoreUserSnapshottedConfluencePageInverseArgs = {
|
|
33383
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33384
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33385
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33386
|
+
id: Scalars['ID']['input'];
|
|
33387
|
+
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
33388
|
+
};
|
|
33143
33389
|
export declare type GraphStoreUserTaggedInCommentArgs = {
|
|
33144
33390
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33145
33391
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33182,6 +33428,20 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
33182
33428
|
id: Scalars['ID']['input'];
|
|
33183
33429
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
33184
33430
|
};
|
|
33431
|
+
export declare type GraphStoreUserTrashedConfluenceContentArgs = {
|
|
33432
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33433
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33434
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33435
|
+
id: Scalars['ID']['input'];
|
|
33436
|
+
sort?: InputMaybe<GraphStoreUserTrashedConfluenceContentSortInput>;
|
|
33437
|
+
};
|
|
33438
|
+
export declare type GraphStoreUserTrashedConfluenceContentInverseArgs = {
|
|
33439
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33440
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33441
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33442
|
+
id: Scalars['ID']['input'];
|
|
33443
|
+
sort?: InputMaybe<GraphStoreUserTrashedConfluenceContentSortInput>;
|
|
33444
|
+
};
|
|
33185
33445
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
33186
33446
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33187
33447
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35261,7 +35521,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35261
35521
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35262
35522
|
id: Scalars['ID']['output'];
|
|
35263
35523
|
};
|
|
35264
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35524
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35265
35525
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
35266
35526
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
35267
35527
|
value: Scalars['Int']['output'];
|
|
@@ -35296,7 +35556,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
35296
35556
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
35297
35557
|
id: Scalars['ID']['output'];
|
|
35298
35558
|
};
|
|
35299
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35559
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35300
35560
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
35301
35561
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
35302
35562
|
value: Scalars['String']['output'];
|
|
@@ -35306,19 +35566,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35306
35566
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35307
35567
|
id: Scalars['ID']['output'];
|
|
35308
35568
|
};
|
|
35309
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35569
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35310
35570
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
35311
35571
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
35312
35572
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
35313
35573
|
id: Scalars['ID']['output'];
|
|
35314
35574
|
};
|
|
35315
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35575
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35316
35576
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
35317
35577
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
35318
35578
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
35319
35579
|
id: Scalars['ID']['output'];
|
|
35320
35580
|
};
|
|
35321
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35581
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35322
35582
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
35323
35583
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
35324
35584
|
value: Scalars['Boolean']['output'];
|
|
@@ -35417,7 +35677,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
35417
35677
|
V2 = "V2",
|
|
35418
35678
|
V3 = "V3"
|
|
35419
35679
|
}
|
|
35420
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35680
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35421
35681
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35422
35682
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35423
35683
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -47321,6 +47581,34 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
47321
47581
|
};
|
|
47322
47582
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47323
47583
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47584
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
47585
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
47586
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageEdge>>>;
|
|
47587
|
+
pageInfo: PageInfo;
|
|
47588
|
+
};
|
|
47589
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageEdge = {
|
|
47590
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageEdge';
|
|
47591
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47592
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47593
|
+
id: Scalars['ID']['output'];
|
|
47594
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47595
|
+
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageUnion>;
|
|
47596
|
+
};
|
|
47597
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection = HasPageInfo & {
|
|
47598
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection';
|
|
47599
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge>>>;
|
|
47600
|
+
pageInfo: PageInfo;
|
|
47601
|
+
};
|
|
47602
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge = {
|
|
47603
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge';
|
|
47604
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47605
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47606
|
+
id: Scalars['ID']['output'];
|
|
47607
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47608
|
+
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion>;
|
|
47609
|
+
};
|
|
47610
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47611
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageUnion = ConfluencePage;
|
|
47324
47612
|
export declare type GraphStoreSimplifiedUserTaggedInCommentConnection = HasPageInfo & {
|
|
47325
47613
|
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentConnection';
|
|
47326
47614
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentEdge>>>;
|
|
@@ -47405,6 +47693,34 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
47405
47693
|
};
|
|
47406
47694
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47407
47695
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
47696
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentConnection = HasPageInfo & {
|
|
47697
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentConnection';
|
|
47698
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentEdge>>>;
|
|
47699
|
+
pageInfo: PageInfo;
|
|
47700
|
+
};
|
|
47701
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentEdge = {
|
|
47702
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentEdge';
|
|
47703
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47704
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47705
|
+
id: Scalars['ID']['output'];
|
|
47706
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47707
|
+
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentUnion>;
|
|
47708
|
+
};
|
|
47709
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection = HasPageInfo & {
|
|
47710
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection';
|
|
47711
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge>>>;
|
|
47712
|
+
pageInfo: PageInfo;
|
|
47713
|
+
};
|
|
47714
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge = {
|
|
47715
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge';
|
|
47716
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47717
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47718
|
+
id: Scalars['ID']['output'];
|
|
47719
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47720
|
+
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion>;
|
|
47721
|
+
};
|
|
47722
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47723
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentUnion = ConfluenceSpace;
|
|
47408
47724
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
47409
47725
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
47410
47726
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -48992,6 +49308,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
48992
49308
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
48993
49309
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48994
49310
|
};
|
|
49311
|
+
export declare type GraphStoreUserSnapshottedConfluencePageSortInput = {
|
|
49312
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49313
|
+
};
|
|
48995
49314
|
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
48996
49315
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48997
49316
|
};
|
|
@@ -49001,6 +49320,9 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
49001
49320
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
49002
49321
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49003
49322
|
};
|
|
49323
|
+
export declare type GraphStoreUserTrashedConfluenceContentSortInput = {
|
|
49324
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49325
|
+
};
|
|
49004
49326
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
49005
49327
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49006
49328
|
};
|
|
@@ -49883,6 +50205,7 @@ export declare type HelpCenter = Node & {
|
|
|
49883
50205
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
49884
50206
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
49885
50207
|
name?: Maybe<HelpCenterName>;
|
|
50208
|
+
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
49886
50209
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
49887
50210
|
portals?: Maybe<HelpCenterPortals>;
|
|
49888
50211
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
@@ -49894,6 +50217,9 @@ export declare type HelpCenter = Node & {
|
|
|
49894
50217
|
virtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
49895
50218
|
virtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49896
50219
|
};
|
|
50220
|
+
export declare type HelpCenterPagesArgs = {
|
|
50221
|
+
filter?: InputMaybe<HelpCenterPagesFilter>;
|
|
50222
|
+
};
|
|
49897
50223
|
export declare type HelpCenterPortalsArgs = {
|
|
49898
50224
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
49899
50225
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
@@ -50251,6 +50577,9 @@ export declare type HelpCenterPageUpdatePayload = Payload & {
|
|
|
50251
50577
|
helpCenterPage?: Maybe<HelpCenterPage>;
|
|
50252
50578
|
success: Scalars['Boolean']['output'];
|
|
50253
50579
|
};
|
|
50580
|
+
export declare type HelpCenterPagesFilter = {
|
|
50581
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50582
|
+
};
|
|
50254
50583
|
export declare type HelpCenterPermissionSettings = {
|
|
50255
50584
|
__typename?: 'HelpCenterPermissionSettings';
|
|
50256
50585
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -50958,6 +51287,7 @@ export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
|
50958
51287
|
hideTitle?: Maybe<Scalars['Boolean']['output']>;
|
|
50959
51288
|
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
50960
51289
|
id: Scalars['ID']['output'];
|
|
51290
|
+
showCSMAISearchTrigger?: Maybe<Scalars['Boolean']['output']>;
|
|
50961
51291
|
useGlobalSettings?: Maybe<Scalars['Boolean']['output']>;
|
|
50962
51292
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
50963
51293
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
@@ -51325,6 +51655,10 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
51325
51655
|
id: Scalars['ID']['output'];
|
|
51326
51656
|
title?: Maybe<Scalars['String']['output']>;
|
|
51327
51657
|
};
|
|
51658
|
+
export declare enum HelpObjectStoreArticleContentType {
|
|
51659
|
+
Folder = "FOLDER",
|
|
51660
|
+
Page = "PAGE"
|
|
51661
|
+
}
|
|
51328
51662
|
export declare type HelpObjectStoreArticleMetadata = {
|
|
51329
51663
|
__typename?: 'HelpObjectStoreArticleMetadata';
|
|
51330
51664
|
isExternal: Scalars['Boolean']['output'];
|
|
@@ -51361,6 +51695,18 @@ export declare enum HelpObjectStoreArticleSourceSystem {
|
|
|
51361
51695
|
GoogleDrive = "GOOGLE_DRIVE",
|
|
51362
51696
|
Sharepoint = "SHAREPOINT"
|
|
51363
51697
|
}
|
|
51698
|
+
export declare type HelpObjectStoreArticleSpaceInfo = {
|
|
51699
|
+
__typename?: 'HelpObjectStoreArticleSpaceInfo';
|
|
51700
|
+
spaceId?: Maybe<Scalars['Long']['output']>;
|
|
51701
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
51702
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
51703
|
+
};
|
|
51704
|
+
export declare type HelpObjectStoreArticleUrlInfo = {
|
|
51705
|
+
__typename?: 'HelpObjectStoreArticleURLInfo';
|
|
51706
|
+
editUrl: Scalars['String']['output'];
|
|
51707
|
+
shareUrl: Scalars['String']['output'];
|
|
51708
|
+
viewUrl: Scalars['String']['output'];
|
|
51709
|
+
};
|
|
51364
51710
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
51365
51711
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
51366
51712
|
};
|
|
@@ -51597,6 +51943,35 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
51597
51943
|
entityId: Scalars['String']['output'];
|
|
51598
51944
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
51599
51945
|
};
|
|
51946
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
51947
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
51948
|
+
parentId?: InputMaybe<Scalars['Long']['input']>;
|
|
51949
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
51950
|
+
topLevelArticlesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51951
|
+
};
|
|
51952
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
|
|
51953
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
51954
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
51955
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
51956
|
+
contentType?: Maybe<HelpObjectStoreArticleContentType>;
|
|
51957
|
+
id: Scalars['ID']['output'];
|
|
51958
|
+
lastModified: Scalars['String']['output'];
|
|
51959
|
+
spaceInfo: HelpObjectStoreArticleSpaceInfo;
|
|
51960
|
+
title: Scalars['String']['output'];
|
|
51961
|
+
urlInfo: HelpObjectStoreArticleUrlInfo;
|
|
51962
|
+
viewCount?: Maybe<Scalars['Long']['output']>;
|
|
51963
|
+
};
|
|
51964
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
|
|
51965
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
|
|
51966
|
+
edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge>>;
|
|
51967
|
+
nodes?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResult>>;
|
|
51968
|
+
pageInfo: PageInfo;
|
|
51969
|
+
};
|
|
51970
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
|
|
51971
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
|
|
51972
|
+
cursor: Scalars['String']['output'];
|
|
51973
|
+
node: HelpObjectStoreSupportSiteArticleSearchResult;
|
|
51974
|
+
};
|
|
51600
51975
|
export declare type History = {
|
|
51601
51976
|
__typename?: 'History';
|
|
51602
51977
|
archivedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -53745,6 +54120,7 @@ export declare enum JiraBoardType {
|
|
|
53745
54120
|
}
|
|
53746
54121
|
export declare type JiraBoardView = {
|
|
53747
54122
|
__typename?: 'JiraBoardView';
|
|
54123
|
+
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
53748
54124
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
53749
54125
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
53750
54126
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
@@ -55512,6 +55888,18 @@ export declare type JiraCreateBoardSource = {
|
|
|
55512
55888
|
fieldInput?: InputMaybe<JiraCreateBoardFieldInput>;
|
|
55513
55889
|
savedFilterId?: InputMaybe<Scalars['Long']['input']>;
|
|
55514
55890
|
};
|
|
55891
|
+
export declare type JiraCreateBoardViewStatusColumnInput = {
|
|
55892
|
+
name: Scalars['String']['input'];
|
|
55893
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55894
|
+
statusCategoryId: Scalars['ID']['input'];
|
|
55895
|
+
viewId: Scalars['ID']['input'];
|
|
55896
|
+
};
|
|
55897
|
+
export declare type JiraCreateBoardViewStatusColumnPayload = {
|
|
55898
|
+
__typename?: 'JiraCreateBoardViewStatusColumnPayload';
|
|
55899
|
+
boardView?: Maybe<JiraBoardView>;
|
|
55900
|
+
errors?: Maybe<Array<MutationError>>;
|
|
55901
|
+
success: Scalars['Boolean']['output'];
|
|
55902
|
+
};
|
|
55515
55903
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
55516
55904
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
55517
55905
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -55602,6 +55990,27 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
55602
55990
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
55603
55991
|
success: Scalars['Boolean']['output'];
|
|
55604
55992
|
};
|
|
55993
|
+
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
55994
|
+
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
55995
|
+
expression: JiraFormattingRuleExpressionInput;
|
|
55996
|
+
formattingArea: JiraFormattingArea;
|
|
55997
|
+
formattingColor?: InputMaybe<JiraColorInput>;
|
|
55998
|
+
viewId: Scalars['ID']['input'];
|
|
55999
|
+
};
|
|
56000
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
56001
|
+
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
56002
|
+
createdRule?: Maybe<JiraFormattingRule>;
|
|
56003
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56004
|
+
success: Scalars['Boolean']['output'];
|
|
56005
|
+
};
|
|
56006
|
+
export declare type JiraCreateIssueTypeInput = {
|
|
56007
|
+
avatarId: Scalars['String']['input'];
|
|
56008
|
+
cloudId: Scalars['ID']['input'];
|
|
56009
|
+
description: Scalars['String']['input'];
|
|
56010
|
+
hierarchyLevel: Scalars['Int']['input'];
|
|
56011
|
+
name: Scalars['String']['input'];
|
|
56012
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
56013
|
+
};
|
|
55605
56014
|
export declare type JiraCreateJourneyConfigurationInput = {
|
|
55606
56015
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
55607
56016
|
name: Scalars['String']['input'];
|
|
@@ -56033,6 +56442,18 @@ export declare type JiraDeleteActivityConfigurationInput = {
|
|
|
56033
56442
|
journeyId: Scalars['ID']['input'];
|
|
56034
56443
|
journeyVersion: Scalars['Long']['input'];
|
|
56035
56444
|
};
|
|
56445
|
+
export declare type JiraDeleteBoardViewStatusColumnInput = {
|
|
56446
|
+
columnId: Scalars['ID']['input'];
|
|
56447
|
+
replacementStatusId: Scalars['ID']['input'];
|
|
56448
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
56449
|
+
viewId: Scalars['ID']['input'];
|
|
56450
|
+
};
|
|
56451
|
+
export declare type JiraDeleteBoardViewStatusColumnPayload = {
|
|
56452
|
+
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
56453
|
+
boardView?: Maybe<JiraBoardView>;
|
|
56454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56455
|
+
success: Scalars['Boolean']['output'];
|
|
56456
|
+
};
|
|
56036
56457
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
56037
56458
|
cloudId: Scalars['ID']['input'];
|
|
56038
56459
|
customBackgroundId: Scalars['ID']['input'];
|
|
@@ -56088,6 +56509,16 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
56088
56509
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
56089
56510
|
success: Scalars['Boolean']['output'];
|
|
56090
56511
|
};
|
|
56512
|
+
export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
56513
|
+
ruleId: Scalars['ID']['input'];
|
|
56514
|
+
viewId: Scalars['ID']['input'];
|
|
56515
|
+
};
|
|
56516
|
+
export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
56517
|
+
__typename?: 'JiraDeleteIssueSearchFormattingRulePayload';
|
|
56518
|
+
deletedRuleId?: Maybe<Scalars['ID']['output']>;
|
|
56519
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56520
|
+
success: Scalars['Boolean']['output'];
|
|
56521
|
+
};
|
|
56091
56522
|
export declare type JiraDeleteJourneyItemInput = {
|
|
56092
56523
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
56093
56524
|
itemId: Scalars['ID']['input'];
|
|
@@ -57941,6 +58372,7 @@ export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
|
57941
58372
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
57942
58373
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
57943
58374
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
58375
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
57944
58376
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
57945
58377
|
};
|
|
57946
58378
|
export declare enum JiraGroupsContext {
|
|
@@ -58594,6 +59026,7 @@ export declare type JiraIssueEdge = {
|
|
|
58594
59026
|
cursor: Scalars['String']['output'];
|
|
58595
59027
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
58596
59028
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
59029
|
+
issueError?: Maybe<JiraIssueError>;
|
|
58597
59030
|
node?: Maybe<JiraIssue>;
|
|
58598
59031
|
};
|
|
58599
59032
|
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
@@ -58608,6 +59041,7 @@ export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
|
58608
59041
|
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
58609
59042
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
58610
59043
|
};
|
|
59044
|
+
export declare type JiraIssueError = JiraRemoteLinkedIssueError;
|
|
58611
59045
|
export declare type JiraIssueExpandedGroup = {
|
|
58612
59046
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
58613
59047
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -59117,6 +59551,26 @@ export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
|
59117
59551
|
linkType: Scalars['ID']['input'];
|
|
59118
59552
|
operation: JiraAddValueFieldOperations;
|
|
59119
59553
|
};
|
|
59554
|
+
export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
59555
|
+
__typename?: 'JiraIssueLinkRelationshipTypeField';
|
|
59556
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
59557
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
59558
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
59559
|
+
fieldId: Scalars['String']['output'];
|
|
59560
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
59561
|
+
id: Scalars['ID']['output'];
|
|
59562
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
59563
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
59564
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
59565
|
+
issue?: Maybe<JiraIssue>;
|
|
59566
|
+
issueLink?: Maybe<JiraIssueLink>;
|
|
59567
|
+
name: Scalars['String']['output'];
|
|
59568
|
+
type: Scalars['String']['output'];
|
|
59569
|
+
};
|
|
59570
|
+
export declare type JiraIssueLinkRelationshipTypeUpdateInput = {
|
|
59571
|
+
issueLinkId: Scalars['ID']['input'];
|
|
59572
|
+
issueLinkTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59573
|
+
};
|
|
59120
59574
|
export declare type JiraIssueLinkType = Node & {
|
|
59121
59575
|
__typename?: 'JiraIssueLinkType';
|
|
59122
59576
|
id: Scalars['ID']['output'];
|
|
@@ -59491,7 +59945,9 @@ export declare type JiraIssueSearchScope = {
|
|
|
59491
59945
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
59492
59946
|
};
|
|
59493
59947
|
export declare type JiraIssueSearchSettings = {
|
|
59948
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
59494
59949
|
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59950
|
+
hierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59495
59951
|
};
|
|
59496
59952
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
59497
59953
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61391,6 +61847,7 @@ export declare type JiraMutation = {
|
|
|
61391
61847
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
61392
61848
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
61393
61849
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
61850
|
+
updateIssueLinkRelationshipTypeField?: Maybe<JiraUpdateIssueLinkRelationshipTypeFieldPayload>;
|
|
61394
61851
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
61395
61852
|
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
61396
61853
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
@@ -61908,6 +62365,9 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
61908
62365
|
cloudId: Scalars['ID']['input'];
|
|
61909
62366
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
61910
62367
|
};
|
|
62368
|
+
export declare type JiraMutationUpdateIssueLinkRelationshipTypeFieldArgs = {
|
|
62369
|
+
input: JiraUpdateIssueLinkRelationshipTypeFieldInput;
|
|
62370
|
+
};
|
|
61911
62371
|
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
61912
62372
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
61913
62373
|
viewId: Scalars['ID']['input'];
|
|
@@ -63149,6 +63609,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
63149
63609
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
63150
63610
|
id: Scalars['ID']['output'];
|
|
63151
63611
|
jql?: Maybe<Scalars['String']['output']>;
|
|
63612
|
+
labels?: Maybe<Array<JiraPlaybookLabel>>;
|
|
63152
63613
|
name?: Maybe<Scalars['String']['output']>;
|
|
63153
63614
|
owner?: Maybe<User>;
|
|
63154
63615
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63178,6 +63639,7 @@ export declare type JiraPlaybookExecutionFilter = {
|
|
|
63178
63639
|
};
|
|
63179
63640
|
export declare type JiraPlaybookFilter = {
|
|
63180
63641
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
63642
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
63181
63643
|
};
|
|
63182
63644
|
export declare type JiraPlaybookInstance = Node & {
|
|
63183
63645
|
__typename?: 'JiraPlaybookInstance';
|
|
@@ -63223,6 +63685,49 @@ export declare enum JiraPlaybookIssueFilterType {
|
|
|
63223
63685
|
IssueTypes = "ISSUE_TYPES",
|
|
63224
63686
|
RequestTypes = "REQUEST_TYPES"
|
|
63225
63687
|
}
|
|
63688
|
+
export declare type JiraPlaybookLabel = Node & {
|
|
63689
|
+
__typename?: 'JiraPlaybookLabel';
|
|
63690
|
+
id: Scalars['ID']['output'];
|
|
63691
|
+
name: Scalars['String']['output'];
|
|
63692
|
+
property?: Maybe<JiraPlaybookLabelProperty>;
|
|
63693
|
+
scopeId?: Maybe<Scalars['String']['output']>;
|
|
63694
|
+
scopeType?: Maybe<JiraPlaybookScopeType>;
|
|
63695
|
+
};
|
|
63696
|
+
export declare type JiraPlaybookLabelAssignmentPayload = Payload & {
|
|
63697
|
+
__typename?: 'JiraPlaybookLabelAssignmentPayload';
|
|
63698
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63699
|
+
id: Scalars['ID']['output'];
|
|
63700
|
+
success: Scalars['Boolean']['output'];
|
|
63701
|
+
};
|
|
63702
|
+
export declare type JiraPlaybookLabelConnection = HasPageInfo & QueryPayload & {
|
|
63703
|
+
__typename?: 'JiraPlaybookLabelConnection';
|
|
63704
|
+
edges?: Maybe<Array<JiraPlaybookLabelEdge>>;
|
|
63705
|
+
errors?: Maybe<Array<QueryError>>;
|
|
63706
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookLabel>>>;
|
|
63707
|
+
pageInfo: PageInfo;
|
|
63708
|
+
success: Scalars['Boolean']['output'];
|
|
63709
|
+
};
|
|
63710
|
+
export declare type JiraPlaybookLabelEdge = {
|
|
63711
|
+
__typename?: 'JiraPlaybookLabelEdge';
|
|
63712
|
+
cursor: Scalars['String']['output'];
|
|
63713
|
+
node?: Maybe<JiraPlaybookLabel>;
|
|
63714
|
+
};
|
|
63715
|
+
export declare type JiraPlaybookLabelFilter = {
|
|
63716
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63717
|
+
};
|
|
63718
|
+
export declare type JiraPlaybookLabelProperty = {
|
|
63719
|
+
__typename?: 'JiraPlaybookLabelProperty';
|
|
63720
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
63721
|
+
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
63722
|
+
};
|
|
63723
|
+
export declare type JiraPlaybookLabelPropertyInput = {
|
|
63724
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
63725
|
+
editable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63726
|
+
};
|
|
63727
|
+
export declare type JiraPlaybookListFilter = {
|
|
63728
|
+
labels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63729
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63730
|
+
};
|
|
63226
63731
|
export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
63227
63732
|
__typename?: 'JiraPlaybookQueryPayload';
|
|
63228
63733
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -63236,6 +63741,7 @@ export declare enum JiraPlaybookScopeType {
|
|
|
63236
63741
|
}
|
|
63237
63742
|
export declare enum JiraPlaybookStateField {
|
|
63238
63743
|
Disabled = "DISABLED",
|
|
63744
|
+
Draft = "DRAFT",
|
|
63239
63745
|
Enabled = "ENABLED"
|
|
63240
63746
|
}
|
|
63241
63747
|
export declare type JiraPlaybookStep = {
|
|
@@ -63313,7 +63819,7 @@ export declare type JiraPlaybookStepUsage = Node & {
|
|
|
63313
63819
|
id: Scalars['ID']['output'];
|
|
63314
63820
|
maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63315
63821
|
minExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63316
|
-
|
|
63822
|
+
owner?: Maybe<User>;
|
|
63317
63823
|
playbookName?: Maybe<Scalars['String']['output']>;
|
|
63318
63824
|
stepName?: Maybe<Scalars['String']['output']>;
|
|
63319
63825
|
stepType?: Maybe<JiraPlaybookStepType>;
|
|
@@ -63457,6 +63963,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
63457
63963
|
};
|
|
63458
63964
|
export declare type JiraProject = Node & {
|
|
63459
63965
|
__typename?: 'JiraProject';
|
|
63966
|
+
accessLevel?: Maybe<JiraProjectAccessLevelType>;
|
|
63460
63967
|
action?: Maybe<JiraProjectAction>;
|
|
63461
63968
|
activeBackground?: Maybe<JiraBackground>;
|
|
63462
63969
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
@@ -63697,6 +64204,21 @@ export declare type JiraProjectVersionsV2Args = {
|
|
|
63697
64204
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
63698
64205
|
sortBy?: InputMaybe<JiraVersionSortInput>;
|
|
63699
64206
|
};
|
|
64207
|
+
export declare type JiraProjectAccessLevel = {
|
|
64208
|
+
__typename?: 'JiraProjectAccessLevel';
|
|
64209
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
64210
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
64211
|
+
everyoneRoleDescription?: Maybe<Scalars['String']['output']>;
|
|
64212
|
+
everyoneRoleName?: Maybe<Scalars['String']['output']>;
|
|
64213
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
64214
|
+
value: JiraProjectAccessLevelType;
|
|
64215
|
+
};
|
|
64216
|
+
export declare enum JiraProjectAccessLevelType {
|
|
64217
|
+
Free = "FREE",
|
|
64218
|
+
Limited = "LIMITED",
|
|
64219
|
+
Open = "OPEN",
|
|
64220
|
+
Private = "PRIVATE"
|
|
64221
|
+
}
|
|
63700
64222
|
export declare type JiraProjectAction = {
|
|
63701
64223
|
__typename?: 'JiraProjectAction';
|
|
63702
64224
|
canPerform: Scalars['Boolean']['output'];
|
|
@@ -64128,6 +64650,7 @@ export declare enum JiraProjectType {
|
|
|
64128
64650
|
}
|
|
64129
64651
|
export declare type JiraProjectTypeDetails = Node & {
|
|
64130
64652
|
__typename?: 'JiraProjectTypeDetails';
|
|
64653
|
+
availableAccessLevels: Array<JiraProjectAccessLevel>;
|
|
64131
64654
|
color: Scalars['String']['output'];
|
|
64132
64655
|
description: Scalars['String']['output'];
|
|
64133
64656
|
formattedKey: Scalars['String']['output'];
|
|
@@ -64678,6 +65201,7 @@ export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
|
64678
65201
|
cloudId: Scalars['ID']['input'];
|
|
64679
65202
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
64680
65203
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
65204
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
64681
65205
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
64682
65206
|
};
|
|
64683
65207
|
export declare type JiraQueryFieldSetsByIdArgs = {
|
|
@@ -65773,6 +66297,19 @@ export declare type JiraRemainingTimeEstimateFieldPayload = Payload & {
|
|
|
65773
66297
|
success: Scalars['Boolean']['output'];
|
|
65774
66298
|
};
|
|
65775
66299
|
export declare type JiraRemoteIssueLink = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
66300
|
+
export declare type JiraRemoteLinkedIssueError = {
|
|
66301
|
+
__typename?: 'JiraRemoteLinkedIssueError';
|
|
66302
|
+
errorType?: Maybe<JiraRemoteLinkedIssueErrorType>;
|
|
66303
|
+
repairLink?: Maybe<JiraRemoteLinkedIssueRepairLink>;
|
|
66304
|
+
};
|
|
66305
|
+
export declare enum JiraRemoteLinkedIssueErrorType {
|
|
66306
|
+
ApplinkMissing = "APPLINK_MISSING",
|
|
66307
|
+
ApplinkReqAuth = "APPLINK_REQ_AUTH"
|
|
66308
|
+
}
|
|
66309
|
+
export declare type JiraRemoteLinkedIssueRepairLink = {
|
|
66310
|
+
__typename?: 'JiraRemoteLinkedIssueRepairLink';
|
|
66311
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
66312
|
+
};
|
|
65776
66313
|
export declare type JiraRemoveActiveBackgroundInput = {
|
|
65777
66314
|
entityId: Scalars['ID']['input'];
|
|
65778
66315
|
};
|
|
@@ -65851,6 +66388,18 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
65851
66388
|
errors?: Maybe<Array<MutationError>>;
|
|
65852
66389
|
success: Scalars['Boolean']['output'];
|
|
65853
66390
|
};
|
|
66391
|
+
export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
66392
|
+
columnId: Scalars['ID']['input'];
|
|
66393
|
+
name: Scalars['String']['input'];
|
|
66394
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
66395
|
+
viewId: Scalars['ID']['input'];
|
|
66396
|
+
};
|
|
66397
|
+
export declare type JiraRenameBoardViewStatusColumnPayload = {
|
|
66398
|
+
__typename?: 'JiraRenameBoardViewStatusColumnPayload';
|
|
66399
|
+
boardView?: Maybe<JiraBoardView>;
|
|
66400
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66401
|
+
success: Scalars['Boolean']['output'];
|
|
66402
|
+
};
|
|
65854
66403
|
export declare type JiraRenameNavigationItemInput = {
|
|
65855
66404
|
id: Scalars['ID']['input'];
|
|
65856
66405
|
label: Scalars['String']['input'];
|
|
@@ -66899,6 +67448,10 @@ export declare type JiraServiceManagementDecisionEdge = {
|
|
|
66899
67448
|
cursor: Scalars['String']['output'];
|
|
66900
67449
|
node?: Maybe<JiraServiceManagementDecision>;
|
|
66901
67450
|
};
|
|
67451
|
+
export declare type JiraServiceManagementDefaultCommentBehavior = {
|
|
67452
|
+
__typename?: 'JiraServiceManagementDefaultCommentBehavior';
|
|
67453
|
+
issueView?: Maybe<JiraServiceManagementIssueViewDefaultCommentBehavior>;
|
|
67454
|
+
};
|
|
66902
67455
|
export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
66903
67456
|
__typename?: 'JiraServiceManagementDueDatePreviewField';
|
|
66904
67457
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -66974,6 +67527,10 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
66974
67527
|
name: Scalars['String']['output'];
|
|
66975
67528
|
type: Scalars['String']['output'];
|
|
66976
67529
|
};
|
|
67530
|
+
export declare enum JiraServiceManagementIssueViewDefaultCommentBehavior {
|
|
67531
|
+
InternalNote = "INTERNAL_NOTE",
|
|
67532
|
+
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
67533
|
+
}
|
|
66977
67534
|
export declare type JiraServiceManagementLanguage = {
|
|
66978
67535
|
__typename?: 'JiraServiceManagementLanguage';
|
|
66979
67536
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67975,6 +68532,12 @@ export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
|
67975
68532
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
67976
68533
|
url?: Maybe<Scalars['String']['output']>;
|
|
67977
68534
|
};
|
|
68535
|
+
export declare type JiraShowUnscheduledIssuesCalendarMutationPayload = Payload & {
|
|
68536
|
+
__typename?: 'JiraShowUnscheduledIssuesCalendarMutationPayload';
|
|
68537
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68538
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
68539
|
+
success: Scalars['Boolean']['output'];
|
|
68540
|
+
};
|
|
67978
68541
|
export declare enum JiraSidebarMenuDisplayMode {
|
|
67979
68542
|
MostRecentOnly = "MOST_RECENT_ONLY",
|
|
67980
68543
|
Starred = "STARRED",
|
|
@@ -68349,6 +68912,7 @@ export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
|
68349
68912
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
68350
68913
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
68351
68914
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
68915
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
68352
68916
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
68353
68917
|
};
|
|
68354
68918
|
export declare type JiraSpreadsheetViewPayload = Payload & {
|
|
@@ -68626,10 +69190,13 @@ export declare type JiraSubscription = {
|
|
|
68626
69190
|
onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
|
|
68627
69191
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
68628
69192
|
onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
69193
|
+
onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
68629
69194
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
69195
|
+
onIssueDeletedByProjectsNoEnrichment?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
68630
69196
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
68631
69197
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
68632
69198
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
69199
|
+
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
68633
69200
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
68634
69201
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
68635
69202
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
@@ -68687,10 +69254,18 @@ export declare type JiraSubscriptionOnIssueCreatedByProjectNoEnrichmentArgs = {
|
|
|
68687
69254
|
cloudId: Scalars['ID']['input'];
|
|
68688
69255
|
projectId: Scalars['String']['input'];
|
|
68689
69256
|
};
|
|
69257
|
+
export declare type JiraSubscriptionOnIssueCreatedByProjectsNoEnrichmentArgs = {
|
|
69258
|
+
cloudId: Scalars['ID']['input'];
|
|
69259
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69260
|
+
};
|
|
68690
69261
|
export declare type JiraSubscriptionOnIssueDeletedByProjectArgs = {
|
|
68691
69262
|
cloudId: Scalars['ID']['input'];
|
|
68692
69263
|
projectId: Scalars['String']['input'];
|
|
68693
69264
|
};
|
|
69265
|
+
export declare type JiraSubscriptionOnIssueDeletedByProjectsNoEnrichmentArgs = {
|
|
69266
|
+
cloudId: Scalars['ID']['input'];
|
|
69267
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69268
|
+
};
|
|
68694
69269
|
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
68695
69270
|
input: JiraIssueExportInput;
|
|
68696
69271
|
};
|
|
@@ -68702,6 +69277,10 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectNoEnrichmentArgs = {
|
|
|
68702
69277
|
cloudId: Scalars['ID']['input'];
|
|
68703
69278
|
projectId: Scalars['String']['input'];
|
|
68704
69279
|
};
|
|
69280
|
+
export declare type JiraSubscriptionOnIssueUpdatedByProjectsNoEnrichmentArgs = {
|
|
69281
|
+
cloudId: Scalars['ID']['input'];
|
|
69282
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69283
|
+
};
|
|
68705
69284
|
export declare type JiraSubscriptionOnJirtBoardIssueSubscriptionArgs = {
|
|
68706
69285
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
68707
69286
|
cloudId: Scalars['ID']['input'];
|
|
@@ -69304,6 +69883,33 @@ export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
|
69304
69883
|
id: Scalars['ID']['input'];
|
|
69305
69884
|
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
69306
69885
|
};
|
|
69886
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldInput = {
|
|
69887
|
+
id: Scalars['ID']['input'];
|
|
69888
|
+
operation: JiraUpdateIssueLinkRelationshipTypeFieldOperationInput;
|
|
69889
|
+
};
|
|
69890
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldOperationInput = {
|
|
69891
|
+
operation: JiraSingleValueFieldOperations;
|
|
69892
|
+
update: JiraIssueLinkRelationshipTypeUpdateInput;
|
|
69893
|
+
};
|
|
69894
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload & {
|
|
69895
|
+
__typename?: 'JiraUpdateIssueLinkRelationshipTypeFieldPayload';
|
|
69896
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69897
|
+
field?: Maybe<JiraIssueLinkRelationshipTypeField>;
|
|
69898
|
+
success: Scalars['Boolean']['output'];
|
|
69899
|
+
};
|
|
69900
|
+
export declare type JiraUpdateIssueSearchFormattingRuleInput = {
|
|
69901
|
+
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
69902
|
+
formatType?: InputMaybe<JiraFormattingArea>;
|
|
69903
|
+
formattingColor?: InputMaybe<JiraColorInput>;
|
|
69904
|
+
ruleId: Scalars['ID']['input'];
|
|
69905
|
+
viewId: Scalars['ID']['input'];
|
|
69906
|
+
};
|
|
69907
|
+
export declare type JiraUpdateIssueSearchFormattingRulePayload = {
|
|
69908
|
+
__typename?: 'JiraUpdateIssueSearchFormattingRulePayload';
|
|
69909
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69910
|
+
success: Scalars['Boolean']['output'];
|
|
69911
|
+
updatedRule?: Maybe<JiraFormattingRule>;
|
|
69912
|
+
};
|
|
69307
69913
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
69308
69914
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
69309
69915
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
@@ -69629,6 +70235,12 @@ export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
|
69629
70235
|
id: Scalars['ID']['input'];
|
|
69630
70236
|
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
69631
70237
|
};
|
|
70238
|
+
export declare type JiraUpsertIssueTypePayload = Payload & {
|
|
70239
|
+
__typename?: 'JiraUpsertIssueTypePayload';
|
|
70240
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70241
|
+
issueType?: Maybe<JiraIssueType>;
|
|
70242
|
+
success: Scalars['Boolean']['output'];
|
|
70243
|
+
};
|
|
69632
70244
|
export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
69633
70245
|
__typename?: 'JiraUrlField';
|
|
69634
70246
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -69794,6 +70406,7 @@ export declare type JiraUserPreferences = {
|
|
|
69794
70406
|
showRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
69795
70407
|
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
69796
70408
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
70409
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
69797
70410
|
};
|
|
69798
70411
|
export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplatesArgs = {
|
|
69799
70412
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -76838,11 +77451,6 @@ export declare type MercuryFocusAreaType = {
|
|
|
76838
77451
|
id: Scalars['ID']['output'];
|
|
76839
77452
|
name: Scalars['String']['output'];
|
|
76840
77453
|
};
|
|
76841
|
-
export declare type MercuryForYouFocusAreaActivityHistory = {
|
|
76842
|
-
__typename?: 'MercuryForYouFocusAreaActivityHistory';
|
|
76843
|
-
activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
76844
|
-
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
76845
|
-
};
|
|
76846
77454
|
export declare type MercuryFundChangeSummary = {
|
|
76847
77455
|
__typename?: 'MercuryFundChangeSummary';
|
|
76848
77456
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -77054,6 +77662,7 @@ export declare type MercuryMutationApi = {
|
|
|
77054
77662
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
77055
77663
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
77056
77664
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
77665
|
+
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
77057
77666
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
77058
77667
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
77059
77668
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -77125,6 +77734,9 @@ export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
|
77125
77734
|
export declare type MercuryMutationApiLinkGoalsToFocusAreaArgs = {
|
|
77126
77735
|
input: MercuryLinkGoalsToFocusAreaInput;
|
|
77127
77736
|
};
|
|
77737
|
+
export declare type MercuryMutationApiPublishFocusAreaArgs = {
|
|
77738
|
+
input: MercuryPublishFocusAreaInput;
|
|
77739
|
+
};
|
|
77128
77740
|
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
77129
77741
|
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
77130
77742
|
};
|
|
@@ -77500,6 +78112,15 @@ export declare enum MercuryProviderWorkTargetDateType {
|
|
|
77500
78112
|
Month = "MONTH",
|
|
77501
78113
|
Quarter = "QUARTER"
|
|
77502
78114
|
}
|
|
78115
|
+
export declare type MercuryPublishFocusAreaInput = {
|
|
78116
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78117
|
+
id: Scalars['ID']['input'];
|
|
78118
|
+
};
|
|
78119
|
+
export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
78120
|
+
__typename?: 'MercuryPublishFocusAreaPayload';
|
|
78121
|
+
errors?: Maybe<Array<MutationError>>;
|
|
78122
|
+
success: Scalars['Boolean']['output'];
|
|
78123
|
+
};
|
|
77503
78124
|
export declare type MercuryQueryApi = {
|
|
77504
78125
|
__typename?: 'MercuryQueryApi';
|
|
77505
78126
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -77517,7 +78138,6 @@ export declare type MercuryQueryApi = {
|
|
|
77517
78138
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
77518
78139
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
77519
78140
|
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
77520
|
-
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
77521
78141
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
77522
78142
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
77523
78143
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -77601,14 +78221,6 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
|
77601
78221
|
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
77602
78222
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
77603
78223
|
};
|
|
77604
|
-
export declare type MercuryQueryApiForYouFocusAreaActivityHistoryArgs = {
|
|
77605
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
77606
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77607
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77608
|
-
focusAreaFirst?: InputMaybe<Scalars['Int']['input']>;
|
|
77609
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
77610
|
-
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
77611
|
-
};
|
|
77612
78224
|
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
77613
78225
|
cloudId: Scalars['ID']['input'];
|
|
77614
78226
|
};
|
|
@@ -78596,6 +79208,7 @@ export declare type Mutation = {
|
|
|
78596
79208
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
78597
79209
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
78598
79210
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
79211
|
+
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
78599
79212
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
78600
79213
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
78601
79214
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
@@ -78612,6 +79225,9 @@ export declare type Mutation = {
|
|
|
78612
79225
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
78613
79226
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
78614
79227
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
79228
|
+
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
79229
|
+
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
79230
|
+
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
78615
79231
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
78616
79232
|
attachDanglingComment?: Maybe<Comment>;
|
|
78617
79233
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
@@ -78836,17 +79452,23 @@ export declare type Mutation = {
|
|
|
78836
79452
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
78837
79453
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
78838
79454
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
79455
|
+
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
78839
79456
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
78840
79457
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
78841
79458
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79459
|
+
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
79460
|
+
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
79461
|
+
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
78842
79462
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
78843
79463
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
79464
|
+
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
78844
79465
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
78845
79466
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
78846
79467
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
78847
79468
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
78848
79469
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
78849
79470
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
79471
|
+
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
78850
79472
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
78851
79473
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
78852
79474
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
@@ -78867,11 +79489,13 @@ export declare type Mutation = {
|
|
|
78867
79489
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
78868
79490
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
78869
79491
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
79492
|
+
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
78870
79493
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
78871
79494
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
78872
79495
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
78873
79496
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
78874
79497
|
jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
|
|
79498
|
+
jira_updateIssueSearchFormattingRule?: Maybe<JiraUpdateIssueSearchFormattingRulePayload>;
|
|
78875
79499
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
78876
79500
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
78877
79501
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -78905,9 +79529,12 @@ export declare type Mutation = {
|
|
|
78905
79529
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
78906
79530
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
78907
79531
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
79532
|
+
playbook_assignJiraPlaybookLabelToJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
78908
79533
|
playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
|
|
79534
|
+
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
78909
79535
|
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
78910
79536
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
79537
|
+
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
78911
79538
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
78912
79539
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
78913
79540
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -78989,15 +79616,11 @@ export declare type Mutation = {
|
|
|
78989
79616
|
shepherd?: Maybe<ShepherdMutation>;
|
|
78990
79617
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
78991
79618
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
78992
|
-
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
78993
79619
|
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
78994
79620
|
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
78995
|
-
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
78996
|
-
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
78997
79621
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
78998
79622
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
78999
79623
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
79000
|
-
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
79001
79624
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
79002
79625
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
79003
79626
|
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -79008,18 +79631,6 @@ export declare type Mutation = {
|
|
|
79008
79631
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
79009
79632
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
79010
79633
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
79011
|
-
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
79012
|
-
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
79013
|
-
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
79014
|
-
spf_updateDependencyJustification?: Maybe<SpfUpdateDependencyPayload>;
|
|
79015
|
-
spf_updateDependencyName?: Maybe<SpfUpdateDependencyPayload>;
|
|
79016
|
-
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
79017
|
-
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
79018
|
-
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
79019
|
-
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
79020
|
-
spf_updateDependencySubmitter?: Maybe<SpfUpdateDependencyPayload>;
|
|
79021
|
-
spf_updateDependencySubmittingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
79022
|
-
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
79023
79634
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
79024
79635
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
79025
79636
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -79147,6 +79758,9 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
|
79147
79758
|
cloudId: Scalars['String']['input'];
|
|
79148
79759
|
input: AgentStudioCreateScenarioInput;
|
|
79149
79760
|
};
|
|
79761
|
+
export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
79762
|
+
id: Scalars['ID']['input'];
|
|
79763
|
+
};
|
|
79150
79764
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
79151
79765
|
id: Scalars['ID']['input'];
|
|
79152
79766
|
};
|
|
@@ -79195,6 +79809,21 @@ export declare type MutationArchivePolarisInsightsArgs = {
|
|
|
79195
79809
|
export declare type MutationArchiveSpaceArgs = {
|
|
79196
79810
|
input: ArchiveSpaceInput;
|
|
79197
79811
|
};
|
|
79812
|
+
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
79813
|
+
autoColumnMappingInput?: InputMaybe<AssetsDmAutoColumnMappingInput>;
|
|
79814
|
+
cloudId: Scalars['ID']['input'];
|
|
79815
|
+
workspaceId: Scalars['ID']['input'];
|
|
79816
|
+
};
|
|
79817
|
+
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
79818
|
+
cloudId: Scalars['ID']['input'];
|
|
79819
|
+
input: AssetsDmDataSourceInput;
|
|
79820
|
+
workspaceId: Scalars['ID']['input'];
|
|
79821
|
+
};
|
|
79822
|
+
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
79823
|
+
cloudId: Scalars['ID']['input'];
|
|
79824
|
+
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
79825
|
+
workspaceId: Scalars['ID']['input'];
|
|
79826
|
+
};
|
|
79198
79827
|
export declare type MutationAssignIssueParentArgs = {
|
|
79199
79828
|
input?: InputMaybe<AssignIssueParentInput>;
|
|
79200
79829
|
};
|
|
@@ -79940,6 +80569,9 @@ export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
|
79940
80569
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
79941
80570
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
79942
80571
|
};
|
|
80572
|
+
export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
80573
|
+
input: JiraCreateBoardViewStatusColumnInput;
|
|
80574
|
+
};
|
|
79943
80575
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
79944
80576
|
input: JiraCreateCustomBackgroundInput;
|
|
79945
80577
|
};
|
|
@@ -79951,6 +80583,15 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
79951
80583
|
cloudId: Scalars['ID']['input'];
|
|
79952
80584
|
input: JiraCreateGlobalCustomFieldInput;
|
|
79953
80585
|
};
|
|
80586
|
+
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
80587
|
+
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
80588
|
+
};
|
|
80589
|
+
export declare type MutationJira_CreateIssueTypeArgs = {
|
|
80590
|
+
input: JiraCreateIssueTypeInput;
|
|
80591
|
+
};
|
|
80592
|
+
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80593
|
+
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80594
|
+
};
|
|
79954
80595
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
79955
80596
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
79956
80597
|
};
|
|
@@ -79958,6 +80599,9 @@ export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
|
79958
80599
|
cloudId: Scalars['ID']['input'];
|
|
79959
80600
|
input: JiraDeleteFieldSchemeInput;
|
|
79960
80601
|
};
|
|
80602
|
+
export declare type MutationJira_DeleteIssueSearchFormattingRuleArgs = {
|
|
80603
|
+
input: JiraDeleteIssueSearchFormattingRuleInput;
|
|
80604
|
+
};
|
|
79961
80605
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
79962
80606
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
79963
80607
|
};
|
|
@@ -79978,6 +80622,9 @@ export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
|
|
|
79978
80622
|
cloudId: Scalars['ID']['input'];
|
|
79979
80623
|
input: JiraRemoveFieldsFromFieldSchemeInput;
|
|
79980
80624
|
};
|
|
80625
|
+
export declare type MutationJira_RenameBoardViewStatusColumnArgs = {
|
|
80626
|
+
input: JiraRenameBoardViewStatusColumnInput;
|
|
80627
|
+
};
|
|
79981
80628
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
79982
80629
|
input: JiraReorderBoardViewColumnInput;
|
|
79983
80630
|
};
|
|
@@ -80039,6 +80686,10 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
|
80039
80686
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
80040
80687
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
80041
80688
|
};
|
|
80689
|
+
export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
80690
|
+
cloudId: Scalars['ID']['input'];
|
|
80691
|
+
show: Scalars['Boolean']['input'];
|
|
80692
|
+
};
|
|
80042
80693
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
80043
80694
|
input: JiraSetViewFilterInput;
|
|
80044
80695
|
};
|
|
@@ -80057,6 +80708,9 @@ export declare type MutationJira_UpdateGlobalCustomFieldArgs = {
|
|
|
80057
80708
|
cloudId: Scalars['ID']['input'];
|
|
80058
80709
|
input: JiraUpdateGlobalCustomFieldInput;
|
|
80059
80710
|
};
|
|
80711
|
+
export declare type MutationJira_UpdateIssueSearchFormattingRuleArgs = {
|
|
80712
|
+
input: JiraUpdateIssueSearchFormattingRuleInput;
|
|
80713
|
+
};
|
|
80060
80714
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
80061
80715
|
input: JiraUpdateBackgroundInput;
|
|
80062
80716
|
};
|
|
@@ -80132,15 +80786,26 @@ export declare type MutationPlanModeCardCreateArgs = {
|
|
|
80132
80786
|
export declare type MutationPlanModeCardMoveArgs = {
|
|
80133
80787
|
input?: InputMaybe<PlanModeCardMoveInput>;
|
|
80134
80788
|
};
|
|
80789
|
+
export declare type MutationPlaybook_AssignJiraPlaybookLabelToJiraPlaybookArgs = {
|
|
80790
|
+
labelId: Scalars['ID']['input'];
|
|
80791
|
+
playbookId: Scalars['ID']['input'];
|
|
80792
|
+
};
|
|
80135
80793
|
export declare type MutationPlaybook_CreateJiraPlaybookArgs = {
|
|
80136
80794
|
input: CreateJiraPlaybookInput;
|
|
80137
80795
|
};
|
|
80796
|
+
export declare type MutationPlaybook_CreateJiraPlaybookLabelArgs = {
|
|
80797
|
+
input: CreateJiraPlaybookLabelInput;
|
|
80798
|
+
};
|
|
80138
80799
|
export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
|
|
80139
80800
|
input: CreateJiraPlaybookStepRunInput;
|
|
80140
80801
|
};
|
|
80141
80802
|
export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
|
|
80142
80803
|
input: DeleteJiraPlaybookInput;
|
|
80143
80804
|
};
|
|
80805
|
+
export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
|
|
80806
|
+
labelId: Scalars['ID']['input'];
|
|
80807
|
+
playbookId: Scalars['ID']['input'];
|
|
80808
|
+
};
|
|
80144
80809
|
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
80145
80810
|
input: UpdateJiraPlaybookInput;
|
|
80146
80811
|
};
|
|
@@ -80401,21 +81066,12 @@ export declare type MutationSoftDeleteSpaceArgs = {
|
|
|
80401
81066
|
export declare type MutationSpf_AttachAskLinkArgs = {
|
|
80402
81067
|
input: SpfAttachAskLinkInput;
|
|
80403
81068
|
};
|
|
80404
|
-
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
80405
|
-
input: SpfAttachRelatedContentInput;
|
|
80406
|
-
};
|
|
80407
81069
|
export declare type MutationSpf_CreateAskArgs = {
|
|
80408
81070
|
input: SpfCreateAskInput;
|
|
80409
81071
|
};
|
|
80410
81072
|
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
80411
81073
|
input: SpfCreateAskCommentInput;
|
|
80412
81074
|
};
|
|
80413
|
-
export declare type MutationSpf_CreateCommentArgs = {
|
|
80414
|
-
input: SpfCreateCommentInput;
|
|
80415
|
-
};
|
|
80416
|
-
export declare type MutationSpf_CreateDependencyArgs = {
|
|
80417
|
-
input: SpfCreateDependencyInput;
|
|
80418
|
-
};
|
|
80419
81075
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
80420
81076
|
input: SpfDeleteAskInput;
|
|
80421
81077
|
};
|
|
@@ -80425,9 +81081,6 @@ export declare type MutationSpf_DeleteAskCommentArgs = {
|
|
|
80425
81081
|
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
80426
81082
|
input: SpfDeleteAskLinkInput;
|
|
80427
81083
|
};
|
|
80428
|
-
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
80429
|
-
input: SpfDeleteDependencyInput;
|
|
80430
|
-
};
|
|
80431
81084
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
80432
81085
|
input: SpfUpdateAskCommentDataInput;
|
|
80433
81086
|
};
|
|
@@ -80458,42 +81111,6 @@ export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
|
80458
81111
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
80459
81112
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
80460
81113
|
};
|
|
80461
|
-
export declare type MutationSpf_UpdateCommentArgs = {
|
|
80462
|
-
input: SpfUpdateCommentDataInput;
|
|
80463
|
-
};
|
|
80464
|
-
export declare type MutationSpf_UpdateDependencyDescriptionArgs = {
|
|
80465
|
-
input: SpfUpdateDependencyDescriptionInput;
|
|
80466
|
-
};
|
|
80467
|
-
export declare type MutationSpf_UpdateDependencyImpactedWorkArgs = {
|
|
80468
|
-
input: SpfUpdateDependencyImpactedWorkInput;
|
|
80469
|
-
};
|
|
80470
|
-
export declare type MutationSpf_UpdateDependencyJustificationArgs = {
|
|
80471
|
-
input: SpfUpdateDependencyJustificationInput;
|
|
80472
|
-
};
|
|
80473
|
-
export declare type MutationSpf_UpdateDependencyNameArgs = {
|
|
80474
|
-
input: SpfUpdateDependencyNameInput;
|
|
80475
|
-
};
|
|
80476
|
-
export declare type MutationSpf_UpdateDependencyOwnerArgs = {
|
|
80477
|
-
input: SpfUpdateDependencyOwnerInput;
|
|
80478
|
-
};
|
|
80479
|
-
export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
80480
|
-
input: SpfUpdateDependencyPriorityInput;
|
|
80481
|
-
};
|
|
80482
|
-
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
80483
|
-
input: SpfUpdateDependencyReceivingTeamInput;
|
|
80484
|
-
};
|
|
80485
|
-
export declare type MutationSpf_UpdateDependencyStatusArgs = {
|
|
80486
|
-
input: SpfUpdateDependencyStatusInput;
|
|
80487
|
-
};
|
|
80488
|
-
export declare type MutationSpf_UpdateDependencySubmitterArgs = {
|
|
80489
|
-
input: SpfUpdateDependencySubmitterInput;
|
|
80490
|
-
};
|
|
80491
|
-
export declare type MutationSpf_UpdateDependencySubmittingTeamArgs = {
|
|
80492
|
-
input: SpfUpdateDependencySubmittingTeamInput;
|
|
80493
|
-
};
|
|
80494
|
-
export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
80495
|
-
input: SpfUpdateDependencyTargetDateInput;
|
|
80496
|
-
};
|
|
80497
81114
|
export declare type MutationSplitIssueArgs = {
|
|
80498
81115
|
input?: InputMaybe<SplitIssueInput>;
|
|
80499
81116
|
};
|
|
@@ -83562,6 +84179,7 @@ export declare type Query = {
|
|
|
83562
84179
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
83563
84180
|
appContainer?: Maybe<AppContainer>;
|
|
83564
84181
|
appContainerRegistryLogin?: Maybe<AppContainerRegistryLogin>;
|
|
84182
|
+
appContainerServices?: Maybe<AppContainerServices>;
|
|
83565
84183
|
appContainers?: Maybe<Array<AppContainer>>;
|
|
83566
84184
|
appContributors: Array<AppContributor>;
|
|
83567
84185
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -83580,6 +84198,9 @@ export declare type Query = {
|
|
|
83580
84198
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
83581
84199
|
apps?: Maybe<AppConnection>;
|
|
83582
84200
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
84201
|
+
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
84202
|
+
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
84203
|
+
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
83583
84204
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83584
84205
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83585
84206
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -83701,6 +84322,7 @@ export declare type Query = {
|
|
|
83701
84322
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
83702
84323
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83703
84324
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
84325
|
+
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
83704
84326
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
83705
84327
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
83706
84328
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
@@ -83747,10 +84369,12 @@ export declare type Query = {
|
|
|
83747
84369
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
83748
84370
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
83749
84371
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
84372
|
+
devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
|
|
83750
84373
|
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
83751
84374
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
83752
84375
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
83753
84376
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84377
|
+
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
83754
84378
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
83755
84379
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
83756
84380
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -83823,6 +84447,7 @@ export declare type Query = {
|
|
|
83823
84447
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
83824
84448
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
83825
84449
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
84450
|
+
helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
|
|
83826
84451
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
83827
84452
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
83828
84453
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
@@ -83863,7 +84488,9 @@ export declare type Query = {
|
|
|
83863
84488
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
83864
84489
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
83865
84490
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84491
|
+
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
83866
84492
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
84493
|
+
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
83867
84494
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
83868
84495
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
83869
84496
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -83948,6 +84575,7 @@ export declare type Query = {
|
|
|
83948
84575
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
83949
84576
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
83950
84577
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
84578
|
+
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
83951
84579
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
83952
84580
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
83953
84581
|
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
@@ -83976,6 +84604,10 @@ export declare type Query = {
|
|
|
83976
84604
|
productListings: Array<ProductListingResult>;
|
|
83977
84605
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
83978
84606
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84607
|
+
projects_byId?: Maybe<TownsquareProject>;
|
|
84608
|
+
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84609
|
+
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
84610
|
+
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
83979
84611
|
ptpage?: Maybe<PtPage>;
|
|
83980
84612
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
83981
84613
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -84050,9 +84682,6 @@ export declare type Query = {
|
|
|
84050
84682
|
spf_ask?: Maybe<SpfAskResult>;
|
|
84051
84683
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
84052
84684
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
84053
|
-
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
84054
|
-
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
84055
|
-
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
84056
84685
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
84057
84686
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
84058
84687
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -84219,6 +84848,11 @@ export declare type QueryAppContainerArgs = {
|
|
|
84219
84848
|
export declare type QueryAppContainerRegistryLoginArgs = {
|
|
84220
84849
|
appId: Scalars['ID']['input'];
|
|
84221
84850
|
};
|
|
84851
|
+
export declare type QueryAppContainerServicesArgs = {
|
|
84852
|
+
appId: Scalars['ID']['input'];
|
|
84853
|
+
environmentKey: Scalars['String']['input'];
|
|
84854
|
+
serviceNames: Array<Scalars['String']['input']>;
|
|
84855
|
+
};
|
|
84222
84856
|
export declare type QueryAppContainersArgs = {
|
|
84223
84857
|
appId: Scalars['ID']['input'];
|
|
84224
84858
|
};
|
|
@@ -84310,6 +84944,18 @@ export declare type QueryAppsArgs = {
|
|
|
84310
84944
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
84311
84945
|
cloudId: Scalars['ID']['input'];
|
|
84312
84946
|
};
|
|
84947
|
+
export declare type QueryAssetsDm_AdaptersArgs = {
|
|
84948
|
+
cloudId: Scalars['ID']['input'];
|
|
84949
|
+
workspaceId: Scalars['ID']['input'];
|
|
84950
|
+
};
|
|
84951
|
+
export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
84952
|
+
cloudId: Scalars['ID']['input'];
|
|
84953
|
+
workspaceId: Scalars['ID']['input'];
|
|
84954
|
+
};
|
|
84955
|
+
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
84956
|
+
cloudId: Scalars['ID']['input'];
|
|
84957
|
+
workspaceId: Scalars['ID']['input'];
|
|
84958
|
+
};
|
|
84313
84959
|
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
84314
84960
|
issueId: Scalars['ID']['input'];
|
|
84315
84961
|
};
|
|
@@ -84885,6 +85531,17 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
84885
85531
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84886
85532
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
84887
85533
|
};
|
|
85534
|
+
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
85535
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85536
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
85537
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85538
|
+
id: Scalars['ID']['input'];
|
|
85539
|
+
l2ScoreThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
85540
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
85541
|
+
searchSourcesInput?: InputMaybe<ConvoAiJiraSearchSourcesInput>;
|
|
85542
|
+
xpsearchL1?: InputMaybe<Scalars['String']['input']>;
|
|
85543
|
+
xpsearchL2?: InputMaybe<Scalars['String']['input']>;
|
|
85544
|
+
};
|
|
84888
85545
|
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
84889
85546
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84890
85547
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -85094,6 +85751,10 @@ export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
|
85094
85751
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85095
85752
|
issueKey: Scalars['String']['input'];
|
|
85096
85753
|
};
|
|
85754
|
+
export declare type QueryDevai_FlowGetRepositoriesArgs = {
|
|
85755
|
+
cloudId: Scalars['ID']['input'];
|
|
85756
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
85757
|
+
};
|
|
85097
85758
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
85098
85759
|
id: Scalars['ID']['input'];
|
|
85099
85760
|
};
|
|
@@ -85109,6 +85770,11 @@ export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
|
85109
85770
|
creator: Scalars['String']['input'];
|
|
85110
85771
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85111
85772
|
};
|
|
85773
|
+
export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
85774
|
+
cloudId: Scalars['ID']['input'];
|
|
85775
|
+
issueKey: Scalars['String']['input'];
|
|
85776
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85777
|
+
};
|
|
85112
85778
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
85113
85779
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85114
85780
|
cloudId: Scalars['ID']['input'];
|
|
@@ -85353,6 +86019,13 @@ export declare type QueryHelpObjectStore_SearchArticlesArgs = {
|
|
|
85353
86019
|
queryTerm?: InputMaybe<Scalars['String']['input']>;
|
|
85354
86020
|
skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85355
86021
|
};
|
|
86022
|
+
export declare type QueryHelpObjectStore_SearchArticlesForSupportSiteArgs = {
|
|
86023
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86024
|
+
cloudId: Scalars['String']['input'];
|
|
86025
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86026
|
+
helpCenterAri: Scalars['String']['input'];
|
|
86027
|
+
input?: InputMaybe<HelpObjectStoreSupportSiteArticleSearchInput>;
|
|
86028
|
+
};
|
|
85356
86029
|
export declare type QueryHelpObjectStore_SearchPortalsArgs = {
|
|
85357
86030
|
cloudId: Scalars['ID']['input'];
|
|
85358
86031
|
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -85470,10 +86143,16 @@ export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
|
85470
86143
|
export declare type QueryJira_IssuesByIdsArgs = {
|
|
85471
86144
|
ids: Array<Scalars['ID']['input']>;
|
|
85472
86145
|
};
|
|
86146
|
+
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
86147
|
+
cloudId: Scalars['ID']['input'];
|
|
86148
|
+
};
|
|
85473
86149
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
85474
86150
|
cloudId: Scalars['ID']['input'];
|
|
85475
86151
|
idOrKey: Scalars['String']['input'];
|
|
85476
86152
|
};
|
|
86153
|
+
export declare type QueryJira_ProjectTypesByIdsArgs = {
|
|
86154
|
+
ids: Array<Scalars['ID']['input']>;
|
|
86155
|
+
};
|
|
85477
86156
|
export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
85478
86157
|
cloudId: Scalars['ID']['input'];
|
|
85479
86158
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -85719,6 +86398,13 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
|
85719
86398
|
issueId: Scalars['String']['input'];
|
|
85720
86399
|
projectKey: Scalars['String']['input'];
|
|
85721
86400
|
};
|
|
86401
|
+
export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
86402
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86403
|
+
cloudId: Scalars['ID']['input'];
|
|
86404
|
+
filters?: InputMaybe<JiraPlaybookLabelFilter>;
|
|
86405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86406
|
+
projectKey: Scalars['String']['input'];
|
|
86407
|
+
};
|
|
85722
86408
|
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
85723
86409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85724
86410
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -85743,6 +86429,7 @@ export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
|
85743
86429
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85744
86430
|
cloudId: Scalars['ID']['input'];
|
|
85745
86431
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
86432
|
+
filters?: InputMaybe<JiraPlaybookListFilter>;
|
|
85746
86433
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85747
86434
|
projectKey: Scalars['String']['input'];
|
|
85748
86435
|
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
@@ -85820,6 +86507,22 @@ export declare type QueryProjects_ByAriArgs = {
|
|
|
85820
86507
|
export declare type QueryProjects_ByArisArgs = {
|
|
85821
86508
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
85822
86509
|
};
|
|
86510
|
+
export declare type QueryProjects_ByIdArgs = {
|
|
86511
|
+
projectId: Scalars['String']['input'];
|
|
86512
|
+
};
|
|
86513
|
+
export declare type QueryProjects_ByIdsArgs = {
|
|
86514
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
86515
|
+
};
|
|
86516
|
+
export declare type QueryProjects_SearchArgs = {
|
|
86517
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86518
|
+
containerId: Scalars['String']['input'];
|
|
86519
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86520
|
+
searchString: Scalars['String']['input'];
|
|
86521
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
86522
|
+
};
|
|
86523
|
+
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
86524
|
+
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
86525
|
+
};
|
|
85823
86526
|
export declare type QueryPtpageArgs = {
|
|
85824
86527
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85825
86528
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -86146,18 +86849,6 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
86146
86849
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
86147
86850
|
ids: Array<Scalars['ID']['input']>;
|
|
86148
86851
|
};
|
|
86149
|
-
export declare type QuerySpf_DependenciesArgs = {
|
|
86150
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
86151
|
-
cloudId: Scalars['ID']['input'];
|
|
86152
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86153
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
86154
|
-
};
|
|
86155
|
-
export declare type QuerySpf_DependenciesByIdsArgs = {
|
|
86156
|
-
ids: Array<Scalars['ID']['input']>;
|
|
86157
|
-
};
|
|
86158
|
-
export declare type QuerySpf_DependencyArgs = {
|
|
86159
|
-
id: Scalars['ID']['input'];
|
|
86160
|
-
};
|
|
86161
86852
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
86162
86853
|
appId: Scalars['ID']['input'];
|
|
86163
86854
|
installationId: Scalars['ID']['input'];
|
|
@@ -88834,6 +89525,7 @@ export declare type SearchJiraFilter = {
|
|
|
88834
89525
|
export declare type SearchJiraIssueFilter = {
|
|
88835
89526
|
assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
88836
89527
|
commenterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89528
|
+
issueLabels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
88837
89529
|
issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
88838
89530
|
projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
88839
89531
|
reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -89185,6 +89877,17 @@ export declare type SearchResultJiraIssueStatusCategory = {
|
|
|
89185
89877
|
key: Scalars['String']['output'];
|
|
89186
89878
|
name: Scalars['String']['output'];
|
|
89187
89879
|
};
|
|
89880
|
+
export declare type SearchResultJiraPlan = SearchResult & {
|
|
89881
|
+
__typename?: 'SearchResultJiraPlan';
|
|
89882
|
+
description: Scalars['String']['output'];
|
|
89883
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
89884
|
+
id: Scalars['ID']['output'];
|
|
89885
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
89886
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
89887
|
+
title: Scalars['String']['output'];
|
|
89888
|
+
type: SearchResultType;
|
|
89889
|
+
url: Scalars['URL']['output'];
|
|
89890
|
+
};
|
|
89188
89891
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
89189
89892
|
__typename?: 'SearchResultJiraProject';
|
|
89190
89893
|
canView: Scalars['Boolean']['output'];
|
|
@@ -90309,7 +91012,6 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
90309
91012
|
callbackURL: Scalars['URL']['input'];
|
|
90310
91013
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
90311
91014
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
90312
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
90313
91015
|
};
|
|
90314
91016
|
export declare type ShepherdCurrentUser = {
|
|
90315
91017
|
__typename?: 'ShepherdCurrentUser';
|
|
@@ -90320,7 +91022,7 @@ export declare type ShepherdCustomContentScanningDetection = {
|
|
|
90320
91022
|
__typename?: 'ShepherdCustomContentScanningDetection';
|
|
90321
91023
|
rules: Array<Maybe<ShepherdCustomScanningRule>>;
|
|
90322
91024
|
};
|
|
90323
|
-
export declare type ShepherdCustomDetection = {
|
|
91025
|
+
export declare type ShepherdCustomDetection = Node & {
|
|
90324
91026
|
__typename?: 'ShepherdCustomDetection';
|
|
90325
91027
|
description?: Maybe<Scalars['String']['output']>;
|
|
90326
91028
|
id: Scalars['ID']['output'];
|
|
@@ -90377,7 +91079,7 @@ export declare type ShepherdDescriptionTemplate = {
|
|
|
90377
91079
|
text?: Maybe<Scalars['JSON']['output']>;
|
|
90378
91080
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
90379
91081
|
};
|
|
90380
|
-
export declare type ShepherdDetection = {
|
|
91082
|
+
export declare type ShepherdDetection = Node & {
|
|
90381
91083
|
__typename?: 'ShepherdDetection';
|
|
90382
91084
|
businessTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
90383
91085
|
category: ShepherdAlertDetectionCategory;
|
|
@@ -90436,7 +91138,7 @@ export declare type ShepherdDetectionScanningInfo = {
|
|
|
90436
91138
|
__typename?: 'ShepherdDetectionScanningInfo';
|
|
90437
91139
|
scanningFrequency: ShepherdDetectionScanningFrequency;
|
|
90438
91140
|
};
|
|
90439
|
-
export declare type ShepherdDetectionSetting = {
|
|
91141
|
+
export declare type ShepherdDetectionSetting = Node & {
|
|
90440
91142
|
__typename?: 'ShepherdDetectionSetting';
|
|
90441
91143
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
90442
91144
|
id: Scalars['ID']['output'];
|
|
@@ -90979,11 +91681,27 @@ export declare type ShepherdSuspiciousSearchTerm = {
|
|
|
90979
91681
|
export declare type ShepherdTeamworkGraphQueries = {
|
|
90980
91682
|
__typename?: 'ShepherdTeamworkGraphQueries';
|
|
90981
91683
|
alerts?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
91684
|
+
customDetections?: Maybe<Array<Maybe<ShepherdCustomDetection>>>;
|
|
91685
|
+
detectionSettings?: Maybe<Array<Maybe<ShepherdDetectionSetting>>>;
|
|
91686
|
+
detections?: Maybe<Array<Maybe<ShepherdDetection>>>;
|
|
91687
|
+
subscriptions?: Maybe<Array<Maybe<ShepherdSubscription>>>;
|
|
90982
91688
|
workspaces?: Maybe<Array<Maybe<ShepherdWorkspace>>>;
|
|
90983
91689
|
};
|
|
90984
91690
|
export declare type ShepherdTeamworkGraphQueriesAlertsArgs = {
|
|
90985
91691
|
ids: Array<Scalars['ID']['input']>;
|
|
90986
91692
|
};
|
|
91693
|
+
export declare type ShepherdTeamworkGraphQueriesCustomDetectionsArgs = {
|
|
91694
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91695
|
+
};
|
|
91696
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionSettingsArgs = {
|
|
91697
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91698
|
+
};
|
|
91699
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionsArgs = {
|
|
91700
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91701
|
+
};
|
|
91702
|
+
export declare type ShepherdTeamworkGraphQueriesSubscriptionsArgs = {
|
|
91703
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91704
|
+
};
|
|
90987
91705
|
export declare type ShepherdTeamworkGraphQueriesWorkspacesArgs = {
|
|
90988
91706
|
ids: Array<Scalars['ID']['input']>;
|
|
90989
91707
|
};
|
|
@@ -91030,7 +91748,6 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
91030
91748
|
callbackURL?: InputMaybe<Scalars['URL']['input']>;
|
|
91031
91749
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
91032
91750
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
91033
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
91034
91751
|
};
|
|
91035
91752
|
export declare type ShepherdUser = {
|
|
91036
91753
|
__typename?: 'ShepherdUser';
|
|
@@ -91060,15 +91777,9 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
91060
91777
|
destinationType: ShepherdWebhookDestinationType;
|
|
91061
91778
|
id: Scalars['ID']['output'];
|
|
91062
91779
|
status: ShepherdSubscriptionStatus;
|
|
91063
|
-
type?: Maybe<ShepherdWebhookType>;
|
|
91064
91780
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
91065
91781
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
91066
91782
|
};
|
|
91067
|
-
export declare enum ShepherdWebhookType {
|
|
91068
|
-
Custom = "CUSTOM",
|
|
91069
|
-
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
91070
|
-
Slack = "SLACK"
|
|
91071
|
-
}
|
|
91072
91783
|
export declare type ShepherdWorkspace = Node & {
|
|
91073
91784
|
__typename?: 'ShepherdWorkspace';
|
|
91074
91785
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
@@ -92404,37 +93115,6 @@ export declare type SpfAttachAskLinkPayload = Payload & {
|
|
|
92404
93115
|
link?: Maybe<SpfAskLink>;
|
|
92405
93116
|
success: Scalars['Boolean']['output'];
|
|
92406
93117
|
};
|
|
92407
|
-
export declare type SpfAttachRelatedContentInput = {
|
|
92408
|
-
dependencyId: Scalars['ID']['input'];
|
|
92409
|
-
url: Scalars['URL']['input'];
|
|
92410
|
-
};
|
|
92411
|
-
export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
92412
|
-
__typename?: 'SpfAttachRelatedContentPayload';
|
|
92413
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92414
|
-
relatedContent?: Maybe<SpfRelatedContent>;
|
|
92415
|
-
success: Scalars['Boolean']['output'];
|
|
92416
|
-
};
|
|
92417
|
-
export declare type SpfComment = {
|
|
92418
|
-
__typename?: 'SpfComment';
|
|
92419
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92420
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
92421
|
-
data: Scalars['String']['output'];
|
|
92422
|
-
dependencyId: Scalars['String']['output'];
|
|
92423
|
-
id: Scalars['ID']['output'];
|
|
92424
|
-
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92425
|
-
};
|
|
92426
|
-
export declare type SpfCommentConnection = {
|
|
92427
|
-
__typename?: 'SpfCommentConnection';
|
|
92428
|
-
edges?: Maybe<Array<Maybe<SpfCommentEdge>>>;
|
|
92429
|
-
pageInfo: PageInfo;
|
|
92430
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92431
|
-
};
|
|
92432
|
-
export declare type SpfCommentEdge = {
|
|
92433
|
-
__typename?: 'SpfCommentEdge';
|
|
92434
|
-
cursor: Scalars['String']['output'];
|
|
92435
|
-
node?: Maybe<SpfCommentResult>;
|
|
92436
|
-
};
|
|
92437
|
-
export declare type SpfCommentResult = QueryError | SpfComment;
|
|
92438
93118
|
export declare type SpfCreateAskCommentInput = {
|
|
92439
93119
|
askId: Scalars['ID']['input'];
|
|
92440
93120
|
data: Scalars['String']['input'];
|
|
@@ -92465,36 +93145,6 @@ export declare type SpfCreateAskPayload = Payload & {
|
|
|
92465
93145
|
errors?: Maybe<Array<MutationError>>;
|
|
92466
93146
|
success: Scalars['Boolean']['output'];
|
|
92467
93147
|
};
|
|
92468
|
-
export declare type SpfCreateCommentInput = {
|
|
92469
|
-
data: Scalars['String']['input'];
|
|
92470
|
-
dependencyId: Scalars['ID']['input'];
|
|
92471
|
-
};
|
|
92472
|
-
export declare type SpfCreateCommentPayload = Payload & {
|
|
92473
|
-
__typename?: 'SpfCreateCommentPayload';
|
|
92474
|
-
comment?: Maybe<SpfComment>;
|
|
92475
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92476
|
-
success: Scalars['Boolean']['output'];
|
|
92477
|
-
};
|
|
92478
|
-
export declare type SpfCreateDependencyInput = {
|
|
92479
|
-
cloudId: Scalars['ID']['input'];
|
|
92480
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
92481
|
-
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
92482
|
-
justification?: InputMaybe<Scalars['String']['input']>;
|
|
92483
|
-
name: Scalars['String']['input'];
|
|
92484
|
-
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
92485
|
-
priority: SpfPriority;
|
|
92486
|
-
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92487
|
-
status: SpfDependencyStatus;
|
|
92488
|
-
submitterId: Scalars['String']['input'];
|
|
92489
|
-
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92490
|
-
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
92491
|
-
};
|
|
92492
|
-
export declare type SpfCreateDependencyPayload = Payload & {
|
|
92493
|
-
__typename?: 'SpfCreateDependencyPayload';
|
|
92494
|
-
dependency?: Maybe<SpfDependency>;
|
|
92495
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92496
|
-
success: Scalars['Boolean']['output'];
|
|
92497
|
-
};
|
|
92498
93148
|
export declare type SpfDeleteAskCommentInput = {
|
|
92499
93149
|
id: Scalars['ID']['input'];
|
|
92500
93150
|
};
|
|
@@ -92522,115 +93172,7 @@ export declare type SpfDeleteAskPayload = Payload & {
|
|
|
92522
93172
|
id: Scalars['ID']['output'];
|
|
92523
93173
|
success: Scalars['Boolean']['output'];
|
|
92524
93174
|
};
|
|
92525
|
-
export declare type SpfDeleteDependencyInput = {
|
|
92526
|
-
id: Scalars['ID']['input'];
|
|
92527
|
-
};
|
|
92528
|
-
export declare type SpfDeleteDependencyPayload = Payload & {
|
|
92529
|
-
__typename?: 'SpfDeleteDependencyPayload';
|
|
92530
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92531
|
-
success: Scalars['Boolean']['output'];
|
|
92532
|
-
};
|
|
92533
|
-
export declare type SpfDependency = Node & {
|
|
92534
|
-
__typename?: 'SpfDependency';
|
|
92535
|
-
comments?: Maybe<SpfCommentConnection>;
|
|
92536
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92537
|
-
createdBy?: Maybe<User>;
|
|
92538
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
92539
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
92540
|
-
id: Scalars['ID']['output'];
|
|
92541
|
-
impactedWork?: Maybe<SpfImpactedWork>;
|
|
92542
|
-
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
92543
|
-
justification?: Maybe<Scalars['String']['output']>;
|
|
92544
|
-
name: Scalars['String']['output'];
|
|
92545
|
-
owner?: Maybe<User>;
|
|
92546
|
-
ownerId?: Maybe<Scalars['String']['output']>;
|
|
92547
|
-
priority: SpfPriority;
|
|
92548
|
-
receivingTeam?: Maybe<TeamV2>;
|
|
92549
|
-
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
92550
|
-
relatedContent?: Maybe<SpfRelatedContentConnection>;
|
|
92551
|
-
status: SpfDependencyStatus;
|
|
92552
|
-
submitter?: Maybe<User>;
|
|
92553
|
-
submitterId: Scalars['String']['output'];
|
|
92554
|
-
submittingTeam?: Maybe<TeamV2>;
|
|
92555
|
-
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
92556
|
-
targetDate?: Maybe<SpfTargetDate>;
|
|
92557
|
-
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92558
|
-
updatedBy?: Maybe<User>;
|
|
92559
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
92560
|
-
};
|
|
92561
|
-
export declare type SpfDependencyCommentsArgs = {
|
|
92562
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
92563
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92564
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
92565
|
-
};
|
|
92566
|
-
export declare type SpfDependencyRelatedContentArgs = {
|
|
92567
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
92568
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92569
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
92570
|
-
};
|
|
92571
|
-
export declare type SpfDependencyConnection = {
|
|
92572
|
-
__typename?: 'SpfDependencyConnection';
|
|
92573
|
-
edges?: Maybe<Array<Maybe<SpfDependencyEdge>>>;
|
|
92574
|
-
pageInfo: PageInfo;
|
|
92575
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92576
|
-
};
|
|
92577
|
-
export declare type SpfDependencyEdge = {
|
|
92578
|
-
__typename?: 'SpfDependencyEdge';
|
|
92579
|
-
cursor: Scalars['String']['output'];
|
|
92580
|
-
node?: Maybe<SpfDependencyResult>;
|
|
92581
|
-
};
|
|
92582
|
-
export declare type SpfDependencyResult = QueryError | SpfDependency;
|
|
92583
|
-
export declare enum SpfDependencyStatus {
|
|
92584
|
-
Accepted = "ACCEPTED",
|
|
92585
|
-
Canceled = "CANCELED",
|
|
92586
|
-
Denied = "DENIED",
|
|
92587
|
-
Draft = "DRAFT",
|
|
92588
|
-
InReview = "IN_REVIEW",
|
|
92589
|
-
Revising = "REVISING",
|
|
92590
|
-
Submitted = "SUBMITTED"
|
|
92591
|
-
}
|
|
92592
93175
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
92593
|
-
export declare enum SpfPriority {
|
|
92594
|
-
Critical = "CRITICAL",
|
|
92595
|
-
High = "HIGH",
|
|
92596
|
-
Highest = "HIGHEST",
|
|
92597
|
-
Low = "LOW",
|
|
92598
|
-
Medium = "MEDIUM"
|
|
92599
|
-
}
|
|
92600
|
-
export declare type SpfRelatedContent = {
|
|
92601
|
-
__typename?: 'SpfRelatedContent';
|
|
92602
|
-
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
92603
|
-
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
92604
|
-
dependencyId: Scalars['String']['output'];
|
|
92605
|
-
id: Scalars['ID']['output'];
|
|
92606
|
-
url: Scalars['URL']['output'];
|
|
92607
|
-
};
|
|
92608
|
-
export declare type SpfRelatedContentConnection = {
|
|
92609
|
-
__typename?: 'SpfRelatedContentConnection';
|
|
92610
|
-
edges?: Maybe<Array<Maybe<SpfRelatedContentEdge>>>;
|
|
92611
|
-
pageInfo: PageInfo;
|
|
92612
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92613
|
-
};
|
|
92614
|
-
export declare type SpfRelatedContentEdge = {
|
|
92615
|
-
__typename?: 'SpfRelatedContentEdge';
|
|
92616
|
-
cursor: Scalars['String']['output'];
|
|
92617
|
-
node?: Maybe<SpfRelatedContentResult>;
|
|
92618
|
-
};
|
|
92619
|
-
export declare type SpfRelatedContentResult = QueryError | SpfRelatedContent;
|
|
92620
|
-
export declare type SpfTargetDate = {
|
|
92621
|
-
__typename?: 'SpfTargetDate';
|
|
92622
|
-
targetDate?: Maybe<Scalars['String']['output']>;
|
|
92623
|
-
targetDateType?: Maybe<SpfTargetDateType>;
|
|
92624
|
-
};
|
|
92625
|
-
export declare type SpfTargetDateInput = {
|
|
92626
|
-
targetDate: Scalars['String']['input'];
|
|
92627
|
-
targetDateType: SpfTargetDateType;
|
|
92628
|
-
};
|
|
92629
|
-
export declare enum SpfTargetDateType {
|
|
92630
|
-
Day = "DAY",
|
|
92631
|
-
Month = "MONTH",
|
|
92632
|
-
Quarter = "QUARTER"
|
|
92633
|
-
}
|
|
92634
93176
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
92635
93177
|
data: Scalars['String']['input'];
|
|
92636
93178
|
id: Scalars['ID']['input'];
|
|
@@ -92683,66 +93225,6 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
92683
93225
|
id: Scalars['ID']['input'];
|
|
92684
93226
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92685
93227
|
};
|
|
92686
|
-
export declare type SpfUpdateCommentDataInput = {
|
|
92687
|
-
data: Scalars['String']['input'];
|
|
92688
|
-
id: Scalars['ID']['input'];
|
|
92689
|
-
};
|
|
92690
|
-
export declare type SpfUpdateCommentPayload = Payload & {
|
|
92691
|
-
__typename?: 'SpfUpdateCommentPayload';
|
|
92692
|
-
comment?: Maybe<SpfComment>;
|
|
92693
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92694
|
-
success: Scalars['Boolean']['output'];
|
|
92695
|
-
};
|
|
92696
|
-
export declare type SpfUpdateDependencyDescriptionInput = {
|
|
92697
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
92698
|
-
id: Scalars['ID']['input'];
|
|
92699
|
-
};
|
|
92700
|
-
export declare type SpfUpdateDependencyImpactedWorkInput = {
|
|
92701
|
-
id: Scalars['ID']['input'];
|
|
92702
|
-
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
92703
|
-
};
|
|
92704
|
-
export declare type SpfUpdateDependencyJustificationInput = {
|
|
92705
|
-
id: Scalars['ID']['input'];
|
|
92706
|
-
justification?: InputMaybe<Scalars['String']['input']>;
|
|
92707
|
-
};
|
|
92708
|
-
export declare type SpfUpdateDependencyNameInput = {
|
|
92709
|
-
id: Scalars['ID']['input'];
|
|
92710
|
-
name: Scalars['String']['input'];
|
|
92711
|
-
};
|
|
92712
|
-
export declare type SpfUpdateDependencyOwnerInput = {
|
|
92713
|
-
id: Scalars['ID']['input'];
|
|
92714
|
-
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
92715
|
-
};
|
|
92716
|
-
export declare type SpfUpdateDependencyPayload = Payload & {
|
|
92717
|
-
__typename?: 'SpfUpdateDependencyPayload';
|
|
92718
|
-
dependency?: Maybe<SpfDependency>;
|
|
92719
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92720
|
-
success: Scalars['Boolean']['output'];
|
|
92721
|
-
};
|
|
92722
|
-
export declare type SpfUpdateDependencyPriorityInput = {
|
|
92723
|
-
id: Scalars['ID']['input'];
|
|
92724
|
-
priority: SpfPriority;
|
|
92725
|
-
};
|
|
92726
|
-
export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
92727
|
-
id: Scalars['ID']['input'];
|
|
92728
|
-
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92729
|
-
};
|
|
92730
|
-
export declare type SpfUpdateDependencyStatusInput = {
|
|
92731
|
-
id: Scalars['ID']['input'];
|
|
92732
|
-
status: SpfDependencyStatus;
|
|
92733
|
-
};
|
|
92734
|
-
export declare type SpfUpdateDependencySubmitterInput = {
|
|
92735
|
-
id: Scalars['ID']['input'];
|
|
92736
|
-
submitterId: Scalars['String']['input'];
|
|
92737
|
-
};
|
|
92738
|
-
export declare type SpfUpdateDependencySubmittingTeamInput = {
|
|
92739
|
-
id: Scalars['ID']['input'];
|
|
92740
|
-
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92741
|
-
};
|
|
92742
|
-
export declare type SpfUpdateDependencyTargetDateInput = {
|
|
92743
|
-
id: Scalars['ID']['input'];
|
|
92744
|
-
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
92745
|
-
};
|
|
92746
93228
|
export declare type SplitIssueInput = {
|
|
92747
93229
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
92748
93230
|
originalIssue: OriginalSplitIssue;
|
|
@@ -93563,6 +94045,7 @@ export declare type SupportRequestTransitionInput = {
|
|
|
93563
94045
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
93564
94046
|
requestKey: Scalars['String']['input'];
|
|
93565
94047
|
transitionId: Scalars['ID']['input'];
|
|
94048
|
+
transitionName?: InputMaybe<Scalars['String']['input']>;
|
|
93566
94049
|
};
|
|
93567
94050
|
export declare type SupportRequestTransitions = {
|
|
93568
94051
|
__typename?: 'SupportRequestTransitions';
|
|
@@ -99857,6 +100340,19 @@ export declare type UpdateJiraPlaybookInput = {
|
|
|
99857
100340
|
state?: InputMaybe<JiraPlaybookStateField>;
|
|
99858
100341
|
steps: Array<UpdateJiraPlaybookStepInput>;
|
|
99859
100342
|
};
|
|
100343
|
+
export declare type UpdateJiraPlaybookLabelInput = {
|
|
100344
|
+
id: Scalars['ID']['input'];
|
|
100345
|
+
name: Scalars['String']['input'];
|
|
100346
|
+
property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
|
|
100347
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
100348
|
+
scopeType: JiraPlaybookScopeType;
|
|
100349
|
+
};
|
|
100350
|
+
export declare type UpdateJiraPlaybookLabelPayload = Payload & {
|
|
100351
|
+
__typename?: 'UpdateJiraPlaybookLabelPayload';
|
|
100352
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100353
|
+
label?: Maybe<JiraPlaybookLabel>;
|
|
100354
|
+
success: Scalars['Boolean']['output'];
|
|
100355
|
+
};
|
|
99860
100356
|
export declare type UpdateJiraPlaybookPayload = Payload & {
|
|
99861
100357
|
__typename?: 'UpdateJiraPlaybookPayload';
|
|
99862
100358
|
errors?: Maybe<Array<MutationError>>;
|