@forge/cli-shared 6.11.0-next.7 → 6.11.0-next.9
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 +12 -0
- package/out/graphql/graphql-types.d.ts +487 -56
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +10 -4
- package/out/shared/error-handling.d.ts +3 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +7 -1
- package/out/ui/text.d.ts +2 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -5
- package/package.json +1 -1
|
@@ -812,6 +812,7 @@ export declare type AgentStudioAgentEdge = {
|
|
|
812
812
|
export declare type AgentStudioAgentQueryInput = {
|
|
813
813
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
814
814
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
815
|
+
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
815
816
|
};
|
|
816
817
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
817
818
|
export declare enum AgentStudioAgentType {
|
|
@@ -910,6 +911,11 @@ export declare type AgentStudioCustomAction = {
|
|
|
910
911
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
911
912
|
name: Scalars['String']['output'];
|
|
912
913
|
};
|
|
914
|
+
export declare type AgentStudioCustomActionList = {
|
|
915
|
+
__typename?: 'AgentStudioCustomActionList';
|
|
916
|
+
customActionList: Array<AgentStudioCustomAction>;
|
|
917
|
+
};
|
|
918
|
+
export declare type AgentStudioCustomActionListResult = AgentStudioCustomActionList | QueryError;
|
|
913
919
|
export declare type AgentStudioCustomActionResult = AgentStudioAssistantCustomAction | QueryError;
|
|
914
920
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
915
921
|
__typename?: 'AgentStudioEmailChannel';
|
|
@@ -3132,6 +3138,7 @@ export declare type Build = {
|
|
|
3132
3138
|
__typename?: 'Build';
|
|
3133
3139
|
appId: Scalars['ID']['output'];
|
|
3134
3140
|
createdAt: Scalars['String']['output'];
|
|
3141
|
+
createdByUser?: Maybe<User>;
|
|
3135
3142
|
tag: Scalars['String']['output'];
|
|
3136
3143
|
};
|
|
3137
3144
|
export declare type BuildConnection = {
|
|
@@ -3655,6 +3662,7 @@ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
|
3655
3662
|
export declare type CcpCreateEntitlementInput = {
|
|
3656
3663
|
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
3657
3664
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3665
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3658
3666
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3659
3667
|
productKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3660
3668
|
relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
|
|
@@ -3906,6 +3914,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
3906
3914
|
name?: Maybe<Scalars['String']['output']>;
|
|
3907
3915
|
offeringChargeElements?: Maybe<Array<Maybe<CcpOfferingChargeElement>>>;
|
|
3908
3916
|
offeringGroup?: Maybe<CcpOfferingGroup>;
|
|
3917
|
+
offeringRelationships?: Maybe<CcpOfferingRelationshipConnection>;
|
|
3909
3918
|
pricingType?: Maybe<CcpPricingType>;
|
|
3910
3919
|
product?: Maybe<CcpProduct>;
|
|
3911
3920
|
productKey?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3925,6 +3934,11 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
3925
3934
|
export declare type CcpOfferingDefaultTransitionsArgs = {
|
|
3926
3935
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3927
3936
|
};
|
|
3937
|
+
export declare type CcpOfferingOfferingRelationshipsArgs = {
|
|
3938
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3939
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3940
|
+
relationshipType?: InputMaybe<CcpRelationshipType>;
|
|
3941
|
+
};
|
|
3928
3942
|
export declare type CcpOfferingTransitionsArgs = {
|
|
3929
3943
|
offeringGroupSlug?: InputMaybe<Scalars['String']['input']>;
|
|
3930
3944
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3970,10 +3984,21 @@ export declare type CcpOfferingRelationship = {
|
|
|
3970
3984
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
3971
3985
|
version?: Maybe<Scalars['Int']['output']>;
|
|
3972
3986
|
};
|
|
3987
|
+
export declare type CcpOfferingRelationshipConnection = {
|
|
3988
|
+
__typename?: 'CcpOfferingRelationshipConnection';
|
|
3989
|
+
edges?: Maybe<Array<CcpOfferingRelationshipEdge>>;
|
|
3990
|
+
nodes?: Maybe<Array<Maybe<CcpOfferingRelationship>>>;
|
|
3991
|
+
pageInfo: PageInfo;
|
|
3992
|
+
};
|
|
3973
3993
|
export declare enum CcpOfferingRelationshipDirection {
|
|
3974
3994
|
From = "FROM",
|
|
3975
3995
|
To = "TO"
|
|
3976
3996
|
}
|
|
3997
|
+
export declare type CcpOfferingRelationshipEdge = {
|
|
3998
|
+
__typename?: 'CcpOfferingRelationshipEdge';
|
|
3999
|
+
cursor: Scalars['String']['output'];
|
|
4000
|
+
node?: Maybe<CcpOfferingRelationship>;
|
|
4001
|
+
};
|
|
3977
4002
|
export declare enum CcpOfferingStatus {
|
|
3978
4003
|
Active = "ACTIVE",
|
|
3979
4004
|
AtNotice = "AT_NOTICE",
|
|
@@ -4131,7 +4156,7 @@ export declare type CcpQuote = Node & {
|
|
|
4131
4156
|
__typename?: 'CcpQuote';
|
|
4132
4157
|
autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
|
|
4133
4158
|
cancelledReason?: Maybe<CcpQuoteCancelledReason>;
|
|
4134
|
-
clonedFrom?: Maybe<
|
|
4159
|
+
clonedFrom?: Maybe<CcpQuote>;
|
|
4135
4160
|
contractType?: Maybe<CcpQuoteContractType>;
|
|
4136
4161
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4137
4162
|
createdBy?: Maybe<CcpQuoteAuthorContext>;
|
|
@@ -4139,9 +4164,9 @@ export declare type CcpQuote = Node & {
|
|
|
4139
4164
|
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
4140
4165
|
externalNotes?: Maybe<Array<Maybe<CcpQuoteExternalNote>>>;
|
|
4141
4166
|
finalizedAt?: Maybe<Scalars['Float']['output']>;
|
|
4142
|
-
fromQuote?: Maybe<
|
|
4167
|
+
fromQuote?: Maybe<CcpQuote>;
|
|
4143
4168
|
id: Scalars['ID']['output'];
|
|
4144
|
-
|
|
4169
|
+
invoiceGroupKey?: Maybe<Scalars['ID']['output']>;
|
|
4145
4170
|
lineItems?: Maybe<Array<Maybe<CcpQuoteLineItem>>>;
|
|
4146
4171
|
locale?: Maybe<Scalars['String']['output']>;
|
|
4147
4172
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4150,7 +4175,7 @@ export declare type CcpQuote = Node & {
|
|
|
4150
4175
|
revision?: Maybe<Scalars['Int']['output']>;
|
|
4151
4176
|
staleReason?: Maybe<CcpQuoteStaleReason>;
|
|
4152
4177
|
status?: Maybe<CcpQuoteStatus>;
|
|
4153
|
-
|
|
4178
|
+
transactionAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4154
4179
|
upcomingBills?: Maybe<CcpQuoteUpcomingBills>;
|
|
4155
4180
|
upcomingBillsComputedAt?: Maybe<Scalars['Float']['output']>;
|
|
4156
4181
|
upcomingBillsRequestedAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -4163,7 +4188,7 @@ export declare type CcpQuoteAdjustment = {
|
|
|
4163
4188
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
4164
4189
|
percent?: Maybe<Scalars['Float']['output']>;
|
|
4165
4190
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
4166
|
-
|
|
4191
|
+
promotionKey?: Maybe<Scalars['ID']['output']>;
|
|
4167
4192
|
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
4168
4193
|
type?: Maybe<Scalars['String']['output']>;
|
|
4169
4194
|
};
|
|
@@ -4171,7 +4196,7 @@ export declare type CcpQuoteAuthorContext = {
|
|
|
4171
4196
|
__typename?: 'CcpQuoteAuthorContext';
|
|
4172
4197
|
isCustomerAdvocate?: Maybe<Scalars['Boolean']['output']>;
|
|
4173
4198
|
isSystemDrivenAction?: Maybe<Scalars['Boolean']['output']>;
|
|
4174
|
-
|
|
4199
|
+
subjectId?: Maybe<Scalars['ID']['output']>;
|
|
4175
4200
|
subjectType?: Maybe<Scalars['String']['output']>;
|
|
4176
4201
|
};
|
|
4177
4202
|
export declare type CcpQuoteAutoRefresh = {
|
|
@@ -4212,8 +4237,8 @@ export declare type CcpQuoteCancelledReason = {
|
|
|
4212
4237
|
code?: Maybe<Scalars['String']['output']>;
|
|
4213
4238
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4214
4239
|
name?: Maybe<Scalars['String']['output']>;
|
|
4215
|
-
|
|
4216
|
-
|
|
4240
|
+
orderItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4241
|
+
orderKey?: Maybe<Scalars['ID']['output']>;
|
|
4217
4242
|
};
|
|
4218
4243
|
export declare type CcpQuoteChargeQuantity = {
|
|
4219
4244
|
__typename?: 'CcpQuoteChargeQuantity';
|
|
@@ -4247,15 +4272,15 @@ export declare type CcpQuoteLineItem = {
|
|
|
4247
4272
|
cancelledReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
|
|
4248
4273
|
chargeQuantities?: Maybe<Array<Maybe<CcpQuoteChargeQuantity>>>;
|
|
4249
4274
|
endsAt?: Maybe<CcpQuoteLineItemEndsAt>;
|
|
4250
|
-
|
|
4275
|
+
entitlementKey?: Maybe<Scalars['ID']['output']>;
|
|
4251
4276
|
entitlementVersion?: Maybe<Scalars['String']['output']>;
|
|
4252
|
-
|
|
4277
|
+
lineItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4253
4278
|
lineItemType?: Maybe<CcpQuoteLineItemType>;
|
|
4254
4279
|
lockContext?: Maybe<CcpQuoteLockContext>;
|
|
4255
|
-
offeringKey?: Maybe<Scalars['
|
|
4256
|
-
|
|
4280
|
+
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
4281
|
+
orderItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4257
4282
|
preBillingConfiguration?: Maybe<CcpQuotePreBillingConfiguration>;
|
|
4258
|
-
|
|
4283
|
+
pricingPlanKey?: Maybe<Scalars['ID']['output']>;
|
|
4259
4284
|
promotions?: Maybe<Array<Maybe<CcpQuotePromotion>>>;
|
|
4260
4285
|
prorationBehaviour?: Maybe<CcpQuoteProrationBehaviour>;
|
|
4261
4286
|
relatesFromEntitlements?: Maybe<Array<Maybe<CcpQuoteRelatesFromEntitlement>>>;
|
|
@@ -4263,7 +4288,7 @@ export declare type CcpQuoteLineItem = {
|
|
|
4263
4288
|
staleReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
|
|
4264
4289
|
startsAt?: Maybe<CcpQuoteStartsAt>;
|
|
4265
4290
|
status?: Maybe<CcpQuoteLineItemStatus>;
|
|
4266
|
-
|
|
4291
|
+
subscriptionKey?: Maybe<Scalars['ID']['output']>;
|
|
4267
4292
|
};
|
|
4268
4293
|
export declare type CcpQuoteLineItemEndsAt = {
|
|
4269
4294
|
__typename?: 'CcpQuoteLineItemEndsAt';
|
|
@@ -4276,8 +4301,8 @@ export declare type CcpQuoteLineItemStaleOrCancelledReason = {
|
|
|
4276
4301
|
code?: Maybe<Scalars['String']['output']>;
|
|
4277
4302
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4278
4303
|
name?: Maybe<Scalars['String']['output']>;
|
|
4279
|
-
|
|
4280
|
-
|
|
4304
|
+
orderItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4305
|
+
orderKey?: Maybe<Scalars['ID']['output']>;
|
|
4281
4306
|
};
|
|
4282
4307
|
export declare enum CcpQuoteLineItemStatus {
|
|
4283
4308
|
Cancelled = "CANCELLED",
|
|
@@ -4297,10 +4322,11 @@ export declare type CcpQuoteLockContext = {
|
|
|
4297
4322
|
export declare type CcpQuoteMargin = {
|
|
4298
4323
|
__typename?: 'CcpQuoteMargin';
|
|
4299
4324
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
4325
|
+
blended?: Maybe<Scalars['Boolean']['output']>;
|
|
4300
4326
|
blendedComputation?: Maybe<CcpQuoteBlendedMarginComputation>;
|
|
4301
4327
|
percent?: Maybe<Scalars['Float']['output']>;
|
|
4302
4328
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
4303
|
-
|
|
4329
|
+
promotionKey?: Maybe<Scalars['ID']['output']>;
|
|
4304
4330
|
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
4305
4331
|
type?: Maybe<Scalars['String']['output']>;
|
|
4306
4332
|
};
|
|
@@ -4317,12 +4343,12 @@ export declare type CcpQuotePreBillingConfiguration = {
|
|
|
4317
4343
|
export declare type CcpQuotePromotion = {
|
|
4318
4344
|
__typename?: 'CcpQuotePromotion';
|
|
4319
4345
|
promotionDefinition?: Maybe<CcpQuotePromotionDefinition>;
|
|
4320
|
-
|
|
4346
|
+
promotionInstanceKey?: Maybe<Scalars['ID']['output']>;
|
|
4321
4347
|
};
|
|
4322
4348
|
export declare type CcpQuotePromotionDefinition = {
|
|
4323
4349
|
__typename?: 'CcpQuotePromotionDefinition';
|
|
4324
4350
|
promotionCode?: Maybe<Scalars['String']['output']>;
|
|
4325
|
-
|
|
4351
|
+
promotionKey?: Maybe<Scalars['ID']['output']>;
|
|
4326
4352
|
};
|
|
4327
4353
|
export declare enum CcpQuoteProrationBehaviour {
|
|
4328
4354
|
CreateProrations = "CREATE_PRORATIONS",
|
|
@@ -4334,8 +4360,8 @@ export declare enum CcpQuoteReferenceType {
|
|
|
4334
4360
|
}
|
|
4335
4361
|
export declare type CcpQuoteRelatesFromEntitlement = {
|
|
4336
4362
|
__typename?: 'CcpQuoteRelatesFromEntitlement';
|
|
4337
|
-
|
|
4338
|
-
|
|
4363
|
+
entitlementKey?: Maybe<Scalars['ID']['output']>;
|
|
4364
|
+
lineItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4339
4365
|
referenceType?: Maybe<CcpQuoteReferenceType>;
|
|
4340
4366
|
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
4341
4367
|
};
|
|
@@ -4345,8 +4371,8 @@ export declare type CcpQuoteStaleReason = {
|
|
|
4345
4371
|
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
4346
4372
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4347
4373
|
name?: Maybe<Scalars['String']['output']>;
|
|
4348
|
-
|
|
4349
|
-
|
|
4374
|
+
orderItemKey?: Maybe<Scalars['ID']['output']>;
|
|
4375
|
+
orderKey?: Maybe<Scalars['ID']['output']>;
|
|
4350
4376
|
};
|
|
4351
4377
|
export declare enum CcpQuoteStartDateType {
|
|
4352
4378
|
QuoteAcceptanceDate = "QUOTE_ACCEPTANCE_DATE",
|
|
@@ -4392,13 +4418,13 @@ export declare type CcpQuoteUpcomingBillsLine = {
|
|
|
4392
4418
|
adjustments?: Maybe<Array<Maybe<CcpQuoteAdjustment>>>;
|
|
4393
4419
|
currency?: Maybe<CcpCurrency>;
|
|
4394
4420
|
description?: Maybe<Scalars['String']['output']>;
|
|
4395
|
-
|
|
4421
|
+
key?: Maybe<Scalars['ID']['output']>;
|
|
4396
4422
|
margins?: Maybe<Array<Maybe<CcpQuoteMargin>>>;
|
|
4397
|
-
|
|
4423
|
+
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
4398
4424
|
period?: Maybe<CcpQuotePeriod>;
|
|
4399
|
-
|
|
4425
|
+
pricingPlanKey?: Maybe<Scalars['ID']['output']>;
|
|
4400
4426
|
quantity?: Maybe<Scalars['Float']['output']>;
|
|
4401
|
-
|
|
4427
|
+
quoteLineKey?: Maybe<Scalars['ID']['output']>;
|
|
4402
4428
|
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
4403
4429
|
tax?: Maybe<Scalars['Float']['output']>;
|
|
4404
4430
|
taxItems?: Maybe<Array<Maybe<CcpQuoteTaxItem>>>;
|
|
@@ -4439,6 +4465,7 @@ export declare enum CcpRelationshipStatus {
|
|
|
4439
4465
|
export declare enum CcpRelationshipType {
|
|
4440
4466
|
AddonDependence = "ADDON_DEPENDENCE",
|
|
4441
4467
|
AppCompatibility = "APP_COMPATIBILITY",
|
|
4468
|
+
AppDependence = "APP_DEPENDENCE",
|
|
4442
4469
|
Collection = "COLLECTION",
|
|
4443
4470
|
CollectionTrial = "COLLECTION_TRIAL",
|
|
4444
4471
|
Enterprise = "ENTERPRISE",
|
|
@@ -4581,6 +4608,7 @@ export declare type ChannelPlatformChannelAvailabilityResponse = {
|
|
|
4581
4608
|
};
|
|
4582
4609
|
export declare enum ChannelPlatformChannelType {
|
|
4583
4610
|
Chat = "CHAT",
|
|
4611
|
+
Ticket = "TICKET",
|
|
4584
4612
|
Voice = "VOICE"
|
|
4585
4613
|
}
|
|
4586
4614
|
export declare type ChannelPlatformConnectDetails = {
|
|
@@ -4613,6 +4641,7 @@ export declare type ChannelPlatformGetChannelTokenResponse = {
|
|
|
4613
4641
|
contactId?: Maybe<Scalars['String']['output']>;
|
|
4614
4642
|
participantId?: Maybe<Scalars['String']['output']>;
|
|
4615
4643
|
participantToken?: Maybe<Scalars['String']['output']>;
|
|
4644
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
4616
4645
|
};
|
|
4617
4646
|
export declare type ChannelPlatformMediaPlacement = {
|
|
4618
4647
|
__typename?: 'ChannelPlatformMediaPlacement';
|
|
@@ -4652,11 +4681,16 @@ export declare type ChannelPlatformSubmitRequestInput = {
|
|
|
4652
4681
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4653
4682
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
4654
4683
|
};
|
|
4655
|
-
export declare type ChannelPlatformSubmitRequestResponse =
|
|
4684
|
+
export declare type ChannelPlatformSubmitRequestResponse = {
|
|
4685
|
+
__typename?: 'ChannelPlatformSubmitRequestResponse';
|
|
4686
|
+
channel?: Maybe<ChannelPlatformChannelType>;
|
|
4687
|
+
value?: Maybe<ChannelPlatformTokenResponse>;
|
|
4688
|
+
};
|
|
4656
4689
|
export declare type ChannelPlatformSubmitTicketResponse = {
|
|
4657
4690
|
__typename?: 'ChannelPlatformSubmitTicketResponse';
|
|
4658
|
-
|
|
4691
|
+
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
4659
4692
|
};
|
|
4693
|
+
export declare type ChannelPlatformTokenResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
4660
4694
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
4661
4695
|
cloudId: Scalars['ID']['input'];
|
|
4662
4696
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -10155,14 +10189,6 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
10155
10189
|
__typename?: 'ConfluenceCommentUpdated';
|
|
10156
10190
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10157
10191
|
};
|
|
10158
|
-
export declare type ConfluenceContent = {
|
|
10159
|
-
__typename?: 'ConfluenceContent';
|
|
10160
|
-
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
10161
|
-
contentType: ConfluenceSubscriptionContentType;
|
|
10162
|
-
deltas?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10163
|
-
eventType: Scalars['String']['output'];
|
|
10164
|
-
id: Scalars['ID']['output'];
|
|
10165
|
-
};
|
|
10166
10192
|
export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
10167
10193
|
__typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
|
|
10168
10194
|
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
@@ -10276,11 +10302,6 @@ export declare type ConfluenceContentTitleEmoji = {
|
|
|
10276
10302
|
key?: Maybe<Scalars['String']['output']>;
|
|
10277
10303
|
value?: Maybe<Scalars['String']['output']>;
|
|
10278
10304
|
};
|
|
10279
|
-
export declare type ConfluenceContentTitleUpdate = {
|
|
10280
|
-
__typename?: 'ConfluenceContentTitleUpdate';
|
|
10281
|
-
contentTitle: Scalars['String']['output'];
|
|
10282
|
-
id: Scalars['ID']['output'];
|
|
10283
|
-
};
|
|
10284
10305
|
export declare type ConfluenceContentTitleUpdated = {
|
|
10285
10306
|
__typename?: 'ConfluenceContentTitleUpdated';
|
|
10286
10307
|
contentTitle?: Maybe<Scalars['String']['output']>;
|
|
@@ -22703,6 +22724,18 @@ export declare type DevAiFlowSession = {
|
|
|
22703
22724
|
status?: Maybe<DevAiFlowSessionsStatus>;
|
|
22704
22725
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
22705
22726
|
};
|
|
22727
|
+
export declare type DevAiFlowSessionCompletePayload = Payload & {
|
|
22728
|
+
__typename?: 'DevAiFlowSessionCompletePayload';
|
|
22729
|
+
data?: Maybe<DevAiFlowSession>;
|
|
22730
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22731
|
+
success: Scalars['Boolean']['output'];
|
|
22732
|
+
};
|
|
22733
|
+
export declare type DevAiFlowSessionCreatePayload = Payload & {
|
|
22734
|
+
__typename?: 'DevAiFlowSessionCreatePayload';
|
|
22735
|
+
data?: Maybe<DevAiFlowSession>;
|
|
22736
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22737
|
+
success: Scalars['Boolean']['output'];
|
|
22738
|
+
};
|
|
22706
22739
|
export declare enum DevAiFlowSessionsStatus {
|
|
22707
22740
|
Completed = "COMPLETED",
|
|
22708
22741
|
Failed = "FAILED",
|
|
@@ -31625,6 +31658,8 @@ export declare type GraphStore = {
|
|
|
31625
31658
|
issueRecursiveAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseConnection>;
|
|
31626
31659
|
issueRecursiveAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
31627
31660
|
issueRecursiveAssociatedPrRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
31661
|
+
issueRelatedToIssue?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueConnection>;
|
|
31662
|
+
issueRelatedToIssueInverse?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseConnection>;
|
|
31628
31663
|
issueToWhiteboard?: Maybe<GraphStoreSimplifiedIssueToWhiteboardConnection>;
|
|
31629
31664
|
issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
|
|
31630
31665
|
issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
@@ -31919,6 +31954,8 @@ export declare type GraphStore = {
|
|
|
31919
31954
|
userContributedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseConnection>;
|
|
31920
31955
|
userContributedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection>;
|
|
31921
31956
|
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
31957
|
+
userCreatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalConnection>;
|
|
31958
|
+
userCreatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection>;
|
|
31922
31959
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
31923
31960
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
31924
31961
|
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
@@ -32017,6 +32054,8 @@ export declare type GraphStore = {
|
|
|
32017
32054
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
32018
32055
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
32019
32056
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
32057
|
+
userUpdatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalConnection>;
|
|
32058
|
+
userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
|
|
32020
32059
|
userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
|
|
32021
32060
|
userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
|
|
32022
32061
|
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
@@ -33688,6 +33727,20 @@ export declare type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
|
33688
33727
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33689
33728
|
id: Scalars['ID']['input'];
|
|
33690
33729
|
};
|
|
33730
|
+
export declare type GraphStoreIssueRelatedToIssueArgs = {
|
|
33731
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33732
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33733
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33734
|
+
id: Scalars['ID']['input'];
|
|
33735
|
+
sort?: InputMaybe<GraphStoreIssueRelatedToIssueSortInput>;
|
|
33736
|
+
};
|
|
33737
|
+
export declare type GraphStoreIssueRelatedToIssueInverseArgs = {
|
|
33738
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33739
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33740
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33741
|
+
id: Scalars['ID']['input'];
|
|
33742
|
+
sort?: InputMaybe<GraphStoreIssueRelatedToIssueSortInput>;
|
|
33743
|
+
};
|
|
33691
33744
|
export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
33692
33745
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33693
33746
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35640,6 +35693,20 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardInverseArgs = {
|
|
|
35640
35693
|
id: Scalars['ID']['input'];
|
|
35641
35694
|
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
35642
35695
|
};
|
|
35696
|
+
export declare type GraphStoreUserCreatedAtlasGoalArgs = {
|
|
35697
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35698
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35699
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35700
|
+
id: Scalars['ID']['input'];
|
|
35701
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
35702
|
+
};
|
|
35703
|
+
export declare type GraphStoreUserCreatedAtlasGoalInverseArgs = {
|
|
35704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35705
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35706
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35707
|
+
id: Scalars['ID']['input'];
|
|
35708
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
35709
|
+
};
|
|
35643
35710
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
35644
35711
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35645
35712
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36332,6 +36399,20 @@ export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
|
36332
36399
|
id: Scalars['ID']['input'];
|
|
36333
36400
|
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
36334
36401
|
};
|
|
36402
|
+
export declare type GraphStoreUserUpdatedAtlasGoalArgs = {
|
|
36403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36404
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36406
|
+
id: Scalars['ID']['input'];
|
|
36407
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasGoalSortInput>;
|
|
36408
|
+
};
|
|
36409
|
+
export declare type GraphStoreUserUpdatedAtlasGoalInverseArgs = {
|
|
36410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36411
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36413
|
+
id: Scalars['ID']['input'];
|
|
36414
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasGoalSortInput>;
|
|
36415
|
+
};
|
|
36335
36416
|
export declare type GraphStoreUserUpdatedAtlasProjectArgs = {
|
|
36336
36417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36337
36418
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42680,6 +42761,9 @@ export declare type GraphStoreIssueRecursiveAssociatedPrSortInput = {
|
|
|
42680
42761
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42681
42762
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42682
42763
|
};
|
|
42764
|
+
export declare type GraphStoreIssueRelatedToIssueSortInput = {
|
|
42765
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42766
|
+
};
|
|
42683
42767
|
export declare type GraphStoreIssueToWhiteboardConditionalFilterInput = {
|
|
42684
42768
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
42685
42769
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -46097,6 +46181,34 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
46097
46181
|
};
|
|
46098
46182
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion = JiraIssue;
|
|
46099
46183
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46184
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueConnection = HasPageInfo & {
|
|
46185
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueConnection';
|
|
46186
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRelatedToIssueEdge>>>;
|
|
46187
|
+
pageInfo: PageInfo;
|
|
46188
|
+
};
|
|
46189
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueEdge = {
|
|
46190
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueEdge';
|
|
46191
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46192
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46193
|
+
id: Scalars['ID']['output'];
|
|
46194
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46195
|
+
node?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueUnion>;
|
|
46196
|
+
};
|
|
46197
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseConnection = HasPageInfo & {
|
|
46198
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueInverseConnection';
|
|
46199
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseEdge>>>;
|
|
46200
|
+
pageInfo: PageInfo;
|
|
46201
|
+
};
|
|
46202
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseEdge = {
|
|
46203
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueInverseEdge';
|
|
46204
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46205
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46206
|
+
id: Scalars['ID']['output'];
|
|
46207
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46208
|
+
node?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseUnion>;
|
|
46209
|
+
};
|
|
46210
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseUnion = JiraIssue;
|
|
46211
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueUnion = JiraIssue;
|
|
46100
46212
|
export declare type GraphStoreSimplifiedIssueToWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
46101
46213
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardConnection';
|
|
46102
46214
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueToWhiteboardEdge>>>;
|
|
@@ -48965,6 +49077,34 @@ export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInver
|
|
|
48965
49077
|
};
|
|
48966
49078
|
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48967
49079
|
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
49080
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalConnection = HasPageInfo & {
|
|
49081
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalConnection';
|
|
49082
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalEdge>>>;
|
|
49083
|
+
pageInfo: PageInfo;
|
|
49084
|
+
};
|
|
49085
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalEdge = {
|
|
49086
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalEdge';
|
|
49087
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49088
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49089
|
+
id: Scalars['ID']['output'];
|
|
49090
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49091
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalUnion>;
|
|
49092
|
+
};
|
|
49093
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection = HasPageInfo & {
|
|
49094
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection';
|
|
49095
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge>>>;
|
|
49096
|
+
pageInfo: PageInfo;
|
|
49097
|
+
};
|
|
49098
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge = {
|
|
49099
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge';
|
|
49100
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49101
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49102
|
+
id: Scalars['ID']['output'];
|
|
49103
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49104
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion>;
|
|
49105
|
+
};
|
|
49106
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49107
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalUnion = TownsquareGoal;
|
|
48968
49108
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
48969
49109
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
48970
49110
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -50353,6 +50493,34 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
50353
50493
|
};
|
|
50354
50494
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50355
50495
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
50496
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalConnection = HasPageInfo & {
|
|
50497
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalConnection';
|
|
50498
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalEdge>>>;
|
|
50499
|
+
pageInfo: PageInfo;
|
|
50500
|
+
};
|
|
50501
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalEdge = {
|
|
50502
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalEdge';
|
|
50503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50504
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50505
|
+
id: Scalars['ID']['output'];
|
|
50506
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50507
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalUnion>;
|
|
50508
|
+
};
|
|
50509
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection = HasPageInfo & {
|
|
50510
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection';
|
|
50511
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge>>>;
|
|
50512
|
+
pageInfo: PageInfo;
|
|
50513
|
+
};
|
|
50514
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge = {
|
|
50515
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge';
|
|
50516
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50517
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50518
|
+
id: Scalars['ID']['output'];
|
|
50519
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50520
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseUnion>;
|
|
50521
|
+
};
|
|
50522
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50523
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalUnion = TownsquareGoal;
|
|
50356
50524
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectConnection = HasPageInfo & {
|
|
50357
50525
|
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectConnection';
|
|
50358
50526
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectEdge>>>;
|
|
@@ -51673,6 +51841,9 @@ export declare type GraphStoreUserContributedConfluencePageSortInput = {
|
|
|
51673
51841
|
export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
51674
51842
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51675
51843
|
};
|
|
51844
|
+
export declare type GraphStoreUserCreatedAtlasGoalSortInput = {
|
|
51845
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51846
|
+
};
|
|
51676
51847
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
51677
51848
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51678
51849
|
};
|
|
@@ -51870,6 +52041,9 @@ export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
|
51870
52041
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
51871
52042
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51872
52043
|
};
|
|
52044
|
+
export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
|
|
52045
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52046
|
+
};
|
|
51873
52047
|
export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
51874
52048
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51875
52049
|
};
|
|
@@ -60619,6 +60793,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
60619
60793
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
60620
60794
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
60621
60795
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
60796
|
+
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
60622
60797
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
60623
60798
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
60624
60799
|
priorityField?: Maybe<JiraPriorityField>;
|
|
@@ -62023,6 +62198,7 @@ export declare type JiraIssueSearchViewConfigSettings = {
|
|
|
62023
62198
|
hideDone?: Maybe<Scalars['Boolean']['output']>;
|
|
62024
62199
|
isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62025
62200
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62201
|
+
isSortedByGlobalRankOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
62026
62202
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
62027
62203
|
};
|
|
62028
62204
|
export declare type JiraIssueSearchViewContextInput = {
|
|
@@ -62453,6 +62629,10 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
62453
62629
|
Request = "REQUEST"
|
|
62454
62630
|
}
|
|
62455
62631
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
62632
|
+
export declare type JiraJourneyProjectSettings = {
|
|
62633
|
+
__typename?: 'JiraJourneyProjectSettings';
|
|
62634
|
+
isJourneyFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62635
|
+
};
|
|
62456
62636
|
export declare type JiraJourneySettings = {
|
|
62457
62637
|
__typename?: 'JiraJourneySettings';
|
|
62458
62638
|
maxJourneyItems?: Maybe<Scalars['Long']['output']>;
|
|
@@ -62728,9 +62908,13 @@ export declare type JiraJqlField = {
|
|
|
62728
62908
|
jqlTerm: Scalars['ID']['output'];
|
|
62729
62909
|
operators: Array<JiraJqlOperator>;
|
|
62730
62910
|
searchTemplate?: Maybe<JiraJqlSearchTemplate>;
|
|
62911
|
+
shouldExcludeInScope?: Maybe<Scalars['Boolean']['output']>;
|
|
62731
62912
|
shouldShowInContext?: Maybe<Scalars['Boolean']['output']>;
|
|
62732
62913
|
type?: Maybe<Scalars['String']['output']>;
|
|
62733
62914
|
};
|
|
62915
|
+
export declare type JiraJqlFieldShouldExcludeInScopeArgs = {
|
|
62916
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
62917
|
+
};
|
|
62734
62918
|
export declare type JiraJqlFieldConnection = {
|
|
62735
62919
|
__typename?: 'JiraJqlFieldConnection';
|
|
62736
62920
|
edges?: Maybe<Array<Maybe<JiraJqlFieldEdge>>>;
|
|
@@ -63139,6 +63323,7 @@ export declare type JiraJwmField = {
|
|
|
63139
63323
|
};
|
|
63140
63324
|
export declare type JiraLabel = {
|
|
63141
63325
|
__typename?: 'JiraLabel';
|
|
63326
|
+
color?: Maybe<JiraColor>;
|
|
63142
63327
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
63143
63328
|
name?: Maybe<Scalars['String']['output']>;
|
|
63144
63329
|
};
|
|
@@ -65428,6 +65613,11 @@ export declare enum JiraPermissionType {
|
|
|
65428
65613
|
BrowseProjects = "BROWSE_PROJECTS",
|
|
65429
65614
|
BulkChange = "BULK_CHANGE"
|
|
65430
65615
|
}
|
|
65616
|
+
export declare type JiraPinnedCommentsResponse = {
|
|
65617
|
+
__typename?: 'JiraPinnedCommentsResponse';
|
|
65618
|
+
maxPinnedCommentLimitReached?: Maybe<Scalars['Boolean']['output']>;
|
|
65619
|
+
pinnedComments?: Maybe<Array<Maybe<JiraComment>>>;
|
|
65620
|
+
};
|
|
65431
65621
|
export declare type JiraPlan = Node & {
|
|
65432
65622
|
__typename?: 'JiraPlan';
|
|
65433
65623
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
@@ -66713,6 +66903,7 @@ export declare type JiraQuery = {
|
|
|
66713
66903
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
66714
66904
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
66715
66905
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
66906
|
+
jiraJourneyProjectSettings?: Maybe<JiraJourneyProjectSettings>;
|
|
66716
66907
|
jiraJourneySettings?: Maybe<JiraJourneySettings>;
|
|
66717
66908
|
jiraProject?: Maybe<JiraProject>;
|
|
66718
66909
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
@@ -67325,6 +67516,10 @@ export declare type JiraQueryJiraJourneyItemArgs = {
|
|
|
67325
67516
|
isEditing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67326
67517
|
journeyId: Scalars['ID']['input'];
|
|
67327
67518
|
};
|
|
67519
|
+
export declare type JiraQueryJiraJourneyProjectSettingsArgs = {
|
|
67520
|
+
cloudId: Scalars['ID']['input'];
|
|
67521
|
+
projectKey: Scalars['String']['input'];
|
|
67522
|
+
};
|
|
67328
67523
|
export declare type JiraQueryJiraJourneySettingsArgs = {
|
|
67329
67524
|
cloudId: Scalars['ID']['input'];
|
|
67330
67525
|
};
|
|
@@ -71265,6 +71460,15 @@ export declare enum JiraTransitionSortOption {
|
|
|
71265
71460
|
OpsBar = "OPS_BAR",
|
|
71266
71461
|
OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY"
|
|
71267
71462
|
}
|
|
71463
|
+
export declare type JiraTrashGlobalCustomFieldsInput = {
|
|
71464
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
71465
|
+
};
|
|
71466
|
+
export declare type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
71467
|
+
__typename?: 'JiraTrashGlobalCustomFieldsPayload';
|
|
71468
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71469
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
71470
|
+
success: Scalars['Boolean']['output'];
|
|
71471
|
+
};
|
|
71268
71472
|
export declare type JiraUiExposedError = {
|
|
71269
71473
|
__typename?: 'JiraUIExposedError';
|
|
71270
71474
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -74563,6 +74767,11 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
74563
74767
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
74564
74768
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
74565
74769
|
};
|
|
74770
|
+
export declare type KnowledgeDiscoveryPopularSearchQuery = {
|
|
74771
|
+
__typename?: 'KnowledgeDiscoveryPopularSearchQuery';
|
|
74772
|
+
isPopular: Scalars['Boolean']['output'];
|
|
74773
|
+
};
|
|
74774
|
+
export declare type KnowledgeDiscoveryPopularSearchQueryResult = KnowledgeDiscoveryPopularSearchQuery | QueryError;
|
|
74566
74775
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
74567
74776
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
74568
74777
|
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
@@ -74574,6 +74783,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
74574
74783
|
definitionHistoryV2?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
74575
74784
|
definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
74576
74785
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
74786
|
+
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
74577
74787
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
74578
74788
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
74579
74789
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
@@ -74639,6 +74849,10 @@ export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
|
74639
74849
|
limited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74640
74850
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
74641
74851
|
};
|
|
74852
|
+
export declare type KnowledgeDiscoveryQueryApiPopularSearchQueryArgs = {
|
|
74853
|
+
cloudId: Scalars['String']['input'];
|
|
74854
|
+
searchQuery: Scalars['String']['input'];
|
|
74855
|
+
};
|
|
74642
74856
|
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
74643
74857
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74644
74858
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -78257,6 +78471,7 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
|
|
|
78257
78471
|
focusAreaOwner?: Maybe<User>;
|
|
78258
78472
|
focusAreaType?: Maybe<Scalars['ID']['output']>;
|
|
78259
78473
|
id: Scalars['ID']['output'];
|
|
78474
|
+
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
78260
78475
|
updatedBy?: Maybe<User>;
|
|
78261
78476
|
updatedDate: Scalars['DateTime']['output'];
|
|
78262
78477
|
};
|
|
@@ -80829,7 +81044,9 @@ export declare type Mutation = {
|
|
|
80829
81044
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
80830
81045
|
devAi?: Maybe<DevAiMutations>;
|
|
80831
81046
|
devOps?: Maybe<DevOpsMutation>;
|
|
81047
|
+
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
80832
81048
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
81049
|
+
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
80833
81050
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
80834
81051
|
devai_flowCreate?: Maybe<DevAiFlowSession>;
|
|
80835
81052
|
devai_flowSessionComplete?: Maybe<DevAiFlowSession>;
|
|
@@ -80892,6 +81109,7 @@ export declare type Mutation = {
|
|
|
80892
81109
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
80893
81110
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
80894
81111
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81112
|
+
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
80895
81113
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
80896
81114
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
80897
81115
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
@@ -81005,6 +81223,21 @@ export declare type Mutation = {
|
|
|
81005
81223
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
81006
81224
|
shepherd?: Maybe<ShepherdMutation>;
|
|
81007
81225
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
81226
|
+
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
81227
|
+
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
81228
|
+
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
81229
|
+
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
81230
|
+
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
81231
|
+
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
81232
|
+
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
81233
|
+
spf_updateDependencyJustification?: Maybe<SpfUpdateDependencyPayload>;
|
|
81234
|
+
spf_updateDependencyName?: Maybe<SpfUpdateDependencyPayload>;
|
|
81235
|
+
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
81236
|
+
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
81237
|
+
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
81238
|
+
spf_updateDependencyRequestingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
81239
|
+
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
81240
|
+
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
81008
81241
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
81009
81242
|
startSprint?: Maybe<SprintResponse>;
|
|
81010
81243
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
@@ -82160,12 +82393,24 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
82160
82393
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
82161
82394
|
id: Scalars['ID']['input'];
|
|
82162
82395
|
};
|
|
82396
|
+
export declare type MutationDevai_CompleteFlowSessionArgs = {
|
|
82397
|
+
id: Scalars['ID']['input'];
|
|
82398
|
+
};
|
|
82163
82399
|
export declare type MutationDevai_ContinueJobWithPromptArgs = {
|
|
82164
82400
|
cloudId: Scalars['ID']['input'];
|
|
82165
82401
|
jobId: Scalars['ID']['input'];
|
|
82166
82402
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
82167
82403
|
repoUrl: Scalars['String']['input'];
|
|
82168
82404
|
};
|
|
82405
|
+
export declare type MutationDevai_CreateFlowArgs = {
|
|
82406
|
+
additionalInfoJSON?: InputMaybe<Scalars['String']['input']>;
|
|
82407
|
+
cloudId: Scalars['String']['input'];
|
|
82408
|
+
createdBy: Scalars['String']['input'];
|
|
82409
|
+
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
82410
|
+
jiraHost: Scalars['String']['input'];
|
|
82411
|
+
jiraIssueJSON?: InputMaybe<Scalars['String']['input']>;
|
|
82412
|
+
repoUrl: Scalars['URL']['input'];
|
|
82413
|
+
};
|
|
82169
82414
|
export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
82170
82415
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
82171
82416
|
issueAri: Scalars['ID']['input'];
|
|
@@ -82336,6 +82581,10 @@ export declare type MutationJira_SetViewFilterArgs = {
|
|
|
82336
82581
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
82337
82582
|
input: JiraSetViewGroupByInput;
|
|
82338
82583
|
};
|
|
82584
|
+
export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
82585
|
+
cloudId: Scalars['ID']['input'];
|
|
82586
|
+
input: JiraTrashGlobalCustomFieldsInput;
|
|
82587
|
+
};
|
|
82339
82588
|
export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
82340
82589
|
cloudId: Scalars['ID']['input'];
|
|
82341
82590
|
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
@@ -82664,6 +82913,51 @@ export declare type MutationShareResourceArgs = {
|
|
|
82664
82913
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
82665
82914
|
spaceKey: Scalars['String']['input'];
|
|
82666
82915
|
};
|
|
82916
|
+
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
82917
|
+
input: SpfAttachRelatedContentInput;
|
|
82918
|
+
};
|
|
82919
|
+
export declare type MutationSpf_CreateCommentArgs = {
|
|
82920
|
+
input: SpfCreateCommentInput;
|
|
82921
|
+
};
|
|
82922
|
+
export declare type MutationSpf_CreateDependencyArgs = {
|
|
82923
|
+
input: SpfCreateDependencyInput;
|
|
82924
|
+
};
|
|
82925
|
+
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
82926
|
+
input: SpfDeleteDependencyInput;
|
|
82927
|
+
};
|
|
82928
|
+
export declare type MutationSpf_UpdateCommentArgs = {
|
|
82929
|
+
input: SpfUpdateCommentDataInput;
|
|
82930
|
+
};
|
|
82931
|
+
export declare type MutationSpf_UpdateDependencyDescriptionArgs = {
|
|
82932
|
+
input: SpfUpdateDependencyDescriptionInput;
|
|
82933
|
+
};
|
|
82934
|
+
export declare type MutationSpf_UpdateDependencyImpactedWorkArgs = {
|
|
82935
|
+
input: SpfUpdateDependencyImpactedWorkInput;
|
|
82936
|
+
};
|
|
82937
|
+
export declare type MutationSpf_UpdateDependencyJustificationArgs = {
|
|
82938
|
+
input: SpfUpdateDependencyJustificationInput;
|
|
82939
|
+
};
|
|
82940
|
+
export declare type MutationSpf_UpdateDependencyNameArgs = {
|
|
82941
|
+
input: SpfUpdateDependencyNameInput;
|
|
82942
|
+
};
|
|
82943
|
+
export declare type MutationSpf_UpdateDependencyOwnerArgs = {
|
|
82944
|
+
input: SpfUpdateDependencyOwnerInput;
|
|
82945
|
+
};
|
|
82946
|
+
export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
82947
|
+
input: SpfUpdateDependencyPriorityInput;
|
|
82948
|
+
};
|
|
82949
|
+
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
82950
|
+
input: SpfUpdateDependencyReceivingTeamInput;
|
|
82951
|
+
};
|
|
82952
|
+
export declare type MutationSpf_UpdateDependencyRequestingTeamArgs = {
|
|
82953
|
+
input: SpfUpdateDependencyRequestingTeamInput;
|
|
82954
|
+
};
|
|
82955
|
+
export declare type MutationSpf_UpdateDependencyStatusArgs = {
|
|
82956
|
+
input: SpfUpdateDependencyStatusInput;
|
|
82957
|
+
};
|
|
82958
|
+
export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
82959
|
+
input: SpfUpdateDependencyTargetDateInput;
|
|
82960
|
+
};
|
|
82667
82961
|
export declare type MutationSplitIssueArgs = {
|
|
82668
82962
|
input?: InputMaybe<SplitIssueInput>;
|
|
82669
82963
|
};
|
|
@@ -85589,6 +85883,7 @@ export declare type Query = {
|
|
|
85589
85883
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
85590
85884
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
85591
85885
|
agentStudio_customActionById?: Maybe<AgentStudioCustomActionResult>;
|
|
85886
|
+
agentStudio_customActionListByContainerId?: Maybe<AgentStudioCustomActionListResult>;
|
|
85592
85887
|
agentStudio_customActionsByIds?: Maybe<Array<Maybe<AgentStudioCustomAction>>>;
|
|
85593
85888
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85594
85889
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
@@ -86110,6 +86405,7 @@ export declare type Query = {
|
|
|
86110
86405
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
86111
86406
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
86112
86407
|
me: AuthenticationContext;
|
|
86408
|
+
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
86113
86409
|
mercury?: Maybe<MercuryQueryApi>;
|
|
86114
86410
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
86115
86411
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
@@ -86186,6 +86482,7 @@ export declare type Query = {
|
|
|
86186
86482
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
86187
86483
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
86188
86484
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
86485
|
+
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
86189
86486
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
86190
86487
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
86191
86488
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
@@ -86321,6 +86618,10 @@ export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
|
86321
86618
|
export declare type QueryAgentStudio_CustomActionByIdArgs = {
|
|
86322
86619
|
id: Scalars['ID']['input'];
|
|
86323
86620
|
};
|
|
86621
|
+
export declare type QueryAgentStudio_CustomActionListByContainerIdArgs = {
|
|
86622
|
+
cloudId: Scalars['String']['input'];
|
|
86623
|
+
containerId: Scalars['String']['input'];
|
|
86624
|
+
};
|
|
86324
86625
|
export declare type QueryAgentStudio_CustomActionsByIdsArgs = {
|
|
86325
86626
|
ids: Array<Scalars['ID']['input']>;
|
|
86326
86627
|
};
|
|
@@ -86552,7 +86853,7 @@ export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
|
86552
86853
|
};
|
|
86553
86854
|
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
86554
86855
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
86555
|
-
requestType?: InputMaybe<
|
|
86856
|
+
requestType?: InputMaybe<ChannelPlatformChannelType>;
|
|
86556
86857
|
};
|
|
86557
86858
|
export declare type QueryClassificationLevelArgs = {
|
|
86558
86859
|
id: Scalars['String']['input'];
|
|
@@ -88699,6 +89000,15 @@ export declare type QueryRadar_PositionByAriArgs = {
|
|
|
88699
89000
|
export declare type QueryRadar_PositionsByArisArgs = {
|
|
88700
89001
|
ids: Array<Scalars['ID']['input']>;
|
|
88701
89002
|
};
|
|
89003
|
+
export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
89004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89005
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89006
|
+
cloudId: Scalars['ID']['input'];
|
|
89007
|
+
entity: RadarPositionsByEntityType;
|
|
89008
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89009
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89010
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
89011
|
+
};
|
|
88702
89012
|
export declare type QueryRadar_PositionsSearchArgs = {
|
|
88703
89013
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88704
89014
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89213,14 +89523,12 @@ export declare type QuotaInfo = {
|
|
|
89213
89523
|
};
|
|
89214
89524
|
export declare type RadarAriFieldValue = {
|
|
89215
89525
|
__typename?: 'RadarAriFieldValue';
|
|
89216
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89217
89526
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89218
89527
|
value?: Maybe<RadarAriObject>;
|
|
89219
89528
|
};
|
|
89220
89529
|
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker;
|
|
89221
89530
|
export declare type RadarBooleanFieldValue = {
|
|
89222
89531
|
__typename?: 'RadarBooleanFieldValue';
|
|
89223
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89224
89532
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89225
89533
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
89226
89534
|
};
|
|
@@ -89271,7 +89579,6 @@ export declare enum RadarCustomFieldSyncStatus {
|
|
|
89271
89579
|
}
|
|
89272
89580
|
export declare type RadarDateFieldValue = {
|
|
89273
89581
|
__typename?: 'RadarDateFieldValue';
|
|
89274
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89275
89582
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89276
89583
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
89277
89584
|
};
|
|
@@ -89461,7 +89768,6 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
89461
89768
|
export declare type RadarNumericFieldValue = {
|
|
89462
89769
|
__typename?: 'RadarNumericFieldValue';
|
|
89463
89770
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
89464
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89465
89771
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89466
89772
|
value?: Maybe<Scalars['Int']['output']>;
|
|
89467
89773
|
};
|
|
@@ -89477,11 +89783,9 @@ export declare type RadarPermissionsInput = {
|
|
|
89477
89783
|
};
|
|
89478
89784
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
89479
89785
|
__typename?: 'RadarPosition';
|
|
89480
|
-
directReports?: Maybe<Array<RadarPosition>>;
|
|
89481
89786
|
entityId: Scalars['ID']['output'];
|
|
89482
89787
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
89483
89788
|
id: Scalars['ID']['output'];
|
|
89484
|
-
isManager: Scalars['Boolean']['output'];
|
|
89485
89789
|
manager?: Maybe<RadarPosition>;
|
|
89486
89790
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
89487
89791
|
role?: Maybe<RadarPositionRole>;
|
|
@@ -89518,6 +89822,32 @@ export declare enum RadarPositionRole {
|
|
|
89518
89822
|
IndividualContributor = "INDIVIDUAL_CONTRIBUTOR",
|
|
89519
89823
|
Manager = "MANAGER"
|
|
89520
89824
|
}
|
|
89825
|
+
export declare type RadarPositionsByAriObject = MercuryFocusArea;
|
|
89826
|
+
export declare type RadarPositionsByEntity = {
|
|
89827
|
+
__typename?: 'RadarPositionsByEntity';
|
|
89828
|
+
entity?: Maybe<RadarPositionsByAriObject>;
|
|
89829
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
89830
|
+
id: Scalars['ID']['output'];
|
|
89831
|
+
type: RadarEntityType;
|
|
89832
|
+
};
|
|
89833
|
+
export declare type RadarPositionsByEntityFieldValuesArgs = {
|
|
89834
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89835
|
+
};
|
|
89836
|
+
export declare type RadarPositionsByEntityConnection = RadarConnection & {
|
|
89837
|
+
__typename?: 'RadarPositionsByEntityConnection';
|
|
89838
|
+
edges?: Maybe<Array<RadarPositionsByEntityEdge>>;
|
|
89839
|
+
nodes?: Maybe<Array<RadarPositionsByEntity>>;
|
|
89840
|
+
pageInfo: PageInfo;
|
|
89841
|
+
totalCount: Scalars['Int']['output'];
|
|
89842
|
+
};
|
|
89843
|
+
export declare type RadarPositionsByEntityEdge = RadarEdge & {
|
|
89844
|
+
__typename?: 'RadarPositionsByEntityEdge';
|
|
89845
|
+
cursor: Scalars['String']['output'];
|
|
89846
|
+
node: RadarPositionsByEntity;
|
|
89847
|
+
};
|
|
89848
|
+
export declare enum RadarPositionsByEntityType {
|
|
89849
|
+
FocusArea = "focusArea"
|
|
89850
|
+
}
|
|
89521
89851
|
export declare type RadarPrincipalByResourceRole = {
|
|
89522
89852
|
__typename?: 'RadarPrincipalByResourceRole';
|
|
89523
89853
|
principals: Array<RadarGroupPrincipal>;
|
|
@@ -89556,13 +89886,11 @@ export declare type RadarStatusFieldValue = {
|
|
|
89556
89886
|
__typename?: 'RadarStatusFieldValue';
|
|
89557
89887
|
appearance?: Maybe<RadarStatusAppearance>;
|
|
89558
89888
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
89559
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89560
89889
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89561
89890
|
value?: Maybe<Scalars['String']['output']>;
|
|
89562
89891
|
};
|
|
89563
89892
|
export declare type RadarStringFieldValue = {
|
|
89564
89893
|
__typename?: 'RadarStringFieldValue';
|
|
89565
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89566
89894
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89567
89895
|
value?: Maybe<Scalars['String']['output']>;
|
|
89568
89896
|
};
|
|
@@ -89575,7 +89903,6 @@ export declare type RadarUrlFieldValue = {
|
|
|
89575
89903
|
__typename?: 'RadarUrlFieldValue';
|
|
89576
89904
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
89577
89905
|
icon?: Maybe<Scalars['String']['output']>;
|
|
89578
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89579
89906
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89580
89907
|
value?: Maybe<Scalars['String']['output']>;
|
|
89581
89908
|
};
|
|
@@ -94954,6 +95281,16 @@ export declare type SpaceWithExemption = {
|
|
|
94954
95281
|
status?: Maybe<Scalars['String']['output']>;
|
|
94955
95282
|
type?: Maybe<Scalars['String']['output']>;
|
|
94956
95283
|
};
|
|
95284
|
+
export declare type SpfAttachRelatedContentInput = {
|
|
95285
|
+
dependencyId: Scalars['ID']['input'];
|
|
95286
|
+
url: Scalars['URL']['input'];
|
|
95287
|
+
};
|
|
95288
|
+
export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
95289
|
+
__typename?: 'SpfAttachRelatedContentPayload';
|
|
95290
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95291
|
+
relatedContent?: Maybe<SpfRelatedContent>;
|
|
95292
|
+
success: Scalars['Boolean']['output'];
|
|
95293
|
+
};
|
|
94957
95294
|
export declare type SpfComment = {
|
|
94958
95295
|
__typename?: 'SpfComment';
|
|
94959
95296
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -94973,6 +95310,44 @@ export declare type SpfCommentEdge = {
|
|
|
94973
95310
|
cursor: Scalars['String']['output'];
|
|
94974
95311
|
node?: Maybe<SpfComment>;
|
|
94975
95312
|
};
|
|
95313
|
+
export declare type SpfCreateCommentInput = {
|
|
95314
|
+
data: Scalars['String']['input'];
|
|
95315
|
+
dependencyId: Scalars['ID']['input'];
|
|
95316
|
+
};
|
|
95317
|
+
export declare type SpfCreateCommentPayload = Payload & {
|
|
95318
|
+
__typename?: 'SpfCreateCommentPayload';
|
|
95319
|
+
comment?: Maybe<SpfComment>;
|
|
95320
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95321
|
+
success: Scalars['Boolean']['output'];
|
|
95322
|
+
};
|
|
95323
|
+
export declare type SpfCreateDependencyInput = {
|
|
95324
|
+
cloudId: Scalars['ID']['input'];
|
|
95325
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
95326
|
+
impactedWorkId: Scalars['String']['input'];
|
|
95327
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
95328
|
+
name: Scalars['String']['input'];
|
|
95329
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
95330
|
+
priority: SpfPriority;
|
|
95331
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
95332
|
+
requesterId: Scalars['String']['input'];
|
|
95333
|
+
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
95334
|
+
status: SpfDependencyStatus;
|
|
95335
|
+
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
95336
|
+
};
|
|
95337
|
+
export declare type SpfCreateDependencyPayload = Payload & {
|
|
95338
|
+
__typename?: 'SpfCreateDependencyPayload';
|
|
95339
|
+
dependency?: Maybe<SpfDependency>;
|
|
95340
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95341
|
+
success: Scalars['Boolean']['output'];
|
|
95342
|
+
};
|
|
95343
|
+
export declare type SpfDeleteDependencyInput = {
|
|
95344
|
+
id: Scalars['ID']['input'];
|
|
95345
|
+
};
|
|
95346
|
+
export declare type SpfDeleteDependencyPayload = Payload & {
|
|
95347
|
+
__typename?: 'SpfDeleteDependencyPayload';
|
|
95348
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95349
|
+
success: Scalars['Boolean']['output'];
|
|
95350
|
+
};
|
|
94976
95351
|
export declare type SpfDependency = Node & {
|
|
94977
95352
|
__typename?: 'SpfDependency';
|
|
94978
95353
|
comments?: Maybe<SpfCommentConnection>;
|
|
@@ -95062,11 +95437,71 @@ export declare type SpfTargetDate = {
|
|
|
95062
95437
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
95063
95438
|
targetDateType?: Maybe<SpfTargetDateType>;
|
|
95064
95439
|
};
|
|
95440
|
+
export declare type SpfTargetDateInput = {
|
|
95441
|
+
targetDate: Scalars['String']['input'];
|
|
95442
|
+
targetDateType: SpfTargetDateType;
|
|
95443
|
+
};
|
|
95065
95444
|
export declare enum SpfTargetDateType {
|
|
95066
95445
|
Day = "DAY",
|
|
95067
95446
|
Month = "MONTH",
|
|
95068
95447
|
Quarter = "QUARTER"
|
|
95069
95448
|
}
|
|
95449
|
+
export declare type SpfUpdateCommentDataInput = {
|
|
95450
|
+
data: Scalars['String']['input'];
|
|
95451
|
+
id: Scalars['ID']['input'];
|
|
95452
|
+
};
|
|
95453
|
+
export declare type SpfUpdateCommentPayload = Payload & {
|
|
95454
|
+
__typename?: 'SpfUpdateCommentPayload';
|
|
95455
|
+
comment?: Maybe<SpfComment>;
|
|
95456
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95457
|
+
success: Scalars['Boolean']['output'];
|
|
95458
|
+
};
|
|
95459
|
+
export declare type SpfUpdateDependencyDescriptionInput = {
|
|
95460
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
95461
|
+
id: Scalars['ID']['input'];
|
|
95462
|
+
};
|
|
95463
|
+
export declare type SpfUpdateDependencyImpactedWorkInput = {
|
|
95464
|
+
id: Scalars['ID']['input'];
|
|
95465
|
+
impactedWorkId: Scalars['String']['input'];
|
|
95466
|
+
};
|
|
95467
|
+
export declare type SpfUpdateDependencyJustificationInput = {
|
|
95468
|
+
id: Scalars['ID']['input'];
|
|
95469
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
95470
|
+
};
|
|
95471
|
+
export declare type SpfUpdateDependencyNameInput = {
|
|
95472
|
+
id: Scalars['ID']['input'];
|
|
95473
|
+
name: Scalars['String']['input'];
|
|
95474
|
+
};
|
|
95475
|
+
export declare type SpfUpdateDependencyOwnerInput = {
|
|
95476
|
+
id: Scalars['ID']['input'];
|
|
95477
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
95478
|
+
};
|
|
95479
|
+
export declare type SpfUpdateDependencyPayload = Payload & {
|
|
95480
|
+
__typename?: 'SpfUpdateDependencyPayload';
|
|
95481
|
+
dependency?: Maybe<SpfDependency>;
|
|
95482
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95483
|
+
success: Scalars['Boolean']['output'];
|
|
95484
|
+
};
|
|
95485
|
+
export declare type SpfUpdateDependencyPriorityInput = {
|
|
95486
|
+
id: Scalars['ID']['input'];
|
|
95487
|
+
priority: SpfPriority;
|
|
95488
|
+
};
|
|
95489
|
+
export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
95490
|
+
id: Scalars['ID']['input'];
|
|
95491
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
95492
|
+
};
|
|
95493
|
+
export declare type SpfUpdateDependencyRequestingTeamInput = {
|
|
95494
|
+
id: Scalars['ID']['input'];
|
|
95495
|
+
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
95496
|
+
};
|
|
95497
|
+
export declare type SpfUpdateDependencyStatusInput = {
|
|
95498
|
+
id: Scalars['ID']['input'];
|
|
95499
|
+
status: SpfDependencyStatus;
|
|
95500
|
+
};
|
|
95501
|
+
export declare type SpfUpdateDependencyTargetDateInput = {
|
|
95502
|
+
id: Scalars['ID']['input'];
|
|
95503
|
+
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
95504
|
+
};
|
|
95070
95505
|
export declare type SplitIssueInput = {
|
|
95071
95506
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
95072
95507
|
originalIssue: OriginalSplitIssue;
|
|
@@ -95279,7 +95714,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
95279
95714
|
export declare type Subscription = {
|
|
95280
95715
|
__typename?: 'Subscription';
|
|
95281
95716
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
95282
|
-
confluence_onContentUpdated?: Maybe<ConfluenceContent>;
|
|
95283
95717
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
95284
95718
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
95285
95719
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -95298,9 +95732,6 @@ export declare type Subscription = {
|
|
|
95298
95732
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
95299
95733
|
id: Scalars['ID']['input'];
|
|
95300
95734
|
};
|
|
95301
|
-
export declare type SubscriptionConfluence_OnContentUpdatedArgs = {
|
|
95302
|
-
id: Scalars['ID']['input'];
|
|
95303
|
-
};
|
|
95304
95735
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
95305
95736
|
cloudId: Scalars['ID']['input'];
|
|
95306
95737
|
jobId: Scalars['ID']['input'];
|