@forge/cli-shared 8.0.1-next.4 → 8.0.1-next.6
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 +15 -0
- package/out/graphql/graphql-types.d.ts +776 -352
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +72 -60
- 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'];
|
|
@@ -3069,6 +3084,119 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
3069
3084
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
3070
3085
|
title: Scalars['String']['output'];
|
|
3071
3086
|
};
|
|
3087
|
+
export declare type AssetsDmAdapter = {
|
|
3088
|
+
__typename?: 'AssetsDMAdapter';
|
|
3089
|
+
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
3090
|
+
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
3091
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
3092
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
3093
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3094
|
+
vendor?: Maybe<Scalars['String']['output']>;
|
|
3095
|
+
};
|
|
3096
|
+
export declare type AssetsDmAdapters = {
|
|
3097
|
+
__typename?: 'AssetsDMAdapters';
|
|
3098
|
+
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3099
|
+
product?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3100
|
+
};
|
|
3101
|
+
export declare type AssetsDmAutoColumnMappingInput = {
|
|
3102
|
+
delimiter?: InputMaybe<Scalars['String']['input']>;
|
|
3103
|
+
header?: InputMaybe<Scalars['String']['input']>;
|
|
3104
|
+
};
|
|
3105
|
+
export declare type AssetsDmAutoColumnMappingResponse = {
|
|
3106
|
+
__typename?: 'AssetsDMAutoColumnMappingResponse';
|
|
3107
|
+
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
3108
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3109
|
+
returnValue?: Maybe<Array<Maybe<AssetsDmMappedColumn>>>;
|
|
3110
|
+
};
|
|
3111
|
+
export declare type AssetsDmDataSource = {
|
|
3112
|
+
__typename?: 'AssetsDMDataSource';
|
|
3113
|
+
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
3114
|
+
dataSourceName?: Maybe<Scalars['String']['output']>;
|
|
3115
|
+
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
3116
|
+
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
3117
|
+
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
3118
|
+
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
3119
|
+
statusText?: Maybe<Scalars['String']['output']>;
|
|
3120
|
+
};
|
|
3121
|
+
export declare type AssetsDmDataSourceFormFields = {
|
|
3122
|
+
__typename?: 'AssetsDMDataSourceFormFields';
|
|
3123
|
+
dataSourceTypes: AssetsDmDataSourceTypesConnection;
|
|
3124
|
+
dateFormats: Array<AssetsDmDateFormats>;
|
|
3125
|
+
};
|
|
3126
|
+
export declare type AssetsDmDataSourceFormFieldsDataSourceTypesArgs = {
|
|
3127
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3128
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3129
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
3130
|
+
};
|
|
3131
|
+
export declare type AssetsDmDataSourceInput = {
|
|
3132
|
+
adapterType: Scalars['String']['input'];
|
|
3133
|
+
configuration: Scalars['JSON']['input'];
|
|
3134
|
+
objectClassType: AssetsDmObjectClassEnum;
|
|
3135
|
+
};
|
|
3136
|
+
export declare type AssetsDmDataSourceResponse = {
|
|
3137
|
+
__typename?: 'AssetsDMDataSourceResponse';
|
|
3138
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3139
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3140
|
+
success: Scalars['Boolean']['output'];
|
|
3141
|
+
};
|
|
3142
|
+
export declare type AssetsDmDataSourceTypes = {
|
|
3143
|
+
__typename?: 'AssetsDMDataSourceTypes';
|
|
3144
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
3145
|
+
defaultGap: Scalars['Int']['output'];
|
|
3146
|
+
name: Scalars['String']['output'];
|
|
3147
|
+
tenantId: Scalars['String']['output'];
|
|
3148
|
+
};
|
|
3149
|
+
export declare type AssetsDmDataSourceTypesConnection = {
|
|
3150
|
+
__typename?: 'AssetsDMDataSourceTypesConnection';
|
|
3151
|
+
nodes: Array<AssetsDmDataSourceTypes>;
|
|
3152
|
+
pageInfo: PageInfo;
|
|
3153
|
+
totalCount: Scalars['Int']['output'];
|
|
3154
|
+
};
|
|
3155
|
+
export declare type AssetsDmDateFormats = {
|
|
3156
|
+
__typename?: 'AssetsDMDateFormats';
|
|
3157
|
+
createdBy: Scalars['String']['output'];
|
|
3158
|
+
dateFormatId: Scalars['ID']['output'];
|
|
3159
|
+
format: Scalars['String']['output'];
|
|
3160
|
+
name: Scalars['String']['output'];
|
|
3161
|
+
tenantId: Scalars['String']['output'];
|
|
3162
|
+
};
|
|
3163
|
+
export declare type AssetsDmGenerateAdapterTokenInput = {
|
|
3164
|
+
adapterType: Scalars['String']['input'];
|
|
3165
|
+
password: Scalars['String']['input'];
|
|
3166
|
+
username: Scalars['String']['input'];
|
|
3167
|
+
};
|
|
3168
|
+
export declare type AssetsDmGenerateAdapterTokenResponse = {
|
|
3169
|
+
__typename?: 'AssetsDMGenerateAdapterTokenResponse';
|
|
3170
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3171
|
+
success: Scalars['Boolean']['output'];
|
|
3172
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
3173
|
+
};
|
|
3174
|
+
export declare type AssetsDmMappedColumn = {
|
|
3175
|
+
__typename?: 'AssetsDMMappedColumn';
|
|
3176
|
+
columnMappingId?: Maybe<Scalars['ID']['output']>;
|
|
3177
|
+
columnType?: Maybe<Scalars['Int']['output']>;
|
|
3178
|
+
dateFormatId?: Maybe<Scalars['String']['output']>;
|
|
3179
|
+
destinationColumnName?: Maybe<Scalars['String']['output']>;
|
|
3180
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
3181
|
+
sourceColumnName?: Maybe<Scalars['String']['output']>;
|
|
3182
|
+
};
|
|
3183
|
+
export declare type AssetsDmObjectClass = {
|
|
3184
|
+
__typename?: 'AssetsDMObjectClass';
|
|
3185
|
+
allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
|
|
3186
|
+
computedIssuesCount?: Maybe<Scalars['String']['output']>;
|
|
3187
|
+
dataSources?: Maybe<Array<Maybe<AssetsDmDataSource>>>;
|
|
3188
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3189
|
+
objectId?: Maybe<Scalars['String']['output']>;
|
|
3190
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
3191
|
+
uniqueRecordsCount?: Maybe<Scalars['String']['output']>;
|
|
3192
|
+
};
|
|
3193
|
+
export declare enum AssetsDmObjectClassEnum {
|
|
3194
|
+
Compute = "Compute",
|
|
3195
|
+
Network = "Network",
|
|
3196
|
+
People = "People",
|
|
3197
|
+
Peripherals = "Peripherals",
|
|
3198
|
+
Software = "Software"
|
|
3199
|
+
}
|
|
3072
3200
|
export declare type AssignIssueParentInput = {
|
|
3073
3201
|
boardId: Scalars['ID']['input'];
|
|
3074
3202
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -3420,6 +3548,7 @@ export declare type BlockedAccessEmpowerment = {
|
|
|
3420
3548
|
};
|
|
3421
3549
|
export declare type BlockedAccessRestrictions = {
|
|
3422
3550
|
__typename?: 'BlockedAccessRestrictions';
|
|
3551
|
+
blockedAccessAssignableSpaceRolesIntersection: Array<Maybe<ConfluenceBlockedAccessAssignableSpaceRole>>;
|
|
3423
3552
|
blockedAccessEmpowerment: Array<Maybe<BlockedAccessEmpowerment>>;
|
|
3424
3553
|
blockedAccessRestrictionSummary: Array<Maybe<SubjectRestrictionHierarchySummary>>;
|
|
3425
3554
|
canFixRestrictionsForAllSubjects: Scalars['Boolean']['output'];
|
|
@@ -5214,6 +5343,7 @@ export declare type CcpQueryApi = {
|
|
|
5214
5343
|
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
5215
5344
|
entitlement?: Maybe<CcpEntitlement>;
|
|
5216
5345
|
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
5346
|
+
entitlementV2?: Maybe<CcpEntitlement>;
|
|
5217
5347
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5218
5348
|
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5219
5349
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
@@ -5223,12 +5353,15 @@ export declare type CcpQueryApi = {
|
|
|
5223
5353
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
5224
5354
|
paymentMethods?: Maybe<Array<Maybe<CcpPaymentMethod>>>;
|
|
5225
5355
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
5356
|
+
pricingPlanV2?: Maybe<CcpPricingPlan>;
|
|
5226
5357
|
pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
5227
5358
|
product?: Maybe<CcpProduct>;
|
|
5359
|
+
productV2?: Maybe<CcpProduct>;
|
|
5228
5360
|
promotions?: Maybe<Array<Maybe<CcpPromotion>>>;
|
|
5229
5361
|
quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
5230
5362
|
shipToParties?: Maybe<Array<Maybe<CcpShipToParty>>>;
|
|
5231
5363
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
5364
|
+
transactionAccountV2?: Maybe<CcpTransactionAccount>;
|
|
5232
5365
|
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
5233
5366
|
};
|
|
5234
5367
|
export declare type CcpQueryApiCatalogAccountsArgs = {
|
|
@@ -5240,6 +5373,9 @@ export declare type CcpQueryApiEntitlementArgs = {
|
|
|
5240
5373
|
export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
5241
5374
|
ids: Array<Scalars['ID']['input']>;
|
|
5242
5375
|
};
|
|
5376
|
+
export declare type CcpQueryApiEntitlementV2Args = {
|
|
5377
|
+
id: Scalars['ID']['input'];
|
|
5378
|
+
};
|
|
5243
5379
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
5244
5380
|
ids: Array<Scalars['ID']['input']>;
|
|
5245
5381
|
};
|
|
@@ -5250,7 +5386,8 @@ export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
|
5250
5386
|
ids: Array<Scalars['ID']['input']>;
|
|
5251
5387
|
};
|
|
5252
5388
|
export declare type CcpQueryApiOfferingArgs = {
|
|
5253
|
-
|
|
5389
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5390
|
+
key?: InputMaybe<Scalars['ID']['input']>;
|
|
5254
5391
|
};
|
|
5255
5392
|
export declare type CcpQueryApiOfferingRelationshipTemplatesArgs = {
|
|
5256
5393
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -5264,12 +5401,18 @@ export declare type CcpQueryApiPaymentMethodsArgs = {
|
|
|
5264
5401
|
export declare type CcpQueryApiPricingPlanArgs = {
|
|
5265
5402
|
id: Scalars['ID']['input'];
|
|
5266
5403
|
};
|
|
5404
|
+
export declare type CcpQueryApiPricingPlanV2Args = {
|
|
5405
|
+
id: Scalars['ID']['input'];
|
|
5406
|
+
};
|
|
5267
5407
|
export declare type CcpQueryApiPricingPlansArgs = {
|
|
5268
5408
|
ids: Array<Scalars['ID']['input']>;
|
|
5269
5409
|
};
|
|
5270
5410
|
export declare type CcpQueryApiProductArgs = {
|
|
5271
5411
|
id: Scalars['ID']['input'];
|
|
5272
5412
|
};
|
|
5413
|
+
export declare type CcpQueryApiProductV2Args = {
|
|
5414
|
+
id: Scalars['ID']['input'];
|
|
5415
|
+
};
|
|
5273
5416
|
export declare type CcpQueryApiPromotionsArgs = {
|
|
5274
5417
|
ids: Array<Scalars['ID']['input']>;
|
|
5275
5418
|
};
|
|
@@ -5282,6 +5425,9 @@ export declare type CcpQueryApiShipToPartiesArgs = {
|
|
|
5282
5425
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
5283
5426
|
id: Scalars['ID']['input'];
|
|
5284
5427
|
};
|
|
5428
|
+
export declare type CcpQueryApiTransactionAccountV2Args = {
|
|
5429
|
+
id: Scalars['ID']['input'];
|
|
5430
|
+
};
|
|
5285
5431
|
export declare type CcpQueryApiTransactionAccountsArgs = {
|
|
5286
5432
|
ids: Array<Scalars['ID']['input']>;
|
|
5287
5433
|
};
|
|
@@ -5919,6 +6065,7 @@ export declare type ChannelPlatformTranscriptEntry = {
|
|
|
5919
6065
|
type?: Maybe<Scalars['String']['output']>;
|
|
5920
6066
|
};
|
|
5921
6067
|
export declare type ChannelPlatformTranscriptRequest = {
|
|
6068
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
5922
6069
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
5923
6070
|
role?: InputMaybe<ChannelPlatformRole>;
|
|
5924
6071
|
};
|
|
@@ -6603,6 +6750,7 @@ export declare type CompassCampaignQuery = {
|
|
|
6603
6750
|
sort?: InputMaybe<CompassCampaignQuerySort>;
|
|
6604
6751
|
};
|
|
6605
6752
|
export declare type CompassCampaignQueryFilter = {
|
|
6753
|
+
componentId?: InputMaybe<Scalars['ID']['input']>;
|
|
6606
6754
|
createdByUserId?: InputMaybe<Scalars['ID']['input']>;
|
|
6607
6755
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
6608
6756
|
};
|
|
@@ -7042,7 +7190,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
7042
7190
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
7043
7191
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
7044
7192
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
7045
|
-
topScorecards?: Maybe<
|
|
7193
|
+
topScorecards?: Maybe<CompassTopScorecardConnection>;
|
|
7046
7194
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
7047
7195
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
7048
7196
|
};
|
|
@@ -11040,6 +11188,43 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
11040
11188
|
cursor: Scalars['String']['output'];
|
|
11041
11189
|
node?: Maybe<CompassTeamMetricSource>;
|
|
11042
11190
|
};
|
|
11191
|
+
export declare type CompassTopComponentsQuery = {
|
|
11192
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11193
|
+
sort?: InputMaybe<CompassTopComponentsQuerySort>;
|
|
11194
|
+
};
|
|
11195
|
+
export declare type CompassTopComponentsQuerySort = {
|
|
11196
|
+
order: CompassScorecardQuerySortOrder;
|
|
11197
|
+
};
|
|
11198
|
+
export declare type CompassTopScorecardComponentConnection = {
|
|
11199
|
+
__typename?: 'CompassTopScorecardComponentConnection';
|
|
11200
|
+
edges?: Maybe<Array<CompassTopScorecardComponentEdge>>;
|
|
11201
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
11202
|
+
pageInfo: PageInfo;
|
|
11203
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
11204
|
+
};
|
|
11205
|
+
export declare type CompassTopScorecardComponentEdge = {
|
|
11206
|
+
__typename?: 'CompassTopScorecardComponentEdge';
|
|
11207
|
+
cursor: Scalars['String']['output'];
|
|
11208
|
+
node?: Maybe<CompassComponent>;
|
|
11209
|
+
};
|
|
11210
|
+
export declare type CompassTopScorecardConnection = {
|
|
11211
|
+
__typename?: 'CompassTopScorecardConnection';
|
|
11212
|
+
edges?: Maybe<Array<CompassTopScorecardEdge>>;
|
|
11213
|
+
nodes?: Maybe<Array<CompassScorecard>>;
|
|
11214
|
+
pageInfo: PageInfo;
|
|
11215
|
+
};
|
|
11216
|
+
export declare type CompassTopScorecardEdge = {
|
|
11217
|
+
__typename?: 'CompassTopScorecardEdge';
|
|
11218
|
+
compositeScore: Scalars['Int']['output'];
|
|
11219
|
+
cursor: Scalars['String']['output'];
|
|
11220
|
+
node?: Maybe<CompassScorecard>;
|
|
11221
|
+
topComponents?: Maybe<CompassTopScorecardComponentConnection>;
|
|
11222
|
+
};
|
|
11223
|
+
export declare type CompassTopScorecardEdgeTopComponentsArgs = {
|
|
11224
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11226
|
+
query?: InputMaybe<CompassTopComponentsQuery>;
|
|
11227
|
+
};
|
|
11043
11228
|
export declare type CompassTopScorecardsQuery = {
|
|
11044
11229
|
filter?: InputMaybe<CompassTopScorecardsQueryFilter>;
|
|
11045
11230
|
sort?: InputMaybe<CompassTopScorecardsQuerySort>;
|
|
@@ -11628,6 +11813,11 @@ export declare enum ConfluenceAnalyticsCommentContentType {
|
|
|
11628
11813
|
Whiteboard = "whiteboard"
|
|
11629
11814
|
}
|
|
11630
11815
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
11816
|
+
export declare type ConfluenceAppInstallationConfigExtension = {
|
|
11817
|
+
__typename?: 'ConfluenceAppInstallationConfigExtension';
|
|
11818
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
11819
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
11820
|
+
};
|
|
11631
11821
|
export declare type ConfluenceApplicationLink = {
|
|
11632
11822
|
__typename?: 'ConfluenceApplicationLink';
|
|
11633
11823
|
applicationId: Scalars['String']['output'];
|
|
@@ -11639,6 +11829,13 @@ export declare type ConfluenceApplicationLink = {
|
|
|
11639
11829
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
11640
11830
|
typeId: Scalars['String']['output'];
|
|
11641
11831
|
};
|
|
11832
|
+
export declare type ConfluenceBlockedAccessAssignableSpaceRole = {
|
|
11833
|
+
__typename?: 'ConfluenceBlockedAccessAssignableSpaceRole';
|
|
11834
|
+
roleDescription: Scalars['String']['output'];
|
|
11835
|
+
roleId: Scalars['ID']['output'];
|
|
11836
|
+
roleName: Scalars['String']['output'];
|
|
11837
|
+
roleType: SpaceRoleType;
|
|
11838
|
+
};
|
|
11642
11839
|
export declare type ConfluenceBlogPost = Node & {
|
|
11643
11840
|
__typename?: 'ConfluenceBlogPost';
|
|
11644
11841
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -11861,6 +12058,33 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
11861
12058
|
__typename?: 'ConfluenceCommentUpdated';
|
|
11862
12059
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
11863
12060
|
};
|
|
12061
|
+
export declare type ConfluenceContentAccessRequest = {
|
|
12062
|
+
__typename?: 'ConfluenceContentAccessRequest';
|
|
12063
|
+
accessRequestedAaid: Scalars['ID']['output'];
|
|
12064
|
+
contentId: Scalars['ID']['output'];
|
|
12065
|
+
creatorAaid?: Maybe<Scalars['ID']['output']>;
|
|
12066
|
+
id: Scalars['ID']['output'];
|
|
12067
|
+
lastModifierAaid?: Maybe<Scalars['ID']['output']>;
|
|
12068
|
+
requestAccessType: ResourceAccessType;
|
|
12069
|
+
status: ConfluenceContentAccessRequestStatus;
|
|
12070
|
+
};
|
|
12071
|
+
export declare type ConfluenceContentAccessRequestConnection = {
|
|
12072
|
+
__typename?: 'ConfluenceContentAccessRequestConnection';
|
|
12073
|
+
edges?: Maybe<Array<Maybe<ConfluenceContentAccessRequestEdge>>>;
|
|
12074
|
+
nodes: Array<Maybe<ConfluenceContentAccessRequest>>;
|
|
12075
|
+
pageInfo: PageInfo;
|
|
12076
|
+
};
|
|
12077
|
+
export declare type ConfluenceContentAccessRequestEdge = {
|
|
12078
|
+
__typename?: 'ConfluenceContentAccessRequestEdge';
|
|
12079
|
+
contentAccessRequest: ConfluenceContentAccessRequest;
|
|
12080
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
12081
|
+
};
|
|
12082
|
+
export declare enum ConfluenceContentAccessRequestStatus {
|
|
12083
|
+
Approve = "APPROVE",
|
|
12084
|
+
Deny = "DENY",
|
|
12085
|
+
Pending = "PENDING",
|
|
12086
|
+
PendingSiteApproval = "PENDING_SITE_APPROVAL"
|
|
12087
|
+
}
|
|
11864
12088
|
export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
11865
12089
|
__typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
|
|
11866
12090
|
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
@@ -12155,6 +12379,19 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
12155
12379
|
space?: Maybe<ConfluenceSpace>;
|
|
12156
12380
|
success: Scalars['Boolean']['output'];
|
|
12157
12381
|
};
|
|
12382
|
+
export declare type ConfluenceCreateTopicInput = {
|
|
12383
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
12384
|
+
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
12385
|
+
logoId?: InputMaybe<Scalars['String']['input']>;
|
|
12386
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
12387
|
+
name: Scalars['String']['input'];
|
|
12388
|
+
};
|
|
12389
|
+
export declare type ConfluenceCreateTopicPayload = Payload & {
|
|
12390
|
+
__typename?: 'ConfluenceCreateTopicPayload';
|
|
12391
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12392
|
+
success: Scalars['Boolean']['output'];
|
|
12393
|
+
topic?: Maybe<ConfluenceTopic>;
|
|
12394
|
+
};
|
|
12158
12395
|
export declare type ConfluenceCurrentContentNativeProperties = {
|
|
12159
12396
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
12160
12397
|
contentState?: Maybe<ConfluenceContentState>;
|
|
@@ -12296,6 +12533,14 @@ export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
|
|
|
12296
12533
|
errors?: Maybe<Array<MutationError>>;
|
|
12297
12534
|
success: Scalars['Boolean']['output'];
|
|
12298
12535
|
};
|
|
12536
|
+
export declare type ConfluenceDeleteTopicInput = {
|
|
12537
|
+
id: Scalars['ID']['input'];
|
|
12538
|
+
};
|
|
12539
|
+
export declare type ConfluenceDeleteTopicPayload = Payload & {
|
|
12540
|
+
__typename?: 'ConfluenceDeleteTopicPayload';
|
|
12541
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12542
|
+
success: Scalars['Boolean']['output'];
|
|
12543
|
+
};
|
|
12299
12544
|
export declare type ConfluenceDeletedUser = {
|
|
12300
12545
|
__typename?: 'ConfluenceDeletedUser';
|
|
12301
12546
|
accountIds: Array<Maybe<Scalars['String']['output']>>;
|
|
@@ -12352,6 +12597,20 @@ export declare type ConfluenceExperimentInitModernizePayload = {
|
|
|
12352
12597
|
errors?: Maybe<Array<MutationError>>;
|
|
12353
12598
|
success: Scalars['Boolean']['output'];
|
|
12354
12599
|
};
|
|
12600
|
+
export declare type ConfluenceExtensionEgressDeclaration = {
|
|
12601
|
+
__typename?: 'ConfluenceExtensionEgressDeclaration';
|
|
12602
|
+
addresses?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
12603
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
12604
|
+
inScopeEUD?: Maybe<Scalars['Boolean']['output']>;
|
|
12605
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12606
|
+
};
|
|
12607
|
+
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
12608
|
+
spaceId: Scalars['String']['input'];
|
|
12609
|
+
};
|
|
12610
|
+
export declare enum ConfluenceExtensionVisibilityControlMechanism {
|
|
12611
|
+
AppAccessRules = "APP_ACCESS_RULES",
|
|
12612
|
+
DisplayConditions = "DISPLAY_CONDITIONS"
|
|
12613
|
+
}
|
|
12355
12614
|
export declare type ConfluenceExternalLink = {
|
|
12356
12615
|
__typename?: 'ConfluenceExternalLink';
|
|
12357
12616
|
id?: Maybe<Scalars['Long']['output']>;
|
|
@@ -12407,6 +12666,25 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
12407
12666
|
name?: Maybe<Scalars['String']['output']>;
|
|
12408
12667
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
12409
12668
|
};
|
|
12669
|
+
export declare type ConfluenceForgeExtension = {
|
|
12670
|
+
__typename?: 'ConfluenceForgeExtension';
|
|
12671
|
+
appVersion?: Maybe<Scalars['String']['output']>;
|
|
12672
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
12673
|
+
egress?: Maybe<Array<Maybe<ConfluenceExtensionEgressDeclaration>>>;
|
|
12674
|
+
environmentKey?: Maybe<Scalars['String']['output']>;
|
|
12675
|
+
environmentType?: Maybe<Scalars['String']['output']>;
|
|
12676
|
+
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
12677
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
12678
|
+
installationConfig?: Maybe<Array<Maybe<ConfluenceAppInstallationConfigExtension>>>;
|
|
12679
|
+
installationId?: Maybe<Scalars['String']['output']>;
|
|
12680
|
+
license?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
12681
|
+
moduleId?: Maybe<Scalars['String']['output']>;
|
|
12682
|
+
overrides?: Maybe<Array<Maybe<MapOfStringToBoolean>>>;
|
|
12683
|
+
properties?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
12684
|
+
scopes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
12685
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12686
|
+
userAccess?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
12687
|
+
};
|
|
12410
12688
|
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
12411
12689
|
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
12412
12690
|
None = "NONE"
|
|
@@ -12593,6 +12871,10 @@ export declare type ConfluenceLongTaskSuccess = ConfluenceLongTaskState & {
|
|
|
12593
12871
|
name?: Maybe<Scalars['String']['output']>;
|
|
12594
12872
|
result?: Maybe<ConfluenceLongTaskResult>;
|
|
12595
12873
|
};
|
|
12874
|
+
export declare type ConfluenceLoomEntryPoints = {
|
|
12875
|
+
__typename?: 'ConfluenceLoomEntryPoints';
|
|
12876
|
+
isLoomEntryPointsEnabled: Scalars['Boolean']['output'];
|
|
12877
|
+
};
|
|
12596
12878
|
export declare type ConfluenceMakeSubCalendarPrivateUrlInput = {
|
|
12597
12879
|
subCalendarId: Scalars['ID']['input'];
|
|
12598
12880
|
};
|
|
@@ -13079,11 +13361,29 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
13079
13361
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
13080
13362
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
13081
13363
|
};
|
|
13364
|
+
export declare type ConfluenceReactedUsersInput = {
|
|
13365
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
13366
|
+
containerType?: InputMaybe<ContainerType>;
|
|
13367
|
+
contentId: Scalars['String']['input'];
|
|
13368
|
+
contentType: GraphQlReactionContentType;
|
|
13369
|
+
emojiId: Scalars['String']['input'];
|
|
13370
|
+
};
|
|
13371
|
+
export declare type ConfluenceReactedUsersResponsePayload = Payload & {
|
|
13372
|
+
__typename?: 'ConfluenceReactedUsersResponsePayload';
|
|
13373
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
13374
|
+
confluencePerson: Array<Maybe<ConfluencePerson>>;
|
|
13375
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
13376
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
13377
|
+
emojiId: Scalars['String']['output'];
|
|
13378
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13379
|
+
reacted?: Maybe<Scalars['Boolean']['output']>;
|
|
13380
|
+
success: Scalars['Boolean']['output'];
|
|
13381
|
+
};
|
|
13082
13382
|
export declare type ConfluenceReactionInput = {
|
|
13083
13383
|
containerId?: InputMaybe<Scalars['Long']['input']>;
|
|
13084
|
-
containerType?: InputMaybe<
|
|
13384
|
+
containerType?: InputMaybe<ContainerType>;
|
|
13085
13385
|
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13086
|
-
contentType?: InputMaybe<
|
|
13386
|
+
contentType?: InputMaybe<GraphQlReactionContentType>;
|
|
13087
13387
|
emojiId?: InputMaybe<Scalars['String']['input']>;
|
|
13088
13388
|
};
|
|
13089
13389
|
export declare type ConfluenceReactionPayload = Payload & {
|
|
@@ -13094,16 +13394,30 @@ export declare type ConfluenceReactionPayload = Payload & {
|
|
|
13094
13394
|
errors?: Maybe<Array<MutationError>>;
|
|
13095
13395
|
success: Scalars['Boolean']['output'];
|
|
13096
13396
|
};
|
|
13097
|
-
export declare
|
|
13098
|
-
|
|
13099
|
-
|
|
13100
|
-
|
|
13101
|
-
|
|
13102
|
-
|
|
13103
|
-
|
|
13104
|
-
|
|
13105
|
-
|
|
13106
|
-
}
|
|
13397
|
+
export declare type ConfluenceReactionSummary = {
|
|
13398
|
+
__typename?: 'ConfluenceReactionSummary';
|
|
13399
|
+
reactionsSummary?: Maybe<Array<Maybe<ConfluenceReactionsSummaryResponse>>>;
|
|
13400
|
+
};
|
|
13401
|
+
export declare type ConfluenceReactionSummaryInput = {
|
|
13402
|
+
containerId?: InputMaybe<Scalars['Long']['input']>;
|
|
13403
|
+
containerType?: InputMaybe<ContainerType>;
|
|
13404
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13405
|
+
contentType?: InputMaybe<GraphQlReactionContentType>;
|
|
13406
|
+
};
|
|
13407
|
+
export declare type ConfluenceReactionsSummaryForEmoji = {
|
|
13408
|
+
__typename?: 'ConfluenceReactionsSummaryForEmoji';
|
|
13409
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
13410
|
+
emojiId?: Maybe<Scalars['String']['output']>;
|
|
13411
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13412
|
+
reacted?: Maybe<Scalars['Boolean']['output']>;
|
|
13413
|
+
};
|
|
13414
|
+
export declare type ConfluenceReactionsSummaryResponse = {
|
|
13415
|
+
__typename?: 'ConfluenceReactionsSummaryResponse';
|
|
13416
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
13417
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
13418
|
+
reactionsCount?: Maybe<Scalars['Int']['output']>;
|
|
13419
|
+
reactionsSummaryForEmoji?: Maybe<Array<Maybe<ConfluenceReactionsSummaryForEmoji>>>;
|
|
13420
|
+
};
|
|
13107
13421
|
export declare type ConfluenceRedactionMetadata = {
|
|
13108
13422
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
13109
13423
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -13157,6 +13471,10 @@ export declare type ConfluenceReplyToCommentPayload = {
|
|
|
13157
13471
|
errors?: Maybe<Array<MutationError>>;
|
|
13158
13472
|
success: Scalars['Boolean']['output'];
|
|
13159
13473
|
};
|
|
13474
|
+
export declare enum ConfluenceRequestAccessApprovalDecision {
|
|
13475
|
+
Approve = "APPROVE",
|
|
13476
|
+
Deny = "DENY"
|
|
13477
|
+
}
|
|
13160
13478
|
export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
|
|
13161
13479
|
__typename?: 'ConfluenceResolveCommentByContentIdPayload';
|
|
13162
13480
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -13177,6 +13495,16 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
13177
13495
|
errors?: Maybe<Array<MutationError>>;
|
|
13178
13496
|
success: Scalars['Boolean']['output'];
|
|
13179
13497
|
};
|
|
13498
|
+
export declare enum ConfluenceRoleAssignabilityCode {
|
|
13499
|
+
Assignable = "ASSIGNABLE",
|
|
13500
|
+
DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
|
|
13501
|
+
EscalationNotAssignable = "ESCALATION_NOT_ASSIGNABLE",
|
|
13502
|
+
GuestExistingSpaceAccess = "GUEST_EXISTING_SPACE_ACCESS",
|
|
13503
|
+
NotAssignable = "NOT_ASSIGNABLE",
|
|
13504
|
+
NoManageGuestUsersPermNotAssignable = "NO_MANAGE_GUEST_USERS_PERM_NOT_ASSIGNABLE",
|
|
13505
|
+
NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
|
|
13506
|
+
PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
|
|
13507
|
+
}
|
|
13180
13508
|
export declare type ConfluenceSchedulePublished = {
|
|
13181
13509
|
__typename?: 'ConfluenceSchedulePublished';
|
|
13182
13510
|
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13328,6 +13656,11 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
13328
13656
|
Group = "GROUP",
|
|
13329
13657
|
User = "USER"
|
|
13330
13658
|
}
|
|
13659
|
+
export declare enum ConfluenceSpaceRoleMode {
|
|
13660
|
+
PreRoles = "PRE_ROLES",
|
|
13661
|
+
Roles = "ROLES",
|
|
13662
|
+
RolesTransition = "ROLES_TRANSITION"
|
|
13663
|
+
}
|
|
13331
13664
|
export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
13332
13665
|
V1 = "V1",
|
|
13333
13666
|
V2 = "V2"
|
|
@@ -13417,6 +13750,28 @@ export declare type ConfluenceTenantContext = {
|
|
|
13417
13750
|
licensedProducts: Array<LicensedProduct>;
|
|
13418
13751
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
13419
13752
|
};
|
|
13753
|
+
export declare type ConfluenceTopic = {
|
|
13754
|
+
__typename?: 'ConfluenceTopic';
|
|
13755
|
+
creator?: Maybe<Scalars['ID']['output']>;
|
|
13756
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
13757
|
+
featured?: Maybe<Scalars['Boolean']['output']>;
|
|
13758
|
+
id: Scalars['ID']['output'];
|
|
13759
|
+
logoId?: Maybe<Scalars['String']['output']>;
|
|
13760
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
13761
|
+
modifier?: Maybe<Scalars['ID']['output']>;
|
|
13762
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13763
|
+
};
|
|
13764
|
+
export declare type ConfluenceTopicConnection = {
|
|
13765
|
+
__typename?: 'ConfluenceTopicConnection';
|
|
13766
|
+
edges?: Maybe<Array<Maybe<ConfluenceTopicEdge>>>;
|
|
13767
|
+
nodes?: Maybe<Array<Maybe<ConfluenceTopic>>>;
|
|
13768
|
+
pageInfo: ConfluencePageInfo;
|
|
13769
|
+
};
|
|
13770
|
+
export declare type ConfluenceTopicEdge = {
|
|
13771
|
+
__typename?: 'ConfluenceTopicEdge';
|
|
13772
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
13773
|
+
node?: Maybe<ConfluenceTopic>;
|
|
13774
|
+
};
|
|
13420
13775
|
export declare type ConfluenceTrashBlogPostInput = {
|
|
13421
13776
|
id: Scalars['ID']['input'];
|
|
13422
13777
|
};
|
|
@@ -13471,6 +13826,25 @@ export declare type ConfluenceUpdateCommentPayload = {
|
|
|
13471
13826
|
errors?: Maybe<Array<MutationError>>;
|
|
13472
13827
|
success: Scalars['Boolean']['output'];
|
|
13473
13828
|
};
|
|
13829
|
+
export declare type ConfluenceUpdateContentAccessRequestInput = {
|
|
13830
|
+
accessRequestedAccountId: Scalars['ID']['input'];
|
|
13831
|
+
accessType: ResourceAccessType;
|
|
13832
|
+
approvalDecision: ConfluenceRequestAccessApprovalDecision;
|
|
13833
|
+
contentId: Scalars['ID']['input'];
|
|
13834
|
+
requestId: Scalars['ID']['input'];
|
|
13835
|
+
};
|
|
13836
|
+
export declare type ConfluenceUpdateContentAccessRequestMutationErrorExtension = MutationErrorExtension & {
|
|
13837
|
+
__typename?: 'ConfluenceUpdateContentAccessRequestMutationErrorExtension';
|
|
13838
|
+
displayName: Scalars['String']['output'];
|
|
13839
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
13840
|
+
processedRequestStatus: ConfluenceContentAccessRequestStatus;
|
|
13841
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
13842
|
+
};
|
|
13843
|
+
export declare type ConfluenceUpdateContentAccessRequestPayload = Payload & {
|
|
13844
|
+
__typename?: 'ConfluenceUpdateContentAccessRequestPayload';
|
|
13845
|
+
errors: Array<MutationError>;
|
|
13846
|
+
success: Scalars['Boolean']['output'];
|
|
13847
|
+
};
|
|
13474
13848
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
13475
13849
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
13476
13850
|
id: Scalars['ID']['input'];
|
|
@@ -13585,6 +13959,19 @@ export declare type ConfluenceUpdateTeamPresenceSpaceSettingsPayload = {
|
|
|
13585
13959
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
13586
13960
|
success: Scalars['Boolean']['output'];
|
|
13587
13961
|
};
|
|
13962
|
+
export declare type ConfluenceUpdateTopicInput = {
|
|
13963
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
13964
|
+
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13965
|
+
id: Scalars['ID']['input'];
|
|
13966
|
+
logoId?: InputMaybe<Scalars['String']['input']>;
|
|
13967
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
13968
|
+
};
|
|
13969
|
+
export declare type ConfluenceUpdateTopicPayload = Payload & {
|
|
13970
|
+
__typename?: 'ConfluenceUpdateTopicPayload';
|
|
13971
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13972
|
+
success: Scalars['Boolean']['output'];
|
|
13973
|
+
topic?: Maybe<ConfluenceTopic>;
|
|
13974
|
+
};
|
|
13588
13975
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
13589
13976
|
blogPostId: Scalars['ID']['input'];
|
|
13590
13977
|
key: Scalars['String']['input'];
|
|
@@ -13879,6 +14266,7 @@ export declare enum ContainerType {
|
|
|
13879
14266
|
}
|
|
13880
14267
|
export declare type Content = {
|
|
13881
14268
|
__typename?: 'Content';
|
|
14269
|
+
aiProperty?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
13882
14270
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
13883
14271
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
13884
14272
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -13950,6 +14338,11 @@ export declare type Content = {
|
|
|
13950
14338
|
version?: Maybe<Version>;
|
|
13951
14339
|
visibleDescendantsCount: Scalars['Long']['output'];
|
|
13952
14340
|
};
|
|
14341
|
+
export declare type ContentAiPropertyArgs = {
|
|
14342
|
+
cloudId: Scalars['String']['input'];
|
|
14343
|
+
contentType: KnowledgeGraphContentType;
|
|
14344
|
+
objectType: KnowledgeGraphObjectType;
|
|
14345
|
+
};
|
|
13953
14346
|
export declare type ContentAttachmentsArgs = {
|
|
13954
14347
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
13955
14348
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14060,6 +14453,7 @@ export declare type ContentAnalyticsLastViewedAtByPageItem = {
|
|
|
14060
14453
|
export declare type ContentAnalyticsPageViewInfo = {
|
|
14061
14454
|
__typename?: 'ContentAnalyticsPageViewInfo';
|
|
14062
14455
|
isEngaged?: Maybe<Scalars['Boolean']['output']>;
|
|
14456
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
14063
14457
|
lastVersionViewed: Scalars['Int']['output'];
|
|
14064
14458
|
lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
|
|
14065
14459
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19057,6 +19451,23 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
19057
19451
|
Starting = "STARTING",
|
|
19058
19452
|
Stopped = "STOPPED"
|
|
19059
19453
|
}
|
|
19454
|
+
export declare type DevAiFlowRepository = {
|
|
19455
|
+
__typename?: 'DevAiFlowRepository';
|
|
19456
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
19457
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19458
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19459
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19460
|
+
};
|
|
19461
|
+
export declare type DevAiFlowRepositoryConnection = {
|
|
19462
|
+
__typename?: 'DevAiFlowRepositoryConnection';
|
|
19463
|
+
edges?: Maybe<Array<Maybe<DevAiFlowRepositoryEdge>>>;
|
|
19464
|
+
pageInfo: PageInfo;
|
|
19465
|
+
};
|
|
19466
|
+
export declare type DevAiFlowRepositoryEdge = {
|
|
19467
|
+
__typename?: 'DevAiFlowRepositoryEdge';
|
|
19468
|
+
cursor: Scalars['String']['output'];
|
|
19469
|
+
node?: Maybe<DevAiFlowRepository>;
|
|
19470
|
+
};
|
|
19060
19471
|
export declare type DevAiFlowSession = {
|
|
19061
19472
|
__typename?: 'DevAiFlowSession';
|
|
19062
19473
|
additionalInfoJSON?: Maybe<Scalars['String']['output']>;
|
|
@@ -22400,6 +22811,7 @@ export declare type ExternalPosition = Node & {
|
|
|
22400
22811
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
22401
22812
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
22402
22813
|
id: Scalars['ID']['output'];
|
|
22814
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
22403
22815
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
22404
22816
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
22405
22817
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -22611,7 +23023,9 @@ export declare type ExternalUser = {
|
|
|
22611
23023
|
__typename?: 'ExternalUser';
|
|
22612
23024
|
linkedUsers?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection>;
|
|
22613
23025
|
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
23026
|
+
thirdPartyUserId?: Maybe<Scalars['ID']['output']>;
|
|
22614
23027
|
user?: Maybe<User>;
|
|
23028
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
22615
23029
|
};
|
|
22616
23030
|
export declare type ExternalUserLinkedUsersArgs = {
|
|
22617
23031
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28503,12 +28917,16 @@ export declare type GraphStore = {
|
|
|
28503
28917
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28504
28918
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28505
28919
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28920
|
+
userSnapshottedConfluencePage?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageConnection>;
|
|
28921
|
+
userSnapshottedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection>;
|
|
28506
28922
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28507
28923
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28508
28924
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
28509
28925
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
28510
28926
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
28511
28927
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
28928
|
+
userTrashedConfluenceContent?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentConnection>;
|
|
28929
|
+
userTrashedConfluenceContentInverse?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection>;
|
|
28512
28930
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28513
28931
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28514
28932
|
userUpdatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalConnection>;
|
|
@@ -32915,6 +33333,20 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
32915
33333
|
id: Scalars['ID']['input'];
|
|
32916
33334
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
32917
33335
|
};
|
|
33336
|
+
export declare type GraphStoreUserSnapshottedConfluencePageArgs = {
|
|
33337
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33338
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33339
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33340
|
+
id: Scalars['ID']['input'];
|
|
33341
|
+
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
33342
|
+
};
|
|
33343
|
+
export declare type GraphStoreUserSnapshottedConfluencePageInverseArgs = {
|
|
33344
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33345
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33346
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33347
|
+
id: Scalars['ID']['input'];
|
|
33348
|
+
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
33349
|
+
};
|
|
32918
33350
|
export declare type GraphStoreUserTaggedInCommentArgs = {
|
|
32919
33351
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32920
33352
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32957,6 +33389,20 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
32957
33389
|
id: Scalars['ID']['input'];
|
|
32958
33390
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
32959
33391
|
};
|
|
33392
|
+
export declare type GraphStoreUserTrashedConfluenceContentArgs = {
|
|
33393
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33394
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33395
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33396
|
+
id: Scalars['ID']['input'];
|
|
33397
|
+
sort?: InputMaybe<GraphStoreUserTrashedConfluenceContentSortInput>;
|
|
33398
|
+
};
|
|
33399
|
+
export declare type GraphStoreUserTrashedConfluenceContentInverseArgs = {
|
|
33400
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33401
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33402
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33403
|
+
id: Scalars['ID']['input'];
|
|
33404
|
+
sort?: InputMaybe<GraphStoreUserTrashedConfluenceContentSortInput>;
|
|
33405
|
+
};
|
|
32960
33406
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
32961
33407
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32962
33408
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35036,7 +35482,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35036
35482
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35037
35483
|
id: Scalars['ID']['output'];
|
|
35038
35484
|
};
|
|
35039
|
-
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 |
|
|
35485
|
+
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;
|
|
35040
35486
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
35041
35487
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
35042
35488
|
value: Scalars['Int']['output'];
|
|
@@ -35071,7 +35517,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
35071
35517
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
35072
35518
|
id: Scalars['ID']['output'];
|
|
35073
35519
|
};
|
|
35074
|
-
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 |
|
|
35520
|
+
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;
|
|
35075
35521
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
35076
35522
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
35077
35523
|
value: Scalars['String']['output'];
|
|
@@ -35081,19 +35527,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35081
35527
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35082
35528
|
id: Scalars['ID']['output'];
|
|
35083
35529
|
};
|
|
35084
|
-
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 |
|
|
35530
|
+
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;
|
|
35085
35531
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
35086
35532
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
35087
35533
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
35088
35534
|
id: Scalars['ID']['output'];
|
|
35089
35535
|
};
|
|
35090
|
-
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 |
|
|
35536
|
+
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;
|
|
35091
35537
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
35092
35538
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
35093
35539
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
35094
35540
|
id: Scalars['ID']['output'];
|
|
35095
35541
|
};
|
|
35096
|
-
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 |
|
|
35542
|
+
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;
|
|
35097
35543
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
35098
35544
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
35099
35545
|
value: Scalars['Boolean']['output'];
|
|
@@ -35192,7 +35638,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
35192
35638
|
V2 = "V2",
|
|
35193
35639
|
V3 = "V3"
|
|
35194
35640
|
}
|
|
35195
|
-
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 |
|
|
35641
|
+
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;
|
|
35196
35642
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35197
35643
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35198
35644
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -47096,6 +47542,34 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
47096
47542
|
};
|
|
47097
47543
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47098
47544
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47545
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
47546
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
47547
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageEdge>>>;
|
|
47548
|
+
pageInfo: PageInfo;
|
|
47549
|
+
};
|
|
47550
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageEdge = {
|
|
47551
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageEdge';
|
|
47552
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47553
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47554
|
+
id: Scalars['ID']['output'];
|
|
47555
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47556
|
+
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageUnion>;
|
|
47557
|
+
};
|
|
47558
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection = HasPageInfo & {
|
|
47559
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection';
|
|
47560
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge>>>;
|
|
47561
|
+
pageInfo: PageInfo;
|
|
47562
|
+
};
|
|
47563
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge = {
|
|
47564
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge';
|
|
47565
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47566
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47567
|
+
id: Scalars['ID']['output'];
|
|
47568
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47569
|
+
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion>;
|
|
47570
|
+
};
|
|
47571
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47572
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageUnion = ConfluencePage;
|
|
47099
47573
|
export declare type GraphStoreSimplifiedUserTaggedInCommentConnection = HasPageInfo & {
|
|
47100
47574
|
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentConnection';
|
|
47101
47575
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentEdge>>>;
|
|
@@ -47180,6 +47654,34 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
47180
47654
|
};
|
|
47181
47655
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47182
47656
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
47657
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentConnection = HasPageInfo & {
|
|
47658
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentConnection';
|
|
47659
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentEdge>>>;
|
|
47660
|
+
pageInfo: PageInfo;
|
|
47661
|
+
};
|
|
47662
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentEdge = {
|
|
47663
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentEdge';
|
|
47664
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47665
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47666
|
+
id: Scalars['ID']['output'];
|
|
47667
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47668
|
+
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentUnion>;
|
|
47669
|
+
};
|
|
47670
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection = HasPageInfo & {
|
|
47671
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection';
|
|
47672
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge>>>;
|
|
47673
|
+
pageInfo: PageInfo;
|
|
47674
|
+
};
|
|
47675
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge = {
|
|
47676
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge';
|
|
47677
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47678
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47679
|
+
id: Scalars['ID']['output'];
|
|
47680
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47681
|
+
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion>;
|
|
47682
|
+
};
|
|
47683
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47684
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentUnion = ConfluenceBlogPost | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
47183
47685
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
47184
47686
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
47185
47687
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -48767,6 +49269,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
48767
49269
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
48768
49270
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48769
49271
|
};
|
|
49272
|
+
export declare type GraphStoreUserSnapshottedConfluencePageSortInput = {
|
|
49273
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49274
|
+
};
|
|
48770
49275
|
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
48771
49276
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48772
49277
|
};
|
|
@@ -48776,6 +49281,9 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
48776
49281
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
48777
49282
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48778
49283
|
};
|
|
49284
|
+
export declare type GraphStoreUserTrashedConfluenceContentSortInput = {
|
|
49285
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49286
|
+
};
|
|
48779
49287
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
48780
49288
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48781
49289
|
};
|
|
@@ -51374,6 +51882,7 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
51374
51882
|
};
|
|
51375
51883
|
export declare type History = {
|
|
51376
51884
|
__typename?: 'History';
|
|
51885
|
+
archivedDate?: Maybe<Scalars['String']['output']>;
|
|
51377
51886
|
contributors?: Maybe<Contributors>;
|
|
51378
51887
|
createdBy?: Maybe<Person>;
|
|
51379
51888
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -55286,6 +55795,18 @@ export declare type JiraCreateBoardSource = {
|
|
|
55286
55795
|
fieldInput?: InputMaybe<JiraCreateBoardFieldInput>;
|
|
55287
55796
|
savedFilterId?: InputMaybe<Scalars['Long']['input']>;
|
|
55288
55797
|
};
|
|
55798
|
+
export declare type JiraCreateBoardViewStatusColumnInput = {
|
|
55799
|
+
name: Scalars['String']['input'];
|
|
55800
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55801
|
+
statusCategoryId: Scalars['ID']['input'];
|
|
55802
|
+
viewId: Scalars['ID']['input'];
|
|
55803
|
+
};
|
|
55804
|
+
export declare type JiraCreateBoardViewStatusColumnPayload = {
|
|
55805
|
+
__typename?: 'JiraCreateBoardViewStatusColumnPayload';
|
|
55806
|
+
boardView?: Maybe<JiraBoardView>;
|
|
55807
|
+
errors?: Maybe<Array<MutationError>>;
|
|
55808
|
+
success: Scalars['Boolean']['output'];
|
|
55809
|
+
};
|
|
55289
55810
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
55290
55811
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
55291
55812
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -55807,6 +56328,18 @@ export declare type JiraDeleteActivityConfigurationInput = {
|
|
|
55807
56328
|
journeyId: Scalars['ID']['input'];
|
|
55808
56329
|
journeyVersion: Scalars['Long']['input'];
|
|
55809
56330
|
};
|
|
56331
|
+
export declare type JiraDeleteBoardViewStatusColumnInput = {
|
|
56332
|
+
columnId: Scalars['ID']['input'];
|
|
56333
|
+
replacementStatusId: Scalars['ID']['input'];
|
|
56334
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
56335
|
+
viewId: Scalars['ID']['input'];
|
|
56336
|
+
};
|
|
56337
|
+
export declare type JiraDeleteBoardViewStatusColumnPayload = {
|
|
56338
|
+
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
56339
|
+
boardView?: Maybe<JiraBoardView>;
|
|
56340
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56341
|
+
success: Scalars['Boolean']['output'];
|
|
56342
|
+
};
|
|
55810
56343
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
55811
56344
|
cloudId: Scalars['ID']['input'];
|
|
55812
56345
|
customBackgroundId: Scalars['ID']['input'];
|
|
@@ -57861,6 +58394,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
57861
58394
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
57862
58395
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
57863
58396
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
58397
|
+
linkedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
57864
58398
|
matchesIssueSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
57865
58399
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
57866
58400
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
@@ -58047,6 +58581,9 @@ export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
|
58047
58581
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58048
58582
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58049
58583
|
};
|
|
58584
|
+
export declare type JiraIssueLinkedPullRequestsArgs = {
|
|
58585
|
+
input?: InputMaybe<JiraIssuePullRequestsInput>;
|
|
58586
|
+
};
|
|
58050
58587
|
export declare type JiraIssueMatchesIssueSearchArgs = {
|
|
58051
58588
|
issueSearchInput: JiraIssueSearchInput;
|
|
58052
58589
|
};
|
|
@@ -58970,6 +59507,9 @@ export declare type JiraIssuePullRequests = {
|
|
|
58970
59507
|
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
58971
59508
|
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
58972
59509
|
};
|
|
59510
|
+
export declare type JiraIssuePullRequestsInput = {
|
|
59511
|
+
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59512
|
+
};
|
|
58973
59513
|
export declare type JiraIssueRemoteIssueLink = {
|
|
58974
59514
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
58975
59515
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -59179,6 +59719,9 @@ export declare enum JiraIssueSearchFieldSetSelectedState {
|
|
|
59179
59719
|
NonSelected = "NON_SELECTED",
|
|
59180
59720
|
Selected = "SELECTED"
|
|
59181
59721
|
}
|
|
59722
|
+
export declare type JiraIssueSearchFieldSets = {
|
|
59723
|
+
replaceFieldSetsInput?: InputMaybe<JiraIssueSearchReplaceFieldSetsInput>;
|
|
59724
|
+
};
|
|
59182
59725
|
export declare type JiraIssueSearchFieldSetsFilter = {
|
|
59183
59726
|
fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
|
|
59184
59727
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59226,6 +59769,10 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
59226
59769
|
export declare type JiraIssueSearchOptions = {
|
|
59227
59770
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
59228
59771
|
};
|
|
59772
|
+
export declare type JiraIssueSearchReplaceFieldSetsInput = {
|
|
59773
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
59774
|
+
nodes: Array<Scalars['String']['input']>;
|
|
59775
|
+
};
|
|
59229
59776
|
export declare type JiraIssueSearchResult = {
|
|
59230
59777
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
59231
59778
|
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
@@ -65611,6 +66158,18 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
65611
66158
|
errors?: Maybe<Array<MutationError>>;
|
|
65612
66159
|
success: Scalars['Boolean']['output'];
|
|
65613
66160
|
};
|
|
66161
|
+
export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
66162
|
+
columnId: Scalars['ID']['input'];
|
|
66163
|
+
name: Scalars['String']['input'];
|
|
66164
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
66165
|
+
viewId: Scalars['ID']['input'];
|
|
66166
|
+
};
|
|
66167
|
+
export declare type JiraRenameBoardViewStatusColumnPayload = {
|
|
66168
|
+
__typename?: 'JiraRenameBoardViewStatusColumnPayload';
|
|
66169
|
+
boardView?: Maybe<JiraBoardView>;
|
|
66170
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66171
|
+
success: Scalars['Boolean']['output'];
|
|
66172
|
+
};
|
|
65614
66173
|
export declare type JiraRenameNavigationItemInput = {
|
|
65615
66174
|
id: Scalars['ID']['input'];
|
|
65616
66175
|
label: Scalars['String']['input'];
|
|
@@ -66659,6 +67218,10 @@ export declare type JiraServiceManagementDecisionEdge = {
|
|
|
66659
67218
|
cursor: Scalars['String']['output'];
|
|
66660
67219
|
node?: Maybe<JiraServiceManagementDecision>;
|
|
66661
67220
|
};
|
|
67221
|
+
export declare type JiraServiceManagementDefaultCommentBehavior = {
|
|
67222
|
+
__typename?: 'JiraServiceManagementDefaultCommentBehavior';
|
|
67223
|
+
issueView?: Maybe<JiraServiceManagementIssueViewDefaultCommentBehavior>;
|
|
67224
|
+
};
|
|
66662
67225
|
export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
66663
67226
|
__typename?: 'JiraServiceManagementDueDatePreviewField';
|
|
66664
67227
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -66734,6 +67297,10 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
66734
67297
|
name: Scalars['String']['output'];
|
|
66735
67298
|
type: Scalars['String']['output'];
|
|
66736
67299
|
};
|
|
67300
|
+
export declare enum JiraServiceManagementIssueViewDefaultCommentBehavior {
|
|
67301
|
+
InternalNote = "INTERNAL_NOTE",
|
|
67302
|
+
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
67303
|
+
}
|
|
66737
67304
|
export declare type JiraServiceManagementLanguage = {
|
|
66738
67305
|
__typename?: 'JiraServiceManagementLanguage';
|
|
66739
67306
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67528,6 +68095,16 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
67528
68095
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
67529
68096
|
success: Scalars['Boolean']['output'];
|
|
67530
68097
|
};
|
|
68098
|
+
export declare type JiraSetIssueSearchFieldSetsInput = {
|
|
68099
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSets>;
|
|
68100
|
+
viewId: Scalars['ID']['input'];
|
|
68101
|
+
};
|
|
68102
|
+
export declare type JiraSetIssueSearchFieldSetsPayload = {
|
|
68103
|
+
__typename?: 'JiraSetIssueSearchFieldSetsPayload';
|
|
68104
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68105
|
+
success: Scalars['Boolean']['output'];
|
|
68106
|
+
view?: Maybe<JiraSpreadsheetView>;
|
|
68107
|
+
};
|
|
67531
68108
|
export declare type JiraSetIssueSearchGroupByInput = {
|
|
67532
68109
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
67533
68110
|
viewId: Scalars['ID']['input'];
|
|
@@ -67555,6 +68132,15 @@ export declare type JiraSetIssueSearchHierarchyEnabledPayload = Payload & {
|
|
|
67555
68132
|
errors?: Maybe<Array<MutationError>>;
|
|
67556
68133
|
success: Scalars['Boolean']['output'];
|
|
67557
68134
|
};
|
|
68135
|
+
export declare type JiraSetIssueSearchJqlInput = {
|
|
68136
|
+
jql: Scalars['String']['input'];
|
|
68137
|
+
viewId: Scalars['ID']['input'];
|
|
68138
|
+
};
|
|
68139
|
+
export declare type JiraSetIssueSearchJqlPayload = Payload & {
|
|
68140
|
+
__typename?: 'JiraSetIssueSearchJqlPayload';
|
|
68141
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68142
|
+
success: Scalars['Boolean']['output'];
|
|
68143
|
+
};
|
|
67558
68144
|
export declare type JiraSetIssueSearchViewLayoutInput = {
|
|
67559
68145
|
viewId: Scalars['ID']['input'];
|
|
67560
68146
|
viewLayout: JiraIssueSearchViewLayout;
|
|
@@ -67997,6 +68583,7 @@ export declare type JiraSpreadsheetGroup = {
|
|
|
67997
68583
|
afterGroupId?: Maybe<Scalars['String']['output']>;
|
|
67998
68584
|
beforeGroupId?: Maybe<Scalars['String']['output']>;
|
|
67999
68585
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
68586
|
+
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
68000
68587
|
fieldType?: Maybe<Scalars['String']['output']>;
|
|
68001
68588
|
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
68002
68589
|
id: Scalars['ID']['output'];
|
|
@@ -68039,6 +68626,7 @@ export declare type JiraSpreadsheetGroupByConfigRecentlyUsedArgs = {
|
|
|
68039
68626
|
export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
|
|
68040
68627
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
|
|
68041
68628
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
|
|
68629
|
+
pageInfo?: Maybe<PageInfo>;
|
|
68042
68630
|
};
|
|
68043
68631
|
export declare type JiraSpreadsheetGroupByFieldOptionEdge = {
|
|
68044
68632
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionEdge';
|
|
@@ -68365,10 +68953,13 @@ export declare type JiraSubscription = {
|
|
|
68365
68953
|
onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
|
|
68366
68954
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
68367
68955
|
onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
68956
|
+
onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
68368
68957
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
68958
|
+
onIssueDeletedByProjectsNoEnrichment?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
68369
68959
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
68370
68960
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
68371
68961
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
68962
|
+
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
68372
68963
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
68373
68964
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
68374
68965
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
@@ -68426,10 +69017,18 @@ export declare type JiraSubscriptionOnIssueCreatedByProjectNoEnrichmentArgs = {
|
|
|
68426
69017
|
cloudId: Scalars['ID']['input'];
|
|
68427
69018
|
projectId: Scalars['String']['input'];
|
|
68428
69019
|
};
|
|
69020
|
+
export declare type JiraSubscriptionOnIssueCreatedByProjectsNoEnrichmentArgs = {
|
|
69021
|
+
cloudId: Scalars['ID']['input'];
|
|
69022
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69023
|
+
};
|
|
68429
69024
|
export declare type JiraSubscriptionOnIssueDeletedByProjectArgs = {
|
|
68430
69025
|
cloudId: Scalars['ID']['input'];
|
|
68431
69026
|
projectId: Scalars['String']['input'];
|
|
68432
69027
|
};
|
|
69028
|
+
export declare type JiraSubscriptionOnIssueDeletedByProjectsNoEnrichmentArgs = {
|
|
69029
|
+
cloudId: Scalars['ID']['input'];
|
|
69030
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69031
|
+
};
|
|
68433
69032
|
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
68434
69033
|
input: JiraIssueExportInput;
|
|
68435
69034
|
};
|
|
@@ -68441,6 +69040,10 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectNoEnrichmentArgs = {
|
|
|
68441
69040
|
cloudId: Scalars['ID']['input'];
|
|
68442
69041
|
projectId: Scalars['String']['input'];
|
|
68443
69042
|
};
|
|
69043
|
+
export declare type JiraSubscriptionOnIssueUpdatedByProjectsNoEnrichmentArgs = {
|
|
69044
|
+
cloudId: Scalars['ID']['input'];
|
|
69045
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69046
|
+
};
|
|
68444
69047
|
export declare type JiraSubscriptionOnJirtBoardIssueSubscriptionArgs = {
|
|
68445
69048
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
68446
69049
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78351,6 +78954,9 @@ export declare type Mutation = {
|
|
|
78351
78954
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
78352
78955
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
78353
78956
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
78957
|
+
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
78958
|
+
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
78959
|
+
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
78354
78960
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
78355
78961
|
attachDanglingComment?: Maybe<Comment>;
|
|
78356
78962
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
@@ -78395,13 +79001,16 @@ export declare type Mutation = {
|
|
|
78395
79001
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
78396
79002
|
confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
|
|
78397
79003
|
confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
|
|
79004
|
+
confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
|
|
78398
79005
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
78399
79006
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
79007
|
+
confluence_deleteReaction?: Maybe<ConfluenceReactionPayload>;
|
|
78400
79008
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
78401
79009
|
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
78402
79010
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
78403
79011
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
78404
79012
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
79013
|
+
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
78405
79014
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
78406
79015
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
78407
79016
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
@@ -78414,11 +79023,13 @@ export declare type Mutation = {
|
|
|
78414
79023
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
78415
79024
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
78416
79025
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
79026
|
+
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
78417
79027
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
78418
79028
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
78419
79029
|
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
78420
79030
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
78421
79031
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
79032
|
+
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
78422
79033
|
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
78423
79034
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
78424
79035
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -78570,9 +79181,11 @@ export declare type Mutation = {
|
|
|
78570
79181
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
78571
79182
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
78572
79183
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
79184
|
+
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
78573
79185
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
78574
79186
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
78575
79187
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79188
|
+
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
78576
79189
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
78577
79190
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
78578
79191
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
@@ -78581,6 +79194,7 @@ export declare type Mutation = {
|
|
|
78581
79194
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
78582
79195
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
78583
79196
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
79197
|
+
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
78584
79198
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
78585
79199
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
78586
79200
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
@@ -78595,9 +79209,11 @@ export declare type Mutation = {
|
|
|
78595
79209
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
78596
79210
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
78597
79211
|
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
79212
|
+
jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
|
|
78598
79213
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
78599
79214
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
78600
79215
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
79216
|
+
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
78601
79217
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
78602
79218
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
78603
79219
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
@@ -78683,7 +79299,6 @@ export declare type Mutation = {
|
|
|
78683
79299
|
resetToDefaultSpaceRoleAssignments?: Maybe<ResetToDefaultSpaceRoleAssignmentsPayload>;
|
|
78684
79300
|
resolveInlineComment?: Maybe<ResolveInlineCommentPayload>;
|
|
78685
79301
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
78686
|
-
resolveRestrictions?: Maybe<ResolveRestrictionsPayload>;
|
|
78687
79302
|
resolveRestrictionsForSubjects?: Maybe<ResolveRestrictionsPayload>;
|
|
78688
79303
|
restoreSpace?: Maybe<RestoreSpacePayload>;
|
|
78689
79304
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
@@ -78722,15 +79337,11 @@ export declare type Mutation = {
|
|
|
78722
79337
|
shepherd?: Maybe<ShepherdMutation>;
|
|
78723
79338
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
78724
79339
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
78725
|
-
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
78726
79340
|
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
78727
79341
|
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
78728
|
-
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
78729
|
-
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
78730
79342
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
78731
79343
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
78732
79344
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
78733
|
-
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
78734
79345
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
78735
79346
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
78736
79347
|
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -78741,18 +79352,6 @@ export declare type Mutation = {
|
|
|
78741
79352
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
78742
79353
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
78743
79354
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
78744
|
-
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
78745
|
-
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
78746
|
-
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
78747
|
-
spf_updateDependencyJustification?: Maybe<SpfUpdateDependencyPayload>;
|
|
78748
|
-
spf_updateDependencyName?: Maybe<SpfUpdateDependencyPayload>;
|
|
78749
|
-
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
78750
|
-
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
78751
|
-
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
78752
|
-
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
78753
|
-
spf_updateDependencySubmitter?: Maybe<SpfUpdateDependencyPayload>;
|
|
78754
|
-
spf_updateDependencySubmittingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
78755
|
-
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
78756
79355
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
78757
79356
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
78758
79357
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -78928,6 +79527,21 @@ export declare type MutationArchivePolarisInsightsArgs = {
|
|
|
78928
79527
|
export declare type MutationArchiveSpaceArgs = {
|
|
78929
79528
|
input: ArchiveSpaceInput;
|
|
78930
79529
|
};
|
|
79530
|
+
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
79531
|
+
autoColumnMappingInput?: InputMaybe<AssetsDmAutoColumnMappingInput>;
|
|
79532
|
+
cloudId: Scalars['ID']['input'];
|
|
79533
|
+
workspaceId: Scalars['ID']['input'];
|
|
79534
|
+
};
|
|
79535
|
+
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
79536
|
+
cloudId: Scalars['ID']['input'];
|
|
79537
|
+
input: AssetsDmDataSourceInput;
|
|
79538
|
+
workspaceId: Scalars['ID']['input'];
|
|
79539
|
+
};
|
|
79540
|
+
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
79541
|
+
cloudId: Scalars['ID']['input'];
|
|
79542
|
+
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
79543
|
+
workspaceId: Scalars['ID']['input'];
|
|
79544
|
+
};
|
|
78931
79545
|
export declare type MutationAssignIssueParentArgs = {
|
|
78932
79546
|
input?: InputMaybe<AssignIssueParentInput>;
|
|
78933
79547
|
};
|
|
@@ -79066,6 +79680,10 @@ export declare type MutationConfluence_CreatePdfExportTaskForBulkContentArgs = {
|
|
|
79066
79680
|
export declare type MutationConfluence_CreatePdfExportTaskForSingleContentArgs = {
|
|
79067
79681
|
input: ConfluenceCreatePdfExportTaskForSingleContentInput;
|
|
79068
79682
|
};
|
|
79683
|
+
export declare type MutationConfluence_CreateTopicArgs = {
|
|
79684
|
+
cloudId: Scalars['ID']['input'];
|
|
79685
|
+
input: ConfluenceCreateTopicInput;
|
|
79686
|
+
};
|
|
79069
79687
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
79070
79688
|
cloudId: Scalars['ID']['input'];
|
|
79071
79689
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -79074,6 +79692,10 @@ export declare type MutationConfluence_DeleteCustomRoleArgs = {
|
|
|
79074
79692
|
cloudId: Scalars['ID']['input'];
|
|
79075
79693
|
input: ConfluenceDeleteCustomRoleInput;
|
|
79076
79694
|
};
|
|
79695
|
+
export declare type MutationConfluence_DeleteReactionArgs = {
|
|
79696
|
+
cloudId: Scalars['ID']['input'];
|
|
79697
|
+
input: ConfluenceReactionInput;
|
|
79698
|
+
};
|
|
79077
79699
|
export declare type MutationConfluence_DeleteSubCalendarAllFutureEventsArgs = {
|
|
79078
79700
|
cloudId: Scalars['ID']['input'];
|
|
79079
79701
|
input?: InputMaybe<ConfluenceDeleteSubCalendarAllFutureEventsInput>;
|
|
@@ -79094,6 +79716,10 @@ export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
|
79094
79716
|
cloudId: Scalars['ID']['input'];
|
|
79095
79717
|
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
79096
79718
|
};
|
|
79719
|
+
export declare type MutationConfluence_DeleteTopicArgs = {
|
|
79720
|
+
cloudId: Scalars['ID']['input'];
|
|
79721
|
+
input: ConfluenceDeleteTopicInput;
|
|
79722
|
+
};
|
|
79097
79723
|
export declare type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
79098
79724
|
cloudId: Scalars['ID']['input'];
|
|
79099
79725
|
};
|
|
@@ -79142,6 +79768,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
79142
79768
|
cloudId: Scalars['ID']['input'];
|
|
79143
79769
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
79144
79770
|
};
|
|
79771
|
+
export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
79772
|
+
cloudId: Scalars['ID']['input'];
|
|
79773
|
+
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
79774
|
+
};
|
|
79145
79775
|
export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
79146
79776
|
cloudId: Scalars['ID']['input'];
|
|
79147
79777
|
input: ConfluenceUpdateCustomRoleInput;
|
|
@@ -79162,6 +79792,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
|
79162
79792
|
cloudId: Scalars['ID']['input'];
|
|
79163
79793
|
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
79164
79794
|
};
|
|
79795
|
+
export declare type MutationConfluence_UpdateTopicArgs = {
|
|
79796
|
+
cloudId: Scalars['ID']['input'];
|
|
79797
|
+
input: ConfluenceUpdateTopicInput;
|
|
79798
|
+
};
|
|
79165
79799
|
export declare type MutationConfluence_WatchLabelArgs = {
|
|
79166
79800
|
cloudId: Scalars['ID']['input'];
|
|
79167
79801
|
input: ConfluenceLabelWatchInput;
|
|
@@ -79653,6 +80287,9 @@ export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
|
79653
80287
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
79654
80288
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
79655
80289
|
};
|
|
80290
|
+
export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
80291
|
+
input: JiraCreateBoardViewStatusColumnInput;
|
|
80292
|
+
};
|
|
79656
80293
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
79657
80294
|
input: JiraCreateCustomBackgroundInput;
|
|
79658
80295
|
};
|
|
@@ -79664,6 +80301,9 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
79664
80301
|
cloudId: Scalars['ID']['input'];
|
|
79665
80302
|
input: JiraCreateGlobalCustomFieldInput;
|
|
79666
80303
|
};
|
|
80304
|
+
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80305
|
+
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80306
|
+
};
|
|
79667
80307
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
79668
80308
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
79669
80309
|
};
|
|
@@ -79691,6 +80331,9 @@ export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
|
|
|
79691
80331
|
cloudId: Scalars['ID']['input'];
|
|
79692
80332
|
input: JiraRemoveFieldsFromFieldSchemeInput;
|
|
79693
80333
|
};
|
|
80334
|
+
export declare type MutationJira_RenameBoardViewStatusColumnArgs = {
|
|
80335
|
+
input: JiraRenameBoardViewStatusColumnInput;
|
|
80336
|
+
};
|
|
79694
80337
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
79695
80338
|
input: JiraReorderBoardViewColumnInput;
|
|
79696
80339
|
};
|
|
@@ -79734,6 +80377,9 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
|
79734
80377
|
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
79735
80378
|
input: JiraSetFieldSetsPreferencesInput;
|
|
79736
80379
|
};
|
|
80380
|
+
export declare type MutationJira_SetIssueSearchFieldSetsArgs = {
|
|
80381
|
+
input: JiraSetIssueSearchFieldSetsInput;
|
|
80382
|
+
};
|
|
79737
80383
|
export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
79738
80384
|
input: JiraSetIssueSearchGroupByInput;
|
|
79739
80385
|
};
|
|
@@ -79743,6 +80389,9 @@ export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
|
79743
80389
|
export declare type MutationJira_SetIssueSearchHierarchyEnabledArgs = {
|
|
79744
80390
|
input: JiraSetIssueSearchHierarchyEnabledInput;
|
|
79745
80391
|
};
|
|
80392
|
+
export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
80393
|
+
input: JiraSetIssueSearchJqlInput;
|
|
80394
|
+
};
|
|
79746
80395
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
79747
80396
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
79748
80397
|
};
|
|
@@ -79988,9 +80637,6 @@ export declare type MutationResolveInlineCommentArgs = {
|
|
|
79988
80637
|
export declare type MutationResolvePolarisObjectArgs = {
|
|
79989
80638
|
input: ResolvePolarisObjectInput;
|
|
79990
80639
|
};
|
|
79991
|
-
export declare type MutationResolveRestrictionsArgs = {
|
|
79992
|
-
input: Array<InputMaybe<ResolveRestrictionsInput>>;
|
|
79993
|
-
};
|
|
79994
80640
|
export declare type MutationResolveRestrictionsForSubjectsArgs = {
|
|
79995
80641
|
input: ResolveRestrictionsForSubjectsInput;
|
|
79996
80642
|
};
|
|
@@ -80111,21 +80757,12 @@ export declare type MutationSoftDeleteSpaceArgs = {
|
|
|
80111
80757
|
export declare type MutationSpf_AttachAskLinkArgs = {
|
|
80112
80758
|
input: SpfAttachAskLinkInput;
|
|
80113
80759
|
};
|
|
80114
|
-
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
80115
|
-
input: SpfAttachRelatedContentInput;
|
|
80116
|
-
};
|
|
80117
80760
|
export declare type MutationSpf_CreateAskArgs = {
|
|
80118
80761
|
input: SpfCreateAskInput;
|
|
80119
80762
|
};
|
|
80120
80763
|
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
80121
80764
|
input: SpfCreateAskCommentInput;
|
|
80122
80765
|
};
|
|
80123
|
-
export declare type MutationSpf_CreateCommentArgs = {
|
|
80124
|
-
input: SpfCreateCommentInput;
|
|
80125
|
-
};
|
|
80126
|
-
export declare type MutationSpf_CreateDependencyArgs = {
|
|
80127
|
-
input: SpfCreateDependencyInput;
|
|
80128
|
-
};
|
|
80129
80766
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
80130
80767
|
input: SpfDeleteAskInput;
|
|
80131
80768
|
};
|
|
@@ -80135,9 +80772,6 @@ export declare type MutationSpf_DeleteAskCommentArgs = {
|
|
|
80135
80772
|
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
80136
80773
|
input: SpfDeleteAskLinkInput;
|
|
80137
80774
|
};
|
|
80138
|
-
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
80139
|
-
input: SpfDeleteDependencyInput;
|
|
80140
|
-
};
|
|
80141
80775
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
80142
80776
|
input: SpfUpdateAskCommentDataInput;
|
|
80143
80777
|
};
|
|
@@ -80168,42 +80802,6 @@ export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
|
80168
80802
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
80169
80803
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
80170
80804
|
};
|
|
80171
|
-
export declare type MutationSpf_UpdateCommentArgs = {
|
|
80172
|
-
input: SpfUpdateCommentDataInput;
|
|
80173
|
-
};
|
|
80174
|
-
export declare type MutationSpf_UpdateDependencyDescriptionArgs = {
|
|
80175
|
-
input: SpfUpdateDependencyDescriptionInput;
|
|
80176
|
-
};
|
|
80177
|
-
export declare type MutationSpf_UpdateDependencyImpactedWorkArgs = {
|
|
80178
|
-
input: SpfUpdateDependencyImpactedWorkInput;
|
|
80179
|
-
};
|
|
80180
|
-
export declare type MutationSpf_UpdateDependencyJustificationArgs = {
|
|
80181
|
-
input: SpfUpdateDependencyJustificationInput;
|
|
80182
|
-
};
|
|
80183
|
-
export declare type MutationSpf_UpdateDependencyNameArgs = {
|
|
80184
|
-
input: SpfUpdateDependencyNameInput;
|
|
80185
|
-
};
|
|
80186
|
-
export declare type MutationSpf_UpdateDependencyOwnerArgs = {
|
|
80187
|
-
input: SpfUpdateDependencyOwnerInput;
|
|
80188
|
-
};
|
|
80189
|
-
export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
80190
|
-
input: SpfUpdateDependencyPriorityInput;
|
|
80191
|
-
};
|
|
80192
|
-
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
80193
|
-
input: SpfUpdateDependencyReceivingTeamInput;
|
|
80194
|
-
};
|
|
80195
|
-
export declare type MutationSpf_UpdateDependencyStatusArgs = {
|
|
80196
|
-
input: SpfUpdateDependencyStatusInput;
|
|
80197
|
-
};
|
|
80198
|
-
export declare type MutationSpf_UpdateDependencySubmitterArgs = {
|
|
80199
|
-
input: SpfUpdateDependencySubmitterInput;
|
|
80200
|
-
};
|
|
80201
|
-
export declare type MutationSpf_UpdateDependencySubmittingTeamArgs = {
|
|
80202
|
-
input: SpfUpdateDependencySubmittingTeamInput;
|
|
80203
|
-
};
|
|
80204
|
-
export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
80205
|
-
input: SpfUpdateDependencyTargetDateInput;
|
|
80206
|
-
};
|
|
80207
80805
|
export declare type MutationSplitIssueArgs = {
|
|
80208
80806
|
input?: InputMaybe<SplitIssueInput>;
|
|
80209
80807
|
};
|
|
@@ -82879,7 +83477,8 @@ export declare enum PrincipalFilterType {
|
|
|
82879
83477
|
Group = "GROUP",
|
|
82880
83478
|
Guest = "GUEST",
|
|
82881
83479
|
Team = "TEAM",
|
|
82882
|
-
User = "USER"
|
|
83480
|
+
User = "USER",
|
|
83481
|
+
UserClass = "USER_CLASS"
|
|
82883
83482
|
}
|
|
82884
83483
|
export declare enum PrincipalType {
|
|
82885
83484
|
Anonymous = "ANONYMOUS",
|
|
@@ -83289,6 +83888,9 @@ export declare type Query = {
|
|
|
83289
83888
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
83290
83889
|
apps?: Maybe<AppConnection>;
|
|
83291
83890
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
83891
|
+
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
83892
|
+
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
83893
|
+
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
83292
83894
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83293
83895
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83294
83896
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -83333,7 +83935,9 @@ export declare type Query = {
|
|
|
83333
83935
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
83334
83936
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
83335
83937
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
83938
|
+
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
83336
83939
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
83940
|
+
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
83337
83941
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
83338
83942
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
83339
83943
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
@@ -83342,21 +83946,27 @@ export declare type Query = {
|
|
|
83342
83946
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
83343
83947
|
confluence_expandTypeFromJira?: Maybe<ConfluenceExpandTypeFromJira>;
|
|
83344
83948
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
83949
|
+
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
83345
83950
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
83346
83951
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
83347
83952
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
83348
83953
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
83349
83954
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
83955
|
+
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
83350
83956
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
83351
83957
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
83352
83958
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
83353
83959
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
83354
83960
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
83961
|
+
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
83962
|
+
confluence_reactionsSummaries?: Maybe<Array<Maybe<ConfluenceReactionSummary>>>;
|
|
83963
|
+
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
83355
83964
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
83356
83965
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
83357
83966
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
83358
83967
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
83359
83968
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
83969
|
+
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
83360
83970
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
83361
83971
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
83362
83972
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
@@ -83367,6 +83977,8 @@ export declare type Query = {
|
|
|
83367
83977
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
83368
83978
|
confluence_template?: Maybe<ContentTemplate>;
|
|
83369
83979
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
83980
|
+
confluence_topic?: Maybe<ConfluenceTopic>;
|
|
83981
|
+
confluence_topics?: Maybe<ConfluenceTopicConnection>;
|
|
83370
83982
|
confluence_userClasses?: Maybe<ConfluenceUserClassConnection>;
|
|
83371
83983
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
83372
83984
|
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
@@ -83446,6 +84058,7 @@ export declare type Query = {
|
|
|
83446
84058
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
83447
84059
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
83448
84060
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
84061
|
+
devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
|
|
83449
84062
|
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
83450
84063
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
83451
84064
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
@@ -83562,6 +84175,7 @@ export declare type Query = {
|
|
|
83562
84175
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
83563
84176
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
83564
84177
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84178
|
+
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
83565
84179
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
83566
84180
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
83567
84181
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
@@ -83720,7 +84334,6 @@ export declare type Query = {
|
|
|
83720
84334
|
signUpProperties?: Maybe<SignUpProperties>;
|
|
83721
84335
|
signup?: Maybe<SignupQueryApi>;
|
|
83722
84336
|
singleContent?: Maybe<Content>;
|
|
83723
|
-
singleRestrictedResource?: Maybe<RestrictedResourceInfo>;
|
|
83724
84337
|
siteConfiguration?: Maybe<SiteConfiguration>;
|
|
83725
84338
|
siteDescription?: Maybe<SiteDescription>;
|
|
83726
84339
|
siteOperations?: Maybe<SiteOperations>;
|
|
@@ -83750,9 +84363,6 @@ export declare type Query = {
|
|
|
83750
84363
|
spf_ask?: Maybe<SpfAskResult>;
|
|
83751
84364
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
83752
84365
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
83753
|
-
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
83754
|
-
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
83755
|
-
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
83756
84366
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
83757
84367
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
83758
84368
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -84010,6 +84620,18 @@ export declare type QueryAppsArgs = {
|
|
|
84010
84620
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
84011
84621
|
cloudId: Scalars['ID']['input'];
|
|
84012
84622
|
};
|
|
84623
|
+
export declare type QueryAssetsDm_AdaptersArgs = {
|
|
84624
|
+
cloudId: Scalars['ID']['input'];
|
|
84625
|
+
workspaceId: Scalars['ID']['input'];
|
|
84626
|
+
};
|
|
84627
|
+
export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
84628
|
+
cloudId: Scalars['ID']['input'];
|
|
84629
|
+
workspaceId: Scalars['ID']['input'];
|
|
84630
|
+
};
|
|
84631
|
+
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
84632
|
+
cloudId: Scalars['ID']['input'];
|
|
84633
|
+
workspaceId: Scalars['ID']['input'];
|
|
84634
|
+
};
|
|
84013
84635
|
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
84014
84636
|
issueId: Scalars['ID']['input'];
|
|
84015
84637
|
};
|
|
@@ -84175,6 +84797,13 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
84175
84797
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
84176
84798
|
cloudId: Scalars['ID']['input'];
|
|
84177
84799
|
};
|
|
84800
|
+
export declare type QueryConfluence_ContentAccessRequestByStatusArgs = {
|
|
84801
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84802
|
+
cloudId: Scalars['ID']['input'];
|
|
84803
|
+
contentId: Scalars['ID']['input'];
|
|
84804
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84805
|
+
status?: InputMaybe<ConfluenceContentAccessRequestStatus>;
|
|
84806
|
+
};
|
|
84178
84807
|
export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs = {
|
|
84179
84808
|
cloudId: Scalars['ID']['input'];
|
|
84180
84809
|
contentIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -84186,6 +84815,11 @@ export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs =
|
|
|
84186
84815
|
startTime: Scalars['String']['input'];
|
|
84187
84816
|
subType?: InputMaybe<Scalars['String']['input']>;
|
|
84188
84817
|
};
|
|
84818
|
+
export declare type QueryConfluence_ContentReactionsSummaryArgs = {
|
|
84819
|
+
cloudId: Scalars['ID']['input'];
|
|
84820
|
+
contentId: Scalars['ID']['input'];
|
|
84821
|
+
contentType: GraphQlReactionContentType;
|
|
84822
|
+
};
|
|
84189
84823
|
export declare type QueryConfluence_ContentSmartLinksForDraftArgs = {
|
|
84190
84824
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84191
84825
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -84226,6 +84860,13 @@ export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
|
84226
84860
|
spaceAssignmentType?: InputMaybe<SpaceAssignmentType>;
|
|
84227
84861
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
84228
84862
|
};
|
|
84863
|
+
export declare type QueryConfluence_ForgeExtensionsByTypeArgs = {
|
|
84864
|
+
cloudId: Scalars['ID']['input'];
|
|
84865
|
+
context?: InputMaybe<ConfluenceExtensionRenderingContextInput>;
|
|
84866
|
+
includeHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84867
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
84868
|
+
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84869
|
+
};
|
|
84229
84870
|
export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
|
|
84230
84871
|
cloudId: Scalars['ID']['input'];
|
|
84231
84872
|
spaceKey: Scalars['String']['input'];
|
|
@@ -84247,6 +84888,9 @@ export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
|
84247
84888
|
contentType: KnowledgeGraphContentType;
|
|
84248
84889
|
objectType: KnowledgeGraphObjectType;
|
|
84249
84890
|
};
|
|
84891
|
+
export declare type QueryConfluence_LoomEntryPointsArgs = {
|
|
84892
|
+
cloudId: Scalars['ID']['input'];
|
|
84893
|
+
};
|
|
84250
84894
|
export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
84251
84895
|
cloudId: Scalars['ID']['input'];
|
|
84252
84896
|
contentId: Scalars['ID']['input'];
|
|
@@ -84264,6 +84908,19 @@ export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
|
84264
84908
|
cloudId: Scalars['ID']['input'];
|
|
84265
84909
|
spaceKey: Scalars['String']['input'];
|
|
84266
84910
|
};
|
|
84911
|
+
export declare type QueryConfluence_ReactedUsersArgs = {
|
|
84912
|
+
cloudId: Scalars['ID']['input'];
|
|
84913
|
+
input: ConfluenceReactedUsersInput;
|
|
84914
|
+
};
|
|
84915
|
+
export declare type QueryConfluence_ReactionsSummariesArgs = {
|
|
84916
|
+
cloudId: Scalars['ID']['input'];
|
|
84917
|
+
input: Array<InputMaybe<ConfluenceReactionSummaryInput>>;
|
|
84918
|
+
};
|
|
84919
|
+
export declare type QueryConfluence_ReactionsSummaryArgs = {
|
|
84920
|
+
cloudId: Scalars['ID']['input'];
|
|
84921
|
+
contentId: Scalars['ID']['input'];
|
|
84922
|
+
contentType: GraphQlReactionContentType;
|
|
84923
|
+
};
|
|
84267
84924
|
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
84268
84925
|
cloudId: Scalars['ID']['input'];
|
|
84269
84926
|
migrationId: Scalars['String']['input'];
|
|
@@ -84300,6 +84957,9 @@ export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
|
84300
84957
|
contentType: Scalars['String']['input'];
|
|
84301
84958
|
spaceKey: Scalars['String']['input'];
|
|
84302
84959
|
};
|
|
84960
|
+
export declare type QueryConfluence_SpaceRoleModeArgs = {
|
|
84961
|
+
cloudId: Scalars['ID']['input'];
|
|
84962
|
+
};
|
|
84303
84963
|
export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
84304
84964
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84305
84965
|
cloudId: Scalars['ID']['input'];
|
|
@@ -84342,6 +85002,18 @@ export declare type QueryConfluence_TemplateArgs = {
|
|
|
84342
85002
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
84343
85003
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84344
85004
|
};
|
|
85005
|
+
export declare type QueryConfluence_TopicArgs = {
|
|
85006
|
+
cloudId: Scalars['ID']['input'];
|
|
85007
|
+
id?: InputMaybe<Scalars['Long']['input']>;
|
|
85008
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
85009
|
+
};
|
|
85010
|
+
export declare type QueryConfluence_TopicsArgs = {
|
|
85011
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85012
|
+
cloudId: Scalars['ID']['input'];
|
|
85013
|
+
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85014
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85015
|
+
namePattern?: InputMaybe<Scalars['String']['input']>;
|
|
85016
|
+
};
|
|
84345
85017
|
export declare type QueryConfluence_UserClassesArgs = {
|
|
84346
85018
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84347
85019
|
cloudId: Scalars['ID']['input'];
|
|
@@ -84430,6 +85102,7 @@ export declare type QueryContentAnalyticsViewsByUserArgs = {
|
|
|
84430
85102
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84431
85103
|
contentId: Scalars['ID']['input'];
|
|
84432
85104
|
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
85105
|
+
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84433
85106
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
84434
85107
|
};
|
|
84435
85108
|
export declare type QueryContentBodyArgs = {
|
|
@@ -84743,6 +85416,10 @@ export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
|
84743
85416
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84744
85417
|
issueKey: Scalars['String']['input'];
|
|
84745
85418
|
};
|
|
85419
|
+
export declare type QueryDevai_FlowGetRepositoriesArgs = {
|
|
85420
|
+
cloudId: Scalars['ID']['input'];
|
|
85421
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
85422
|
+
};
|
|
84746
85423
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
84747
85424
|
id: Scalars['ID']['input'];
|
|
84748
85425
|
};
|
|
@@ -85119,6 +85796,9 @@ export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
|
85119
85796
|
export declare type QueryJira_IssuesByIdsArgs = {
|
|
85120
85797
|
ids: Array<Scalars['ID']['input']>;
|
|
85121
85798
|
};
|
|
85799
|
+
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
85800
|
+
cloudId: Scalars['ID']['input'];
|
|
85801
|
+
};
|
|
85122
85802
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
85123
85803
|
cloudId: Scalars['ID']['input'];
|
|
85124
85804
|
idOrKey: Scalars['String']['input'];
|
|
@@ -85672,11 +86352,6 @@ export declare type QuerySingleContentArgs = {
|
|
|
85672
86352
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
85673
86353
|
validatedShareToken?: InputMaybe<Scalars['String']['input']>;
|
|
85674
86354
|
};
|
|
85675
|
-
export declare type QuerySingleRestrictedResourceArgs = {
|
|
85676
|
-
accessType: ResourceAccessType;
|
|
85677
|
-
accountId: Scalars['ID']['input'];
|
|
85678
|
-
resourceId: Scalars['Long']['input'];
|
|
85679
|
-
};
|
|
85680
86355
|
export declare type QuerySitePermissionsArgs = {
|
|
85681
86356
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
85682
86357
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
@@ -85800,18 +86475,6 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
85800
86475
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
85801
86476
|
ids: Array<Scalars['ID']['input']>;
|
|
85802
86477
|
};
|
|
85803
|
-
export declare type QuerySpf_DependenciesArgs = {
|
|
85804
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
85805
|
-
cloudId: Scalars['ID']['input'];
|
|
85806
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85807
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
85808
|
-
};
|
|
85809
|
-
export declare type QuerySpf_DependenciesByIdsArgs = {
|
|
85810
|
-
ids: Array<Scalars['ID']['input']>;
|
|
85811
|
-
};
|
|
85812
|
-
export declare type QuerySpf_DependencyArgs = {
|
|
85813
|
-
id: Scalars['ID']['input'];
|
|
85814
|
-
};
|
|
85815
86478
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
85816
86479
|
appId: Scalars['ID']['input'];
|
|
85817
86480
|
installationId: Scalars['ID']['input'];
|
|
@@ -86992,14 +87655,9 @@ export declare type ResolveRestrictionsForSubjectMutationErrorExtension = Mutati
|
|
|
86992
87655
|
export declare type ResolveRestrictionsForSubjectsInput = {
|
|
86993
87656
|
accessType: ResourceAccessType;
|
|
86994
87657
|
contentId: Scalars['Long']['input'];
|
|
87658
|
+
spaceRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
86995
87659
|
subjects: Array<InputMaybe<BlockedAccessSubjectInput>>;
|
|
86996
87660
|
};
|
|
86997
|
-
export declare type ResolveRestrictionsInput = {
|
|
86998
|
-
accessType: ResourceAccessType;
|
|
86999
|
-
accountId: Scalars['ID']['input'];
|
|
87000
|
-
resourceId: Scalars['Long']['input'];
|
|
87001
|
-
resourceType: ResourceType;
|
|
87002
|
-
};
|
|
87003
87661
|
export declare type ResolveRestrictionsPayload = Payload & {
|
|
87004
87662
|
__typename?: 'ResolveRestrictionsPayload';
|
|
87005
87663
|
errors: Array<MutationError>;
|
|
@@ -87053,12 +87711,6 @@ export declare type RestrictedResource = {
|
|
|
87053
87711
|
resourceTitle: Scalars['String']['output'];
|
|
87054
87712
|
resourceType: ResourceType;
|
|
87055
87713
|
};
|
|
87056
|
-
export declare type RestrictedResourceInfo = {
|
|
87057
|
-
__typename?: 'RestrictedResourceInfo';
|
|
87058
|
-
canSetPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
87059
|
-
hasMultipleRestriction?: Maybe<Scalars['Boolean']['output']>;
|
|
87060
|
-
restrictedResourceList?: Maybe<Array<Maybe<RestrictedResource>>>;
|
|
87061
|
-
};
|
|
87062
87714
|
export declare type RestrictedResourceLinks = {
|
|
87063
87715
|
__typename?: 'RestrictedResourceLinks';
|
|
87064
87716
|
base?: Maybe<Scalars['String']['output']>;
|
|
@@ -91766,6 +92418,7 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
91766
92418
|
};
|
|
91767
92419
|
export declare type SpaceRole = {
|
|
91768
92420
|
__typename?: 'SpaceRole';
|
|
92421
|
+
confluenceRoleAssignabilityCode: ConfluenceRoleAssignabilityCode;
|
|
91769
92422
|
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
91770
92423
|
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
91771
92424
|
roleDescription: Scalars['String']['output'];
|
|
@@ -92068,37 +92721,6 @@ export declare type SpfAttachAskLinkPayload = Payload & {
|
|
|
92068
92721
|
link?: Maybe<SpfAskLink>;
|
|
92069
92722
|
success: Scalars['Boolean']['output'];
|
|
92070
92723
|
};
|
|
92071
|
-
export declare type SpfAttachRelatedContentInput = {
|
|
92072
|
-
dependencyId: Scalars['ID']['input'];
|
|
92073
|
-
url: Scalars['URL']['input'];
|
|
92074
|
-
};
|
|
92075
|
-
export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
92076
|
-
__typename?: 'SpfAttachRelatedContentPayload';
|
|
92077
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92078
|
-
relatedContent?: Maybe<SpfRelatedContent>;
|
|
92079
|
-
success: Scalars['Boolean']['output'];
|
|
92080
|
-
};
|
|
92081
|
-
export declare type SpfComment = {
|
|
92082
|
-
__typename?: 'SpfComment';
|
|
92083
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92084
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
92085
|
-
data: Scalars['String']['output'];
|
|
92086
|
-
dependencyId: Scalars['String']['output'];
|
|
92087
|
-
id: Scalars['ID']['output'];
|
|
92088
|
-
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92089
|
-
};
|
|
92090
|
-
export declare type SpfCommentConnection = {
|
|
92091
|
-
__typename?: 'SpfCommentConnection';
|
|
92092
|
-
edges?: Maybe<Array<Maybe<SpfCommentEdge>>>;
|
|
92093
|
-
pageInfo: PageInfo;
|
|
92094
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92095
|
-
};
|
|
92096
|
-
export declare type SpfCommentEdge = {
|
|
92097
|
-
__typename?: 'SpfCommentEdge';
|
|
92098
|
-
cursor: Scalars['String']['output'];
|
|
92099
|
-
node?: Maybe<SpfCommentResult>;
|
|
92100
|
-
};
|
|
92101
|
-
export declare type SpfCommentResult = QueryError | SpfComment;
|
|
92102
92724
|
export declare type SpfCreateAskCommentInput = {
|
|
92103
92725
|
askId: Scalars['ID']['input'];
|
|
92104
92726
|
data: Scalars['String']['input'];
|
|
@@ -92129,36 +92751,6 @@ export declare type SpfCreateAskPayload = Payload & {
|
|
|
92129
92751
|
errors?: Maybe<Array<MutationError>>;
|
|
92130
92752
|
success: Scalars['Boolean']['output'];
|
|
92131
92753
|
};
|
|
92132
|
-
export declare type SpfCreateCommentInput = {
|
|
92133
|
-
data: Scalars['String']['input'];
|
|
92134
|
-
dependencyId: Scalars['ID']['input'];
|
|
92135
|
-
};
|
|
92136
|
-
export declare type SpfCreateCommentPayload = Payload & {
|
|
92137
|
-
__typename?: 'SpfCreateCommentPayload';
|
|
92138
|
-
comment?: Maybe<SpfComment>;
|
|
92139
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92140
|
-
success: Scalars['Boolean']['output'];
|
|
92141
|
-
};
|
|
92142
|
-
export declare type SpfCreateDependencyInput = {
|
|
92143
|
-
cloudId: Scalars['ID']['input'];
|
|
92144
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
92145
|
-
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
92146
|
-
justification?: InputMaybe<Scalars['String']['input']>;
|
|
92147
|
-
name: Scalars['String']['input'];
|
|
92148
|
-
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
92149
|
-
priority: SpfPriority;
|
|
92150
|
-
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92151
|
-
status: SpfDependencyStatus;
|
|
92152
|
-
submitterId: Scalars['String']['input'];
|
|
92153
|
-
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92154
|
-
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
92155
|
-
};
|
|
92156
|
-
export declare type SpfCreateDependencyPayload = Payload & {
|
|
92157
|
-
__typename?: 'SpfCreateDependencyPayload';
|
|
92158
|
-
dependency?: Maybe<SpfDependency>;
|
|
92159
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92160
|
-
success: Scalars['Boolean']['output'];
|
|
92161
|
-
};
|
|
92162
92754
|
export declare type SpfDeleteAskCommentInput = {
|
|
92163
92755
|
id: Scalars['ID']['input'];
|
|
92164
92756
|
};
|
|
@@ -92186,115 +92778,7 @@ export declare type SpfDeleteAskPayload = Payload & {
|
|
|
92186
92778
|
id: Scalars['ID']['output'];
|
|
92187
92779
|
success: Scalars['Boolean']['output'];
|
|
92188
92780
|
};
|
|
92189
|
-
export declare type SpfDeleteDependencyInput = {
|
|
92190
|
-
id: Scalars['ID']['input'];
|
|
92191
|
-
};
|
|
92192
|
-
export declare type SpfDeleteDependencyPayload = Payload & {
|
|
92193
|
-
__typename?: 'SpfDeleteDependencyPayload';
|
|
92194
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92195
|
-
success: Scalars['Boolean']['output'];
|
|
92196
|
-
};
|
|
92197
|
-
export declare type SpfDependency = Node & {
|
|
92198
|
-
__typename?: 'SpfDependency';
|
|
92199
|
-
comments?: Maybe<SpfCommentConnection>;
|
|
92200
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92201
|
-
createdBy?: Maybe<User>;
|
|
92202
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
92203
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
92204
|
-
id: Scalars['ID']['output'];
|
|
92205
|
-
impactedWork?: Maybe<SpfImpactedWork>;
|
|
92206
|
-
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
92207
|
-
justification?: Maybe<Scalars['String']['output']>;
|
|
92208
|
-
name: Scalars['String']['output'];
|
|
92209
|
-
owner?: Maybe<User>;
|
|
92210
|
-
ownerId?: Maybe<Scalars['String']['output']>;
|
|
92211
|
-
priority: SpfPriority;
|
|
92212
|
-
receivingTeam?: Maybe<TeamV2>;
|
|
92213
|
-
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
92214
|
-
relatedContent?: Maybe<SpfRelatedContentConnection>;
|
|
92215
|
-
status: SpfDependencyStatus;
|
|
92216
|
-
submitter?: Maybe<User>;
|
|
92217
|
-
submitterId: Scalars['String']['output'];
|
|
92218
|
-
submittingTeam?: Maybe<TeamV2>;
|
|
92219
|
-
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
92220
|
-
targetDate?: Maybe<SpfTargetDate>;
|
|
92221
|
-
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92222
|
-
updatedBy?: Maybe<User>;
|
|
92223
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
92224
|
-
};
|
|
92225
|
-
export declare type SpfDependencyCommentsArgs = {
|
|
92226
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
92227
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92228
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
92229
|
-
};
|
|
92230
|
-
export declare type SpfDependencyRelatedContentArgs = {
|
|
92231
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
92232
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92233
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
92234
|
-
};
|
|
92235
|
-
export declare type SpfDependencyConnection = {
|
|
92236
|
-
__typename?: 'SpfDependencyConnection';
|
|
92237
|
-
edges?: Maybe<Array<Maybe<SpfDependencyEdge>>>;
|
|
92238
|
-
pageInfo: PageInfo;
|
|
92239
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92240
|
-
};
|
|
92241
|
-
export declare type SpfDependencyEdge = {
|
|
92242
|
-
__typename?: 'SpfDependencyEdge';
|
|
92243
|
-
cursor: Scalars['String']['output'];
|
|
92244
|
-
node?: Maybe<SpfDependencyResult>;
|
|
92245
|
-
};
|
|
92246
|
-
export declare type SpfDependencyResult = QueryError | SpfDependency;
|
|
92247
|
-
export declare enum SpfDependencyStatus {
|
|
92248
|
-
Accepted = "ACCEPTED",
|
|
92249
|
-
Canceled = "CANCELED",
|
|
92250
|
-
Denied = "DENIED",
|
|
92251
|
-
Draft = "DRAFT",
|
|
92252
|
-
InReview = "IN_REVIEW",
|
|
92253
|
-
Revising = "REVISING",
|
|
92254
|
-
Submitted = "SUBMITTED"
|
|
92255
|
-
}
|
|
92256
92781
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
92257
|
-
export declare enum SpfPriority {
|
|
92258
|
-
Critical = "CRITICAL",
|
|
92259
|
-
High = "HIGH",
|
|
92260
|
-
Highest = "HIGHEST",
|
|
92261
|
-
Low = "LOW",
|
|
92262
|
-
Medium = "MEDIUM"
|
|
92263
|
-
}
|
|
92264
|
-
export declare type SpfRelatedContent = {
|
|
92265
|
-
__typename?: 'SpfRelatedContent';
|
|
92266
|
-
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
92267
|
-
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
92268
|
-
dependencyId: Scalars['String']['output'];
|
|
92269
|
-
id: Scalars['ID']['output'];
|
|
92270
|
-
url: Scalars['URL']['output'];
|
|
92271
|
-
};
|
|
92272
|
-
export declare type SpfRelatedContentConnection = {
|
|
92273
|
-
__typename?: 'SpfRelatedContentConnection';
|
|
92274
|
-
edges?: Maybe<Array<Maybe<SpfRelatedContentEdge>>>;
|
|
92275
|
-
pageInfo: PageInfo;
|
|
92276
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92277
|
-
};
|
|
92278
|
-
export declare type SpfRelatedContentEdge = {
|
|
92279
|
-
__typename?: 'SpfRelatedContentEdge';
|
|
92280
|
-
cursor: Scalars['String']['output'];
|
|
92281
|
-
node?: Maybe<SpfRelatedContentResult>;
|
|
92282
|
-
};
|
|
92283
|
-
export declare type SpfRelatedContentResult = QueryError | SpfRelatedContent;
|
|
92284
|
-
export declare type SpfTargetDate = {
|
|
92285
|
-
__typename?: 'SpfTargetDate';
|
|
92286
|
-
targetDate?: Maybe<Scalars['String']['output']>;
|
|
92287
|
-
targetDateType?: Maybe<SpfTargetDateType>;
|
|
92288
|
-
};
|
|
92289
|
-
export declare type SpfTargetDateInput = {
|
|
92290
|
-
targetDate: Scalars['String']['input'];
|
|
92291
|
-
targetDateType: SpfTargetDateType;
|
|
92292
|
-
};
|
|
92293
|
-
export declare enum SpfTargetDateType {
|
|
92294
|
-
Day = "DAY",
|
|
92295
|
-
Month = "MONTH",
|
|
92296
|
-
Quarter = "QUARTER"
|
|
92297
|
-
}
|
|
92298
92782
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
92299
92783
|
data: Scalars['String']['input'];
|
|
92300
92784
|
id: Scalars['ID']['input'];
|
|
@@ -92347,66 +92831,6 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
92347
92831
|
id: Scalars['ID']['input'];
|
|
92348
92832
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92349
92833
|
};
|
|
92350
|
-
export declare type SpfUpdateCommentDataInput = {
|
|
92351
|
-
data: Scalars['String']['input'];
|
|
92352
|
-
id: Scalars['ID']['input'];
|
|
92353
|
-
};
|
|
92354
|
-
export declare type SpfUpdateCommentPayload = Payload & {
|
|
92355
|
-
__typename?: 'SpfUpdateCommentPayload';
|
|
92356
|
-
comment?: Maybe<SpfComment>;
|
|
92357
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92358
|
-
success: Scalars['Boolean']['output'];
|
|
92359
|
-
};
|
|
92360
|
-
export declare type SpfUpdateDependencyDescriptionInput = {
|
|
92361
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
92362
|
-
id: Scalars['ID']['input'];
|
|
92363
|
-
};
|
|
92364
|
-
export declare type SpfUpdateDependencyImpactedWorkInput = {
|
|
92365
|
-
id: Scalars['ID']['input'];
|
|
92366
|
-
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
92367
|
-
};
|
|
92368
|
-
export declare type SpfUpdateDependencyJustificationInput = {
|
|
92369
|
-
id: Scalars['ID']['input'];
|
|
92370
|
-
justification?: InputMaybe<Scalars['String']['input']>;
|
|
92371
|
-
};
|
|
92372
|
-
export declare type SpfUpdateDependencyNameInput = {
|
|
92373
|
-
id: Scalars['ID']['input'];
|
|
92374
|
-
name: Scalars['String']['input'];
|
|
92375
|
-
};
|
|
92376
|
-
export declare type SpfUpdateDependencyOwnerInput = {
|
|
92377
|
-
id: Scalars['ID']['input'];
|
|
92378
|
-
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
92379
|
-
};
|
|
92380
|
-
export declare type SpfUpdateDependencyPayload = Payload & {
|
|
92381
|
-
__typename?: 'SpfUpdateDependencyPayload';
|
|
92382
|
-
dependency?: Maybe<SpfDependency>;
|
|
92383
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92384
|
-
success: Scalars['Boolean']['output'];
|
|
92385
|
-
};
|
|
92386
|
-
export declare type SpfUpdateDependencyPriorityInput = {
|
|
92387
|
-
id: Scalars['ID']['input'];
|
|
92388
|
-
priority: SpfPriority;
|
|
92389
|
-
};
|
|
92390
|
-
export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
92391
|
-
id: Scalars['ID']['input'];
|
|
92392
|
-
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92393
|
-
};
|
|
92394
|
-
export declare type SpfUpdateDependencyStatusInput = {
|
|
92395
|
-
id: Scalars['ID']['input'];
|
|
92396
|
-
status: SpfDependencyStatus;
|
|
92397
|
-
};
|
|
92398
|
-
export declare type SpfUpdateDependencySubmitterInput = {
|
|
92399
|
-
id: Scalars['ID']['input'];
|
|
92400
|
-
submitterId: Scalars['String']['input'];
|
|
92401
|
-
};
|
|
92402
|
-
export declare type SpfUpdateDependencySubmittingTeamInput = {
|
|
92403
|
-
id: Scalars['ID']['input'];
|
|
92404
|
-
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92405
|
-
};
|
|
92406
|
-
export declare type SpfUpdateDependencyTargetDateInput = {
|
|
92407
|
-
id: Scalars['ID']['input'];
|
|
92408
|
-
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
92409
|
-
};
|
|
92410
92834
|
export declare type SplitIssueInput = {
|
|
92411
92835
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
92412
92836
|
originalIssue: OriginalSplitIssue;
|