@forge/cli-shared 8.7.0 → 8.7.1-next.0-experimental-3cf1031
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 +14 -0
- package/out/graphql/graphql-types.d.ts +705 -33
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +27 -15
- package/package.json +2 -2
|
@@ -542,6 +542,16 @@ export declare type AvpDeleteChartPayload = Payload & {
|
|
|
542
542
|
errors?: Maybe<Array<MutationError>>;
|
|
543
543
|
success: Scalars['Boolean']['output'];
|
|
544
544
|
};
|
|
545
|
+
export declare type AvpDeleteDashboardFilterInput = {
|
|
546
|
+
dashboardAri: Scalars['ID']['input'];
|
|
547
|
+
name: Scalars['String']['input'];
|
|
548
|
+
};
|
|
549
|
+
export declare type AvpDeleteDashboardFilterPayload = Payload & {
|
|
550
|
+
__typename?: 'AVPDeleteDashboardFilterPayload';
|
|
551
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
552
|
+
errors?: Maybe<Array<MutationError>>;
|
|
553
|
+
success: Scalars['Boolean']['output'];
|
|
554
|
+
};
|
|
545
555
|
export declare type AvpEnvVar = {
|
|
546
556
|
__typename?: 'AVPEnvVar';
|
|
547
557
|
chartId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2375,9 +2385,11 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
2375
2385
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
2376
2386
|
creator?: Maybe<User>;
|
|
2377
2387
|
creatorType?: Maybe<Scalars['String']['output']>;
|
|
2388
|
+
deactivated?: Maybe<Scalars['Boolean']['output']>;
|
|
2378
2389
|
description?: Maybe<Scalars['String']['output']>;
|
|
2379
2390
|
etag?: Maybe<Scalars['String']['output']>;
|
|
2380
2391
|
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
2392
|
+
forgeCreator?: Maybe<Scalars['String']['output']>;
|
|
2381
2393
|
icon?: Maybe<Scalars['String']['output']>;
|
|
2382
2394
|
id: Scalars['ID']['output'];
|
|
2383
2395
|
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -3633,6 +3645,7 @@ export declare type AppInstallation = {
|
|
|
3633
3645
|
createdAt: Scalars['DateTime']['output'];
|
|
3634
3646
|
createdBy?: Maybe<User>;
|
|
3635
3647
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
3648
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
3636
3649
|
id: Scalars['ID']['output'];
|
|
3637
3650
|
installationContext: Scalars['ID']['output'];
|
|
3638
3651
|
isRecoverable: Scalars['Boolean']['output'];
|
|
@@ -3933,6 +3946,7 @@ export declare enum AppNetworkPermissionTypeExtension {
|
|
|
3933
3946
|
export declare type AppPermission = {
|
|
3934
3947
|
__typename?: 'AppPermission';
|
|
3935
3948
|
egress?: Maybe<Array<AppNetworkEgressPermission>>;
|
|
3949
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
3936
3950
|
scopes: Array<AppHostServiceScope>;
|
|
3937
3951
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
|
|
3938
3952
|
};
|
|
@@ -4348,6 +4362,7 @@ export declare type AppVersionEnrolment = {
|
|
|
4348
4362
|
appId: Scalars['String']['output'];
|
|
4349
4363
|
appVersionId?: Maybe<Scalars['String']['output']>;
|
|
4350
4364
|
authClientId?: Maybe<Scalars['String']['output']>;
|
|
4365
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
4351
4366
|
id: Scalars['String']['output'];
|
|
4352
4367
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
4353
4368
|
serviceId: Scalars['ID']['output'];
|
|
@@ -4357,6 +4372,7 @@ export declare type AppVersionExtension = {
|
|
|
4357
4372
|
extensionData: Scalars['JSON']['output'];
|
|
4358
4373
|
extensionGroupId: Scalars['ID']['output'];
|
|
4359
4374
|
extensionTypeKey: Scalars['String']['output'];
|
|
4375
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
4360
4376
|
id: Scalars['ID']['output'];
|
|
4361
4377
|
key: Scalars['String']['output'];
|
|
4362
4378
|
};
|
|
@@ -5021,6 +5037,90 @@ export declare type AssetsDmDataSourceMappingObjectAttributeModel = {
|
|
|
5021
5037
|
name: Scalars['String']['output'];
|
|
5022
5038
|
objectAttributeId: Scalars['String']['output'];
|
|
5023
5039
|
};
|
|
5040
|
+
export declare type AssetsDmDataSourceMergeDataSourceDetails = {
|
|
5041
|
+
__typename?: 'AssetsDMDataSourceMergeDataSourceDetails';
|
|
5042
|
+
dataSourceId: Scalars['String']['output'];
|
|
5043
|
+
dataSourceTypeId: Scalars['String']['output'];
|
|
5044
|
+
enabled: Scalars['Boolean']['output'];
|
|
5045
|
+
lastCleansedDate: Scalars['String']['output'];
|
|
5046
|
+
lastFunctionsChangedDate: Scalars['String']['output'];
|
|
5047
|
+
lastImportedDated: Scalars['String']['output'];
|
|
5048
|
+
lastMappingsChangedDate: Scalars['String']['output'];
|
|
5049
|
+
lastSuccessfulCleansedDate: Scalars['String']['output'];
|
|
5050
|
+
lastSuccessfulImportedDate: Scalars['String']['output'];
|
|
5051
|
+
name: Scalars['String']['output'];
|
|
5052
|
+
objectId: Scalars['String']['output'];
|
|
5053
|
+
postCleansingCount: Scalars['Int']['output'];
|
|
5054
|
+
preCleansingCount: Scalars['Int']['output'];
|
|
5055
|
+
priority: Scalars['Int']['output'];
|
|
5056
|
+
refreshGap: Scalars['Int']['output'];
|
|
5057
|
+
status: Scalars['Int']['output'];
|
|
5058
|
+
tableId: Scalars['String']['output'];
|
|
5059
|
+
tableName: Scalars['String']['output'];
|
|
5060
|
+
tenantId: Scalars['String']['output'];
|
|
5061
|
+
};
|
|
5062
|
+
export declare type AssetsDmDataSourceMergeGetByObjectIdData = {
|
|
5063
|
+
__typename?: 'AssetsDMDataSourceMergeGetByObjectIdData';
|
|
5064
|
+
dataSources: Scalars['String']['output'];
|
|
5065
|
+
endTime: Scalars['String']['output'];
|
|
5066
|
+
hasError: Scalars['Boolean']['output'];
|
|
5067
|
+
importExecutiveId: Scalars['String']['output'];
|
|
5068
|
+
initialScore: Scalars['Int']['output'];
|
|
5069
|
+
isStoppedByShutdown: Scalars['Boolean']['output'];
|
|
5070
|
+
message: Scalars['String']['output'];
|
|
5071
|
+
objectId: Scalars['String']['output'];
|
|
5072
|
+
processedDataSourceId?: Maybe<Scalars['String']['output']>;
|
|
5073
|
+
score: Scalars['Int']['output'];
|
|
5074
|
+
startTime: Scalars['String']['output'];
|
|
5075
|
+
step: Scalars['Int']['output'];
|
|
5076
|
+
stepDuration: Scalars['String']['output'];
|
|
5077
|
+
tenantId: Scalars['String']['output'];
|
|
5078
|
+
};
|
|
5079
|
+
export declare type AssetsDmDataSourceMergeGetByObjectIdResponse = {
|
|
5080
|
+
__typename?: 'AssetsDMDataSourceMergeGetByObjectIdResponse';
|
|
5081
|
+
data: Array<AssetsDmDataSourceMergeGetByObjectIdData>;
|
|
5082
|
+
dataSources: Scalars['String']['output'];
|
|
5083
|
+
endTime: Scalars['String']['output'];
|
|
5084
|
+
hasError: Scalars['Boolean']['output'];
|
|
5085
|
+
importExecutiveId: Scalars['String']['output'];
|
|
5086
|
+
initialScore: Scalars['Int']['output'];
|
|
5087
|
+
isStoppedByShutdown: Scalars['Boolean']['output'];
|
|
5088
|
+
lastSuccessfulStepIfo?: Maybe<Scalars['String']['output']>;
|
|
5089
|
+
message: Scalars['String']['output'];
|
|
5090
|
+
objectId: Scalars['String']['output'];
|
|
5091
|
+
score: Scalars['Int']['output'];
|
|
5092
|
+
startTime: Scalars['String']['output'];
|
|
5093
|
+
step: Scalars['Int']['output'];
|
|
5094
|
+
tenantId: Scalars['String']['output'];
|
|
5095
|
+
};
|
|
5096
|
+
export declare type AssetsDmDataSourceMergeObjectAttribute = {
|
|
5097
|
+
__typename?: 'AssetsDMDataSourceMergeObjectAttribute';
|
|
5098
|
+
dataType: Scalars['Int']['output'];
|
|
5099
|
+
hasPriority: Scalars['Boolean']['output'];
|
|
5100
|
+
importanceCode: Scalars['Int']['output'];
|
|
5101
|
+
isInSnapshot: Scalars['Boolean']['output'];
|
|
5102
|
+
isMapped: Scalars['Boolean']['output'];
|
|
5103
|
+
isNormal: Scalars['Boolean']['output'];
|
|
5104
|
+
isPrimaryKey: Scalars['Boolean']['output'];
|
|
5105
|
+
isReportSafe: Scalars['Boolean']['output'];
|
|
5106
|
+
isSecondaryKey: Scalars['Boolean']['output'];
|
|
5107
|
+
name: Scalars['String']['output'];
|
|
5108
|
+
objectAttributeId: Scalars['String']['output'];
|
|
5109
|
+
objectId: Scalars['String']['output'];
|
|
5110
|
+
viewOrder: Scalars['Int']['output'];
|
|
5111
|
+
};
|
|
5112
|
+
export declare type AssetsDmDataSourceMergeObjectForImportInfo = {
|
|
5113
|
+
__typename?: 'AssetsDMDataSourceMergeObjectForImportInfo';
|
|
5114
|
+
allowDuplicates: Scalars['Boolean']['output'];
|
|
5115
|
+
computedIssuesCount: Scalars['Int']['output'];
|
|
5116
|
+
dataSources: Array<AssetsDmDataSourceMergeDataSourceDetails>;
|
|
5117
|
+
name: Scalars['String']['output'];
|
|
5118
|
+
objectAttributes: Array<AssetsDmDataSourceMergeObjectAttribute>;
|
|
5119
|
+
objectId: Scalars['String']['output'];
|
|
5120
|
+
selectedDataSources: Array<AssetsDmDataSourceMergeDataSourceDetails>;
|
|
5121
|
+
tenantId: Scalars['String']['output'];
|
|
5122
|
+
uniqueRecordsCount: Scalars['Int']['output'];
|
|
5123
|
+
};
|
|
5024
5124
|
export declare type AssetsDmDataSourceMergeResponse = {
|
|
5025
5125
|
__typename?: 'AssetsDMDataSourceMergeResponse';
|
|
5026
5126
|
cleansedDataCount: Scalars['Int']['output'];
|
|
@@ -5666,6 +5766,7 @@ export declare type AtlassianOAuthClient = {
|
|
|
5666
5766
|
callbacks?: Maybe<Array<Scalars['String']['output']>>;
|
|
5667
5767
|
clientARI: Scalars['ID']['output'];
|
|
5668
5768
|
clientID: Scalars['ID']['output'];
|
|
5769
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
5669
5770
|
refreshToken?: Maybe<RefreshToken>;
|
|
5670
5771
|
systemUser?: Maybe<SystemUser>;
|
|
5671
5772
|
};
|
|
@@ -14735,6 +14836,14 @@ export declare type ConfluenceBasicSpaceRole = {
|
|
|
14735
14836
|
name: Scalars['String']['output'];
|
|
14736
14837
|
type: SpaceRoleType;
|
|
14737
14838
|
};
|
|
14839
|
+
export declare type ConfluenceBatchFollowTeammatesInput = {
|
|
14840
|
+
numFollowers?: InputMaybe<Scalars['Int']['input']>;
|
|
14841
|
+
};
|
|
14842
|
+
export declare type ConfluenceBatchFollowTeammatesPayload = Payload & {
|
|
14843
|
+
__typename?: 'ConfluenceBatchFollowTeammatesPayload';
|
|
14844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14845
|
+
success: Scalars['Boolean']['output'];
|
|
14846
|
+
};
|
|
14738
14847
|
export declare type ConfluenceBlockedAccessAssignableSpaceRole = {
|
|
14739
14848
|
__typename?: 'ConfluenceBlockedAccessAssignableSpaceRole';
|
|
14740
14849
|
roleDescription: Scalars['String']['output'];
|
|
@@ -14900,6 +15009,42 @@ export declare type ConfluenceCalendarEdge = {
|
|
|
14900
15009
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
14901
15010
|
node?: Maybe<ConfluenceCalendar>;
|
|
14902
15011
|
};
|
|
15012
|
+
export declare type ConfluenceCalendarEvent = {
|
|
15013
|
+
__typename?: 'ConfluenceCalendarEvent';
|
|
15014
|
+
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
15015
|
+
calendarId?: Maybe<Scalars['String']['output']>;
|
|
15016
|
+
className?: Maybe<Scalars['String']['output']>;
|
|
15017
|
+
colorScheme?: Maybe<Scalars['String']['output']>;
|
|
15018
|
+
customEventTypeId?: Maybe<Scalars['String']['output']>;
|
|
15019
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
15020
|
+
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
15021
|
+
eventType?: Maybe<Scalars['String']['output']>;
|
|
15022
|
+
extraProperties?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
15023
|
+
extraPropertiesTemplate?: Maybe<Scalars['String']['output']>;
|
|
15024
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
15025
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
15026
|
+
inviteeUsers?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
15027
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
15028
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15029
|
+
recurrenceRule?: Maybe<ConfluenceCalendarRecurrenceRule>;
|
|
15030
|
+
timeline?: Maybe<ConfluenceCalendarEventTimeline>;
|
|
15031
|
+
urlAlias?: Maybe<Scalars['String']['output']>;
|
|
15032
|
+
workingUrl?: Maybe<Scalars['String']['output']>;
|
|
15033
|
+
};
|
|
15034
|
+
export declare type ConfluenceCalendarEventResponse = {
|
|
15035
|
+
__typename?: 'ConfluenceCalendarEventResponse';
|
|
15036
|
+
events?: Maybe<Array<Maybe<ConfluenceCalendarEvent>>>;
|
|
15037
|
+
isCurrentUserAuthenticated?: Maybe<Scalars['Boolean']['output']>;
|
|
15038
|
+
oAuthUrl?: Maybe<Scalars['String']['output']>;
|
|
15039
|
+
};
|
|
15040
|
+
export declare type ConfluenceCalendarEventTimeline = {
|
|
15041
|
+
__typename?: 'ConfluenceCalendarEventTimeline';
|
|
15042
|
+
endDate?: Maybe<Scalars['String']['output']>;
|
|
15043
|
+
originalEndDateTime?: Maybe<Scalars['String']['output']>;
|
|
15044
|
+
originalStart?: Maybe<Scalars['String']['output']>;
|
|
15045
|
+
originalStartDateTime?: Maybe<Scalars['String']['output']>;
|
|
15046
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
15047
|
+
};
|
|
14903
15048
|
export declare type ConfluenceCalendarEventTypeReminder = {
|
|
14904
15049
|
__typename?: 'ConfluenceCalendarEventTypeReminder';
|
|
14905
15050
|
customEventType: Scalars['Boolean']['output'];
|
|
@@ -14953,6 +15098,15 @@ export declare type ConfluenceCalendarPreference = {
|
|
|
14953
15098
|
view: Scalars['String']['output'];
|
|
14954
15099
|
watchedSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14955
15100
|
};
|
|
15101
|
+
export declare type ConfluenceCalendarRecurrenceRule = {
|
|
15102
|
+
__typename?: 'ConfluenceCalendarRecurrenceRule';
|
|
15103
|
+
byDay?: Maybe<Scalars['String']['output']>;
|
|
15104
|
+
frequency?: Maybe<Scalars['String']['output']>;
|
|
15105
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
15106
|
+
interval?: Maybe<Scalars['String']['output']>;
|
|
15107
|
+
rule?: Maybe<Scalars['String']['output']>;
|
|
15108
|
+
until?: Maybe<Scalars['String']['output']>;
|
|
15109
|
+
};
|
|
14956
15110
|
export declare type ConfluenceCalendarRestriction = {
|
|
14957
15111
|
__typename?: 'ConfluenceCalendarRestriction';
|
|
14958
15112
|
administrable: Scalars['Boolean']['output'];
|
|
@@ -15163,6 +15317,18 @@ export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
|
15163
15317
|
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
15164
15318
|
pageInfo: GroupByPageInfo;
|
|
15165
15319
|
};
|
|
15320
|
+
export declare type ConfluenceContentBlueprintSpec = {
|
|
15321
|
+
__typename?: 'ConfluenceContentBlueprintSpec';
|
|
15322
|
+
blueprintId?: Maybe<Scalars['String']['output']>;
|
|
15323
|
+
contentTemplateId?: Maybe<Scalars['String']['output']>;
|
|
15324
|
+
context?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
15325
|
+
links?: Maybe<LinksContextBase>;
|
|
15326
|
+
};
|
|
15327
|
+
export declare type ConfluenceContentBlueprintSpecInput = {
|
|
15328
|
+
blueprintId?: InputMaybe<Scalars['String']['input']>;
|
|
15329
|
+
context?: InputMaybe<ConfluenceTemplateInfoInput>;
|
|
15330
|
+
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
15331
|
+
};
|
|
15166
15332
|
export declare type ConfluenceContentBody = {
|
|
15167
15333
|
__typename?: 'ConfluenceContentBody';
|
|
15168
15334
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -16985,6 +17151,18 @@ export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
|
|
|
16985
17151
|
success: Scalars['Boolean']['output'];
|
|
16986
17152
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16987
17153
|
};
|
|
17154
|
+
export declare type ConfluenceNbmStartVerificationLongTaskInput = {
|
|
17155
|
+
scanId: Scalars['String']['input'];
|
|
17156
|
+
verificationEntryIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
17157
|
+
};
|
|
17158
|
+
export declare type ConfluenceNbmStartVerificationLongTaskPayload = Payload & {
|
|
17159
|
+
__typename?: 'ConfluenceNbmStartVerificationLongTaskPayload';
|
|
17160
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17161
|
+
scanId: Scalars['ID']['output'];
|
|
17162
|
+
success: Scalars['Boolean']['output'];
|
|
17163
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
17164
|
+
verificationEntryIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
17165
|
+
};
|
|
16988
17166
|
export declare enum ConfluenceNbmVerificationAiState {
|
|
16989
17167
|
Broken = "BROKEN",
|
|
16990
17168
|
Unknown = "UNKNOWN",
|
|
@@ -18092,6 +18270,30 @@ export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
|
18092
18270
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
18093
18271
|
isEnabledOnContentViewForSite: Scalars['Boolean']['output'];
|
|
18094
18272
|
};
|
|
18273
|
+
export declare type ConfluenceTemplateInfoInput = {
|
|
18274
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
18275
|
+
blueprintModuleCompleteKey?: InputMaybe<Scalars['String']['input']>;
|
|
18276
|
+
categoryIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
18277
|
+
contentBlueprintId?: InputMaybe<Scalars['String']['input']>;
|
|
18278
|
+
currentDateLozenge?: InputMaybe<Scalars['String']['input']>;
|
|
18279
|
+
darkModeIconURL?: InputMaybe<Scalars['String']['input']>;
|
|
18280
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
18281
|
+
hasGlobalBlueprintContent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18282
|
+
hasWizard?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18283
|
+
iconURL?: InputMaybe<Scalars['String']['input']>;
|
|
18284
|
+
isFavourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18285
|
+
isNew?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18286
|
+
isPromoted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18287
|
+
itemModuleCompleteKey?: InputMaybe<Scalars['String']['input']>;
|
|
18288
|
+
keywords?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
18289
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
18290
|
+
recommendationRank?: InputMaybe<Scalars['Int']['input']>;
|
|
18291
|
+
spaceId?: InputMaybe<Scalars['Int']['input']>;
|
|
18292
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
18293
|
+
styleClass?: InputMaybe<Scalars['String']['input']>;
|
|
18294
|
+
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
18295
|
+
templateType?: InputMaybe<Scalars['String']['input']>;
|
|
18296
|
+
};
|
|
18095
18297
|
export declare type ConfluenceTemplates = {
|
|
18096
18298
|
__typename?: 'ConfluenceTemplates';
|
|
18097
18299
|
globalPageTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
@@ -18257,6 +18459,52 @@ export declare type ConfluenceUpdateAnswerPayload = Payload & {
|
|
|
18257
18459
|
errors?: Maybe<Array<MutationError>>;
|
|
18258
18460
|
success: Scalars['Boolean']['output'];
|
|
18259
18461
|
};
|
|
18462
|
+
export declare type ConfluenceUpdateCalendarCustomEventTypePayload = Payload & {
|
|
18463
|
+
__typename?: 'ConfluenceUpdateCalendarCustomEventTypePayload';
|
|
18464
|
+
calendarCustomEventType?: Maybe<ConfluenceCalendarCustomEventType>;
|
|
18465
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18466
|
+
success: Scalars['Boolean']['output'];
|
|
18467
|
+
};
|
|
18468
|
+
export declare type ConfluenceUpdateCalendarEventInput = {
|
|
18469
|
+
allDayEvent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18470
|
+
calendarId: Scalars['ID']['input'];
|
|
18471
|
+
childCalendarId?: InputMaybe<Scalars['String']['input']>;
|
|
18472
|
+
customEventTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
18473
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
18474
|
+
editAllInRecurrenceSeries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18475
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
18476
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
18477
|
+
eventType?: InputMaybe<Scalars['String']['input']>;
|
|
18478
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
18479
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
18480
|
+
mentionedUserNote?: InputMaybe<Scalars['String']['input']>;
|
|
18481
|
+
name: Scalars['String']['input'];
|
|
18482
|
+
notifyWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18483
|
+
originalCalendarId?: InputMaybe<Scalars['String']['input']>;
|
|
18484
|
+
originalCustomEventTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
18485
|
+
originalEventType?: InputMaybe<Scalars['String']['input']>;
|
|
18486
|
+
originalStartDate?: InputMaybe<Scalars['String']['input']>;
|
|
18487
|
+
persons?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
18488
|
+
recurrenceId?: InputMaybe<Scalars['String']['input']>;
|
|
18489
|
+
recurrenceRule?: InputMaybe<Scalars['String']['input']>;
|
|
18490
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
18491
|
+
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
18492
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
18493
|
+
userTimeZoneId?: InputMaybe<Scalars['String']['input']>;
|
|
18494
|
+
};
|
|
18495
|
+
export declare type ConfluenceUpdateCalendarEventPayload = Payload & {
|
|
18496
|
+
__typename?: 'ConfluenceUpdateCalendarEventPayload';
|
|
18497
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18498
|
+
event?: Maybe<ConfluenceCalendarEvent>;
|
|
18499
|
+
success: Scalars['Boolean']['output'];
|
|
18500
|
+
};
|
|
18501
|
+
export declare type ConfluenceUpdateCalendarEventTypeInput = {
|
|
18502
|
+
calendarId: Scalars['String']['input'];
|
|
18503
|
+
icon: Scalars['String']['input'];
|
|
18504
|
+
id: Scalars['ID']['input'];
|
|
18505
|
+
periodInMins?: InputMaybe<Scalars['Int']['input']>;
|
|
18506
|
+
title: Scalars['String']['input'];
|
|
18507
|
+
};
|
|
18260
18508
|
export declare type ConfluenceUpdateCalendarPermissionInput = {
|
|
18261
18509
|
groups: Array<InputMaybe<ConfluenceCalendarPermissionInput>>;
|
|
18262
18510
|
id: Scalars['ID']['input'];
|
|
@@ -18267,6 +18515,11 @@ export declare type ConfluenceUpdateCalendarPermissionPayload = Payload & {
|
|
|
18267
18515
|
errors?: Maybe<Array<MutationError>>;
|
|
18268
18516
|
success: Scalars['Boolean']['output'];
|
|
18269
18517
|
};
|
|
18518
|
+
export declare type ConfluenceUpdateCalendarSandboxEventTypeReminderPayload = Payload & {
|
|
18519
|
+
__typename?: 'ConfluenceUpdateCalendarSandboxEventTypeReminderPayload';
|
|
18520
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18521
|
+
success: Scalars['Boolean']['output'];
|
|
18522
|
+
};
|
|
18270
18523
|
export declare type ConfluenceUpdateCalendarViewInput = {
|
|
18271
18524
|
view: Scalars['String']['input'];
|
|
18272
18525
|
};
|
|
@@ -18474,6 +18727,19 @@ export declare type ConfluenceUpdateIndexingLanguageConfigurationPayload = Paylo
|
|
|
18474
18727
|
errors?: Maybe<Array<MutationError>>;
|
|
18475
18728
|
success: Scalars['Boolean']['output'];
|
|
18476
18729
|
};
|
|
18730
|
+
export declare type ConfluenceUpdateInstanceInput = {
|
|
18731
|
+
contentBlueprintSpec: ConfluenceContentBlueprintSpecInput;
|
|
18732
|
+
contentStatus: GraphQlContentStatus;
|
|
18733
|
+
nextVersion: Scalars['Int']['input'];
|
|
18734
|
+
};
|
|
18735
|
+
export declare type ConfluenceUpdateInstancePayload = Payload & {
|
|
18736
|
+
__typename?: 'ConfluenceUpdateInstancePayload';
|
|
18737
|
+
content?: Maybe<Content>;
|
|
18738
|
+
contentBlueprintSpec?: Maybe<ConfluenceContentBlueprintSpec>;
|
|
18739
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18740
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
18741
|
+
success: Scalars['Boolean']['output'];
|
|
18742
|
+
};
|
|
18477
18743
|
export declare type ConfluenceUpdateLoomEntryPointsConfigurationInput = {
|
|
18478
18744
|
isEnabled: Scalars['Boolean']['input'];
|
|
18479
18745
|
};
|
|
@@ -18711,6 +18977,7 @@ export declare type ConfluenceUpdateValueBlogPostPropertyPayload = Payload & {
|
|
|
18711
18977
|
export declare type ConfluenceUpdateValuePagePropertyInput = {
|
|
18712
18978
|
key: Scalars['String']['input'];
|
|
18713
18979
|
pageId: Scalars['ID']['input'];
|
|
18980
|
+
useSameVersion?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18714
18981
|
value: Scalars['String']['input'];
|
|
18715
18982
|
};
|
|
18716
18983
|
export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
@@ -28802,6 +29069,7 @@ export declare type ExternalProject = Node & {
|
|
|
28802
29069
|
provider?: Maybe<ExternalProvider>;
|
|
28803
29070
|
resolution?: Maybe<Scalars['String']['output']>;
|
|
28804
29071
|
status?: Maybe<Scalars['String']['output']>;
|
|
29072
|
+
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
28805
29073
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
28806
29074
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
28807
29075
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -31648,7 +31916,7 @@ export declare type GraphIntegrationActionDirectoryItem = {
|
|
|
31648
31916
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
31649
31917
|
id: Scalars['ID']['output'];
|
|
31650
31918
|
name: Scalars['String']['output'];
|
|
31651
|
-
tags: Array<
|
|
31919
|
+
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
31652
31920
|
};
|
|
31653
31921
|
export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
|
|
31654
31922
|
contextAri: Scalars['ID']['input'];
|
|
@@ -31872,7 +32140,7 @@ export declare type GraphIntegrationMcpServer = {
|
|
|
31872
32140
|
displayName: Scalars['String']['output'];
|
|
31873
32141
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
31874
32142
|
id: Scalars['ID']['output'];
|
|
31875
|
-
tags: Array<
|
|
32143
|
+
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
31876
32144
|
tools?: Maybe<GraphIntegrationMcpToolNodeConnection>;
|
|
31877
32145
|
};
|
|
31878
32146
|
export declare type GraphIntegrationMcpServerToolsArgs = {
|
|
@@ -31899,7 +32167,7 @@ export declare type GraphIntegrationMcpTool = {
|
|
|
31899
32167
|
mcpServer: GraphIntegrationMcpServer;
|
|
31900
32168
|
name: Scalars['String']['output'];
|
|
31901
32169
|
status?: Maybe<GraphIntegrationStatus>;
|
|
31902
|
-
tags: Array<
|
|
32170
|
+
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
31903
32171
|
};
|
|
31904
32172
|
export declare type GraphIntegrationMcpToolNode = Node & {
|
|
31905
32173
|
__typename?: 'GraphIntegrationMcpToolNode';
|
|
@@ -35110,6 +35378,10 @@ export declare type GraphStore = {
|
|
|
35110
35378
|
projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
|
|
35111
35379
|
projectLinkedToCompassComponent?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentConnection>;
|
|
35112
35380
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
35381
|
+
projectLinksToEntity?: Maybe<GraphStoreSimplifiedProjectLinksToEntityConnection>;
|
|
35382
|
+
projectLinksToEntityBatch?: Maybe<GraphStoreBatchProjectLinksToEntityConnection>;
|
|
35383
|
+
projectLinksToEntityInverse?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseConnection>;
|
|
35384
|
+
projectLinksToEntityInverseBatch?: Maybe<GraphStoreBatchProjectLinksToEntityConnection>;
|
|
35113
35385
|
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
35114
35386
|
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
35115
35387
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
@@ -38475,6 +38747,32 @@ export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
|
|
|
38475
38747
|
id: Scalars['ID']['input'];
|
|
38476
38748
|
sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
|
|
38477
38749
|
};
|
|
38750
|
+
export declare type GraphStoreProjectLinksToEntityArgs = {
|
|
38751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38752
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38753
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38754
|
+
id: Scalars['ID']['input'];
|
|
38755
|
+
sort?: InputMaybe<GraphStoreProjectLinksToEntitySortInput>;
|
|
38756
|
+
};
|
|
38757
|
+
export declare type GraphStoreProjectLinksToEntityBatchArgs = {
|
|
38758
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38759
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38760
|
+
ids: Array<Scalars['ID']['input']>;
|
|
38761
|
+
sort?: InputMaybe<GraphStoreProjectLinksToEntitySortInput>;
|
|
38762
|
+
};
|
|
38763
|
+
export declare type GraphStoreProjectLinksToEntityInverseArgs = {
|
|
38764
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38765
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38766
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38767
|
+
id: Scalars['ID']['input'];
|
|
38768
|
+
sort?: InputMaybe<GraphStoreProjectLinksToEntitySortInput>;
|
|
38769
|
+
};
|
|
38770
|
+
export declare type GraphStoreProjectLinksToEntityInverseBatchArgs = {
|
|
38771
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38772
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38773
|
+
ids: Array<Scalars['ID']['input']>;
|
|
38774
|
+
sort?: InputMaybe<GraphStoreProjectLinksToEntitySortInput>;
|
|
38775
|
+
};
|
|
38478
38776
|
export declare type GraphStorePullRequestLinksToServiceArgs = {
|
|
38479
38777
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38480
38778
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41910,6 +42208,47 @@ export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPag
|
|
|
41910
42208
|
id: Scalars['ID']['output'];
|
|
41911
42209
|
};
|
|
41912
42210
|
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageStartUnion = LoomMeetingRecurrence;
|
|
42211
|
+
export declare type GraphStoreBatchProjectLinksToEntityConnection = HasPageInfo & {
|
|
42212
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityConnection';
|
|
42213
|
+
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityEdge>>;
|
|
42214
|
+
nodes: Array<Maybe<GraphStoreBatchProjectLinksToEntityNode>>;
|
|
42215
|
+
pageInfo: PageInfo;
|
|
42216
|
+
};
|
|
42217
|
+
export declare type GraphStoreBatchProjectLinksToEntityEdge = {
|
|
42218
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityEdge';
|
|
42219
|
+
node: GraphStoreBatchProjectLinksToEntityInnerConnection;
|
|
42220
|
+
};
|
|
42221
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
42222
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityEndNode';
|
|
42223
|
+
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
42224
|
+
id: Scalars['ID']['output'];
|
|
42225
|
+
};
|
|
42226
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
42227
|
+
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
42228
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
42229
|
+
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
42230
|
+
nodes: Array<Maybe<GraphStoreBatchProjectLinksToEntityNode>>;
|
|
42231
|
+
requestedId: Scalars['ID']['output'];
|
|
42232
|
+
};
|
|
42233
|
+
export declare type GraphStoreBatchProjectLinksToEntityInnerEdge = {
|
|
42234
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerEdge';
|
|
42235
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42236
|
+
node: GraphStoreBatchProjectLinksToEntityNode;
|
|
42237
|
+
};
|
|
42238
|
+
export declare type GraphStoreBatchProjectLinksToEntityNode = Node & {
|
|
42239
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityNode';
|
|
42240
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42241
|
+
from: GraphStoreBatchProjectLinksToEntityStartNode;
|
|
42242
|
+
id: Scalars['ID']['output'];
|
|
42243
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42244
|
+
to: GraphStoreBatchProjectLinksToEntityEndNode;
|
|
42245
|
+
};
|
|
42246
|
+
export declare type GraphStoreBatchProjectLinksToEntityStartNode = {
|
|
42247
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityStartNode';
|
|
42248
|
+
data?: Maybe<GraphStoreBatchProjectLinksToEntityStartUnion>;
|
|
42249
|
+
id: Scalars['ID']['output'];
|
|
42250
|
+
};
|
|
42251
|
+
export declare type GraphStoreBatchProjectLinksToEntityStartUnion = TownsquareProject;
|
|
41913
42252
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
41914
42253
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
41915
42254
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -47895,6 +48234,9 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
47895
48234
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47896
48235
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
47897
48236
|
};
|
|
48237
|
+
export declare type GraphStoreProjectLinksToEntitySortInput = {
|
|
48238
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48239
|
+
};
|
|
47898
48240
|
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
47899
48241
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47900
48242
|
};
|
|
@@ -52363,6 +52705,34 @@ export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseEd
|
|
|
52363
52705
|
};
|
|
52364
52706
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseUnion = JiraProject;
|
|
52365
52707
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentUnion = CompassComponent;
|
|
52708
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityConnection = HasPageInfo & {
|
|
52709
|
+
__typename?: 'GraphStoreSimplifiedProjectLinksToEntityConnection';
|
|
52710
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectLinksToEntityEdge>>>;
|
|
52711
|
+
pageInfo: PageInfo;
|
|
52712
|
+
};
|
|
52713
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityEdge = {
|
|
52714
|
+
__typename?: 'GraphStoreSimplifiedProjectLinksToEntityEdge';
|
|
52715
|
+
createdAt: Scalars['DateTime']['output'];
|
|
52716
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
52717
|
+
id: Scalars['ID']['output'];
|
|
52718
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
52719
|
+
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityUnion>;
|
|
52720
|
+
};
|
|
52721
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseConnection = HasPageInfo & {
|
|
52722
|
+
__typename?: 'GraphStoreSimplifiedProjectLinksToEntityInverseConnection';
|
|
52723
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseEdge>>>;
|
|
52724
|
+
pageInfo: PageInfo;
|
|
52725
|
+
};
|
|
52726
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
52727
|
+
__typename?: 'GraphStoreSimplifiedProjectLinksToEntityInverseEdge';
|
|
52728
|
+
createdAt: Scalars['DateTime']['output'];
|
|
52729
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
52730
|
+
id: Scalars['ID']['output'];
|
|
52731
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
52732
|
+
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
52733
|
+
};
|
|
52734
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
52735
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
52366
52736
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
52367
52737
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
52368
52738
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -61590,6 +61960,11 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
61590
61960
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
61591
61961
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
61592
61962
|
};
|
|
61963
|
+
export declare type JiraAlignAggCustomProjectType = {
|
|
61964
|
+
__typename?: 'JiraAlignAggCustomProjectType';
|
|
61965
|
+
label: Scalars['String']['output'];
|
|
61966
|
+
value: JiraAlignAggProjectType;
|
|
61967
|
+
};
|
|
61593
61968
|
export declare type JiraAlignAggJiraAlignProjectOwner = {
|
|
61594
61969
|
email?: Maybe<Scalars['String']['output']>;
|
|
61595
61970
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
@@ -61633,6 +62008,30 @@ export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
|
61633
62008
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
61634
62009
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
61635
62010
|
};
|
|
62011
|
+
export declare type JiraAlignAggProjectConnection = {
|
|
62012
|
+
__typename?: 'JiraAlignAggProjectConnection';
|
|
62013
|
+
edges?: Maybe<Array<Maybe<JiraAlignAggProjectEdge>>>;
|
|
62014
|
+
pageInfo: PageInfo;
|
|
62015
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
62016
|
+
};
|
|
62017
|
+
export declare type JiraAlignAggProjectEdge = {
|
|
62018
|
+
__typename?: 'JiraAlignAggProjectEdge';
|
|
62019
|
+
cursor: Scalars['String']['output'];
|
|
62020
|
+
node: JiraAlignAggProject;
|
|
62021
|
+
};
|
|
62022
|
+
export declare enum JiraAlignAggProjectType {
|
|
62023
|
+
Capability = "CAPABILITY",
|
|
62024
|
+
Epic = "EPIC",
|
|
62025
|
+
Theme = "THEME"
|
|
62026
|
+
}
|
|
62027
|
+
export declare type JiraAlignAggSite = {
|
|
62028
|
+
__typename?: 'JiraAlignAggSite';
|
|
62029
|
+
availableProjectTypes?: Maybe<Array<JiraAlignAggCustomProjectType>>;
|
|
62030
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
62031
|
+
id: Scalars['ID']['output'];
|
|
62032
|
+
jiraAlignSiteUrl: Scalars['String']['output'];
|
|
62033
|
+
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
62034
|
+
};
|
|
61636
62035
|
export declare enum JiraAllowedFieldFormatConfig {
|
|
61637
62036
|
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
61638
62037
|
}
|
|
@@ -62541,11 +62940,6 @@ export declare type JiraBacklogColumn = {
|
|
|
62541
62940
|
name?: Maybe<Scalars['String']['output']>;
|
|
62542
62941
|
statusIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
62543
62942
|
};
|
|
62544
|
-
export declare type JiraBacklogColumnStatistic = {
|
|
62545
|
-
__typename?: 'JiraBacklogColumnStatistic';
|
|
62546
|
-
statFieldId: Scalars['ID']['output'];
|
|
62547
|
-
statFieldValue?: Maybe<JiraBacklogStatFieldValue>;
|
|
62548
|
-
};
|
|
62549
62943
|
export declare type JiraBacklogData = {
|
|
62550
62944
|
__typename?: 'JiraBacklogData';
|
|
62551
62945
|
backlogColumn?: Maybe<JiraBacklogColumn>;
|
|
@@ -62615,12 +63009,14 @@ export declare type JiraBacklogIssue = {
|
|
|
62615
63009
|
assigneeKey?: Maybe<Scalars['String']['output']>;
|
|
62616
63010
|
assigneeName?: Maybe<Scalars['String']['output']>;
|
|
62617
63011
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
62618
|
-
|
|
63012
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
63013
|
+
columnStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
|
|
62619
63014
|
done?: Maybe<Scalars['Boolean']['output']>;
|
|
62620
63015
|
epic?: Maybe<Scalars['String']['output']>;
|
|
62621
63016
|
epicColor?: Maybe<Scalars['String']['output']>;
|
|
62622
63017
|
epicField?: Maybe<JiraBacklogIssueEpicLinkField>;
|
|
62623
63018
|
epicLabel?: Maybe<Scalars['String']['output']>;
|
|
63019
|
+
estimateStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
|
|
62624
63020
|
estimateStatisticRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
62625
63021
|
extraFields?: Maybe<Array<Maybe<JiraBacklogExtraField>>>;
|
|
62626
63022
|
fixVersions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -62643,6 +63039,7 @@ export declare type JiraBacklogIssue = {
|
|
|
62643
63039
|
statusName?: Maybe<Scalars['String']['output']>;
|
|
62644
63040
|
statusUrl?: Maybe<Scalars['String']['output']>;
|
|
62645
63041
|
summary?: Maybe<Scalars['String']['output']>;
|
|
63042
|
+
trackingStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
|
|
62646
63043
|
typeHierarchyLevel?: Maybe<Scalars['Int']['output']>;
|
|
62647
63044
|
typeId?: Maybe<Scalars['String']['output']>;
|
|
62648
63045
|
typeName?: Maybe<Scalars['String']['output']>;
|
|
@@ -62767,7 +63164,12 @@ export declare type JiraBacklogSprintTimeRemaining = {
|
|
|
62767
63164
|
export declare type JiraBacklogStatFieldValue = {
|
|
62768
63165
|
__typename?: 'JiraBacklogStatFieldValue';
|
|
62769
63166
|
text?: Maybe<Scalars['String']['output']>;
|
|
62770
|
-
value?: Maybe<Scalars['
|
|
63167
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
63168
|
+
};
|
|
63169
|
+
export declare type JiraBacklogStatisticFieldValue = {
|
|
63170
|
+
__typename?: 'JiraBacklogStatisticFieldValue';
|
|
63171
|
+
statFieldId: Scalars['ID']['output'];
|
|
63172
|
+
statFieldValue?: Maybe<JiraBacklogStatFieldValue>;
|
|
62771
63173
|
};
|
|
62772
63174
|
export declare type JiraBacklogStatisticsField = {
|
|
62773
63175
|
__typename?: 'JiraBacklogStatisticsField';
|
|
@@ -63072,7 +63474,7 @@ export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
|
63072
63474
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63073
63475
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63074
63476
|
};
|
|
63075
|
-
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
63477
|
+
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & Node & {
|
|
63076
63478
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
63077
63479
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
63078
63480
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -63095,7 +63497,7 @@ export declare type JiraBoardViewCardOptionEdge = {
|
|
|
63095
63497
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
63096
63498
|
node?: Maybe<JiraBoardViewCardOption>;
|
|
63097
63499
|
};
|
|
63098
|
-
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
63500
|
+
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & Node & {
|
|
63099
63501
|
__typename?: 'JiraBoardViewCategoryColumn';
|
|
63100
63502
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
63101
63503
|
category?: Maybe<JiraOption>;
|
|
@@ -63110,7 +63512,9 @@ export declare type JiraBoardViewCell = Node & {
|
|
|
63110
63512
|
};
|
|
63111
63513
|
export declare type JiraBoardViewCellIssuesArgs = {
|
|
63112
63514
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63515
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
63113
63516
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63517
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63114
63518
|
};
|
|
63115
63519
|
export declare type JiraBoardViewCellConnection = {
|
|
63116
63520
|
__typename?: 'JiraBoardViewCellConnection';
|
|
@@ -63160,7 +63564,7 @@ export declare type JiraBoardViewInput = {
|
|
|
63160
63564
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63161
63565
|
};
|
|
63162
63566
|
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout;
|
|
63163
|
-
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
63567
|
+
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
63164
63568
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
63165
63569
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
63166
63570
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -63190,7 +63594,7 @@ export declare type JiraBoardViewStatusAssociatedIssueTypesArgs = {
|
|
|
63190
63594
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63191
63595
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63192
63596
|
};
|
|
63193
|
-
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
63597
|
+
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
63194
63598
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
63195
63599
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
63196
63600
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65595,6 +65999,12 @@ export declare type JiraDeleteActivityConfigurationInput = {
|
|
|
65595
65999
|
journeyId: Scalars['ID']['input'];
|
|
65596
66000
|
journeyVersion: Scalars['Long']['input'];
|
|
65597
66001
|
};
|
|
66002
|
+
export declare type JiraDeleteAllAttachmentsPayload = Payload & {
|
|
66003
|
+
__typename?: 'JiraDeleteAllAttachmentsPayload';
|
|
66004
|
+
deletedAttachmentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
66005
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66006
|
+
success: Scalars['Boolean']['output'];
|
|
66007
|
+
};
|
|
65598
66008
|
export declare type JiraDeleteAttachmentsPayload = Payload & {
|
|
65599
66009
|
__typename?: 'JiraDeleteAttachmentsPayload';
|
|
65600
66010
|
deletedCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -67966,6 +68376,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
67966
68376
|
summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
|
|
67967
68377
|
summary?: Maybe<Scalars['String']['output']>;
|
|
67968
68378
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
68379
|
+
timeOriginalEstimateField?: Maybe<JiraOriginalTimeEstimateField>;
|
|
67969
68380
|
timeTrackingField?: Maybe<JiraTimeTrackingField>;
|
|
67970
68381
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
67971
68382
|
votesField?: Maybe<JiraVotesField>;
|
|
@@ -68201,6 +68612,20 @@ export declare type JiraIssueAndProject = {
|
|
|
68201
68612
|
issueId: Scalars['ID']['output'];
|
|
68202
68613
|
projectId: Scalars['ID']['output'];
|
|
68203
68614
|
};
|
|
68615
|
+
export declare type JiraIssueArchiveAsyncErrorExtension = MutationErrorExtension & {
|
|
68616
|
+
__typename?: 'JiraIssueArchiveAsyncErrorExtension';
|
|
68617
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
68618
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
68619
|
+
};
|
|
68620
|
+
export declare type JiraIssueArchiveAsyncInput = {
|
|
68621
|
+
jql: Scalars['String']['input'];
|
|
68622
|
+
};
|
|
68623
|
+
export declare type JiraIssueArchiveAsyncPayload = Payload & {
|
|
68624
|
+
__typename?: 'JiraIssueArchiveAsyncPayload';
|
|
68625
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68626
|
+
success: Scalars['Boolean']['output'];
|
|
68627
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
68628
|
+
};
|
|
68204
68629
|
export declare type JiraIssueArchiveErrorExtension = MutationErrorExtension & {
|
|
68205
68630
|
__typename?: 'JiraIssueArchiveErrorExtension';
|
|
68206
68631
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -70122,6 +70547,7 @@ export declare type JiraJourneyParentIssueInput = {
|
|
|
70122
70547
|
};
|
|
70123
70548
|
export declare type JiraJourneyParentIssueTriggerConfiguration = {
|
|
70124
70549
|
__typename?: 'JiraJourneyParentIssueTriggerConfiguration';
|
|
70550
|
+
conditions?: Maybe<JiraJourneyItemConditions>;
|
|
70125
70551
|
type?: Maybe<JiraJourneyTriggerType>;
|
|
70126
70552
|
};
|
|
70127
70553
|
export declare type JiraJourneyParentIssueTriggerConfigurationInput = {
|
|
@@ -71454,6 +71880,7 @@ export declare type JiraMutation = {
|
|
|
71454
71880
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
71455
71881
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
71456
71882
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
71883
|
+
deleteAllAttachments?: Maybe<JiraDeleteAllAttachmentsPayload>;
|
|
71457
71884
|
deleteAttachments?: Maybe<JiraDeleteAttachmentsPayload>;
|
|
71458
71885
|
deleteComment?: Maybe<JiraDeleteCommentPayload>;
|
|
71459
71886
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
@@ -71572,6 +71999,7 @@ export declare type JiraMutation = {
|
|
|
71572
71999
|
updateJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
71573
72000
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
71574
72001
|
updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
72002
|
+
updateJiraJourneyParentTriggerConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
71575
72003
|
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
71576
72004
|
updateJiraJourneyWorkItemConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
71577
72005
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
@@ -71786,6 +72214,9 @@ export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
|
71786
72214
|
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
71787
72215
|
input: JiraCreateSimpleNavigationItemInput;
|
|
71788
72216
|
};
|
|
72217
|
+
export declare type JiraMutationDeleteAllAttachmentsArgs = {
|
|
72218
|
+
issueId: Scalars['ID']['input'];
|
|
72219
|
+
};
|
|
71789
72220
|
export declare type JiraMutationDeleteAttachmentsArgs = {
|
|
71790
72221
|
ids: Array<Scalars['ID']['input']>;
|
|
71791
72222
|
};
|
|
@@ -72179,6 +72610,10 @@ export declare type JiraMutationUpdateJiraJourneyParentIssueConfigurationArgs =
|
|
|
72179
72610
|
cloudId: Scalars['ID']['input'];
|
|
72180
72611
|
input: JiraUpdateJourneyParentIssueConfigurationInput;
|
|
72181
72612
|
};
|
|
72613
|
+
export declare type JiraMutationUpdateJiraJourneyParentTriggerConditionsArgs = {
|
|
72614
|
+
cloudId: Scalars['ID']['input'];
|
|
72615
|
+
input: JiraUpdateJourneyParentTriggerConditionsInput;
|
|
72616
|
+
};
|
|
72182
72617
|
export declare type JiraMutationUpdateJiraJourneyTriggerConfigurationArgs = {
|
|
72183
72618
|
cloudId: Scalars['ID']['input'];
|
|
72184
72619
|
input: JiraUpdateJourneyTriggerConfigurationInput;
|
|
@@ -79636,6 +80071,7 @@ export declare type JiraSuggestion = {
|
|
|
79636
80071
|
export declare type JiraSuggestionAction = {
|
|
79637
80072
|
__typename?: 'JiraSuggestionAction';
|
|
79638
80073
|
default?: Maybe<Scalars['Boolean']['output']>;
|
|
80074
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
79639
80075
|
id?: Maybe<Scalars['String']['output']>;
|
|
79640
80076
|
inputSchema?: Maybe<JiraSuggestionActionInputSchema>;
|
|
79641
80077
|
type?: Maybe<JiraSuggestionActionType>;
|
|
@@ -80354,6 +80790,12 @@ export declare type JiraUpdateJourneyParentIssueConfigurationInput = {
|
|
|
80354
80790
|
parentIssue?: InputMaybe<JiraJourneyParentIssueInput>;
|
|
80355
80791
|
version: Scalars['Long']['input'];
|
|
80356
80792
|
};
|
|
80793
|
+
export declare type JiraUpdateJourneyParentTriggerConditionsInput = {
|
|
80794
|
+
conditions: JiraJourneyItemConditionsInput;
|
|
80795
|
+
etag: Scalars['String']['input'];
|
|
80796
|
+
journeyId: Scalars['ID']['input'];
|
|
80797
|
+
journeyVersion: Scalars['Long']['input'];
|
|
80798
|
+
};
|
|
80357
80799
|
export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
80358
80800
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
80359
80801
|
id: Scalars['ID']['input'];
|
|
@@ -84590,11 +85032,13 @@ export declare enum LoomTranscriptLanguage {
|
|
|
84590
85032
|
export declare type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
84591
85033
|
__typename?: 'LoomUnauthenticatedUserPrimaryAuthType';
|
|
84592
85034
|
authType: Scalars['String']['output'];
|
|
85035
|
+
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
84593
85036
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
84594
85037
|
};
|
|
84595
85038
|
export declare type LoomUserPrimaryAuthType = {
|
|
84596
85039
|
__typename?: 'LoomUserPrimaryAuthType';
|
|
84597
85040
|
authType: Scalars['String']['output'];
|
|
85041
|
+
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
84598
85042
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
84599
85043
|
};
|
|
84600
85044
|
export declare enum LoomUserStatus {
|
|
@@ -85809,19 +86253,41 @@ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
|
|
|
85809
86253
|
tagLine?: InputMaybe<Scalars['String']['input']>;
|
|
85810
86254
|
youtubeId?: InputMaybe<Scalars['String']['input']>;
|
|
85811
86255
|
};
|
|
86256
|
+
export declare type MarketplaceConsoleMakerContactCreateInput = {
|
|
86257
|
+
contactPayload: MarketplaceConsoleMakerContactPayload;
|
|
86258
|
+
email: Scalars['String']['input'];
|
|
86259
|
+
partnerId: Scalars['ID']['input'];
|
|
86260
|
+
};
|
|
86261
|
+
export declare type MarketplaceConsoleMakerContactDeleteInput = {
|
|
86262
|
+
accountId: Scalars['ID']['input'];
|
|
86263
|
+
partnerId: Scalars['ID']['input'];
|
|
86264
|
+
};
|
|
86265
|
+
export declare type MarketplaceConsoleMakerContactPayload = {
|
|
86266
|
+
permissions: Array<Scalars['String']['input']>;
|
|
86267
|
+
roles: Array<Scalars['String']['input']>;
|
|
86268
|
+
};
|
|
86269
|
+
export declare type MarketplaceConsoleMakerContactResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
86270
|
+
export declare type MarketplaceConsoleMakerContactUpdateInput = {
|
|
86271
|
+
accountId: Scalars['ID']['input'];
|
|
86272
|
+
contactPayload: MarketplaceConsoleMakerContactPayload;
|
|
86273
|
+
partnerId: Scalars['ID']['input'];
|
|
86274
|
+
};
|
|
85812
86275
|
export declare type MarketplaceConsoleMutationApi = {
|
|
85813
86276
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
85814
86277
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
85815
86278
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
85816
86279
|
createAppSoftwareVersion?: Maybe<MarketplaceConsoleCreateAppSoftwareVersionMutationOutput>;
|
|
85817
86280
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
86281
|
+
createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
85818
86282
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
85819
86283
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
85820
86284
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
86285
|
+
deleteMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
85821
86286
|
editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
|
|
85822
86287
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
85823
86288
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
85824
86289
|
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
86290
|
+
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
85825
86291
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
85826
86292
|
};
|
|
85827
86293
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
@@ -85839,6 +86305,9 @@ export declare type MarketplaceConsoleMutationApiCreateAppSoftwareVersionArgs =
|
|
|
85839
86305
|
export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
85840
86306
|
product: MarketplaceConsoleEditionsInput;
|
|
85841
86307
|
};
|
|
86308
|
+
export declare type MarketplaceConsoleMutationApiCreateMakerContactArgs = {
|
|
86309
|
+
input: MarketplaceConsoleMakerContactCreateInput;
|
|
86310
|
+
};
|
|
85842
86311
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
85843
86312
|
appKey: Scalars['ID']['input'];
|
|
85844
86313
|
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
@@ -85851,6 +86320,9 @@ export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
|
85851
86320
|
export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
|
|
85852
86321
|
deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
|
|
85853
86322
|
};
|
|
86323
|
+
export declare type MarketplaceConsoleMutationApiDeleteMakerContactArgs = {
|
|
86324
|
+
input: MarketplaceConsoleMakerContactDeleteInput;
|
|
86325
|
+
};
|
|
85854
86326
|
export declare type MarketplaceConsoleMutationApiEditAppVersionArgs = {
|
|
85855
86327
|
editAppVersionRequest: MarketplaceConsoleEditAppVersionRequest;
|
|
85856
86328
|
};
|
|
@@ -85864,6 +86336,9 @@ export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
|
|
|
85864
86336
|
export declare type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
|
|
85865
86337
|
updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
|
|
85866
86338
|
};
|
|
86339
|
+
export declare type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
|
|
86340
|
+
input: MarketplaceConsoleMakerContactUpdateInput;
|
|
86341
|
+
};
|
|
85867
86342
|
export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
|
|
85868
86343
|
url: Scalars['String']['input'];
|
|
85869
86344
|
};
|
|
@@ -88088,6 +88563,14 @@ export declare type MercuryDeleteStrategicEventCommentPayload = Payload & {
|
|
|
88088
88563
|
errors?: Maybe<Array<MutationError>>;
|
|
88089
88564
|
success: Scalars['Boolean']['output'];
|
|
88090
88565
|
};
|
|
88566
|
+
export declare type MercuryDeleteStrategicEventInput = {
|
|
88567
|
+
id: Scalars['ID']['input'];
|
|
88568
|
+
};
|
|
88569
|
+
export declare type MercuryDeleteStrategicEventPayload = Payload & {
|
|
88570
|
+
__typename?: 'MercuryDeleteStrategicEventPayload';
|
|
88571
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88572
|
+
success: Scalars['Boolean']['output'];
|
|
88573
|
+
};
|
|
88091
88574
|
export declare enum MercuryEntityType {
|
|
88092
88575
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
88093
88576
|
Comment = "COMMENT",
|
|
@@ -89457,6 +89940,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
89457
89940
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
89458
89941
|
deleteChangeProposalsView?: Maybe<MercuryDeleteChangeProposalsViewPayload>;
|
|
89459
89942
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
89943
|
+
deleteStrategicEvent?: Maybe<MercuryDeleteStrategicEventPayload>;
|
|
89460
89944
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
89461
89945
|
linkGoalsToChangeProposal?: Maybe<MercuryLinkGoalsToChangeProposalPayload>;
|
|
89462
89946
|
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
@@ -89516,6 +90000,9 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalsViewAr
|
|
|
89516
90000
|
export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
89517
90001
|
input?: InputMaybe<MercuryDeleteChangesInput>;
|
|
89518
90002
|
};
|
|
90003
|
+
export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventArgs = {
|
|
90004
|
+
input: MercuryDeleteStrategicEventInput;
|
|
90005
|
+
};
|
|
89519
90006
|
export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
|
|
89520
90007
|
input: MercuryDeleteStrategicEventCommentInput;
|
|
89521
90008
|
};
|
|
@@ -90380,6 +90867,7 @@ export declare type Mutation = {
|
|
|
90380
90867
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
90381
90868
|
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
90382
90869
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
90870
|
+
avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
|
|
90383
90871
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
90384
90872
|
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
90385
90873
|
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
@@ -90414,6 +90902,7 @@ export declare type Mutation = {
|
|
|
90414
90902
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
90415
90903
|
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
90416
90904
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
90905
|
+
confluence_batchFollowTeammates?: Maybe<ConfluenceBatchFollowTeammatesPayload>;
|
|
90417
90906
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
90418
90907
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
90419
90908
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
@@ -90452,6 +90941,7 @@ export declare type Mutation = {
|
|
|
90452
90941
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
90453
90942
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
90454
90943
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
90944
|
+
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
90455
90945
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
90456
90946
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
90457
90947
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
@@ -90465,13 +90955,17 @@ export declare type Mutation = {
|
|
|
90465
90955
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
90466
90956
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
90467
90957
|
confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
|
|
90958
|
+
confluence_updateCalendarCustomEventType?: Maybe<ConfluenceUpdateCalendarCustomEventTypePayload>;
|
|
90959
|
+
confluence_updateCalendarEvent?: Maybe<ConfluenceUpdateCalendarEventPayload>;
|
|
90468
90960
|
confluence_updateCalendarPermissions?: Maybe<ConfluenceUpdateCalendarPermissionPayload>;
|
|
90961
|
+
confluence_updateCalendarSandboxEventTypeReminder?: Maybe<ConfluenceUpdateCalendarSandboxEventTypeReminderPayload>;
|
|
90469
90962
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
90470
90963
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
90471
90964
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
90472
90965
|
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
90473
90966
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
90474
90967
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
90968
|
+
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
90475
90969
|
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
90476
90970
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
90477
90971
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
@@ -90683,6 +91177,7 @@ export declare type Mutation = {
|
|
|
90683
91177
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
90684
91178
|
jira_applySuggestionActions?: Maybe<JiraApplySuggestionActionsPayload>;
|
|
90685
91179
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
91180
|
+
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
90686
91181
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
90687
91182
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
90688
91183
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
@@ -90841,6 +91336,7 @@ export declare type Mutation = {
|
|
|
90841
91336
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
90842
91337
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
90843
91338
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
91339
|
+
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarMutationResponse>;
|
|
90844
91340
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
90845
91341
|
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
90846
91342
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
@@ -91351,6 +91847,9 @@ export declare type MutationAvp_CreateDashboardFilterArgs = {
|
|
|
91351
91847
|
export declare type MutationAvp_DeleteChartArgs = {
|
|
91352
91848
|
input: AvpDeleteChartInput;
|
|
91353
91849
|
};
|
|
91850
|
+
export declare type MutationAvp_DeleteDashboardFilterArgs = {
|
|
91851
|
+
input: AvpDeleteDashboardFilterInput;
|
|
91852
|
+
};
|
|
91354
91853
|
export declare type MutationAvp_MoveCanvasElementArgs = {
|
|
91355
91854
|
input: AvpMoveCanvasElementInput;
|
|
91356
91855
|
};
|
|
@@ -91457,6 +91956,10 @@ export declare type MutationConfluence_AddReactionArgs = {
|
|
|
91457
91956
|
cloudId: Scalars['ID']['input'];
|
|
91458
91957
|
input: ConfluenceReactionInput;
|
|
91459
91958
|
};
|
|
91959
|
+
export declare type MutationConfluence_BatchFollowTeammatesArgs = {
|
|
91960
|
+
cloudId: Scalars['ID']['input'];
|
|
91961
|
+
input: ConfluenceBatchFollowTeammatesInput;
|
|
91962
|
+
};
|
|
91460
91963
|
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
91461
91964
|
cloudId: Scalars['ID']['input'];
|
|
91462
91965
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
@@ -91605,6 +92108,10 @@ export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
|
91605
92108
|
cloudId: Scalars['ID']['input'];
|
|
91606
92109
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
91607
92110
|
};
|
|
92111
|
+
export declare type MutationConfluence_NbmStartVerificationLongTaskArgs = {
|
|
92112
|
+
cloudId: Scalars['ID']['input'];
|
|
92113
|
+
input: ConfluenceNbmStartVerificationLongTaskInput;
|
|
92114
|
+
};
|
|
91608
92115
|
export declare type MutationConfluence_PatchCalendarArgs = {
|
|
91609
92116
|
cloudId: Scalars['ID']['input'];
|
|
91610
92117
|
input: ConfluencePatchCalendarInput;
|
|
@@ -91658,10 +92165,22 @@ export declare type MutationConfluence_UpdateAnswerArgs = {
|
|
|
91658
92165
|
cloudId: Scalars['ID']['input'];
|
|
91659
92166
|
input: ConfluenceUpdateAnswerInput;
|
|
91660
92167
|
};
|
|
92168
|
+
export declare type MutationConfluence_UpdateCalendarCustomEventTypeArgs = {
|
|
92169
|
+
cloudId: Scalars['ID']['input'];
|
|
92170
|
+
input: ConfluenceUpdateCalendarEventTypeInput;
|
|
92171
|
+
};
|
|
92172
|
+
export declare type MutationConfluence_UpdateCalendarEventArgs = {
|
|
92173
|
+
cloudId: Scalars['ID']['input'];
|
|
92174
|
+
input: ConfluenceUpdateCalendarEventInput;
|
|
92175
|
+
};
|
|
91661
92176
|
export declare type MutationConfluence_UpdateCalendarPermissionsArgs = {
|
|
91662
92177
|
cloudId: Scalars['ID']['input'];
|
|
91663
92178
|
input: ConfluenceUpdateCalendarPermissionInput;
|
|
91664
92179
|
};
|
|
92180
|
+
export declare type MutationConfluence_UpdateCalendarSandboxEventTypeReminderArgs = {
|
|
92181
|
+
cloudId: Scalars['ID']['input'];
|
|
92182
|
+
input: ConfluenceUpdateCalendarEventTypeInput;
|
|
92183
|
+
};
|
|
91665
92184
|
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
91666
92185
|
cloudId: Scalars['ID']['input'];
|
|
91667
92186
|
input: ConfluenceUpdateCalendarViewInput;
|
|
@@ -91686,6 +92205,11 @@ export declare type MutationConfluence_UpdateDefaultTitleEmojiArgs = {
|
|
|
91686
92205
|
cloudId: Scalars['ID']['input'];
|
|
91687
92206
|
input: ConfluenceUpdateDefaultTitleEmojiInput;
|
|
91688
92207
|
};
|
|
92208
|
+
export declare type MutationConfluence_UpdateInstanceArgs = {
|
|
92209
|
+
expand?: InputMaybe<Scalars['String']['input']>;
|
|
92210
|
+
input: ConfluenceUpdateInstanceInput;
|
|
92211
|
+
pageAri: Scalars['ID']['input'];
|
|
92212
|
+
};
|
|
91689
92213
|
export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
91690
92214
|
cloudId: Scalars['ID']['input'];
|
|
91691
92215
|
input: ConfluenceUpdateNav4OptInInput;
|
|
@@ -92389,6 +92913,10 @@ export declare type MutationJira_ApplySuggestionActionsArgs = {
|
|
|
92389
92913
|
export declare type MutationJira_ArchiveIssueArgs = {
|
|
92390
92914
|
input: JiraIssueArchiveInput;
|
|
92391
92915
|
};
|
|
92916
|
+
export declare type MutationJira_ArchiveIssueAsyncArgs = {
|
|
92917
|
+
cloudId: Scalars['ID']['input'];
|
|
92918
|
+
input: JiraIssueArchiveAsyncInput;
|
|
92919
|
+
};
|
|
92392
92920
|
export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
|
|
92393
92921
|
cloudId: Scalars['ID']['input'];
|
|
92394
92922
|
input: JiraAssociateProjectToFieldSchemeInput;
|
|
@@ -92872,6 +93400,10 @@ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
|
|
|
92872
93400
|
cloudId: Scalars['ID']['input'];
|
|
92873
93401
|
input: Array<RadarPositionProposalChangeInput>;
|
|
92874
93402
|
};
|
|
93403
|
+
export declare type MutationRadar_UpdatePositionLaborCostEstimateSettingsArgs = {
|
|
93404
|
+
cloudId: Scalars['ID']['input'];
|
|
93405
|
+
input: RadarUpdatePositionLaborCostEstimateSettingsInput;
|
|
93406
|
+
};
|
|
92875
93407
|
export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
92876
93408
|
cloudId: Scalars['ID']['input'];
|
|
92877
93409
|
input: RadarWorkspaceSettingsInput;
|
|
@@ -95770,6 +96302,7 @@ export declare type PolarisValueRule = {
|
|
|
95770
96302
|
export declare type PolarisView = {
|
|
95771
96303
|
__typename?: 'PolarisView';
|
|
95772
96304
|
comments?: Maybe<Array<PolarisComment>>;
|
|
96305
|
+
connectionsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
95773
96306
|
containsArchived: Scalars['Boolean']['output'];
|
|
95774
96307
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
95775
96308
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -95781,6 +96314,7 @@ export declare type PolarisView = {
|
|
|
95781
96314
|
filterGroups?: Maybe<Array<PolarisViewFilterGroup>>;
|
|
95782
96315
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
95783
96316
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
96317
|
+
groupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
95784
96318
|
hidden?: Maybe<Array<PolarisIdeaField>>;
|
|
95785
96319
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
95786
96320
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -95793,6 +96327,8 @@ export declare type PolarisView = {
|
|
|
95793
96327
|
name: Scalars['String']['output'];
|
|
95794
96328
|
projectId: Scalars['Int']['output'];
|
|
95795
96329
|
rank: Scalars['Int']['output'];
|
|
96330
|
+
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
96331
|
+
showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
95796
96332
|
sort?: Maybe<Array<PolarisSortField>>;
|
|
95797
96333
|
sortMode: PolarisViewSortMode;
|
|
95798
96334
|
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSize>>;
|
|
@@ -95802,6 +96338,7 @@ export declare type PolarisView = {
|
|
|
95802
96338
|
uuid: Scalars['ID']['output'];
|
|
95803
96339
|
verticalGroupBy?: Maybe<PolarisIdeaField>;
|
|
95804
96340
|
verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
96341
|
+
verticalGroupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
95805
96342
|
viewSetId: Scalars['ID']['output'];
|
|
95806
96343
|
visualizationType: PolarisVisualizationType;
|
|
95807
96344
|
whiteboardConfig?: Maybe<PolarisWhiteboardConfig>;
|
|
@@ -96423,6 +96960,8 @@ export declare type Query = {
|
|
|
96423
96960
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
96424
96961
|
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
96425
96962
|
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
96963
|
+
assetsDM_dataSourceMergeGetByObjectId?: Maybe<AssetsDmDataSourceMergeGetByObjectIdResponse>;
|
|
96964
|
+
assetsDM_dataSourceMergeGetObjectsForImport?: Maybe<Array<AssetsDmDataSourceMergeObjectForImportInfo>>;
|
|
96426
96965
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
96427
96966
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
96428
96967
|
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
@@ -96493,6 +97032,7 @@ export declare type Query = {
|
|
|
96493
97032
|
confluence_applicationLinksByTypeId?: Maybe<Array<Maybe<ConfluenceApplicationLink>>>;
|
|
96494
97033
|
confluence_assignableSpaceRoles?: Maybe<Array<Maybe<ConfluenceAssignableSpaceRole>>>;
|
|
96495
97034
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
97035
|
+
confluence_calendarEventsByDateRange?: Maybe<ConfluenceCalendarEventResponse>;
|
|
96496
97036
|
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
96497
97037
|
confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
96498
97038
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
@@ -96564,7 +97104,6 @@ export declare type Query = {
|
|
|
96564
97104
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
96565
97105
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
96566
97106
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
96567
|
-
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
96568
97107
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
96569
97108
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
96570
97109
|
confluence_template?: Maybe<ContentTemplate>;
|
|
@@ -96811,6 +97350,8 @@ export declare type Query = {
|
|
|
96811
97350
|
isSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
96812
97351
|
jira?: Maybe<JiraQuery>;
|
|
96813
97352
|
jiraAlignAgg_projectsByAris?: Maybe<Array<Maybe<JiraAlignAggProject>>>;
|
|
97353
|
+
jiraAlignAgg_searchProjects?: Maybe<JiraAlignAggProjectConnection>;
|
|
97354
|
+
jiraAlignAgg_sitesByOrgId?: Maybe<Array<Maybe<JiraAlignAggSite>>>;
|
|
96814
97355
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
96815
97356
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
96816
97357
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -96819,7 +97360,6 @@ export declare type Query = {
|
|
|
96819
97360
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
96820
97361
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
96821
97362
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
96822
|
-
jira_boardViewCellsByIds?: Maybe<Array<Maybe<JiraBoardViewCell>>>;
|
|
96823
97363
|
jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
|
|
96824
97364
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
96825
97365
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
@@ -97074,12 +97614,14 @@ export declare type Query = {
|
|
|
97074
97614
|
stakeholderComms_getStakeholderGroupsWithStakeholders?: Maybe<StakeholderCommsStakeholderGroupAndStakeholdersConnection>;
|
|
97075
97615
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
97076
97616
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
97617
|
+
stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
|
|
97077
97618
|
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
97078
97619
|
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
97079
97620
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
97080
97621
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
97081
97622
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
97082
97623
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
97624
|
+
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
97083
97625
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
97084
97626
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
97085
97627
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -97584,6 +98126,16 @@ export declare type QueryAssetsDm_DataSourceMergeArgs = {
|
|
|
97584
98126
|
jobId: Scalars['ID']['input'];
|
|
97585
98127
|
workspaceId: Scalars['ID']['input'];
|
|
97586
98128
|
};
|
|
98129
|
+
export declare type QueryAssetsDm_DataSourceMergeGetByObjectIdArgs = {
|
|
98130
|
+
cloudId: Scalars['ID']['input'];
|
|
98131
|
+
objectId: Scalars['ID']['input'];
|
|
98132
|
+
workspaceId: Scalars['ID']['input'];
|
|
98133
|
+
};
|
|
98134
|
+
export declare type QueryAssetsDm_DataSourceMergeGetObjectsForImportArgs = {
|
|
98135
|
+
cloudId: Scalars['ID']['input'];
|
|
98136
|
+
dataSourceId: Scalars['ID']['input'];
|
|
98137
|
+
workspaceId: Scalars['ID']['input'];
|
|
98138
|
+
};
|
|
97587
98139
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
97588
98140
|
cloudID: Scalars['ID']['input'];
|
|
97589
98141
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -97882,6 +98434,12 @@ export declare type QueryConfluence_AtlassianUserArgs = {
|
|
|
97882
98434
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97883
98435
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
97884
98436
|
};
|
|
98437
|
+
export declare type QueryConfluence_CalendarEventsByDateRangeArgs = {
|
|
98438
|
+
calendarId: Scalars['ID']['input'];
|
|
98439
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
98440
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
98441
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
98442
|
+
};
|
|
97885
98443
|
export declare type QueryConfluence_CalendarJiraDateFieldsByJqlArgs = {
|
|
97886
98444
|
applicationId: Scalars['ID']['input'];
|
|
97887
98445
|
cloudId: Scalars['ID']['input'];
|
|
@@ -98239,10 +98797,6 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
98239
98797
|
cloudId: Scalars['ID']['input'];
|
|
98240
98798
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
98241
98799
|
};
|
|
98242
|
-
export declare type QueryConfluence_TeamPresenceArgs = {
|
|
98243
|
-
cloudId: Scalars['ID']['input'];
|
|
98244
|
-
spaceId: Scalars['Long']['input'];
|
|
98245
|
-
};
|
|
98246
98800
|
export declare type QueryConfluence_TeamPresenceContentSettingArgs = {
|
|
98247
98801
|
cloudId: Scalars['ID']['input'];
|
|
98248
98802
|
spaceKey: Scalars['String']['input'];
|
|
@@ -99285,6 +99839,17 @@ export declare type QueryIsSainSearchEnabledArgs = {
|
|
|
99285
99839
|
export declare type QueryJiraAlignAgg_ProjectsByArisArgs = {
|
|
99286
99840
|
ids: Array<Scalars['ID']['input']>;
|
|
99287
99841
|
};
|
|
99842
|
+
export declare type QueryJiraAlignAgg_SearchProjectsArgs = {
|
|
99843
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99844
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99845
|
+
instanceId: Scalars['ID']['input'];
|
|
99846
|
+
projectType: JiraAlignAggProjectType;
|
|
99847
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
99848
|
+
};
|
|
99849
|
+
export declare type QueryJiraAlignAgg_SitesByOrgIdArgs = {
|
|
99850
|
+
env: Scalars['String']['input'];
|
|
99851
|
+
orgId: Scalars['String']['input'];
|
|
99852
|
+
};
|
|
99288
99853
|
export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
99289
99854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99290
99855
|
filter?: InputMaybe<DevOpsServiceAndJiraProjectRelationshipFilter>;
|
|
@@ -99300,9 +99865,6 @@ export declare type QueryJira_BacklogViewArgs = {
|
|
|
99300
99865
|
export declare type QueryJira_BoardViewArgs = {
|
|
99301
99866
|
input: JiraBoardViewInput;
|
|
99302
99867
|
};
|
|
99303
|
-
export declare type QueryJira_BoardViewCellsByIdsArgs = {
|
|
99304
|
-
ids: Array<Scalars['ID']['input']>;
|
|
99305
|
-
};
|
|
99306
99868
|
export declare type QueryJira_BoardsByIdsArgs = {
|
|
99307
99869
|
ids: Array<Scalars['ID']['input']>;
|
|
99308
99870
|
};
|
|
@@ -100230,6 +100792,9 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
|
100230
100792
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
100231
100793
|
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
100232
100794
|
};
|
|
100795
|
+
export declare type QueryStakeholderComms_GetStakeholdersbyAriArgs = {
|
|
100796
|
+
stakeholderAris: Array<Scalars['String']['input']>;
|
|
100797
|
+
};
|
|
100233
100798
|
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByCustomDomainArgs = {
|
|
100234
100799
|
customDomain: Scalars['String']['input'];
|
|
100235
100800
|
};
|
|
@@ -100254,6 +100819,9 @@ export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
|
100254
100819
|
order?: InputMaybe<StakeholderCommsStakeholderConnectionOrder>;
|
|
100255
100820
|
search?: InputMaybe<StakeholderCommsStakeholderConnectionSearch>;
|
|
100256
100821
|
};
|
|
100822
|
+
export declare type QueryStakeholderComms_UnifiedSearchArgs = {
|
|
100823
|
+
input: StakeholderCommsUnifiedSearchInput;
|
|
100824
|
+
};
|
|
100257
100825
|
export declare type QueryStalePagesArgs = {
|
|
100258
100826
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
100259
100827
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -100790,6 +101358,10 @@ export declare type RadarMoneyFieldValue = {
|
|
|
100790
101358
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
100791
101359
|
value?: Maybe<RadarMoney>;
|
|
100792
101360
|
};
|
|
101361
|
+
export declare type RadarMoneyInput = {
|
|
101362
|
+
amount: Scalars['String']['input'];
|
|
101363
|
+
currency: Scalars['String']['input'];
|
|
101364
|
+
};
|
|
100793
101365
|
export declare type RadarMutationResponse = {
|
|
100794
101366
|
__typename?: 'RadarMutationResponse';
|
|
100795
101367
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -100970,6 +101542,10 @@ export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
|
|
|
100970
101542
|
changes?: Maybe<Array<Maybe<RadarPositionAllocationChange>>>;
|
|
100971
101543
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
100972
101544
|
};
|
|
101545
|
+
export declare type RadarUpdatePositionLaborCostEstimateSettingsInput = {
|
|
101546
|
+
defaultAmount?: InputMaybe<RadarMoneyInput>;
|
|
101547
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101548
|
+
};
|
|
100973
101549
|
export declare type RadarUrlFieldValue = {
|
|
100974
101550
|
__typename?: 'RadarUrlFieldValue';
|
|
100975
101551
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -103185,6 +103761,22 @@ export declare type SearchResult = {
|
|
|
103185
103761
|
type: SearchResultType;
|
|
103186
103762
|
url: Scalars['URL']['output'];
|
|
103187
103763
|
};
|
|
103764
|
+
export declare type SearchResultAssetsObject = SearchResult & {
|
|
103765
|
+
__typename?: 'SearchResultAssetsObject';
|
|
103766
|
+
description: Scalars['String']['output'];
|
|
103767
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
103768
|
+
id: Scalars['ID']['output'];
|
|
103769
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103770
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103771
|
+
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
103772
|
+
objectTypeEntity?: Maybe<AssetsObjectType>;
|
|
103773
|
+
schemaAri: Scalars['ID']['output'];
|
|
103774
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103775
|
+
title: Scalars['String']['output'];
|
|
103776
|
+
type: SearchResultType;
|
|
103777
|
+
typeAri: Scalars['ID']['output'];
|
|
103778
|
+
url: Scalars['URL']['output'];
|
|
103779
|
+
};
|
|
103188
103780
|
export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
103189
103781
|
__typename?: 'SearchResultAssetsObjectSchema';
|
|
103190
103782
|
description: Scalars['String']['output'];
|
|
@@ -103192,7 +103784,6 @@ export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
|
103192
103784
|
id: Scalars['ID']['output'];
|
|
103193
103785
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103194
103786
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103195
|
-
schemaAri: Scalars['ID']['output'];
|
|
103196
103787
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103197
103788
|
title: Scalars['String']['output'];
|
|
103198
103789
|
type: SearchResultType;
|
|
@@ -103205,10 +103796,11 @@ export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
|
103205
103796
|
id: Scalars['ID']['output'];
|
|
103206
103797
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103207
103798
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103799
|
+
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
103800
|
+
schemaAri: Scalars['ID']['output'];
|
|
103208
103801
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103209
103802
|
title: Scalars['String']['output'];
|
|
103210
103803
|
type: SearchResultType;
|
|
103211
|
-
typeAri: Scalars['ID']['output'];
|
|
103212
103804
|
url: Scalars['URL']['output'];
|
|
103213
103805
|
};
|
|
103214
103806
|
export declare type SearchResultAtlasGoal = SearchResult & {
|
|
@@ -123780,6 +124372,7 @@ export declare type SpfAsk = Node & {
|
|
|
123780
124372
|
updatedBy?: Maybe<User>;
|
|
123781
124373
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
123782
124374
|
updates?: Maybe<SpfAskUpdateConnection>;
|
|
124375
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
123783
124376
|
};
|
|
123784
124377
|
export declare type SpfAskActivitiesArgs = {
|
|
123785
124378
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123929,6 +124522,7 @@ export declare type SpfAskComment = Node & {
|
|
|
123929
124522
|
parentComment?: Maybe<SpfAskComment>;
|
|
123930
124523
|
replies?: Maybe<SpfAskCommentConnection>;
|
|
123931
124524
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
124525
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
123932
124526
|
};
|
|
123933
124527
|
export declare type SpfAskCommentRepliesArgs = {
|
|
123934
124528
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -124800,6 +125394,19 @@ export declare type StakeholderCommsResendInviteResponse = {
|
|
|
124800
125394
|
export declare enum StakeholderCommsSearchField {
|
|
124801
125395
|
EmailId = "EMAIL_ID"
|
|
124802
125396
|
}
|
|
125397
|
+
export declare enum StakeholderCommsSearchFilterType {
|
|
125398
|
+
Groups = "GROUPS",
|
|
125399
|
+
Teams = "TEAMS",
|
|
125400
|
+
Users = "USERS"
|
|
125401
|
+
}
|
|
125402
|
+
export declare type StakeholderCommsSearchResult = {
|
|
125403
|
+
__typename?: 'StakeholderCommsSearchResult';
|
|
125404
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
125405
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
125406
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
125407
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
125408
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
125409
|
+
};
|
|
124803
125410
|
export declare type StakeholderCommsSeoConfigInput = {
|
|
124804
125411
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
124805
125412
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -124813,6 +125420,13 @@ export declare type StakeholderCommsSeoConfigType = {
|
|
|
124813
125420
|
keywords?: Maybe<Scalars['String']['output']>;
|
|
124814
125421
|
title?: Maybe<Scalars['String']['output']>;
|
|
124815
125422
|
};
|
|
125423
|
+
export declare type StakeholderCommsSimplifiedStakeholder = {
|
|
125424
|
+
__typename?: 'StakeholderCommsSimplifiedStakeholder';
|
|
125425
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
125426
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
125427
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
125428
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
125429
|
+
};
|
|
124816
125430
|
export declare type StakeholderCommsStakeholder = {
|
|
124817
125431
|
__typename?: 'StakeholderCommsStakeholder';
|
|
124818
125432
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -124984,6 +125598,17 @@ export declare enum StakeholderCommsStakeholderType {
|
|
|
124984
125598
|
Internal = "INTERNAL",
|
|
124985
125599
|
Team = "TEAM"
|
|
124986
125600
|
}
|
|
125601
|
+
export declare type StakeholderCommsUnifiedSearchInput = {
|
|
125602
|
+
filters?: InputMaybe<Array<InputMaybe<StakeholderCommsSearchFilterType>>>;
|
|
125603
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
125604
|
+
organizationId: Scalars['String']['input'];
|
|
125605
|
+
searchString: Scalars['String']['input'];
|
|
125606
|
+
};
|
|
125607
|
+
export declare type StakeholderCommsUnifiedSearchResults = {
|
|
125608
|
+
__typename?: 'StakeholderCommsUnifiedSearchResults';
|
|
125609
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
125610
|
+
results?: Maybe<Array<Maybe<StakeholderCommsSearchResult>>>;
|
|
125611
|
+
};
|
|
124987
125612
|
export declare type StakeholderCommsUpdatePageInputType = {
|
|
124988
125613
|
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
124989
125614
|
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -126971,6 +127596,10 @@ export declare type TownsquareGoalUpdatesArgs = {
|
|
|
126971
127596
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126972
127597
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126973
127598
|
};
|
|
127599
|
+
export declare type TownsquareGoalWatchersArgs = {
|
|
127600
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127602
|
+
};
|
|
126974
127603
|
export declare type TownsquareGoalConnection = {
|
|
126975
127604
|
__typename?: 'TownsquareGoalConnection';
|
|
126976
127605
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
@@ -127787,6 +128416,7 @@ export declare type TownsquareProjectsAddGoalLinkPayload = {
|
|
|
127787
128416
|
};
|
|
127788
128417
|
export declare type TownsquareProjectsAddJiraWorkItemLinkInput = {
|
|
127789
128418
|
projectId: Scalars['ID']['input'];
|
|
128419
|
+
replace?: InputMaybe<Scalars['Boolean']['input']>;
|
|
127790
128420
|
workItemId: Scalars['ID']['input'];
|
|
127791
128421
|
};
|
|
127792
128422
|
export declare type TownsquareProjectsAddJiraWorkItemLinkPayload = {
|
|
@@ -128044,6 +128674,13 @@ export declare type TownsquareProjectsShareProjectPayload = {
|
|
|
128044
128674
|
success: Scalars['Boolean']['output'];
|
|
128045
128675
|
usersAdded?: Maybe<Array<User>>;
|
|
128046
128676
|
};
|
|
128677
|
+
export declare type TownsquareProjectsWorkItemAlreadyLinkedMutationErrorExtension = MutationErrorExtension & {
|
|
128678
|
+
__typename?: 'TownsquareProjectsWorkItemAlreadyLinkedMutationErrorExtension';
|
|
128679
|
+
canReplace?: Maybe<Scalars['Boolean']['output']>;
|
|
128680
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
128681
|
+
project?: Maybe<TownsquareProject>;
|
|
128682
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
128683
|
+
};
|
|
128047
128684
|
export declare type TownsquareQueryApi = {
|
|
128048
128685
|
__typename?: 'TownsquareQueryApi';
|
|
128049
128686
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -128834,6 +129471,21 @@ export declare type TrelloAttachmentUpdated = {
|
|
|
128834
129471
|
__typename?: 'TrelloAttachmentUpdated';
|
|
128835
129472
|
id: Scalars['ID']['output'];
|
|
128836
129473
|
};
|
|
129474
|
+
export declare type TrelloBaseBoard = {
|
|
129475
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
129476
|
+
enterpriseOwned: Scalars['Boolean']['output'];
|
|
129477
|
+
id: Scalars['ID']['output'];
|
|
129478
|
+
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
129479
|
+
limits?: Maybe<TrelloBoardLimits>;
|
|
129480
|
+
lists?: Maybe<TrelloListConnection>;
|
|
129481
|
+
objectId: Scalars['ID']['output'];
|
|
129482
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
129483
|
+
};
|
|
129484
|
+
export declare type TrelloBaseBoardListsArgs = {
|
|
129485
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129486
|
+
filter?: InputMaybe<TrelloListFilterInput>;
|
|
129487
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129488
|
+
};
|
|
128837
129489
|
export declare type TrelloBaseBoardPrefs = {
|
|
128838
129490
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
128839
129491
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -128888,7 +129540,7 @@ export declare type TrelloBaseCardChecklistsArgs = {
|
|
|
128888
129540
|
checklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
128889
129541
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128890
129542
|
};
|
|
128891
|
-
export declare type TrelloBoard = Node & {
|
|
129543
|
+
export declare type TrelloBoard = Node & TrelloBaseBoard & {
|
|
128892
129544
|
__typename?: 'TrelloBoard';
|
|
128893
129545
|
closed: Scalars['Boolean']['output'];
|
|
128894
129546
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
@@ -129067,7 +129719,6 @@ export declare type TrelloBoardMirrorCardsMirrorCardsArgs = {
|
|
|
129067
129719
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129068
129720
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129069
129721
|
};
|
|
129070
|
-
export declare type TrelloBoardOrInbox = TrelloBoard | TrelloInbox;
|
|
129071
129722
|
export declare type TrelloBoardPowerUpConnection = {
|
|
129072
129723
|
__typename?: 'TrelloBoardPowerUpConnection';
|
|
129073
129724
|
edges?: Maybe<Array<TrelloBoardPowerUpEdge>>;
|
|
@@ -130154,6 +130805,15 @@ export declare type TrelloEnterprisePrefs = {
|
|
|
130154
130805
|
__typename?: 'TrelloEnterprisePrefs';
|
|
130155
130806
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
130156
130807
|
};
|
|
130808
|
+
export declare type TrelloGenerateChecklistsForCardInput = {
|
|
130809
|
+
cardId: Scalars['ID']['input'];
|
|
130810
|
+
};
|
|
130811
|
+
export declare type TrelloGenerateChecklistsForCardPayload = Payload & {
|
|
130812
|
+
__typename?: 'TrelloGenerateChecklistsForCardPayload';
|
|
130813
|
+
card?: Maybe<TrelloCard>;
|
|
130814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130815
|
+
success: Scalars['Boolean']['output'];
|
|
130816
|
+
};
|
|
130157
130817
|
export declare type TrelloImagePreview = {
|
|
130158
130818
|
__typename?: 'TrelloImagePreview';
|
|
130159
130819
|
bytes?: Maybe<Scalars['Float']['output']>;
|
|
@@ -130183,7 +130843,7 @@ export declare type TrelloImagePreviewUpdatedConnection = {
|
|
|
130183
130843
|
edges?: Maybe<Array<TrelloImagePreviewEdgeUpdated>>;
|
|
130184
130844
|
nodes?: Maybe<Array<TrelloImagePreview>>;
|
|
130185
130845
|
};
|
|
130186
|
-
export declare type TrelloInbox = {
|
|
130846
|
+
export declare type TrelloInbox = TrelloBaseBoard & {
|
|
130187
130847
|
__typename?: 'TrelloInbox';
|
|
130188
130848
|
board: TrelloBoard;
|
|
130189
130849
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
@@ -130635,6 +131295,7 @@ export declare type TrelloMutationApi = {
|
|
|
130635
131295
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
130636
131296
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
130637
131297
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
131298
|
+
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
130638
131299
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
130639
131300
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
130640
131301
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
@@ -130642,6 +131303,7 @@ export declare type TrelloMutationApi = {
|
|
|
130642
131303
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
130643
131304
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
130644
131305
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
131306
|
+
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
130645
131307
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
130646
131308
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
130647
131309
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -130707,6 +131369,9 @@ export declare type TrelloMutationApiDeleteWorkspaceTagArgs = {
|
|
|
130707
131369
|
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
130708
131370
|
input: TrelloEditPlannerCalendarEventInput;
|
|
130709
131371
|
};
|
|
131372
|
+
export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
|
|
131373
|
+
input: TrelloGenerateChecklistsForCardInput;
|
|
131374
|
+
};
|
|
130710
131375
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
130711
131376
|
input: TrelloMergeCardsInput;
|
|
130712
131377
|
};
|
|
@@ -130728,6 +131393,9 @@ export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
|
130728
131393
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
130729
131394
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
130730
131395
|
};
|
|
131396
|
+
export declare type TrelloMutationApiSmartScheduleCardsArgs = {
|
|
131397
|
+
input: TrelloSmartScheduleCardsInput;
|
|
131398
|
+
};
|
|
130731
131399
|
export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
130732
131400
|
input: TrelloCardBatchSpecificationInput;
|
|
130733
131401
|
};
|
|
@@ -131262,7 +131930,7 @@ export declare type TrelloQueryApi = {
|
|
|
131262
131930
|
board?: Maybe<TrelloBoard>;
|
|
131263
131931
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
131264
131932
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
131265
|
-
boardOrInbox?: Maybe<
|
|
131933
|
+
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
131266
131934
|
card?: Maybe<TrelloCard>;
|
|
131267
131935
|
cardBatch?: Maybe<TrelloCardBatch>;
|
|
131268
131936
|
cardByShortLink?: Maybe<TrelloCard>;
|
|
@@ -131286,7 +131954,6 @@ export declare type TrelloQueryApi = {
|
|
|
131286
131954
|
providerCalendarById?: Maybe<TrelloPlannerProviderCalendar>;
|
|
131287
131955
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
131288
131956
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
131289
|
-
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
131290
131957
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
131291
131958
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
131292
131959
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
@@ -131395,9 +132062,6 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
131395
132062
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
131396
132063
|
ids: Array<Scalars['ID']['input']>;
|
|
131397
132064
|
};
|
|
131398
|
-
export declare type TrelloQueryApiSmartScheduleCardsArgs = {
|
|
131399
|
-
input: TrelloSmartScheduleCardsInput;
|
|
131400
|
-
};
|
|
131401
132065
|
export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
131402
132066
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131403
132067
|
filter?: InputMaybe<TrelloTemplateGalleryFilterInput>;
|
|
@@ -132605,6 +133269,9 @@ export declare type UnifiedCommunityPayload = UnifiedPayload & {
|
|
|
132605
133269
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
132606
133270
|
forumsProfile?: Maybe<UnifiedForumsAccount>;
|
|
132607
133271
|
gamificationProfile?: Maybe<UnifiedGamificationProfile>;
|
|
133272
|
+
isNewForumsProfile?: Maybe<Scalars['Boolean']['output']>;
|
|
133273
|
+
isNewGamificationProfile?: Maybe<Scalars['Boolean']['output']>;
|
|
133274
|
+
isNewProfile?: Maybe<Scalars['Boolean']['output']>;
|
|
132608
133275
|
success: Scalars['Boolean']['output'];
|
|
132609
133276
|
unifiedProfile?: Maybe<UnifiedProfile>;
|
|
132610
133277
|
};
|
|
@@ -134061,6 +134728,7 @@ export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
|
134061
134728
|
success: Scalars['Boolean']['output'];
|
|
134062
134729
|
};
|
|
134063
134730
|
export declare type UpdatePolarisViewInput = {
|
|
134731
|
+
connectionsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
134064
134732
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
134065
134733
|
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
134066
134734
|
enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -134070,6 +134738,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
134070
134738
|
filterGroups?: InputMaybe<Array<PolarisViewFilterGroupInput>>;
|
|
134071
134739
|
groupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
134072
134740
|
groupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
134741
|
+
groupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
134073
134742
|
hidden?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
134074
134743
|
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
134075
134744
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -134078,6 +134747,8 @@ export declare type UpdatePolarisViewInput = {
|
|
|
134078
134747
|
layoutType?: InputMaybe<PolarisViewLayoutType>;
|
|
134079
134748
|
matrixConfig?: InputMaybe<UpdatePolarisMatrixConfig>;
|
|
134080
134749
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
134750
|
+
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
134751
|
+
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
134081
134752
|
sort?: InputMaybe<Array<PolarisSortFieldInput>>;
|
|
134082
134753
|
sortMode?: InputMaybe<PolarisViewSortMode>;
|
|
134083
134754
|
tableColumnSizes?: InputMaybe<Array<PolarisViewTableColumnSizeInput>>;
|
|
@@ -134085,6 +134756,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
134085
134756
|
userJql?: InputMaybe<Scalars['String']['input']>;
|
|
134086
134757
|
verticalGroupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
134087
134758
|
verticalGroupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
134759
|
+
verticalGroupsFilter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
134088
134760
|
view?: InputMaybe<Scalars['ID']['input']>;
|
|
134089
134761
|
whiteboardConfig?: InputMaybe<UpdatePolarisWhiteboardConfig>;
|
|
134090
134762
|
};
|