@forge/cli-shared 6.11.0-next.2 → 6.11.0-next.3-experimental-4ac8146
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 +22 -0
- package/out/graphql/graphql-types.d.ts +828 -1058
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +67 -141
- package/package.json +2 -2
|
@@ -809,6 +809,11 @@ export declare type AgentStudioAgentEdge = {
|
|
|
809
809
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
810
810
|
node?: Maybe<AgentStudioAssistant>;
|
|
811
811
|
};
|
|
812
|
+
export declare type AgentStudioAgentQueryInput = {
|
|
813
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
814
|
+
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
815
|
+
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
816
|
+
};
|
|
812
817
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
813
818
|
export declare enum AgentStudioAgentType {
|
|
814
819
|
Assistant = "ASSISTANT",
|
|
@@ -831,6 +836,17 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
831
836
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
832
837
|
name?: Maybe<Scalars['String']['output']>;
|
|
833
838
|
};
|
|
839
|
+
export declare type AgentStudioAssistantCustomAction = AgentStudioCustomAction & Node & {
|
|
840
|
+
__typename?: 'AgentStudioAssistantCustomAction';
|
|
841
|
+
action?: Maybe<AgentStudioAction>;
|
|
842
|
+
creator?: Maybe<User>;
|
|
843
|
+
creatorId: Scalars['ID']['output'];
|
|
844
|
+
id: Scalars['ID']['output'];
|
|
845
|
+
instructions: Scalars['String']['output'];
|
|
846
|
+
invocationDescription: Scalars['String']['output'];
|
|
847
|
+
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
848
|
+
name: Scalars['String']['output'];
|
|
849
|
+
};
|
|
834
850
|
export declare type AgentStudioChannel = {
|
|
835
851
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
836
852
|
};
|
|
@@ -872,6 +888,30 @@ export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
|
872
888
|
errors?: Maybe<Array<MutationError>>;
|
|
873
889
|
success: Scalars['Boolean']['output'];
|
|
874
890
|
};
|
|
891
|
+
export declare type AgentStudioCreateCustomActionInput = {
|
|
892
|
+
action?: InputMaybe<AgentStudioActionInput>;
|
|
893
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
894
|
+
instructions: Scalars['String']['input'];
|
|
895
|
+
invocationDescription: Scalars['String']['input'];
|
|
896
|
+
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
897
|
+
name: Scalars['String']['input'];
|
|
898
|
+
};
|
|
899
|
+
export declare type AgentStudioCreateCustomActionPayload = Payload & {
|
|
900
|
+
__typename?: 'AgentStudioCreateCustomActionPayload';
|
|
901
|
+
customAction?: Maybe<AgentStudioCustomAction>;
|
|
902
|
+
errors?: Maybe<Array<MutationError>>;
|
|
903
|
+
success: Scalars['Boolean']['output'];
|
|
904
|
+
};
|
|
905
|
+
export declare type AgentStudioCustomAction = {
|
|
906
|
+
action?: Maybe<AgentStudioAction>;
|
|
907
|
+
creatorId: Scalars['ID']['output'];
|
|
908
|
+
id: Scalars['ID']['output'];
|
|
909
|
+
instructions: Scalars['String']['output'];
|
|
910
|
+
invocationDescription: Scalars['String']['output'];
|
|
911
|
+
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
912
|
+
name: Scalars['String']['output'];
|
|
913
|
+
};
|
|
914
|
+
export declare type AgentStudioCustomActionResult = AgentStudioAssistantCustomAction | QueryError;
|
|
875
915
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
876
916
|
__typename?: 'AgentStudioEmailChannel';
|
|
877
917
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -978,6 +1018,12 @@ export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
|
|
|
978
1018
|
errors?: Maybe<Array<MutationError>>;
|
|
979
1019
|
success: Scalars['Boolean']['output'];
|
|
980
1020
|
};
|
|
1021
|
+
export declare type AgentStudioUpdateAgentAsFavouritePayload = Payload & {
|
|
1022
|
+
__typename?: 'AgentStudioUpdateAgentAsFavouritePayload';
|
|
1023
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
1024
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1025
|
+
success: Scalars['Boolean']['output'];
|
|
1026
|
+
};
|
|
981
1027
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
982
1028
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
983
1029
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3083,6 +3129,25 @@ export declare type Breadcrumb = {
|
|
|
3083
3129
|
separator?: Maybe<Scalars['String']['output']>;
|
|
3084
3130
|
url?: Maybe<Scalars['String']['output']>;
|
|
3085
3131
|
};
|
|
3132
|
+
export declare type Build = {
|
|
3133
|
+
__typename?: 'Build';
|
|
3134
|
+
appId: Scalars['ID']['output'];
|
|
3135
|
+
createdAt: Scalars['String']['output'];
|
|
3136
|
+
createdByUser?: Maybe<User>;
|
|
3137
|
+
tag: Scalars['String']['output'];
|
|
3138
|
+
};
|
|
3139
|
+
export declare type BuildConnection = {
|
|
3140
|
+
__typename?: 'BuildConnection';
|
|
3141
|
+
edges?: Maybe<Array<Maybe<BuildEdge>>>;
|
|
3142
|
+
nodes?: Maybe<Array<Maybe<Build>>>;
|
|
3143
|
+
pageInfo?: Maybe<PageInfo>;
|
|
3144
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3145
|
+
};
|
|
3146
|
+
export declare type BuildEdge = {
|
|
3147
|
+
__typename?: 'BuildEdge';
|
|
3148
|
+
cursor: Scalars['String']['output'];
|
|
3149
|
+
node?: Maybe<Build>;
|
|
3150
|
+
};
|
|
3086
3151
|
export declare enum BuiltinPolarisIdeaField {
|
|
3087
3152
|
Archived = "ARCHIVED",
|
|
3088
3153
|
ArchivedBy = "ARCHIVED_BY",
|
|
@@ -4068,7 +4133,7 @@ export declare type CcpQuote = Node & {
|
|
|
4068
4133
|
__typename?: 'CcpQuote';
|
|
4069
4134
|
autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
|
|
4070
4135
|
cancelledReason?: Maybe<CcpQuoteCancelledReason>;
|
|
4071
|
-
clonedFrom?: Maybe<
|
|
4136
|
+
clonedFrom?: Maybe<CcpQuote>;
|
|
4072
4137
|
contractType?: Maybe<CcpQuoteContractType>;
|
|
4073
4138
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4074
4139
|
createdBy?: Maybe<CcpQuoteAuthorContext>;
|
|
@@ -4076,9 +4141,9 @@ export declare type CcpQuote = Node & {
|
|
|
4076
4141
|
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
4077
4142
|
externalNotes?: Maybe<Array<Maybe<CcpQuoteExternalNote>>>;
|
|
4078
4143
|
finalizedAt?: Maybe<Scalars['Float']['output']>;
|
|
4079
|
-
fromQuote?: Maybe<
|
|
4144
|
+
fromQuote?: Maybe<CcpQuote>;
|
|
4080
4145
|
id: Scalars['ID']['output'];
|
|
4081
|
-
|
|
4146
|
+
invoiceGroupKey?: Maybe<Scalars['ID']['output']>;
|
|
4082
4147
|
lineItems?: Maybe<Array<Maybe<CcpQuoteLineItem>>>;
|
|
4083
4148
|
locale?: Maybe<Scalars['String']['output']>;
|
|
4084
4149
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4087,7 +4152,7 @@ export declare type CcpQuote = Node & {
|
|
|
4087
4152
|
revision?: Maybe<Scalars['Int']['output']>;
|
|
4088
4153
|
staleReason?: Maybe<CcpQuoteStaleReason>;
|
|
4089
4154
|
status?: Maybe<CcpQuoteStatus>;
|
|
4090
|
-
|
|
4155
|
+
transactionAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4091
4156
|
upcomingBills?: Maybe<CcpQuoteUpcomingBills>;
|
|
4092
4157
|
upcomingBillsComputedAt?: Maybe<Scalars['Float']['output']>;
|
|
4093
4158
|
upcomingBillsRequestedAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -4100,7 +4165,7 @@ export declare type CcpQuoteAdjustment = {
|
|
|
4100
4165
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
4101
4166
|
percent?: Maybe<Scalars['Float']['output']>;
|
|
4102
4167
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
4103
|
-
|
|
4168
|
+
promotionKey?: Maybe<Scalars['ID']['output']>;
|
|
4104
4169
|
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
4105
4170
|
type?: Maybe<Scalars['String']['output']>;
|
|
4106
4171
|
};
|
|
@@ -4108,7 +4173,7 @@ export declare type CcpQuoteAuthorContext = {
|
|
|
4108
4173
|
__typename?: 'CcpQuoteAuthorContext';
|
|
4109
4174
|
isCustomerAdvocate?: Maybe<Scalars['Boolean']['output']>;
|
|
4110
4175
|
isSystemDrivenAction?: Maybe<Scalars['Boolean']['output']>;
|
|
4111
|
-
|
|
4176
|
+
subjectId?: Maybe<Scalars['ID']['output']>;
|
|
4112
4177
|
subjectType?: Maybe<Scalars['String']['output']>;
|
|
4113
4178
|
};
|
|
4114
4179
|
export declare type CcpQuoteAutoRefresh = {
|
|
@@ -4149,8 +4214,8 @@ export declare type CcpQuoteCancelledReason = {
|
|
|
4149
4214
|
code?: Maybe<Scalars['String']['output']>;
|
|
4150
4215
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4151
4216
|
name?: Maybe<Scalars['String']['output']>;
|
|
4152
|
-
|
|
4153
|
-
|
|
4217
|
+
orderItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4218
|
+
orderKey?: Maybe<Scalars['ID']['output']>;
|
|
4154
4219
|
};
|
|
4155
4220
|
export declare type CcpQuoteChargeQuantity = {
|
|
4156
4221
|
__typename?: 'CcpQuoteChargeQuantity';
|
|
@@ -4184,15 +4249,15 @@ export declare type CcpQuoteLineItem = {
|
|
|
4184
4249
|
cancelledReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
|
|
4185
4250
|
chargeQuantities?: Maybe<Array<Maybe<CcpQuoteChargeQuantity>>>;
|
|
4186
4251
|
endsAt?: Maybe<CcpQuoteLineItemEndsAt>;
|
|
4187
|
-
|
|
4252
|
+
entitlementKey?: Maybe<Scalars['ID']['output']>;
|
|
4188
4253
|
entitlementVersion?: Maybe<Scalars['String']['output']>;
|
|
4189
|
-
|
|
4254
|
+
lineItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4190
4255
|
lineItemType?: Maybe<CcpQuoteLineItemType>;
|
|
4191
4256
|
lockContext?: Maybe<CcpQuoteLockContext>;
|
|
4192
|
-
offeringKey?: Maybe<Scalars['
|
|
4193
|
-
|
|
4257
|
+
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
4258
|
+
orderItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4194
4259
|
preBillingConfiguration?: Maybe<CcpQuotePreBillingConfiguration>;
|
|
4195
|
-
|
|
4260
|
+
pricingPlanKey?: Maybe<Scalars['ID']['output']>;
|
|
4196
4261
|
promotions?: Maybe<Array<Maybe<CcpQuotePromotion>>>;
|
|
4197
4262
|
prorationBehaviour?: Maybe<CcpQuoteProrationBehaviour>;
|
|
4198
4263
|
relatesFromEntitlements?: Maybe<Array<Maybe<CcpQuoteRelatesFromEntitlement>>>;
|
|
@@ -4200,7 +4265,7 @@ export declare type CcpQuoteLineItem = {
|
|
|
4200
4265
|
staleReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
|
|
4201
4266
|
startsAt?: Maybe<CcpQuoteStartsAt>;
|
|
4202
4267
|
status?: Maybe<CcpQuoteLineItemStatus>;
|
|
4203
|
-
|
|
4268
|
+
subscriptionKey?: Maybe<Scalars['ID']['output']>;
|
|
4204
4269
|
};
|
|
4205
4270
|
export declare type CcpQuoteLineItemEndsAt = {
|
|
4206
4271
|
__typename?: 'CcpQuoteLineItemEndsAt';
|
|
@@ -4213,8 +4278,8 @@ export declare type CcpQuoteLineItemStaleOrCancelledReason = {
|
|
|
4213
4278
|
code?: Maybe<Scalars['String']['output']>;
|
|
4214
4279
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4215
4280
|
name?: Maybe<Scalars['String']['output']>;
|
|
4216
|
-
|
|
4217
|
-
|
|
4281
|
+
orderItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4282
|
+
orderKey?: Maybe<Scalars['ID']['output']>;
|
|
4218
4283
|
};
|
|
4219
4284
|
export declare enum CcpQuoteLineItemStatus {
|
|
4220
4285
|
Cancelled = "CANCELLED",
|
|
@@ -4234,10 +4299,11 @@ export declare type CcpQuoteLockContext = {
|
|
|
4234
4299
|
export declare type CcpQuoteMargin = {
|
|
4235
4300
|
__typename?: 'CcpQuoteMargin';
|
|
4236
4301
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
4302
|
+
blended?: Maybe<Scalars['Boolean']['output']>;
|
|
4237
4303
|
blendedComputation?: Maybe<CcpQuoteBlendedMarginComputation>;
|
|
4238
4304
|
percent?: Maybe<Scalars['Float']['output']>;
|
|
4239
4305
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
4240
|
-
|
|
4306
|
+
promotionKey?: Maybe<Scalars['ID']['output']>;
|
|
4241
4307
|
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
4242
4308
|
type?: Maybe<Scalars['String']['output']>;
|
|
4243
4309
|
};
|
|
@@ -4254,12 +4320,12 @@ export declare type CcpQuotePreBillingConfiguration = {
|
|
|
4254
4320
|
export declare type CcpQuotePromotion = {
|
|
4255
4321
|
__typename?: 'CcpQuotePromotion';
|
|
4256
4322
|
promotionDefinition?: Maybe<CcpQuotePromotionDefinition>;
|
|
4257
|
-
|
|
4323
|
+
promotionInstanceKey?: Maybe<Scalars['ID']['output']>;
|
|
4258
4324
|
};
|
|
4259
4325
|
export declare type CcpQuotePromotionDefinition = {
|
|
4260
4326
|
__typename?: 'CcpQuotePromotionDefinition';
|
|
4261
4327
|
promotionCode?: Maybe<Scalars['String']['output']>;
|
|
4262
|
-
|
|
4328
|
+
promotionKey?: Maybe<Scalars['ID']['output']>;
|
|
4263
4329
|
};
|
|
4264
4330
|
export declare enum CcpQuoteProrationBehaviour {
|
|
4265
4331
|
CreateProrations = "CREATE_PRORATIONS",
|
|
@@ -4271,8 +4337,8 @@ export declare enum CcpQuoteReferenceType {
|
|
|
4271
4337
|
}
|
|
4272
4338
|
export declare type CcpQuoteRelatesFromEntitlement = {
|
|
4273
4339
|
__typename?: 'CcpQuoteRelatesFromEntitlement';
|
|
4274
|
-
|
|
4275
|
-
|
|
4340
|
+
entitlementKey?: Maybe<Scalars['ID']['output']>;
|
|
4341
|
+
lineItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4276
4342
|
referenceType?: Maybe<CcpQuoteReferenceType>;
|
|
4277
4343
|
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
4278
4344
|
};
|
|
@@ -4282,8 +4348,8 @@ export declare type CcpQuoteStaleReason = {
|
|
|
4282
4348
|
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
4283
4349
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4284
4350
|
name?: Maybe<Scalars['String']['output']>;
|
|
4285
|
-
|
|
4286
|
-
|
|
4351
|
+
orderItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4352
|
+
orderKey?: Maybe<Scalars['ID']['output']>;
|
|
4287
4353
|
};
|
|
4288
4354
|
export declare enum CcpQuoteStartDateType {
|
|
4289
4355
|
QuoteAcceptanceDate = "QUOTE_ACCEPTANCE_DATE",
|
|
@@ -4329,13 +4395,13 @@ export declare type CcpQuoteUpcomingBillsLine = {
|
|
|
4329
4395
|
adjustments?: Maybe<Array<Maybe<CcpQuoteAdjustment>>>;
|
|
4330
4396
|
currency?: Maybe<CcpCurrency>;
|
|
4331
4397
|
description?: Maybe<Scalars['String']['output']>;
|
|
4332
|
-
|
|
4398
|
+
key?: Maybe<Scalars['ID']['output']>;
|
|
4333
4399
|
margins?: Maybe<Array<Maybe<CcpQuoteMargin>>>;
|
|
4334
|
-
|
|
4400
|
+
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
4335
4401
|
period?: Maybe<CcpQuotePeriod>;
|
|
4336
|
-
|
|
4402
|
+
pricingPlanKey?: Maybe<Scalars['ID']['output']>;
|
|
4337
4403
|
quantity?: Maybe<Scalars['Float']['output']>;
|
|
4338
|
-
|
|
4404
|
+
quoteLineKey?: Maybe<Scalars['ID']['output']>;
|
|
4339
4405
|
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
4340
4406
|
tax?: Maybe<Scalars['Float']['output']>;
|
|
4341
4407
|
taxItems?: Maybe<Array<Maybe<CcpQuoteTaxItem>>>;
|
|
@@ -4520,6 +4586,11 @@ export declare enum ChannelPlatformChannelType {
|
|
|
4520
4586
|
Chat = "CHAT",
|
|
4521
4587
|
Voice = "VOICE"
|
|
4522
4588
|
}
|
|
4589
|
+
export declare type ChannelPlatformConnectDetails = {
|
|
4590
|
+
__typename?: 'ChannelPlatformConnectDetails';
|
|
4591
|
+
instanceCcpUrl?: Maybe<Scalars['String']['output']>;
|
|
4592
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
4593
|
+
};
|
|
4523
4594
|
export declare type ChannelPlatformConnectQueue = {
|
|
4524
4595
|
__typename?: 'ChannelPlatformConnectQueue';
|
|
4525
4596
|
arn?: Maybe<Scalars['String']['output']>;
|
|
@@ -4580,6 +4651,15 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
4580
4651
|
maxItems?: Maybe<Scalars['Int']['output']>;
|
|
4581
4652
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
4582
4653
|
};
|
|
4654
|
+
export declare type ChannelPlatformSubmitRequestInput = {
|
|
4655
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4656
|
+
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
4657
|
+
};
|
|
4658
|
+
export declare type ChannelPlatformSubmitRequestResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
4659
|
+
export declare type ChannelPlatformSubmitTicketResponse = {
|
|
4660
|
+
__typename?: 'ChannelPlatformSubmitTicketResponse';
|
|
4661
|
+
contextId?: Maybe<Scalars['String']['output']>;
|
|
4662
|
+
};
|
|
4583
4663
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
4584
4664
|
cloudId: Scalars['ID']['input'];
|
|
4585
4665
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -5312,6 +5392,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
5312
5392
|
removeComponentLabels?: Maybe<RemoveCompassComponentLabelsPayload>;
|
|
5313
5393
|
removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
|
|
5314
5394
|
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
5395
|
+
resyncRepoFiles?: Maybe<CompassResyncRepoFilesPayload>;
|
|
5315
5396
|
revokeJqlMetricSourceUser?: Maybe<CompassRevokeJqlMetricSourceUserPayload>;
|
|
5316
5397
|
setEntityProperty?: Maybe<CompassSetEntityPropertyPayload>;
|
|
5317
5398
|
startChat?: Maybe<CompassAssistantConversation>;
|
|
@@ -5533,6 +5614,9 @@ export declare type CompassCatalogMutationApiRemoveScorecardFromComponentArgs =
|
|
|
5533
5614
|
export declare type CompassCatalogMutationApiRemoveTeamLabelsArgs = {
|
|
5534
5615
|
input: CompassRemoveTeamLabelsInput;
|
|
5535
5616
|
};
|
|
5617
|
+
export declare type CompassCatalogMutationApiResyncRepoFilesArgs = {
|
|
5618
|
+
input?: InputMaybe<CompassResyncRepoFilesInput>;
|
|
5619
|
+
};
|
|
5536
5620
|
export declare type CompassCatalogMutationApiRevokeJqlMetricSourceUserArgs = {
|
|
5537
5621
|
input: CompassRevokeJqlMetricSourceUserInput;
|
|
5538
5622
|
};
|
|
@@ -8399,6 +8483,27 @@ export declare type CompassRepositoryValue = {
|
|
|
8399
8483
|
export declare type CompassRepositoryValueInput = {
|
|
8400
8484
|
exists: Scalars['Boolean']['input'];
|
|
8401
8485
|
};
|
|
8486
|
+
export declare type CompassResyncRepoFileInput = {
|
|
8487
|
+
action: Scalars['String']['input'];
|
|
8488
|
+
currentFilePath: CompassResyncRepoFilePaths;
|
|
8489
|
+
fileSize?: InputMaybe<Scalars['Int']['input']>;
|
|
8490
|
+
oldFilePath?: InputMaybe<CompassResyncRepoFilePaths>;
|
|
8491
|
+
};
|
|
8492
|
+
export declare type CompassResyncRepoFilePaths = {
|
|
8493
|
+
fullFilePath: Scalars['String']['input'];
|
|
8494
|
+
localFilePath: Scalars['String']['input'];
|
|
8495
|
+
};
|
|
8496
|
+
export declare type CompassResyncRepoFilesInput = {
|
|
8497
|
+
baseRepoUrl: Scalars['String']['input'];
|
|
8498
|
+
changedFiles: Array<CompassResyncRepoFileInput>;
|
|
8499
|
+
cloudId: Scalars['ID']['input'];
|
|
8500
|
+
repoId: Scalars['String']['input'];
|
|
8501
|
+
};
|
|
8502
|
+
export declare type CompassResyncRepoFilesPayload = {
|
|
8503
|
+
__typename?: 'CompassResyncRepoFilesPayload';
|
|
8504
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8505
|
+
success: Scalars['Boolean']['output'];
|
|
8506
|
+
};
|
|
8402
8507
|
export declare type CompassRevokeJqlMetricSourceUserInput = {
|
|
8403
8508
|
metricSourceId: Scalars['ID']['input'];
|
|
8404
8509
|
};
|
|
@@ -9821,6 +9926,17 @@ export declare type ConfluenceAdminReportStatus = {
|
|
|
9821
9926
|
reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
|
|
9822
9927
|
};
|
|
9823
9928
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
9929
|
+
export declare type ConfluenceApplicationLink = {
|
|
9930
|
+
__typename?: 'ConfluenceApplicationLink';
|
|
9931
|
+
applicationId: Scalars['String']['output'];
|
|
9932
|
+
displayUrl: Scalars['String']['output'];
|
|
9933
|
+
isCloud: Scalars['Boolean']['output'];
|
|
9934
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
9935
|
+
isSystem: Scalars['Boolean']['output'];
|
|
9936
|
+
name: Scalars['String']['output'];
|
|
9937
|
+
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
9938
|
+
typeId: Scalars['String']['output'];
|
|
9939
|
+
};
|
|
9824
9940
|
export declare type ConfluenceBlogPost = Node & {
|
|
9825
9941
|
__typename?: 'ConfluenceBlogPost';
|
|
9826
9942
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -9879,6 +9995,7 @@ export declare type ConfluenceBlogPostViewerSummary = {
|
|
|
9879
9995
|
favoritedSummary?: Maybe<ConfluenceFavoritedSummary>;
|
|
9880
9996
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
9881
9997
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
9998
|
+
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
9882
9999
|
};
|
|
9883
10000
|
export declare type ConfluenceBodies = {
|
|
9884
10001
|
__typename?: 'ConfluenceBodies';
|
|
@@ -10020,6 +10137,11 @@ export declare type ConfluenceCommentResolutionState = {
|
|
|
10020
10137
|
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
10021
10138
|
status?: Maybe<Scalars['Boolean']['output']>;
|
|
10022
10139
|
};
|
|
10140
|
+
export declare enum ConfluenceCommentResolveAllLocation {
|
|
10141
|
+
Editor = "EDITOR",
|
|
10142
|
+
Live = "LIVE",
|
|
10143
|
+
Renderer = "RENDERER"
|
|
10144
|
+
}
|
|
10023
10145
|
export declare enum ConfluenceCommentState {
|
|
10024
10146
|
Resolved = "RESOLVED",
|
|
10025
10147
|
Unresolved = "UNRESOLVED"
|
|
@@ -10044,6 +10166,11 @@ export declare type ConfluenceContent = {
|
|
|
10044
10166
|
eventType: Scalars['String']['output'];
|
|
10045
10167
|
id: Scalars['ID']['output'];
|
|
10046
10168
|
};
|
|
10169
|
+
export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
10170
|
+
__typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
|
|
10171
|
+
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
10172
|
+
pageInfo: GroupByPageInfo;
|
|
10173
|
+
};
|
|
10047
10174
|
export declare type ConfluenceContentBody = {
|
|
10048
10175
|
__typename?: 'ConfluenceContentBody';
|
|
10049
10176
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -10211,6 +10338,11 @@ export declare type ConfluenceCopySpaceSecurityConfigurationPayload = Payload &
|
|
|
10211
10338
|
errors?: Maybe<Array<MutationError>>;
|
|
10212
10339
|
success: Scalars['Boolean']['output'];
|
|
10213
10340
|
};
|
|
10341
|
+
export declare type ConfluenceCountGroupByContentItem = {
|
|
10342
|
+
__typename?: 'ConfluenceCountGroupByContentItem';
|
|
10343
|
+
content: Scalars['String']['output'];
|
|
10344
|
+
count: Scalars['Int']['output'];
|
|
10345
|
+
};
|
|
10214
10346
|
export declare type ConfluenceCoverPictureWidthUpdated = {
|
|
10215
10347
|
__typename?: 'ConfluenceCoverPictureWidthUpdated';
|
|
10216
10348
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
@@ -10337,6 +10469,10 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
10337
10469
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
10338
10470
|
contentState?: Maybe<ConfluenceContentState>;
|
|
10339
10471
|
};
|
|
10472
|
+
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
10473
|
+
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
10474
|
+
isDataRetentionPolicyEnabled: ConfluencePolicyEnabledStatus;
|
|
10475
|
+
};
|
|
10340
10476
|
export declare type ConfluenceDatabase = Node & {
|
|
10341
10477
|
__typename?: 'ConfluenceDatabase';
|
|
10342
10478
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -10512,6 +10648,33 @@ export declare type ConfluenceEmbedUpdated = {
|
|
|
10512
10648
|
isBlankStateUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
10513
10649
|
product?: Maybe<Scalars['String']['output']>;
|
|
10514
10650
|
};
|
|
10651
|
+
export declare type ConfluenceExpandTypeFromJira = {
|
|
10652
|
+
__typename?: 'ConfluenceExpandTypeFromJira';
|
|
10653
|
+
confluenceExpandTypeFromJira?: Maybe<Scalars['String']['output']>;
|
|
10654
|
+
};
|
|
10655
|
+
export declare type ConfluenceExperimentInitModernizePayload = {
|
|
10656
|
+
__typename?: 'ConfluenceExperimentInitModernizePayload';
|
|
10657
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10658
|
+
success: Scalars['Boolean']['output'];
|
|
10659
|
+
};
|
|
10660
|
+
export declare type ConfluenceExternalLink = {
|
|
10661
|
+
__typename?: 'ConfluenceExternalLink';
|
|
10662
|
+
id?: Maybe<Scalars['Long']['output']>;
|
|
10663
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
10664
|
+
};
|
|
10665
|
+
export declare type ConfluenceExternalLinkConnection = {
|
|
10666
|
+
__typename?: 'ConfluenceExternalLinkConnection';
|
|
10667
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10668
|
+
edges?: Maybe<Array<Maybe<ConfluenceExternalLinkEdge>>>;
|
|
10669
|
+
links?: Maybe<LinksContextBase>;
|
|
10670
|
+
nodes?: Maybe<Array<Maybe<ConfluenceExternalLink>>>;
|
|
10671
|
+
pageInfo?: Maybe<PageInfo>;
|
|
10672
|
+
};
|
|
10673
|
+
export declare type ConfluenceExternalLinkEdge = {
|
|
10674
|
+
__typename?: 'ConfluenceExternalLinkEdge';
|
|
10675
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
10676
|
+
node?: Maybe<ConfluenceExternalLink>;
|
|
10677
|
+
};
|
|
10515
10678
|
export declare type ConfluenceFavoritedSummary = {
|
|
10516
10679
|
__typename?: 'ConfluenceFavoritedSummary';
|
|
10517
10680
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -10549,6 +10712,10 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
10549
10712
|
name?: Maybe<Scalars['String']['output']>;
|
|
10550
10713
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
10551
10714
|
};
|
|
10715
|
+
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
10716
|
+
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
10717
|
+
None = "NONE"
|
|
10718
|
+
}
|
|
10552
10719
|
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
10553
10720
|
__typename?: 'ConfluenceInlineComment';
|
|
10554
10721
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -10660,6 +10827,15 @@ export declare type ConfluenceLabelSearchResults = {
|
|
|
10660
10827
|
otherLabels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
10661
10828
|
suggestedLabels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
10662
10829
|
};
|
|
10830
|
+
export declare type ConfluenceLabelWatchInput = {
|
|
10831
|
+
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
10832
|
+
currentUser?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10833
|
+
labelName: Scalars['String']['input'];
|
|
10834
|
+
};
|
|
10835
|
+
export declare type ConfluenceLabelWatchStatus = {
|
|
10836
|
+
__typename?: 'ConfluenceLabelWatchStatus';
|
|
10837
|
+
isWatching: Scalars['Boolean']['output'];
|
|
10838
|
+
};
|
|
10663
10839
|
export declare type ConfluenceLegacyAiConfigResponse = {
|
|
10664
10840
|
__typename?: 'ConfluenceLegacyAIConfigResponse';
|
|
10665
10841
|
isEnabled: Scalars['Boolean']['output'];
|
|
@@ -16326,6 +16502,23 @@ export declare type ConfluenceMakeSubCalendarPrivateUrlPayload = {
|
|
|
16326
16502
|
privateUrl: Scalars['String']['output'];
|
|
16327
16503
|
success: Scalars['Boolean']['output'];
|
|
16328
16504
|
};
|
|
16505
|
+
export declare type ConfluenceMarkAllCommentsAsReadPayload = Payload & {
|
|
16506
|
+
__typename?: 'ConfluenceMarkAllCommentsAsReadPayload';
|
|
16507
|
+
errors: Array<MutationError>;
|
|
16508
|
+
success: Scalars['Boolean']['output'];
|
|
16509
|
+
};
|
|
16510
|
+
export declare type ConfluenceMarkAllContainerCommentsAsReadInput = {
|
|
16511
|
+
contentId: Scalars['String']['input'];
|
|
16512
|
+
readView?: InputMaybe<ConfluenceViewState>;
|
|
16513
|
+
};
|
|
16514
|
+
export declare type ConfluenceMarkCommentAsDanglingInput = {
|
|
16515
|
+
id: Scalars['ID']['input'];
|
|
16516
|
+
};
|
|
16517
|
+
export declare type ConfluenceMarkCommentAsDanglingPayload = Payload & {
|
|
16518
|
+
__typename?: 'ConfluenceMarkCommentAsDanglingPayload';
|
|
16519
|
+
errors: Array<MutationError>;
|
|
16520
|
+
success: Scalars['Boolean']['output'];
|
|
16521
|
+
};
|
|
16329
16522
|
export declare type ConfluenceMutationApi = {
|
|
16330
16523
|
__typename?: 'ConfluenceMutationApi';
|
|
16331
16524
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
@@ -16580,6 +16773,7 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
16580
16773
|
favoritedSummary?: Maybe<ConfluenceFavoritedSummary>;
|
|
16581
16774
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
16582
16775
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
16776
|
+
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
16583
16777
|
};
|
|
16584
16778
|
export declare type ConfluencePdfExportDownloadLink = {
|
|
16585
16779
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
@@ -16635,6 +16829,11 @@ export declare type ConfluencePersonWithPermissionsConnection = {
|
|
|
16635
16829
|
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
16636
16830
|
pageInfo?: Maybe<PageInfo>;
|
|
16637
16831
|
};
|
|
16832
|
+
export declare enum ConfluencePolicyEnabledStatus {
|
|
16833
|
+
Disabled = "DISABLED",
|
|
16834
|
+
Enabled = "ENABLED",
|
|
16835
|
+
UndeterminedDueToInternalError = "UNDETERMINED_DUE_TO_INTERNAL_ERROR"
|
|
16836
|
+
}
|
|
16638
16837
|
export declare enum ConfluencePrincipalType {
|
|
16639
16838
|
Group = "GROUP",
|
|
16640
16839
|
User = "USER"
|
|
@@ -16860,6 +17059,11 @@ export declare enum ConfluenceSchedulePublishedType {
|
|
|
16860
17059
|
Scheduled = "SCHEDULED",
|
|
16861
17060
|
Unscheduled = "UNSCHEDULED"
|
|
16862
17061
|
}
|
|
17062
|
+
export declare type ConfluenceScheduledPublishSummary = {
|
|
17063
|
+
__typename?: 'ConfluenceScheduledPublishSummary';
|
|
17064
|
+
isScheduled: Scalars['Boolean']['output'];
|
|
17065
|
+
scheduledToPublishAt?: Maybe<Scalars['String']['output']>;
|
|
17066
|
+
};
|
|
16863
17067
|
export declare type ConfluenceSearchConnection = {
|
|
16864
17068
|
__typename?: 'ConfluenceSearchConnection';
|
|
16865
17069
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -17100,6 +17304,14 @@ export declare type ConfluenceTrashPagePayload = Payload & {
|
|
|
17100
17304
|
errors?: Maybe<Array<MutationError>>;
|
|
17101
17305
|
success: Scalars['Boolean']['output'];
|
|
17102
17306
|
};
|
|
17307
|
+
export declare type ConfluenceUnmarkCommentAsDanglingInput = {
|
|
17308
|
+
id: Scalars['ID']['input'];
|
|
17309
|
+
};
|
|
17310
|
+
export declare type ConfluenceUnmarkCommentAsDanglingPayload = Payload & {
|
|
17311
|
+
__typename?: 'ConfluenceUnmarkCommentAsDanglingPayload';
|
|
17312
|
+
errors: Array<MutationError>;
|
|
17313
|
+
success: Scalars['Boolean']['output'];
|
|
17314
|
+
};
|
|
17103
17315
|
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
17104
17316
|
subCalendarId: Scalars['ID']['input'];
|
|
17105
17317
|
};
|
|
@@ -17164,6 +17376,17 @@ export declare type ConfluenceUpdateCustomRolePayload = Payload & {
|
|
|
17164
17376
|
success: Scalars['Boolean']['output'];
|
|
17165
17377
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
17166
17378
|
};
|
|
17379
|
+
export declare type ConfluenceUpdateDefaultTitleEmojiInput = {
|
|
17380
|
+
contentId: Scalars['ID']['input'];
|
|
17381
|
+
defaultTitleEmoji: ConfluenceGraphQlDefaultTitleEmoji;
|
|
17382
|
+
};
|
|
17383
|
+
export declare type ConfluenceUpdateDefaultTitleEmojiPayload = {
|
|
17384
|
+
__typename?: 'ConfluenceUpdateDefaultTitleEmojiPayload';
|
|
17385
|
+
contentId: Scalars['String']['output'];
|
|
17386
|
+
defaultTitleEmoji?: Maybe<ConfluenceGraphQlDefaultTitleEmoji>;
|
|
17387
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17388
|
+
success: Scalars['Boolean']['output'];
|
|
17389
|
+
};
|
|
17167
17390
|
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
17168
17391
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
17169
17392
|
id: Scalars['ID']['input'];
|
|
@@ -17186,6 +17409,14 @@ export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
|
17186
17409
|
page?: Maybe<ConfluencePage>;
|
|
17187
17410
|
success: Scalars['Boolean']['output'];
|
|
17188
17411
|
};
|
|
17412
|
+
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
17413
|
+
enableNav4: Scalars['Boolean']['input'];
|
|
17414
|
+
};
|
|
17415
|
+
export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
17416
|
+
__typename?: 'ConfluenceUpdateNav4OptInPayload';
|
|
17417
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17418
|
+
success: Scalars['Boolean']['output'];
|
|
17419
|
+
};
|
|
17189
17420
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
17190
17421
|
id: Scalars['ID']['input'];
|
|
17191
17422
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17277,549 +17508,16 @@ export declare enum ConfluenceUserType {
|
|
|
17277
17508
|
Anonymous = "ANONYMOUS",
|
|
17278
17509
|
Known = "KNOWN"
|
|
17279
17510
|
}
|
|
17280
|
-
export declare type ConfluenceV2Attachment = Node & {
|
|
17281
|
-
__typename?: 'ConfluenceV2Attachment';
|
|
17282
|
-
blogPostId?: Maybe<Scalars['ID']['output']>;
|
|
17283
|
-
comment?: Maybe<Scalars['String']['output']>;
|
|
17284
|
-
customContentId?: Maybe<Scalars['ID']['output']>;
|
|
17285
|
-
downloadLink?: Maybe<Scalars['String']['output']>;
|
|
17286
|
-
fileId?: Maybe<Scalars['String']['output']>;
|
|
17287
|
-
fileSize?: Maybe<Scalars['Int']['output']>;
|
|
17288
|
-
id: Scalars['ID']['output'];
|
|
17289
|
-
mediaType?: Maybe<Scalars['String']['output']>;
|
|
17290
|
-
mediaTypeDescription?: Maybe<Scalars['String']['output']>;
|
|
17291
|
-
pageId?: Maybe<Scalars['ID']['output']>;
|
|
17292
|
-
status: ConfluenceV2AttachmentStatus;
|
|
17293
|
-
title: Scalars['String']['output'];
|
|
17294
|
-
version?: Maybe<ConfluenceV2Version>;
|
|
17295
|
-
webuiLink?: Maybe<Scalars['String']['output']>;
|
|
17296
|
-
};
|
|
17297
|
-
export declare enum ConfluenceV2AttachmentStatus {
|
|
17298
|
-
Any = "any",
|
|
17299
|
-
Archived = "archived",
|
|
17300
|
-
Current = "current",
|
|
17301
|
-
Deleted = "deleted",
|
|
17302
|
-
Draft = "draft",
|
|
17303
|
-
Historical = "historical",
|
|
17304
|
-
Trashed = "trashed"
|
|
17305
|
-
}
|
|
17306
|
-
export declare type ConfluenceV2BlogPost = Node & {
|
|
17307
|
-
__typename?: 'ConfluenceV2BlogPost';
|
|
17308
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
17309
|
-
body?: Maybe<ConfluenceV2Body>;
|
|
17310
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17311
|
-
id: Scalars['ID']['output'];
|
|
17312
|
-
internalProperties?: Maybe<ConfluenceV2InternalProperties>;
|
|
17313
|
-
operations?: Maybe<ConfluenceV2Operations>;
|
|
17314
|
-
space?: Maybe<ConfluenceV2Space>;
|
|
17315
|
-
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
17316
|
-
spaceLookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
17317
|
-
spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
17318
|
-
spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
17319
|
-
status: ConfluenceV2BlogStatus;
|
|
17320
|
-
title: Scalars['String']['output'];
|
|
17321
|
-
version?: Maybe<ConfluenceV2Version>;
|
|
17322
|
-
};
|
|
17323
|
-
export declare type ConfluenceV2BlogPostConnection = {
|
|
17324
|
-
__typename?: 'ConfluenceV2BlogPostConnection';
|
|
17325
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2BlogPostEdge>>>;
|
|
17326
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2BlogPost>>>;
|
|
17327
|
-
pageInfo: PageInfo;
|
|
17328
|
-
};
|
|
17329
|
-
export declare type ConfluenceV2BlogPostEdge = {
|
|
17330
|
-
__typename?: 'ConfluenceV2BlogPostEdge';
|
|
17331
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17332
|
-
node: ConfluenceV2BlogPost;
|
|
17333
|
-
};
|
|
17334
|
-
export declare enum ConfluenceV2BlogStatus {
|
|
17335
|
-
Current = "current",
|
|
17336
|
-
Deleted = "deleted",
|
|
17337
|
-
Draft = "draft",
|
|
17338
|
-
Historical = "historical",
|
|
17339
|
-
Trashed = "trashed"
|
|
17340
|
-
}
|
|
17341
|
-
export declare type ConfluenceV2Body = {
|
|
17342
|
-
__typename?: 'ConfluenceV2Body';
|
|
17343
|
-
atlasDocFormat?: Maybe<ConfluenceV2FormattedBody>;
|
|
17344
|
-
storage?: Maybe<ConfluenceV2FormattedBody>;
|
|
17345
|
-
};
|
|
17346
|
-
export declare enum ConfluenceV2BodyFormat {
|
|
17347
|
-
AtlasDocFormat = "atlas_doc_format",
|
|
17348
|
-
Storage = "storage"
|
|
17349
|
-
}
|
|
17350
|
-
export declare type ConfluenceV2BordersAndDividersLookAndFeel = {
|
|
17351
|
-
__typename?: 'ConfluenceV2BordersAndDividersLookAndFeel';
|
|
17352
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17353
|
-
};
|
|
17354
|
-
export declare enum ConfluenceV2BulkBlogPostStatus {
|
|
17355
|
-
Current = "current",
|
|
17356
|
-
Deleted = "deleted",
|
|
17357
|
-
Trashed = "trashed"
|
|
17358
|
-
}
|
|
17359
|
-
export declare enum ConfluenceV2BulkPageStatus {
|
|
17360
|
-
Archived = "archived",
|
|
17361
|
-
Current = "current",
|
|
17362
|
-
Deleted = "deleted",
|
|
17363
|
-
Trashed = "trashed"
|
|
17364
|
-
}
|
|
17365
|
-
export declare type ConfluenceV2ButtonLookAndFeel = {
|
|
17366
|
-
__typename?: 'ConfluenceV2ButtonLookAndFeel';
|
|
17367
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17368
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17369
|
-
};
|
|
17370
|
-
export declare type ConfluenceV2CommentInternalProperties = {
|
|
17371
|
-
__typename?: 'ConfluenceV2CommentInternalProperties';
|
|
17372
|
-
commentSource?: Maybe<Scalars['String']['output']>;
|
|
17373
|
-
};
|
|
17374
|
-
export declare type ConfluenceV2CommentLinks = {
|
|
17375
|
-
__typename?: 'ConfluenceV2CommentLinks';
|
|
17376
|
-
editui?: Maybe<Scalars['String']['output']>;
|
|
17377
|
-
tinyui?: Maybe<Scalars['String']['output']>;
|
|
17378
|
-
webui?: Maybe<Scalars['String']['output']>;
|
|
17379
|
-
};
|
|
17380
|
-
export declare type ConfluenceV2ContainerLookAndFeel = {
|
|
17381
|
-
__typename?: 'ConfluenceV2ContainerLookAndFeel';
|
|
17382
|
-
background?: Maybe<Scalars['String']['output']>;
|
|
17383
|
-
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
17384
|
-
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
17385
|
-
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
17386
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17387
|
-
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
17388
|
-
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
17389
|
-
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
17390
|
-
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
17391
|
-
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
17392
|
-
borderRadius?: Maybe<Scalars['String']['output']>;
|
|
17393
|
-
padding?: Maybe<Scalars['String']['output']>;
|
|
17394
|
-
};
|
|
17395
|
-
export declare type ConfluenceV2ContentLookAndFeel = {
|
|
17396
|
-
__typename?: 'ConfluenceV2ContentLookAndFeel';
|
|
17397
|
-
body?: Maybe<ConfluenceV2ContainerLookAndFeel>;
|
|
17398
|
-
container?: Maybe<ConfluenceV2ContainerLookAndFeel>;
|
|
17399
|
-
header?: Maybe<ConfluenceV2ContainerLookAndFeel>;
|
|
17400
|
-
screen?: Maybe<ConfluenceV2ScreenLookAndFeel>;
|
|
17401
|
-
};
|
|
17402
|
-
export declare type ConfluenceV2ContentProperty = {
|
|
17403
|
-
__typename?: 'ConfluenceV2ContentProperty';
|
|
17404
|
-
key: Scalars['String']['output'];
|
|
17405
|
-
value: Scalars['JSON']['output'];
|
|
17406
|
-
version: ConfluenceV2Version;
|
|
17407
|
-
};
|
|
17408
|
-
export declare type ConfluenceV2CreatePageInput = {
|
|
17409
|
-
body?: InputMaybe<ConfluenceV2FormattedBodyInput>;
|
|
17410
|
-
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
17411
|
-
spaceId: Scalars['ID']['input'];
|
|
17412
|
-
status?: InputMaybe<ConfluenceV2PageCreateStatus>;
|
|
17413
|
-
title?: InputMaybe<Scalars['String']['input']>;
|
|
17414
|
-
};
|
|
17415
|
-
export declare type ConfluenceV2CreatePagePayload = {
|
|
17416
|
-
__typename?: 'ConfluenceV2CreatePagePayload';
|
|
17417
|
-
pageV2?: Maybe<ConfluenceV2Page>;
|
|
17418
|
-
};
|
|
17419
|
-
export declare type ConfluenceV2FooterComment = Node & {
|
|
17420
|
-
__typename?: 'ConfluenceV2FooterComment';
|
|
17421
|
-
blogPostId?: Maybe<Scalars['ID']['output']>;
|
|
17422
|
-
body: ConfluenceV2Body;
|
|
17423
|
-
id: Scalars['ID']['output'];
|
|
17424
|
-
internalProperties?: Maybe<ConfluenceV2CommentInternalProperties>;
|
|
17425
|
-
links?: Maybe<ConfluenceV2CommentLinks>;
|
|
17426
|
-
pageId?: Maybe<Scalars['ID']['output']>;
|
|
17427
|
-
parentCommentId?: Maybe<Scalars['ID']['output']>;
|
|
17428
|
-
status: ConfluenceV2FooterCommentStatus;
|
|
17429
|
-
title: Scalars['String']['output'];
|
|
17430
|
-
version: ConfluenceV2Version;
|
|
17431
|
-
};
|
|
17432
|
-
export declare type ConfluenceV2FooterCommentConnection = {
|
|
17433
|
-
__typename?: 'ConfluenceV2FooterCommentConnection';
|
|
17434
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2FooterCommentEdge>>>;
|
|
17435
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2FooterComment>>>;
|
|
17436
|
-
pageInfo: PageInfo;
|
|
17437
|
-
};
|
|
17438
|
-
export declare type ConfluenceV2FooterCommentEdge = {
|
|
17439
|
-
__typename?: 'ConfluenceV2FooterCommentEdge';
|
|
17440
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17441
|
-
node: ConfluenceV2FooterComment;
|
|
17442
|
-
};
|
|
17443
|
-
export declare enum ConfluenceV2FooterCommentStatus {
|
|
17444
|
-
Archived = "archived",
|
|
17445
|
-
Current = "current",
|
|
17446
|
-
Deleted = "deleted",
|
|
17447
|
-
Draft = "draft",
|
|
17448
|
-
Historical = "historical",
|
|
17449
|
-
Trashed = "trashed"
|
|
17450
|
-
}
|
|
17451
|
-
export declare type ConfluenceV2FormattedBody = {
|
|
17452
|
-
__typename?: 'ConfluenceV2FormattedBody';
|
|
17453
|
-
representation: ConfluenceV2BodyFormat;
|
|
17454
|
-
value: Scalars['String']['output'];
|
|
17455
|
-
};
|
|
17456
|
-
export declare type ConfluenceV2FormattedBodyInput = {
|
|
17457
|
-
representation: ConfluenceV2BodyFormat;
|
|
17458
|
-
value: Scalars['String']['input'];
|
|
17459
|
-
};
|
|
17460
|
-
export declare type ConfluenceV2FormattedPage = {
|
|
17461
|
-
__typename?: 'ConfluenceV2FormattedPage';
|
|
17462
|
-
representation: ConfluenceV2SpaceDescriptionEnum;
|
|
17463
|
-
value: Scalars['String']['output'];
|
|
17464
|
-
};
|
|
17465
|
-
export declare type ConfluenceV2HeaderLookAndFeel = {
|
|
17466
|
-
__typename?: 'ConfluenceV2HeaderLookAndFeel';
|
|
17467
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17468
|
-
button?: Maybe<ConfluenceV2ButtonLookAndFeel>;
|
|
17469
|
-
primaryNavigation?: Maybe<ConfluenceV2NavigationLookAndFeel>;
|
|
17470
|
-
search?: Maybe<ConfluenceV2SearchFieldLookAndFeel>;
|
|
17471
|
-
secondaryNavigation?: Maybe<ConfluenceV2NavigationLookAndFeel>;
|
|
17472
|
-
};
|
|
17473
|
-
export declare type ConfluenceV2InlineComment = Node & {
|
|
17474
|
-
__typename?: 'ConfluenceV2InlineComment';
|
|
17475
|
-
body: ConfluenceV2Body;
|
|
17476
|
-
id: Scalars['ID']['output'];
|
|
17477
|
-
internalProperties?: Maybe<ConfluenceV2CommentInternalProperties>;
|
|
17478
|
-
links?: Maybe<ConfluenceV2CommentLinks>;
|
|
17479
|
-
parentCommentId?: Maybe<Scalars['ID']['output']>;
|
|
17480
|
-
properties?: Maybe<ConfluenceV2InlineCommentProperties>;
|
|
17481
|
-
resolutionLastModifiedAt?: Maybe<Scalars['String']['output']>;
|
|
17482
|
-
resolutionLastModifierId?: Maybe<Scalars['String']['output']>;
|
|
17483
|
-
resolutionStatus?: Maybe<ConfluenceV2InlineCommentResolutionStatus>;
|
|
17484
|
-
status: ConfluenceV2InlineCommentStatus;
|
|
17485
|
-
title: Scalars['String']['output'];
|
|
17486
|
-
version: ConfluenceV2Version;
|
|
17487
|
-
};
|
|
17488
|
-
export declare type ConfluenceV2InlineCommentConnection = {
|
|
17489
|
-
__typename?: 'ConfluenceV2InlineCommentConnection';
|
|
17490
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2InlineCommentEdge>>>;
|
|
17491
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2InlineComment>>>;
|
|
17492
|
-
pageInfo: PageInfo;
|
|
17493
|
-
};
|
|
17494
|
-
export declare type ConfluenceV2InlineCommentEdge = {
|
|
17495
|
-
__typename?: 'ConfluenceV2InlineCommentEdge';
|
|
17496
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17497
|
-
node: ConfluenceV2InlineComment;
|
|
17498
|
-
};
|
|
17499
|
-
export declare type ConfluenceV2InlineCommentProperties = {
|
|
17500
|
-
__typename?: 'ConfluenceV2InlineCommentProperties';
|
|
17501
|
-
inlineMarkerRef: Scalars['String']['output'];
|
|
17502
|
-
inlineOriginalSelection: Scalars['String']['output'];
|
|
17503
|
-
};
|
|
17504
|
-
export declare enum ConfluenceV2InlineCommentResolutionStatus {
|
|
17505
|
-
Dangling = "dangling",
|
|
17506
|
-
Open = "open",
|
|
17507
|
-
Reopened = "reopened",
|
|
17508
|
-
Resolved = "resolved"
|
|
17509
|
-
}
|
|
17510
|
-
export declare enum ConfluenceV2InlineCommentStatus {
|
|
17511
|
-
Archived = "archived",
|
|
17512
|
-
Current = "current",
|
|
17513
|
-
Deleted = "deleted",
|
|
17514
|
-
Draft = "draft",
|
|
17515
|
-
Historical = "historical",
|
|
17516
|
-
Trashed = "trashed"
|
|
17517
|
-
}
|
|
17518
|
-
export declare type ConfluenceV2InternalProperties = {
|
|
17519
|
-
__typename?: 'ConfluenceV2InternalProperties';
|
|
17520
|
-
confRev?: Maybe<Scalars['String']['output']>;
|
|
17521
|
-
subType?: Maybe<Scalars['String']['output']>;
|
|
17522
|
-
};
|
|
17523
|
-
export declare type ConfluenceV2LayerScreenLookAndFeel = {
|
|
17524
|
-
__typename?: 'ConfluenceV2LayerScreenLookAndFeel';
|
|
17525
|
-
background?: Maybe<Scalars['String']['output']>;
|
|
17526
|
-
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
17527
|
-
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
17528
|
-
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
17529
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17530
|
-
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
17531
|
-
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
17532
|
-
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
17533
|
-
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
17534
|
-
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
17535
|
-
height?: Maybe<Scalars['String']['output']>;
|
|
17536
|
-
width?: Maybe<Scalars['String']['output']>;
|
|
17537
|
-
};
|
|
17538
|
-
export declare type ConfluenceV2LookAndFeel = {
|
|
17539
|
-
__typename?: 'ConfluenceV2LookAndFeel';
|
|
17540
|
-
bordersAndDividers?: Maybe<ConfluenceV2BordersAndDividersLookAndFeel>;
|
|
17541
|
-
content?: Maybe<ConfluenceV2ContentLookAndFeel>;
|
|
17542
|
-
header?: Maybe<ConfluenceV2HeaderLookAndFeel>;
|
|
17543
|
-
horizontalHeader?: Maybe<ConfluenceV2HeaderLookAndFeel>;
|
|
17544
|
-
menus?: Maybe<ConfluenceV2MenusLookAndFeel>;
|
|
17545
|
-
};
|
|
17546
|
-
export declare type ConfluenceV2Macro = {
|
|
17547
|
-
__typename?: 'ConfluenceV2Macro';
|
|
17548
|
-
adf: Scalars['String']['output'];
|
|
17549
|
-
contentId: Scalars['ID']['output'];
|
|
17550
|
-
macroId: Scalars['ID']['output'];
|
|
17551
|
-
};
|
|
17552
|
-
export declare type ConfluenceV2MacroConnection = {
|
|
17553
|
-
__typename?: 'ConfluenceV2MacroConnection';
|
|
17554
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2MacroEdge>>>;
|
|
17555
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2Macro>>>;
|
|
17556
|
-
pageInfo: PageInfo;
|
|
17557
|
-
};
|
|
17558
|
-
export declare type ConfluenceV2MacroEdge = {
|
|
17559
|
-
__typename?: 'ConfluenceV2MacroEdge';
|
|
17560
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17561
|
-
node: ConfluenceV2Macro;
|
|
17562
|
-
};
|
|
17563
|
-
export declare type ConfluenceV2MenuHoverOrFocus = {
|
|
17564
|
-
__typename?: 'ConfluenceV2MenuHoverOrFocus';
|
|
17565
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17566
|
-
};
|
|
17567
|
-
export declare type ConfluenceV2MenusLookAndFeel = {
|
|
17568
|
-
__typename?: 'ConfluenceV2MenusLookAndFeel';
|
|
17569
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17570
|
-
hoverOrFocus?: Maybe<ConfluenceV2MenuHoverOrFocus>;
|
|
17571
|
-
};
|
|
17572
|
-
export declare type ConfluenceV2NavigationHoverOrFocus = {
|
|
17573
|
-
__typename?: 'ConfluenceV2NavigationHoverOrFocus';
|
|
17574
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17575
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17576
|
-
};
|
|
17577
|
-
export declare type ConfluenceV2NavigationLookAndFeel = {
|
|
17578
|
-
__typename?: 'ConfluenceV2NavigationLookAndFeel';
|
|
17579
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17580
|
-
highlightColor?: Maybe<Scalars['String']['output']>;
|
|
17581
|
-
hoverOrFocus?: Maybe<ConfluenceV2NavigationHoverOrFocus>;
|
|
17582
|
-
};
|
|
17583
|
-
export declare type ConfluenceV2Operation = {
|
|
17584
|
-
__typename?: 'ConfluenceV2Operation';
|
|
17585
|
-
operation: Scalars['String']['output'];
|
|
17586
|
-
targetType: Scalars['String']['output'];
|
|
17587
|
-
};
|
|
17588
|
-
export declare type ConfluenceV2Operations = {
|
|
17589
|
-
__typename?: 'ConfluenceV2Operations';
|
|
17590
|
-
results?: Maybe<Array<Maybe<ConfluenceV2Operation>>>;
|
|
17591
|
-
};
|
|
17592
|
-
export declare type ConfluenceV2Organization = {
|
|
17593
|
-
__typename?: 'ConfluenceV2Organization';
|
|
17594
|
-
orgId?: Maybe<Scalars['String']['output']>;
|
|
17595
|
-
};
|
|
17596
|
-
export declare type ConfluenceV2Page = Node & {
|
|
17597
|
-
__typename?: 'ConfluenceV2Page';
|
|
17598
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
17599
|
-
body?: Maybe<ConfluenceV2Body>;
|
|
17600
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17601
|
-
id: Scalars['ID']['output'];
|
|
17602
|
-
internalProperties?: Maybe<ConfluenceV2InternalProperties>;
|
|
17603
|
-
isFavoritedByCurrentUser?: Maybe<Scalars['Boolean']['output']>;
|
|
17604
|
-
lastOwnerId?: Maybe<Scalars['String']['output']>;
|
|
17605
|
-
operations?: Maybe<ConfluenceV2Operations>;
|
|
17606
|
-
ownerId?: Maybe<Scalars['String']['output']>;
|
|
17607
|
-
parentId?: Maybe<Scalars['ID']['output']>;
|
|
17608
|
-
parentPage?: Maybe<ConfluenceV2Page>;
|
|
17609
|
-
parentType?: Maybe<ConfluenceV2ParentContent>;
|
|
17610
|
-
position?: Maybe<Scalars['Int']['output']>;
|
|
17611
|
-
space?: Maybe<ConfluenceV2Space>;
|
|
17612
|
-
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
17613
|
-
spaceLookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
17614
|
-
spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
17615
|
-
spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
17616
|
-
status: ConfluenceV2PageStatus;
|
|
17617
|
-
title: Scalars['String']['output'];
|
|
17618
|
-
version?: Maybe<ConfluenceV2Version>;
|
|
17619
|
-
};
|
|
17620
|
-
export declare type ConfluenceV2PageBodyArgs = {
|
|
17621
|
-
format?: InputMaybe<ConfluenceV2BodyFormat>;
|
|
17622
|
-
};
|
|
17623
|
-
export declare type ConfluenceV2PageConnection = {
|
|
17624
|
-
__typename?: 'ConfluenceV2PageConnection';
|
|
17625
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2PageEdge>>>;
|
|
17626
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2Page>>>;
|
|
17627
|
-
pageInfo: PageInfo;
|
|
17628
|
-
};
|
|
17629
|
-
export declare enum ConfluenceV2PageCreateStatus {
|
|
17630
|
-
Current = "current",
|
|
17631
|
-
Draft = "draft"
|
|
17632
|
-
}
|
|
17633
|
-
export declare type ConfluenceV2PageEdge = {
|
|
17634
|
-
__typename?: 'ConfluenceV2PageEdge';
|
|
17635
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17636
|
-
node: ConfluenceV2Page;
|
|
17637
|
-
};
|
|
17638
|
-
export declare enum ConfluenceV2PageStatus {
|
|
17639
|
-
Archived = "archived",
|
|
17640
|
-
Current = "current",
|
|
17641
|
-
Deleted = "deleted",
|
|
17642
|
-
Draft = "draft",
|
|
17643
|
-
Historical = "historical",
|
|
17644
|
-
Trashed = "trashed"
|
|
17645
|
-
}
|
|
17646
|
-
export declare enum ConfluenceV2PageUpdateStatus {
|
|
17647
|
-
Archived = "archived",
|
|
17648
|
-
Current = "current",
|
|
17649
|
-
Deleted = "deleted",
|
|
17650
|
-
Draft = "draft"
|
|
17651
|
-
}
|
|
17652
|
-
export declare enum ConfluenceV2ParentContent {
|
|
17653
|
-
Page = "page"
|
|
17654
|
-
}
|
|
17655
|
-
export declare type ConfluenceV2RenderedMacro = {
|
|
17656
|
-
__typename?: 'ConfluenceV2RenderedMacro';
|
|
17657
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
17658
|
-
};
|
|
17659
|
-
export declare type ConfluenceV2ScreenLookAndFeel = {
|
|
17660
|
-
__typename?: 'ConfluenceV2ScreenLookAndFeel';
|
|
17661
|
-
background?: Maybe<Scalars['String']['output']>;
|
|
17662
|
-
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
17663
|
-
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
17664
|
-
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
17665
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17666
|
-
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
17667
|
-
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
17668
|
-
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
17669
|
-
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
17670
|
-
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
17671
|
-
gutterBottom?: Maybe<Scalars['String']['output']>;
|
|
17672
|
-
gutterLeft?: Maybe<Scalars['String']['output']>;
|
|
17673
|
-
gutterRight?: Maybe<Scalars['String']['output']>;
|
|
17674
|
-
gutterTop?: Maybe<Scalars['String']['output']>;
|
|
17675
|
-
layer?: Maybe<ConfluenceV2LayerScreenLookAndFeel>;
|
|
17676
|
-
};
|
|
17677
|
-
export declare type ConfluenceV2SearchFieldLookAndFeel = {
|
|
17678
|
-
__typename?: 'ConfluenceV2SearchFieldLookAndFeel';
|
|
17679
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17680
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17681
|
-
};
|
|
17682
|
-
export declare type ConfluenceV2Space = Node & {
|
|
17683
|
-
__typename?: 'ConfluenceV2Space';
|
|
17684
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17685
|
-
description?: Maybe<ConfluenceV2SpaceDescription>;
|
|
17686
|
-
homepage?: Maybe<ConfluenceV2Page>;
|
|
17687
|
-
homepageId: Scalars['ID']['output'];
|
|
17688
|
-
icon?: Maybe<ConfluenceV2SpaceIcon>;
|
|
17689
|
-
id: Scalars['ID']['output'];
|
|
17690
|
-
key: Scalars['String']['output'];
|
|
17691
|
-
name: Scalars['String']['output'];
|
|
17692
|
-
status: ConfluenceV2SpaceStatus;
|
|
17693
|
-
type: ConfluenceV2SpaceType;
|
|
17694
|
-
};
|
|
17695
|
-
export declare type ConfluenceV2SpaceDescriptionArgs = {
|
|
17696
|
-
format?: InputMaybe<ConfluenceV2SpaceDescriptionEnum>;
|
|
17697
|
-
};
|
|
17698
|
-
export declare type ConfluenceV2SpaceDescription = {
|
|
17699
|
-
__typename?: 'ConfluenceV2SpaceDescription';
|
|
17700
|
-
plain?: Maybe<ConfluenceV2FormattedPage>;
|
|
17701
|
-
view?: Maybe<ConfluenceV2FormattedPage>;
|
|
17702
|
-
};
|
|
17703
|
-
export declare enum ConfluenceV2SpaceDescriptionEnum {
|
|
17704
|
-
Plain = "plain",
|
|
17705
|
-
View = "view"
|
|
17706
|
-
}
|
|
17707
|
-
export declare type ConfluenceV2SpaceIcon = {
|
|
17708
|
-
__typename?: 'ConfluenceV2SpaceIcon';
|
|
17709
|
-
apiDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
17710
|
-
path?: Maybe<Scalars['String']['output']>;
|
|
17711
|
-
};
|
|
17712
|
-
export declare type ConfluenceV2SpacePage = Node & {
|
|
17713
|
-
__typename?: 'ConfluenceV2SpacePage';
|
|
17714
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
17715
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17716
|
-
description?: Maybe<ConfluenceV2SpaceDescription>;
|
|
17717
|
-
homepageId: Scalars['ID']['output'];
|
|
17718
|
-
icon?: Maybe<ConfluenceV2SpaceIcon>;
|
|
17719
|
-
id: Scalars['ID']['output'];
|
|
17720
|
-
key: Scalars['String']['output'];
|
|
17721
|
-
links?: Maybe<ConfluenceV2SpacePageLinks>;
|
|
17722
|
-
lookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
17723
|
-
name: Scalars['String']['output'];
|
|
17724
|
-
settings?: Maybe<ConfluenceV2SpacePageSettings>;
|
|
17725
|
-
status: ConfluenceV2SpaceStatus;
|
|
17726
|
-
theme?: Maybe<ConfluenceV2Theme>;
|
|
17727
|
-
type: ConfluenceV2SpaceType;
|
|
17728
|
-
};
|
|
17729
|
-
export declare type ConfluenceV2SpacePageDescriptionArgs = {
|
|
17730
|
-
format?: InputMaybe<ConfluenceV2SpaceDescriptionEnum>;
|
|
17731
|
-
};
|
|
17732
|
-
export declare type ConfluenceV2SpacePageEditorSettings = {
|
|
17733
|
-
__typename?: 'ConfluenceV2SpacePageEditorSettings';
|
|
17734
|
-
blogPost?: Maybe<Scalars['String']['output']>;
|
|
17735
|
-
default?: Maybe<Scalars['String']['output']>;
|
|
17736
|
-
page?: Maybe<Scalars['String']['output']>;
|
|
17737
|
-
};
|
|
17738
|
-
export declare type ConfluenceV2SpacePageLinks = {
|
|
17739
|
-
__typename?: 'ConfluenceV2SpacePageLinks';
|
|
17740
|
-
base?: Maybe<Scalars['String']['output']>;
|
|
17741
|
-
webui?: Maybe<Scalars['String']['output']>;
|
|
17742
|
-
};
|
|
17743
|
-
export declare type ConfluenceV2SpacePageSettings = {
|
|
17744
|
-
__typename?: 'ConfluenceV2SpacePageSettings';
|
|
17745
|
-
editor?: Maybe<ConfluenceV2SpacePageEditorSettings>;
|
|
17746
|
-
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
17747
|
-
};
|
|
17748
|
-
export declare type ConfluenceV2SpaceProperty = {
|
|
17749
|
-
__typename?: 'ConfluenceV2SpaceProperty';
|
|
17750
|
-
authorId: Scalars['String']['output'];
|
|
17751
|
-
createdAt: Scalars['String']['output'];
|
|
17752
|
-
createdBy?: Maybe<Scalars['String']['output']>;
|
|
17753
|
-
key: Scalars['String']['output'];
|
|
17754
|
-
value: Scalars['JSON']['output'];
|
|
17755
|
-
version: ConfluenceV2SpaceVersion;
|
|
17756
|
-
};
|
|
17757
|
-
export declare type ConfluenceV2SpacePropertyConnection = {
|
|
17758
|
-
__typename?: 'ConfluenceV2SpacePropertyConnection';
|
|
17759
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2SpacePropertyEdge>>>;
|
|
17760
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2SpaceProperty>>>;
|
|
17761
|
-
pageInfo: PageInfo;
|
|
17762
|
-
};
|
|
17763
|
-
export declare type ConfluenceV2SpacePropertyEdge = {
|
|
17764
|
-
__typename?: 'ConfluenceV2SpacePropertyEdge';
|
|
17765
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17766
|
-
node: ConfluenceV2SpaceProperty;
|
|
17767
|
-
};
|
|
17768
|
-
export declare type ConfluenceV2SpaceSettings = {
|
|
17769
|
-
__typename?: 'ConfluenceV2SpaceSettings';
|
|
17770
|
-
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
17771
|
-
};
|
|
17772
|
-
export declare enum ConfluenceV2SpaceStatus {
|
|
17773
|
-
Archived = "archived",
|
|
17774
|
-
Current = "current"
|
|
17775
|
-
}
|
|
17776
|
-
export declare enum ConfluenceV2SpaceType {
|
|
17777
|
-
Global = "global",
|
|
17778
|
-
Personal = "personal"
|
|
17779
|
-
}
|
|
17780
|
-
export declare type ConfluenceV2SpaceVersion = {
|
|
17781
|
-
__typename?: 'ConfluenceV2SpaceVersion';
|
|
17782
|
-
authorId: Scalars['String']['output'];
|
|
17783
|
-
createdAt: Scalars['String']['output'];
|
|
17784
|
-
createdBy?: Maybe<Scalars['String']['output']>;
|
|
17785
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
17786
|
-
number: Scalars['Int']['output'];
|
|
17787
|
-
};
|
|
17788
|
-
export declare type ConfluenceV2Theme = {
|
|
17789
|
-
__typename?: 'ConfluenceV2Theme';
|
|
17790
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
17791
|
-
themeKey?: Maybe<Scalars['String']['output']>;
|
|
17792
|
-
};
|
|
17793
|
-
export declare type ConfluenceV2UpdatePageInput = {
|
|
17794
|
-
body: ConfluenceV2FormattedBodyInput;
|
|
17795
|
-
id: Scalars['ID']['input'];
|
|
17796
|
-
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
17797
|
-
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
17798
|
-
status: ConfluenceV2PageUpdateStatus;
|
|
17799
|
-
title: Scalars['String']['input'];
|
|
17800
|
-
version: ConfluenceV2VersionInput;
|
|
17801
|
-
};
|
|
17802
|
-
export declare type ConfluenceV2UpdatePagePayload = {
|
|
17803
|
-
__typename?: 'ConfluenceV2UpdatePagePayload';
|
|
17804
|
-
pageV2?: Maybe<ConfluenceV2Page>;
|
|
17805
|
-
};
|
|
17806
|
-
export declare type ConfluenceV2Version = {
|
|
17807
|
-
__typename?: 'ConfluenceV2Version';
|
|
17808
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
17809
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17810
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
17811
|
-
minorEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
17812
|
-
number: Scalars['Int']['output'];
|
|
17813
|
-
};
|
|
17814
|
-
export declare type ConfluenceV2VersionInput = {
|
|
17815
|
-
message?: InputMaybe<Scalars['String']['input']>;
|
|
17816
|
-
number: Scalars['Int']['input'];
|
|
17817
|
-
};
|
|
17818
17511
|
export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
17819
17512
|
__typename?: 'ConfluenceValidateSpaceKeyResponse';
|
|
17820
17513
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
17821
17514
|
isValid: Scalars['Boolean']['output'];
|
|
17822
17515
|
};
|
|
17516
|
+
export declare enum ConfluenceViewState {
|
|
17517
|
+
Editor = "EDITOR",
|
|
17518
|
+
Live = "LIVE",
|
|
17519
|
+
Renderer = "RENDERER"
|
|
17520
|
+
}
|
|
17823
17521
|
export declare type ConfluenceWatchSubCalendarInput = {
|
|
17824
17522
|
subCalendarId: Scalars['ID']['input'];
|
|
17825
17523
|
};
|
|
@@ -18285,6 +17983,7 @@ export declare type ContentContributors = {
|
|
|
18285
17983
|
count?: Maybe<Scalars['Int']['output']>;
|
|
18286
17984
|
edges?: Maybe<Array<Maybe<PersonEdge>>>;
|
|
18287
17985
|
isCurrentUserContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
17986
|
+
isOwnerContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
18288
17987
|
nodes?: Maybe<Array<Maybe<Person>>>;
|
|
18289
17988
|
pageInfo?: Maybe<PageInfo>;
|
|
18290
17989
|
};
|
|
@@ -20570,6 +20269,14 @@ export declare type CreateInlineTaskNotificationPayload = Payload & {
|
|
|
20570
20269
|
success: Scalars['Boolean']['output'];
|
|
20571
20270
|
tasks: Array<Maybe<IndividualInlineTaskNotification>>;
|
|
20572
20271
|
};
|
|
20272
|
+
export declare type CreateInvitationUrlPayload = {
|
|
20273
|
+
__typename?: 'CreateInvitationUrlPayload';
|
|
20274
|
+
expiration: Scalars['String']['output'];
|
|
20275
|
+
id: Scalars['ID']['output'];
|
|
20276
|
+
rules: Array<InvitationUrlRule>;
|
|
20277
|
+
status: InvitationUrlsStatus;
|
|
20278
|
+
url: Scalars['String']['output'];
|
|
20279
|
+
};
|
|
20573
20280
|
export declare type CreateJiraPlaybookInput = {
|
|
20574
20281
|
cloudId: Scalars['ID']['input'];
|
|
20575
20282
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
@@ -20831,10 +20538,12 @@ export declare type CsmAiActionVariableInput = {
|
|
|
20831
20538
|
};
|
|
20832
20539
|
export declare type CsmAiAgent = {
|
|
20833
20540
|
__typename?: 'CsmAiAgent';
|
|
20541
|
+
companyDescription?: Maybe<Scalars['String']['output']>;
|
|
20542
|
+
companyName?: Maybe<Scalars['String']['output']>;
|
|
20834
20543
|
conversationStarters?: Maybe<Array<CsmAiAgentConversationStarter>>;
|
|
20544
|
+
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
20835
20545
|
id: Scalars['ID']['output'];
|
|
20836
20546
|
name?: Maybe<Scalars['String']['output']>;
|
|
20837
|
-
purpose?: Maybe<Scalars['String']['output']>;
|
|
20838
20547
|
tone?: Maybe<CsmAiAgentTone>;
|
|
20839
20548
|
};
|
|
20840
20549
|
export declare type CsmAiAgentConversationStarter = {
|
|
@@ -20943,9 +20652,11 @@ export declare type CsmAiUpdateAgentConversationStarterInput = {
|
|
|
20943
20652
|
};
|
|
20944
20653
|
export declare type CsmAiUpdateAgentInput = {
|
|
20945
20654
|
addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20655
|
+
companyDescription?: InputMaybe<Scalars['String']['input']>;
|
|
20656
|
+
companyName?: InputMaybe<Scalars['String']['input']>;
|
|
20946
20657
|
deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
20658
|
+
greetingMessage?: InputMaybe<Scalars['String']['input']>;
|
|
20947
20659
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
20948
|
-
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
20949
20660
|
tone?: InputMaybe<CsmAiAgentToneInput>;
|
|
20950
20661
|
updatedConversationStarters?: InputMaybe<Array<CsmAiUpdateAgentConversationStarterInput>>;
|
|
20951
20662
|
};
|
|
@@ -24565,301 +24276,6 @@ export declare type DevOpsThumbnail = {
|
|
|
24565
24276
|
__typename?: 'DevOpsThumbnail';
|
|
24566
24277
|
externalUrl?: Maybe<Scalars['URL']['output']>;
|
|
24567
24278
|
};
|
|
24568
|
-
export declare type DevOpsTool = Node & {
|
|
24569
|
-
__typename?: 'DevOpsTool';
|
|
24570
|
-
auth?: Maybe<DevOpsToolAuth>;
|
|
24571
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
24572
|
-
category: DevOpsToolCategory;
|
|
24573
|
-
containerRelationshipType?: Maybe<Scalars['ID']['output']>;
|
|
24574
|
-
containerRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
24575
|
-
group: DevOpsToolGroup;
|
|
24576
|
-
id: Scalars['ID']['output'];
|
|
24577
|
-
installed?: Maybe<Scalars['Boolean']['output']>;
|
|
24578
|
-
integration?: Maybe<DevOpsToolIntegration>;
|
|
24579
|
-
name: Scalars['String']['output'];
|
|
24580
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
24581
|
-
productKey: Scalars['String']['output'];
|
|
24582
|
-
provider?: Maybe<DevOpsDataProvider>;
|
|
24583
|
-
recommended: Scalars['Boolean']['output'];
|
|
24584
|
-
supportsContainers: Scalars['Boolean']['output'];
|
|
24585
|
-
};
|
|
24586
|
-
export declare type DevOpsToolContainerRelationshipsArgs = {
|
|
24587
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24588
|
-
filter?: InputMaybe<AriGraphRelationshipsFilter>;
|
|
24589
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24590
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
24591
|
-
sort?: InputMaybe<AriGraphRelationshipsSort>;
|
|
24592
|
-
};
|
|
24593
|
-
export declare type DevOpsToolNamespacesArgs = {
|
|
24594
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24595
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24596
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
24597
|
-
};
|
|
24598
|
-
export declare type DevOpsToolProviderArgs = {
|
|
24599
|
-
id: Scalars['ID']['input'];
|
|
24600
|
-
providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
|
|
24601
|
-
};
|
|
24602
|
-
export declare type DevOpsToolAppLinks = {
|
|
24603
|
-
__typename?: 'DevOpsToolAppLinks';
|
|
24604
|
-
configure?: Maybe<Scalars['String']['output']>;
|
|
24605
|
-
getStarted?: Maybe<Scalars['String']['output']>;
|
|
24606
|
-
manage?: Maybe<Scalars['String']['output']>;
|
|
24607
|
-
self?: Maybe<Scalars['String']['output']>;
|
|
24608
|
-
support?: Maybe<Scalars['String']['output']>;
|
|
24609
|
-
};
|
|
24610
|
-
export declare type DevOpsToolAuth = {
|
|
24611
|
-
authenticated: Scalars['Boolean']['output'];
|
|
24612
|
-
};
|
|
24613
|
-
export declare type DevOpsToolAvatar = {
|
|
24614
|
-
__typename?: 'DevOpsToolAvatar';
|
|
24615
|
-
url: Scalars['URL']['output'];
|
|
24616
|
-
};
|
|
24617
|
-
export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpecification & {
|
|
24618
|
-
__typename?: 'DevOpsToolBitbucketCreate';
|
|
24619
|
-
name: Scalars['String']['output'];
|
|
24620
|
-
requestId: Scalars['String']['output'];
|
|
24621
|
-
slug?: Maybe<Scalars['String']['output']>;
|
|
24622
|
-
workspace: Scalars['String']['output'];
|
|
24623
|
-
};
|
|
24624
|
-
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolContainerKeyConflict | DevOpsToolContainerNameConflict | DevOpsToolUnknownTool;
|
|
24625
|
-
export declare type DevOpsToolCategory = {
|
|
24626
|
-
__typename?: 'DevOpsToolCategory';
|
|
24627
|
-
groupId: Scalars['String']['output'];
|
|
24628
|
-
id: Scalars['String']['output'];
|
|
24629
|
-
name: Scalars['String']['output'];
|
|
24630
|
-
};
|
|
24631
|
-
export declare type DevOpsToolCategoryConnection = {
|
|
24632
|
-
__typename?: 'DevOpsToolCategoryConnection';
|
|
24633
|
-
edges?: Maybe<Array<Maybe<DevOpsToolCategoryEdge>>>;
|
|
24634
|
-
nodes?: Maybe<Array<Maybe<DevOpsToolCategory>>>;
|
|
24635
|
-
pageInfo: PageInfo;
|
|
24636
|
-
};
|
|
24637
|
-
export declare type DevOpsToolCategoryEdge = {
|
|
24638
|
-
__typename?: 'DevOpsToolCategoryEdge';
|
|
24639
|
-
cursor: Scalars['String']['output'];
|
|
24640
|
-
node?: Maybe<DevOpsToolCategory>;
|
|
24641
|
-
};
|
|
24642
|
-
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
24643
|
-
__typename?: 'DevOpsToolConfluenceCreate';
|
|
24644
|
-
key: Scalars['String']['output'];
|
|
24645
|
-
name: Scalars['String']['output'];
|
|
24646
|
-
requestId: Scalars['String']['output'];
|
|
24647
|
-
};
|
|
24648
|
-
export declare type DevOpsToolConnection = {
|
|
24649
|
-
__typename?: 'DevOpsToolConnection';
|
|
24650
|
-
edges?: Maybe<Array<Maybe<DevOpsToolEdge>>>;
|
|
24651
|
-
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
24652
|
-
pageInfo: PageInfo;
|
|
24653
|
-
};
|
|
24654
|
-
export declare type DevOpsToolContainer = Node & {
|
|
24655
|
-
__typename?: 'DevOpsToolContainer';
|
|
24656
|
-
displayName: Scalars['String']['output'];
|
|
24657
|
-
id: Scalars['ID']['output'];
|
|
24658
|
-
productKey: Scalars['String']['output'];
|
|
24659
|
-
underlyingId: Scalars['String']['output'];
|
|
24660
|
-
url: Scalars['String']['output'];
|
|
24661
|
-
};
|
|
24662
|
-
export declare type DevOpsToolContainerCanBeCreated = {
|
|
24663
|
-
__typename?: 'DevOpsToolContainerCanBeCreated';
|
|
24664
|
-
containerCreationSpecification?: Maybe<DevOpsToolContainerCreationSpecification>;
|
|
24665
|
-
};
|
|
24666
|
-
export declare type DevOpsToolContainerConnection = {
|
|
24667
|
-
__typename?: 'DevOpsToolContainerConnection';
|
|
24668
|
-
edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
|
|
24669
|
-
nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
|
|
24670
|
-
pageInfo: PageInfo;
|
|
24671
|
-
};
|
|
24672
|
-
export declare type DevOpsToolContainerCreationSpecification = {
|
|
24673
|
-
requestId: Scalars['String']['output'];
|
|
24674
|
-
};
|
|
24675
|
-
export declare type DevOpsToolContainerEdge = {
|
|
24676
|
-
__typename?: 'DevOpsToolContainerEdge';
|
|
24677
|
-
cursor: Scalars['String']['output'];
|
|
24678
|
-
node?: Maybe<DevOpsToolContainer>;
|
|
24679
|
-
};
|
|
24680
|
-
export declare type DevOpsToolContainerKeyCannotBeGenerated = {
|
|
24681
|
-
__typename?: 'DevOpsToolContainerKeyCannotBeGenerated';
|
|
24682
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
24683
|
-
};
|
|
24684
|
-
export declare type DevOpsToolContainerKeyConflict = {
|
|
24685
|
-
__typename?: 'DevOpsToolContainerKeyConflict';
|
|
24686
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
24687
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
24688
|
-
};
|
|
24689
|
-
export declare type DevOpsToolContainerNameConflict = {
|
|
24690
|
-
__typename?: 'DevOpsToolContainerNameConflict';
|
|
24691
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
24692
|
-
};
|
|
24693
|
-
export declare type DevOpsToolDefaultAuth = DevOpsToolAuth & {
|
|
24694
|
-
__typename?: 'DevOpsToolDefaultAuth';
|
|
24695
|
-
authenticated: Scalars['Boolean']['output'];
|
|
24696
|
-
};
|
|
24697
|
-
export declare type DevOpsToolEdge = {
|
|
24698
|
-
__typename?: 'DevOpsToolEdge';
|
|
24699
|
-
cursor: Scalars['String']['output'];
|
|
24700
|
-
node?: Maybe<DevOpsTool>;
|
|
24701
|
-
};
|
|
24702
|
-
export declare type DevOpsToolGitHubCreate = DevOpsToolContainerCreationSpecification & {
|
|
24703
|
-
__typename?: 'DevOpsToolGitHubCreate';
|
|
24704
|
-
organizationName: Scalars['String']['output'];
|
|
24705
|
-
repositoryName: Scalars['String']['output'];
|
|
24706
|
-
requestId: Scalars['String']['output'];
|
|
24707
|
-
};
|
|
24708
|
-
export declare type DevOpsToolGitLabCreate = DevOpsToolContainerCreationSpecification & {
|
|
24709
|
-
__typename?: 'DevOpsToolGitLabCreate';
|
|
24710
|
-
organizationName: Scalars['String']['output'];
|
|
24711
|
-
repositoryName: Scalars['String']['output'];
|
|
24712
|
-
requestId: Scalars['String']['output'];
|
|
24713
|
-
};
|
|
24714
|
-
export declare type DevOpsToolGroup = {
|
|
24715
|
-
__typename?: 'DevOpsToolGroup';
|
|
24716
|
-
categories?: Maybe<DevOpsToolCategoryConnection>;
|
|
24717
|
-
groupId: Scalars['String']['output'];
|
|
24718
|
-
groupName: Scalars['String']['output'];
|
|
24719
|
-
};
|
|
24720
|
-
export declare type DevOpsToolGroupCategoriesArgs = {
|
|
24721
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24722
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24723
|
-
};
|
|
24724
|
-
export declare type DevOpsToolGroupConnection = {
|
|
24725
|
-
__typename?: 'DevOpsToolGroupConnection';
|
|
24726
|
-
edges?: Maybe<Array<Maybe<DevOpsToolGroupEdge>>>;
|
|
24727
|
-
nodes?: Maybe<Array<Maybe<DevOpsToolGroup>>>;
|
|
24728
|
-
pageInfo: PageInfo;
|
|
24729
|
-
};
|
|
24730
|
-
export declare type DevOpsToolGroupEdge = {
|
|
24731
|
-
__typename?: 'DevOpsToolGroupEdge';
|
|
24732
|
-
cursor: Scalars['String']['output'];
|
|
24733
|
-
node?: Maybe<DevOpsToolGroup>;
|
|
24734
|
-
};
|
|
24735
|
-
export declare type DevOpsToolIntegration = {
|
|
24736
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
24737
|
-
key: Scalars['String']['output'];
|
|
24738
|
-
name: Scalars['String']['output'];
|
|
24739
|
-
};
|
|
24740
|
-
export declare type DevOpsToolIntegrationApp = DevOpsToolIntegration & {
|
|
24741
|
-
__typename?: 'DevOpsToolIntegrationApp';
|
|
24742
|
-
appKey: Scalars['String']['output'];
|
|
24743
|
-
appName: Scalars['String']['output'];
|
|
24744
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
24745
|
-
key: Scalars['String']['output'];
|
|
24746
|
-
links?: Maybe<DevOpsToolAppLinks>;
|
|
24747
|
-
marketplaceType: Scalars['String']['output'];
|
|
24748
|
-
name: Scalars['String']['output'];
|
|
24749
|
-
};
|
|
24750
|
-
export declare type DevOpsToolIntegrationProduct = DevOpsToolIntegration & {
|
|
24751
|
-
__typename?: 'DevOpsToolIntegrationProduct';
|
|
24752
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
24753
|
-
key: Scalars['String']['output'];
|
|
24754
|
-
name: Scalars['String']['output'];
|
|
24755
|
-
productKey: Scalars['String']['output'];
|
|
24756
|
-
productName: Scalars['String']['output'];
|
|
24757
|
-
};
|
|
24758
|
-
export declare enum DevOpsToolIntegrationType {
|
|
24759
|
-
Any = "ANY",
|
|
24760
|
-
App = "APP",
|
|
24761
|
-
Exists = "EXISTS",
|
|
24762
|
-
None = "NONE",
|
|
24763
|
-
Product = "PRODUCT"
|
|
24764
|
-
}
|
|
24765
|
-
export declare type DevOpsToolNamespace = Node & {
|
|
24766
|
-
__typename?: 'DevOpsToolNamespace';
|
|
24767
|
-
canCreateContainer: Scalars['Boolean']['output'];
|
|
24768
|
-
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
24769
|
-
displayName: Scalars['String']['output'];
|
|
24770
|
-
id: Scalars['ID']['output'];
|
|
24771
|
-
productKey: Scalars['String']['output'];
|
|
24772
|
-
underlyingId: Scalars['String']['output'];
|
|
24773
|
-
};
|
|
24774
|
-
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
24775
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24776
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24777
|
-
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
24778
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
24779
|
-
};
|
|
24780
|
-
export declare type DevOpsToolNamespaceConnection = {
|
|
24781
|
-
__typename?: 'DevOpsToolNamespaceConnection';
|
|
24782
|
-
edges?: Maybe<Array<Maybe<DevOpsToolNamespaceEdge>>>;
|
|
24783
|
-
nodes?: Maybe<Array<Maybe<DevOpsToolNamespace>>>;
|
|
24784
|
-
pageInfo: PageInfo;
|
|
24785
|
-
};
|
|
24786
|
-
export declare type DevOpsToolNamespaceEdge = {
|
|
24787
|
-
__typename?: 'DevOpsToolNamespaceEdge';
|
|
24788
|
-
cursor: Scalars['String']['output'];
|
|
24789
|
-
node?: Maybe<DevOpsToolNamespace>;
|
|
24790
|
-
};
|
|
24791
|
-
export declare type DevOpsToolOAuth = DevOpsToolAuth & {
|
|
24792
|
-
__typename?: 'DevOpsToolOAuth';
|
|
24793
|
-
authenticated: Scalars['Boolean']['output'];
|
|
24794
|
-
oauthUrl: Scalars['String']['output'];
|
|
24795
|
-
};
|
|
24796
|
-
export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecification & {
|
|
24797
|
-
__typename?: 'DevOpsToolOpsgenieCreate';
|
|
24798
|
-
name: Scalars['String']['output'];
|
|
24799
|
-
requestId: Scalars['String']['output'];
|
|
24800
|
-
};
|
|
24801
|
-
export declare type DevOpsToolSort = {
|
|
24802
|
-
integration?: InputMaybe<DevOpsToolSortOrder>;
|
|
24803
|
-
name?: InputMaybe<DevOpsToolSortOrder>;
|
|
24804
|
-
recommended?: InputMaybe<DevOpsToolSortOrder>;
|
|
24805
|
-
supportsContainers?: InputMaybe<DevOpsToolSortOrder>;
|
|
24806
|
-
};
|
|
24807
|
-
export declare enum DevOpsToolSortOrder {
|
|
24808
|
-
Asc = "ASC",
|
|
24809
|
-
Desc = "DESC"
|
|
24810
|
-
}
|
|
24811
|
-
export declare type DevOpsToolUnknownTool = {
|
|
24812
|
-
__typename?: 'DevOpsToolUnknownTool';
|
|
24813
|
-
toolId?: Maybe<Scalars['String']['output']>;
|
|
24814
|
-
};
|
|
24815
|
-
export declare type DevOpsTools = {
|
|
24816
|
-
__typename?: 'DevOpsTools';
|
|
24817
|
-
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
24818
|
-
container?: Maybe<DevOpsToolContainer>;
|
|
24819
|
-
groups?: Maybe<DevOpsToolGroupConnection>;
|
|
24820
|
-
integration?: Maybe<DevOpsToolIntegration>;
|
|
24821
|
-
isInstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
24822
|
-
namespace?: Maybe<DevOpsToolNamespace>;
|
|
24823
|
-
tool?: Maybe<DevOpsTool>;
|
|
24824
|
-
tools?: Maybe<DevOpsToolConnection>;
|
|
24825
|
-
};
|
|
24826
|
-
export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
24827
|
-
cloudId: Scalars['ID']['input'];
|
|
24828
|
-
containerName: Scalars['String']['input'];
|
|
24829
|
-
namespaceId: Scalars['String']['input'];
|
|
24830
|
-
toolId: Scalars['String']['input'];
|
|
24831
|
-
};
|
|
24832
|
-
export declare type DevOpsToolsContainerArgs = {
|
|
24833
|
-
id: Scalars['ID']['input'];
|
|
24834
|
-
};
|
|
24835
|
-
export declare type DevOpsToolsGroupsArgs = {
|
|
24836
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24837
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24838
|
-
};
|
|
24839
|
-
export declare type DevOpsToolsIntegrationArgs = {
|
|
24840
|
-
id: Scalars['ID']['input'];
|
|
24841
|
-
};
|
|
24842
|
-
export declare type DevOpsToolsIsInstalledArgs = {
|
|
24843
|
-
id: Scalars['ID']['input'];
|
|
24844
|
-
};
|
|
24845
|
-
export declare type DevOpsToolsNamespaceArgs = {
|
|
24846
|
-
id: Scalars['ID']['input'];
|
|
24847
|
-
};
|
|
24848
|
-
export declare type DevOpsToolsToolArgs = {
|
|
24849
|
-
id: Scalars['ID']['input'];
|
|
24850
|
-
};
|
|
24851
|
-
export declare type DevOpsToolsToolsArgs = {
|
|
24852
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24853
|
-
categoryId?: InputMaybe<Scalars['String']['input']>;
|
|
24854
|
-
cloudId: Scalars['ID']['input'];
|
|
24855
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24856
|
-
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
24857
|
-
integrationType?: InputMaybe<DevOpsToolIntegrationType>;
|
|
24858
|
-
recommended?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24859
|
-
search?: InputMaybe<Scalars['String']['input']>;
|
|
24860
|
-
sort?: InputMaybe<Array<InputMaybe<DevOpsToolSort>>>;
|
|
24861
|
-
supportsContainers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24862
|
-
};
|
|
24863
24279
|
export declare type DevOpsUser = {
|
|
24864
24280
|
__typename?: 'DevOpsUser';
|
|
24865
24281
|
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
@@ -27848,6 +27264,7 @@ export declare enum ForgeMetricsGroupByDimensions {
|
|
|
27848
27264
|
export declare type ForgeMetricsInstallationContext = {
|
|
27849
27265
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
27850
27266
|
contextAri: Scalars['ID']['output'];
|
|
27267
|
+
contextAris: Array<Scalars['ID']['output']>;
|
|
27851
27268
|
tenantContext?: Maybe<TenantContext>;
|
|
27852
27269
|
};
|
|
27853
27270
|
export declare type ForgeMetricsIntervalInput = {
|
|
@@ -32069,6 +31486,8 @@ export declare type GraphStore = {
|
|
|
32069
31486
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
32070
31487
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
32071
31488
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
31489
|
+
deploymentAssociatedDeployment?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection>;
|
|
31490
|
+
deploymentAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseConnection>;
|
|
32072
31491
|
deploymentAssociatedRepo?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoConnection>;
|
|
32073
31492
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
32074
31493
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
@@ -32601,6 +32020,10 @@ export declare type GraphStore = {
|
|
|
32601
32020
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
32602
32021
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
32603
32022
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
32023
|
+
userUpdatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalConnection>;
|
|
32024
|
+
userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
|
|
32025
|
+
userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
|
|
32026
|
+
userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
|
|
32604
32027
|
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
32605
32028
|
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
32606
32029
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
@@ -33357,6 +32780,20 @@ export declare type GraphStoreCypherQueryV2Args = {
|
|
|
33357
32780
|
query: Scalars['String']['input'];
|
|
33358
32781
|
version?: InputMaybe<GraphStoreCypherQueryV2VersionEnum>;
|
|
33359
32782
|
};
|
|
32783
|
+
export declare type GraphStoreDeploymentAssociatedDeploymentArgs = {
|
|
32784
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32785
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32786
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32787
|
+
id: Scalars['ID']['input'];
|
|
32788
|
+
sort?: InputMaybe<GraphStoreDeploymentAssociatedDeploymentSortInput>;
|
|
32789
|
+
};
|
|
32790
|
+
export declare type GraphStoreDeploymentAssociatedDeploymentInverseArgs = {
|
|
32791
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32792
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32793
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32794
|
+
id: Scalars['ID']['input'];
|
|
32795
|
+
sort?: InputMaybe<GraphStoreDeploymentAssociatedDeploymentSortInput>;
|
|
32796
|
+
};
|
|
33360
32797
|
export declare type GraphStoreDeploymentAssociatedRepoArgs = {
|
|
33361
32798
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33362
32799
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36900,6 +36337,34 @@ export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
|
36900
36337
|
id: Scalars['ID']['input'];
|
|
36901
36338
|
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
36902
36339
|
};
|
|
36340
|
+
export declare type GraphStoreUserUpdatedAtlasGoalArgs = {
|
|
36341
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36342
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36343
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36344
|
+
id: Scalars['ID']['input'];
|
|
36345
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasGoalSortInput>;
|
|
36346
|
+
};
|
|
36347
|
+
export declare type GraphStoreUserUpdatedAtlasGoalInverseArgs = {
|
|
36348
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36349
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36350
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36351
|
+
id: Scalars['ID']['input'];
|
|
36352
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasGoalSortInput>;
|
|
36353
|
+
};
|
|
36354
|
+
export declare type GraphStoreUserUpdatedAtlasProjectArgs = {
|
|
36355
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36356
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36357
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36358
|
+
id: Scalars['ID']['input'];
|
|
36359
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
|
|
36360
|
+
};
|
|
36361
|
+
export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
|
|
36362
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36363
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36364
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36365
|
+
id: Scalars['ID']['input'];
|
|
36366
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
|
|
36367
|
+
};
|
|
36903
36368
|
export declare type GraphStoreUserUpdatedCommentArgs = {
|
|
36904
36369
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36905
36370
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39525,6 +38990,9 @@ export declare type GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInpu
|
|
|
39525
38990
|
from: Scalars['ID']['input'];
|
|
39526
38991
|
to: Scalars['ID']['input'];
|
|
39527
38992
|
};
|
|
38993
|
+
export declare type GraphStoreDeploymentAssociatedDeploymentSortInput = {
|
|
38994
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38995
|
+
};
|
|
39528
38996
|
export declare type GraphStoreDeploymentAssociatedRepoSortInput = {
|
|
39529
38997
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39530
38998
|
};
|
|
@@ -45386,6 +44854,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
45386
44854
|
};
|
|
45387
44855
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
45388
44856
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
44857
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection = HasPageInfo & {
|
|
44858
|
+
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection';
|
|
44859
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge>>>;
|
|
44860
|
+
pageInfo: PageInfo;
|
|
44861
|
+
};
|
|
44862
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge = {
|
|
44863
|
+
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge';
|
|
44864
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44865
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44866
|
+
id: Scalars['ID']['output'];
|
|
44867
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44868
|
+
node?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentUnion>;
|
|
44869
|
+
};
|
|
44870
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
44871
|
+
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseConnection';
|
|
44872
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseEdge>>>;
|
|
44873
|
+
pageInfo: PageInfo;
|
|
44874
|
+
};
|
|
44875
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseEdge = {
|
|
44876
|
+
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseEdge';
|
|
44877
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44878
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44879
|
+
id: Scalars['ID']['output'];
|
|
44880
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44881
|
+
node?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseUnion>;
|
|
44882
|
+
};
|
|
44883
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
44884
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
45389
44885
|
export declare type GraphStoreSimplifiedDeploymentAssociatedRepoConnection = HasPageInfo & {
|
|
45390
44886
|
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedRepoConnection';
|
|
45391
44887
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoEdge>>>;
|
|
@@ -50876,6 +50372,62 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
50876
50372
|
};
|
|
50877
50373
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50878
50374
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
50375
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalConnection = HasPageInfo & {
|
|
50376
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalConnection';
|
|
50377
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalEdge>>>;
|
|
50378
|
+
pageInfo: PageInfo;
|
|
50379
|
+
};
|
|
50380
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalEdge = {
|
|
50381
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalEdge';
|
|
50382
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50383
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50384
|
+
id: Scalars['ID']['output'];
|
|
50385
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50386
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalUnion>;
|
|
50387
|
+
};
|
|
50388
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection = HasPageInfo & {
|
|
50389
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection';
|
|
50390
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge>>>;
|
|
50391
|
+
pageInfo: PageInfo;
|
|
50392
|
+
};
|
|
50393
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge = {
|
|
50394
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge';
|
|
50395
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50396
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50397
|
+
id: Scalars['ID']['output'];
|
|
50398
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50399
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseUnion>;
|
|
50400
|
+
};
|
|
50401
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50402
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalUnion = TownsquareGoal;
|
|
50403
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectConnection = HasPageInfo & {
|
|
50404
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectConnection';
|
|
50405
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectEdge>>>;
|
|
50406
|
+
pageInfo: PageInfo;
|
|
50407
|
+
};
|
|
50408
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectEdge = {
|
|
50409
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectEdge';
|
|
50410
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50411
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50412
|
+
id: Scalars['ID']['output'];
|
|
50413
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50414
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectUnion>;
|
|
50415
|
+
};
|
|
50416
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection = HasPageInfo & {
|
|
50417
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection';
|
|
50418
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge>>>;
|
|
50419
|
+
pageInfo: PageInfo;
|
|
50420
|
+
};
|
|
50421
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
|
|
50422
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge';
|
|
50423
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50424
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50425
|
+
id: Scalars['ID']['output'];
|
|
50426
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50427
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion>;
|
|
50428
|
+
};
|
|
50429
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50430
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
|
|
50879
50431
|
export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
|
|
50880
50432
|
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
|
|
50881
50433
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
|
|
@@ -52365,6 +51917,12 @@ export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
|
52365
51917
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
52366
51918
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52367
51919
|
};
|
|
51920
|
+
export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
|
|
51921
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51922
|
+
};
|
|
51923
|
+
export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
51924
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51925
|
+
};
|
|
52368
51926
|
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
52369
51927
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52370
51928
|
};
|
|
@@ -55472,6 +55030,28 @@ export declare type IntervalInput = {
|
|
|
55472
55030
|
endTime: Scalars['DateTime']['input'];
|
|
55473
55031
|
startTime: Scalars['DateTime']['input'];
|
|
55474
55032
|
};
|
|
55033
|
+
export declare type InvitationUrl = {
|
|
55034
|
+
__typename?: 'InvitationUrl';
|
|
55035
|
+
expiration: Scalars['String']['output'];
|
|
55036
|
+
id: Scalars['String']['output'];
|
|
55037
|
+
rules: Array<InvitationUrlRule>;
|
|
55038
|
+
status: InvitationUrlsStatus;
|
|
55039
|
+
url: Scalars['String']['output'];
|
|
55040
|
+
};
|
|
55041
|
+
export declare type InvitationUrlRule = {
|
|
55042
|
+
__typename?: 'InvitationUrlRule';
|
|
55043
|
+
resource: Scalars['ID']['output'];
|
|
55044
|
+
role: Scalars['ID']['output'];
|
|
55045
|
+
};
|
|
55046
|
+
export declare type InvitationUrlsPayload = {
|
|
55047
|
+
__typename?: 'InvitationUrlsPayload';
|
|
55048
|
+
urls: Array<Maybe<InvitationUrl>>;
|
|
55049
|
+
};
|
|
55050
|
+
export declare enum InvitationUrlsStatus {
|
|
55051
|
+
Active = "ACTIVE",
|
|
55052
|
+
Deleted = "DELETED",
|
|
55053
|
+
Expired = "EXPIRED"
|
|
55054
|
+
}
|
|
55475
55055
|
export declare type InvocationMetrics = {
|
|
55476
55056
|
__typename?: 'InvocationMetrics';
|
|
55477
55057
|
appExecutionRegion?: Maybe<Scalars['String']['output']>;
|
|
@@ -56413,9 +55993,6 @@ export declare type JiraAssignableUsersEdge = {
|
|
|
56413
55993
|
cursor: Scalars['String']['output'];
|
|
56414
55994
|
node?: Maybe<User>;
|
|
56415
55995
|
};
|
|
56416
|
-
export declare type JiraAssociatedFieldConfigSchemesInput = {
|
|
56417
|
-
fieldId: Scalars['ID']['input'];
|
|
56418
|
-
};
|
|
56419
55996
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
56420
55997
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
56421
55998
|
AiMate = "AI_MATE",
|
|
@@ -56832,10 +56409,6 @@ export declare type JiraAvailableField = JiraProjectFieldAssociationInterface &
|
|
|
56832
56409
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
56833
56410
|
id: Scalars['ID']['output'];
|
|
56834
56411
|
};
|
|
56835
|
-
export declare type JiraAvailableFieldConfigSchemesInput = {
|
|
56836
|
-
fieldId: Scalars['ID']['input'];
|
|
56837
|
-
schemeNameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
56838
|
-
};
|
|
56839
56412
|
export declare type JiraAvailableFieldsConnection = {
|
|
56840
56413
|
__typename?: 'JiraAvailableFieldsConnection';
|
|
56841
56414
|
edges?: Maybe<Array<Maybe<JiraAvailableFieldsEdge>>>;
|
|
@@ -59690,6 +59263,12 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
59690
59263
|
export declare type JiraDurationFieldInput = {
|
|
59691
59264
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
59692
59265
|
};
|
|
59266
|
+
export declare type JiraEchoWhereInput = {
|
|
59267
|
+
delayMs?: InputMaybe<Scalars['Int']['input']>;
|
|
59268
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
59269
|
+
withDataError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59270
|
+
withTopLevelError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59271
|
+
};
|
|
59693
59272
|
export declare type JiraEditCustomFieldInput = {
|
|
59694
59273
|
cloudId: Scalars['ID']['input'];
|
|
59695
59274
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60017,6 +59596,9 @@ export declare type JiraFieldConfigSchemesEdge = {
|
|
|
60017
59596
|
cursor: Scalars['String']['output'];
|
|
60018
59597
|
node?: Maybe<JiraFieldConfigScheme>;
|
|
60019
59598
|
};
|
|
59599
|
+
export declare type JiraFieldConfigSchemesInput = {
|
|
59600
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59601
|
+
};
|
|
60020
59602
|
export declare type JiraFieldConnection = {
|
|
60021
59603
|
__typename?: 'JiraFieldConnection';
|
|
60022
59604
|
edges?: Maybe<Array<Maybe<JiraFieldEdge>>>;
|
|
@@ -61669,20 +61251,25 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
61669
61251
|
associatedContexts?: Maybe<JiraContextConnection>;
|
|
61670
61252
|
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
61671
61253
|
associatedContextsV2?: Maybe<JiraContextConnection>;
|
|
61254
|
+
associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
61255
|
+
associatedFieldConfigSchemesCount?: Maybe<Scalars['Int']['output']>;
|
|
61672
61256
|
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
61673
61257
|
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
61674
61258
|
associatedProjectsV2?: Maybe<JiraProjectConnection>;
|
|
61675
61259
|
associatedScreens?: Maybe<JiraScreenConnection>;
|
|
61676
61260
|
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
61677
61261
|
associatedScreensV2?: Maybe<JiraScreenConnection>;
|
|
61262
|
+
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
61678
61263
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
61679
61264
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
61680
61265
|
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
61266
|
+
defaultFieldOptions?: Maybe<JiraParentOptionConnection>;
|
|
61681
61267
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
61682
61268
|
description?: Maybe<Scalars['String']['output']>;
|
|
61683
61269
|
fieldId: Scalars['String']['output'];
|
|
61684
61270
|
id: Scalars['ID']['output'];
|
|
61685
61271
|
isCustom: Scalars['Boolean']['output'];
|
|
61272
|
+
isDefaultFieldOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
61686
61273
|
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
61687
61274
|
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
61688
61275
|
isTrashed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -61708,6 +61295,11 @@ export declare type JiraIssueFieldConfigAssociatedContextsV2Args = {
|
|
|
61708
61295
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61709
61296
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61710
61297
|
};
|
|
61298
|
+
export declare type JiraIssueFieldConfigAssociatedFieldConfigSchemesArgs = {
|
|
61299
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61300
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61301
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
61302
|
+
};
|
|
61711
61303
|
export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
|
|
61712
61304
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
61713
61305
|
before?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -61734,6 +61326,20 @@ export declare type JiraIssueFieldConfigAssociatedScreensV2Args = {
|
|
|
61734
61326
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61735
61327
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61736
61328
|
};
|
|
61329
|
+
export declare type JiraIssueFieldConfigAvailableFieldConfigSchemesArgs = {
|
|
61330
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61331
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61332
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
61333
|
+
};
|
|
61334
|
+
export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
|
|
61335
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61336
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
61337
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61338
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61339
|
+
};
|
|
61340
|
+
export declare type JiraIssueFieldConfigIsDefaultFieldOptionsCountOverLimitArgs = {
|
|
61341
|
+
limit: Scalars['Int']['input'];
|
|
61342
|
+
};
|
|
61737
61343
|
export declare type JiraIssueFieldConfiguration = {
|
|
61738
61344
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
61739
61345
|
};
|
|
@@ -63570,6 +63176,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
63570
63176
|
};
|
|
63571
63177
|
export declare enum JiraJqlViewContext {
|
|
63572
63178
|
JpdRoadmaps = "JPD_ROADMAPS",
|
|
63179
|
+
JsmQueuePage = "JSM_QUEUE_PAGE",
|
|
63573
63180
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
63574
63181
|
JswPlans = "JSW_PLANS",
|
|
63575
63182
|
JswSummaryPage = "JSW_SUMMARY_PAGE",
|
|
@@ -63582,6 +63189,7 @@ export declare type JiraJwmField = {
|
|
|
63582
63189
|
};
|
|
63583
63190
|
export declare type JiraLabel = {
|
|
63584
63191
|
__typename?: 'JiraLabel';
|
|
63192
|
+
color?: Maybe<JiraColor>;
|
|
63585
63193
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
63586
63194
|
name?: Maybe<Scalars['String']['output']>;
|
|
63587
63195
|
};
|
|
@@ -65209,7 +64817,7 @@ export declare type JiraNumberFieldFormatConfig = {
|
|
|
65209
64817
|
export declare enum JiraNumberFieldFormatStyle {
|
|
65210
64818
|
Currency = "CURRENCY",
|
|
65211
64819
|
Decimal = "DECIMAL",
|
|
65212
|
-
|
|
64820
|
+
Percent = "PERCENT",
|
|
65213
64821
|
Unit = "UNIT"
|
|
65214
64822
|
}
|
|
65215
64823
|
export declare type JiraNumberFieldInput = {
|
|
@@ -67085,6 +66693,7 @@ export declare type JiraQuery = {
|
|
|
67085
66693
|
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
67086
66694
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
67087
66695
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
66696
|
+
echo?: Maybe<Scalars['String']['output']>;
|
|
67088
66697
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
67089
66698
|
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
67090
66699
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -67405,6 +67014,10 @@ export declare type JiraQueryDevOpsProvidersArgs = {
|
|
|
67405
67014
|
cloudId: Scalars['ID']['input'];
|
|
67406
67015
|
filter?: InputMaybe<Array<JiraDevOpsCapability>>;
|
|
67407
67016
|
};
|
|
67017
|
+
export declare type JiraQueryEchoArgs = {
|
|
67018
|
+
cloudId: Scalars['ID']['input'];
|
|
67019
|
+
where?: InputMaybe<JiraEchoWhereInput>;
|
|
67020
|
+
};
|
|
67408
67021
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
67409
67022
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
67410
67023
|
};
|
|
@@ -70640,10 +70253,9 @@ export declare enum JiraSidebarMenuItemReorderOperation {
|
|
|
70640
70253
|
After = "AFTER",
|
|
70641
70254
|
Before = "BEFORE",
|
|
70642
70255
|
MoveDown = "MOVE_DOWN",
|
|
70643
|
-
|
|
70644
|
-
|
|
70645
|
-
MoveUp = "MOVE_UP"
|
|
70646
|
-
Remove = "REMOVE"
|
|
70256
|
+
MoveToBottom = "MOVE_TO_BOTTOM",
|
|
70257
|
+
MoveToTop = "MOVE_TO_TOP",
|
|
70258
|
+
MoveUp = "MOVE_UP"
|
|
70647
70259
|
}
|
|
70648
70260
|
export declare type JiraSimilarIssues = {
|
|
70649
70261
|
__typename?: 'JiraSimilarIssues';
|
|
@@ -75343,6 +74955,7 @@ export declare type License = {
|
|
|
75343
74955
|
__typename?: 'License';
|
|
75344
74956
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
75345
74957
|
billingSourceSystem?: Maybe<BillingSourceSystem>;
|
|
74958
|
+
firstPredunningEndTime?: Maybe<Scalars['Long']['output']>;
|
|
75346
74959
|
licenseConsumingUserCount: Scalars['Int']['output'];
|
|
75347
74960
|
licenseStatus: LicenseStatus;
|
|
75348
74961
|
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -75611,6 +75224,7 @@ export declare type LoomSpace = Node & {
|
|
|
75611
75224
|
__typename?: 'LoomSpace';
|
|
75612
75225
|
id: Scalars['ID']['output'];
|
|
75613
75226
|
name: Scalars['String']['output'];
|
|
75227
|
+
url: Scalars['String']['output'];
|
|
75614
75228
|
};
|
|
75615
75229
|
export declare enum LoomSpacePrivacyType {
|
|
75616
75230
|
Private = "private",
|
|
@@ -77512,6 +77126,16 @@ export declare type MarketplaceStoreAppDetails = MarketplaceStoreMultiInstanceDe
|
|
|
77512
77126
|
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
77513
77127
|
status?: Maybe<Scalars['String']['output']>;
|
|
77514
77128
|
};
|
|
77129
|
+
export declare type MarketplaceStoreAppSoftwareVersionListingLinks = {
|
|
77130
|
+
__typename?: 'MarketplaceStoreAppSoftwareVersionListingLinks';
|
|
77131
|
+
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
77132
|
+
eula?: Maybe<Scalars['String']['output']>;
|
|
77133
|
+
partnerSpecificTerms?: Maybe<Scalars['String']['output']>;
|
|
77134
|
+
};
|
|
77135
|
+
export declare type MarketplaceStoreAppSoftwareVersionListingResponse = {
|
|
77136
|
+
__typename?: 'MarketplaceStoreAppSoftwareVersionListingResponse';
|
|
77137
|
+
vendorLinks?: Maybe<MarketplaceStoreAppSoftwareVersionListingLinks>;
|
|
77138
|
+
};
|
|
77515
77139
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
77516
77140
|
Cloud = "CLOUD",
|
|
77517
77141
|
Datacenter = "DATACENTER",
|
|
@@ -77675,11 +77299,6 @@ export declare type MarketplaceStoreDeleteReviewResponseInput = {
|
|
|
77675
77299
|
appKey: Scalars['String']['input'];
|
|
77676
77300
|
reviewId: Scalars['ID']['input'];
|
|
77677
77301
|
};
|
|
77678
|
-
export declare type MarketplaceStoreDeleteReviewResponseResponse = {
|
|
77679
|
-
__typename?: 'MarketplaceStoreDeleteReviewResponseResponse';
|
|
77680
|
-
id: Scalars['ID']['output'];
|
|
77681
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
77682
|
-
};
|
|
77683
77302
|
export declare type MarketplaceStoreDeveloperSpace = {
|
|
77684
77303
|
__typename?: 'MarketplaceStoreDeveloperSpace';
|
|
77685
77304
|
name: Scalars['String']['output'];
|
|
@@ -77707,6 +77326,7 @@ export declare type MarketplaceStoreEditionFeature = {
|
|
|
77707
77326
|
};
|
|
77708
77327
|
export declare enum MarketplaceStoreEditionType {
|
|
77709
77328
|
Advanced = "ADVANCED",
|
|
77329
|
+
Free = "FREE",
|
|
77710
77330
|
Standard = "STANDARD"
|
|
77711
77331
|
}
|
|
77712
77332
|
export declare type MarketplaceStoreEditionsByAppKeyInput = {
|
|
@@ -77915,7 +77535,7 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
77915
77535
|
createOrUpdateReview: MarketplaceStoreCreateOrUpdateReviewResponse;
|
|
77916
77536
|
createOrUpdateReviewResponse: MarketplaceStoreCreateOrUpdateReviewResponseResponse;
|
|
77917
77537
|
deleteReview: MarketplaceStoreDeleteReviewResponse;
|
|
77918
|
-
deleteReviewResponse:
|
|
77538
|
+
deleteReviewResponse: MarketplaceStoreDeleteReviewResponse;
|
|
77919
77539
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
77920
77540
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
77921
77541
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
@@ -78112,6 +77732,8 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
78112
77732
|
appReviewById?: Maybe<MarketplaceStoreReviewByIdResponse>;
|
|
78113
77733
|
appReviewsByAppId: MarketplaceStoreReviewsResponse;
|
|
78114
77734
|
appReviewsByAppKey: MarketplaceStoreReviewsResponse;
|
|
77735
|
+
appSoftwareVersionListingByAppId?: Maybe<MarketplaceStoreAppSoftwareVersionListingResponse>;
|
|
77736
|
+
appSoftwareVersionListingByAppKey?: Maybe<MarketplaceStoreAppSoftwareVersionListingResponse>;
|
|
78115
77737
|
billingSystem: MarketplaceStoreBillingSystemResponse;
|
|
78116
77738
|
bundleDetail: MarketplaceStoreBundleDetailResponse;
|
|
78117
77739
|
category: MarketplaceStoreCategoryResponse;
|
|
@@ -78148,6 +77770,14 @@ export declare type MarketplaceStoreQueryApiAppReviewsByAppKeyArgs = {
|
|
|
78148
77770
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
78149
77771
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
78150
77772
|
};
|
|
77773
|
+
export declare type MarketplaceStoreQueryApiAppSoftwareVersionListingByAppIdArgs = {
|
|
77774
|
+
appId: Scalars['ID']['input'];
|
|
77775
|
+
buildNumber: Scalars['ID']['input'];
|
|
77776
|
+
};
|
|
77777
|
+
export declare type MarketplaceStoreQueryApiAppSoftwareVersionListingByAppKeyArgs = {
|
|
77778
|
+
appKey: Scalars['String']['input'];
|
|
77779
|
+
buildNumber: Scalars['ID']['input'];
|
|
77780
|
+
};
|
|
78151
77781
|
export declare type MarketplaceStoreQueryApiBillingSystemArgs = {
|
|
78152
77782
|
billingSystemInput: MarketplaceStoreBillingSystemInput;
|
|
78153
77783
|
};
|
|
@@ -78507,15 +78137,32 @@ export declare type MercuryChangeProposalConnection = {
|
|
|
78507
78137
|
pageInfo: PageInfo;
|
|
78508
78138
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
78509
78139
|
};
|
|
78140
|
+
export declare type MercuryChangeProposalCountByStatus = {
|
|
78141
|
+
__typename?: 'MercuryChangeProposalCountByStatus';
|
|
78142
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
78143
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78144
|
+
};
|
|
78510
78145
|
export declare type MercuryChangeProposalEdge = {
|
|
78511
78146
|
__typename?: 'MercuryChangeProposalEdge';
|
|
78512
78147
|
cursor: Scalars['String']['output'];
|
|
78513
78148
|
node?: Maybe<MercuryChangeProposal>;
|
|
78514
78149
|
};
|
|
78150
|
+
export declare type MercuryChangeProposalFundSummary = {
|
|
78151
|
+
__typename?: 'MercuryChangeProposalFundSummary';
|
|
78152
|
+
changeProposalId: Scalars['ID']['output'];
|
|
78153
|
+
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78154
|
+
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78155
|
+
};
|
|
78515
78156
|
export declare type MercuryChangeProposalImpact = {
|
|
78516
78157
|
__typename?: 'MercuryChangeProposalImpact';
|
|
78517
78158
|
value: Scalars['Int']['output'];
|
|
78518
78159
|
};
|
|
78160
|
+
export declare type MercuryChangeProposalPositionSummary = {
|
|
78161
|
+
__typename?: 'MercuryChangeProposalPositionSummary';
|
|
78162
|
+
changeProposalId: Scalars['ID']['output'];
|
|
78163
|
+
movedCount?: Maybe<Scalars['Int']['output']>;
|
|
78164
|
+
newCount?: Maybe<Scalars['Int']['output']>;
|
|
78165
|
+
};
|
|
78519
78166
|
export declare type MercuryChangeProposalSort = {
|
|
78520
78167
|
field: MercuryChangeProposalSortField;
|
|
78521
78168
|
order: SortOrder;
|
|
@@ -78540,6 +78187,18 @@ export declare type MercuryChangeProposalStatusTransitions = {
|
|
|
78540
78187
|
__typename?: 'MercuryChangeProposalStatusTransitions';
|
|
78541
78188
|
available: Array<MercuryChangeProposalStatusTransition>;
|
|
78542
78189
|
};
|
|
78190
|
+
export declare type MercuryChangeProposalSummaryByStatus = {
|
|
78191
|
+
__typename?: 'MercuryChangeProposalSummaryByStatus';
|
|
78192
|
+
countByStatus?: Maybe<Array<Maybe<MercuryChangeProposalCountByStatus>>>;
|
|
78193
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
78194
|
+
};
|
|
78195
|
+
export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
78196
|
+
__typename?: 'MercuryChangeProposalSummaryForStrategicEvent';
|
|
78197
|
+
changeProposal?: Maybe<MercuryChangeProposalSummaryByStatus>;
|
|
78198
|
+
newFunds?: Maybe<MercuryNewFundSummaryByChangeProposalStatus>;
|
|
78199
|
+
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
78200
|
+
strategicEventId: Scalars['ID']['output'];
|
|
78201
|
+
};
|
|
78543
78202
|
export declare type MercuryChangeSort = {
|
|
78544
78203
|
field: MercuryChangeSortField;
|
|
78545
78204
|
order: SortOrder;
|
|
@@ -78559,6 +78218,12 @@ export declare type MercuryChangeSummary = {
|
|
|
78559
78218
|
positionChangeSummary?: Maybe<MercuryPositionChangeSummary>;
|
|
78560
78219
|
strategicEventId: Scalars['ID']['output'];
|
|
78561
78220
|
};
|
|
78221
|
+
export declare type MercuryChangeSummaryForChangeProposal = {
|
|
78222
|
+
__typename?: 'MercuryChangeSummaryForChangeProposal';
|
|
78223
|
+
changeProposalId: Scalars['ID']['output'];
|
|
78224
|
+
fundChangeSummary?: Maybe<MercuryChangeProposalFundSummary>;
|
|
78225
|
+
positionChangeSummary?: Maybe<MercuryChangeProposalPositionSummary>;
|
|
78226
|
+
};
|
|
78562
78227
|
export declare type MercuryChangeSummaryInput = {
|
|
78563
78228
|
focusAreaId: Scalars['ID']['input'];
|
|
78564
78229
|
hydrationContextId: Scalars['ID']['input'];
|
|
@@ -78893,6 +78558,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
78893
78558
|
goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
|
|
78894
78559
|
headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
|
|
78895
78560
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
78561
|
+
icon: MercuryFocusAreaIcon;
|
|
78896
78562
|
id: Scalars['ID']['output'];
|
|
78897
78563
|
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
78898
78564
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
@@ -79025,6 +78691,10 @@ export declare enum MercuryFocusAreaHierarchySortField {
|
|
|
79025
78691
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
79026
78692
|
Name = "NAME"
|
|
79027
78693
|
}
|
|
78694
|
+
export declare type MercuryFocusAreaIcon = {
|
|
78695
|
+
__typename?: 'MercuryFocusAreaIcon';
|
|
78696
|
+
url: Scalars['String']['output'];
|
|
78697
|
+
};
|
|
79028
78698
|
export declare type MercuryFocusAreaLink = Node & {
|
|
79029
78699
|
__typename?: 'MercuryFocusAreaLink';
|
|
79030
78700
|
childFocusAreaId: Scalars['String']['output'];
|
|
@@ -79495,6 +79165,26 @@ export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
|
79495
79165
|
export declare type MercuryMutationApiValidateFocusAreaArchivalArgs = {
|
|
79496
79166
|
input: MercuryArchiveFocusAreaValidationInput;
|
|
79497
79167
|
};
|
|
79168
|
+
export declare type MercuryNewFundSummaryByChangeProposalStatus = {
|
|
79169
|
+
__typename?: 'MercuryNewFundSummaryByChangeProposalStatus';
|
|
79170
|
+
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
79171
|
+
totalByStatus?: Maybe<Array<Maybe<MercuryNewFundsByChangeProposalStatus>>>;
|
|
79172
|
+
};
|
|
79173
|
+
export declare type MercuryNewFundsByChangeProposalStatus = {
|
|
79174
|
+
__typename?: 'MercuryNewFundsByChangeProposalStatus';
|
|
79175
|
+
amount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
79176
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
79177
|
+
};
|
|
79178
|
+
export declare type MercuryNewPositionCountByStatus = {
|
|
79179
|
+
__typename?: 'MercuryNewPositionCountByStatus';
|
|
79180
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
79181
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
79182
|
+
};
|
|
79183
|
+
export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
79184
|
+
__typename?: 'MercuryNewPositionSummaryByChangeProposalStatus';
|
|
79185
|
+
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
79186
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79187
|
+
};
|
|
79498
79188
|
export declare type MercuryOriginalProjectStatus = {
|
|
79499
79189
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
79500
79190
|
};
|
|
@@ -80247,10 +79937,12 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
80247
79937
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
80248
79938
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
80249
79939
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
79940
|
+
changeProposalSummaryForStrategicEvent?: Maybe<MercuryChangeProposalSummaryForStrategicEvent>;
|
|
80250
79941
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
80251
79942
|
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
80252
79943
|
changeSummariesReport?: Maybe<MercuryChangeSummaries>;
|
|
80253
79944
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
79945
|
+
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
80254
79946
|
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
80255
79947
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
80256
79948
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -80266,6 +79958,9 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
|
80266
79958
|
export declare type MercuryStrategicEventsQueryApiChangeProposalStatusesArgs = {
|
|
80267
79959
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
80268
79960
|
};
|
|
79961
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalSummaryForStrategicEventArgs = {
|
|
79962
|
+
strategicEventId: Scalars['ID']['input'];
|
|
79963
|
+
};
|
|
80269
79964
|
export declare type MercuryStrategicEventsQueryApiChangeProposalsArgs = {
|
|
80270
79965
|
ids: Array<Scalars['ID']['input']>;
|
|
80271
79966
|
};
|
|
@@ -80283,6 +79978,9 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArg
|
|
|
80283
79978
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
80284
79979
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
80285
79980
|
};
|
|
79981
|
+
export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposalArgs = {
|
|
79982
|
+
changeProposalId: Scalars['ID']['input'];
|
|
79983
|
+
};
|
|
80286
79984
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
80287
79985
|
inputs: Array<MercuryChangeSummaryInput>;
|
|
80288
79986
|
};
|
|
@@ -80861,7 +80559,9 @@ export declare type Mutation = {
|
|
|
80861
80559
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
80862
80560
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
80863
80561
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
80562
|
+
agentStudio_createCustomAction?: Maybe<AgentStudioCreateCustomActionPayload>;
|
|
80864
80563
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
80564
|
+
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
80865
80565
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80866
80566
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
80867
80567
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
@@ -81050,9 +80750,6 @@ export declare type Mutation = {
|
|
|
81050
80750
|
confluenceLegacy_watchBlogs?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
81051
80751
|
confluenceLegacy_watchContent?: Maybe<ConfluenceLegacyWatchContentPayload>;
|
|
81052
80752
|
confluenceLegacy_watchSpace?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
81053
|
-
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
81054
|
-
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
81055
|
-
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
81056
80753
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
81057
80754
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
81058
80755
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -81065,16 +80762,24 @@ export declare type Mutation = {
|
|
|
81065
80762
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
81066
80763
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
81067
80764
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
80765
|
+
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
81068
80766
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
81069
80767
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
80768
|
+
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
80769
|
+
confluence_markCommentAsDangling?: Maybe<ConfluenceMarkCommentAsDanglingPayload>;
|
|
81070
80770
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
81071
80771
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
81072
80772
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
81073
80773
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
80774
|
+
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
80775
|
+
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
81074
80776
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
81075
80777
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
80778
|
+
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
80779
|
+
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
81076
80780
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
81077
80781
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
80782
|
+
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
81078
80783
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
81079
80784
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
81080
80785
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
@@ -81111,6 +80816,7 @@ export declare type Mutation = {
|
|
|
81111
80816
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
81112
80817
|
createInlineComment?: Maybe<Comment>;
|
|
81113
80818
|
createInlineTaskNotification?: Maybe<CreateInlineTaskNotificationPayload>;
|
|
80819
|
+
createInvitationUrl?: Maybe<CreateInvitationUrlPayload>;
|
|
81114
80820
|
createLivePage?: Maybe<Content>;
|
|
81115
80821
|
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
81116
80822
|
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
@@ -81463,10 +81169,18 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
81463
81169
|
cloudId: Scalars['String']['input'];
|
|
81464
81170
|
input: AgentStudioCreateAgentInput;
|
|
81465
81171
|
};
|
|
81172
|
+
export declare type MutationAgentStudio_CreateCustomActionArgs = {
|
|
81173
|
+
cloudId: Scalars['String']['input'];
|
|
81174
|
+
input: AgentStudioCreateCustomActionInput;
|
|
81175
|
+
};
|
|
81466
81176
|
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
81467
81177
|
id: Scalars['ID']['input'];
|
|
81468
81178
|
input: AgentStudioActionConfigurationInput;
|
|
81469
81179
|
};
|
|
81180
|
+
export declare type MutationAgentStudio_UpdateAgentAsFavouriteArgs = {
|
|
81181
|
+
favourite: Scalars['Boolean']['input'];
|
|
81182
|
+
id: Scalars['ID']['input'];
|
|
81183
|
+
};
|
|
81470
81184
|
export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
81471
81185
|
id: Scalars['ID']['input'];
|
|
81472
81186
|
input: AgentStudioUpdateAgentDetailsInput;
|
|
@@ -82042,15 +81756,6 @@ export declare type MutationConfluenceLegacy_WatchContentArgs = {
|
|
|
82042
81756
|
export declare type MutationConfluenceLegacy_WatchSpaceArgs = {
|
|
82043
81757
|
watchSpaceInput: ConfluenceLegacyWatchSpaceInput;
|
|
82044
81758
|
};
|
|
82045
|
-
export declare type MutationConfluenceV2_CreatePageArgs = {
|
|
82046
|
-
input: ConfluenceV2CreatePageInput;
|
|
82047
|
-
};
|
|
82048
|
-
export declare type MutationConfluenceV2_DeletePageArgs = {
|
|
82049
|
-
id: Scalars['ID']['input'];
|
|
82050
|
-
};
|
|
82051
|
-
export declare type MutationConfluenceV2_UpdatePageArgs = {
|
|
82052
|
-
input: ConfluenceV2UpdatePageInput;
|
|
82053
|
-
};
|
|
82054
81759
|
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
82055
81760
|
cloudId: Scalars['ID']['input'];
|
|
82056
81761
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
@@ -82097,6 +81802,9 @@ export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
|
82097
81802
|
cloudId: Scalars['ID']['input'];
|
|
82098
81803
|
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
82099
81804
|
};
|
|
81805
|
+
export declare type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
81806
|
+
cloudId: Scalars['ID']['input'];
|
|
81807
|
+
};
|
|
82100
81808
|
export declare type MutationConfluence_InviteUsersArgs = {
|
|
82101
81809
|
cloudId: Scalars['ID']['input'];
|
|
82102
81810
|
input: ConfluenceInviteUserInput;
|
|
@@ -82105,6 +81813,14 @@ export declare type MutationConfluence_MakeSubCalendarPrivateUrlArgs = {
|
|
|
82105
81813
|
cloudId: Scalars['ID']['input'];
|
|
82106
81814
|
input: ConfluenceMakeSubCalendarPrivateUrlInput;
|
|
82107
81815
|
};
|
|
81816
|
+
export declare type MutationConfluence_MarkAllCommentsAsReadArgs = {
|
|
81817
|
+
cloudId: Scalars['ID']['input'];
|
|
81818
|
+
input: ConfluenceMarkAllContainerCommentsAsReadInput;
|
|
81819
|
+
};
|
|
81820
|
+
export declare type MutationConfluence_MarkCommentAsDanglingArgs = {
|
|
81821
|
+
cloudId: Scalars['ID']['input'];
|
|
81822
|
+
input: ConfluenceMarkCommentAsDanglingInput;
|
|
81823
|
+
};
|
|
82108
81824
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
82109
81825
|
cloudId: Scalars['ID']['input'];
|
|
82110
81826
|
commentId: Scalars['ID']['input'];
|
|
@@ -82116,11 +81832,20 @@ export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
|
82116
81832
|
export declare type MutationConfluence_ResolveCommentsByContentIdArgs = {
|
|
82117
81833
|
cloudId: Scalars['ID']['input'];
|
|
82118
81834
|
contentId: Scalars['ID']['input'];
|
|
81835
|
+
resolveView?: InputMaybe<ConfluenceCommentResolveAllLocation>;
|
|
82119
81836
|
};
|
|
82120
81837
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
82121
81838
|
cloudId: Scalars['ID']['input'];
|
|
82122
81839
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
82123
81840
|
};
|
|
81841
|
+
export declare type MutationConfluence_UnmarkCommentAsDanglingArgs = {
|
|
81842
|
+
cloudId: Scalars['ID']['input'];
|
|
81843
|
+
input: ConfluenceUnmarkCommentAsDanglingInput;
|
|
81844
|
+
};
|
|
81845
|
+
export declare type MutationConfluence_UnwatchLabelArgs = {
|
|
81846
|
+
cloudId: Scalars['ID']['input'];
|
|
81847
|
+
input: ConfluenceLabelWatchInput;
|
|
81848
|
+
};
|
|
82124
81849
|
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
82125
81850
|
cloudId: Scalars['ID']['input'];
|
|
82126
81851
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
@@ -82129,6 +81854,14 @@ export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
|
82129
81854
|
cloudId: Scalars['ID']['input'];
|
|
82130
81855
|
input: ConfluenceUpdateCustomRoleInput;
|
|
82131
81856
|
};
|
|
81857
|
+
export declare type MutationConfluence_UpdateDefaultTitleEmojiArgs = {
|
|
81858
|
+
cloudId: Scalars['ID']['input'];
|
|
81859
|
+
input: ConfluenceUpdateDefaultTitleEmojiInput;
|
|
81860
|
+
};
|
|
81861
|
+
export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
81862
|
+
cloudId: Scalars['ID']['input'];
|
|
81863
|
+
input: ConfluenceUpdateNav4OptInInput;
|
|
81864
|
+
};
|
|
82132
81865
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
82133
81866
|
cloudId: Scalars['ID']['input'];
|
|
82134
81867
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -82137,6 +81870,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
|
82137
81870
|
cloudId: Scalars['ID']['input'];
|
|
82138
81871
|
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
82139
81872
|
};
|
|
81873
|
+
export declare type MutationConfluence_WatchLabelArgs = {
|
|
81874
|
+
cloudId: Scalars['ID']['input'];
|
|
81875
|
+
input: ConfluenceLabelWatchInput;
|
|
81876
|
+
};
|
|
82140
81877
|
export declare type MutationConfluence_WatchSubCalendarArgs = {
|
|
82141
81878
|
cloudId: Scalars['ID']['input'];
|
|
82142
81879
|
input: ConfluenceWatchSubCalendarInput;
|
|
@@ -83735,6 +83472,10 @@ export declare type OpsgenieTeamMemberEdge = {
|
|
|
83735
83472
|
cursor: Scalars['String']['output'];
|
|
83736
83473
|
node?: Maybe<OpsgenieTeamMember>;
|
|
83737
83474
|
};
|
|
83475
|
+
export declare type Organization = {
|
|
83476
|
+
__typename?: 'Organization';
|
|
83477
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
83478
|
+
};
|
|
83738
83479
|
export declare type OrganizationContext = {
|
|
83739
83480
|
__typename?: 'OrganizationContext';
|
|
83740
83481
|
hasPaidProduct?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -83753,8 +83494,13 @@ export declare type OriginalSplitIssue = {
|
|
|
83753
83494
|
};
|
|
83754
83495
|
export declare type OutgoingLinks = {
|
|
83755
83496
|
__typename?: 'OutgoingLinks';
|
|
83497
|
+
externalOutgoingLinks?: Maybe<ConfluenceExternalLinkConnection>;
|
|
83756
83498
|
internalOutgoingLinks?: Maybe<PaginatedContentList>;
|
|
83757
83499
|
};
|
|
83500
|
+
export declare type OutgoingLinksExternalOutgoingLinksArgs = {
|
|
83501
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83502
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83503
|
+
};
|
|
83758
83504
|
export declare type OutgoingLinksInternalOutgoingLinksArgs = {
|
|
83759
83505
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83760
83506
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -85620,10 +85366,45 @@ export declare type PublicLinkConnection = {
|
|
|
85620
85366
|
nodes: Array<Maybe<PublicLink>>;
|
|
85621
85367
|
pageInfo: PublicLinkPageInfo;
|
|
85622
85368
|
};
|
|
85369
|
+
export declare type PublicLinkContentBody = {
|
|
85370
|
+
__typename?: 'PublicLinkContentBody';
|
|
85371
|
+
mediaToken?: Maybe<PublicLinkMediaToken>;
|
|
85372
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
85373
|
+
};
|
|
85374
|
+
export declare type PublicLinkContentRepresentationMap = {
|
|
85375
|
+
__typename?: 'PublicLinkContentRepresentationMap';
|
|
85376
|
+
atlas_doc_format?: Maybe<PublicLinkContentBody>;
|
|
85377
|
+
};
|
|
85378
|
+
export declare enum PublicLinkContentType {
|
|
85379
|
+
Page = "page",
|
|
85380
|
+
Whiteboard = "whiteboard"
|
|
85381
|
+
}
|
|
85623
85382
|
export declare enum PublicLinkDefaultSpaceStatus {
|
|
85624
85383
|
Off = "OFF",
|
|
85625
85384
|
On = "ON"
|
|
85626
85385
|
}
|
|
85386
|
+
export declare type PublicLinkHistory = {
|
|
85387
|
+
__typename?: 'PublicLinkHistory';
|
|
85388
|
+
createdBy?: Maybe<PublicLinkPerson>;
|
|
85389
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
85390
|
+
lastOwnedBy?: Maybe<PublicLinkPerson>;
|
|
85391
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
85392
|
+
ownedBy?: Maybe<PublicLinkPerson>;
|
|
85393
|
+
};
|
|
85394
|
+
export declare type PublicLinkInformation = {
|
|
85395
|
+
__typename?: 'PublicLinkInformation';
|
|
85396
|
+
body?: Maybe<PublicLinkContentRepresentationMap>;
|
|
85397
|
+
history?: Maybe<PublicLinkHistory>;
|
|
85398
|
+
id: Scalars['ID']['output'];
|
|
85399
|
+
referenceId?: Maybe<Scalars['String']['output']>;
|
|
85400
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
85401
|
+
type?: Maybe<PublicLinkContentType>;
|
|
85402
|
+
version?: Maybe<PublicLinkVersion>;
|
|
85403
|
+
};
|
|
85404
|
+
export declare type PublicLinkMediaToken = {
|
|
85405
|
+
__typename?: 'PublicLinkMediaToken';
|
|
85406
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
85407
|
+
};
|
|
85627
85408
|
export declare type PublicLinkOnboardingReference = {
|
|
85628
85409
|
__typename?: 'PublicLinkOnboardingReference';
|
|
85629
85410
|
publicLinkId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -85671,6 +85452,12 @@ export declare enum PublicLinkPermissionsObjectType {
|
|
|
85671
85452
|
export declare enum PublicLinkPermissionsType {
|
|
85672
85453
|
Edit = "EDIT"
|
|
85673
85454
|
}
|
|
85455
|
+
export declare type PublicLinkPerson = {
|
|
85456
|
+
__typename?: 'PublicLinkPerson';
|
|
85457
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
85458
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
85459
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
85460
|
+
};
|
|
85674
85461
|
export declare type PublicLinkSitePayload = {
|
|
85675
85462
|
__typename?: 'PublicLinkSitePayload';
|
|
85676
85463
|
status: PublicLinkSiteStatus;
|
|
@@ -85736,6 +85523,15 @@ export declare enum PublicLinkStatus {
|
|
|
85736
85523
|
SpaceBlocked = "SPACE_BLOCKED",
|
|
85737
85524
|
SpaceDisabled = "SPACE_DISABLED"
|
|
85738
85525
|
}
|
|
85526
|
+
export declare type PublicLinkVersion = {
|
|
85527
|
+
__typename?: 'PublicLinkVersion';
|
|
85528
|
+
by?: Maybe<PublicLinkPerson>;
|
|
85529
|
+
confRev?: Maybe<Scalars['String']['output']>;
|
|
85530
|
+
contentTypeModified?: Maybe<Scalars['Boolean']['output']>;
|
|
85531
|
+
friendlyWhen?: Maybe<Scalars['String']['output']>;
|
|
85532
|
+
number?: Maybe<Scalars['Int']['output']>;
|
|
85533
|
+
syncRev?: Maybe<Scalars['String']['output']>;
|
|
85534
|
+
};
|
|
85739
85535
|
export declare enum PublicLinksByCriteriaOrder {
|
|
85740
85536
|
DateEnabled = "DATE_ENABLED",
|
|
85741
85537
|
Status = "STATUS",
|
|
@@ -85760,6 +85556,7 @@ export declare type PublishConditionsDialog = {
|
|
|
85760
85556
|
export declare type PublishedContentProperties = {
|
|
85761
85557
|
__typename?: 'PublishedContentProperties';
|
|
85762
85558
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
85559
|
+
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
85763
85560
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
85764
85561
|
};
|
|
85765
85562
|
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
@@ -85842,6 +85639,8 @@ export declare type Query = {
|
|
|
85842
85639
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
85843
85640
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
85844
85641
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
85642
|
+
agentStudio_customActionById?: Maybe<AgentStudioCustomActionResult>;
|
|
85643
|
+
agentStudio_customActionsByIds?: Maybe<Array<Maybe<AgentStudioCustomAction>>>;
|
|
85845
85644
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85846
85645
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85847
85646
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -85879,6 +85678,7 @@ export declare type Query = {
|
|
|
85879
85678
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
85880
85679
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
85881
85680
|
boardScope?: Maybe<BoardScope>;
|
|
85681
|
+
buildsByApp?: Maybe<BuildConnection>;
|
|
85882
85682
|
bulkPermitted?: Maybe<Array<Maybe<BulkPermittedResponse>>>;
|
|
85883
85683
|
canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
85884
85684
|
canvasToken?: Maybe<CanvasToken>;
|
|
@@ -85889,9 +85689,11 @@ export declare type Query = {
|
|
|
85889
85689
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
85890
85690
|
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
85891
85691
|
channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
85692
|
+
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
85892
85693
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
85893
85694
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
85894
85695
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
85696
|
+
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
85895
85697
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
85896
85698
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
85897
85699
|
codeInJira?: Maybe<CodeInJira>;
|
|
@@ -86091,45 +85893,22 @@ export declare type Query = {
|
|
|
86091
85893
|
confluenceLegacy_webItems?: Maybe<Array<Maybe<ConfluenceLegacyWebItem>>>;
|
|
86092
85894
|
confluenceLegacy_webPanels?: Maybe<Array<Maybe<ConfluenceLegacyWebPanel>>>;
|
|
86093
85895
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
86094
|
-
|
|
86095
|
-
confluenceV2_blogPost?: Maybe<ConfluenceV2BlogPost>;
|
|
86096
|
-
confluenceV2_blogPosts?: Maybe<Array<Maybe<ConfluenceV2BlogPost>>>;
|
|
86097
|
-
confluenceV2_blogPostsForSpace?: Maybe<ConfluenceV2BlogPostConnection>;
|
|
86098
|
-
confluenceV2_contentPropertiesForAttachment?: Maybe<Array<Maybe<ConfluenceV2ContentProperty>>>;
|
|
86099
|
-
confluenceV2_contentPropertiesForBlogPost?: Maybe<Array<Maybe<ConfluenceV2ContentProperty>>>;
|
|
86100
|
-
confluenceV2_contentPropertiesForComment?: Maybe<Array<Maybe<ConfluenceV2ContentProperty>>>;
|
|
86101
|
-
confluenceV2_contentPropertiesForPage?: Maybe<Array<Maybe<ConfluenceV2ContentProperty>>>;
|
|
86102
|
-
confluenceV2_footerComment?: Maybe<ConfluenceV2FooterComment>;
|
|
86103
|
-
confluenceV2_footerCommentsForBlogPost?: Maybe<ConfluenceV2FooterCommentConnection>;
|
|
86104
|
-
confluenceV2_footerCommentsForPage?: Maybe<ConfluenceV2FooterCommentConnection>;
|
|
86105
|
-
confluenceV2_footerCommentsForParentFooterComment?: Maybe<ConfluenceV2FooterCommentConnection>;
|
|
86106
|
-
confluenceV2_inlineComment?: Maybe<ConfluenceV2InlineComment>;
|
|
86107
|
-
confluenceV2_inlineCommentsForBlogPost?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
86108
|
-
confluenceV2_inlineCommentsForPage?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
86109
|
-
confluenceV2_inlineCommentsForParentInlineComment?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
86110
|
-
confluenceV2_macros?: Maybe<ConfluenceV2MacroConnection>;
|
|
86111
|
-
confluenceV2_organization?: Maybe<ConfluenceV2Organization>;
|
|
86112
|
-
confluenceV2_page?: Maybe<ConfluenceV2Page>;
|
|
86113
|
-
confluenceV2_pages?: Maybe<Array<Maybe<ConfluenceV2Page>>>;
|
|
86114
|
-
confluenceV2_pagesForSpace?: Maybe<ConfluenceV2PageConnection>;
|
|
86115
|
-
confluenceV2_renderedMacro?: Maybe<ConfluenceV2RenderedMacro>;
|
|
86116
|
-
confluenceV2_space?: Maybe<ConfluenceV2Space>;
|
|
86117
|
-
confluenceV2_spaceForPage?: Maybe<ConfluenceV2SpacePage>;
|
|
86118
|
-
confluenceV2_spaceLookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
86119
|
-
confluenceV2_spaceProperties?: Maybe<ConfluenceV2SpacePropertyConnection>;
|
|
86120
|
-
confluenceV2_spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
86121
|
-
confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
86122
|
-
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
85896
|
+
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
86123
85897
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
86124
85898
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
86125
85899
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
85900
|
+
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
85901
|
+
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
86126
85902
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
86127
85903
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
85904
|
+
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
86128
85905
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
86129
85906
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
85907
|
+
confluence_expandTypeFromJira?: Maybe<ConfluenceExpandTypeFromJira>;
|
|
86130
85908
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
86131
85909
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
86132
85910
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
85911
|
+
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
86133
85912
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
86134
85913
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
86135
85914
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -86216,7 +85995,6 @@ export declare type Query = {
|
|
|
86216
85995
|
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
86217
85996
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
86218
85997
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
86219
|
-
devOpsTools?: Maybe<DevOpsTools>;
|
|
86220
85998
|
devai_autodevAgentForJob?: Maybe<DevAiRovoAgent>;
|
|
86221
85999
|
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
86222
86000
|
devai_autodevIssueScopingScoreForJob?: Maybe<DevAiIssueScopingResult>;
|
|
@@ -86314,6 +86092,7 @@ export declare type Query = {
|
|
|
86314
86092
|
instanceAnalyticsCount?: Maybe<InstanceAnalyticsCount>;
|
|
86315
86093
|
intentdetection_getIntent?: Maybe<IntentDetectionResponse>;
|
|
86316
86094
|
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
|
|
86095
|
+
invitationUrls?: Maybe<InvitationUrlsPayload>;
|
|
86317
86096
|
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
86318
86097
|
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
86319
86098
|
ipmInlineDialog?: Maybe<ContentPlatformIpmInlineDialog>;
|
|
@@ -86332,9 +86111,6 @@ export declare type Query = {
|
|
|
86332
86111
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
86333
86112
|
jiraReleases?: Maybe<JiraReleases>;
|
|
86334
86113
|
jiraServers?: Maybe<JiraServersResult>;
|
|
86335
|
-
jira_associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86336
|
-
jira_associatedFieldConfigSchemesCount?: Maybe<Scalars['Int']['output']>;
|
|
86337
|
-
jira_availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86338
86114
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
86339
86115
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
86340
86116
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
@@ -86372,6 +86148,7 @@ export declare type Query = {
|
|
|
86372
86148
|
loom_video?: Maybe<LoomVideo>;
|
|
86373
86149
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
86374
86150
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
86151
|
+
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
86375
86152
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
86376
86153
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
86377
86154
|
macros?: Maybe<MacroConnection>;
|
|
@@ -86402,6 +86179,7 @@ export declare type Query = {
|
|
|
86402
86179
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
86403
86180
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
86404
86181
|
orgDefaultClassificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
86182
|
+
organization?: Maybe<Organization>;
|
|
86405
86183
|
organizationContext?: Maybe<OrganizationContext>;
|
|
86406
86184
|
page?: Maybe<Page>;
|
|
86407
86185
|
pageActivity?: Maybe<PaginatedPageActivity>;
|
|
@@ -86443,6 +86221,7 @@ export declare type Query = {
|
|
|
86443
86221
|
productListing?: Maybe<ProductListingResult>;
|
|
86444
86222
|
productListings: Array<ProductListingResult>;
|
|
86445
86223
|
ptpage?: Maybe<PtPage>;
|
|
86224
|
+
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
86446
86225
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
86447
86226
|
publicLinkPage?: Maybe<PublicLinkPage>;
|
|
86448
86227
|
publicLinkPermissionsForObject?: Maybe<PublicLinkPermissions>;
|
|
@@ -86590,10 +86369,17 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
86590
86369
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
86591
86370
|
id: Scalars['ID']['input'];
|
|
86592
86371
|
};
|
|
86372
|
+
export declare type QueryAgentStudio_CustomActionByIdArgs = {
|
|
86373
|
+
id: Scalars['ID']['input'];
|
|
86374
|
+
};
|
|
86375
|
+
export declare type QueryAgentStudio_CustomActionsByIdsArgs = {
|
|
86376
|
+
ids: Array<Scalars['ID']['input']>;
|
|
86377
|
+
};
|
|
86593
86378
|
export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
86594
86379
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86595
86380
|
cloudId: Scalars['String']['input'];
|
|
86596
86381
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86382
|
+
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
86597
86383
|
};
|
|
86598
86384
|
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
86599
86385
|
cloudId: Scalars['String']['input'];
|
|
@@ -86760,6 +86546,13 @@ export declare type QueryBoardScopeArgs = {
|
|
|
86760
86546
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
86761
86547
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86762
86548
|
};
|
|
86549
|
+
export declare type QueryBuildsByAppArgs = {
|
|
86550
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86551
|
+
appId: Scalars['ID']['input'];
|
|
86552
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
86553
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86554
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
86555
|
+
};
|
|
86763
86556
|
export declare type QueryBulkPermittedArgs = {
|
|
86764
86557
|
dontRequirePrincipalsInSite?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
86765
86558
|
permissionIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -86808,6 +86601,10 @@ export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
|
86808
86601
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
86809
86602
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
86810
86603
|
};
|
|
86604
|
+
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
86605
|
+
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
86606
|
+
requestType?: InputMaybe<Scalars['String']['input']>;
|
|
86607
|
+
};
|
|
86811
86608
|
export declare type QueryClassificationLevelArgs = {
|
|
86812
86609
|
id: Scalars['String']['input'];
|
|
86813
86610
|
};
|
|
@@ -87665,123 +87462,9 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
87665
87462
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87666
87463
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
87667
87464
|
};
|
|
87668
|
-
export declare type
|
|
87669
|
-
|
|
87670
|
-
|
|
87671
|
-
export declare type QueryConfluenceV2_BlogPostArgs = {
|
|
87672
|
-
id: Scalars['ID']['input'];
|
|
87673
|
-
status?: InputMaybe<Array<ConfluenceV2BlogStatus>>;
|
|
87674
|
-
};
|
|
87675
|
-
export declare type QueryConfluenceV2_BlogPostsArgs = {
|
|
87676
|
-
ids: Array<Scalars['ID']['input']>;
|
|
87677
|
-
status?: InputMaybe<Array<ConfluenceV2BulkBlogPostStatus>>;
|
|
87678
|
-
};
|
|
87679
|
-
export declare type QueryConfluenceV2_BlogPostsForSpaceArgs = {
|
|
87680
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87681
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87682
|
-
id: Scalars['ID']['input'];
|
|
87683
|
-
};
|
|
87684
|
-
export declare type QueryConfluenceV2_ContentPropertiesForAttachmentArgs = {
|
|
87685
|
-
attachmentId: Scalars['ID']['input'];
|
|
87686
|
-
keys: Array<Scalars['String']['input']>;
|
|
87687
|
-
};
|
|
87688
|
-
export declare type QueryConfluenceV2_ContentPropertiesForBlogPostArgs = {
|
|
87689
|
-
blogPostId: Scalars['ID']['input'];
|
|
87690
|
-
keys: Array<Scalars['String']['input']>;
|
|
87691
|
-
};
|
|
87692
|
-
export declare type QueryConfluenceV2_ContentPropertiesForCommentArgs = {
|
|
87693
|
-
commentId: Scalars['ID']['input'];
|
|
87694
|
-
keys: Array<Scalars['String']['input']>;
|
|
87695
|
-
};
|
|
87696
|
-
export declare type QueryConfluenceV2_ContentPropertiesForPageArgs = {
|
|
87697
|
-
keys: Array<Scalars['String']['input']>;
|
|
87698
|
-
pageId: Scalars['ID']['input'];
|
|
87699
|
-
};
|
|
87700
|
-
export declare type QueryConfluenceV2_FooterCommentArgs = {
|
|
87701
|
-
id: Scalars['ID']['input'];
|
|
87702
|
-
};
|
|
87703
|
-
export declare type QueryConfluenceV2_FooterCommentsForBlogPostArgs = {
|
|
87704
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87705
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87706
|
-
id: Scalars['ID']['input'];
|
|
87707
|
-
status?: InputMaybe<Array<ConfluenceV2FooterCommentStatus>>;
|
|
87708
|
-
};
|
|
87709
|
-
export declare type QueryConfluenceV2_FooterCommentsForPageArgs = {
|
|
87710
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87711
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87712
|
-
id: Scalars['ID']['input'];
|
|
87713
|
-
status?: InputMaybe<Array<ConfluenceV2FooterCommentStatus>>;
|
|
87714
|
-
};
|
|
87715
|
-
export declare type QueryConfluenceV2_FooterCommentsForParentFooterCommentArgs = {
|
|
87716
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87717
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87718
|
-
id: Scalars['ID']['input'];
|
|
87719
|
-
};
|
|
87720
|
-
export declare type QueryConfluenceV2_InlineCommentArgs = {
|
|
87721
|
-
id: Scalars['ID']['input'];
|
|
87722
|
-
};
|
|
87723
|
-
export declare type QueryConfluenceV2_InlineCommentsForBlogPostArgs = {
|
|
87724
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87725
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87726
|
-
id: Scalars['ID']['input'];
|
|
87727
|
-
resolutionStatus?: InputMaybe<Array<ConfluenceV2InlineCommentResolutionStatus>>;
|
|
87728
|
-
status?: InputMaybe<Array<ConfluenceV2InlineCommentStatus>>;
|
|
87729
|
-
};
|
|
87730
|
-
export declare type QueryConfluenceV2_InlineCommentsForPageArgs = {
|
|
87731
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87732
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87733
|
-
id: Scalars['ID']['input'];
|
|
87734
|
-
resolutionStatus?: InputMaybe<Array<ConfluenceV2InlineCommentResolutionStatus>>;
|
|
87735
|
-
status?: InputMaybe<Array<ConfluenceV2InlineCommentStatus>>;
|
|
87736
|
-
};
|
|
87737
|
-
export declare type QueryConfluenceV2_InlineCommentsForParentInlineCommentArgs = {
|
|
87738
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87739
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87740
|
-
id: Scalars['ID']['input'];
|
|
87741
|
-
};
|
|
87742
|
-
export declare type QueryConfluenceV2_MacrosArgs = {
|
|
87743
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87744
|
-
blocklist?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
87745
|
-
contentId: Scalars['ID']['input'];
|
|
87746
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87747
|
-
};
|
|
87748
|
-
export declare type QueryConfluenceV2_PageArgs = {
|
|
87749
|
-
id: Scalars['ID']['input'];
|
|
87750
|
-
status?: InputMaybe<Array<ConfluenceV2PageStatus>>;
|
|
87751
|
-
};
|
|
87752
|
-
export declare type QueryConfluenceV2_PagesArgs = {
|
|
87753
|
-
ids: Array<Scalars['ID']['input']>;
|
|
87754
|
-
status?: InputMaybe<Array<ConfluenceV2BulkPageStatus>>;
|
|
87755
|
-
};
|
|
87756
|
-
export declare type QueryConfluenceV2_PagesForSpaceArgs = {
|
|
87757
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87758
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87759
|
-
id: Scalars['ID']['input'];
|
|
87760
|
-
};
|
|
87761
|
-
export declare type QueryConfluenceV2_RenderedMacroArgs = {
|
|
87762
|
-
adf: Scalars['String']['input'];
|
|
87763
|
-
contentId: Scalars['ID']['input'];
|
|
87764
|
-
};
|
|
87765
|
-
export declare type QueryConfluenceV2_SpaceArgs = {
|
|
87766
|
-
id: Scalars['ID']['input'];
|
|
87767
|
-
};
|
|
87768
|
-
export declare type QueryConfluenceV2_SpaceForPageArgs = {
|
|
87769
|
-
id: Scalars['ID']['input'];
|
|
87770
|
-
};
|
|
87771
|
-
export declare type QueryConfluenceV2_SpaceLookAndFeelArgs = {
|
|
87772
|
-
id: Scalars['ID']['input'];
|
|
87773
|
-
};
|
|
87774
|
-
export declare type QueryConfluenceV2_SpacePropertiesArgs = {
|
|
87775
|
-
spaceId: Scalars['ID']['input'];
|
|
87776
|
-
};
|
|
87777
|
-
export declare type QueryConfluenceV2_SpaceSettingsArgs = {
|
|
87778
|
-
id: Scalars['ID']['input'];
|
|
87779
|
-
};
|
|
87780
|
-
export declare type QueryConfluenceV2_SpaceThemeArgs = {
|
|
87781
|
-
id: Scalars['ID']['input'];
|
|
87782
|
-
};
|
|
87783
|
-
export declare type QueryConfluenceV2_SpacesArgs = {
|
|
87784
|
-
ids: Array<Scalars['ID']['input']>;
|
|
87465
|
+
export declare type QueryConfluence_ApplicationLinkByOauth2ClientIdArgs = {
|
|
87466
|
+
cloudId: Scalars['ID']['input'];
|
|
87467
|
+
oauthClientId: Scalars['String']['input'];
|
|
87785
87468
|
};
|
|
87786
87469
|
export declare type QueryConfluence_AtlassianUserArgs = {
|
|
87787
87470
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -87793,6 +87476,22 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
87793
87476
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
87794
87477
|
cloudId: Scalars['ID']['input'];
|
|
87795
87478
|
};
|
|
87479
|
+
export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs = {
|
|
87480
|
+
cloudId: Scalars['ID']['input'];
|
|
87481
|
+
contentIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
87482
|
+
contentType: Scalars['String']['input'];
|
|
87483
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
87484
|
+
eventName: Array<AnalyticsEventName>;
|
|
87485
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87486
|
+
sortOrder?: InputMaybe<RelevantUsersSortOrder>;
|
|
87487
|
+
startTime: Scalars['String']['input'];
|
|
87488
|
+
subType?: InputMaybe<Scalars['String']['input']>;
|
|
87489
|
+
};
|
|
87490
|
+
export declare type QueryConfluence_ContentSmartLinksForDraftArgs = {
|
|
87491
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87492
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87493
|
+
id: Scalars['ID']['input'];
|
|
87494
|
+
};
|
|
87796
87495
|
export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
87797
87496
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87798
87497
|
cloudId: Scalars['ID']['input'];
|
|
@@ -87803,6 +87502,9 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
|
87803
87502
|
export declare type QueryConfluence_ContentsArgs = {
|
|
87804
87503
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
87805
87504
|
};
|
|
87505
|
+
export declare type QueryConfluence_DataLifecycleManagementPolicyArgs = {
|
|
87506
|
+
cloudId: Scalars['ID']['input'];
|
|
87507
|
+
};
|
|
87806
87508
|
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
87807
87509
|
cloudId: Scalars['ID']['input'];
|
|
87808
87510
|
spaceKey: Scalars['String']['input'];
|
|
@@ -87810,6 +87512,9 @@ export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
|
87810
87512
|
export declare type QueryConfluence_EmptyArgs = {
|
|
87811
87513
|
id: Scalars['ID']['input'];
|
|
87812
87514
|
};
|
|
87515
|
+
export declare type QueryConfluence_ExpandTypeFromJiraArgs = {
|
|
87516
|
+
cloudId: Scalars['ID']['input'];
|
|
87517
|
+
};
|
|
87813
87518
|
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
87814
87519
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87815
87520
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -87830,6 +87535,10 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
87830
87535
|
cloudId: Scalars['ID']['input'];
|
|
87831
87536
|
spaceKey: Scalars['String']['input'];
|
|
87832
87537
|
};
|
|
87538
|
+
export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
87539
|
+
cloudId: Scalars['ID']['input'];
|
|
87540
|
+
input: ConfluenceLabelWatchInput;
|
|
87541
|
+
};
|
|
87833
87542
|
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
87834
87543
|
cloudId: Scalars['String']['input'];
|
|
87835
87544
|
contentId: Scalars['ID']['input'];
|
|
@@ -88637,22 +88346,6 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
88637
88346
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88638
88347
|
id: Scalars['ID']['input'];
|
|
88639
88348
|
};
|
|
88640
|
-
export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
|
|
88641
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88642
|
-
cloudId: Scalars['ID']['input'];
|
|
88643
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88644
|
-
input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
|
|
88645
|
-
};
|
|
88646
|
-
export declare type QueryJira_AssociatedFieldConfigSchemesCountArgs = {
|
|
88647
|
-
cloudId: Scalars['ID']['input'];
|
|
88648
|
-
fieldId: Scalars['ID']['input'];
|
|
88649
|
-
};
|
|
88650
|
-
export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
|
|
88651
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88652
|
-
cloudId: Scalars['ID']['input'];
|
|
88653
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88654
|
-
input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
|
|
88655
|
-
};
|
|
88656
88349
|
export declare type QueryJira_BoardViewArgs = {
|
|
88657
88350
|
input: JiraBoardViewInput;
|
|
88658
88351
|
};
|
|
@@ -88760,6 +88453,9 @@ export declare type QueryLoom_VideoDurationsArgs = {
|
|
|
88760
88453
|
export declare type QueryLoom_VideosArgs = {
|
|
88761
88454
|
ids: Array<Scalars['ID']['input']>;
|
|
88762
88455
|
};
|
|
88456
|
+
export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
88457
|
+
id: Scalars['ID']['input'];
|
|
88458
|
+
};
|
|
88763
88459
|
export declare type QueryMacroBodyRendererArgs = {
|
|
88764
88460
|
adf: Scalars['String']['input'];
|
|
88765
88461
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -88989,6 +88685,9 @@ export declare type QueryPtpageArgs = {
|
|
|
88989
88685
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
88990
88686
|
status?: InputMaybe<Array<InputMaybe<PtGraphQlPageStatus>>>;
|
|
88991
88687
|
};
|
|
88688
|
+
export declare type QueryPublicLinkInformationArgs = {
|
|
88689
|
+
id: Scalars['ID']['input'];
|
|
88690
|
+
};
|
|
88992
88691
|
export declare type QueryPublicLinkPageArgs = {
|
|
88993
88692
|
pageId: Scalars['ID']['input'];
|
|
88994
88693
|
};
|
|
@@ -89566,6 +89265,7 @@ export declare type QuotaInfo = {
|
|
|
89566
89265
|
export declare type RadarAriFieldValue = {
|
|
89567
89266
|
__typename?: 'RadarAriFieldValue';
|
|
89568
89267
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89268
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89569
89269
|
value?: Maybe<RadarAriObject>;
|
|
89570
89270
|
};
|
|
89571
89271
|
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker;
|
|
@@ -89835,6 +89535,7 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
89835
89535
|
isManager: Scalars['Boolean']['output'];
|
|
89836
89536
|
manager?: Maybe<RadarPosition>;
|
|
89837
89537
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
89538
|
+
role?: Maybe<RadarPositionRole>;
|
|
89838
89539
|
type?: Maybe<RadarEntityType>;
|
|
89839
89540
|
worker?: Maybe<RadarWorker>;
|
|
89840
89541
|
};
|
|
@@ -89864,6 +89565,10 @@ export declare type RadarPositionProposalChangeInput = {
|
|
|
89864
89565
|
sourceFocusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
89865
89566
|
targetFocusAreaAri: Scalars['ID']['input'];
|
|
89866
89567
|
};
|
|
89568
|
+
export declare enum RadarPositionRole {
|
|
89569
|
+
IndividualContributor = "INDIVIDUAL_CONTRIBUTOR",
|
|
89570
|
+
Manager = "MANAGER"
|
|
89571
|
+
}
|
|
89867
89572
|
export declare type RadarPrincipalByResourceRole = {
|
|
89868
89573
|
__typename?: 'RadarPrincipalByResourceRole';
|
|
89869
89574
|
principals: Array<RadarGroupPrincipal>;
|
|
@@ -91738,6 +91443,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
91738
91443
|
};
|
|
91739
91444
|
export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider & SearchResult & {
|
|
91740
91445
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
91446
|
+
bodyText?: Maybe<Scalars['String']['output']>;
|
|
91741
91447
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
91742
91448
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
91743
91449
|
description: Scalars['String']['output'];
|
|
@@ -92399,6 +92105,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
92399
92105
|
assignees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92400
92106
|
containerAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92401
92107
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92108
|
+
createdBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92402
92109
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92403
92110
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
92404
92111
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
@@ -95149,6 +94856,7 @@ export declare type SpaceRoleAccessClassPrincipal = SpaceRolePrincipal & {
|
|
|
95149
94856
|
};
|
|
95150
94857
|
export declare type SpaceRoleAssignment = {
|
|
95151
94858
|
__typename?: 'SpaceRoleAssignment';
|
|
94859
|
+
assignablePermissions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
95152
94860
|
permissions?: Maybe<Array<SpacePermissionInfo>>;
|
|
95153
94861
|
principal: SpaceRolePrincipal;
|
|
95154
94862
|
role?: Maybe<SpaceRole>;
|
|
@@ -97081,6 +96789,21 @@ export declare type TownsquareCreateRelationshipsPayload = {
|
|
|
97081
96789
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
97082
96790
|
success: Scalars['Boolean']['output'];
|
|
97083
96791
|
};
|
|
96792
|
+
export declare type TownsquareDeleteGoalHasJiraAlignProjectInput = {
|
|
96793
|
+
from: Scalars['String']['input'];
|
|
96794
|
+
to: Scalars['String']['input'];
|
|
96795
|
+
};
|
|
96796
|
+
export declare type TownsquareDeleteGoalHasJiraAlignProjectMutationErrorExtension = MutationErrorExtension & {
|
|
96797
|
+
__typename?: 'TownsquareDeleteGoalHasJiraAlignProjectMutationErrorExtension';
|
|
96798
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
96799
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
96800
|
+
};
|
|
96801
|
+
export declare type TownsquareDeleteGoalHasJiraAlignProjectPayload = {
|
|
96802
|
+
__typename?: 'TownsquareDeleteGoalHasJiraAlignProjectPayload';
|
|
96803
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96804
|
+
node?: Maybe<JiraAlignAggProject>;
|
|
96805
|
+
success: Scalars['Boolean']['output'];
|
|
96806
|
+
};
|
|
97084
96807
|
export declare type TownsquareDeleteRelationshipsInput = {
|
|
97085
96808
|
relationships: Array<TownsquareRelationshipInput>;
|
|
97086
96809
|
};
|
|
@@ -97363,6 +97086,7 @@ export declare type TownsquareMutationApi = {
|
|
|
97363
97086
|
createGoalHasJiraAlignProject?: Maybe<TownsquareCreateGoalHasJiraAlignProjectPayload>;
|
|
97364
97087
|
createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
|
|
97365
97088
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
97089
|
+
deleteGoalHasJiraAlignProject?: Maybe<TownsquareDeleteGoalHasJiraAlignProjectPayload>;
|
|
97366
97090
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
97367
97091
|
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
97368
97092
|
editGoalType?: Maybe<TownsquareEditGoalTypePayload>;
|
|
@@ -97385,6 +97109,9 @@ export declare type TownsquareMutationApiCreateGoalTypeArgs = {
|
|
|
97385
97109
|
export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
97386
97110
|
input: TownsquareCreateRelationshipsInput;
|
|
97387
97111
|
};
|
|
97112
|
+
export declare type TownsquareMutationApiDeleteGoalHasJiraAlignProjectArgs = {
|
|
97113
|
+
input: TownsquareDeleteGoalHasJiraAlignProjectInput;
|
|
97114
|
+
};
|
|
97388
97115
|
export declare type TownsquareMutationApiDeleteRelationshipsArgs = {
|
|
97389
97116
|
input: TownsquareDeleteRelationshipsInput;
|
|
97390
97117
|
};
|
|
@@ -98681,6 +98408,7 @@ export declare type TrelloCardUpdated = {
|
|
|
98681
98408
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
98682
98409
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98683
98410
|
limits?: Maybe<TrelloCardLimits>;
|
|
98411
|
+
list?: Maybe<TrelloList>;
|
|
98684
98412
|
location?: Maybe<TrelloCardLocation>;
|
|
98685
98413
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
98686
98414
|
mirrorSource?: Maybe<TrelloCard>;
|
|
@@ -98689,9 +98417,14 @@ export declare type TrelloCardUpdated = {
|
|
|
98689
98417
|
name?: Maybe<Scalars['String']['output']>;
|
|
98690
98418
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
98691
98419
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
98420
|
+
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
98692
98421
|
position?: Maybe<Scalars['Float']['output']>;
|
|
98693
98422
|
role?: Maybe<TrelloCardRole>;
|
|
98423
|
+
shortId?: Maybe<Scalars['Int']['output']>;
|
|
98694
98424
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
98425
|
+
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
98426
|
+
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
98427
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98695
98428
|
stickers?: Maybe<TrelloStickerUpdatedConnection>;
|
|
98696
98429
|
url?: Maybe<Scalars['URL']['output']>;
|
|
98697
98430
|
};
|
|
@@ -99074,8 +98807,13 @@ export declare type TrelloImagePreviewEdge = {
|
|
|
99074
98807
|
cursor: Scalars['String']['output'];
|
|
99075
98808
|
node: TrelloImagePreview;
|
|
99076
98809
|
};
|
|
98810
|
+
export declare type TrelloImagePreviewEdgeUpdated = {
|
|
98811
|
+
__typename?: 'TrelloImagePreviewEdgeUpdated';
|
|
98812
|
+
node: TrelloImagePreview;
|
|
98813
|
+
};
|
|
99077
98814
|
export declare type TrelloImagePreviewUpdatedConnection = {
|
|
99078
98815
|
__typename?: 'TrelloImagePreviewUpdatedConnection';
|
|
98816
|
+
edges?: Maybe<Array<TrelloImagePreviewEdgeUpdated>>;
|
|
99079
98817
|
nodes?: Maybe<Array<TrelloImagePreview>>;
|
|
99080
98818
|
};
|
|
99081
98819
|
export declare type TrelloInbox = {
|
|
@@ -102482,6 +102220,8 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
102482
102220
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
102483
102221
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
102484
102222
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
102223
|
+
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
102224
|
+
linkedContainer?: Maybe<VirtualAgentContainerData>;
|
|
102485
102225
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
102486
102226
|
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
102487
102227
|
respondToQueries: Scalars['Boolean']['output'];
|
|
@@ -102512,7 +102252,19 @@ export declare type VirtualAgentConfigurationVirtualAgentStatisticsProjectionArg
|
|
|
102512
102252
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
102513
102253
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
102514
102254
|
};
|
|
102255
|
+
export declare type VirtualAgentConfigurationEdge = {
|
|
102256
|
+
__typename?: 'VirtualAgentConfigurationEdge';
|
|
102257
|
+
cursor: Scalars['String']['output'];
|
|
102258
|
+
node: VirtualAgentConfiguration;
|
|
102259
|
+
};
|
|
102515
102260
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
102261
|
+
export declare type VirtualAgentConfigurationsConnection = {
|
|
102262
|
+
__typename?: 'VirtualAgentConfigurationsConnection';
|
|
102263
|
+
edges: Array<VirtualAgentConfigurationEdge>;
|
|
102264
|
+
nodes: Array<VirtualAgentConfiguration>;
|
|
102265
|
+
pageInfo: PageInfo;
|
|
102266
|
+
};
|
|
102267
|
+
export declare type VirtualAgentContainerData = JiraProject;
|
|
102516
102268
|
export declare type VirtualAgentConversation = Node & {
|
|
102517
102269
|
__typename?: 'VirtualAgentConversation';
|
|
102518
102270
|
action?: Maybe<VirtualAgentConversationActionType>;
|
|
@@ -102885,6 +102637,7 @@ export declare type VirtualAgentQueryApi = {
|
|
|
102885
102637
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
102886
102638
|
virtualAgentAvailability?: Maybe<Scalars['Boolean']['output']>;
|
|
102887
102639
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
102640
|
+
virtualAgents?: Maybe<VirtualAgentConfigurationsConnection>;
|
|
102888
102641
|
};
|
|
102889
102642
|
export declare type VirtualAgentQueryApiAvailableToHelpCenterArgs = {
|
|
102890
102643
|
helpCenterId: Scalars['ID']['input'];
|
|
@@ -102911,6 +102664,11 @@ export declare type VirtualAgentQueryApiVirtualAgentAvailabilityArgs = {
|
|
|
102911
102664
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
102912
102665
|
cloudId: Scalars['ID']['input'];
|
|
102913
102666
|
};
|
|
102667
|
+
export declare type VirtualAgentQueryApiVirtualAgentsArgs = {
|
|
102668
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
102669
|
+
cloudId: Scalars['ID']['input'];
|
|
102670
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102671
|
+
};
|
|
102914
102672
|
export declare type VirtualAgentQueryError = {
|
|
102915
102673
|
__typename?: 'VirtualAgentQueryError';
|
|
102916
102674
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
@@ -103276,6 +103034,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
103276
103034
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
103277
103035
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
103278
103036
|
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
103037
|
+
compass?: Maybe<WorkSuggestionsCompassResponse>;
|
|
103279
103038
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
103280
103039
|
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
103281
103040
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
@@ -103325,6 +103084,17 @@ export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsComp
|
|
|
103325
103084
|
title: Scalars['String']['output'];
|
|
103326
103085
|
url: Scalars['String']['output'];
|
|
103327
103086
|
};
|
|
103087
|
+
export declare type WorkSuggestionsCompassResponse = {
|
|
103088
|
+
__typename?: 'WorkSuggestionsCompassResponse';
|
|
103089
|
+
announcements?: Maybe<Array<WorkSuggestionsCompassAnnouncementTask>>;
|
|
103090
|
+
scorecardCriteria?: Maybe<Array<WorkSuggestionsCompassScorecardCriterionTask>>;
|
|
103091
|
+
};
|
|
103092
|
+
export declare type WorkSuggestionsCompassResponseAnnouncementsArgs = {
|
|
103093
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
103094
|
+
};
|
|
103095
|
+
export declare type WorkSuggestionsCompassResponseScorecardCriteriaArgs = {
|
|
103096
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
103097
|
+
};
|
|
103328
103098
|
export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestionsCompassTask & {
|
|
103329
103099
|
__typename?: 'WorkSuggestionsCompassScorecardCriterionTask';
|
|
103330
103100
|
componentAri?: Maybe<Scalars['ID']['output']>;
|