@forge/cli-shared 8.0.1-next.5 → 8.1.0-next.7
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 +18 -0
- package/out/apps/create-an-app.d.ts +1 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +4 -1
- package/out/graphql/graphql-types.d.ts +622 -335
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +48 -48
- 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 +2 -2
|
@@ -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'];
|
|
@@ -1785,12 +1800,42 @@ export declare type AppContainerInput = {
|
|
|
1785
1800
|
appId: Scalars['ID']['input'];
|
|
1786
1801
|
containerKey: Scalars['String']['input'];
|
|
1787
1802
|
};
|
|
1803
|
+
export declare type AppContainerInstance = {
|
|
1804
|
+
__typename?: 'AppContainerInstance';
|
|
1805
|
+
containerStatus?: Maybe<Scalars['String']['output']>;
|
|
1806
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1807
|
+
healthStatus?: Maybe<Scalars['String']['output']>;
|
|
1808
|
+
id: Scalars['ID']['output'];
|
|
1809
|
+
imageURI?: Maybe<Scalars['String']['output']>;
|
|
1810
|
+
};
|
|
1811
|
+
export declare type AppContainerInstances = {
|
|
1812
|
+
__typename?: 'AppContainerInstances';
|
|
1813
|
+
instances?: Maybe<Array<AppContainerInstance>>;
|
|
1814
|
+
key: Scalars['ID']['output'];
|
|
1815
|
+
};
|
|
1788
1816
|
export declare type AppContainerRegistryLogin = {
|
|
1789
1817
|
__typename?: 'AppContainerRegistryLogin';
|
|
1790
1818
|
endpoint: Scalars['String']['output'];
|
|
1791
1819
|
password: Scalars['String']['output'];
|
|
1792
1820
|
username: Scalars['String']['output'];
|
|
1793
1821
|
};
|
|
1822
|
+
export declare type AppContainerService = {
|
|
1823
|
+
__typename?: 'AppContainerService';
|
|
1824
|
+
containers?: Maybe<Array<AppContainerInstances>>;
|
|
1825
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1826
|
+
key: Scalars['ID']['output'];
|
|
1827
|
+
maxCount?: Maybe<Scalars['String']['output']>;
|
|
1828
|
+
minCount?: Maybe<Scalars['String']['output']>;
|
|
1829
|
+
pendingCount?: Maybe<Scalars['String']['output']>;
|
|
1830
|
+
runningCount?: Maybe<Scalars['String']['output']>;
|
|
1831
|
+
serviceStatus?: Maybe<Scalars['String']['output']>;
|
|
1832
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
1833
|
+
versionStatus?: Maybe<Scalars['String']['output']>;
|
|
1834
|
+
};
|
|
1835
|
+
export declare type AppContainerServices = {
|
|
1836
|
+
__typename?: 'AppContainerServices';
|
|
1837
|
+
services?: Maybe<Array<AppContainerService>>;
|
|
1838
|
+
};
|
|
1794
1839
|
export declare type AppContributor = {
|
|
1795
1840
|
__typename?: 'AppContributor';
|
|
1796
1841
|
accountId: Scalars['String']['output'];
|
|
@@ -3069,6 +3114,119 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
3069
3114
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
3070
3115
|
title: Scalars['String']['output'];
|
|
3071
3116
|
};
|
|
3117
|
+
export declare type AssetsDmAdapter = {
|
|
3118
|
+
__typename?: 'AssetsDMAdapter';
|
|
3119
|
+
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
3120
|
+
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
3121
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
3122
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
3123
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3124
|
+
vendor?: Maybe<Scalars['String']['output']>;
|
|
3125
|
+
};
|
|
3126
|
+
export declare type AssetsDmAdapters = {
|
|
3127
|
+
__typename?: 'AssetsDMAdapters';
|
|
3128
|
+
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3129
|
+
product?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3130
|
+
};
|
|
3131
|
+
export declare type AssetsDmAutoColumnMappingInput = {
|
|
3132
|
+
delimiter?: InputMaybe<Scalars['String']['input']>;
|
|
3133
|
+
header?: InputMaybe<Scalars['String']['input']>;
|
|
3134
|
+
};
|
|
3135
|
+
export declare type AssetsDmAutoColumnMappingResponse = {
|
|
3136
|
+
__typename?: 'AssetsDMAutoColumnMappingResponse';
|
|
3137
|
+
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
3138
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3139
|
+
returnValue?: Maybe<Array<Maybe<AssetsDmMappedColumn>>>;
|
|
3140
|
+
};
|
|
3141
|
+
export declare type AssetsDmDataSource = {
|
|
3142
|
+
__typename?: 'AssetsDMDataSource';
|
|
3143
|
+
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
3144
|
+
dataSourceName?: Maybe<Scalars['String']['output']>;
|
|
3145
|
+
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
3146
|
+
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
3147
|
+
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
3148
|
+
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
3149
|
+
statusText?: Maybe<Scalars['String']['output']>;
|
|
3150
|
+
};
|
|
3151
|
+
export declare type AssetsDmDataSourceFormFields = {
|
|
3152
|
+
__typename?: 'AssetsDMDataSourceFormFields';
|
|
3153
|
+
dataSourceTypes: AssetsDmDataSourceTypesConnection;
|
|
3154
|
+
dateFormats: Array<AssetsDmDateFormats>;
|
|
3155
|
+
};
|
|
3156
|
+
export declare type AssetsDmDataSourceFormFieldsDataSourceTypesArgs = {
|
|
3157
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3158
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3159
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
3160
|
+
};
|
|
3161
|
+
export declare type AssetsDmDataSourceInput = {
|
|
3162
|
+
adapterType: Scalars['String']['input'];
|
|
3163
|
+
configuration: Scalars['JSON']['input'];
|
|
3164
|
+
objectClassType: AssetsDmObjectClassEnum;
|
|
3165
|
+
};
|
|
3166
|
+
export declare type AssetsDmDataSourceResponse = {
|
|
3167
|
+
__typename?: 'AssetsDMDataSourceResponse';
|
|
3168
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3169
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3170
|
+
success: Scalars['Boolean']['output'];
|
|
3171
|
+
};
|
|
3172
|
+
export declare type AssetsDmDataSourceTypes = {
|
|
3173
|
+
__typename?: 'AssetsDMDataSourceTypes';
|
|
3174
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
3175
|
+
defaultGap: Scalars['Int']['output'];
|
|
3176
|
+
name: Scalars['String']['output'];
|
|
3177
|
+
tenantId: Scalars['String']['output'];
|
|
3178
|
+
};
|
|
3179
|
+
export declare type AssetsDmDataSourceTypesConnection = {
|
|
3180
|
+
__typename?: 'AssetsDMDataSourceTypesConnection';
|
|
3181
|
+
nodes: Array<AssetsDmDataSourceTypes>;
|
|
3182
|
+
pageInfo: PageInfo;
|
|
3183
|
+
totalCount: Scalars['Int']['output'];
|
|
3184
|
+
};
|
|
3185
|
+
export declare type AssetsDmDateFormats = {
|
|
3186
|
+
__typename?: 'AssetsDMDateFormats';
|
|
3187
|
+
createdBy: Scalars['String']['output'];
|
|
3188
|
+
dateFormatId: Scalars['ID']['output'];
|
|
3189
|
+
format: Scalars['String']['output'];
|
|
3190
|
+
name: Scalars['String']['output'];
|
|
3191
|
+
tenantId: Scalars['String']['output'];
|
|
3192
|
+
};
|
|
3193
|
+
export declare type AssetsDmGenerateAdapterTokenInput = {
|
|
3194
|
+
adapterType: Scalars['String']['input'];
|
|
3195
|
+
password: Scalars['String']['input'];
|
|
3196
|
+
username: Scalars['String']['input'];
|
|
3197
|
+
};
|
|
3198
|
+
export declare type AssetsDmGenerateAdapterTokenResponse = {
|
|
3199
|
+
__typename?: 'AssetsDMGenerateAdapterTokenResponse';
|
|
3200
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3201
|
+
success: Scalars['Boolean']['output'];
|
|
3202
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
3203
|
+
};
|
|
3204
|
+
export declare type AssetsDmMappedColumn = {
|
|
3205
|
+
__typename?: 'AssetsDMMappedColumn';
|
|
3206
|
+
columnMappingId?: Maybe<Scalars['ID']['output']>;
|
|
3207
|
+
columnType?: Maybe<Scalars['Int']['output']>;
|
|
3208
|
+
dateFormatId?: Maybe<Scalars['String']['output']>;
|
|
3209
|
+
destinationColumnName?: Maybe<Scalars['String']['output']>;
|
|
3210
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
3211
|
+
sourceColumnName?: Maybe<Scalars['String']['output']>;
|
|
3212
|
+
};
|
|
3213
|
+
export declare type AssetsDmObjectClass = {
|
|
3214
|
+
__typename?: 'AssetsDMObjectClass';
|
|
3215
|
+
allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
|
|
3216
|
+
computedIssuesCount?: Maybe<Scalars['String']['output']>;
|
|
3217
|
+
dataSources?: Maybe<Array<Maybe<AssetsDmDataSource>>>;
|
|
3218
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3219
|
+
objectId?: Maybe<Scalars['String']['output']>;
|
|
3220
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
3221
|
+
uniqueRecordsCount?: Maybe<Scalars['String']['output']>;
|
|
3222
|
+
};
|
|
3223
|
+
export declare enum AssetsDmObjectClassEnum {
|
|
3224
|
+
Compute = "Compute",
|
|
3225
|
+
Network = "Network",
|
|
3226
|
+
People = "People",
|
|
3227
|
+
Peripherals = "Peripherals",
|
|
3228
|
+
Software = "Software"
|
|
3229
|
+
}
|
|
3072
3230
|
export declare type AssignIssueParentInput = {
|
|
3073
3231
|
boardId: Scalars['ID']['input'];
|
|
3074
3232
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -6622,6 +6780,7 @@ export declare type CompassCampaignQuery = {
|
|
|
6622
6780
|
sort?: InputMaybe<CompassCampaignQuerySort>;
|
|
6623
6781
|
};
|
|
6624
6782
|
export declare type CompassCampaignQueryFilter = {
|
|
6783
|
+
componentId?: InputMaybe<Scalars['ID']['input']>;
|
|
6625
6784
|
createdByUserId?: InputMaybe<Scalars['ID']['input']>;
|
|
6626
6785
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
6627
6786
|
};
|
|
@@ -7061,7 +7220,6 @@ export declare type CompassCatalogQueryApi = {
|
|
|
7061
7220
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
7062
7221
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
7063
7222
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
7064
|
-
topScorecards?: Maybe<CompassScorecardConnection>;
|
|
7065
7223
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
7066
7224
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
7067
7225
|
};
|
|
@@ -7226,12 +7384,6 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
7226
7384
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
7227
7385
|
input: CompassTeamDataInput;
|
|
7228
7386
|
};
|
|
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
7387
|
export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
7236
7388
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7237
7389
|
componentId: Scalars['ID']['input'];
|
|
@@ -11059,16 +11211,6 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
11059
11211
|
cursor: Scalars['String']['output'];
|
|
11060
11212
|
node?: Maybe<CompassTeamMetricSource>;
|
|
11061
11213
|
};
|
|
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
11214
|
export declare type CompassUnsetEntityPropertyInput = {
|
|
11073
11215
|
cloudId: Scalars['ID']['input'];
|
|
11074
11216
|
key: Scalars['String']['input'];
|
|
@@ -14100,6 +14242,7 @@ export declare enum ContainerType {
|
|
|
14100
14242
|
}
|
|
14101
14243
|
export declare type Content = {
|
|
14102
14244
|
__typename?: 'Content';
|
|
14245
|
+
aiProperty?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
14103
14246
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
14104
14247
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
14105
14248
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -14171,6 +14314,11 @@ export declare type Content = {
|
|
|
14171
14314
|
version?: Maybe<Version>;
|
|
14172
14315
|
visibleDescendantsCount: Scalars['Long']['output'];
|
|
14173
14316
|
};
|
|
14317
|
+
export declare type ContentAiPropertyArgs = {
|
|
14318
|
+
cloudId: Scalars['String']['input'];
|
|
14319
|
+
contentType: KnowledgeGraphContentType;
|
|
14320
|
+
objectType: KnowledgeGraphObjectType;
|
|
14321
|
+
};
|
|
14174
14322
|
export declare type ContentAttachmentsArgs = {
|
|
14175
14323
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14176
14324
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16111,6 +16259,36 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
16111
16259
|
isValid: Scalars['Boolean']['output'];
|
|
16112
16260
|
message?: Maybe<Scalars['String']['output']>;
|
|
16113
16261
|
};
|
|
16262
|
+
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
16263
|
+
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
16264
|
+
entity?: Maybe<ConfluenceBlogPost>;
|
|
16265
|
+
id: Scalars['ID']['output'];
|
|
16266
|
+
suggestionSources: Array<Scalars['String']['output']>;
|
|
16267
|
+
url: Scalars['String']['output'];
|
|
16268
|
+
};
|
|
16269
|
+
export declare type ConvoAiJiraConfluencePageSuggestion = {
|
|
16270
|
+
__typename?: 'ConvoAiJiraConfluencePageSuggestion';
|
|
16271
|
+
entity?: Maybe<ConfluencePage>;
|
|
16272
|
+
id: Scalars['ID']['output'];
|
|
16273
|
+
suggestionSources: Array<Scalars['String']['output']>;
|
|
16274
|
+
url: Scalars['String']['output'];
|
|
16275
|
+
};
|
|
16276
|
+
export declare type ConvoAiJiraIssueRelatedResourcesResult = {
|
|
16277
|
+
__typename?: 'ConvoAiJiraIssueRelatedResourcesResult';
|
|
16278
|
+
edges?: Maybe<Array<ConvoAiJiraRelatedResourcesEdge>>;
|
|
16279
|
+
errors?: Maybe<Array<QueryError>>;
|
|
16280
|
+
pageInfo: PageInfo;
|
|
16281
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16282
|
+
};
|
|
16283
|
+
export declare type ConvoAiJiraRelatedResourceSuggestion = ConvoAiJiraConfluenceBlogSuggestion | ConvoAiJiraConfluencePageSuggestion;
|
|
16284
|
+
export declare type ConvoAiJiraRelatedResourcesEdge = {
|
|
16285
|
+
__typename?: 'ConvoAiJiraRelatedResourcesEdge';
|
|
16286
|
+
cursor: Scalars['String']['output'];
|
|
16287
|
+
node?: Maybe<ConvoAiJiraRelatedResourceSuggestion>;
|
|
16288
|
+
};
|
|
16289
|
+
export declare type ConvoAiJiraSearchSourcesInput = {
|
|
16290
|
+
confluenceSiteAri: Scalars['ID']['input'];
|
|
16291
|
+
};
|
|
16114
16292
|
export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
16115
16293
|
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
16116
16294
|
id: Scalars['ID']['output'];
|
|
@@ -19279,6 +19457,23 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
19279
19457
|
Starting = "STARTING",
|
|
19280
19458
|
Stopped = "STOPPED"
|
|
19281
19459
|
}
|
|
19460
|
+
export declare type DevAiFlowRepository = {
|
|
19461
|
+
__typename?: 'DevAiFlowRepository';
|
|
19462
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
19463
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19464
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19465
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19466
|
+
};
|
|
19467
|
+
export declare type DevAiFlowRepositoryConnection = {
|
|
19468
|
+
__typename?: 'DevAiFlowRepositoryConnection';
|
|
19469
|
+
edges?: Maybe<Array<Maybe<DevAiFlowRepositoryEdge>>>;
|
|
19470
|
+
pageInfo: PageInfo;
|
|
19471
|
+
};
|
|
19472
|
+
export declare type DevAiFlowRepositoryEdge = {
|
|
19473
|
+
__typename?: 'DevAiFlowRepositoryEdge';
|
|
19474
|
+
cursor: Scalars['String']['output'];
|
|
19475
|
+
node?: Maybe<DevAiFlowRepository>;
|
|
19476
|
+
};
|
|
19282
19477
|
export declare type DevAiFlowSession = {
|
|
19283
19478
|
__typename?: 'DevAiFlowSession';
|
|
19284
19479
|
additionalInfoJSON?: Maybe<Scalars['String']['output']>;
|
|
@@ -19302,12 +19497,23 @@ export declare type DevAiFlowSessionCompletePayload = Payload & {
|
|
|
19302
19497
|
errors?: Maybe<Array<MutationError>>;
|
|
19303
19498
|
success: Scalars['Boolean']['output'];
|
|
19304
19499
|
};
|
|
19500
|
+
export declare type DevAiFlowSessionConnection = {
|
|
19501
|
+
__typename?: 'DevAiFlowSessionConnection';
|
|
19502
|
+
edges?: Maybe<Array<Maybe<DevAiFlowSessionEdge>>>;
|
|
19503
|
+
nodes?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
19504
|
+
pageInfo: PageInfo;
|
|
19505
|
+
};
|
|
19305
19506
|
export declare type DevAiFlowSessionCreatePayload = Payload & {
|
|
19306
19507
|
__typename?: 'DevAiFlowSessionCreatePayload';
|
|
19307
19508
|
data?: Maybe<DevAiFlowSession>;
|
|
19308
19509
|
errors?: Maybe<Array<MutationError>>;
|
|
19309
19510
|
success: Scalars['Boolean']['output'];
|
|
19310
19511
|
};
|
|
19512
|
+
export declare type DevAiFlowSessionEdge = {
|
|
19513
|
+
__typename?: 'DevAiFlowSessionEdge';
|
|
19514
|
+
cursor: Scalars['String']['output'];
|
|
19515
|
+
node?: Maybe<DevAiFlowSession>;
|
|
19516
|
+
};
|
|
19311
19517
|
export declare enum DevAiFlowSessionsStatus {
|
|
19312
19518
|
Completed = "COMPLETED",
|
|
19313
19519
|
Failed = "FAILED",
|
|
@@ -28728,12 +28934,16 @@ export declare type GraphStore = {
|
|
|
28728
28934
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28729
28935
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28730
28936
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28937
|
+
userSnapshottedConfluencePage?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageConnection>;
|
|
28938
|
+
userSnapshottedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection>;
|
|
28731
28939
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28732
28940
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28733
28941
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
28734
28942
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
28735
28943
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
28736
28944
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
28945
|
+
userTrashedConfluenceContent?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentConnection>;
|
|
28946
|
+
userTrashedConfluenceContentInverse?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection>;
|
|
28737
28947
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28738
28948
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28739
28949
|
userUpdatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalConnection>;
|
|
@@ -33140,6 +33350,20 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
33140
33350
|
id: Scalars['ID']['input'];
|
|
33141
33351
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
33142
33352
|
};
|
|
33353
|
+
export declare type GraphStoreUserSnapshottedConfluencePageArgs = {
|
|
33354
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33355
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33356
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33357
|
+
id: Scalars['ID']['input'];
|
|
33358
|
+
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
33359
|
+
};
|
|
33360
|
+
export declare type GraphStoreUserSnapshottedConfluencePageInverseArgs = {
|
|
33361
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33362
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33364
|
+
id: Scalars['ID']['input'];
|
|
33365
|
+
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
33366
|
+
};
|
|
33143
33367
|
export declare type GraphStoreUserTaggedInCommentArgs = {
|
|
33144
33368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33145
33369
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33182,6 +33406,20 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
33182
33406
|
id: Scalars['ID']['input'];
|
|
33183
33407
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
33184
33408
|
};
|
|
33409
|
+
export declare type GraphStoreUserTrashedConfluenceContentArgs = {
|
|
33410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33411
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33413
|
+
id: Scalars['ID']['input'];
|
|
33414
|
+
sort?: InputMaybe<GraphStoreUserTrashedConfluenceContentSortInput>;
|
|
33415
|
+
};
|
|
33416
|
+
export declare type GraphStoreUserTrashedConfluenceContentInverseArgs = {
|
|
33417
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33418
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33419
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33420
|
+
id: Scalars['ID']['input'];
|
|
33421
|
+
sort?: InputMaybe<GraphStoreUserTrashedConfluenceContentSortInput>;
|
|
33422
|
+
};
|
|
33185
33423
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
33186
33424
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33187
33425
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35261,7 +35499,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35261
35499
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35262
35500
|
id: Scalars['ID']['output'];
|
|
35263
35501
|
};
|
|
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 |
|
|
35502
|
+
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
35503
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
35266
35504
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
35267
35505
|
value: Scalars['Int']['output'];
|
|
@@ -35296,7 +35534,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
35296
35534
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
35297
35535
|
id: Scalars['ID']['output'];
|
|
35298
35536
|
};
|
|
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 |
|
|
35537
|
+
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
35538
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
35301
35539
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
35302
35540
|
value: Scalars['String']['output'];
|
|
@@ -35306,19 +35544,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35306
35544
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35307
35545
|
id: Scalars['ID']['output'];
|
|
35308
35546
|
};
|
|
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 |
|
|
35547
|
+
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
35548
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
35311
35549
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
35312
35550
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
35313
35551
|
id: Scalars['ID']['output'];
|
|
35314
35552
|
};
|
|
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 |
|
|
35553
|
+
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
35554
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
35317
35555
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
35318
35556
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
35319
35557
|
id: Scalars['ID']['output'];
|
|
35320
35558
|
};
|
|
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 |
|
|
35559
|
+
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
35560
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
35323
35561
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
35324
35562
|
value: Scalars['Boolean']['output'];
|
|
@@ -35417,7 +35655,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
35417
35655
|
V2 = "V2",
|
|
35418
35656
|
V3 = "V3"
|
|
35419
35657
|
}
|
|
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 |
|
|
35658
|
+
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
35659
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35422
35660
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35423
35661
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -47321,6 +47559,34 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
47321
47559
|
};
|
|
47322
47560
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47323
47561
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47562
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
47563
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
47564
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageEdge>>>;
|
|
47565
|
+
pageInfo: PageInfo;
|
|
47566
|
+
};
|
|
47567
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageEdge = {
|
|
47568
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageEdge';
|
|
47569
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47570
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47571
|
+
id: Scalars['ID']['output'];
|
|
47572
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47573
|
+
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageUnion>;
|
|
47574
|
+
};
|
|
47575
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection = HasPageInfo & {
|
|
47576
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection';
|
|
47577
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge>>>;
|
|
47578
|
+
pageInfo: PageInfo;
|
|
47579
|
+
};
|
|
47580
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge = {
|
|
47581
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge';
|
|
47582
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47583
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47584
|
+
id: Scalars['ID']['output'];
|
|
47585
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47586
|
+
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion>;
|
|
47587
|
+
};
|
|
47588
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47589
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageUnion = ConfluencePage;
|
|
47324
47590
|
export declare type GraphStoreSimplifiedUserTaggedInCommentConnection = HasPageInfo & {
|
|
47325
47591
|
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentConnection';
|
|
47326
47592
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentEdge>>>;
|
|
@@ -47405,6 +47671,34 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
47405
47671
|
};
|
|
47406
47672
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47407
47673
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
47674
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentConnection = HasPageInfo & {
|
|
47675
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentConnection';
|
|
47676
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentEdge>>>;
|
|
47677
|
+
pageInfo: PageInfo;
|
|
47678
|
+
};
|
|
47679
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentEdge = {
|
|
47680
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentEdge';
|
|
47681
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47682
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47683
|
+
id: Scalars['ID']['output'];
|
|
47684
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47685
|
+
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentUnion>;
|
|
47686
|
+
};
|
|
47687
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection = HasPageInfo & {
|
|
47688
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection';
|
|
47689
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge>>>;
|
|
47690
|
+
pageInfo: PageInfo;
|
|
47691
|
+
};
|
|
47692
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge = {
|
|
47693
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge';
|
|
47694
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47695
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47696
|
+
id: Scalars['ID']['output'];
|
|
47697
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47698
|
+
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion>;
|
|
47699
|
+
};
|
|
47700
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47701
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentUnion = ConfluenceBlogPost | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
47408
47702
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
47409
47703
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
47410
47704
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -48992,6 +49286,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
48992
49286
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
48993
49287
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48994
49288
|
};
|
|
49289
|
+
export declare type GraphStoreUserSnapshottedConfluencePageSortInput = {
|
|
49290
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49291
|
+
};
|
|
48995
49292
|
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
48996
49293
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48997
49294
|
};
|
|
@@ -49001,6 +49298,9 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
49001
49298
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
49002
49299
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49003
49300
|
};
|
|
49301
|
+
export declare type GraphStoreUserTrashedConfluenceContentSortInput = {
|
|
49302
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49303
|
+
};
|
|
49004
49304
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
49005
49305
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49006
49306
|
};
|
|
@@ -51325,6 +51625,10 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
51325
51625
|
id: Scalars['ID']['output'];
|
|
51326
51626
|
title?: Maybe<Scalars['String']['output']>;
|
|
51327
51627
|
};
|
|
51628
|
+
export declare enum HelpObjectStoreArticleContentType {
|
|
51629
|
+
Folder = "FOLDER",
|
|
51630
|
+
Page = "PAGE"
|
|
51631
|
+
}
|
|
51328
51632
|
export declare type HelpObjectStoreArticleMetadata = {
|
|
51329
51633
|
__typename?: 'HelpObjectStoreArticleMetadata';
|
|
51330
51634
|
isExternal: Scalars['Boolean']['output'];
|
|
@@ -51361,6 +51665,18 @@ export declare enum HelpObjectStoreArticleSourceSystem {
|
|
|
51361
51665
|
GoogleDrive = "GOOGLE_DRIVE",
|
|
51362
51666
|
Sharepoint = "SHAREPOINT"
|
|
51363
51667
|
}
|
|
51668
|
+
export declare type HelpObjectStoreArticleSpaceInfo = {
|
|
51669
|
+
__typename?: 'HelpObjectStoreArticleSpaceInfo';
|
|
51670
|
+
spaceId?: Maybe<Scalars['Long']['output']>;
|
|
51671
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
51672
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
51673
|
+
};
|
|
51674
|
+
export declare type HelpObjectStoreArticleUrlInfo = {
|
|
51675
|
+
__typename?: 'HelpObjectStoreArticleURLInfo';
|
|
51676
|
+
editUrl: Scalars['String']['output'];
|
|
51677
|
+
shareUrl: Scalars['String']['output'];
|
|
51678
|
+
viewUrl: Scalars['String']['output'];
|
|
51679
|
+
};
|
|
51364
51680
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
51365
51681
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
51366
51682
|
};
|
|
@@ -51597,6 +51913,35 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
51597
51913
|
entityId: Scalars['String']['output'];
|
|
51598
51914
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
51599
51915
|
};
|
|
51916
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
51917
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
51918
|
+
parentId?: InputMaybe<Scalars['Long']['input']>;
|
|
51919
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
51920
|
+
topLevelArticlesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51921
|
+
};
|
|
51922
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
|
|
51923
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
51924
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
51925
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
51926
|
+
contentType?: Maybe<HelpObjectStoreArticleContentType>;
|
|
51927
|
+
id: Scalars['ID']['output'];
|
|
51928
|
+
lastModified: Scalars['String']['output'];
|
|
51929
|
+
spaceInfo: HelpObjectStoreArticleSpaceInfo;
|
|
51930
|
+
title: Scalars['String']['output'];
|
|
51931
|
+
urlInfo: HelpObjectStoreArticleUrlInfo;
|
|
51932
|
+
viewCount?: Maybe<Scalars['Long']['output']>;
|
|
51933
|
+
};
|
|
51934
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
|
|
51935
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
|
|
51936
|
+
edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge>>;
|
|
51937
|
+
nodes?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResult>>;
|
|
51938
|
+
pageInfo: PageInfo;
|
|
51939
|
+
};
|
|
51940
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
|
|
51941
|
+
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
|
|
51942
|
+
cursor: Scalars['String']['output'];
|
|
51943
|
+
node: HelpObjectStoreSupportSiteArticleSearchResult;
|
|
51944
|
+
};
|
|
51600
51945
|
export declare type History = {
|
|
51601
51946
|
__typename?: 'History';
|
|
51602
51947
|
archivedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -55512,6 +55857,18 @@ export declare type JiraCreateBoardSource = {
|
|
|
55512
55857
|
fieldInput?: InputMaybe<JiraCreateBoardFieldInput>;
|
|
55513
55858
|
savedFilterId?: InputMaybe<Scalars['Long']['input']>;
|
|
55514
55859
|
};
|
|
55860
|
+
export declare type JiraCreateBoardViewStatusColumnInput = {
|
|
55861
|
+
name: Scalars['String']['input'];
|
|
55862
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55863
|
+
statusCategoryId: Scalars['ID']['input'];
|
|
55864
|
+
viewId: Scalars['ID']['input'];
|
|
55865
|
+
};
|
|
55866
|
+
export declare type JiraCreateBoardViewStatusColumnPayload = {
|
|
55867
|
+
__typename?: 'JiraCreateBoardViewStatusColumnPayload';
|
|
55868
|
+
boardView?: Maybe<JiraBoardView>;
|
|
55869
|
+
errors?: Maybe<Array<MutationError>>;
|
|
55870
|
+
success: Scalars['Boolean']['output'];
|
|
55871
|
+
};
|
|
55515
55872
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
55516
55873
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
55517
55874
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56033,6 +56390,18 @@ export declare type JiraDeleteActivityConfigurationInput = {
|
|
|
56033
56390
|
journeyId: Scalars['ID']['input'];
|
|
56034
56391
|
journeyVersion: Scalars['Long']['input'];
|
|
56035
56392
|
};
|
|
56393
|
+
export declare type JiraDeleteBoardViewStatusColumnInput = {
|
|
56394
|
+
columnId: Scalars['ID']['input'];
|
|
56395
|
+
replacementStatusId: Scalars['ID']['input'];
|
|
56396
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
56397
|
+
viewId: Scalars['ID']['input'];
|
|
56398
|
+
};
|
|
56399
|
+
export declare type JiraDeleteBoardViewStatusColumnPayload = {
|
|
56400
|
+
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
56401
|
+
boardView?: Maybe<JiraBoardView>;
|
|
56402
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56403
|
+
success: Scalars['Boolean']['output'];
|
|
56404
|
+
};
|
|
56036
56405
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
56037
56406
|
cloudId: Scalars['ID']['input'];
|
|
56038
56407
|
customBackgroundId: Scalars['ID']['input'];
|
|
@@ -58594,6 +58963,7 @@ export declare type JiraIssueEdge = {
|
|
|
58594
58963
|
cursor: Scalars['String']['output'];
|
|
58595
58964
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
58596
58965
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
58966
|
+
issueError?: Maybe<JiraIssueError>;
|
|
58597
58967
|
node?: Maybe<JiraIssue>;
|
|
58598
58968
|
};
|
|
58599
58969
|
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
@@ -58608,6 +58978,7 @@ export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
|
58608
58978
|
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
58609
58979
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
58610
58980
|
};
|
|
58981
|
+
export declare type JiraIssueError = JiraRemoteLinkedIssueError;
|
|
58611
58982
|
export declare type JiraIssueExpandedGroup = {
|
|
58612
58983
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
58613
58984
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -59117,6 +59488,26 @@ export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
|
59117
59488
|
linkType: Scalars['ID']['input'];
|
|
59118
59489
|
operation: JiraAddValueFieldOperations;
|
|
59119
59490
|
};
|
|
59491
|
+
export declare type JiraIssueLinkRelationshipTypeField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
59492
|
+
__typename?: 'JiraIssueLinkRelationshipTypeField';
|
|
59493
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
59494
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
59495
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
59496
|
+
fieldId: Scalars['String']['output'];
|
|
59497
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
59498
|
+
id: Scalars['ID']['output'];
|
|
59499
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
59500
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
59501
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
59502
|
+
issue?: Maybe<JiraIssue>;
|
|
59503
|
+
issueLink?: Maybe<JiraIssueLink>;
|
|
59504
|
+
name: Scalars['String']['output'];
|
|
59505
|
+
type: Scalars['String']['output'];
|
|
59506
|
+
};
|
|
59507
|
+
export declare type JiraIssueLinkRelationshipTypeUpdateInput = {
|
|
59508
|
+
issueLinkId: Scalars['ID']['input'];
|
|
59509
|
+
issueLinkTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59510
|
+
};
|
|
59120
59511
|
export declare type JiraIssueLinkType = Node & {
|
|
59121
59512
|
__typename?: 'JiraIssueLinkType';
|
|
59122
59513
|
id: Scalars['ID']['output'];
|
|
@@ -61391,6 +61782,7 @@ export declare type JiraMutation = {
|
|
|
61391
61782
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
61392
61783
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
61393
61784
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
61785
|
+
updateIssueLinkRelationshipTypeField?: Maybe<JiraUpdateIssueLinkRelationshipTypeFieldPayload>;
|
|
61394
61786
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
61395
61787
|
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
61396
61788
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
@@ -61908,6 +62300,9 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
61908
62300
|
cloudId: Scalars['ID']['input'];
|
|
61909
62301
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
61910
62302
|
};
|
|
62303
|
+
export declare type JiraMutationUpdateIssueLinkRelationshipTypeFieldArgs = {
|
|
62304
|
+
input: JiraUpdateIssueLinkRelationshipTypeFieldInput;
|
|
62305
|
+
};
|
|
61911
62306
|
export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
61912
62307
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
61913
62308
|
viewId: Scalars['ID']['input'];
|
|
@@ -63178,6 +63573,7 @@ export declare type JiraPlaybookExecutionFilter = {
|
|
|
63178
63573
|
};
|
|
63179
63574
|
export declare type JiraPlaybookFilter = {
|
|
63180
63575
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
63576
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
63181
63577
|
};
|
|
63182
63578
|
export declare type JiraPlaybookInstance = Node & {
|
|
63183
63579
|
__typename?: 'JiraPlaybookInstance';
|
|
@@ -63236,6 +63632,7 @@ export declare enum JiraPlaybookScopeType {
|
|
|
63236
63632
|
}
|
|
63237
63633
|
export declare enum JiraPlaybookStateField {
|
|
63238
63634
|
Disabled = "DISABLED",
|
|
63635
|
+
Draft = "DRAFT",
|
|
63239
63636
|
Enabled = "ENABLED"
|
|
63240
63637
|
}
|
|
63241
63638
|
export declare type JiraPlaybookStep = {
|
|
@@ -64678,6 +65075,7 @@ export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
|
64678
65075
|
cloudId: Scalars['ID']['input'];
|
|
64679
65076
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
64680
65077
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
65078
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
64681
65079
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
64682
65080
|
};
|
|
64683
65081
|
export declare type JiraQueryFieldSetsByIdArgs = {
|
|
@@ -65773,6 +66171,19 @@ export declare type JiraRemainingTimeEstimateFieldPayload = Payload & {
|
|
|
65773
66171
|
success: Scalars['Boolean']['output'];
|
|
65774
66172
|
};
|
|
65775
66173
|
export declare type JiraRemoteIssueLink = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
66174
|
+
export declare type JiraRemoteLinkedIssueError = {
|
|
66175
|
+
__typename?: 'JiraRemoteLinkedIssueError';
|
|
66176
|
+
errorType?: Maybe<JiraRemoteLinkedIssueErrorType>;
|
|
66177
|
+
repairLink?: Maybe<JiraRemoteLinkedIssueRepairLink>;
|
|
66178
|
+
};
|
|
66179
|
+
export declare enum JiraRemoteLinkedIssueErrorType {
|
|
66180
|
+
ApplinkMissing = "APPLINK_MISSING",
|
|
66181
|
+
ApplinkReqAuth = "APPLINK_REQ_AUTH"
|
|
66182
|
+
}
|
|
66183
|
+
export declare type JiraRemoteLinkedIssueRepairLink = {
|
|
66184
|
+
__typename?: 'JiraRemoteLinkedIssueRepairLink';
|
|
66185
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
66186
|
+
};
|
|
65776
66187
|
export declare type JiraRemoveActiveBackgroundInput = {
|
|
65777
66188
|
entityId: Scalars['ID']['input'];
|
|
65778
66189
|
};
|
|
@@ -65851,6 +66262,18 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
65851
66262
|
errors?: Maybe<Array<MutationError>>;
|
|
65852
66263
|
success: Scalars['Boolean']['output'];
|
|
65853
66264
|
};
|
|
66265
|
+
export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
66266
|
+
columnId: Scalars['ID']['input'];
|
|
66267
|
+
name: Scalars['String']['input'];
|
|
66268
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
66269
|
+
viewId: Scalars['ID']['input'];
|
|
66270
|
+
};
|
|
66271
|
+
export declare type JiraRenameBoardViewStatusColumnPayload = {
|
|
66272
|
+
__typename?: 'JiraRenameBoardViewStatusColumnPayload';
|
|
66273
|
+
boardView?: Maybe<JiraBoardView>;
|
|
66274
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66275
|
+
success: Scalars['Boolean']['output'];
|
|
66276
|
+
};
|
|
65854
66277
|
export declare type JiraRenameNavigationItemInput = {
|
|
65855
66278
|
id: Scalars['ID']['input'];
|
|
65856
66279
|
label: Scalars['String']['input'];
|
|
@@ -66899,6 +67322,10 @@ export declare type JiraServiceManagementDecisionEdge = {
|
|
|
66899
67322
|
cursor: Scalars['String']['output'];
|
|
66900
67323
|
node?: Maybe<JiraServiceManagementDecision>;
|
|
66901
67324
|
};
|
|
67325
|
+
export declare type JiraServiceManagementDefaultCommentBehavior = {
|
|
67326
|
+
__typename?: 'JiraServiceManagementDefaultCommentBehavior';
|
|
67327
|
+
issueView?: Maybe<JiraServiceManagementIssueViewDefaultCommentBehavior>;
|
|
67328
|
+
};
|
|
66902
67329
|
export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
66903
67330
|
__typename?: 'JiraServiceManagementDueDatePreviewField';
|
|
66904
67331
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -66974,6 +67401,10 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
66974
67401
|
name: Scalars['String']['output'];
|
|
66975
67402
|
type: Scalars['String']['output'];
|
|
66976
67403
|
};
|
|
67404
|
+
export declare enum JiraServiceManagementIssueViewDefaultCommentBehavior {
|
|
67405
|
+
InternalNote = "INTERNAL_NOTE",
|
|
67406
|
+
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
67407
|
+
}
|
|
66977
67408
|
export declare type JiraServiceManagementLanguage = {
|
|
66978
67409
|
__typename?: 'JiraServiceManagementLanguage';
|
|
66979
67410
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67975,6 +68406,12 @@ export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
|
67975
68406
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
67976
68407
|
url?: Maybe<Scalars['String']['output']>;
|
|
67977
68408
|
};
|
|
68409
|
+
export declare type JiraShowUnscheduledIssuesCalendarMutationPayload = Payload & {
|
|
68410
|
+
__typename?: 'JiraShowUnscheduledIssuesCalendarMutationPayload';
|
|
68411
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68412
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
68413
|
+
success: Scalars['Boolean']['output'];
|
|
68414
|
+
};
|
|
67978
68415
|
export declare enum JiraSidebarMenuDisplayMode {
|
|
67979
68416
|
MostRecentOnly = "MOST_RECENT_ONLY",
|
|
67980
68417
|
Starred = "STARRED",
|
|
@@ -68626,10 +69063,13 @@ export declare type JiraSubscription = {
|
|
|
68626
69063
|
onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
|
|
68627
69064
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
68628
69065
|
onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
69066
|
+
onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
68629
69067
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
69068
|
+
onIssueDeletedByProjectsNoEnrichment?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
68630
69069
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
68631
69070
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
68632
69071
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
69072
|
+
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
68633
69073
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
68634
69074
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
68635
69075
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
@@ -68687,10 +69127,18 @@ export declare type JiraSubscriptionOnIssueCreatedByProjectNoEnrichmentArgs = {
|
|
|
68687
69127
|
cloudId: Scalars['ID']['input'];
|
|
68688
69128
|
projectId: Scalars['String']['input'];
|
|
68689
69129
|
};
|
|
69130
|
+
export declare type JiraSubscriptionOnIssueCreatedByProjectsNoEnrichmentArgs = {
|
|
69131
|
+
cloudId: Scalars['ID']['input'];
|
|
69132
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69133
|
+
};
|
|
68690
69134
|
export declare type JiraSubscriptionOnIssueDeletedByProjectArgs = {
|
|
68691
69135
|
cloudId: Scalars['ID']['input'];
|
|
68692
69136
|
projectId: Scalars['String']['input'];
|
|
68693
69137
|
};
|
|
69138
|
+
export declare type JiraSubscriptionOnIssueDeletedByProjectsNoEnrichmentArgs = {
|
|
69139
|
+
cloudId: Scalars['ID']['input'];
|
|
69140
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69141
|
+
};
|
|
68694
69142
|
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
68695
69143
|
input: JiraIssueExportInput;
|
|
68696
69144
|
};
|
|
@@ -68702,6 +69150,10 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectNoEnrichmentArgs = {
|
|
|
68702
69150
|
cloudId: Scalars['ID']['input'];
|
|
68703
69151
|
projectId: Scalars['String']['input'];
|
|
68704
69152
|
};
|
|
69153
|
+
export declare type JiraSubscriptionOnIssueUpdatedByProjectsNoEnrichmentArgs = {
|
|
69154
|
+
cloudId: Scalars['ID']['input'];
|
|
69155
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69156
|
+
};
|
|
68705
69157
|
export declare type JiraSubscriptionOnJirtBoardIssueSubscriptionArgs = {
|
|
68706
69158
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
68707
69159
|
cloudId: Scalars['ID']['input'];
|
|
@@ -69304,6 +69756,20 @@ export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
|
69304
69756
|
id: Scalars['ID']['input'];
|
|
69305
69757
|
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
69306
69758
|
};
|
|
69759
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldInput = {
|
|
69760
|
+
id: Scalars['ID']['input'];
|
|
69761
|
+
operation: JiraUpdateIssueLinkRelationshipTypeFieldOperationInput;
|
|
69762
|
+
};
|
|
69763
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldOperationInput = {
|
|
69764
|
+
operation: JiraSingleValueFieldOperations;
|
|
69765
|
+
update: JiraIssueLinkRelationshipTypeUpdateInput;
|
|
69766
|
+
};
|
|
69767
|
+
export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload & {
|
|
69768
|
+
__typename?: 'JiraUpdateIssueLinkRelationshipTypeFieldPayload';
|
|
69769
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69770
|
+
field?: Maybe<JiraIssueLinkRelationshipTypeField>;
|
|
69771
|
+
success: Scalars['Boolean']['output'];
|
|
69772
|
+
};
|
|
69307
69773
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
69308
69774
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
69309
69775
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
@@ -69794,6 +70260,7 @@ export declare type JiraUserPreferences = {
|
|
|
69794
70260
|
showRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
69795
70261
|
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
69796
70262
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
70263
|
+
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
69797
70264
|
};
|
|
69798
70265
|
export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplatesArgs = {
|
|
69799
70266
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77054,6 +77521,7 @@ export declare type MercuryMutationApi = {
|
|
|
77054
77521
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
77055
77522
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
77056
77523
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
77524
|
+
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
77057
77525
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
77058
77526
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
77059
77527
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -77125,6 +77593,9 @@ export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
|
77125
77593
|
export declare type MercuryMutationApiLinkGoalsToFocusAreaArgs = {
|
|
77126
77594
|
input: MercuryLinkGoalsToFocusAreaInput;
|
|
77127
77595
|
};
|
|
77596
|
+
export declare type MercuryMutationApiPublishFocusAreaArgs = {
|
|
77597
|
+
input: MercuryPublishFocusAreaInput;
|
|
77598
|
+
};
|
|
77128
77599
|
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
77129
77600
|
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
77130
77601
|
};
|
|
@@ -77500,6 +77971,15 @@ export declare enum MercuryProviderWorkTargetDateType {
|
|
|
77500
77971
|
Month = "MONTH",
|
|
77501
77972
|
Quarter = "QUARTER"
|
|
77502
77973
|
}
|
|
77974
|
+
export declare type MercuryPublishFocusAreaInput = {
|
|
77975
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77976
|
+
id: Scalars['ID']['input'];
|
|
77977
|
+
};
|
|
77978
|
+
export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
77979
|
+
__typename?: 'MercuryPublishFocusAreaPayload';
|
|
77980
|
+
errors?: Maybe<Array<MutationError>>;
|
|
77981
|
+
success: Scalars['Boolean']['output'];
|
|
77982
|
+
};
|
|
77503
77983
|
export declare type MercuryQueryApi = {
|
|
77504
77984
|
__typename?: 'MercuryQueryApi';
|
|
77505
77985
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -78612,6 +79092,9 @@ export declare type Mutation = {
|
|
|
78612
79092
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
78613
79093
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
78614
79094
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
79095
|
+
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
79096
|
+
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
79097
|
+
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
78615
79098
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
78616
79099
|
attachDanglingComment?: Maybe<Comment>;
|
|
78617
79100
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
@@ -78836,9 +79319,11 @@ export declare type Mutation = {
|
|
|
78836
79319
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
78837
79320
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
78838
79321
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
79322
|
+
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
78839
79323
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
78840
79324
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
78841
79325
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79326
|
+
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
78842
79327
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
78843
79328
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
78844
79329
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
@@ -78847,6 +79332,7 @@ export declare type Mutation = {
|
|
|
78847
79332
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
78848
79333
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
78849
79334
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
79335
|
+
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
78850
79336
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
78851
79337
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
78852
79338
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
@@ -78867,6 +79353,7 @@ export declare type Mutation = {
|
|
|
78867
79353
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
78868
79354
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
78869
79355
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
79356
|
+
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
78870
79357
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
78871
79358
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
78872
79359
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
@@ -78989,15 +79476,11 @@ export declare type Mutation = {
|
|
|
78989
79476
|
shepherd?: Maybe<ShepherdMutation>;
|
|
78990
79477
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
78991
79478
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
78992
|
-
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
78993
79479
|
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
78994
79480
|
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
78995
|
-
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
78996
|
-
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
78997
79481
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
78998
79482
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
78999
79483
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
79000
|
-
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
79001
79484
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
79002
79485
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
79003
79486
|
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -79008,18 +79491,6 @@ export declare type Mutation = {
|
|
|
79008
79491
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
79009
79492
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
79010
79493
|
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
79494
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
79024
79495
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
79025
79496
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -79195,6 +79666,21 @@ export declare type MutationArchivePolarisInsightsArgs = {
|
|
|
79195
79666
|
export declare type MutationArchiveSpaceArgs = {
|
|
79196
79667
|
input: ArchiveSpaceInput;
|
|
79197
79668
|
};
|
|
79669
|
+
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
79670
|
+
autoColumnMappingInput?: InputMaybe<AssetsDmAutoColumnMappingInput>;
|
|
79671
|
+
cloudId: Scalars['ID']['input'];
|
|
79672
|
+
workspaceId: Scalars['ID']['input'];
|
|
79673
|
+
};
|
|
79674
|
+
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
79675
|
+
cloudId: Scalars['ID']['input'];
|
|
79676
|
+
input: AssetsDmDataSourceInput;
|
|
79677
|
+
workspaceId: Scalars['ID']['input'];
|
|
79678
|
+
};
|
|
79679
|
+
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
79680
|
+
cloudId: Scalars['ID']['input'];
|
|
79681
|
+
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
79682
|
+
workspaceId: Scalars['ID']['input'];
|
|
79683
|
+
};
|
|
79198
79684
|
export declare type MutationAssignIssueParentArgs = {
|
|
79199
79685
|
input?: InputMaybe<AssignIssueParentInput>;
|
|
79200
79686
|
};
|
|
@@ -79940,6 +80426,9 @@ export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
|
79940
80426
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
79941
80427
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
79942
80428
|
};
|
|
80429
|
+
export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
80430
|
+
input: JiraCreateBoardViewStatusColumnInput;
|
|
80431
|
+
};
|
|
79943
80432
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
79944
80433
|
input: JiraCreateCustomBackgroundInput;
|
|
79945
80434
|
};
|
|
@@ -79951,6 +80440,9 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
79951
80440
|
cloudId: Scalars['ID']['input'];
|
|
79952
80441
|
input: JiraCreateGlobalCustomFieldInput;
|
|
79953
80442
|
};
|
|
80443
|
+
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80444
|
+
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80445
|
+
};
|
|
79954
80446
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
79955
80447
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
79956
80448
|
};
|
|
@@ -79978,6 +80470,9 @@ export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
|
|
|
79978
80470
|
cloudId: Scalars['ID']['input'];
|
|
79979
80471
|
input: JiraRemoveFieldsFromFieldSchemeInput;
|
|
79980
80472
|
};
|
|
80473
|
+
export declare type MutationJira_RenameBoardViewStatusColumnArgs = {
|
|
80474
|
+
input: JiraRenameBoardViewStatusColumnInput;
|
|
80475
|
+
};
|
|
79981
80476
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
79982
80477
|
input: JiraReorderBoardViewColumnInput;
|
|
79983
80478
|
};
|
|
@@ -80039,6 +80534,10 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
|
80039
80534
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
80040
80535
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
80041
80536
|
};
|
|
80537
|
+
export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
80538
|
+
cloudId: Scalars['ID']['input'];
|
|
80539
|
+
show: Scalars['Boolean']['input'];
|
|
80540
|
+
};
|
|
80042
80541
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
80043
80542
|
input: JiraSetViewFilterInput;
|
|
80044
80543
|
};
|
|
@@ -80401,21 +80900,12 @@ export declare type MutationSoftDeleteSpaceArgs = {
|
|
|
80401
80900
|
export declare type MutationSpf_AttachAskLinkArgs = {
|
|
80402
80901
|
input: SpfAttachAskLinkInput;
|
|
80403
80902
|
};
|
|
80404
|
-
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
80405
|
-
input: SpfAttachRelatedContentInput;
|
|
80406
|
-
};
|
|
80407
80903
|
export declare type MutationSpf_CreateAskArgs = {
|
|
80408
80904
|
input: SpfCreateAskInput;
|
|
80409
80905
|
};
|
|
80410
80906
|
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
80411
80907
|
input: SpfCreateAskCommentInput;
|
|
80412
80908
|
};
|
|
80413
|
-
export declare type MutationSpf_CreateCommentArgs = {
|
|
80414
|
-
input: SpfCreateCommentInput;
|
|
80415
|
-
};
|
|
80416
|
-
export declare type MutationSpf_CreateDependencyArgs = {
|
|
80417
|
-
input: SpfCreateDependencyInput;
|
|
80418
|
-
};
|
|
80419
80909
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
80420
80910
|
input: SpfDeleteAskInput;
|
|
80421
80911
|
};
|
|
@@ -80425,9 +80915,6 @@ export declare type MutationSpf_DeleteAskCommentArgs = {
|
|
|
80425
80915
|
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
80426
80916
|
input: SpfDeleteAskLinkInput;
|
|
80427
80917
|
};
|
|
80428
|
-
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
80429
|
-
input: SpfDeleteDependencyInput;
|
|
80430
|
-
};
|
|
80431
80918
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
80432
80919
|
input: SpfUpdateAskCommentDataInput;
|
|
80433
80920
|
};
|
|
@@ -80458,42 +80945,6 @@ export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
|
80458
80945
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
80459
80946
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
80460
80947
|
};
|
|
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
80948
|
export declare type MutationSplitIssueArgs = {
|
|
80498
80949
|
input?: InputMaybe<SplitIssueInput>;
|
|
80499
80950
|
};
|
|
@@ -83562,6 +84013,7 @@ export declare type Query = {
|
|
|
83562
84013
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
83563
84014
|
appContainer?: Maybe<AppContainer>;
|
|
83564
84015
|
appContainerRegistryLogin?: Maybe<AppContainerRegistryLogin>;
|
|
84016
|
+
appContainerServices?: Maybe<AppContainerServices>;
|
|
83565
84017
|
appContainers?: Maybe<Array<AppContainer>>;
|
|
83566
84018
|
appContributors: Array<AppContributor>;
|
|
83567
84019
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -83580,6 +84032,9 @@ export declare type Query = {
|
|
|
83580
84032
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
83581
84033
|
apps?: Maybe<AppConnection>;
|
|
83582
84034
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
84035
|
+
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
84036
|
+
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
84037
|
+
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
83583
84038
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83584
84039
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83585
84040
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -83701,6 +84156,7 @@ export declare type Query = {
|
|
|
83701
84156
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
83702
84157
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83703
84158
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
84159
|
+
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
83704
84160
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
83705
84161
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
83706
84162
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
@@ -83747,10 +84203,12 @@ export declare type Query = {
|
|
|
83747
84203
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
83748
84204
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
83749
84205
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
84206
|
+
devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
|
|
83750
84207
|
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
83751
84208
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
83752
84209
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
83753
84210
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84211
|
+
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
83754
84212
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
83755
84213
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
83756
84214
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -83823,6 +84281,7 @@ export declare type Query = {
|
|
|
83823
84281
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
83824
84282
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
83825
84283
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
84284
|
+
helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
|
|
83826
84285
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
83827
84286
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
83828
84287
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
@@ -83863,6 +84322,7 @@ export declare type Query = {
|
|
|
83863
84322
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
83864
84323
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
83865
84324
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84325
|
+
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
83866
84326
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
83867
84327
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
83868
84328
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
@@ -83976,6 +84436,8 @@ export declare type Query = {
|
|
|
83976
84436
|
productListings: Array<ProductListingResult>;
|
|
83977
84437
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
83978
84438
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84439
|
+
projects_byId?: Maybe<TownsquareProject>;
|
|
84440
|
+
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
83979
84441
|
ptpage?: Maybe<PtPage>;
|
|
83980
84442
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
83981
84443
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -84050,9 +84512,6 @@ export declare type Query = {
|
|
|
84050
84512
|
spf_ask?: Maybe<SpfAskResult>;
|
|
84051
84513
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
84052
84514
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
84053
|
-
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
84054
|
-
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
84055
|
-
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
84056
84515
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
84057
84516
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
84058
84517
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -84219,6 +84678,11 @@ export declare type QueryAppContainerArgs = {
|
|
|
84219
84678
|
export declare type QueryAppContainerRegistryLoginArgs = {
|
|
84220
84679
|
appId: Scalars['ID']['input'];
|
|
84221
84680
|
};
|
|
84681
|
+
export declare type QueryAppContainerServicesArgs = {
|
|
84682
|
+
appId: Scalars['ID']['input'];
|
|
84683
|
+
environmentKey: Scalars['String']['input'];
|
|
84684
|
+
serviceNames: Array<Scalars['String']['input']>;
|
|
84685
|
+
};
|
|
84222
84686
|
export declare type QueryAppContainersArgs = {
|
|
84223
84687
|
appId: Scalars['ID']['input'];
|
|
84224
84688
|
};
|
|
@@ -84310,6 +84774,18 @@ export declare type QueryAppsArgs = {
|
|
|
84310
84774
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
84311
84775
|
cloudId: Scalars['ID']['input'];
|
|
84312
84776
|
};
|
|
84777
|
+
export declare type QueryAssetsDm_AdaptersArgs = {
|
|
84778
|
+
cloudId: Scalars['ID']['input'];
|
|
84779
|
+
workspaceId: Scalars['ID']['input'];
|
|
84780
|
+
};
|
|
84781
|
+
export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
84782
|
+
cloudId: Scalars['ID']['input'];
|
|
84783
|
+
workspaceId: Scalars['ID']['input'];
|
|
84784
|
+
};
|
|
84785
|
+
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
84786
|
+
cloudId: Scalars['ID']['input'];
|
|
84787
|
+
workspaceId: Scalars['ID']['input'];
|
|
84788
|
+
};
|
|
84313
84789
|
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
84314
84790
|
issueId: Scalars['ID']['input'];
|
|
84315
84791
|
};
|
|
@@ -84885,6 +85361,17 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
84885
85361
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84886
85362
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
84887
85363
|
};
|
|
85364
|
+
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
85365
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85366
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
85367
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85368
|
+
id: Scalars['ID']['input'];
|
|
85369
|
+
l2ScoreThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
85370
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
85371
|
+
searchSourcesInput?: InputMaybe<ConvoAiJiraSearchSourcesInput>;
|
|
85372
|
+
xpsearchL1?: InputMaybe<Scalars['String']['input']>;
|
|
85373
|
+
xpsearchL2?: InputMaybe<Scalars['String']['input']>;
|
|
85374
|
+
};
|
|
84888
85375
|
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
84889
85376
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84890
85377
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -85094,6 +85581,10 @@ export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
|
85094
85581
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85095
85582
|
issueKey: Scalars['String']['input'];
|
|
85096
85583
|
};
|
|
85584
|
+
export declare type QueryDevai_FlowGetRepositoriesArgs = {
|
|
85585
|
+
cloudId: Scalars['ID']['input'];
|
|
85586
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
85587
|
+
};
|
|
85097
85588
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
85098
85589
|
id: Scalars['ID']['input'];
|
|
85099
85590
|
};
|
|
@@ -85109,6 +85600,11 @@ export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
|
85109
85600
|
creator: Scalars['String']['input'];
|
|
85110
85601
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85111
85602
|
};
|
|
85603
|
+
export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
85604
|
+
cloudId: Scalars['ID']['input'];
|
|
85605
|
+
issueKey: Scalars['String']['input'];
|
|
85606
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85607
|
+
};
|
|
85112
85608
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
85113
85609
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85114
85610
|
cloudId: Scalars['ID']['input'];
|
|
@@ -85353,6 +85849,13 @@ export declare type QueryHelpObjectStore_SearchArticlesArgs = {
|
|
|
85353
85849
|
queryTerm?: InputMaybe<Scalars['String']['input']>;
|
|
85354
85850
|
skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85355
85851
|
};
|
|
85852
|
+
export declare type QueryHelpObjectStore_SearchArticlesForSupportSiteArgs = {
|
|
85853
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85854
|
+
cloudId: Scalars['String']['input'];
|
|
85855
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85856
|
+
helpCenterAri: Scalars['String']['input'];
|
|
85857
|
+
input?: InputMaybe<HelpObjectStoreSupportSiteArticleSearchInput>;
|
|
85858
|
+
};
|
|
85356
85859
|
export declare type QueryHelpObjectStore_SearchPortalsArgs = {
|
|
85357
85860
|
cloudId: Scalars['ID']['input'];
|
|
85358
85861
|
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -85470,6 +85973,9 @@ export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
|
85470
85973
|
export declare type QueryJira_IssuesByIdsArgs = {
|
|
85471
85974
|
ids: Array<Scalars['ID']['input']>;
|
|
85472
85975
|
};
|
|
85976
|
+
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
85977
|
+
cloudId: Scalars['ID']['input'];
|
|
85978
|
+
};
|
|
85473
85979
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
85474
85980
|
cloudId: Scalars['ID']['input'];
|
|
85475
85981
|
idOrKey: Scalars['String']['input'];
|
|
@@ -85820,6 +86326,12 @@ export declare type QueryProjects_ByAriArgs = {
|
|
|
85820
86326
|
export declare type QueryProjects_ByArisArgs = {
|
|
85821
86327
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
85822
86328
|
};
|
|
86329
|
+
export declare type QueryProjects_ByIdArgs = {
|
|
86330
|
+
projectId: Scalars['String']['input'];
|
|
86331
|
+
};
|
|
86332
|
+
export declare type QueryProjects_ByIdsArgs = {
|
|
86333
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
86334
|
+
};
|
|
85823
86335
|
export declare type QueryPtpageArgs = {
|
|
85824
86336
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85825
86337
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -86146,18 +86658,6 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
86146
86658
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
86147
86659
|
ids: Array<Scalars['ID']['input']>;
|
|
86148
86660
|
};
|
|
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
86661
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
86162
86662
|
appId: Scalars['ID']['input'];
|
|
86163
86663
|
installationId: Scalars['ID']['input'];
|
|
@@ -90320,7 +90820,7 @@ export declare type ShepherdCustomContentScanningDetection = {
|
|
|
90320
90820
|
__typename?: 'ShepherdCustomContentScanningDetection';
|
|
90321
90821
|
rules: Array<Maybe<ShepherdCustomScanningRule>>;
|
|
90322
90822
|
};
|
|
90323
|
-
export declare type ShepherdCustomDetection = {
|
|
90823
|
+
export declare type ShepherdCustomDetection = Node & {
|
|
90324
90824
|
__typename?: 'ShepherdCustomDetection';
|
|
90325
90825
|
description?: Maybe<Scalars['String']['output']>;
|
|
90326
90826
|
id: Scalars['ID']['output'];
|
|
@@ -90377,7 +90877,7 @@ export declare type ShepherdDescriptionTemplate = {
|
|
|
90377
90877
|
text?: Maybe<Scalars['JSON']['output']>;
|
|
90378
90878
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
90379
90879
|
};
|
|
90380
|
-
export declare type ShepherdDetection = {
|
|
90880
|
+
export declare type ShepherdDetection = Node & {
|
|
90381
90881
|
__typename?: 'ShepherdDetection';
|
|
90382
90882
|
businessTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
90383
90883
|
category: ShepherdAlertDetectionCategory;
|
|
@@ -90436,7 +90936,7 @@ export declare type ShepherdDetectionScanningInfo = {
|
|
|
90436
90936
|
__typename?: 'ShepherdDetectionScanningInfo';
|
|
90437
90937
|
scanningFrequency: ShepherdDetectionScanningFrequency;
|
|
90438
90938
|
};
|
|
90439
|
-
export declare type ShepherdDetectionSetting = {
|
|
90939
|
+
export declare type ShepherdDetectionSetting = Node & {
|
|
90440
90940
|
__typename?: 'ShepherdDetectionSetting';
|
|
90441
90941
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
90442
90942
|
id: Scalars['ID']['output'];
|
|
@@ -90979,11 +91479,27 @@ export declare type ShepherdSuspiciousSearchTerm = {
|
|
|
90979
91479
|
export declare type ShepherdTeamworkGraphQueries = {
|
|
90980
91480
|
__typename?: 'ShepherdTeamworkGraphQueries';
|
|
90981
91481
|
alerts?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
91482
|
+
customDetections?: Maybe<Array<Maybe<ShepherdCustomDetection>>>;
|
|
91483
|
+
detectionSettings?: Maybe<Array<Maybe<ShepherdDetectionSetting>>>;
|
|
91484
|
+
detections?: Maybe<Array<Maybe<ShepherdDetection>>>;
|
|
91485
|
+
subscriptions?: Maybe<Array<Maybe<ShepherdSubscription>>>;
|
|
90982
91486
|
workspaces?: Maybe<Array<Maybe<ShepherdWorkspace>>>;
|
|
90983
91487
|
};
|
|
90984
91488
|
export declare type ShepherdTeamworkGraphQueriesAlertsArgs = {
|
|
90985
91489
|
ids: Array<Scalars['ID']['input']>;
|
|
90986
91490
|
};
|
|
91491
|
+
export declare type ShepherdTeamworkGraphQueriesCustomDetectionsArgs = {
|
|
91492
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91493
|
+
};
|
|
91494
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionSettingsArgs = {
|
|
91495
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91496
|
+
};
|
|
91497
|
+
export declare type ShepherdTeamworkGraphQueriesDetectionsArgs = {
|
|
91498
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91499
|
+
};
|
|
91500
|
+
export declare type ShepherdTeamworkGraphQueriesSubscriptionsArgs = {
|
|
91501
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91502
|
+
};
|
|
90987
91503
|
export declare type ShepherdTeamworkGraphQueriesWorkspacesArgs = {
|
|
90988
91504
|
ids: Array<Scalars['ID']['input']>;
|
|
90989
91505
|
};
|
|
@@ -92404,37 +92920,6 @@ export declare type SpfAttachAskLinkPayload = Payload & {
|
|
|
92404
92920
|
link?: Maybe<SpfAskLink>;
|
|
92405
92921
|
success: Scalars['Boolean']['output'];
|
|
92406
92922
|
};
|
|
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
92923
|
export declare type SpfCreateAskCommentInput = {
|
|
92439
92924
|
askId: Scalars['ID']['input'];
|
|
92440
92925
|
data: Scalars['String']['input'];
|
|
@@ -92465,36 +92950,6 @@ export declare type SpfCreateAskPayload = Payload & {
|
|
|
92465
92950
|
errors?: Maybe<Array<MutationError>>;
|
|
92466
92951
|
success: Scalars['Boolean']['output'];
|
|
92467
92952
|
};
|
|
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
92953
|
export declare type SpfDeleteAskCommentInput = {
|
|
92499
92954
|
id: Scalars['ID']['input'];
|
|
92500
92955
|
};
|
|
@@ -92522,115 +92977,7 @@ export declare type SpfDeleteAskPayload = Payload & {
|
|
|
92522
92977
|
id: Scalars['ID']['output'];
|
|
92523
92978
|
success: Scalars['Boolean']['output'];
|
|
92524
92979
|
};
|
|
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
92980
|
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
92981
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
92635
92982
|
data: Scalars['String']['input'];
|
|
92636
92983
|
id: Scalars['ID']['input'];
|
|
@@ -92683,66 +93030,6 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
92683
93030
|
id: Scalars['ID']['input'];
|
|
92684
93031
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92685
93032
|
};
|
|
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
93033
|
export declare type SplitIssueInput = {
|
|
92747
93034
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
92748
93035
|
originalIssue: OriginalSplitIssue;
|