@forge/cli-shared 6.10.0-next.5 → 6.10.0-next.6-experimental-93876a6

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.
@@ -411,9 +411,9 @@ export declare type ActivitiesArguments = {
411
411
  accountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
412
412
  cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
413
413
  containerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
414
- earliestStart?: InputMaybe<Scalars['DateTime']['input']>;
414
+ earliestStart?: InputMaybe<Scalars['String']['input']>;
415
415
  eventTypes?: InputMaybe<Array<ActivityEventType>>;
416
- latestStart?: InputMaybe<Scalars['DateTime']['input']>;
416
+ latestStart?: InputMaybe<Scalars['String']['input']>;
417
417
  objectTypes?: InputMaybe<Array<ActivitiesObjectType>>;
418
418
  products?: InputMaybe<Array<ActivityProduct>>;
419
419
  transitions?: InputMaybe<Array<ActivityTransition>>;
@@ -431,13 +431,13 @@ export declare type ActivitiesConnection = {
431
431
  export declare type ActivitiesContainer = {
432
432
  __typename?: 'ActivitiesContainer';
433
433
  cloudId?: Maybe<Scalars['String']['output']>;
434
- iconUrl?: Maybe<Scalars['URL']['output']>;
434
+ iconUrl?: Maybe<Scalars['String']['output']>;
435
435
  id: Scalars['ID']['output'];
436
436
  localResourceId?: Maybe<Scalars['ID']['output']>;
437
437
  name?: Maybe<Scalars['String']['output']>;
438
438
  product?: Maybe<ActivityProduct>;
439
439
  type?: Maybe<ActivitiesContainerType>;
440
- url?: Maybe<Scalars['URL']['output']>;
440
+ url?: Maybe<Scalars['String']['output']>;
441
441
  };
442
442
  export declare enum ActivitiesContainerType {
443
443
  Project = "PROJECT",
@@ -448,7 +448,7 @@ export declare enum ActivitiesContainerType {
448
448
  export declare type ActivitiesContributor = {
449
449
  __typename?: 'ActivitiesContributor';
450
450
  count?: Maybe<Scalars['Int']['output']>;
451
- lastAccessedDate?: Maybe<Scalars['DateTime']['output']>;
451
+ lastAccessedDate?: Maybe<Scalars['String']['output']>;
452
452
  profile?: Maybe<User>;
453
453
  };
454
454
  export declare type ActivitiesEvent = Node & {
@@ -456,7 +456,7 @@ export declare type ActivitiesEvent = Node & {
456
456
  eventType?: Maybe<ActivityEventType>;
457
457
  extension?: Maybe<ActivitiesEventExtension>;
458
458
  id: Scalars['ID']['output'];
459
- timestamp?: Maybe<Scalars['DateTime']['output']>;
459
+ timestamp?: Maybe<Scalars['String']['output']>;
460
460
  user?: Maybe<ActivitiesUser>;
461
461
  };
462
462
  export declare type ActivitiesEventExtension = ActivitiesCommentedEvent | ActivitiesTransitionedEvent;
@@ -472,7 +472,7 @@ export declare type ActivitiesItem = Node & {
472
472
  __typename?: 'ActivitiesItem';
473
473
  id: Scalars['ID']['output'];
474
474
  object?: Maybe<ActivitiesObject>;
475
- timestamp?: Maybe<Scalars['DateTime']['output']>;
475
+ timestamp?: Maybe<Scalars['String']['output']>;
476
476
  };
477
477
  export declare type ActivitiesJiraIssue = {
478
478
  __typename?: 'ActivitiesJiraIssue';
@@ -482,17 +482,18 @@ export declare type ActivitiesObject = Node & {
482
482
  __typename?: 'ActivitiesObject';
483
483
  cloudId?: Maybe<Scalars['String']['output']>;
484
484
  containers?: Maybe<Array<ActivitiesContainer>>;
485
+ content?: Maybe<Content>;
485
486
  contributors?: Maybe<Array<ActivitiesContributor>>;
486
487
  events?: Maybe<Array<ActivitiesEvent>>;
487
488
  extension?: Maybe<ActivitiesObjectExtension>;
488
- iconUrl?: Maybe<Scalars['URL']['output']>;
489
+ iconUrl?: Maybe<Scalars['String']['output']>;
489
490
  id: Scalars['ID']['output'];
490
491
  localResourceId?: Maybe<Scalars['ID']['output']>;
491
492
  name?: Maybe<Scalars['String']['output']>;
492
493
  parent?: Maybe<ActivitiesObjectParent>;
493
494
  product?: Maybe<ActivityProduct>;
494
495
  type?: Maybe<ActivityObjectType>;
495
- url?: Maybe<Scalars['URL']['output']>;
496
+ url?: Maybe<Scalars['String']['output']>;
496
497
  };
497
498
  export declare type ActivitiesObjectEventsArgs = {
498
499
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -1157,6 +1158,7 @@ export declare enum ApiGroup {
1157
1158
  Confluence = "CONFLUENCE",
1158
1159
  ConfluenceAnalytics = "CONFLUENCE_ANALYTICS",
1159
1160
  ConfluenceLegacy = "CONFLUENCE_LEGACY",
1161
+ ConfluenceMigration = "CONFLUENCE_MIGRATION",
1160
1162
  ConfluenceMutations = "CONFLUENCE_MUTATIONS",
1161
1163
  ConfluencePages = "CONFLUENCE_PAGES",
1162
1164
  ConfluencePageTree = "CONFLUENCE_PAGE_TREE",
@@ -1671,6 +1673,10 @@ export declare type AppInstallationTask = {
1671
1673
  id: Scalars['ID']['output'];
1672
1674
  state: AppTaskState;
1673
1675
  };
1676
+ export declare type AppInstallationTasksFilter = {
1677
+ appId: Scalars['ID']['input'];
1678
+ taskContext: Scalars['ID']['input'];
1679
+ };
1674
1680
  export declare type AppInstallationUnsubscribeTask = AppInstallationTask & {
1675
1681
  __typename?: 'AppInstallationUnsubscribeTask';
1676
1682
  appEnvironmentId?: Maybe<Scalars['ID']['output']>;
@@ -2102,6 +2108,18 @@ export declare type AppSubscribePayload = Payload & {
2102
2108
  success: Scalars['Boolean']['output'];
2103
2109
  taskId?: Maybe<Scalars['ID']['output']>;
2104
2110
  };
2111
+ export declare type AppTaskConnection = {
2112
+ __typename?: 'AppTaskConnection';
2113
+ edges?: Maybe<Array<Maybe<AppTaskEdge>>>;
2114
+ nodes?: Maybe<Array<Maybe<AppInstallationTask>>>;
2115
+ pageInfo?: Maybe<PageInfo>;
2116
+ totalCount?: Maybe<Scalars['Int']['output']>;
2117
+ };
2118
+ export declare type AppTaskEdge = {
2119
+ __typename?: 'AppTaskEdge';
2120
+ cursor: Scalars['String']['output'];
2121
+ node?: Maybe<AppInstallationTask>;
2122
+ };
2105
2123
  export declare enum AppTaskState {
2106
2124
  Complete = "COMPLETE",
2107
2125
  Failed = "FAILED",
@@ -3535,15 +3553,22 @@ export declare type CcpContext = {
3535
3553
  subject?: Maybe<Scalars['String']['output']>;
3536
3554
  subjectType?: Maybe<Scalars['String']['output']>;
3537
3555
  };
3556
+ export declare type CcpCreateEntitlementExistingEntitlement = {
3557
+ entitlementId: Scalars['ID']['input'];
3558
+ };
3538
3559
  export declare type CcpCreateEntitlementExperienceCapability = CommerceExperienceCapability & {
3539
3560
  __typename?: 'CcpCreateEntitlementExperienceCapability';
3561
+ billingCycle?: Maybe<CcpBillingInterval>;
3540
3562
  errorDescription?: Maybe<Scalars['String']['output']>;
3541
3563
  errorReasonCode?: Maybe<CcpCreateEntitlementExperienceCapabilityErrorReasonCode>;
3542
3564
  experienceUrl?: Maybe<Scalars['String']['output']>;
3543
3565
  isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
3566
+ offering?: Maybe<CcpOffering>;
3544
3567
  };
3545
3568
  export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
3569
+ InsufficientInput = "INSUFFICIENT_INPUT",
3546
3570
  MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
3571
+ NoOfferingForProduct = "NO_OFFERING_FOR_PRODUCT",
3547
3572
  UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
3548
3573
  }
3549
3574
  export declare type CcpCreateEntitlementExperienceOptions = {
@@ -3555,17 +3580,29 @@ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
3555
3580
  }
3556
3581
  export declare type CcpCreateEntitlementInput = {
3557
3582
  experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
3558
- offeringKey: Scalars['ID']['input'];
3583
+ offeringKey?: InputMaybe<Scalars['ID']['input']>;
3559
3584
  orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
3560
- relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
3585
+ productKey?: InputMaybe<Scalars['ID']['input']>;
3586
+ relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
3587
+ };
3588
+ export declare type CcpCreateEntitlementNewEntitlement = {
3589
+ offeringId?: InputMaybe<Scalars['ID']['input']>;
3590
+ productId?: InputMaybe<Scalars['ID']['input']>;
3591
+ relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
3561
3592
  };
3562
3593
  export declare type CcpCreateEntitlementOrderOptions = {
3563
3594
  billingCycle?: InputMaybe<CcpBillingInterval>;
3564
3595
  provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
3565
3596
  trial?: InputMaybe<CcpCreateEntitlementTrialIntent>;
3566
3597
  };
3567
- export declare type CcpCreateEntitlementRelatesTo = {
3568
- entitlement?: InputMaybe<CcpEntitlementDetailsForCreateEntitlement>;
3598
+ export declare type CcpCreateEntitlementRelationship = {
3599
+ direction: CcpOfferingRelationshipDirection;
3600
+ entitlement: CcpCreateEntitlementRelationshipEntitlement;
3601
+ relationshipType: CcpRelationshipType;
3602
+ };
3603
+ export declare type CcpCreateEntitlementRelationshipEntitlement = {
3604
+ existingEntitlement?: InputMaybe<CcpCreateEntitlementExistingEntitlement>;
3605
+ newEntitlement?: InputMaybe<CcpCreateEntitlementNewEntitlement>;
3569
3606
  };
3570
3607
  export declare type CcpCreateEntitlementTrialIntent = {
3571
3608
  behaviourAtEndOfTrial?: InputMaybe<CcpBehaviourAtEndOfTrial>;
@@ -3651,9 +3688,6 @@ export declare type CcpEntitlementDefaultStandaloneOfferingTransitionsArgs = {
3651
3688
  export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
3652
3689
  chargeElement?: InputMaybe<Scalars['String']['input']>;
3653
3690
  };
3654
- export declare type CcpEntitlementDetailsForCreateEntitlement = {
3655
- entitlementId: Scalars['ID']['input'];
3656
- };
3657
3691
  export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
3658
3692
  __typename?: 'CcpEntitlementExperienceCapabilities';
3659
3693
  applyEntitlementPromotion?: Maybe<CcpApplyEntitlementPromotionExperienceCapability>;
@@ -3862,6 +3896,10 @@ export declare type CcpOfferingRelationship = {
3862
3896
  updatedAt?: Maybe<Scalars['Float']['output']>;
3863
3897
  version?: Maybe<Scalars['Int']['output']>;
3864
3898
  };
3899
+ export declare enum CcpOfferingRelationshipDirection {
3900
+ From = "FROM",
3901
+ To = "TO"
3902
+ }
3865
3903
  export declare enum CcpOfferingStatus {
3866
3904
  Active = "ACTIVE",
3867
3905
  AtNotice = "AT_NOTICE",
@@ -3991,6 +4029,7 @@ export declare type CcpQueryApi = {
3991
4029
  offering?: Maybe<CcpOffering>;
3992
4030
  pricingPlan?: Maybe<CcpPricingPlan>;
3993
4031
  product?: Maybe<CcpProduct>;
4032
+ quotes?: Maybe<Array<Maybe<CcpQuote>>>;
3994
4033
  transactionAccount?: Maybe<CcpTransactionAccount>;
3995
4034
  };
3996
4035
  export declare type CcpQueryApiEntitlementArgs = {
@@ -4008,9 +4047,290 @@ export declare type CcpQueryApiPricingPlanArgs = {
4008
4047
  export declare type CcpQueryApiProductArgs = {
4009
4048
  id: Scalars['ID']['input'];
4010
4049
  };
4050
+ export declare type CcpQueryApiQuotesArgs = {
4051
+ ids: Array<Scalars['ID']['input']>;
4052
+ };
4011
4053
  export declare type CcpQueryApiTransactionAccountArgs = {
4012
4054
  id: Scalars['ID']['input'];
4013
4055
  };
4056
+ export declare type CcpQuote = Node & {
4057
+ __typename?: 'CcpQuote';
4058
+ autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
4059
+ cancelledReason?: Maybe<CcpQuoteCancelledReason>;
4060
+ clonedFrom?: Maybe<Scalars['String']['output']>;
4061
+ contractType?: Maybe<CcpQuoteContractType>;
4062
+ createdAt?: Maybe<Scalars['Float']['output']>;
4063
+ createdBy?: Maybe<CcpQuoteAuthorContext>;
4064
+ expiresAfterDays?: Maybe<Scalars['Int']['output']>;
4065
+ expiresAt?: Maybe<Scalars['Float']['output']>;
4066
+ externalNotes?: Maybe<Array<Maybe<CcpQuoteExternalNote>>>;
4067
+ finalizedAt?: Maybe<Scalars['Float']['output']>;
4068
+ fromQuote?: Maybe<Scalars['String']['output']>;
4069
+ id: Scalars['ID']['output'];
4070
+ invoiceGroupId?: Maybe<Scalars['String']['output']>;
4071
+ lineItems?: Maybe<Array<Maybe<CcpQuoteLineItem>>>;
4072
+ locale?: Maybe<Scalars['String']['output']>;
4073
+ name?: Maybe<Scalars['String']['output']>;
4074
+ number?: Maybe<Scalars['String']['output']>;
4075
+ reasonCode?: Maybe<Scalars['String']['output']>;
4076
+ revision?: Maybe<Scalars['Int']['output']>;
4077
+ staleReason?: Maybe<CcpQuoteStaleReason>;
4078
+ status?: Maybe<CcpQuoteStatus>;
4079
+ transactionAccountId?: Maybe<Scalars['String']['output']>;
4080
+ upcomingBills?: Maybe<CcpQuoteUpcomingBills>;
4081
+ upcomingBillsComputedAt?: Maybe<Scalars['Float']['output']>;
4082
+ upcomingBillsRequestedAt?: Maybe<Scalars['Float']['output']>;
4083
+ updatedAt?: Maybe<Scalars['Float']['output']>;
4084
+ updatedBy?: Maybe<CcpQuoteAuthorContext>;
4085
+ version?: Maybe<Scalars['Int']['output']>;
4086
+ };
4087
+ export declare type CcpQuoteAdjustment = {
4088
+ __typename?: 'CcpQuoteAdjustment';
4089
+ amount?: Maybe<Scalars['Float']['output']>;
4090
+ percent?: Maybe<Scalars['Float']['output']>;
4091
+ promoCode?: Maybe<Scalars['String']['output']>;
4092
+ promotionId?: Maybe<Scalars['String']['output']>;
4093
+ reasonCode?: Maybe<Scalars['String']['output']>;
4094
+ type?: Maybe<Scalars['String']['output']>;
4095
+ };
4096
+ export declare type CcpQuoteAuthorContext = {
4097
+ __typename?: 'CcpQuoteAuthorContext';
4098
+ isCustomerAdvocate?: Maybe<Scalars['Boolean']['output']>;
4099
+ isSystemDrivenAction?: Maybe<Scalars['Boolean']['output']>;
4100
+ subject?: Maybe<Scalars['String']['output']>;
4101
+ subjectType?: Maybe<Scalars['String']['output']>;
4102
+ };
4103
+ export declare type CcpQuoteAutoRefresh = {
4104
+ __typename?: 'CcpQuoteAutoRefresh';
4105
+ initiatedAt?: Maybe<Scalars['Float']['output']>;
4106
+ reason?: Maybe<Scalars['String']['output']>;
4107
+ };
4108
+ export declare type CcpQuoteBillFrom = {
4109
+ __typename?: 'CcpQuoteBillFrom';
4110
+ timestamp?: Maybe<Scalars['Float']['output']>;
4111
+ type?: Maybe<CcpQuoteStartDateType>;
4112
+ };
4113
+ export declare type CcpQuoteBillTo = {
4114
+ __typename?: 'CcpQuoteBillTo';
4115
+ duration?: Maybe<CcpQuoteDuration>;
4116
+ timestamp?: Maybe<Scalars['Float']['output']>;
4117
+ type?: Maybe<CcpQuoteEndDateType>;
4118
+ };
4119
+ export declare type CcpQuoteBillingAnchor = {
4120
+ __typename?: 'CcpQuoteBillingAnchor';
4121
+ timestamp?: Maybe<Scalars['Float']['output']>;
4122
+ type?: Maybe<CcpQuoteStartDateType>;
4123
+ };
4124
+ export declare type CcpQuoteBlendedMarginComputation = {
4125
+ __typename?: 'CcpQuoteBlendedMarginComputation';
4126
+ blendedMargin?: Maybe<Scalars['Float']['output']>;
4127
+ newGlp?: Maybe<Scalars['Float']['output']>;
4128
+ previousGlp?: Maybe<Scalars['Float']['output']>;
4129
+ renewPercentage?: Maybe<Scalars['Float']['output']>;
4130
+ renewalMargin?: Maybe<Scalars['Float']['output']>;
4131
+ renewalValue?: Maybe<Scalars['Float']['output']>;
4132
+ upsellMargin?: Maybe<Scalars['Float']['output']>;
4133
+ upsellPercentage?: Maybe<Scalars['Float']['output']>;
4134
+ upsellValue?: Maybe<Scalars['Float']['output']>;
4135
+ };
4136
+ export declare type CcpQuoteCancelledReason = {
4137
+ __typename?: 'CcpQuoteCancelledReason';
4138
+ code?: Maybe<Scalars['String']['output']>;
4139
+ lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
4140
+ name?: Maybe<Scalars['String']['output']>;
4141
+ orderId?: Maybe<Scalars['String']['output']>;
4142
+ orderItemId?: Maybe<Scalars['String']['output']>;
4143
+ };
4144
+ export declare type CcpQuoteChargeQuantity = {
4145
+ __typename?: 'CcpQuoteChargeQuantity';
4146
+ chargeElement?: Maybe<Scalars['String']['output']>;
4147
+ quantity?: Maybe<Scalars['Float']['output']>;
4148
+ };
4149
+ export declare enum CcpQuoteContractType {
4150
+ NonStandard = "NON_STANDARD",
4151
+ Standard = "STANDARD"
4152
+ }
4153
+ export declare type CcpQuoteDuration = {
4154
+ __typename?: 'CcpQuoteDuration';
4155
+ interval?: Maybe<CcpQuoteInterval>;
4156
+ intervalCount?: Maybe<Scalars['Int']['output']>;
4157
+ };
4158
+ export declare enum CcpQuoteEndDateType {
4159
+ Duration = "DURATION",
4160
+ Timestamp = "TIMESTAMP"
4161
+ }
4162
+ export declare type CcpQuoteExternalNote = {
4163
+ __typename?: 'CcpQuoteExternalNote';
4164
+ createdAt?: Maybe<Scalars['Float']['output']>;
4165
+ note?: Maybe<Scalars['String']['output']>;
4166
+ };
4167
+ export declare enum CcpQuoteInterval {
4168
+ Year = "YEAR"
4169
+ }
4170
+ export declare type CcpQuoteLineItem = {
4171
+ __typename?: 'CcpQuoteLineItem';
4172
+ billingAnchor?: Maybe<CcpQuoteBillingAnchor>;
4173
+ cancelledReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
4174
+ chargeQuantities?: Maybe<Array<Maybe<CcpQuoteChargeQuantity>>>;
4175
+ endsAt?: Maybe<CcpQuoteLineItemEndsAt>;
4176
+ entitlementId?: Maybe<Scalars['String']['output']>;
4177
+ entitlementVersion?: Maybe<Scalars['String']['output']>;
4178
+ lineItemId?: Maybe<Scalars['String']['output']>;
4179
+ lineItemType?: Maybe<CcpQuoteLineItemType>;
4180
+ lockContext?: Maybe<CcpQuoteLockContext>;
4181
+ offeringKey?: Maybe<Scalars['String']['output']>;
4182
+ orderItemId?: Maybe<Scalars['String']['output']>;
4183
+ preBillingConfiguration?: Maybe<CcpQuotePreBillingConfiguration>;
4184
+ pricingPlanId?: Maybe<Scalars['String']['output']>;
4185
+ promotions?: Maybe<Array<Maybe<CcpQuotePromotion>>>;
4186
+ prorationBehaviour?: Maybe<CcpQuoteProrationBehaviour>;
4187
+ relatesFromEntitlements?: Maybe<Array<Maybe<CcpQuoteRelatesFromEntitlement>>>;
4188
+ skipTrial?: Maybe<Scalars['Boolean']['output']>;
4189
+ staleReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
4190
+ startsAt?: Maybe<CcpQuoteStartsAt>;
4191
+ status?: Maybe<CcpQuoteLineItemStatus>;
4192
+ subscriptionId?: Maybe<Scalars['String']['output']>;
4193
+ };
4194
+ export declare type CcpQuoteLineItemEndsAt = {
4195
+ __typename?: 'CcpQuoteLineItemEndsAt';
4196
+ duration?: Maybe<CcpQuoteDuration>;
4197
+ timestamp?: Maybe<Scalars['Float']['output']>;
4198
+ type?: Maybe<CcpQuoteEndDateType>;
4199
+ };
4200
+ export declare type CcpQuoteLineItemStaleOrCancelledReason = {
4201
+ __typename?: 'CcpQuoteLineItemStaleOrCancelledReason';
4202
+ code?: Maybe<Scalars['String']['output']>;
4203
+ lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
4204
+ name?: Maybe<Scalars['String']['output']>;
4205
+ orderId?: Maybe<Scalars['String']['output']>;
4206
+ orderItemId?: Maybe<Scalars['String']['output']>;
4207
+ };
4208
+ export declare enum CcpQuoteLineItemStatus {
4209
+ Cancelled = "CANCELLED",
4210
+ Stale = "STALE"
4211
+ }
4212
+ export declare enum CcpQuoteLineItemType {
4213
+ AccountModification = "ACCOUNT_MODIFICATION",
4214
+ AmendEntitlement = "AMEND_ENTITLEMENT",
4215
+ CancelEntitlement = "CANCEL_ENTITLEMENT",
4216
+ CreateEntitlement = "CREATE_ENTITLEMENT",
4217
+ ReactivateEntitlement = "REACTIVATE_ENTITLEMENT"
4218
+ }
4219
+ export declare type CcpQuoteLockContext = {
4220
+ __typename?: 'CcpQuoteLockContext';
4221
+ isPriceLocked?: Maybe<Scalars['Boolean']['output']>;
4222
+ };
4223
+ export declare type CcpQuoteMargin = {
4224
+ __typename?: 'CcpQuoteMargin';
4225
+ amount?: Maybe<Scalars['Float']['output']>;
4226
+ blendedComputation?: Maybe<CcpQuoteBlendedMarginComputation>;
4227
+ percent?: Maybe<Scalars['Float']['output']>;
4228
+ promoCode?: Maybe<Scalars['String']['output']>;
4229
+ promotionId?: Maybe<Scalars['String']['output']>;
4230
+ reasonCode?: Maybe<Scalars['String']['output']>;
4231
+ type?: Maybe<Scalars['String']['output']>;
4232
+ };
4233
+ export declare type CcpQuotePeriod = {
4234
+ __typename?: 'CcpQuotePeriod';
4235
+ endsAt?: Maybe<Scalars['Float']['output']>;
4236
+ startsAt?: Maybe<Scalars['Float']['output']>;
4237
+ };
4238
+ export declare type CcpQuotePreBillingConfiguration = {
4239
+ __typename?: 'CcpQuotePreBillingConfiguration';
4240
+ billFrom?: Maybe<CcpQuoteBillFrom>;
4241
+ billTo?: Maybe<CcpQuoteBillTo>;
4242
+ };
4243
+ export declare type CcpQuotePromotion = {
4244
+ __typename?: 'CcpQuotePromotion';
4245
+ promotionDefinition?: Maybe<CcpQuotePromotionDefinition>;
4246
+ promotionInstanceId?: Maybe<Scalars['String']['output']>;
4247
+ };
4248
+ export declare type CcpQuotePromotionDefinition = {
4249
+ __typename?: 'CcpQuotePromotionDefinition';
4250
+ promotionCode?: Maybe<Scalars['String']['output']>;
4251
+ promotionId?: Maybe<Scalars['String']['output']>;
4252
+ };
4253
+ export declare enum CcpQuoteProrationBehaviour {
4254
+ CreateProrations = "CREATE_PRORATIONS",
4255
+ None = "NONE"
4256
+ }
4257
+ export declare enum CcpQuoteReferenceType {
4258
+ Entitlement = "ENTITLEMENT",
4259
+ LineItem = "LINE_ITEM"
4260
+ }
4261
+ export declare type CcpQuoteRelatesFromEntitlement = {
4262
+ __typename?: 'CcpQuoteRelatesFromEntitlement';
4263
+ entitlementId?: Maybe<Scalars['String']['output']>;
4264
+ lineItemId?: Maybe<Scalars['String']['output']>;
4265
+ referenceType?: Maybe<CcpQuoteReferenceType>;
4266
+ relationshipType?: Maybe<Scalars['String']['output']>;
4267
+ };
4268
+ export declare type CcpQuoteStaleReason = {
4269
+ __typename?: 'CcpQuoteStaleReason';
4270
+ code?: Maybe<Scalars['String']['output']>;
4271
+ expiresAt?: Maybe<Scalars['Float']['output']>;
4272
+ lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
4273
+ name?: Maybe<Scalars['String']['output']>;
4274
+ orderId?: Maybe<Scalars['String']['output']>;
4275
+ orderItemId?: Maybe<Scalars['String']['output']>;
4276
+ };
4277
+ export declare enum CcpQuoteStartDateType {
4278
+ QuoteAcceptanceDate = "QUOTE_ACCEPTANCE_DATE",
4279
+ Timestamp = "TIMESTAMP",
4280
+ UpcomingInvoice = "UPCOMING_INVOICE"
4281
+ }
4282
+ export declare type CcpQuoteStartsAt = {
4283
+ __typename?: 'CcpQuoteStartsAt';
4284
+ timestamp?: Maybe<Scalars['Float']['output']>;
4285
+ type?: Maybe<CcpQuoteStartDateType>;
4286
+ };
4287
+ export declare enum CcpQuoteStatus {
4288
+ AcceptanceInProgress = "ACCEPTANCE_IN_PROGRESS",
4289
+ Accepted = "ACCEPTED",
4290
+ CancellationInProgress = "CANCELLATION_IN_PROGRESS",
4291
+ Cancelled = "CANCELLED",
4292
+ CloningInProgress = "CLONING_IN_PROGRESS",
4293
+ CreationInProgress = "CREATION_IN_PROGRESS",
4294
+ Draft = "DRAFT",
4295
+ FinalizationInProgress = "FINALIZATION_IN_PROGRESS",
4296
+ Open = "OPEN",
4297
+ RevisionInProgress = "REVISION_IN_PROGRESS",
4298
+ Stale = "STALE",
4299
+ UpdateInProgress = "UPDATE_IN_PROGRESS",
4300
+ ValidationInProgress = "VALIDATION_IN_PROGRESS"
4301
+ }
4302
+ export declare type CcpQuoteTaxItem = {
4303
+ __typename?: 'CcpQuoteTaxItem';
4304
+ tax?: Maybe<Scalars['Float']['output']>;
4305
+ taxAmountLabel?: Maybe<Scalars['String']['output']>;
4306
+ taxPercent?: Maybe<Scalars['Float']['output']>;
4307
+ };
4308
+ export declare type CcpQuoteUpcomingBills = {
4309
+ __typename?: 'CcpQuoteUpcomingBills';
4310
+ lines?: Maybe<Array<Maybe<CcpQuoteUpcomingBillsLine>>>;
4311
+ subTotal?: Maybe<Scalars['Float']['output']>;
4312
+ tax?: Maybe<Scalars['Float']['output']>;
4313
+ total?: Maybe<Scalars['Float']['output']>;
4314
+ };
4315
+ export declare type CcpQuoteUpcomingBillsLine = {
4316
+ __typename?: 'CcpQuoteUpcomingBillsLine';
4317
+ accruedCharges?: Maybe<Scalars['Boolean']['output']>;
4318
+ adjustments?: Maybe<Array<Maybe<CcpQuoteAdjustment>>>;
4319
+ currency?: Maybe<CcpCurrency>;
4320
+ description?: Maybe<Scalars['String']['output']>;
4321
+ id?: Maybe<Scalars['String']['output']>;
4322
+ margins?: Maybe<Array<Maybe<CcpQuoteMargin>>>;
4323
+ offeringId?: Maybe<Scalars['String']['output']>;
4324
+ period?: Maybe<CcpQuotePeriod>;
4325
+ pricingPlanId?: Maybe<Scalars['String']['output']>;
4326
+ quantity?: Maybe<Scalars['Float']['output']>;
4327
+ quoteLineId?: Maybe<Scalars['String']['output']>;
4328
+ subTotal?: Maybe<Scalars['Float']['output']>;
4329
+ tax?: Maybe<Scalars['Float']['output']>;
4330
+ taxItems?: Maybe<Array<Maybe<CcpQuoteTaxItem>>>;
4331
+ taxPercent?: Maybe<Scalars['Float']['output']>;
4332
+ total?: Maybe<Scalars['Float']['output']>;
4333
+ };
4014
4334
  export declare type CcpRelationshipCardinality = {
4015
4335
  __typename?: 'CcpRelationshipCardinality';
4016
4336
  max?: Maybe<Scalars['Int']['output']>;
@@ -4150,6 +4470,94 @@ export declare type ChangeOwnerWarning = {
4150
4470
  contentId?: Maybe<Scalars['Long']['output']>;
4151
4471
  message?: Maybe<Scalars['String']['output']>;
4152
4472
  };
4473
+ export declare type ChannelPlatformAttendee = {
4474
+ __typename?: 'ChannelPlatformAttendee';
4475
+ attendeeId?: Maybe<Scalars['String']['output']>;
4476
+ joinToken?: Maybe<Scalars['String']['output']>;
4477
+ };
4478
+ export declare type ChannelPlatformAudioFeatures = {
4479
+ __typename?: 'ChannelPlatformAudioFeatures';
4480
+ echoReduction?: Maybe<Scalars['String']['output']>;
4481
+ };
4482
+ export declare type ChannelPlatformChannelAvailabilityRequestInput = {
4483
+ aaId?: InputMaybe<Scalars['String']['input']>;
4484
+ cloudId?: InputMaybe<Scalars['String']['input']>;
4485
+ cloudUrl?: InputMaybe<Scalars['String']['input']>;
4486
+ countryCode?: InputMaybe<Scalars['String']['input']>;
4487
+ customerTimezone?: InputMaybe<Scalars['String']['input']>;
4488
+ emailExclusions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
4489
+ entitlementId?: InputMaybe<Scalars['String']['input']>;
4490
+ hipaaEnabled?: InputMaybe<Scalars['Boolean']['input']>;
4491
+ impactLevel?: InputMaybe<Scalars['Int']['input']>;
4492
+ isCESFlagEnabled?: InputMaybe<Scalars['Boolean']['input']>;
4493
+ product?: InputMaybe<Scalars['String']['input']>;
4494
+ productKey?: InputMaybe<Scalars['String']['input']>;
4495
+ sessionId?: InputMaybe<Scalars['String']['input']>;
4496
+ skillSegment?: InputMaybe<Scalars['String']['input']>;
4497
+ supportChannel?: InputMaybe<Scalars['String']['input']>;
4498
+ supportLevel?: InputMaybe<Scalars['String']['input']>;
4499
+ timezone?: InputMaybe<Scalars['String']['input']>;
4500
+ unitCount?: InputMaybe<Scalars['Int']['input']>;
4501
+ userEmailDomain?: InputMaybe<Scalars['String']['input']>;
4502
+ };
4503
+ export declare type ChannelPlatformChannelAvailabilityResponse = {
4504
+ __typename?: 'ChannelPlatformChannelAvailabilityResponse';
4505
+ isChatAvailable?: Maybe<Scalars['Boolean']['output']>;
4506
+ isTicketAvailable?: Maybe<Scalars['Boolean']['output']>;
4507
+ };
4508
+ export declare enum ChannelPlatformChannelType {
4509
+ Chat = "CHAT",
4510
+ Voice = "VOICE"
4511
+ }
4512
+ export declare type ChannelPlatformConnectQueue = {
4513
+ __typename?: 'ChannelPlatformConnectQueue';
4514
+ arn?: Maybe<Scalars['String']['output']>;
4515
+ description?: Maybe<Scalars['String']['output']>;
4516
+ id?: Maybe<Scalars['ID']['output']>;
4517
+ name?: Maybe<Scalars['String']['output']>;
4518
+ queueType?: Maybe<Scalars['String']['output']>;
4519
+ };
4520
+ export declare type ChannelPlatformConnectionData = {
4521
+ __typename?: 'ChannelPlatformConnectionData';
4522
+ attendee?: Maybe<ChannelPlatformAttendee>;
4523
+ meeting?: Maybe<ChannelPlatformMeeting>;
4524
+ };
4525
+ export declare type ChannelPlatformGetChannelTokenRequest = {
4526
+ channelType?: InputMaybe<ChannelPlatformChannelType>;
4527
+ contactFlowId?: InputMaybe<Scalars['String']['input']>;
4528
+ displayName?: InputMaybe<Scalars['String']['input']>;
4529
+ instanceId?: InputMaybe<Scalars['String']['input']>;
4530
+ };
4531
+ export declare type ChannelPlatformGetChannelTokenResponse = {
4532
+ __typename?: 'ChannelPlatformGetChannelTokenResponse';
4533
+ connectionData?: Maybe<ChannelPlatformConnectionData>;
4534
+ contactId?: Maybe<Scalars['String']['output']>;
4535
+ participantId?: Maybe<Scalars['String']['output']>;
4536
+ participantToken?: Maybe<Scalars['String']['output']>;
4537
+ };
4538
+ export declare type ChannelPlatformMediaPlacement = {
4539
+ __typename?: 'ChannelPlatformMediaPlacement';
4540
+ audioFallbackUrl?: Maybe<Scalars['String']['output']>;
4541
+ audioHostUrl?: Maybe<Scalars['String']['output']>;
4542
+ eventIngestionUrl?: Maybe<Scalars['String']['output']>;
4543
+ signalingUrl?: Maybe<Scalars['String']['output']>;
4544
+ turnControlUrl?: Maybe<Scalars['String']['output']>;
4545
+ };
4546
+ export declare type ChannelPlatformMeeting = {
4547
+ __typename?: 'ChannelPlatformMeeting';
4548
+ mediaPlacement?: Maybe<ChannelPlatformMediaPlacement>;
4549
+ mediaRegion?: Maybe<Scalars['String']['output']>;
4550
+ meetingFeatures?: Maybe<ChannelPlatformMeetingFeatures>;
4551
+ meetingId?: Maybe<Scalars['String']['output']>;
4552
+ };
4553
+ export declare type ChannelPlatformMeetingFeatures = {
4554
+ __typename?: 'ChannelPlatformMeetingFeatures';
4555
+ audio?: Maybe<ChannelPlatformAudioFeatures>;
4556
+ };
4557
+ export declare enum ChannelPlatformMutationStatus {
4558
+ Failure = "FAILURE",
4559
+ Success = "SUCCESS"
4560
+ }
4153
4561
  export declare type ChannelPlatformSampleQueue = {
4154
4562
  __typename?: 'ChannelPlatformSampleQueue';
4155
4563
  config?: Maybe<ChannelPlatformSampleQueueConfig>;
@@ -8027,6 +8435,7 @@ export declare type CompassScorecard = Node & {
8027
8435
  state?: Maybe<Scalars['String']['output']>;
8028
8436
  statusConfig?: Maybe<CompassScorecardStatusConfig>;
8029
8437
  type: Scalars['String']['output'];
8438
+ url?: Maybe<Scalars['URL']['output']>;
8030
8439
  viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
8031
8440
  };
8032
8441
  export declare type CompassScorecardAppliedToComponentsArgs = {
@@ -8763,6 +9172,7 @@ export declare type CompassSynchronizeLinkAssociationsInput = {
8763
9172
  };
8764
9173
  export declare type CompassSynchronizeLinkAssociationsOptions = {
8765
9174
  eventTypes?: InputMaybe<Array<InputMaybe<CompassEventType>>>;
9175
+ urlFilterRegex?: InputMaybe<Scalars['String']['input']>;
8766
9176
  };
8767
9177
  export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
8768
9178
  __typename?: 'CompassSynchronizeLinkAssociationsPayload';
@@ -10056,10 +10466,6 @@ export declare enum ConfluenceEdition {
10056
10466
  Premium = "PREMIUM",
10057
10467
  Standard = "STANDARD"
10058
10468
  }
10059
- export declare type ConfluenceEditions = {
10060
- __typename?: 'ConfluenceEditions';
10061
- edition: ConfluenceEdition;
10062
- };
10063
10469
  export declare type ConfluenceEditorSettings = {
10064
10470
  __typename?: 'ConfluenceEditorSettings';
10065
10471
  toolbarDockingInitialPosition?: Maybe<Scalars['String']['output']>;
@@ -19688,7 +20094,8 @@ export declare type CreateAppContainerPayload = Payload & {
19688
20094
  };
19689
20095
  export declare type CreateAppDeploymentInput = {
19690
20096
  appId: Scalars['ID']['input'];
19691
- artifactUrl: Scalars['URL']['input'];
20097
+ artifactUrl?: InputMaybe<Scalars['URL']['input']>;
20098
+ buildTag?: InputMaybe<Scalars['String']['input']>;
19692
20099
  environmentKey: Scalars['String']['input'];
19693
20100
  hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
19694
20101
  majorVersion?: InputMaybe<Scalars['Int']['input']>;
@@ -21478,6 +21885,7 @@ export declare type CustomerServiceQueryApi = {
21478
21885
  organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
21479
21886
  productConnections?: Maybe<CustomerServiceProductConnection>;
21480
21887
  products?: Maybe<CustomerServiceProductQueryResult>;
21888
+ requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
21481
21889
  templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
21482
21890
  templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
21483
21891
  };
@@ -21511,6 +21919,9 @@ export declare type CustomerServiceQueryApiProductsArgs = {
21511
21919
  filter?: InputMaybe<CustomerServiceProductFilterInput>;
21512
21920
  first?: InputMaybe<Scalars['Int']['input']>;
21513
21921
  };
21922
+ export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
21923
+ issueKey: Scalars['ID']['input'];
21924
+ };
21514
21925
  export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
21515
21926
  helpCenterId: Scalars['ID']['input'];
21516
21927
  templateFormId: Scalars['ID']['input'];
@@ -21520,6 +21931,58 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
21520
21931
  first?: InputMaybe<Scalars['Int']['input']>;
21521
21932
  helpCenterId: Scalars['ID']['input'];
21522
21933
  };
21934
+ export declare type CustomerServiceRequest = {
21935
+ __typename?: 'CustomerServiceRequest';
21936
+ createdOn?: Maybe<Scalars['DateTime']['output']>;
21937
+ formData?: Maybe<CustomerServiceRequestFormDataConnection>;
21938
+ id: Scalars['ID']['output'];
21939
+ key?: Maybe<Scalars['String']['output']>;
21940
+ statusKey?: Maybe<CustomerServiceStatusKey>;
21941
+ summary?: Maybe<Scalars['String']['output']>;
21942
+ };
21943
+ export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
21944
+ export declare type CustomerServiceRequestConnection = {
21945
+ __typename?: 'CustomerServiceRequestConnection';
21946
+ edges: Array<CustomerServiceRequestEdge>;
21947
+ pageInfo: PageInfo;
21948
+ };
21949
+ export declare type CustomerServiceRequestEdge = {
21950
+ __typename?: 'CustomerServiceRequestEdge';
21951
+ cursor: Scalars['String']['output'];
21952
+ node?: Maybe<CustomerServiceRequest>;
21953
+ };
21954
+ export declare type CustomerServiceRequestFormDataConnection = {
21955
+ __typename?: 'CustomerServiceRequestFormDataConnection';
21956
+ edges: Array<CustomerServiceRequestFormDataEdge>;
21957
+ pageInfo: PageInfo;
21958
+ };
21959
+ export declare type CustomerServiceRequestFormDataEdge = {
21960
+ __typename?: 'CustomerServiceRequestFormDataEdge';
21961
+ cursor: Scalars['String']['output'];
21962
+ node?: Maybe<CustomerServiceRequestFormEntryField>;
21963
+ };
21964
+ export declare type CustomerServiceRequestFormEntryField = {
21965
+ id: Scalars['ID']['output'];
21966
+ question?: Maybe<Scalars['String']['output']>;
21967
+ };
21968
+ export declare type CustomerServiceRequestFormEntryMultiSelectField = CustomerServiceRequestFormEntryField & {
21969
+ __typename?: 'CustomerServiceRequestFormEntryMultiSelectField';
21970
+ id: Scalars['ID']['output'];
21971
+ multiSelectTextAnswer?: Maybe<Array<Scalars['String']['output']>>;
21972
+ question?: Maybe<Scalars['String']['output']>;
21973
+ };
21974
+ export declare type CustomerServiceRequestFormEntryRichTextField = CustomerServiceRequestFormEntryField & {
21975
+ __typename?: 'CustomerServiceRequestFormEntryRichTextField';
21976
+ adfAnswer?: Maybe<Scalars['String']['output']>;
21977
+ id: Scalars['ID']['output'];
21978
+ question?: Maybe<Scalars['String']['output']>;
21979
+ };
21980
+ export declare type CustomerServiceRequestFormEntryTextField = CustomerServiceRequestFormEntryField & {
21981
+ __typename?: 'CustomerServiceRequestFormEntryTextField';
21982
+ id: Scalars['ID']['output'];
21983
+ question?: Maybe<Scalars['String']['output']>;
21984
+ textAnswer?: Maybe<Scalars['String']['output']>;
21985
+ };
21523
21986
  export declare type CustomerServiceRoutingRule = {
21524
21987
  __typename?: 'CustomerServiceRoutingRule';
21525
21988
  id: Scalars['ID']['output'];
@@ -21529,6 +21992,10 @@ export declare type CustomerServiceRoutingRule = {
21529
21992
  project?: Maybe<JiraProject>;
21530
21993
  projectId?: Maybe<Scalars['ID']['output']>;
21531
21994
  };
21995
+ export declare enum CustomerServiceStatusKey {
21996
+ Resolved = "RESOLVED",
21997
+ Submitted = "SUBMITTED"
21998
+ }
21532
21999
  export declare type CustomerServiceStatusPayload = Payload & {
21533
22000
  __typename?: 'CustomerServiceStatusPayload';
21534
22001
  errors?: Maybe<Array<MutationError>>;
@@ -22554,6 +23021,11 @@ export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
22554
23021
  jobId?: Maybe<Scalars['ID']['output']>;
22555
23022
  success: Scalars['Boolean']['output'];
22556
23023
  };
23024
+ export declare type DevAiInvokeSelfCorrectionPayload = Payload & {
23025
+ __typename?: 'DevAiInvokeSelfCorrectionPayload';
23026
+ errors?: Maybe<Array<MutationError>>;
23027
+ success: Scalars['Boolean']['output'];
23028
+ };
22557
23029
  export declare enum DevAiIssueScopingLabel {
22558
23030
  Complex = "COMPLEX",
22559
23031
  InScope = "IN_SCOPE",
@@ -22644,6 +23116,7 @@ export declare type DevAiRovoAgentActionConfig = {
22644
23116
  export declare type DevAiRovoAgentConnection = {
22645
23117
  __typename?: 'DevAiRovoAgentConnection';
22646
23118
  edges?: Maybe<Array<Maybe<DevAiRovoAgentEdge>>>;
23119
+ isRankingLimitApplied?: Maybe<Scalars['Boolean']['output']>;
22647
23120
  pageInfo: PageInfo;
22648
23121
  };
22649
23122
  export declare type DevAiRovoAgentEdge = {
@@ -23208,6 +23681,7 @@ export declare type DevOpsMetrics = {
23208
23681
  deploymentSize?: Maybe<DevOpsMetricsDeploymentSize>;
23209
23682
  perDeploymentMetrics?: Maybe<DevOpsMetricsPerDeploymentMetricsConnection>;
23210
23683
  perIssueMetrics?: Maybe<DevOpsMetricsPerIssueMetricsConnection>;
23684
+ perProjectPRCycleTimeMetrics?: Maybe<DevOpsMetricsPerProjectPrCycleTimeMetricsConnection>;
23211
23685
  };
23212
23686
  export declare type DevOpsMetricsCycleTimeArgs = {
23213
23687
  cycleTimePercentiles?: InputMaybe<Array<Scalars['Int']['input']>>;
@@ -23234,6 +23708,11 @@ export declare type DevOpsMetricsPerIssueMetricsArgs = {
23234
23708
  filter: DevOpsMetricsPerIssueMetricsFilter;
23235
23709
  first: Scalars['Int']['input'];
23236
23710
  };
23711
+ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
23712
+ after?: InputMaybe<Scalars['String']['input']>;
23713
+ filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
23714
+ first: Scalars['Int']['input'];
23715
+ };
23237
23716
  export declare type DevOpsMetricsCycleTime = {
23238
23717
  __typename?: 'DevOpsMetricsCycleTime';
23239
23718
  cycleTimeMetrics?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeMetrics>>>;
@@ -23267,6 +23746,10 @@ export declare enum DevOpsMetricsCycleTimePhase {
23267
23746
  CommitToDeployment = "COMMIT_TO_DEPLOYMENT",
23268
23747
  CommitToPr = "COMMIT_TO_PR"
23269
23748
  }
23749
+ export declare type DevOpsMetricsDailyReviewTimeData = {
23750
+ __typename?: 'DevOpsMetricsDailyReviewTimeData';
23751
+ medianReviewTimeSeconds?: Maybe<Scalars['Float']['output']>;
23752
+ };
23270
23753
  export declare type DevOpsMetricsDeploymentFrequency = {
23271
23754
  __typename?: 'DevOpsMetricsDeploymentFrequency';
23272
23755
  aggregateData?: Maybe<Scalars['Float']['output']>;
@@ -23354,6 +23837,28 @@ export declare type DevOpsMetricsPerIssueMetricsFilter = {
23354
23837
  jiraProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
23355
23838
  startFromInclusive: Scalars['DateTime']['input'];
23356
23839
  };
23840
+ export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
23841
+ __typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
23842
+ medianPRCycleTime: Scalars['Float']['output'];
23843
+ perDayPRMetrics: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
23844
+ };
23845
+ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsConnection = {
23846
+ __typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetricsConnection';
23847
+ edges?: Maybe<Array<Maybe<DevOpsMetricsPerProjectPrCycleTimeMetricsEdge>>>;
23848
+ nodes?: Maybe<Array<Maybe<DevOpsMetricsPerProjectPrCycleTimeMetrics>>>;
23849
+ pageInfo: PageInfo;
23850
+ };
23851
+ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsEdge = {
23852
+ __typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetricsEdge';
23853
+ cursor: Scalars['String']['output'];
23854
+ node?: Maybe<DevOpsMetricsPerProjectPrCycleTimeMetrics>;
23855
+ };
23856
+ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsFilter = {
23857
+ cloudId: Scalars['ID']['input'];
23858
+ endAtExclusive: Scalars['DateTime']['input'];
23859
+ jiraProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
23860
+ startFromInclusive: Scalars['DateTime']['input'];
23861
+ };
23357
23862
  export declare type DevOpsMetricsResolution = {
23358
23863
  __typename?: 'DevOpsMetricsResolution';
23359
23864
  unit?: Maybe<DevOpsMetricsResolutionUnit>;
@@ -24790,6 +25295,7 @@ export declare type EcosystemQuery = {
24790
25295
  __typename?: 'EcosystemQuery';
24791
25296
  appByOauthClient?: Maybe<App>;
24792
25297
  appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
25298
+ appInstallationTasks?: Maybe<AppTaskConnection>;
24793
25299
  appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
24794
25300
  appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
24795
25301
  appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
@@ -24815,6 +25321,13 @@ export declare type EcosystemQueryAppByOauthClientArgs = {
24815
25321
  export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
24816
25322
  oauthClientIds: Array<Scalars['ID']['input']>;
24817
25323
  };
25324
+ export declare type EcosystemQueryAppInstallationTasksArgs = {
25325
+ after?: InputMaybe<Scalars['String']['input']>;
25326
+ before?: InputMaybe<Scalars['String']['input']>;
25327
+ filter: AppInstallationTasksFilter;
25328
+ first?: InputMaybe<Scalars['Int']['input']>;
25329
+ last?: InputMaybe<Scalars['Int']['input']>;
25330
+ };
24818
25331
  export declare type EcosystemQueryAppInstallationsByAppArgs = {
24819
25332
  after?: InputMaybe<Scalars['String']['input']>;
24820
25333
  before?: InputMaybe<Scalars['String']['input']>;
@@ -25519,6 +26032,7 @@ export declare type ExternalComment = Node & {
25519
26032
  parentId?: Maybe<Scalars['ID']['output']>;
25520
26033
  provider?: Maybe<ExternalProvider>;
25521
26034
  reactions?: Maybe<Array<Maybe<ExternalReactions>>>;
26035
+ reactionsV2?: Maybe<Array<Maybe<ExternalReaction>>>;
25522
26036
  text?: Maybe<Scalars['String']['output']>;
25523
26037
  thirdPartyId?: Maybe<Scalars['String']['output']>;
25524
26038
  updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
@@ -25766,6 +26280,7 @@ export declare type ExternalDocument = Node & {
25766
26280
  parent?: Maybe<ExternalEntity>;
25767
26281
  parentId?: Maybe<Scalars['ID']['output']>;
25768
26282
  provider?: Maybe<ExternalProvider>;
26283
+ reactions?: Maybe<Array<Maybe<ExternalReaction>>>;
25769
26284
  thirdPartyId?: Maybe<Scalars['String']['output']>;
25770
26285
  thumbnail?: Maybe<ExternalThumbnail>;
25771
26286
  truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
@@ -26058,6 +26573,7 @@ export declare type ExternalPullRequest = Node & {
26058
26573
  commentCount?: Maybe<Scalars['Int']['output']>;
26059
26574
  container?: Maybe<ExternalEntity>;
26060
26575
  containerId?: Maybe<Scalars['ID']['output']>;
26576
+ createdAt?: Maybe<Scalars['String']['output']>;
26061
26577
  createdBy?: Maybe<ExternalUser>;
26062
26578
  description?: Maybe<Scalars['String']['output']>;
26063
26579
  destinationBranch?: Maybe<ExternalBranchReference>;
@@ -26086,6 +26602,11 @@ export declare enum ExternalPullRequestStatus {
26086
26602
  Open = "OPEN",
26087
26603
  Unknown = "UNKNOWN"
26088
26604
  }
26605
+ export declare type ExternalReaction = {
26606
+ __typename?: 'ExternalReaction';
26607
+ reactionType?: Maybe<Scalars['String']['output']>;
26608
+ total?: Maybe<Scalars['Int']['output']>;
26609
+ };
26089
26610
  export declare type ExternalReactions = {
26090
26611
  __typename?: 'ExternalReactions';
26091
26612
  total?: Maybe<Scalars['Int']['output']>;
@@ -31535,12 +32056,18 @@ export declare type GraphStore = {
31535
32056
  deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
31536
32057
  entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
31537
32058
  entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
32059
+ externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
32060
+ externalOrgHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionInverseConnection>;
31538
32061
  externalOrgHasExternalWorker?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection>;
31539
32062
  externalOrgHasExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseConnection>;
31540
32063
  externalOrgHasUserAsMember?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberConnection>;
31541
32064
  externalOrgHasUserAsMemberInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseConnection>;
32065
+ externalOrgIsParentOfExternalOrg?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgConnection>;
32066
+ externalOrgIsParentOfExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseConnection>;
31542
32067
  externalPositionIsFilledByExternalWorker?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection>;
31543
32068
  externalPositionIsFilledByExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseConnection>;
32069
+ externalPositionManagesExternalOrg?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgConnection>;
32070
+ externalPositionManagesExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection>;
31544
32071
  externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
31545
32072
  externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
31546
32073
  externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
@@ -31646,6 +32173,7 @@ export declare type GraphStore = {
31646
32173
  issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
31647
32174
  issueHasChangedPriority?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityConnection>;
31648
32175
  issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
32176
+ issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
31649
32177
  issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
31650
32178
  issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
31651
32179
  issueMentionedInMessage?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageConnection>;
@@ -31686,6 +32214,8 @@ export declare type GraphStore = {
31686
32214
  jsmProjectAssociatedServiceInverseBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
31687
32215
  jsmProjectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
31688
32216
  jsmProjectAssociatedServiceRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
32217
+ jsmProjectLinkedKbSources?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesConnection>;
32218
+ jsmProjectLinkedKbSourcesInverse?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseConnection>;
31689
32219
  jswProjectAssociatedComponent?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
31690
32220
  jswProjectAssociatedComponentInverse?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseConnection>;
31691
32221
  jswProjectAssociatedComponentInverseRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
@@ -31702,6 +32232,8 @@ export declare type GraphStore = {
31702
32232
  linkedProjectHasVersionInverse?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseConnection>;
31703
32233
  linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
31704
32234
  linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
32235
+ loomVideoHasConfluencePage?: Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageConnection>;
32236
+ loomVideoHasConfluencePageInverse?: Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageInverseConnection>;
31705
32237
  mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
31706
32238
  mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
31707
32239
  mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
@@ -31843,10 +32375,14 @@ export declare type GraphStore = {
31843
32375
  serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
31844
32376
  serviceAssociatedBuild?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildConnection>;
31845
32377
  serviceAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildInverseConnection>;
32378
+ serviceAssociatedCommit?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitConnection>;
32379
+ serviceAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitInverseConnection>;
31846
32380
  serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
31847
32381
  serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
31848
32382
  serviceAssociatedFeatureFlag?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagConnection>;
31849
32383
  serviceAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseConnection>;
32384
+ serviceAssociatedPr?: Maybe<GraphStoreSimplifiedServiceAssociatedPrConnection>;
32385
+ serviceAssociatedPrInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseConnection>;
31850
32386
  serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
31851
32387
  serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
31852
32388
  serviceAssociatedTeam?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamConnection>;
@@ -31865,10 +32401,8 @@ export declare type GraphStore = {
31865
32401
  shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
31866
32402
  spaceAssociatedWithProject?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectConnection>;
31867
32403
  spaceAssociatedWithProjectInverse?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection>;
31868
- sprintAssociatedBuild?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildConnection>;
31869
- sprintAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildInverseConnection>;
31870
- sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
31871
- sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
32404
+ spaceHasPage?: Maybe<GraphStoreSimplifiedSpaceHasPageConnection>;
32405
+ spaceHasPageInverse?: Maybe<GraphStoreSimplifiedSpaceHasPageInverseConnection>;
31872
32406
  sprintAssociatedDeployment?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentConnection>;
31873
32407
  sprintAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentInverseConnection>;
31874
32408
  sprintAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedDeploymentConnection>;
@@ -32030,6 +32564,8 @@ export declare type GraphStore = {
32030
32564
  userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
32031
32565
  userOwnsFocusArea?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaConnection>;
32032
32566
  userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
32567
+ userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
32568
+ userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
32033
32569
  userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
32034
32570
  userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
32035
32571
  userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
@@ -32044,6 +32580,8 @@ export declare type GraphStore = {
32044
32580
  userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
32045
32581
  userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
32046
32582
  userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
32583
+ userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
32584
+ userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
32047
32585
  userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
32048
32586
  userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
32049
32587
  userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
@@ -32826,6 +33364,20 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
32826
33364
  id: Scalars['ID']['input'];
32827
33365
  sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
32828
33366
  };
33367
+ export declare type GraphStoreExternalOrgHasExternalPositionArgs = {
33368
+ after?: InputMaybe<Scalars['String']['input']>;
33369
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33370
+ first?: InputMaybe<Scalars['Int']['input']>;
33371
+ id: Scalars['ID']['input'];
33372
+ sort?: InputMaybe<GraphStoreExternalOrgHasExternalPositionSortInput>;
33373
+ };
33374
+ export declare type GraphStoreExternalOrgHasExternalPositionInverseArgs = {
33375
+ after?: InputMaybe<Scalars['String']['input']>;
33376
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33377
+ first?: InputMaybe<Scalars['Int']['input']>;
33378
+ id: Scalars['ID']['input'];
33379
+ sort?: InputMaybe<GraphStoreExternalOrgHasExternalPositionSortInput>;
33380
+ };
32829
33381
  export declare type GraphStoreExternalOrgHasExternalWorkerArgs = {
32830
33382
  after?: InputMaybe<Scalars['String']['input']>;
32831
33383
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -32854,6 +33406,20 @@ export declare type GraphStoreExternalOrgHasUserAsMemberInverseArgs = {
32854
33406
  id: Scalars['ID']['input'];
32855
33407
  sort?: InputMaybe<GraphStoreExternalOrgHasUserAsMemberSortInput>;
32856
33408
  };
33409
+ export declare type GraphStoreExternalOrgIsParentOfExternalOrgArgs = {
33410
+ after?: InputMaybe<Scalars['String']['input']>;
33411
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33412
+ first?: InputMaybe<Scalars['Int']['input']>;
33413
+ id: Scalars['ID']['input'];
33414
+ sort?: InputMaybe<GraphStoreExternalOrgIsParentOfExternalOrgSortInput>;
33415
+ };
33416
+ export declare type GraphStoreExternalOrgIsParentOfExternalOrgInverseArgs = {
33417
+ after?: InputMaybe<Scalars['String']['input']>;
33418
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33419
+ first?: InputMaybe<Scalars['Int']['input']>;
33420
+ id: Scalars['ID']['input'];
33421
+ sort?: InputMaybe<GraphStoreExternalOrgIsParentOfExternalOrgSortInput>;
33422
+ };
32857
33423
  export declare type GraphStoreExternalPositionIsFilledByExternalWorkerArgs = {
32858
33424
  after?: InputMaybe<Scalars['String']['input']>;
32859
33425
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -32868,6 +33434,20 @@ export declare type GraphStoreExternalPositionIsFilledByExternalWorkerInverseArg
32868
33434
  id: Scalars['ID']['input'];
32869
33435
  sort?: InputMaybe<GraphStoreExternalPositionIsFilledByExternalWorkerSortInput>;
32870
33436
  };
33437
+ export declare type GraphStoreExternalPositionManagesExternalOrgArgs = {
33438
+ after?: InputMaybe<Scalars['String']['input']>;
33439
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33440
+ first?: InputMaybe<Scalars['Int']['input']>;
33441
+ id: Scalars['ID']['input'];
33442
+ sort?: InputMaybe<GraphStoreExternalPositionManagesExternalOrgSortInput>;
33443
+ };
33444
+ export declare type GraphStoreExternalPositionManagesExternalOrgInverseArgs = {
33445
+ after?: InputMaybe<Scalars['String']['input']>;
33446
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33447
+ first?: InputMaybe<Scalars['Int']['input']>;
33448
+ id: Scalars['ID']['input'];
33449
+ sort?: InputMaybe<GraphStoreExternalPositionManagesExternalOrgSortInput>;
33450
+ };
32871
33451
  export declare type GraphStoreExternalPositionManagesExternalPositionArgs = {
32872
33452
  after?: InputMaybe<Scalars['String']['input']>;
32873
33453
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33534,6 +34114,13 @@ export declare type GraphStoreIssueHasChangedPriorityInverseArgs = {
33534
34114
  id: Scalars['ID']['input'];
33535
34115
  sort?: InputMaybe<GraphStoreIssueHasChangedPrioritySortInput>;
33536
34116
  };
34117
+ export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
34118
+ after?: InputMaybe<Scalars['String']['input']>;
34119
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34120
+ first?: InputMaybe<Scalars['Int']['input']>;
34121
+ id: Scalars['ID']['input'];
34122
+ sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
34123
+ };
33537
34124
  export declare type GraphStoreIssueMentionedInConversationArgs = {
33538
34125
  after?: InputMaybe<Scalars['String']['input']>;
33539
34126
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33790,6 +34377,20 @@ export declare type GraphStoreJsmProjectAssociatedServiceRelationshipArgs = {
33790
34377
  first?: InputMaybe<Scalars['Int']['input']>;
33791
34378
  id: Scalars['ID']['input'];
33792
34379
  };
34380
+ export declare type GraphStoreJsmProjectLinkedKbSourcesArgs = {
34381
+ after?: InputMaybe<Scalars['String']['input']>;
34382
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34383
+ first?: InputMaybe<Scalars['Int']['input']>;
34384
+ id: Scalars['ID']['input'];
34385
+ sort?: InputMaybe<GraphStoreJsmProjectLinkedKbSourcesSortInput>;
34386
+ };
34387
+ export declare type GraphStoreJsmProjectLinkedKbSourcesInverseArgs = {
34388
+ after?: InputMaybe<Scalars['String']['input']>;
34389
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34390
+ first?: InputMaybe<Scalars['Int']['input']>;
34391
+ id: Scalars['ID']['input'];
34392
+ sort?: InputMaybe<GraphStoreJsmProjectLinkedKbSourcesSortInput>;
34393
+ };
33793
34394
  export declare type GraphStoreJswProjectAssociatedComponentArgs = {
33794
34395
  after?: InputMaybe<Scalars['String']['input']>;
33795
34396
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33892,6 +34493,20 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
33892
34493
  first?: InputMaybe<Scalars['Int']['input']>;
33893
34494
  id: Scalars['ID']['input'];
33894
34495
  };
34496
+ export declare type GraphStoreLoomVideoHasConfluencePageArgs = {
34497
+ after?: InputMaybe<Scalars['String']['input']>;
34498
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34499
+ first?: InputMaybe<Scalars['Int']['input']>;
34500
+ id: Scalars['ID']['input'];
34501
+ sort?: InputMaybe<GraphStoreLoomVideoHasConfluencePageSortInput>;
34502
+ };
34503
+ export declare type GraphStoreLoomVideoHasConfluencePageInverseArgs = {
34504
+ after?: InputMaybe<Scalars['String']['input']>;
34505
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34506
+ first?: InputMaybe<Scalars['Int']['input']>;
34507
+ id: Scalars['ID']['input'];
34508
+ sort?: InputMaybe<GraphStoreLoomVideoHasConfluencePageSortInput>;
34509
+ };
33895
34510
  export declare type GraphStoreMediaAttachedToContentArgs = {
33896
34511
  after?: InputMaybe<Scalars['String']['input']>;
33897
34512
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -34813,6 +35428,20 @@ export declare type GraphStoreServiceAssociatedBuildInverseArgs = {
34813
35428
  id: Scalars['ID']['input'];
34814
35429
  sort?: InputMaybe<GraphStoreServiceAssociatedBuildSortInput>;
34815
35430
  };
35431
+ export declare type GraphStoreServiceAssociatedCommitArgs = {
35432
+ after?: InputMaybe<Scalars['String']['input']>;
35433
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
35434
+ first?: InputMaybe<Scalars['Int']['input']>;
35435
+ id: Scalars['ID']['input'];
35436
+ sort?: InputMaybe<GraphStoreServiceAssociatedCommitSortInput>;
35437
+ };
35438
+ export declare type GraphStoreServiceAssociatedCommitInverseArgs = {
35439
+ after?: InputMaybe<Scalars['String']['input']>;
35440
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
35441
+ first?: InputMaybe<Scalars['Int']['input']>;
35442
+ id: Scalars['ID']['input'];
35443
+ sort?: InputMaybe<GraphStoreServiceAssociatedCommitSortInput>;
35444
+ };
34816
35445
  export declare type GraphStoreServiceAssociatedDeploymentArgs = {
34817
35446
  after?: InputMaybe<Scalars['String']['input']>;
34818
35447
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -34843,6 +35472,20 @@ export declare type GraphStoreServiceAssociatedFeatureFlagInverseArgs = {
34843
35472
  id: Scalars['ID']['input'];
34844
35473
  sort?: InputMaybe<GraphStoreServiceAssociatedFeatureFlagSortInput>;
34845
35474
  };
35475
+ export declare type GraphStoreServiceAssociatedPrArgs = {
35476
+ after?: InputMaybe<Scalars['String']['input']>;
35477
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
35478
+ first?: InputMaybe<Scalars['Int']['input']>;
35479
+ id: Scalars['ID']['input'];
35480
+ sort?: InputMaybe<GraphStoreServiceAssociatedPrSortInput>;
35481
+ };
35482
+ export declare type GraphStoreServiceAssociatedPrInverseArgs = {
35483
+ after?: InputMaybe<Scalars['String']['input']>;
35484
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
35485
+ first?: InputMaybe<Scalars['Int']['input']>;
35486
+ id: Scalars['ID']['input'];
35487
+ sort?: InputMaybe<GraphStoreServiceAssociatedPrSortInput>;
35488
+ };
34846
35489
  export declare type GraphStoreServiceAssociatedRemoteLinkArgs = {
34847
35490
  after?: InputMaybe<Scalars['String']['input']>;
34848
35491
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -34971,35 +35614,19 @@ export declare type GraphStoreSpaceAssociatedWithProjectInverseArgs = {
34971
35614
  id: Scalars['ID']['input'];
34972
35615
  sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
34973
35616
  };
34974
- export declare type GraphStoreSprintAssociatedBuildArgs = {
35617
+ export declare type GraphStoreSpaceHasPageArgs = {
34975
35618
  after?: InputMaybe<Scalars['String']['input']>;
34976
35619
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34977
- filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
34978
35620
  first?: InputMaybe<Scalars['Int']['input']>;
34979
35621
  id: Scalars['ID']['input'];
34980
- sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
35622
+ sort?: InputMaybe<GraphStoreSpaceHasPageSortInput>;
34981
35623
  };
34982
- export declare type GraphStoreSprintAssociatedBuildInverseArgs = {
35624
+ export declare type GraphStoreSpaceHasPageInverseArgs = {
34983
35625
  after?: InputMaybe<Scalars['String']['input']>;
34984
35626
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34985
- filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
34986
35627
  first?: InputMaybe<Scalars['Int']['input']>;
34987
35628
  id: Scalars['ID']['input'];
34988
- sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
34989
- };
34990
- export declare type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
34991
- after?: InputMaybe<Scalars['String']['input']>;
34992
- filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
34993
- first?: InputMaybe<Scalars['Int']['input']>;
34994
- id: Scalars['ID']['input'];
34995
- sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
34996
- };
34997
- export declare type GraphStoreSprintAssociatedBuildRelationshipArgs = {
34998
- after?: InputMaybe<Scalars['String']['input']>;
34999
- filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
35000
- first?: InputMaybe<Scalars['Int']['input']>;
35001
- id: Scalars['ID']['input'];
35002
- sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
35629
+ sort?: InputMaybe<GraphStoreSpaceHasPageSortInput>;
35003
35630
  };
35004
35631
  export declare type GraphStoreSprintAssociatedDeploymentArgs = {
35005
35632
  after?: InputMaybe<Scalars['String']['input']>;
@@ -36112,6 +36739,20 @@ export declare type GraphStoreUserOwnsFocusAreaInverseArgs = {
36112
36739
  id: Scalars['ID']['input'];
36113
36740
  sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
36114
36741
  };
36742
+ export declare type GraphStoreUserOwnsPageArgs = {
36743
+ after?: InputMaybe<Scalars['String']['input']>;
36744
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
36745
+ first?: InputMaybe<Scalars['Int']['input']>;
36746
+ id: Scalars['ID']['input'];
36747
+ sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
36748
+ };
36749
+ export declare type GraphStoreUserOwnsPageInverseArgs = {
36750
+ after?: InputMaybe<Scalars['String']['input']>;
36751
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
36752
+ first?: InputMaybe<Scalars['Int']['input']>;
36753
+ id: Scalars['ID']['input'];
36754
+ sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
36755
+ };
36115
36756
  export declare type GraphStoreUserReportedIncidentArgs = {
36116
36757
  after?: InputMaybe<Scalars['String']['input']>;
36117
36758
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -36210,6 +36851,20 @@ export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
36210
36851
  id: Scalars['ID']['input'];
36211
36852
  sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
36212
36853
  };
36854
+ export declare type GraphStoreUserUpdatedCommentArgs = {
36855
+ after?: InputMaybe<Scalars['String']['input']>;
36856
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
36857
+ first?: InputMaybe<Scalars['Int']['input']>;
36858
+ id: Scalars['ID']['input'];
36859
+ sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
36860
+ };
36861
+ export declare type GraphStoreUserUpdatedCommentInverseArgs = {
36862
+ after?: InputMaybe<Scalars['String']['input']>;
36863
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
36864
+ first?: InputMaybe<Scalars['Int']['input']>;
36865
+ id: Scalars['ID']['input'];
36866
+ sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
36867
+ };
36213
36868
  export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
36214
36869
  after?: InputMaybe<Scalars['String']['input']>;
36215
36870
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -38043,6 +38698,20 @@ export declare type GraphStoreCreateJswProjectAssociatedComponentRelationshipInp
38043
38698
  to: Scalars['ID']['input'];
38044
38699
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
38045
38700
  };
38701
+ export declare type GraphStoreCreateLoomVideoHasConfluencePageInput = {
38702
+ relationships: Array<GraphStoreCreateLoomVideoHasConfluencePageRelationshipInput>;
38703
+ };
38704
+ export declare type GraphStoreCreateLoomVideoHasConfluencePagePayload = Payload & {
38705
+ __typename?: 'GraphStoreCreateLoomVideoHasConfluencePagePayload';
38706
+ errors?: Maybe<Array<MutationError>>;
38707
+ success: Scalars['Boolean']['output'];
38708
+ };
38709
+ export declare type GraphStoreCreateLoomVideoHasConfluencePageRelationshipInput = {
38710
+ from: Scalars['ID']['input'];
38711
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
38712
+ to: Scalars['ID']['input'];
38713
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
38714
+ };
38046
38715
  export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput = {
38047
38716
  relationships: Array<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
38048
38717
  };
@@ -38357,7 +39026,7 @@ export declare type GraphStoreCypherQueryFromNode = {
38357
39026
  data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
38358
39027
  id: Scalars['ID']['output'];
38359
39028
  };
38360
- export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
39029
+ export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
38361
39030
  export declare type GraphStoreCypherQueryIntObject = {
38362
39031
  __typename?: 'GraphStoreCypherQueryIntObject';
38363
39032
  value: Scalars['Int']['output'];
@@ -38392,7 +39061,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
38392
39061
  data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
38393
39062
  id: Scalars['ID']['output'];
38394
39063
  };
38395
- export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
39064
+ export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
38396
39065
  export declare type GraphStoreCypherQueryStringObject = {
38397
39066
  __typename?: 'GraphStoreCypherQueryStringObject';
38398
39067
  value: Scalars['String']['output'];
@@ -38402,13 +39071,13 @@ export declare type GraphStoreCypherQueryToNode = {
38402
39071
  data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
38403
39072
  id: Scalars['ID']['output'];
38404
39073
  };
38405
- export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
39074
+ export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
38406
39075
  export declare type GraphStoreCypherQueryV2AriNode = {
38407
39076
  __typename?: 'GraphStoreCypherQueryV2AriNode';
38408
39077
  data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
38409
39078
  id: Scalars['ID']['output'];
38410
39079
  };
38411
- export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
39080
+ export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
38412
39081
  export declare type GraphStoreCypherQueryV2BooleanObject = {
38413
39082
  __typename?: 'GraphStoreCypherQueryV2BooleanObject';
38414
39083
  value: Scalars['Boolean']['output'];
@@ -38453,7 +39122,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
38453
39122
  V2 = "V2",
38454
39123
  V3 = "V3"
38455
39124
  }
38456
- export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
39125
+ export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
38457
39126
  export declare type GraphStoreCypherQueryValueNode = {
38458
39127
  __typename?: 'GraphStoreCypherQueryValueNode';
38459
39128
  data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
@@ -38554,6 +39223,19 @@ export declare type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInp
38554
39223
  from: Scalars['ID']['input'];
38555
39224
  to: Scalars['ID']['input'];
38556
39225
  };
39226
+ export declare type GraphStoreDeleteLoomVideoHasConfluencePageInput = {
39227
+ relationships: Array<GraphStoreDeleteLoomVideoHasConfluencePageRelationshipInput>;
39228
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
39229
+ };
39230
+ export declare type GraphStoreDeleteLoomVideoHasConfluencePagePayload = Payload & {
39231
+ __typename?: 'GraphStoreDeleteLoomVideoHasConfluencePagePayload';
39232
+ errors?: Maybe<Array<MutationError>>;
39233
+ success: Scalars['Boolean']['output'];
39234
+ };
39235
+ export declare type GraphStoreDeleteLoomVideoHasConfluencePageRelationshipInput = {
39236
+ from: Scalars['ID']['input'];
39237
+ to: Scalars['ID']['input'];
39238
+ };
38557
39239
  export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput = {
38558
39240
  relationships: Array<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
38559
39241
  synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -38797,6 +39479,9 @@ export declare type GraphStoreDeploymentContainsCommitSortInput = {
38797
39479
  export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
38798
39480
  lastModified?: InputMaybe<GraphStoreSortInput>;
38799
39481
  };
39482
+ export declare type GraphStoreExternalOrgHasExternalPositionSortInput = {
39483
+ lastModified?: InputMaybe<GraphStoreSortInput>;
39484
+ };
38800
39485
  export declare type GraphStoreExternalOrgHasExternalWorkerSortInput = {
38801
39486
  createdAt?: InputMaybe<GraphStoreSortInput>;
38802
39487
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -38809,9 +39494,15 @@ export declare type GraphStoreExternalOrgHasUserAsMemberSortInput = {
38809
39494
  lastModified?: InputMaybe<GraphStoreSortInput>;
38810
39495
  toAti?: InputMaybe<GraphStoreSortInput>;
38811
39496
  };
39497
+ export declare type GraphStoreExternalOrgIsParentOfExternalOrgSortInput = {
39498
+ lastModified?: InputMaybe<GraphStoreSortInput>;
39499
+ };
38812
39500
  export declare type GraphStoreExternalPositionIsFilledByExternalWorkerSortInput = {
38813
39501
  lastModified?: InputMaybe<GraphStoreSortInput>;
38814
39502
  };
39503
+ export declare type GraphStoreExternalPositionManagesExternalOrgSortInput = {
39504
+ lastModified?: InputMaybe<GraphStoreSortInput>;
39505
+ };
38815
39506
  export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
38816
39507
  lastModified?: InputMaybe<GraphStoreSortInput>;
38817
39508
  };
@@ -41291,71 +41982,6 @@ export declare type GraphStoreFullServiceLinkedIncidentStartNode = {
41291
41982
  id: Scalars['ID']['output'];
41292
41983
  };
41293
41984
  export declare type GraphStoreFullServiceLinkedIncidentStartUnion = DevOpsService;
41294
- export declare enum GraphStoreFullSprintAssociatedBuildBuildStateOutput {
41295
- Cancelled = "CANCELLED",
41296
- Failed = "FAILED",
41297
- InProgress = "IN_PROGRESS",
41298
- NotSet = "NOT_SET",
41299
- Pending = "PENDING",
41300
- Successful = "SUCCESSFUL",
41301
- Unknown = "UNKNOWN"
41302
- }
41303
- export declare type GraphStoreFullSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
41304
- __typename?: 'GraphStoreFullSprintAssociatedBuildConnection';
41305
- edges: Array<Maybe<GraphStoreFullSprintAssociatedBuildEdge>>;
41306
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
41307
- nodes: Array<Maybe<GraphStoreFullSprintAssociatedBuildNode>>;
41308
- pageInfo: PageInfo;
41309
- totalCount?: Maybe<Scalars['Int']['output']>;
41310
- };
41311
- export declare type GraphStoreFullSprintAssociatedBuildEdge = {
41312
- __typename?: 'GraphStoreFullSprintAssociatedBuildEdge';
41313
- cursor?: Maybe<Scalars['String']['output']>;
41314
- node: GraphStoreFullSprintAssociatedBuildNode;
41315
- };
41316
- export declare type GraphStoreFullSprintAssociatedBuildEndNode = {
41317
- __typename?: 'GraphStoreFullSprintAssociatedBuildEndNode';
41318
- data?: Maybe<GraphStoreFullSprintAssociatedBuildEndUnion>;
41319
- id: Scalars['ID']['output'];
41320
- metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput>;
41321
- };
41322
- export declare type GraphStoreFullSprintAssociatedBuildEndUnion = ExternalBuildInfo;
41323
- export declare type GraphStoreFullSprintAssociatedBuildNode = Node & {
41324
- __typename?: 'GraphStoreFullSprintAssociatedBuildNode';
41325
- createdAt: Scalars['DateTime']['output'];
41326
- from: GraphStoreFullSprintAssociatedBuildStartNode;
41327
- id: Scalars['ID']['output'];
41328
- lastUpdated: Scalars['DateTime']['output'];
41329
- metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput>;
41330
- to: GraphStoreFullSprintAssociatedBuildEndNode;
41331
- };
41332
- export declare type GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput = {
41333
- __typename?: 'GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput';
41334
- assigneeAri?: Maybe<Scalars['String']['output']>;
41335
- creatorAri?: Maybe<Scalars['String']['output']>;
41336
- issueAri?: Maybe<Scalars['String']['output']>;
41337
- issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
41338
- reporterAri?: Maybe<Scalars['String']['output']>;
41339
- statusAri?: Maybe<Scalars['String']['output']>;
41340
- };
41341
- export declare type GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput = {
41342
- __typename?: 'GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput';
41343
- state?: Maybe<GraphStoreFullSprintAssociatedBuildBuildStateOutput>;
41344
- testInfo?: Maybe<GraphStoreFullSprintAssociatedBuildTestInfoOutput>;
41345
- };
41346
- export declare type GraphStoreFullSprintAssociatedBuildStartNode = {
41347
- __typename?: 'GraphStoreFullSprintAssociatedBuildStartNode';
41348
- data?: Maybe<GraphStoreFullSprintAssociatedBuildStartUnion>;
41349
- id: Scalars['ID']['output'];
41350
- };
41351
- export declare type GraphStoreFullSprintAssociatedBuildStartUnion = JiraSprint;
41352
- export declare type GraphStoreFullSprintAssociatedBuildTestInfoOutput = {
41353
- __typename?: 'GraphStoreFullSprintAssociatedBuildTestInfoOutput';
41354
- numberFailed?: Maybe<Scalars['Long']['output']>;
41355
- numberPassed?: Maybe<Scalars['Long']['output']>;
41356
- numberSkipped?: Maybe<Scalars['Long']['output']>;
41357
- totalNumber?: Maybe<Scalars['Long']['output']>;
41358
- };
41359
41985
  export declare type GraphStoreFullSprintAssociatedDeploymentAuthorOutput = {
41360
41986
  __typename?: 'GraphStoreFullSprintAssociatedDeploymentAuthorOutput';
41361
41987
  authorAri?: Maybe<Scalars['String']['output']>;
@@ -42493,6 +43119,9 @@ export declare type GraphStoreIssueHasAutodevJobSortInput = {
42493
43119
  export declare type GraphStoreIssueHasChangedPrioritySortInput = {
42494
43120
  lastModified?: InputMaybe<GraphStoreSortInput>;
42495
43121
  };
43122
+ export declare type GraphStoreIssueHasChangedStatusSortInput = {
43123
+ lastModified?: InputMaybe<GraphStoreSortInput>;
43124
+ };
42496
43125
  export declare type GraphStoreIssueMentionedInConversationSortInput = {
42497
43126
  lastModified?: InputMaybe<GraphStoreSortInput>;
42498
43127
  };
@@ -42596,6 +43225,9 @@ export declare type GraphStoreJsmProjectAssociatedServiceSortInput = {
42596
43225
  lastModified?: InputMaybe<GraphStoreSortInput>;
42597
43226
  toAti?: InputMaybe<GraphStoreSortInput>;
42598
43227
  };
43228
+ export declare type GraphStoreJsmProjectLinkedKbSourcesSortInput = {
43229
+ lastModified?: InputMaybe<GraphStoreSortInput>;
43230
+ };
42599
43231
  export declare type GraphStoreJswProjectAssociatedComponentSortInput = {
42600
43232
  createdAt?: InputMaybe<GraphStoreSortInput>;
42601
43233
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -42675,6 +43307,12 @@ export declare type GraphStoreLongFilterInput = {
42675
43307
  lessThan?: InputMaybe<Scalars['Long']['input']>;
42676
43308
  lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
42677
43309
  };
43310
+ export declare type GraphStoreLoomVideoHasConfluencePageSortInput = {
43311
+ createdAt?: InputMaybe<GraphStoreSortInput>;
43312
+ fromAti?: InputMaybe<GraphStoreSortInput>;
43313
+ lastModified?: InputMaybe<GraphStoreSortInput>;
43314
+ toAti?: InputMaybe<GraphStoreSortInput>;
43315
+ };
42678
43316
  export declare type GraphStoreMediaAttachedToContentSortInput = {
42679
43317
  lastModified?: InputMaybe<GraphStoreSortInput>;
42680
43318
  };
@@ -42699,6 +43337,7 @@ export declare type GraphStoreMutation = {
42699
43337
  createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
42700
43338
  createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
42701
43339
  createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
43340
+ createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
42702
43341
  createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
42703
43342
  createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
42704
43343
  createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
@@ -42724,6 +43363,7 @@ export declare type GraphStoreMutation = {
42724
43363
  deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
42725
43364
  deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
42726
43365
  deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
43366
+ deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
42727
43367
  deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
42728
43368
  deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
42729
43369
  deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
@@ -42764,6 +43404,9 @@ export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationA
42764
43404
  export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
42765
43405
  input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
42766
43406
  };
43407
+ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
43408
+ input?: InputMaybe<GraphStoreCreateLoomVideoHasConfluencePageInput>;
43409
+ };
42767
43410
  export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
42768
43411
  input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
42769
43412
  };
@@ -42839,6 +43482,9 @@ export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationA
42839
43482
  export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
42840
43483
  input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
42841
43484
  };
43485
+ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
43486
+ input?: InputMaybe<GraphStoreDeleteLoomVideoHasConfluencePageInput>;
43487
+ };
42842
43488
  export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
42843
43489
  input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
42844
43490
  };
@@ -43434,6 +44080,9 @@ export declare type GraphStoreServiceAssociatedBranchSortInput = {
43434
44080
  export declare type GraphStoreServiceAssociatedBuildSortInput = {
43435
44081
  lastModified?: InputMaybe<GraphStoreSortInput>;
43436
44082
  };
44083
+ export declare type GraphStoreServiceAssociatedCommitSortInput = {
44084
+ lastModified?: InputMaybe<GraphStoreSortInput>;
44085
+ };
43437
44086
  export declare type GraphStoreServiceAssociatedDeploymentConditionalFilterInput = {
43438
44087
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
43439
44088
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
@@ -43453,6 +44102,9 @@ export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
43453
44102
  export declare type GraphStoreServiceAssociatedFeatureFlagSortInput = {
43454
44103
  lastModified?: InputMaybe<GraphStoreSortInput>;
43455
44104
  };
44105
+ export declare type GraphStoreServiceAssociatedPrSortInput = {
44106
+ lastModified?: InputMaybe<GraphStoreSortInput>;
44107
+ };
43456
44108
  export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
43457
44109
  lastModified?: InputMaybe<GraphStoreSortInput>;
43458
44110
  };
@@ -44702,6 +45354,34 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
44702
45354
  };
44703
45355
  export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
44704
45356
  export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
45357
+ export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionConnection = HasPageInfo & {
45358
+ __typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionConnection';
45359
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionEdge>>>;
45360
+ pageInfo: PageInfo;
45361
+ };
45362
+ export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionEdge = {
45363
+ __typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionEdge';
45364
+ createdAt: Scalars['DateTime']['output'];
45365
+ cursor?: Maybe<Scalars['String']['output']>;
45366
+ id: Scalars['ID']['output'];
45367
+ lastUpdated: Scalars['DateTime']['output'];
45368
+ node?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionUnion>;
45369
+ };
45370
+ export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionInverseConnection = HasPageInfo & {
45371
+ __typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionInverseConnection';
45372
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionInverseEdge>>>;
45373
+ pageInfo: PageInfo;
45374
+ };
45375
+ export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionInverseEdge = {
45376
+ __typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionInverseEdge';
45377
+ createdAt: Scalars['DateTime']['output'];
45378
+ cursor?: Maybe<Scalars['String']['output']>;
45379
+ id: Scalars['ID']['output'];
45380
+ lastUpdated: Scalars['DateTime']['output'];
45381
+ node?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionInverseUnion>;
45382
+ };
45383
+ export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionInverseUnion = ExternalOrganisation;
45384
+ export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionUnion = ExternalPosition;
44705
45385
  export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection = HasPageInfo & HasTotal & {
44706
45386
  __typename?: 'GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection';
44707
45387
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerEdge>>>;
@@ -44766,6 +45446,34 @@ export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseEdge =
44766
45446
  };
44767
45447
  export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseUnion = ExternalOrganisation;
44768
45448
  export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberUnion = AppUser | AtlassianAccountUser | CustomerUser;
45449
+ export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgConnection = HasPageInfo & {
45450
+ __typename?: 'GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgConnection';
45451
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgEdge>>>;
45452
+ pageInfo: PageInfo;
45453
+ };
45454
+ export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgEdge = {
45455
+ __typename?: 'GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgEdge';
45456
+ createdAt: Scalars['DateTime']['output'];
45457
+ cursor?: Maybe<Scalars['String']['output']>;
45458
+ id: Scalars['ID']['output'];
45459
+ lastUpdated: Scalars['DateTime']['output'];
45460
+ node?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgUnion>;
45461
+ };
45462
+ export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseConnection = HasPageInfo & {
45463
+ __typename?: 'GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseConnection';
45464
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseEdge>>>;
45465
+ pageInfo: PageInfo;
45466
+ };
45467
+ export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseEdge = {
45468
+ __typename?: 'GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseEdge';
45469
+ createdAt: Scalars['DateTime']['output'];
45470
+ cursor?: Maybe<Scalars['String']['output']>;
45471
+ id: Scalars['ID']['output'];
45472
+ lastUpdated: Scalars['DateTime']['output'];
45473
+ node?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseUnion>;
45474
+ };
45475
+ export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseUnion = ExternalOrganisation;
45476
+ export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgUnion = ExternalOrganisation;
44769
45477
  export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection = HasPageInfo & {
44770
45478
  __typename?: 'GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection';
44771
45479
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerEdge>>>;
@@ -44794,6 +45502,34 @@ export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorker
44794
45502
  };
44795
45503
  export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseUnion = ExternalPosition;
44796
45504
  export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerUnion = ExternalWorker;
45505
+ export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgConnection = HasPageInfo & {
45506
+ __typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalOrgConnection';
45507
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgEdge>>>;
45508
+ pageInfo: PageInfo;
45509
+ };
45510
+ export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgEdge = {
45511
+ __typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalOrgEdge';
45512
+ createdAt: Scalars['DateTime']['output'];
45513
+ cursor?: Maybe<Scalars['String']['output']>;
45514
+ id: Scalars['ID']['output'];
45515
+ lastUpdated: Scalars['DateTime']['output'];
45516
+ node?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgUnion>;
45517
+ };
45518
+ export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection = HasPageInfo & {
45519
+ __typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection';
45520
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseEdge>>>;
45521
+ pageInfo: PageInfo;
45522
+ };
45523
+ export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseEdge = {
45524
+ __typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseEdge';
45525
+ createdAt: Scalars['DateTime']['output'];
45526
+ cursor?: Maybe<Scalars['String']['output']>;
45527
+ id: Scalars['ID']['output'];
45528
+ lastUpdated: Scalars['DateTime']['output'];
45529
+ node?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseUnion>;
45530
+ };
45531
+ export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseUnion = ExternalPosition;
45532
+ export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgUnion = ExternalOrganisation;
44797
45533
  export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection = HasPageInfo & {
44798
45534
  __typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection';
44799
45535
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionEdge>>>;
@@ -45602,6 +46338,20 @@ export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseEdge = {
45602
46338
  };
45603
46339
  export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseUnion = JiraIssue;
45604
46340
  export declare type GraphStoreSimplifiedIssueHasChangedPriorityUnion = JiraPriority;
46341
+ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseConnection = HasPageInfo & {
46342
+ __typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseConnection';
46343
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseEdge>>>;
46344
+ pageInfo: PageInfo;
46345
+ };
46346
+ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
46347
+ __typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseEdge';
46348
+ createdAt: Scalars['DateTime']['output'];
46349
+ cursor?: Maybe<Scalars['String']['output']>;
46350
+ id: Scalars['ID']['output'];
46351
+ lastUpdated: Scalars['DateTime']['output'];
46352
+ node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseUnion>;
46353
+ };
46354
+ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
45605
46355
  export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
45606
46356
  __typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
45607
46357
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
@@ -45966,6 +46716,34 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge =
45966
46716
  };
45967
46717
  export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseUnion = JiraProject;
45968
46718
  export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceUnion = DevOpsService;
46719
+ export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesConnection = HasPageInfo & {
46720
+ __typename?: 'GraphStoreSimplifiedJsmProjectLinkedKbSourcesConnection';
46721
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesEdge>>>;
46722
+ pageInfo: PageInfo;
46723
+ };
46724
+ export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesEdge = {
46725
+ __typename?: 'GraphStoreSimplifiedJsmProjectLinkedKbSourcesEdge';
46726
+ createdAt: Scalars['DateTime']['output'];
46727
+ cursor?: Maybe<Scalars['String']['output']>;
46728
+ id: Scalars['ID']['output'];
46729
+ lastUpdated: Scalars['DateTime']['output'];
46730
+ node?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesUnion>;
46731
+ };
46732
+ export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseConnection = HasPageInfo & {
46733
+ __typename?: 'GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseConnection';
46734
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseEdge>>>;
46735
+ pageInfo: PageInfo;
46736
+ };
46737
+ export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseEdge = {
46738
+ __typename?: 'GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseEdge';
46739
+ createdAt: Scalars['DateTime']['output'];
46740
+ cursor?: Maybe<Scalars['String']['output']>;
46741
+ id: Scalars['ID']['output'];
46742
+ lastUpdated: Scalars['DateTime']['output'];
46743
+ node?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseUnion>;
46744
+ };
46745
+ export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseUnion = JiraProject;
46746
+ export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesUnion = ConfluenceSpace | DevOpsDocument | ExternalDocument;
45969
46747
  export declare type GraphStoreSimplifiedJswProjectAssociatedComponentConnection = HasPageInfo & HasTotal & {
45970
46748
  __typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentConnection';
45971
46749
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentEdge>>>;
@@ -46094,6 +46872,38 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
46094
46872
  };
46095
46873
  export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion = JiraProject;
46096
46874
  export declare type GraphStoreSimplifiedLinkedProjectHasVersionUnion = JiraVersion;
46875
+ export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageConnection = HasPageInfo & HasTotal & {
46876
+ __typename?: 'GraphStoreSimplifiedLoomVideoHasConfluencePageConnection';
46877
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageEdge>>>;
46878
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
46879
+ pageInfo: PageInfo;
46880
+ totalCount?: Maybe<Scalars['Int']['output']>;
46881
+ };
46882
+ export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageEdge = {
46883
+ __typename?: 'GraphStoreSimplifiedLoomVideoHasConfluencePageEdge';
46884
+ createdAt: Scalars['DateTime']['output'];
46885
+ cursor?: Maybe<Scalars['String']['output']>;
46886
+ id: Scalars['ID']['output'];
46887
+ lastUpdated: Scalars['DateTime']['output'];
46888
+ node?: Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageUnion>;
46889
+ };
46890
+ export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageInverseConnection = HasPageInfo & HasTotal & {
46891
+ __typename?: 'GraphStoreSimplifiedLoomVideoHasConfluencePageInverseConnection';
46892
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageInverseEdge>>>;
46893
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
46894
+ pageInfo: PageInfo;
46895
+ totalCount?: Maybe<Scalars['Int']['output']>;
46896
+ };
46897
+ export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageInverseEdge = {
46898
+ __typename?: 'GraphStoreSimplifiedLoomVideoHasConfluencePageInverseEdge';
46899
+ createdAt: Scalars['DateTime']['output'];
46900
+ cursor?: Maybe<Scalars['String']['output']>;
46901
+ id: Scalars['ID']['output'];
46902
+ lastUpdated: Scalars['DateTime']['output'];
46903
+ node?: Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageInverseUnion>;
46904
+ };
46905
+ export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageInverseUnion = LoomVideo;
46906
+ export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageUnion = ConfluencePage;
46097
46907
  export declare type GraphStoreSimplifiedMediaAttachedToContentConnection = HasPageInfo & {
46098
46908
  __typename?: 'GraphStoreSimplifiedMediaAttachedToContentConnection';
46099
46909
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMediaAttachedToContentEdge>>>;
@@ -47360,6 +48170,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseEdge = {
47360
48170
  };
47361
48171
  export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseUnion = DevOpsService;
47362
48172
  export declare type GraphStoreSimplifiedServiceAssociatedBuildUnion = ExternalBuildInfo;
48173
+ export declare type GraphStoreSimplifiedServiceAssociatedCommitConnection = HasPageInfo & {
48174
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedCommitConnection';
48175
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedCommitEdge>>>;
48176
+ pageInfo: PageInfo;
48177
+ };
48178
+ export declare type GraphStoreSimplifiedServiceAssociatedCommitEdge = {
48179
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedCommitEdge';
48180
+ createdAt: Scalars['DateTime']['output'];
48181
+ cursor?: Maybe<Scalars['String']['output']>;
48182
+ id: Scalars['ID']['output'];
48183
+ lastUpdated: Scalars['DateTime']['output'];
48184
+ node?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitUnion>;
48185
+ };
48186
+ export declare type GraphStoreSimplifiedServiceAssociatedCommitInverseConnection = HasPageInfo & {
48187
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedCommitInverseConnection';
48188
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedCommitInverseEdge>>>;
48189
+ pageInfo: PageInfo;
48190
+ };
48191
+ export declare type GraphStoreSimplifiedServiceAssociatedCommitInverseEdge = {
48192
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedCommitInverseEdge';
48193
+ createdAt: Scalars['DateTime']['output'];
48194
+ cursor?: Maybe<Scalars['String']['output']>;
48195
+ id: Scalars['ID']['output'];
48196
+ lastUpdated: Scalars['DateTime']['output'];
48197
+ node?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitInverseUnion>;
48198
+ };
48199
+ export declare type GraphStoreSimplifiedServiceAssociatedCommitInverseUnion = DevOpsService;
48200
+ export declare type GraphStoreSimplifiedServiceAssociatedCommitUnion = ExternalCommit;
47363
48201
  export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
47364
48202
  __typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
47365
48203
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
@@ -47420,6 +48258,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseEdge
47420
48258
  };
47421
48259
  export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseUnion = DevOpsService;
47422
48260
  export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
48261
+ export declare type GraphStoreSimplifiedServiceAssociatedPrConnection = HasPageInfo & {
48262
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedPrConnection';
48263
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedPrEdge>>>;
48264
+ pageInfo: PageInfo;
48265
+ };
48266
+ export declare type GraphStoreSimplifiedServiceAssociatedPrEdge = {
48267
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedPrEdge';
48268
+ createdAt: Scalars['DateTime']['output'];
48269
+ cursor?: Maybe<Scalars['String']['output']>;
48270
+ id: Scalars['ID']['output'];
48271
+ lastUpdated: Scalars['DateTime']['output'];
48272
+ node?: Maybe<GraphStoreSimplifiedServiceAssociatedPrUnion>;
48273
+ };
48274
+ export declare type GraphStoreSimplifiedServiceAssociatedPrInverseConnection = HasPageInfo & {
48275
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedPrInverseConnection';
48276
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseEdge>>>;
48277
+ pageInfo: PageInfo;
48278
+ };
48279
+ export declare type GraphStoreSimplifiedServiceAssociatedPrInverseEdge = {
48280
+ __typename?: 'GraphStoreSimplifiedServiceAssociatedPrInverseEdge';
48281
+ createdAt: Scalars['DateTime']['output'];
48282
+ cursor?: Maybe<Scalars['String']['output']>;
48283
+ id: Scalars['ID']['output'];
48284
+ lastUpdated: Scalars['DateTime']['output'];
48285
+ node?: Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseUnion>;
48286
+ };
48287
+ export declare type GraphStoreSimplifiedServiceAssociatedPrInverseUnion = DevOpsService;
48288
+ export declare type GraphStoreSimplifiedServiceAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
47423
48289
  export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection = HasPageInfo & {
47424
48290
  __typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection';
47425
48291
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge>>>;
@@ -47656,38 +48522,34 @@ export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge =
47656
48522
  };
47657
48523
  export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion = ConfluenceSpace;
47658
48524
  export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectUnion = JiraProject;
47659
- export declare type GraphStoreSimplifiedSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
47660
- __typename?: 'GraphStoreSimplifiedSprintAssociatedBuildConnection';
47661
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedBuildEdge>>>;
47662
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
48525
+ export declare type GraphStoreSimplifiedSpaceHasPageConnection = HasPageInfo & {
48526
+ __typename?: 'GraphStoreSimplifiedSpaceHasPageConnection';
48527
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceHasPageEdge>>>;
47663
48528
  pageInfo: PageInfo;
47664
- totalCount?: Maybe<Scalars['Int']['output']>;
47665
48529
  };
47666
- export declare type GraphStoreSimplifiedSprintAssociatedBuildEdge = {
47667
- __typename?: 'GraphStoreSimplifiedSprintAssociatedBuildEdge';
48530
+ export declare type GraphStoreSimplifiedSpaceHasPageEdge = {
48531
+ __typename?: 'GraphStoreSimplifiedSpaceHasPageEdge';
47668
48532
  createdAt: Scalars['DateTime']['output'];
47669
48533
  cursor?: Maybe<Scalars['String']['output']>;
47670
48534
  id: Scalars['ID']['output'];
47671
48535
  lastUpdated: Scalars['DateTime']['output'];
47672
- node?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildUnion>;
48536
+ node?: Maybe<GraphStoreSimplifiedSpaceHasPageUnion>;
47673
48537
  };
47674
- export declare type GraphStoreSimplifiedSprintAssociatedBuildInverseConnection = HasPageInfo & HasTotal & {
47675
- __typename?: 'GraphStoreSimplifiedSprintAssociatedBuildInverseConnection';
47676
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedBuildInverseEdge>>>;
47677
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
48538
+ export declare type GraphStoreSimplifiedSpaceHasPageInverseConnection = HasPageInfo & {
48539
+ __typename?: 'GraphStoreSimplifiedSpaceHasPageInverseConnection';
48540
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceHasPageInverseEdge>>>;
47678
48541
  pageInfo: PageInfo;
47679
- totalCount?: Maybe<Scalars['Int']['output']>;
47680
48542
  };
47681
- export declare type GraphStoreSimplifiedSprintAssociatedBuildInverseEdge = {
47682
- __typename?: 'GraphStoreSimplifiedSprintAssociatedBuildInverseEdge';
48543
+ export declare type GraphStoreSimplifiedSpaceHasPageInverseEdge = {
48544
+ __typename?: 'GraphStoreSimplifiedSpaceHasPageInverseEdge';
47683
48545
  createdAt: Scalars['DateTime']['output'];
47684
48546
  cursor?: Maybe<Scalars['String']['output']>;
47685
48547
  id: Scalars['ID']['output'];
47686
48548
  lastUpdated: Scalars['DateTime']['output'];
47687
- node?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildInverseUnion>;
48549
+ node?: Maybe<GraphStoreSimplifiedSpaceHasPageInverseUnion>;
47688
48550
  };
47689
- export declare type GraphStoreSimplifiedSprintAssociatedBuildInverseUnion = JiraSprint;
47690
- export declare type GraphStoreSimplifiedSprintAssociatedBuildUnion = ExternalBuildInfo;
48551
+ export declare type GraphStoreSimplifiedSpaceHasPageInverseUnion = ConfluenceSpace;
48552
+ export declare type GraphStoreSimplifiedSpaceHasPageUnion = ConfluencePage;
47691
48553
  export declare type GraphStoreSimplifiedSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
47692
48554
  __typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentConnection';
47693
48555
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentEdge>>>;
@@ -47943,7 +48805,7 @@ export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseEdge = {
47943
48805
  node?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseUnion>;
47944
48806
  };
47945
48807
  export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseUnion = TeamV2;
47946
- export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject;
48808
+ export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject | LoomSpace;
47947
48809
  export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
47948
48810
  __typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
47949
48811
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
@@ -49646,6 +50508,34 @@ export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge = {
49646
50508
  };
49647
50509
  export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
49648
50510
  export declare type GraphStoreSimplifiedUserOwnsFocusAreaUnion = MercuryFocusArea;
50511
+ export declare type GraphStoreSimplifiedUserOwnsPageConnection = HasPageInfo & {
50512
+ __typename?: 'GraphStoreSimplifiedUserOwnsPageConnection';
50513
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsPageEdge>>>;
50514
+ pageInfo: PageInfo;
50515
+ };
50516
+ export declare type GraphStoreSimplifiedUserOwnsPageEdge = {
50517
+ __typename?: 'GraphStoreSimplifiedUserOwnsPageEdge';
50518
+ createdAt: Scalars['DateTime']['output'];
50519
+ cursor?: Maybe<Scalars['String']['output']>;
50520
+ id: Scalars['ID']['output'];
50521
+ lastUpdated: Scalars['DateTime']['output'];
50522
+ node?: Maybe<GraphStoreSimplifiedUserOwnsPageUnion>;
50523
+ };
50524
+ export declare type GraphStoreSimplifiedUserOwnsPageInverseConnection = HasPageInfo & {
50525
+ __typename?: 'GraphStoreSimplifiedUserOwnsPageInverseConnection';
50526
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsPageInverseEdge>>>;
50527
+ pageInfo: PageInfo;
50528
+ };
50529
+ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
50530
+ __typename?: 'GraphStoreSimplifiedUserOwnsPageInverseEdge';
50531
+ createdAt: Scalars['DateTime']['output'];
50532
+ cursor?: Maybe<Scalars['String']['output']>;
50533
+ id: Scalars['ID']['output'];
50534
+ lastUpdated: Scalars['DateTime']['output'];
50535
+ node?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseUnion>;
50536
+ };
50537
+ export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
50538
+ export declare type GraphStoreSimplifiedUserOwnsPageUnion = ConfluencePage;
49649
50539
  export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
49650
50540
  __typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
49651
50541
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
@@ -49842,6 +50732,34 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
49842
50732
  };
49843
50733
  export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
49844
50734
  export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
50735
+ export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
50736
+ __typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
50737
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
50738
+ pageInfo: PageInfo;
50739
+ };
50740
+ export declare type GraphStoreSimplifiedUserUpdatedCommentEdge = {
50741
+ __typename?: 'GraphStoreSimplifiedUserUpdatedCommentEdge';
50742
+ createdAt: Scalars['DateTime']['output'];
50743
+ cursor?: Maybe<Scalars['String']['output']>;
50744
+ id: Scalars['ID']['output'];
50745
+ lastUpdated: Scalars['DateTime']['output'];
50746
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentUnion>;
50747
+ };
50748
+ export declare type GraphStoreSimplifiedUserUpdatedCommentInverseConnection = HasPageInfo & {
50749
+ __typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseConnection';
50750
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseEdge>>>;
50751
+ pageInfo: PageInfo;
50752
+ };
50753
+ export declare type GraphStoreSimplifiedUserUpdatedCommentInverseEdge = {
50754
+ __typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseEdge';
50755
+ createdAt: Scalars['DateTime']['output'];
50756
+ cursor?: Maybe<Scalars['String']['output']>;
50757
+ id: Scalars['ID']['output'];
50758
+ lastUpdated: Scalars['DateTime']['output'];
50759
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseUnion>;
50760
+ };
50761
+ export declare type GraphStoreSimplifiedUserUpdatedCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
50762
+ export declare type GraphStoreSimplifiedUserUpdatedCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
49845
50763
  export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
49846
50764
  __typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
49847
50765
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
@@ -50729,64 +51647,8 @@ export declare type GraphStoreSortInput = {
50729
51647
  export declare type GraphStoreSpaceAssociatedWithProjectSortInput = {
50730
51648
  lastModified?: InputMaybe<GraphStoreSortInput>;
50731
51649
  };
50732
- export declare enum GraphStoreSprintAssociatedBuildBuildState {
50733
- Cancelled = "CANCELLED",
50734
- Failed = "FAILED",
50735
- InProgress = "IN_PROGRESS",
50736
- NotSet = "NOT_SET",
50737
- Pending = "PENDING",
50738
- Successful = "SUCCESSFUL",
50739
- Unknown = "UNKNOWN"
50740
- }
50741
- export declare type GraphStoreSprintAssociatedBuildBuildStateFilterInput = {
50742
- is?: InputMaybe<Array<GraphStoreSprintAssociatedBuildBuildState>>;
50743
- isNot?: InputMaybe<Array<GraphStoreSprintAssociatedBuildBuildState>>;
50744
- };
50745
- export declare type GraphStoreSprintAssociatedBuildConditionalFilterInput = {
50746
- createdAt?: InputMaybe<GraphStoreDateFilterInput>;
50747
- fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
50748
- lastModified?: InputMaybe<GraphStoreDateFilterInput>;
50749
- relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
50750
- relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
50751
- relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
50752
- relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
50753
- relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
50754
- relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
50755
- toAti?: InputMaybe<GraphStoreAtiFilterInput>;
50756
- to_state?: InputMaybe<GraphStoreSprintAssociatedBuildBuildStateFilterInput>;
50757
- to_testInfo?: InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>;
50758
- };
50759
- export declare type GraphStoreSprintAssociatedBuildFilterInput = {
50760
- and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildConditionalFilterInput>>>;
50761
- or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildConditionalFilterInput>>>;
50762
- };
50763
- export declare type GraphStoreSprintAssociatedBuildSortInput = {
50764
- createdAt?: InputMaybe<GraphStoreSortInput>;
50765
- fromAti?: InputMaybe<GraphStoreSortInput>;
51650
+ export declare type GraphStoreSpaceHasPageSortInput = {
50766
51651
  lastModified?: InputMaybe<GraphStoreSortInput>;
50767
- relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
50768
- relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
50769
- relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
50770
- relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
50771
- relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
50772
- relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
50773
- toAti?: InputMaybe<GraphStoreSortInput>;
50774
- to_state?: InputMaybe<GraphStoreSortInput>;
50775
- to_testInfo?: InputMaybe<GraphStoreSprintAssociatedBuildTestInfoSortInput>;
50776
- };
50777
- export declare type GraphStoreSprintAssociatedBuildTestInfoFilterInput = {
50778
- and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>>>;
50779
- numberFailed?: InputMaybe<GraphStoreLongFilterInput>;
50780
- numberPassed?: InputMaybe<GraphStoreLongFilterInput>;
50781
- numberSkipped?: InputMaybe<GraphStoreLongFilterInput>;
50782
- or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>>>;
50783
- totalNumber?: InputMaybe<GraphStoreLongFilterInput>;
50784
- };
50785
- export declare type GraphStoreSprintAssociatedBuildTestInfoSortInput = {
50786
- numberFailed?: InputMaybe<GraphStoreSortInput>;
50787
- numberPassed?: InputMaybe<GraphStoreSortInput>;
50788
- numberSkipped?: InputMaybe<GraphStoreSortInput>;
50789
- totalNumber?: InputMaybe<GraphStoreSortInput>;
50790
51652
  };
50791
51653
  export declare type GraphStoreSprintAssociatedDeploymentAuthorFilterInput = {
50792
51654
  and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorFilterInput>>>;
@@ -51128,8 +51990,6 @@ export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditional
51128
51990
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
51129
51991
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
51130
51992
  lastModified?: InputMaybe<GraphStoreDateFilterInput>;
51131
- relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
51132
- relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
51133
51993
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
51134
51994
  to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
51135
51995
  to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
@@ -51142,8 +52002,6 @@ export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput =
51142
52002
  createdAt?: InputMaybe<GraphStoreSortInput>;
51143
52003
  fromAti?: InputMaybe<GraphStoreSortInput>;
51144
52004
  lastModified?: InputMaybe<GraphStoreSortInput>;
51145
- relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
51146
- relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
51147
52005
  toAti?: InputMaybe<GraphStoreSortInput>;
51148
52006
  to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
51149
52007
  to_integrationAri?: InputMaybe<GraphStoreSortInput>;
@@ -51274,8 +52132,6 @@ export declare type GraphStoreUserLinkedThirdPartyUserConditionalFilterInput = {
51274
52132
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
51275
52133
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
51276
52134
  lastModified?: InputMaybe<GraphStoreDateFilterInput>;
51277
- relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
51278
- relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
51279
52135
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
51280
52136
  to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
51281
52137
  to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
@@ -51288,8 +52144,6 @@ export declare type GraphStoreUserLinkedThirdPartyUserSortInput = {
51288
52144
  createdAt?: InputMaybe<GraphStoreSortInput>;
51289
52145
  fromAti?: InputMaybe<GraphStoreSortInput>;
51290
52146
  lastModified?: InputMaybe<GraphStoreSortInput>;
51291
- relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
51292
- relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
51293
52147
  toAti?: InputMaybe<GraphStoreSortInput>;
51294
52148
  to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
51295
52149
  to_integrationAri?: InputMaybe<GraphStoreSortInput>;
@@ -51343,6 +52197,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
51343
52197
  export declare type GraphStoreUserOwnsFocusAreaSortInput = {
51344
52198
  lastModified?: InputMaybe<GraphStoreSortInput>;
51345
52199
  };
52200
+ export declare type GraphStoreUserOwnsPageSortInput = {
52201
+ lastModified?: InputMaybe<GraphStoreSortInput>;
52202
+ };
51346
52203
  export declare type GraphStoreUserReportedIncidentSortInput = {
51347
52204
  lastModified?: InputMaybe<GraphStoreSortInput>;
51348
52205
  };
@@ -51364,6 +52221,9 @@ export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
51364
52221
  export declare type GraphStoreUserTriggeredDeploymentSortInput = {
51365
52222
  lastModified?: InputMaybe<GraphStoreSortInput>;
51366
52223
  };
52224
+ export declare type GraphStoreUserUpdatedCommentSortInput = {
52225
+ lastModified?: InputMaybe<GraphStoreSortInput>;
52226
+ };
51367
52227
  export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
51368
52228
  lastModified?: InputMaybe<GraphStoreSortInput>;
51369
52229
  };
@@ -55822,43 +56682,6 @@ export declare type JiraAutodevTaskPayload = Payload & {
55822
56682
  success: Scalars['Boolean']['output'];
55823
56683
  task?: Maybe<JiraAutodevTask>;
55824
56684
  };
55825
- export declare type JiraAutofixCreateJobPayload = Payload & {
55826
- __typename?: 'JiraAutofixCreateJobPayload';
55827
- errors?: Maybe<Array<MutationError>>;
55828
- job?: Maybe<JiraAutofixJob>;
55829
- success: Scalars['Boolean']['output'];
55830
- };
55831
- export declare type JiraAutofixInput = {
55832
- issueAri: Scalars['ID']['input'];
55833
- jobType: JiraAutofixJobType;
55834
- };
55835
- export declare type JiraAutofixJob = {
55836
- __typename?: 'JiraAutofixJob';
55837
- errorMessage?: Maybe<Scalars['String']['output']>;
55838
- errorType?: Maybe<Scalars['String']['output']>;
55839
- jobId: Scalars['ID']['output'];
55840
- status: JiraAutofixStatus;
55841
- };
55842
- export declare type JiraAutofixJobConnection = {
55843
- __typename?: 'JiraAutofixJobConnection';
55844
- edges?: Maybe<Array<Maybe<JiraAutofixJobEdge>>>;
55845
- nodes?: Maybe<Array<Maybe<JiraAutofixJob>>>;
55846
- pageInfo: PageInfo;
55847
- };
55848
- export declare type JiraAutofixJobEdge = {
55849
- __typename?: 'JiraAutofixJobEdge';
55850
- cursor: Scalars['String']['output'];
55851
- node?: Maybe<JiraAutofixJob>;
55852
- };
55853
- export declare enum JiraAutofixJobType {
55854
- InternalRemoveFeatureFlag = "INTERNAL_REMOVE_FEATURE_FLAG"
55855
- }
55856
- export declare enum JiraAutofixStatus {
55857
- Completed = "COMPLETED",
55858
- Failed = "FAILED",
55859
- InProgress = "IN_PROGRESS",
55860
- Pending = "PENDING"
55861
- }
55862
56685
  export declare type JiraAvailableField = JiraProjectFieldAssociationInterface & {
55863
56686
  __typename?: 'JiraAvailableField';
55864
56687
  field?: Maybe<JiraField>;
@@ -57266,6 +58089,7 @@ export declare enum JiraConfigFieldType {
57266
58089
  StandardIssueKey = "STANDARD_ISSUE_KEY",
57267
58090
  StandardIssueLinks = "STANDARD_ISSUE_LINKS",
57268
58091
  StandardIssueNumber = "STANDARD_ISSUE_NUMBER",
58092
+ StandardIssueRestriction = "STANDARD_ISSUE_RESTRICTION",
57269
58093
  StandardIssueType = "STANDARD_ISSUE_TYPE",
57270
58094
  StandardLabels = "STANDARD_LABELS",
57271
58095
  StandardLastViewed = "STANDARD_LAST_VIEWED",
@@ -57279,6 +58103,8 @@ export declare enum JiraConfigFieldType {
57279
58103
  StandardResolutionDate = "STANDARD_RESOLUTION_DATE",
57280
58104
  StandardSecurity = "STANDARD_SECURITY",
57281
58105
  StandardStatus = "STANDARD_STATUS",
58106
+ StandardStatusCategory = "STANDARD_STATUS_CATEGORY",
58107
+ StandardStatusCategoryChangeDate = "STANDARD_STATUS_CATEGORY_CHANGE_DATE",
57282
58108
  StandardSubtasks = "STANDARD_SUBTASKS",
57283
58109
  StandardSummary = "STANDARD_SUMMARY",
57284
58110
  StandardThumbnail = "STANDARD_THUMBNAIL",
@@ -57354,10 +58180,29 @@ export declare type JiraConfigurableNavigationItemInput = {
57354
58180
  isVisible: Scalars['Boolean']['input'];
57355
58181
  menuId: Scalars['String']['input'];
57356
58182
  };
58183
+ export declare type JiraConfluencePageContent = JiraConfluencePageContentDetails | JiraConfluencePageContentError;
58184
+ export declare type JiraConfluencePageContentDetails = {
58185
+ __typename?: 'JiraConfluencePageContentDetails';
58186
+ href?: Maybe<Scalars['String']['output']>;
58187
+ id?: Maybe<Scalars['String']['output']>;
58188
+ title?: Maybe<Scalars['String']['output']>;
58189
+ };
58190
+ export declare type JiraConfluencePageContentError = {
58191
+ __typename?: 'JiraConfluencePageContentError';
58192
+ errorType?: Maybe<JiraConfluencePageContentErrorType>;
58193
+ repairLink?: Maybe<Scalars['String']['output']>;
58194
+ };
58195
+ export declare enum JiraConfluencePageContentErrorType {
58196
+ ApplinkMissing = "APPLINK_MISSING",
58197
+ ApplinkReqAuth = "APPLINK_REQ_AUTH",
58198
+ RemoteError = "REMOTE_ERROR",
58199
+ RemoteLinkMissing = "REMOTE_LINK_MISSING"
58200
+ }
57357
58201
  export declare type JiraConfluenceRemoteIssueLink = {
57358
58202
  __typename?: 'JiraConfluenceRemoteIssueLink';
57359
58203
  href?: Maybe<Scalars['String']['output']>;
57360
58204
  id: Scalars['ID']['output'];
58205
+ pageContent?: Maybe<JiraConfluencePageContent>;
57361
58206
  relationship?: Maybe<Scalars['String']['output']>;
57362
58207
  title?: Maybe<Scalars['String']['output']>;
57363
58208
  };
@@ -57747,8 +58592,13 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
57747
58592
  export declare type JiraCreateGlobalCustomFieldInput = {
57748
58593
  description?: InputMaybe<Scalars['String']['input']>;
57749
58594
  name: Scalars['String']['input'];
58595
+ options?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
57750
58596
  type: JiraConfigFieldType;
57751
58597
  };
58598
+ export declare type JiraCreateGlobalCustomFieldOptionInput = {
58599
+ childOptions?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
58600
+ value: Scalars['String']['input'];
58601
+ };
57752
58602
  export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
57753
58603
  __typename?: 'JiraCreateGlobalCustomFieldPayload';
57754
58604
  errors?: Maybe<Array<MutationError>>;
@@ -57880,6 +58730,32 @@ export declare type JiraCustomFieldOptionInput = {
57880
58730
  parentOptionId?: InputMaybe<Scalars['Long']['input']>;
57881
58731
  value: Scalars['String']['input'];
57882
58732
  };
58733
+ export declare type JiraCustomFieldType = {
58734
+ __typename?: 'JiraCustomFieldType';
58735
+ category?: Maybe<JiraCustomFieldTypeCategory>;
58736
+ description?: Maybe<Scalars['String']['output']>;
58737
+ hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
58738
+ hasOptions?: Maybe<Scalars['Boolean']['output']>;
58739
+ isManaged?: Maybe<Scalars['Boolean']['output']>;
58740
+ key?: Maybe<Scalars['String']['output']>;
58741
+ name?: Maybe<Scalars['String']['output']>;
58742
+ type?: Maybe<JiraConfigFieldType>;
58743
+ };
58744
+ export declare enum JiraCustomFieldTypeCategory {
58745
+ Advanced = "ADVANCED",
58746
+ Standard = "STANDARD"
58747
+ }
58748
+ export declare type JiraCustomFieldTypeConnection = {
58749
+ __typename?: 'JiraCustomFieldTypeConnection';
58750
+ edges?: Maybe<Array<JiraCustomFieldTypeEdge>>;
58751
+ nodes?: Maybe<Array<JiraCustomFieldType>>;
58752
+ pageInfo: PageInfo;
58753
+ };
58754
+ export declare type JiraCustomFieldTypeEdge = {
58755
+ __typename?: 'JiraCustomFieldTypeEdge';
58756
+ cursor: Scalars['String']['output'];
58757
+ node?: Maybe<JiraCustomFieldType>;
58758
+ };
57883
58759
  export declare type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Node & {
57884
58760
  __typename?: 'JiraCustomFieldUsageMetric';
57885
58761
  cleanupValue?: Maybe<Scalars['Long']['output']>;
@@ -58364,7 +59240,6 @@ export declare type JiraDevOpsMutation = {
58364
59240
  approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
58365
59241
  createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
58366
59242
  createAutodevPullRequest?: Maybe<JiraAutodevBasicPayload>;
58367
- createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
58368
59243
  deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
58369
59244
  deleteAutodevPlannedChange?: Maybe<JiraAutodevDeletedPayload>;
58370
59245
  deleteAutodevTask?: Maybe<JiraAutodevDeletedPayload>;
@@ -58412,10 +59287,6 @@ export declare type JiraDevOpsMutationCreateAutodevPullRequestArgs = {
58412
59287
  issueAri: Scalars['ID']['input'];
58413
59288
  jobId: Scalars['ID']['input'];
58414
59289
  };
58415
- export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
58416
- cloudId: Scalars['ID']['input'];
58417
- input: JiraAutofixInput;
58418
- };
58419
59290
  export declare type JiraDevOpsMutationDeleteAutodevJobArgs = {
58420
59291
  issueAri: Scalars['ID']['input'];
58421
59292
  jobId: Scalars['ID']['input'];
@@ -58532,7 +59403,6 @@ export declare type JiraDevOpsQuery = {
58532
59403
  autodevJobById?: Maybe<JiraAutodevJob>;
58533
59404
  autodevJobs?: Maybe<JiraAutodevJobConnection>;
58534
59405
  autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
58535
- autofixJobs?: Maybe<JiraAutofixJobConnection>;
58536
59406
  bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
58537
59407
  configState?: Maybe<JiraAppConfigState>;
58538
59408
  configStates?: Maybe<JiraAppConfigStateConnection>;
@@ -58551,9 +59421,6 @@ export declare type JiraDevOpsQueryAutodevJobsArgs = {
58551
59421
  export declare type JiraDevOpsQueryAutodevJobsByIssuesArgs = {
58552
59422
  issueAris: Array<Scalars['ID']['input']>;
58553
59423
  };
58554
- export declare type JiraDevOpsQueryAutofixJobsArgs = {
58555
- issueAri: Scalars['ID']['input'];
58556
- };
58557
59424
  export declare type JiraDevOpsQueryBitbucketIntegrationArgs = {
58558
59425
  cloudId: Scalars['ID']['input'];
58559
59426
  };
@@ -58623,6 +59490,14 @@ export declare type JiraDiscardUserBoardViewConfigPayload = Payload & {
58623
59490
  errors?: Maybe<Array<MutationError>>;
58624
59491
  success: Scalars['Boolean']['output'];
58625
59492
  };
59493
+ export declare type JiraDiscardUserIssueSearchConfigInput = {
59494
+ viewId: Scalars['ID']['input'];
59495
+ };
59496
+ export declare type JiraDiscardUserIssueSearchConfigPayload = {
59497
+ __typename?: 'JiraDiscardUserIssueSearchConfigPayload';
59498
+ errors?: Maybe<Array<MutationError>>;
59499
+ success: Scalars['Boolean']['output'];
59500
+ };
58626
59501
  export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
58627
59502
  isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
58628
59503
  };
@@ -59298,6 +60173,7 @@ export declare type JiraForgeExtension = {
59298
60173
  installationConfig?: Maybe<Array<JiraForgeInstallationConfigExtension>>;
59299
60174
  installationId: Scalars['String']['output'];
59300
60175
  license?: Maybe<JiraForgeExtensionLicense>;
60176
+ moduleId?: Maybe<Scalars['ID']['output']>;
59301
60177
  overrides?: Maybe<Scalars['JSON']['output']>;
59302
60178
  properties: Scalars['JSON']['output'];
59303
60179
  scopes: Array<Scalars['String']['output']>;
@@ -60080,6 +60956,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
60080
60956
  screenId?: Maybe<Scalars['Long']['output']>;
60081
60957
  searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
60082
60958
  securityLevelField?: Maybe<JiraSecurityLevelField>;
60959
+ shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
60083
60960
  smartSummary?: Maybe<JiraAdf>;
60084
60961
  startDateField?: Maybe<JiraDatePickerField>;
60085
60962
  startDateViewField?: Maybe<JiraIssueField>;
@@ -60647,10 +61524,13 @@ export declare type JiraIssueFieldConfig = Node & {
60647
61524
  __typename?: 'JiraIssueFieldConfig';
60648
61525
  associatedContexts?: Maybe<JiraContextConnection>;
60649
61526
  associatedContextsCount?: Maybe<Scalars['Int']['output']>;
61527
+ associatedContextsV2?: Maybe<JiraContextConnection>;
60650
61528
  associatedProjects?: Maybe<JiraProjectConnection>;
60651
61529
  associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
61530
+ associatedProjectsV2?: Maybe<JiraProjectConnection>;
60652
61531
  associatedScreens?: Maybe<JiraScreenConnection>;
60653
61532
  associatedScreensCount?: Maybe<Scalars['Int']['output']>;
61533
+ associatedScreensV2?: Maybe<JiraScreenConnection>;
60654
61534
  customId?: Maybe<Scalars['Int']['output']>;
60655
61535
  dateCreated?: Maybe<Scalars['DateTime']['output']>;
60656
61536
  dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
@@ -60678,11 +61558,25 @@ export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
60678
61558
  first?: InputMaybe<Scalars['Int']['input']>;
60679
61559
  last?: InputMaybe<Scalars['Int']['input']>;
60680
61560
  };
61561
+ export declare type JiraIssueFieldConfigAssociatedContextsV2Args = {
61562
+ after?: InputMaybe<Scalars['String']['input']>;
61563
+ before?: InputMaybe<Scalars['String']['input']>;
61564
+ first?: InputMaybe<Scalars['Int']['input']>;
61565
+ last?: InputMaybe<Scalars['Int']['input']>;
61566
+ };
60681
61567
  export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
60682
61568
  after?: InputMaybe<Scalars['Int']['input']>;
60683
61569
  before?: InputMaybe<Scalars['Int']['input']>;
60684
61570
  first?: InputMaybe<Scalars['Int']['input']>;
60685
61571
  last?: InputMaybe<Scalars['Int']['input']>;
61572
+ queryString?: InputMaybe<Scalars['String']['input']>;
61573
+ };
61574
+ export declare type JiraIssueFieldConfigAssociatedProjectsV2Args = {
61575
+ after?: InputMaybe<Scalars['String']['input']>;
61576
+ before?: InputMaybe<Scalars['String']['input']>;
61577
+ first?: InputMaybe<Scalars['Int']['input']>;
61578
+ last?: InputMaybe<Scalars['Int']['input']>;
61579
+ queryString?: InputMaybe<Scalars['String']['input']>;
60686
61580
  };
60687
61581
  export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
60688
61582
  after?: InputMaybe<Scalars['Int']['input']>;
@@ -60690,6 +61584,12 @@ export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
60690
61584
  first?: InputMaybe<Scalars['Int']['input']>;
60691
61585
  last?: InputMaybe<Scalars['Int']['input']>;
60692
61586
  };
61587
+ export declare type JiraIssueFieldConfigAssociatedScreensV2Args = {
61588
+ after?: InputMaybe<Scalars['String']['input']>;
61589
+ before?: InputMaybe<Scalars['String']['input']>;
61590
+ first?: InputMaybe<Scalars['Int']['input']>;
61591
+ last?: InputMaybe<Scalars['Int']['input']>;
61592
+ };
60693
61593
  export declare type JiraIssueFieldConfiguration = {
60694
61594
  fieldConfig?: Maybe<JiraFieldConfig>;
60695
61595
  };
@@ -61405,6 +62305,7 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
61405
62305
  filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
61406
62306
  first?: InputMaybe<Scalars['Int']['input']>;
61407
62307
  last?: InputMaybe<Scalars['Int']['input']>;
62308
+ scope?: InputMaybe<JiraIssueSearchScope>;
61408
62309
  };
61409
62310
  export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
61410
62311
  staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
@@ -61417,14 +62318,17 @@ export declare type JiraIssueSearchViewConfigSettings = {
61417
62318
  __typename?: 'JiraIssueSearchViewConfigSettings';
61418
62319
  canEnableGrouping?: Maybe<Scalars['Boolean']['output']>;
61419
62320
  canEnableHierarchy?: Maybe<Scalars['Boolean']['output']>;
62321
+ canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
61420
62322
  groupByConfig?: Maybe<JiraSpreadsheetGroupByConfig>;
61421
62323
  hideDone?: Maybe<Scalars['Boolean']['output']>;
61422
62324
  isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
61423
62325
  isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
62326
+ isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
61424
62327
  };
61425
62328
  export declare type JiraIssueSearchViewContextInput = {
61426
62329
  expandedGroups?: InputMaybe<JiraIssueExpandedGroups>;
61427
62330
  expandedParents?: InputMaybe<Array<JiraIssueExpandedParent>>;
62331
+ topLevelItemsLoaded?: InputMaybe<Scalars['Int']['input']>;
61428
62332
  };
61429
62333
  export declare type JiraIssueSearchViewContextMapping = {
61430
62334
  afterIssueId?: Maybe<Scalars['String']['output']>;
@@ -61482,6 +62386,7 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
61482
62386
  filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
61483
62387
  first?: InputMaybe<Scalars['Int']['input']>;
61484
62388
  last?: InputMaybe<Scalars['Int']['input']>;
62389
+ scope?: InputMaybe<JiraIssueSearchScope>;
61485
62390
  };
61486
62391
  export declare type JiraIssueSearchViewPayload = Payload & {
61487
62392
  __typename?: 'JiraIssueSearchViewPayload';
@@ -61763,6 +62668,15 @@ export declare type JiraJqlHistoryEdge = {
61763
62668
  __typename?: 'JiraJQLHistoryEdge';
61764
62669
  node?: Maybe<JiraJqlHistory>;
61765
62670
  };
62671
+ export declare type JiraJirtBoardScoreIssueEventPayload = {
62672
+ __typename?: 'JiraJirtBoardScoreIssueEventPayload';
62673
+ boardId?: Maybe<Scalars['String']['output']>;
62674
+ cloudId: Scalars['ID']['output'];
62675
+ issueId?: Maybe<Scalars['String']['output']>;
62676
+ projectId?: Maybe<Scalars['String']['output']>;
62677
+ resource: Scalars['String']['output'];
62678
+ type: Scalars['String']['output'];
62679
+ };
61766
62680
  export declare type JiraJirtEventPayload = {
61767
62681
  __typename?: 'JiraJirtEventPayload';
61768
62682
  actionerAccountId?: Maybe<Scalars['String']['output']>;
@@ -62006,10 +62920,12 @@ export declare type JiraJqlBuilderFieldsArgs = {
62006
62920
  };
62007
62921
  export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
62008
62922
  query?: InputMaybe<Scalars['String']['input']>;
62923
+ scope?: InputMaybe<JiraJqlScopeInput>;
62009
62924
  viewContext?: InputMaybe<JiraJqlViewContext>;
62010
62925
  };
62011
62926
  export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
62012
62927
  id: Scalars['ID']['input'];
62928
+ scope?: InputMaybe<JiraJqlScopeInput>;
62013
62929
  viewContext?: InputMaybe<JiraJqlViewContext>;
62014
62930
  };
62015
62931
  export declare type JiraJqlBuilderIssueTypesArgs = {
@@ -63174,7 +64090,6 @@ export declare type JiraMutation = {
63174
64090
  updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
63175
64091
  updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
63176
64092
  updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
63177
- updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
63178
64093
  updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
63179
64094
  updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
63180
64095
  updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
@@ -63675,10 +64590,6 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
63675
64590
  fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
63676
64591
  id: Scalars['ID']['input'];
63677
64592
  };
63678
- export declare type JiraMutationUpdateFieldToFieldConfigSchemeAssociationsArgs = {
63679
- cloudId: Scalars['ID']['input'];
63680
- input: JiraFieldToFieldConfigSchemeAssociationsInput;
63681
- };
63682
64593
  export declare type JiraMutationUpdateForgeObjectFieldArgs = {
63683
64594
  input: JiraUpdateForgeObjectFieldInput;
63684
64595
  };
@@ -64035,7 +64946,8 @@ export declare enum JiraNotificationCategoryType {
64035
64946
  IssueMentioned = "ISSUE_MENTIONED",
64036
64947
  IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
64037
64948
  IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES",
64038
- Recurring = "RECURRING"
64949
+ Recurring = "RECURRING",
64950
+ UserJoin = "USER_JOIN"
64039
64951
  }
64040
64952
  export declare type JiraNotificationChannel = {
64041
64953
  __typename?: 'JiraNotificationChannel';
@@ -64046,7 +64958,8 @@ export declare type JiraNotificationChannel = {
64046
64958
  export declare enum JiraNotificationChannelType {
64047
64959
  Email = "EMAIL",
64048
64960
  InProduct = "IN_PRODUCT",
64049
- MobilePush = "MOBILE_PUSH"
64961
+ MobilePush = "MOBILE_PUSH",
64962
+ Slack = "SLACK"
64050
64963
  }
64051
64964
  export declare type JiraNotificationGlobalPreference = {
64052
64965
  __typename?: 'JiraNotificationGlobalPreference';
@@ -64072,6 +64985,7 @@ export declare type JiraNotificationPreference = {
64072
64985
  id: Scalars['ID']['output'];
64073
64986
  inProductChannel?: Maybe<JiraNotificationChannel>;
64074
64987
  mobilePushChannel?: Maybe<JiraNotificationChannel>;
64988
+ slackChannel?: Maybe<JiraNotificationChannel>;
64075
64989
  type?: Maybe<JiraNotificationType>;
64076
64990
  };
64077
64991
  export declare type JiraNotificationPreferenceInput = {
@@ -64094,6 +65008,7 @@ export declare type JiraNotificationPreferences = {
64094
65008
  issueUpdated?: Maybe<JiraNotificationPreference>;
64095
65009
  mentionsCombined?: Maybe<JiraNotificationPreference>;
64096
65010
  miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
65011
+ projectInviterNotification?: Maybe<JiraNotificationPreference>;
64097
65012
  worklogCombined?: Maybe<JiraNotificationPreference>;
64098
65013
  };
64099
65014
  export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
@@ -64120,6 +65035,7 @@ export declare enum JiraNotificationType {
64120
65035
  IssueUpdated = "ISSUE_UPDATED",
64121
65036
  MentionsCombined = "MENTIONS_COMBINED",
64122
65037
  MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
65038
+ ProjectInviterNotification = "PROJECT_INVITER_NOTIFICATION",
64123
65039
  WorklogCombined = "WORKLOG_COMBINED"
64124
65040
  }
64125
65041
  export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
@@ -65180,6 +66096,7 @@ export declare type JiraProject = Node & {
65180
66096
  id: Scalars['ID']['output'];
65181
66097
  intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
65182
66098
  isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
66099
+ isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
65183
66100
  isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
65184
66101
  isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
65185
66102
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
@@ -65405,6 +66322,7 @@ export declare enum JiraProjectActionType {
65405
66322
  EditIssues = "EDIT_ISSUES",
65406
66323
  EditProjectConfig = "EDIT_PROJECT_CONFIG",
65407
66324
  LinkIssues = "LINK_ISSUES",
66325
+ ManageVersions = "MANAGE_VERSIONS",
65408
66326
  ScheduleIssues = "SCHEDULE_ISSUES",
65409
66327
  TransitionIssues = "TRANSITION_ISSUES",
65410
66328
  ViewIssues = "VIEW_ISSUES",
@@ -65914,7 +66832,6 @@ export declare type JiraProjectsSidebarMenu = {
65914
66832
  favourites?: Maybe<JiraProjectConnection>;
65915
66833
  hasMore?: Maybe<Scalars['Boolean']['output']>;
65916
66834
  id: Scalars['ID']['output'];
65917
- more?: Maybe<JiraProjectConnection>;
65918
66835
  moreFavourites?: Maybe<JiraProjectConnection>;
65919
66836
  moreRecents?: Maybe<JiraProjectConnection>;
65920
66837
  recentLimit?: Maybe<Scalars['Int']['output']>;
@@ -65926,10 +66843,6 @@ export declare type JiraProjectsSidebarMenuFavouritesArgs = {
65926
66843
  first?: InputMaybe<Scalars['Int']['input']>;
65927
66844
  last?: InputMaybe<Scalars['Int']['input']>;
65928
66845
  };
65929
- export declare type JiraProjectsSidebarMenuMoreArgs = {
65930
- after?: InputMaybe<Scalars['String']['input']>;
65931
- first?: InputMaybe<Scalars['Int']['input']>;
65932
- };
65933
66846
  export declare type JiraProjectsSidebarMenuMoreFavouritesArgs = {
65934
66847
  after?: InputMaybe<Scalars['String']['input']>;
65935
66848
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -65954,6 +66867,14 @@ export declare type JiraPublishBoardViewConfigPayload = Payload & {
65954
66867
  errors?: Maybe<Array<MutationError>>;
65955
66868
  success: Scalars['Boolean']['output'];
65956
66869
  };
66870
+ export declare type JiraPublishIssueSearchConfigInput = {
66871
+ viewId: Scalars['ID']['input'];
66872
+ };
66873
+ export declare type JiraPublishIssueSearchConfigPayload = Payload & {
66874
+ __typename?: 'JiraPublishIssueSearchConfigPayload';
66875
+ errors?: Maybe<Array<MutationError>>;
66876
+ success: Scalars['Boolean']['output'];
66877
+ };
65957
66878
  export declare type JiraPublishJourneyConfigurationInput = {
65958
66879
  etag?: InputMaybe<Scalars['String']['input']>;
65959
66880
  id: Scalars['ID']['input'];
@@ -65986,7 +66907,6 @@ export declare type JiraQuery = {
65986
66907
  applicationLinkByOauth2ClientId?: Maybe<JiraApplicationLink>;
65987
66908
  applicationLinksByTypeId?: Maybe<JiraApplicationLinkConnection>;
65988
66909
  applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
65989
- associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
65990
66910
  atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
65991
66911
  attachmentByAri?: Maybe<JiraPlatformAttachment>;
65992
66912
  attachmentByAriV2?: Maybe<JiraAttachmentByAriResult>;
@@ -65994,7 +66914,6 @@ export declare type JiraQuery = {
65994
66914
  attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
65995
66915
  attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
65996
66916
  attachmentStorageUsed?: Maybe<Scalars['Long']['output']>;
65997
- availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
65998
66917
  backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
65999
66918
  booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
66000
66919
  bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
@@ -66248,12 +67167,6 @@ export declare type JiraQueryApplicationPropertiesByKeyArgs = {
66248
67167
  cloudId: Scalars['ID']['input'];
66249
67168
  keys: Array<Scalars['String']['input']>;
66250
67169
  };
66251
- export declare type JiraQueryAssociatedFieldConfigSchemesArgs = {
66252
- after?: InputMaybe<Scalars['String']['input']>;
66253
- cloudId: Scalars['ID']['input'];
66254
- first?: InputMaybe<Scalars['Int']['input']>;
66255
- input: JiraAssociatedFieldConfigSchemesInput;
66256
- };
66257
67170
  export declare type JiraQueryAtlassianIntelligenceActionArgs = {
66258
67171
  atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
66259
67172
  cloudId: Scalars['ID']['input'];
@@ -66285,12 +67198,6 @@ export declare type JiraQueryAttachmentStorageUsedArgs = {
66285
67198
  applicationKey: JiraApplicationKey;
66286
67199
  cloudId: Scalars['ID']['input'];
66287
67200
  };
66288
- export declare type JiraQueryAvailableFieldConfigSchemesArgs = {
66289
- after?: InputMaybe<Scalars['String']['input']>;
66290
- cloudId: Scalars['ID']['input'];
66291
- first?: InputMaybe<Scalars['Int']['input']>;
66292
- input: JiraAvailableFieldConfigSchemesInput;
66293
- };
66294
67201
  export declare type JiraQueryBackgroundUploadTokenArgs = {
66295
67202
  cloudId: Scalars['ID']['input'];
66296
67203
  durationInSeconds: Scalars['Int']['input'];
@@ -67549,6 +68456,12 @@ export declare enum JiraReorderBoardViewColumnPosition {
67549
68456
  After = "AFTER",
67550
68457
  Before = "BEFORE"
67551
68458
  }
68459
+ export declare type JiraReorderSidebarMenuItemInput = {
68460
+ cloudId: Scalars['ID']['input'];
68461
+ menuItem: JiraSidebarMenuItemInput;
68462
+ relativeMenuItem?: InputMaybe<JiraSidebarMenuItemInput>;
68463
+ reorderMode: JiraSidebarMenuItemReorderOperation;
68464
+ };
67552
68465
  export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
67553
68466
  after?: InputMaybe<Scalars['String']['input']>;
67554
68467
  before?: InputMaybe<Scalars['String']['input']>;
@@ -69397,6 +70310,15 @@ export declare type JiraSetIsFavouritePayload = Payload & {
69397
70310
  favouriteValue?: Maybe<JiraFavouriteValue>;
69398
70311
  success: Scalars['Boolean']['output'];
69399
70312
  };
70313
+ export declare type JiraSetIssueSearchHideDoneItemsInput = {
70314
+ hideDoneItems: Scalars['Boolean']['input'];
70315
+ viewId: Scalars['ID']['input'];
70316
+ };
70317
+ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
70318
+ __typename?: 'JiraSetIssueSearchHideDoneItemsPayload';
70319
+ errors?: Maybe<Array<MutationError>>;
70320
+ success: Scalars['Boolean']['output'];
70321
+ };
69400
70322
  export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
69401
70323
  __typename?: 'JiraSetMostRecentlyViewedBoardPayload';
69402
70324
  board?: Maybe<JiraBoard>;
@@ -69557,6 +70479,15 @@ export declare enum JiraSidebarMenuDisplayMode {
69557
70479
  export declare type JiraSidebarMenuItemInput = {
69558
70480
  itemId: Scalars['ID']['input'];
69559
70481
  };
70482
+ export declare enum JiraSidebarMenuItemReorderOperation {
70483
+ After = "AFTER",
70484
+ Before = "BEFORE",
70485
+ MoveDown = "MOVE_DOWN",
70486
+ MoveToOrInsertAtBottom = "MOVE_TO_OR_INSERT_AT_BOTTOM",
70487
+ MoveToOrInsertAtTop = "MOVE_TO_OR_INSERT_AT_TOP",
70488
+ MoveUp = "MOVE_UP",
70489
+ Remove = "REMOVE"
70490
+ }
69560
70491
  export declare type JiraSimilarIssues = {
69561
70492
  __typename?: 'JiraSimilarIssues';
69562
70493
  featureEnabled: Scalars['Boolean']['output'];
@@ -70181,6 +71112,7 @@ export declare type JiraSubscription = {
70181
71112
  onIssueExported?: Maybe<JiraIssueExportEvent>;
70182
71113
  onIssueUpdatedByProject?: Maybe<JiraIssue>;
70183
71114
  onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
71115
+ onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
70184
71116
  onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
70185
71117
  onJwmFieldMutation?: Maybe<JiraJwmField>;
70186
71118
  onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
@@ -70252,6 +71184,12 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectNoEnrichmentArgs = {
70252
71184
  cloudId: Scalars['ID']['input'];
70253
71185
  projectId: Scalars['String']['input'];
70254
71186
  };
71187
+ export declare type JiraSubscriptionOnJirtBoardIssueSubscriptionArgs = {
71188
+ atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
71189
+ cloudId: Scalars['ID']['input'];
71190
+ events: Array<Scalars['String']['input']>;
71191
+ projectIds: Array<Scalars['String']['input']>;
71192
+ };
70255
71193
  export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
70256
71194
  atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
70257
71195
  cloudId: Scalars['ID']['input'];
@@ -71292,6 +72230,7 @@ export declare type JiraUserPreferences = {
71292
72230
  isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
71293
72231
  isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
71294
72232
  isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
72233
+ isIssueViewProactiveCommentSummariesFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
71295
72234
  isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
71296
72235
  isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
71297
72236
  isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -73450,7 +74389,7 @@ export declare type KnowledgeBaseArticleSearchInput = {
73450
74389
  sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
73451
74390
  sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
73452
74391
  };
73453
- export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | QueryError;
74392
+ export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | KnowledgeBaseThirdPartyConnection | QueryError;
73454
74393
  export declare enum KnowledgeBaseArticleSearchSortByKey {
73455
74394
  LastModified = "LAST_MODIFIED",
73456
74395
  Title = "TITLE"
@@ -73487,6 +74426,12 @@ export declare type KnowledgeBaseLinkResponse = {
73487
74426
  mutationError?: Maybe<MutationError>;
73488
74427
  success: Scalars['Boolean']['output'];
73489
74428
  };
74429
+ export declare type KnowledgeBaseLinkedSourceTypes = {
74430
+ __typename?: 'KnowledgeBaseLinkedSourceTypes';
74431
+ linkedSourceTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
74432
+ totalCount?: Maybe<Scalars['Int']['output']>;
74433
+ };
74434
+ export declare type KnowledgeBaseLinkedSourceTypesResponse = KnowledgeBaseLinkedSourceTypes | QueryError;
73490
74435
  export declare type KnowledgeBaseMutationApi = {
73491
74436
  __typename?: 'KnowledgeBaseMutationApi';
73492
74437
  linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
@@ -73574,6 +74519,23 @@ export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
73574
74519
  spaceAri: Scalars['ID']['input'];
73575
74520
  viewPermission?: InputMaybe<KnowledgeBaseSpacePermissionType>;
73576
74521
  };
74522
+ export declare type KnowledgeBaseThirdPartyArticle = {
74523
+ __typename?: 'KnowledgeBaseThirdPartyArticle';
74524
+ id: Scalars['ID']['output'];
74525
+ lastModified?: Maybe<Scalars['String']['output']>;
74526
+ title?: Maybe<Scalars['String']['output']>;
74527
+ url?: Maybe<Scalars['String']['output']>;
74528
+ };
74529
+ export declare type KnowledgeBaseThirdPartyArticleEdge = {
74530
+ __typename?: 'KnowledgeBaseThirdPartyArticleEdge';
74531
+ cursor?: Maybe<Scalars['String']['output']>;
74532
+ node?: Maybe<KnowledgeBaseThirdPartyArticle>;
74533
+ };
74534
+ export declare type KnowledgeBaseThirdPartyConnection = {
74535
+ __typename?: 'KnowledgeBaseThirdPartyConnection';
74536
+ edges?: Maybe<Array<KnowledgeBaseThirdPartyArticleEdge>>;
74537
+ nodes?: Maybe<Array<Maybe<KnowledgeBaseThirdPartyArticle>>>;
74538
+ };
73577
74539
  export declare type KnowledgeBaseUnlinkResponse = {
73578
74540
  __typename?: 'KnowledgeBaseUnlinkResponse';
73579
74541
  mutationError?: Maybe<MutationError>;
@@ -75179,10 +76141,12 @@ export declare type MarketplaceConsoleAppSoftwareVersionListing = {
75179
76141
  };
75180
76142
  export declare type MarketplaceConsoleAppSoftwareVersionListingLinks = {
75181
76143
  __typename?: 'MarketplaceConsoleAppSoftwareVersionListingLinks';
76144
+ bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
75182
76145
  documentation?: Maybe<Scalars['String']['output']>;
75183
76146
  eula?: Maybe<Scalars['String']['output']>;
75184
76147
  learnMore?: Maybe<Scalars['String']['output']>;
75185
76148
  legacyVendorLinks?: Maybe<MarketplaceConsoleLegacyVendorLinks>;
76149
+ partnerSpecificTerms?: Maybe<Scalars['String']['output']>;
75186
76150
  purchase?: Maybe<Scalars['String']['output']>;
75187
76151
  };
75188
76152
  export declare enum MarketplaceConsoleAppSoftwareVersionState {
@@ -76487,6 +77451,29 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
76487
77451
  description: Scalars['String']['output'];
76488
77452
  title: Scalars['String']['output'];
76489
77453
  };
77454
+ export declare type MarketplaceStoreCreateOrUpdateReviewInput = {
77455
+ appKey: Scalars['String']['input'];
77456
+ hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
77457
+ review?: InputMaybe<Scalars['String']['input']>;
77458
+ stars: Scalars['Int']['input'];
77459
+ status?: InputMaybe<Scalars['String']['input']>;
77460
+ userHasComplianceConsent?: InputMaybe<Scalars['Boolean']['input']>;
77461
+ };
77462
+ export declare type MarketplaceStoreCreateOrUpdateReviewResponse = {
77463
+ __typename?: 'MarketplaceStoreCreateOrUpdateReviewResponse';
77464
+ id: Scalars['ID']['output'];
77465
+ status?: Maybe<Scalars['String']['output']>;
77466
+ };
77467
+ export declare type MarketplaceStoreCreateOrUpdateReviewResponseInput = {
77468
+ appKey: Scalars['String']['input'];
77469
+ reviewId: Scalars['ID']['input'];
77470
+ text: Scalars['String']['input'];
77471
+ };
77472
+ export declare type MarketplaceStoreCreateOrUpdateReviewResponseResponse = {
77473
+ __typename?: 'MarketplaceStoreCreateOrUpdateReviewResponseResponse';
77474
+ id: Scalars['ID']['output'];
77475
+ status?: Maybe<Scalars['String']['output']>;
77476
+ };
76490
77477
  export declare type MarketplaceStoreCurrentUserResponse = MarketplaceStoreAnonymousUser | MarketplaceStoreLoggedInUser;
76491
77478
  export declare type MarketplaceStoreCurrentUserReviewResponse = {
76492
77479
  __typename?: 'MarketplaceStoreCurrentUserReviewResponse';
@@ -76734,11 +77721,31 @@ export declare type MarketplaceStoreMultiInstanceEntitlementsForUserResponse = {
76734
77721
  };
76735
77722
  export declare type MarketplaceStoreMutationApi = {
76736
77723
  __typename?: 'MarketplaceStoreMutationApi';
77724
+ createOrUpdateReview: MarketplaceStoreCreateOrUpdateReviewResponse;
77725
+ createOrUpdateReviewResponse: MarketplaceStoreCreateOrUpdateReviewResponseResponse;
76737
77726
  installApp: MarketplaceStoreInstallAppResponse;
77727
+ updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
77728
+ updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
77729
+ updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
77730
+ };
77731
+ export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
77732
+ input: MarketplaceStoreCreateOrUpdateReviewInput;
77733
+ };
77734
+ export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewResponseArgs = {
77735
+ input: MarketplaceStoreCreateOrUpdateReviewResponseInput;
76738
77736
  };
76739
77737
  export declare type MarketplaceStoreMutationApiInstallAppArgs = {
76740
77738
  input: MarketplaceStoreInstallAppInput;
76741
77739
  };
77740
+ export declare type MarketplaceStoreMutationApiUpdateReviewDownvoteArgs = {
77741
+ input: MarketplaceStoreUpdateReviewVoteInput;
77742
+ };
77743
+ export declare type MarketplaceStoreMutationApiUpdateReviewFlagArgs = {
77744
+ input: MarketplaceStoreUpdateReviewFlagInput;
77745
+ };
77746
+ export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
77747
+ input: MarketplaceStoreUpdateReviewVoteInput;
77748
+ };
76742
77749
  export declare type MarketplaceStoreOfferingDetails = {
76743
77750
  __typename?: 'MarketplaceStoreOfferingDetails';
76744
77751
  id: Scalars['ID']['output'];
@@ -76903,6 +77910,7 @@ export declare type MarketplaceStoreProductListingScreenshot = {
76903
77910
  };
76904
77911
  export declare type MarketplaceStoreQueryApi = {
76905
77912
  __typename?: 'MarketplaceStoreQueryApi';
77913
+ appReviewById?: Maybe<MarketplaceStoreReviewByIdResponse>;
76906
77914
  appReviewsByAppId: MarketplaceStoreReviewsResponse;
76907
77915
  appReviewsByAppKey: MarketplaceStoreReviewsResponse;
76908
77916
  billingSystem: MarketplaceStoreBillingSystemResponse;
@@ -76925,6 +77933,10 @@ export declare type MarketplaceStoreQueryApi = {
76925
77933
  orgId: MarketplaceStoreOrgIdResponse;
76926
77934
  partner: MarketplaceStorePartnerResponse;
76927
77935
  };
77936
+ export declare type MarketplaceStoreQueryApiAppReviewByIdArgs = {
77937
+ appKey: Scalars['String']['input'];
77938
+ reviewId: Scalars['ID']['input'];
77939
+ };
76928
77940
  export declare type MarketplaceStoreQueryApiAppReviewsByAppIdArgs = {
76929
77941
  appId: Scalars['ID']['input'];
76930
77942
  filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
@@ -76996,6 +78008,17 @@ export declare type MarketplaceStoreReviewAuthor = {
76996
78008
  profileImage?: Maybe<Scalars['URL']['output']>;
76997
78009
  profileLink?: Maybe<Scalars['URL']['output']>;
76998
78010
  };
78011
+ export declare type MarketplaceStoreReviewByIdResponse = {
78012
+ __typename?: 'MarketplaceStoreReviewByIdResponse';
78013
+ date?: Maybe<Scalars['String']['output']>;
78014
+ helpfulVotes?: Maybe<Scalars['Int']['output']>;
78015
+ hosting?: Maybe<MarketplaceStoreAtlassianProductHostingType>;
78016
+ id: Scalars['ID']['output'];
78017
+ response?: Maybe<Scalars['String']['output']>;
78018
+ review?: Maybe<Scalars['String']['output']>;
78019
+ stars: Scalars['Int']['output'];
78020
+ totalVotes?: Maybe<Scalars['Int']['output']>;
78021
+ };
76999
78022
  export declare type MarketplaceStoreReviewFilterInput = {
77000
78023
  hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
77001
78024
  sort?: InputMaybe<MarketplaceStoreReviewsSorting>;
@@ -77023,6 +78046,26 @@ export declare enum MarketplaceStoreReviewsSorting {
77023
78046
  Helpful = "HELPFUL",
77024
78047
  Recent = "RECENT"
77025
78048
  }
78049
+ export declare type MarketplaceStoreUpdateReviewFlagInput = {
78050
+ appKey: Scalars['String']['input'];
78051
+ reviewId: Scalars['ID']['input'];
78052
+ state: Scalars['Boolean']['input'];
78053
+ };
78054
+ export declare type MarketplaceStoreUpdateReviewFlagResponse = {
78055
+ __typename?: 'MarketplaceStoreUpdateReviewFlagResponse';
78056
+ id: Scalars['ID']['output'];
78057
+ status?: Maybe<Scalars['String']['output']>;
78058
+ };
78059
+ export declare type MarketplaceStoreUpdateReviewVoteInput = {
78060
+ appKey: Scalars['String']['input'];
78061
+ reviewId: Scalars['ID']['input'];
78062
+ state: Scalars['Boolean']['input'];
78063
+ };
78064
+ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
78065
+ __typename?: 'MarketplaceStoreUpdateReviewVoteResponse';
78066
+ id: Scalars['ID']['output'];
78067
+ status?: Maybe<Scalars['String']['output']>;
78068
+ };
77026
78069
  export declare type MarketplaceSupportedAtlassianProduct = {
77027
78070
  __typename?: 'MarketplaceSupportedAtlassianProduct';
77028
78071
  hostingOptions: Array<AtlassianProductHostingType>;
@@ -77306,6 +78349,22 @@ export declare type MercuryChangeSort = {
77306
78349
  export declare enum MercuryChangeSortField {
77307
78350
  Type = "TYPE"
77308
78351
  }
78352
+ export declare type MercuryChangeSummaries = {
78353
+ __typename?: 'MercuryChangeSummaries';
78354
+ summaries?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
78355
+ };
78356
+ export declare type MercuryChangeSummary = {
78357
+ __typename?: 'MercuryChangeSummary';
78358
+ focusAreaId: Scalars['ID']['output'];
78359
+ fundChangeSummary?: Maybe<MercuryFundChangeSummary>;
78360
+ hydrationContextId: Scalars['ID']['output'];
78361
+ positionChangeSummary?: Maybe<MercuryPositionChangeSummary>;
78362
+ strategicEventId: Scalars['ID']['output'];
78363
+ };
78364
+ export declare type MercuryChangeSummaryInput = {
78365
+ focusAreaId: Scalars['ID']['input'];
78366
+ hydrationContextId: Scalars['ID']['input'];
78367
+ };
77309
78368
  export declare enum MercuryChangeType {
77310
78369
  ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
77311
78370
  ChangeParentFocusArea = "CHANGE_PARENT_FOCUS_AREA",
@@ -77626,6 +78685,7 @@ export declare type MercuryFocusArea = Node & {
77626
78685
  allocations?: Maybe<MercuryFocusAreaAllocations>;
77627
78686
  archived: Scalars['Boolean']['output'];
77628
78687
  ari: Scalars['String']['output'];
78688
+ changeSummary?: Maybe<MercuryChangeSummary>;
77629
78689
  createdDate: Scalars['String']['output'];
77630
78690
  externalId?: Maybe<Scalars['String']['output']>;
77631
78691
  focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
@@ -77906,6 +78966,7 @@ export declare enum MercuryFocusAreaTeamAllocationAggregationSortField {
77906
78966
  }
77907
78967
  export declare type MercuryFocusAreaType = {
77908
78968
  __typename?: 'MercuryFocusAreaType';
78969
+ ari: Scalars['String']['output'];
77909
78970
  hierarchyLevel: Scalars['Int']['output'];
77910
78971
  id: Scalars['ID']['output'];
77911
78972
  name: Scalars['String']['output'];
@@ -77915,6 +78976,16 @@ export declare type MercuryForYouFocusAreaActivityHistory = {
77915
78976
  activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
77916
78977
  focusAreas?: Maybe<MercuryFocusAreaConnection>;
77917
78978
  };
78979
+ export declare type MercuryFundChangeSummary = {
78980
+ __typename?: 'MercuryFundChangeSummary';
78981
+ amount?: Maybe<MercuryFundChangeSummaryFields>;
78982
+ amountIncludingSubFocusAreas?: Maybe<MercuryFundChangeSummaryFields>;
78983
+ };
78984
+ export declare type MercuryFundChangeSummaryFields = {
78985
+ __typename?: 'MercuryFundChangeSummaryFields';
78986
+ deltaByStatus?: Maybe<Array<Maybe<MercuryFundingDeltaByStatus>>>;
78987
+ deltaTotal?: Maybe<Scalars['BigDecimal']['output']>;
78988
+ };
77918
78989
  export declare type MercuryFunding = {
77919
78990
  __typename?: 'MercuryFunding';
77920
78991
  aggregation?: Maybe<MercuryFundingAggregation>;
@@ -77930,6 +79001,11 @@ export declare type MercuryFundingAssigned = {
77930
79001
  budget?: Maybe<Scalars['BigDecimal']['output']>;
77931
79002
  spend?: Maybe<Scalars['BigDecimal']['output']>;
77932
79003
  };
79004
+ export declare type MercuryFundingDeltaByStatus = {
79005
+ __typename?: 'MercuryFundingDeltaByStatus';
79006
+ amountDelta?: Maybe<Scalars['BigDecimal']['output']>;
79007
+ status?: Maybe<MercuryChangeProposalStatus>;
79008
+ };
77933
79009
  export declare type MercuryGoalAggregatedStatusCount = {
77934
79010
  __typename?: 'MercuryGoalAggregatedStatusCount';
77935
79011
  krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
@@ -78295,6 +79371,21 @@ export declare type MercuryPositionAllocationChangeInput = {
78295
79371
  sourceFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
78296
79372
  targetFocusAreaId: Scalars['ID']['input'];
78297
79373
  };
79374
+ export declare type MercuryPositionChangeSummary = {
79375
+ __typename?: 'MercuryPositionChangeSummary';
79376
+ count?: Maybe<MercuryPositionChangeSummaryFields>;
79377
+ countIncludingSubFocusAreas?: Maybe<MercuryPositionChangeSummaryFields>;
79378
+ };
79379
+ export declare type MercuryPositionChangeSummaryFields = {
79380
+ __typename?: 'MercuryPositionChangeSummaryFields';
79381
+ deltaByStatus?: Maybe<Array<Maybe<MercuryPositionDeltaByStatus>>>;
79382
+ deltaTotal?: Maybe<Scalars['Int']['output']>;
79383
+ };
79384
+ export declare type MercuryPositionDeltaByStatus = {
79385
+ __typename?: 'MercuryPositionDeltaByStatus';
79386
+ positionDelta?: Maybe<Scalars['Int']['output']>;
79387
+ status?: Maybe<MercuryChangeProposalStatus>;
79388
+ };
78298
79389
  export declare type MercuryPreference = Node & {
78299
79390
  __typename?: 'MercuryPreference';
78300
79391
  id: Scalars['ID']['output'];
@@ -78525,6 +79616,7 @@ export declare type MercuryQueryApi = {
78525
79616
  aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
78526
79617
  aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
78527
79618
  comments?: Maybe<MercuryCommentConnection>;
79619
+ commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
78528
79620
  focusArea?: Maybe<MercuryFocusArea>;
78529
79621
  focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
78530
79622
  focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
@@ -78535,6 +79627,7 @@ export declare type MercuryQueryApi = {
78535
79627
  focusAreas?: Maybe<MercuryFocusAreaConnection>;
78536
79628
  focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
78537
79629
  focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
79630
+ focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
78538
79631
  forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
78539
79632
  goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
78540
79633
  mediaReadToken?: Maybe<MercuryMediaToken>;
@@ -78564,6 +79657,9 @@ export declare type MercuryQueryApiCommentsArgs = {
78564
79657
  entityType: MercuryEntityType;
78565
79658
  first?: InputMaybe<Scalars['Int']['input']>;
78566
79659
  };
79660
+ export declare type MercuryQueryApiCommentsByArisArgs = {
79661
+ ids: Array<Scalars['ID']['input']>;
79662
+ };
78567
79663
  export declare type MercuryQueryApiFocusAreaArgs = {
78568
79664
  cloudId: Scalars['ID']['input'];
78569
79665
  id: Scalars['ID']['input'];
@@ -78610,6 +79706,12 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
78610
79706
  cloudId: Scalars['ID']['input'];
78611
79707
  ids: Array<Scalars['String']['input']>;
78612
79708
  };
79709
+ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
79710
+ after?: InputMaybe<Scalars['String']['input']>;
79711
+ first?: InputMaybe<Scalars['Int']['input']>;
79712
+ hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
79713
+ sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
79714
+ };
78613
79715
  export declare type MercuryQueryApiForYouFocusAreaActivityHistoryArgs = {
78614
79716
  after?: InputMaybe<Scalars['String']['input']>;
78615
79717
  cloudId?: InputMaybe<Scalars['ID']['input']>;
@@ -78753,6 +79855,7 @@ export declare enum MercuryStatusColor {
78753
79855
  }
78754
79856
  export declare type MercuryStrategicEvent = Node & {
78755
79857
  __typename?: 'MercuryStrategicEvent';
79858
+ budget?: Maybe<MercuryStrategicEventBudget>;
78756
79859
  comments?: Maybe<MercuryStrategicEventCommentConnection>;
78757
79860
  createdDate: Scalars['String']['output'];
78758
79861
  description?: Maybe<Scalars['String']['output']>;
@@ -78767,6 +79870,10 @@ export declare type MercuryStrategicEventCommentsArgs = {
78767
79870
  after?: InputMaybe<Scalars['String']['input']>;
78768
79871
  first?: InputMaybe<Scalars['Int']['input']>;
78769
79872
  };
79873
+ export declare type MercuryStrategicEventBudget = {
79874
+ __typename?: 'MercuryStrategicEventBudget';
79875
+ value?: Maybe<Scalars['BigDecimal']['output']>;
79876
+ };
78770
79877
  export declare type MercuryStrategicEventComment = {
78771
79878
  __typename?: 'MercuryStrategicEventComment';
78772
79879
  content: Scalars['String']['output'];
@@ -78846,6 +79953,7 @@ export declare type MercuryStrategicEventsMutationApi = {
78846
79953
  updateMovePositionsChange: MercuryUpdateChangePayload;
78847
79954
  updateRequestFundsChange: MercuryUpdateChangePayload;
78848
79955
  updateRequestPositionsChange: MercuryUpdateChangePayload;
79956
+ updateStrategicEventBudget?: Maybe<MercuryUpdateStrategicEventPayload>;
78849
79957
  updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
78850
79958
  updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
78851
79959
  updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
@@ -78918,6 +80026,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateRequestFundsChangeArg
78918
80026
  export declare type MercuryStrategicEventsMutationApiUpdateRequestPositionsChangeArgs = {
78919
80027
  input: MercuryUpdateRequestPositionsChangeInput;
78920
80028
  };
80029
+ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventBudgetArgs = {
80030
+ input: MercuryUpdateStrategicEventBudgetInput;
80031
+ };
78921
80032
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
78922
80033
  input: MercuryUpdateStrategicEventCommentInput;
78923
80034
  };
@@ -78939,6 +80050,9 @@ export declare type MercuryStrategicEventsQueryApi = {
78939
80050
  changeProposalStatuses: Array<MercuryChangeProposalStatus>;
78940
80051
  changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
78941
80052
  changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
80053
+ changeSummariesReport?: Maybe<MercuryChangeSummaries>;
80054
+ changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
80055
+ changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
78942
80056
  changes?: Maybe<Array<Maybe<MercuryChange>>>;
78943
80057
  changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
78944
80058
  changesSearch?: Maybe<MercuryChangeConnection>;
@@ -78963,6 +80077,16 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
78963
80077
  q?: InputMaybe<Scalars['String']['input']>;
78964
80078
  sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
78965
80079
  };
80080
+ export declare type MercuryStrategicEventsQueryApiChangeSummariesReportArgs = {
80081
+ strategicEventId?: InputMaybe<Scalars['ID']['input']>;
80082
+ };
80083
+ export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArgs = {
80084
+ focusAreaIds: Array<Scalars['ID']['input']>;
80085
+ strategicEventId?: InputMaybe<Scalars['ID']['input']>;
80086
+ };
80087
+ export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
80088
+ inputs: Array<MercuryChangeSummaryInput>;
80089
+ };
78966
80090
  export declare type MercuryStrategicEventsQueryApiChangesArgs = {
78967
80091
  ids: Array<Scalars['ID']['input']>;
78968
80092
  };
@@ -79237,6 +80361,10 @@ export declare type MercuryUpdateRequestPositionsChangeInput = {
79237
80361
  positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
79238
80362
  targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
79239
80363
  };
80364
+ export declare type MercuryUpdateStrategicEventBudgetInput = {
80365
+ budget?: InputMaybe<Scalars['BigDecimal']['input']>;
80366
+ id: Scalars['ID']['input'];
80367
+ };
79240
80368
  export declare type MercuryUpdateStrategicEventCommentInput = {
79241
80369
  cloudId?: InputMaybe<Scalars['ID']['input']>;
79242
80370
  content: Scalars['String']['input'];
@@ -79556,6 +80684,9 @@ export declare type Mutation = {
79556
80684
  bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
79557
80685
  bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
79558
80686
  bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
80687
+ channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
80688
+ channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
80689
+ channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
79559
80690
  clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
79560
80691
  compass?: Maybe<CompassCatalogMutationApi>;
79561
80692
  completeSprint?: Maybe<CompleteSprintResponse>;
@@ -79851,6 +80982,7 @@ export declare type Mutation = {
79851
80982
  devai_flowSessionCreate?: Maybe<DevAiFlowSession>;
79852
80983
  devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
79853
80984
  devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
80985
+ devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
79854
80986
  disableExperiment?: Maybe<TapExperiment>;
79855
80987
  disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
79856
80988
  disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
@@ -79889,8 +81021,11 @@ export declare type Mutation = {
79889
81021
  jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
79890
81022
  jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
79891
81023
  jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
81024
+ jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
79892
81025
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
81026
+ jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
79893
81027
  jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
81028
+ jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
79894
81029
  jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
79895
81030
  jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
79896
81031
  jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
@@ -79900,8 +81035,10 @@ export declare type Mutation = {
79900
81035
  jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
79901
81036
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
79902
81037
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
81038
+ jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
79903
81039
  jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
79904
81040
  jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
81041
+ jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
79905
81042
  jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
79906
81043
  jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
79907
81044
  jsmChat?: Maybe<JsmChatMutation>;
@@ -79981,6 +81118,7 @@ export declare type Mutation = {
79981
81118
  restoreSpace?: Maybe<RestoreSpacePayload>;
79982
81119
  revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
79983
81120
  roadmaps?: Maybe<RoadmapsMutation>;
81121
+ runImport?: Maybe<RunImportPayload>;
79984
81122
  setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
79985
81123
  setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
79986
81124
  setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
@@ -80108,6 +81246,7 @@ export declare type MutationAddDefaultExCoSpacePermissionsArgs = {
80108
81246
  spacePermissionsInput: AddDefaultExCoSpacePermissionsInput;
80109
81247
  };
80110
81248
  export declare type MutationAddLabelsArgs = {
81249
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
80111
81250
  input: AddLabelsInput;
80112
81251
  };
80113
81252
  export declare type MutationAddPublicLinkPermissionsArgs = {
@@ -80190,6 +81329,21 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
80190
81329
  input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
80191
81330
  spaceKey: Scalars['String']['input'];
80192
81331
  };
81332
+ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
81333
+ aaId?: InputMaybe<Scalars['String']['input']>;
81334
+ contactId?: InputMaybe<Scalars['String']['input']>;
81335
+ instanceId?: InputMaybe<Scalars['String']['input']>;
81336
+ };
81337
+ export declare type MutationChannelPlatform_CreateQueuesArgs = {
81338
+ description?: InputMaybe<Scalars['String']['input']>;
81339
+ hoursOfOperationId?: InputMaybe<Scalars['String']['input']>;
81340
+ instanceId?: InputMaybe<Scalars['String']['input']>;
81341
+ name?: InputMaybe<Scalars['String']['input']>;
81342
+ };
81343
+ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
81344
+ id?: InputMaybe<Scalars['ID']['input']>;
81345
+ instanceId?: InputMaybe<Scalars['String']['input']>;
81346
+ };
80193
81347
  export declare type MutationClearRestrictionsForFreeArgs = {
80194
81348
  contentId: Scalars['ID']['input'];
80195
81349
  };
@@ -81074,6 +82228,7 @@ export declare type MutationDeleteInlineCommentArgs = {
81074
82228
  input: DeleteInlineCommentInput;
81075
82229
  };
81076
82230
  export declare type MutationDeleteLabelArgs = {
82231
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
81077
82232
  input: DeleteLabelInput;
81078
82233
  };
81079
82234
  export declare type MutationDeletePagesArgs = {
@@ -81158,6 +82313,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
81158
82313
  agentId: Scalars['ID']['input'];
81159
82314
  issueIds: Array<Scalars['ID']['input']>;
81160
82315
  };
82316
+ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
82317
+ issueAri: Scalars['ID']['input'];
82318
+ jobId: Scalars['ID']['input'];
82319
+ };
81161
82320
  export declare type MutationDisableExperimentArgs = {
81162
82321
  experimentKey: Scalars['String']['input'];
81163
82322
  };
@@ -81241,12 +82400,21 @@ export declare type MutationJira_DeleteCustomBackgroundArgs = {
81241
82400
  export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
81242
82401
  input: JiraDiscardUserBoardViewConfigInput;
81243
82402
  };
82403
+ export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
82404
+ input: JiraDiscardUserIssueSearchConfigInput;
82405
+ };
81244
82406
  export declare type MutationJira_PublishBoardViewConfigArgs = {
81245
82407
  input: JiraPublishBoardViewConfigInput;
81246
82408
  };
82409
+ export declare type MutationJira_PublishIssueSearchConfigArgs = {
82410
+ input: JiraPublishIssueSearchConfigInput;
82411
+ };
81247
82412
  export declare type MutationJira_ReorderBoardViewColumnArgs = {
81248
82413
  input: JiraReorderBoardViewColumnInput;
81249
82414
  };
82415
+ export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
82416
+ input: JiraReorderSidebarMenuItemInput;
82417
+ };
81250
82418
  export declare type MutationJira_SetBoardIssueCardCoverArgs = {
81251
82419
  input: JiraSetBoardIssueCardCoverInput;
81252
82420
  };
@@ -81274,12 +82442,19 @@ export declare type MutationJira_SetBoardViewGroupByArgs = {
81274
82442
  export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
81275
82443
  input: JiraSetBoardViewWorkflowSelectedInput;
81276
82444
  };
82445
+ export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
82446
+ input: JiraSetIssueSearchHideDoneItemsInput;
82447
+ };
81277
82448
  export declare type MutationJira_SetViewFilterArgs = {
81278
82449
  input: JiraSetViewFilterInput;
81279
82450
  };
81280
82451
  export declare type MutationJira_SetViewGroupByArgs = {
81281
82452
  input: JiraSetViewGroupByInput;
81282
82453
  };
82454
+ export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
82455
+ cloudId: Scalars['ID']['input'];
82456
+ input: JiraFieldToFieldConfigSchemeAssociationsInput;
82457
+ };
81283
82458
  export declare type MutationJira_UpdateProjectBackgroundArgs = {
81284
82459
  input: JiraUpdateBackgroundInput;
81285
82460
  };
@@ -81496,6 +82671,9 @@ export declare type MutationRestoreSpaceArgs = {
81496
82671
  export declare type MutationRevertToLegacyEditorArgs = {
81497
82672
  contentId: Scalars['ID']['input'];
81498
82673
  };
82674
+ export declare type MutationRunImportArgs = {
82675
+ input: RunImportInput;
82676
+ };
81499
82677
  export declare type MutationSetAppEnvironmentVariableArgs = {
81500
82678
  input: SetAppEnvironmentVariableInput;
81501
82679
  };
@@ -83969,7 +85147,6 @@ export declare type PolarisValueRule = {
83969
85147
  };
83970
85148
  export declare type PolarisView = {
83971
85149
  __typename?: 'PolarisView';
83972
- collabServiceDelegation?: Maybe<PolarisDelegationToken>;
83973
85150
  comments?: Maybe<Array<PolarisComment>>;
83974
85151
  containsArchived: Scalars['Boolean']['output'];
83975
85152
  createdAt?: Maybe<Scalars['String']['output']>;
@@ -84509,6 +85686,11 @@ export declare type Query = {
84509
85686
  catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
84510
85687
  catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
84511
85688
  ccp?: Maybe<CcpQueryApi>;
85689
+ channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
85690
+ channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
85691
+ channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
85692
+ channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
85693
+ channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
84512
85694
  channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
84513
85695
  classificationLevel?: Maybe<ContentDataClassificationLevel>;
84514
85696
  classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
@@ -84759,7 +85941,6 @@ export declare type Query = {
84759
85941
  confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
84760
85942
  confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
84761
85943
  confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
84762
- confluence_spacesForSimpleIds?: Maybe<Array<Maybe<Space>>>;
84763
85944
  confluence_storage?: Maybe<ConfluenceStorage>;
84764
85945
  confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
84765
85946
  confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
@@ -84844,6 +86025,7 @@ export declare type Query = {
84844
86025
  devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
84845
86026
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
84846
86027
  devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
86028
+ devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
84847
86029
  devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
84848
86030
  devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
84849
86031
  devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
@@ -84933,8 +86115,6 @@ export declare type Query = {
84933
86115
  internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
84934
86116
  ipmFlag?: Maybe<ContentPlatformIpmFlag>;
84935
86117
  ipmFlags: ContentPlatformIpmFlagSearchConnection;
84936
- ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
84937
- ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
84938
86118
  ipmInlineDialog?: Maybe<ContentPlatformIpmInlineDialog>;
84939
86119
  ipmInlineDialogs: ContentPlatformIpmInlineDialogSearchConnection;
84940
86120
  ipmMultiStep?: Maybe<ContentPlatformIpmMultiStep>;
@@ -84951,8 +86131,11 @@ export declare type Query = {
84951
86131
  jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
84952
86132
  jiraReleases?: Maybe<JiraReleases>;
84953
86133
  jiraServers?: Maybe<JiraServersResult>;
86134
+ jira_associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
86135
+ jira_availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
84954
86136
  jira_boardView?: Maybe<JiraBoardView>;
84955
86137
  jira_categoryField?: Maybe<JiraJqlField>;
86138
+ jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
84956
86139
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
84957
86140
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
84958
86141
  jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
@@ -84962,6 +86145,7 @@ export declare type Query = {
84962
86145
  jsw?: Maybe<JswQuery>;
84963
86146
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
84964
86147
  knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
86148
+ knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
84965
86149
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
84966
86150
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
84967
86151
  labelSearch?: Maybe<LabelSearchResults>;
@@ -85124,6 +86308,9 @@ export declare type Query = {
85124
86308
  spaceWatchers?: Maybe<PaginatedPersonList>;
85125
86309
  spaces?: Maybe<PaginatedSpaceList>;
85126
86310
  spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
86311
+ spf_dependencies?: Maybe<SpfDependencyConnection>;
86312
+ spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
86313
+ spf_dependency?: Maybe<SpfDependency>;
85127
86314
  sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
85128
86315
  sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
85129
86316
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
@@ -85397,6 +86584,19 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
85397
86584
  originalContentVersion: Scalars['Int']['input'];
85398
86585
  revisedContentVersion: Scalars['Int']['input'];
85399
86586
  };
86587
+ export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
86588
+ request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
86589
+ };
86590
+ export declare type QueryChannelPlatform_GetAgentIdForAaidArgs = {
86591
+ aaId?: InputMaybe<Scalars['String']['input']>;
86592
+ instanceId?: InputMaybe<Scalars['String']['input']>;
86593
+ };
86594
+ export declare type QueryChannelPlatform_GetChannelTokenArgs = {
86595
+ request?: InputMaybe<ChannelPlatformGetChannelTokenRequest>;
86596
+ };
86597
+ export declare type QueryChannelPlatform_GetQueueArgs = {
86598
+ id?: InputMaybe<Scalars['ID']['input']>;
86599
+ };
85400
86600
  export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
85401
86601
  id?: InputMaybe<Scalars['ID']['input']>;
85402
86602
  };
@@ -86483,10 +87683,6 @@ export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
86483
87683
  spaceId?: InputMaybe<Scalars['ID']['input']>;
86484
87684
  spaceKey?: InputMaybe<Scalars['String']['input']>;
86485
87685
  };
86486
- export declare type QueryConfluence_SpacesForSimpleIdsArgs = {
86487
- cloudId: Scalars['ID']['input'];
86488
- spaceIds: Array<InputMaybe<Scalars['ID']['input']>>;
86489
- };
86490
87686
  export declare type QueryConfluence_StorageArgs = {
86491
87687
  cloudId?: InputMaybe<Scalars['ID']['input']>;
86492
87688
  };
@@ -86886,6 +88082,12 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
86886
88082
  query?: InputMaybe<Scalars['String']['input']>;
86887
88083
  templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
86888
88084
  };
88085
+ export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
88086
+ after?: InputMaybe<Scalars['String']['input']>;
88087
+ cloudId: Scalars['ID']['input'];
88088
+ first?: InputMaybe<Scalars['Int']['input']>;
88089
+ issueKey: Scalars['String']['input'];
88090
+ };
86889
88091
  export declare type QueryDevai_FlowSessionGetByAriArgs = {
86890
88092
  id: Scalars['ID']['input'];
86891
88093
  };
@@ -86899,6 +88101,7 @@ export declare type QueryDevai_FlowSessionResumeArgs = {
86899
88101
  export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
86900
88102
  cloudId: Scalars['ID']['input'];
86901
88103
  creator: Scalars['String']['input'];
88104
+ statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
86902
88105
  };
86903
88106
  export declare type QueryDevai_RovoDevAgentsUserArgs = {
86904
88107
  atlassianAccountId: Scalars['ID']['input'];
@@ -87188,14 +88391,6 @@ export declare type QueryIpmFlagArgs = {
87188
88391
  export declare type QueryIpmFlagsArgs = {
87189
88392
  search: ContentPlatformSearchApIv2Query;
87190
88393
  };
87191
- export declare type QueryIpmImageModalArgs = {
87192
- id: Scalars['String']['input'];
87193
- locale?: InputMaybe<Scalars['String']['input']>;
87194
- publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
87195
- };
87196
- export declare type QueryIpmImageModalsArgs = {
87197
- search: ContentPlatformSearchApIv2Query;
87198
- };
87199
88394
  export declare type QueryIpmInlineDialogArgs = {
87200
88395
  id: Scalars['String']['input'];
87201
88396
  locale?: InputMaybe<Scalars['String']['input']>;
@@ -87228,12 +88423,29 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
87228
88423
  first?: InputMaybe<Scalars['Int']['input']>;
87229
88424
  id: Scalars['ID']['input'];
87230
88425
  };
88426
+ export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
88427
+ after?: InputMaybe<Scalars['String']['input']>;
88428
+ cloudId: Scalars['ID']['input'];
88429
+ first?: InputMaybe<Scalars['Int']['input']>;
88430
+ input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
88431
+ };
88432
+ export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
88433
+ after?: InputMaybe<Scalars['String']['input']>;
88434
+ cloudId: Scalars['ID']['input'];
88435
+ first?: InputMaybe<Scalars['Int']['input']>;
88436
+ input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
88437
+ };
87231
88438
  export declare type QueryJira_BoardViewArgs = {
87232
88439
  input: JiraBoardViewInput;
87233
88440
  };
87234
88441
  export declare type QueryJira_CategoryFieldArgs = {
87235
88442
  cloudId: Scalars['ID']['input'];
87236
88443
  };
88444
+ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
88445
+ after?: InputMaybe<Scalars['String']['input']>;
88446
+ cloudId: Scalars['ID']['input'];
88447
+ first?: InputMaybe<Scalars['Int']['input']>;
88448
+ };
87237
88449
  export declare type QueryJira_IsRovoLlmEnabledArgs = {
87238
88450
  cloudId: Scalars['ID']['input'];
87239
88451
  };
@@ -87258,6 +88470,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
87258
88470
  cloudId: Scalars['ID']['input'];
87259
88471
  spaceAris: Array<Scalars['ID']['input']>;
87260
88472
  };
88473
+ export declare type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
88474
+ container?: InputMaybe<Scalars['ID']['input']>;
88475
+ };
87261
88476
  export declare type QueryKnowledgeBase_SearchArticlesArgs = {
87262
88477
  searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
87263
88478
  };
@@ -87851,6 +89066,18 @@ export declare type QuerySpacesArgs = {
87851
89066
  export declare type QuerySpacesWithExemptionsArgs = {
87852
89067
  spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
87853
89068
  };
89069
+ export declare type QuerySpf_DependenciesArgs = {
89070
+ after?: InputMaybe<Scalars['String']['input']>;
89071
+ cloudId: Scalars['ID']['input'];
89072
+ first?: InputMaybe<Scalars['Int']['input']>;
89073
+ q?: InputMaybe<Scalars['String']['input']>;
89074
+ };
89075
+ export declare type QuerySpf_DependenciesByIdsArgs = {
89076
+ ids: Array<Scalars['ID']['input']>;
89077
+ };
89078
+ export declare type QuerySpf_DependencyArgs = {
89079
+ id: Scalars['ID']['input'];
89080
+ };
87854
89081
  export declare type QuerySqlSchemaSizeLogArgs = {
87855
89082
  appId: Scalars['ID']['input'];
87856
89083
  installationId: Scalars['ID']['input'];
@@ -87914,9 +89141,6 @@ export declare type QueryTemplateMediaSessionArgs = {
87914
89141
  export declare type QueryTemplatesArgs = {
87915
89142
  search: ContentPlatformSearchApIv2Query;
87916
89143
  };
87917
- export declare type QueryTenantArgs = {
87918
- current?: InputMaybe<Scalars['Boolean']['input']>;
87919
- };
87920
89144
  export declare type QueryTenantContextsArgs = {
87921
89145
  activationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
87922
89146
  cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -88126,10 +89350,11 @@ export declare type RadarAriFieldValue = {
88126
89350
  isHidden?: Maybe<Scalars['Boolean']['output']>;
88127
89351
  value?: Maybe<RadarAriObject>;
88128
89352
  };
88129
- export declare type RadarAriObject = MercuryFocusArea | RadarPosition | RadarWorker;
89353
+ export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker;
88130
89354
  export declare type RadarBooleanFieldValue = {
88131
89355
  __typename?: 'RadarBooleanFieldValue';
88132
89356
  isHidden?: Maybe<Scalars['Boolean']['output']>;
89357
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
88133
89358
  value?: Maybe<Scalars['Boolean']['output']>;
88134
89359
  };
88135
89360
  export declare type RadarConnection = {
@@ -88149,17 +89374,38 @@ export declare type RadarConnectorsInput = {
88149
89374
  connectorId: Scalars['ID']['input'];
88150
89375
  isEnabled: Scalars['Boolean']['input'];
88151
89376
  };
89377
+ export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
89378
+ __typename?: 'RadarCustomFieldDefinition';
89379
+ defaultOrder?: Maybe<Scalars['Int']['output']>;
89380
+ displayName: Scalars['String']['output'];
89381
+ entity: RadarEntityType;
89382
+ filterOptions: RadarFilterOptions;
89383
+ id: Scalars['ID']['output'];
89384
+ isCustom: Scalars['Boolean']['output'];
89385
+ isGroupable: Scalars['Boolean']['output'];
89386
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
89387
+ relativeId: Scalars['String']['output'];
89388
+ sensitivityLevel: RadarSensitivityLevel;
89389
+ syncStatus: RadarCustomFieldSyncStatus;
89390
+ type: RadarFieldType;
89391
+ };
88152
89392
  export declare type RadarCustomFieldInput = {
88153
89393
  displayName: Scalars['String']['input'];
88154
89394
  entity: RadarEntityType;
88155
- relativeId: Scalars['String']['input'];
89395
+ relativeId?: InputMaybe<Scalars['String']['input']>;
88156
89396
  sensitivityLevel: RadarSensitivityLevel;
88157
89397
  sourceField: Scalars['String']['input'];
88158
89398
  type: RadarFieldType;
88159
89399
  };
89400
+ export declare enum RadarCustomFieldSyncStatus {
89401
+ Found = "FOUND",
89402
+ NotFound = "NOT_FOUND",
89403
+ Pending = "PENDING"
89404
+ }
88160
89405
  export declare type RadarDateFieldValue = {
88161
89406
  __typename?: 'RadarDateFieldValue';
88162
89407
  isHidden?: Maybe<Scalars['Boolean']['output']>;
89408
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
88163
89409
  value?: Maybe<Scalars['DateTime']['output']>;
88164
89410
  };
88165
89411
  export declare type RadarDeleteFocusAreaProposalChangesInput = {
@@ -88344,6 +89590,7 @@ export declare type RadarNumericFieldValue = {
88344
89590
  __typename?: 'RadarNumericFieldValue';
88345
89591
  displayValue?: Maybe<Scalars['Int']['output']>;
88346
89592
  isHidden?: Maybe<Scalars['Boolean']['output']>;
89593
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
88347
89594
  value?: Maybe<Scalars['Int']['output']>;
88348
89595
  };
88349
89596
  export declare type RadarPermissions = {
@@ -88428,11 +89675,13 @@ export declare type RadarStatusFieldValue = {
88428
89675
  appearance?: Maybe<RadarStatusAppearance>;
88429
89676
  displayValue?: Maybe<Scalars['String']['output']>;
88430
89677
  isHidden?: Maybe<Scalars['Boolean']['output']>;
89678
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
88431
89679
  value?: Maybe<Scalars['String']['output']>;
88432
89680
  };
88433
89681
  export declare type RadarStringFieldValue = {
88434
89682
  __typename?: 'RadarStringFieldValue';
88435
89683
  isHidden?: Maybe<Scalars['Boolean']['output']>;
89684
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
88436
89685
  value?: Maybe<Scalars['String']['output']>;
88437
89686
  };
88438
89687
  export declare type RadarUrlFieldValue = {
@@ -88440,6 +89689,7 @@ export declare type RadarUrlFieldValue = {
88440
89689
  displayValue?: Maybe<Scalars['String']['output']>;
88441
89690
  icon?: Maybe<Scalars['String']['output']>;
88442
89691
  isHidden?: Maybe<Scalars['Boolean']['output']>;
89692
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
88443
89693
  value?: Maybe<Scalars['String']['output']>;
88444
89694
  };
88445
89695
  export declare type RadarUserContext = {
@@ -88478,6 +89728,7 @@ export declare type RadarWorkspace = {
88478
89728
  functions: Array<RadarFunction>;
88479
89729
  id: Scalars['ID']['output'];
88480
89730
  positionFields: Array<RadarFieldDefinition>;
89731
+ proposalFields: Array<RadarFieldDefinition>;
88481
89732
  settings: RadarSettings;
88482
89733
  userContext?: Maybe<RadarUserContext>;
88483
89734
  workerFields: Array<RadarFieldDefinition>;
@@ -89676,6 +90927,37 @@ export declare enum RoleAssignmentPrincipalType {
89676
90927
  Team = "TEAM",
89677
90928
  User = "USER"
89678
90929
  }
90930
+ export declare type RunImportError = {
90931
+ __typename?: 'RunImportError';
90932
+ message?: Maybe<Scalars['String']['output']>;
90933
+ statusCode?: Maybe<Scalars['Int']['output']>;
90934
+ };
90935
+ export declare type RunImportInput = {
90936
+ accessToken: Scalars['String']['input'];
90937
+ application: Scalars['String']['input'];
90938
+ collectionMediaToken?: InputMaybe<Scalars['String']['input']>;
90939
+ collectionName?: InputMaybe<Scalars['String']['input']>;
90940
+ exportEntities?: InputMaybe<Scalars['Boolean']['input']>;
90941
+ filestoreId: Scalars['String']['input'];
90942
+ fullImport: Scalars['Boolean']['input'];
90943
+ importPageData: Scalars['Boolean']['input'];
90944
+ importPermissions?: InputMaybe<Scalars['String']['input']>;
90945
+ importUsers: Scalars['Boolean']['input'];
90946
+ integrationToken: Scalars['String']['input'];
90947
+ miroAuthToken?: InputMaybe<Scalars['String']['input']>;
90948
+ miroProjectId?: InputMaybe<Scalars['String']['input']>;
90949
+ miroTeamId?: InputMaybe<Scalars['String']['input']>;
90950
+ orgId: Scalars['String']['input'];
90951
+ parentId?: InputMaybe<Scalars['String']['input']>;
90952
+ spaceId?: InputMaybe<Scalars['ID']['input']>;
90953
+ spaceName?: InputMaybe<Scalars['String']['input']>;
90954
+ };
90955
+ export declare type RunImportPayload = {
90956
+ __typename?: 'RunImportPayload';
90957
+ errors: Array<RunImportError>;
90958
+ success: Scalars['Boolean']['output'];
90959
+ taskId?: Maybe<Scalars['String']['output']>;
90960
+ };
89679
90961
  export declare type SqlSchemaSizeLogResponse = {
89680
90962
  __typename?: 'SQLSchemaSizeLogResponse';
89681
90963
  databaseSize: Scalars['String']['output'];
@@ -92029,6 +93311,10 @@ export declare type ShepherdDspListMetadata = {
92029
93311
  isSwitched?: Maybe<Scalars['Boolean']['output']>;
92030
93312
  type?: Maybe<Scalars['String']['output']>;
92031
93313
  };
93314
+ export declare type ShepherdEnabledWorkspaceByUserContext = {
93315
+ __typename?: 'ShepherdEnabledWorkspaceByUserContext';
93316
+ id?: Maybe<Scalars['ID']['output']>;
93317
+ };
92032
93318
  export declare type ShepherdExclusionContentInfo = {
92033
93319
  __typename?: 'ShepherdExclusionContentInfo';
92034
93320
  ari?: Maybe<Scalars['String']['output']>;
@@ -92201,6 +93487,7 @@ export declare type ShepherdQuery = {
92201
93487
  __typename?: 'ShepherdQuery';
92202
93488
  alert?: Maybe<ShepherdAlertQueries>;
92203
93489
  classifications?: Maybe<ShepherdClassificationsQueries>;
93490
+ enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
92204
93491
  exclusions?: Maybe<ShepherdExclusionsQueries>;
92205
93492
  shepherdActivity?: Maybe<ShepherdActivityResult>;
92206
93493
  shepherdActor?: Maybe<ShepherdActorResult>;
@@ -93778,6 +95065,119 @@ export declare type SpaceWithExemption = {
93778
95065
  status?: Maybe<Scalars['String']['output']>;
93779
95066
  type?: Maybe<Scalars['String']['output']>;
93780
95067
  };
95068
+ export declare type SpfComment = {
95069
+ __typename?: 'SpfComment';
95070
+ createdAt: Scalars['DateTime']['output'];
95071
+ createdByUserId?: Maybe<Scalars['String']['output']>;
95072
+ data: Scalars['String']['output'];
95073
+ id: Scalars['ID']['output'];
95074
+ updatedAt: Scalars['DateTime']['output'];
95075
+ };
95076
+ export declare type SpfCommentConnection = {
95077
+ __typename?: 'SpfCommentConnection';
95078
+ edges?: Maybe<Array<Maybe<SpfCommentEdge>>>;
95079
+ pageInfo: PageInfo;
95080
+ totalCount?: Maybe<Scalars['Int']['output']>;
95081
+ };
95082
+ export declare type SpfCommentEdge = {
95083
+ __typename?: 'SpfCommentEdge';
95084
+ cursor: Scalars['String']['output'];
95085
+ node?: Maybe<SpfComment>;
95086
+ };
95087
+ export declare type SpfDependency = Node & {
95088
+ __typename?: 'SpfDependency';
95089
+ comments?: Maybe<SpfCommentConnection>;
95090
+ createdAt: Scalars['DateTime']['output'];
95091
+ createdBy?: Maybe<User>;
95092
+ createdByUserId: Scalars['String']['output'];
95093
+ description?: Maybe<Scalars['String']['output']>;
95094
+ id: Scalars['ID']['output'];
95095
+ impactedWork?: Maybe<SpfImpactedWork>;
95096
+ impactedWorkId: Scalars['String']['output'];
95097
+ justification?: Maybe<Scalars['String']['output']>;
95098
+ name: Scalars['String']['output'];
95099
+ owner?: Maybe<User>;
95100
+ ownerId?: Maybe<Scalars['String']['output']>;
95101
+ priority: SpfPriority;
95102
+ receivingTeam?: Maybe<TeamV2>;
95103
+ receivingTeamId?: Maybe<Scalars['String']['output']>;
95104
+ relatedContent?: Maybe<SpfRelatedContentConnection>;
95105
+ requester?: Maybe<User>;
95106
+ requesterId: Scalars['String']['output'];
95107
+ requestingTeam?: Maybe<TeamV2>;
95108
+ requestingTeamId?: Maybe<Scalars['String']['output']>;
95109
+ status: SpfDependencyStatus;
95110
+ targetDate?: Maybe<SpfTargetDate>;
95111
+ updatedAt: Scalars['DateTime']['output'];
95112
+ updatedBy?: Maybe<User>;
95113
+ updatedByUserId?: Maybe<Scalars['String']['output']>;
95114
+ };
95115
+ export declare type SpfDependencyCommentsArgs = {
95116
+ after?: InputMaybe<Scalars['String']['input']>;
95117
+ first?: InputMaybe<Scalars['Int']['input']>;
95118
+ q?: InputMaybe<Scalars['String']['input']>;
95119
+ };
95120
+ export declare type SpfDependencyRelatedContentArgs = {
95121
+ after?: InputMaybe<Scalars['String']['input']>;
95122
+ first?: InputMaybe<Scalars['Int']['input']>;
95123
+ q?: InputMaybe<Scalars['String']['input']>;
95124
+ };
95125
+ export declare type SpfDependencyConnection = {
95126
+ __typename?: 'SpfDependencyConnection';
95127
+ edges?: Maybe<Array<Maybe<SpfDependencyEdge>>>;
95128
+ pageInfo: PageInfo;
95129
+ totalCount?: Maybe<Scalars['Int']['output']>;
95130
+ };
95131
+ export declare type SpfDependencyEdge = {
95132
+ __typename?: 'SpfDependencyEdge';
95133
+ cursor: Scalars['String']['output'];
95134
+ node?: Maybe<SpfDependency>;
95135
+ };
95136
+ export declare enum SpfDependencyStatus {
95137
+ Accepted = "ACCEPTED",
95138
+ Canceled = "CANCELED",
95139
+ Denied = "DENIED",
95140
+ Draft = "DRAFT",
95141
+ InReview = "IN_REVIEW",
95142
+ Revising = "REVISING",
95143
+ Submitted = "SUBMITTED"
95144
+ }
95145
+ export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
95146
+ export declare enum SpfPriority {
95147
+ Critical = "CRITICAL",
95148
+ High = "HIGH",
95149
+ Highest = "HIGHEST",
95150
+ Low = "LOW",
95151
+ Medium = "MEDIUM"
95152
+ }
95153
+ export declare type SpfRelatedContent = {
95154
+ __typename?: 'SpfRelatedContent';
95155
+ attachedByUserId?: Maybe<Scalars['String']['output']>;
95156
+ attachedDateTime: Scalars['DateTime']['output'];
95157
+ id: Scalars['ID']['output'];
95158
+ url: Scalars['URL']['output'];
95159
+ };
95160
+ export declare type SpfRelatedContentConnection = {
95161
+ __typename?: 'SpfRelatedContentConnection';
95162
+ edges?: Maybe<Array<Maybe<SpfRelatedContentEdge>>>;
95163
+ pageInfo: PageInfo;
95164
+ totalCount?: Maybe<Scalars['Int']['output']>;
95165
+ };
95166
+ export declare type SpfRelatedContentEdge = {
95167
+ __typename?: 'SpfRelatedContentEdge';
95168
+ cursor: Scalars['String']['output'];
95169
+ node?: Maybe<SpfRelatedContent>;
95170
+ };
95171
+ export declare type SpfTargetDate = {
95172
+ __typename?: 'SpfTargetDate';
95173
+ targetDate?: Maybe<Scalars['String']['output']>;
95174
+ targetDateType?: Maybe<SpfTargetDateType>;
95175
+ };
95176
+ export declare enum SpfTargetDateType {
95177
+ Day = "DAY",
95178
+ Month = "MONTH",
95179
+ Quarter = "QUARTER"
95180
+ }
93781
95181
  export declare type SplitIssueInput = {
93782
95182
  newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
93783
95183
  originalIssue: OriginalSplitIssue;
@@ -94879,7 +96279,6 @@ export declare type Tenant = {
94879
96279
  __typename?: 'Tenant';
94880
96280
  activationId?: Maybe<Scalars['String']['output']>;
94881
96281
  cloudId: Scalars['ID']['output'];
94882
- editions?: Maybe<ConfluenceEditions>;
94883
96282
  environment: Environment;
94884
96283
  shard: Scalars['String']['output'];
94885
96284
  };
@@ -95373,7 +96772,9 @@ export declare type TownsquareCapability = {
95373
96772
  capabilityContainer?: Maybe<TownsquareCapabilityContainer>;
95374
96773
  };
95375
96774
  export declare enum TownsquareCapabilityContainer {
96775
+ FocusAreasApp = "FOCUS_AREAS_APP",
95376
96776
  GoalsApp = "GOALS_APP",
96777
+ JiraAlignApp = "JIRA_ALIGN_APP",
95377
96778
  ProjectsApp = "PROJECTS_APP"
95378
96779
  }
95379
96780
  export declare type TownsquareComment = Node & {
@@ -95395,6 +96796,21 @@ export declare type TownsquareCommentEdge = {
95395
96796
  cursor: Scalars['String']['output'];
95396
96797
  node?: Maybe<TownsquareComment>;
95397
96798
  };
96799
+ export declare type TownsquareCreateGoalHasJiraAlignProjectInput = {
96800
+ from: Scalars['String']['input'];
96801
+ to: Scalars['String']['input'];
96802
+ };
96803
+ export declare type TownsquareCreateGoalHasJiraAlignProjectMutationErrorExtension = MutationErrorExtension & {
96804
+ __typename?: 'TownsquareCreateGoalHasJiraAlignProjectMutationErrorExtension';
96805
+ errorType?: Maybe<Scalars['String']['output']>;
96806
+ statusCode?: Maybe<Scalars['Int']['output']>;
96807
+ };
96808
+ export declare type TownsquareCreateGoalHasJiraAlignProjectPayload = {
96809
+ __typename?: 'TownsquareCreateGoalHasJiraAlignProjectPayload';
96810
+ errors?: Maybe<Array<MutationError>>;
96811
+ node?: Maybe<JiraAlignAggProject>;
96812
+ success: Scalars['Boolean']['output'];
96813
+ };
95398
96814
  export declare type TownsquareCreateGoalInput = {
95399
96815
  containerId: Scalars['String']['input'];
95400
96816
  goalTypeAri?: InputMaybe<Scalars['String']['input']>;
@@ -95712,6 +97128,7 @@ export declare type TownsquareMutationApi = {
95712
97128
  __typename?: 'TownsquareMutationApi';
95713
97129
  archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
95714
97130
  createGoal?: Maybe<TownsquareCreateGoalPayload>;
97131
+ createGoalHasJiraAlignProject?: Maybe<TownsquareCreateGoalHasJiraAlignProjectPayload>;
95715
97132
  createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
95716
97133
  createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
95717
97134
  deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
@@ -95727,6 +97144,9 @@ export declare type TownsquareMutationApiArchiveGoalArgs = {
95727
97144
  export declare type TownsquareMutationApiCreateGoalArgs = {
95728
97145
  input: TownsquareCreateGoalInput;
95729
97146
  };
97147
+ export declare type TownsquareMutationApiCreateGoalHasJiraAlignProjectArgs = {
97148
+ input: TownsquareCreateGoalHasJiraAlignProjectInput;
97149
+ };
95730
97150
  export declare type TownsquareMutationApiCreateGoalTypeArgs = {
95731
97151
  input: TownsquareCreateGoalTypeInput;
95732
97152
  };
@@ -96459,6 +97879,10 @@ export declare type TrelloAttachmentEdgeUpdated = {
96459
97879
  __typename?: 'TrelloAttachmentEdgeUpdated';
96460
97880
  node: TrelloAttachment;
96461
97881
  };
97882
+ export declare type TrelloAttachmentUpdated = {
97883
+ __typename?: 'TrelloAttachmentUpdated';
97884
+ id: Scalars['ID']['output'];
97885
+ };
96462
97886
  export declare type TrelloBoard = Node & {
96463
97887
  __typename?: 'TrelloBoard';
96464
97888
  closed: Scalars['Boolean']['output'];
@@ -96534,6 +97958,7 @@ export declare type TrelloBoardBackground = {
96534
97958
  color?: Maybe<Scalars['String']['output']>;
96535
97959
  image?: Maybe<Scalars['String']['output']>;
96536
97960
  imageScaled?: Maybe<Array<TrelloScaleProps>>;
97961
+ objectId?: Maybe<Scalars['String']['output']>;
96537
97962
  tile?: Maybe<Scalars['Boolean']['output']>;
96538
97963
  topColor?: Maybe<Scalars['String']['output']>;
96539
97964
  };
@@ -96935,6 +98360,7 @@ export declare enum TrelloCardCoverSize {
96935
98360
  }
96936
98361
  export declare type TrelloCardCoverUpdated = {
96937
98362
  __typename?: 'TrelloCardCoverUpdated';
98363
+ attachment?: Maybe<TrelloAttachmentUpdated>;
96938
98364
  brightness?: Maybe<TrelloCardCoverBrightness>;
96939
98365
  color?: Maybe<TrelloCardCoverColor>;
96940
98366
  edgeColor?: Maybe<Scalars['String']['output']>;
@@ -96942,6 +98368,7 @@ export declare type TrelloCardCoverUpdated = {
96942
98368
  previews?: Maybe<TrelloImagePreviewUpdatedConnection>;
96943
98369
  sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
96944
98370
  size?: Maybe<TrelloCardCoverSize>;
98371
+ uploadedBackground?: Maybe<TrelloUploadedBackground>;
96945
98372
  };
96946
98373
  export declare type TrelloCardCreationInfo = {
96947
98374
  __typename?: 'TrelloCardCreationInfo';
@@ -96949,6 +98376,10 @@ export declare type TrelloCardCreationInfo = {
96949
98376
  loadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
96950
98377
  method?: Maybe<Scalars['String']['output']>;
96951
98378
  };
98379
+ export declare type TrelloCardCustomFieldItemEdgeUpdated = {
98380
+ __typename?: 'TrelloCardCustomFieldItemEdgeUpdated';
98381
+ node: TrelloCustomFieldItemUpdated;
98382
+ };
96952
98383
  export declare type TrelloCardDueInfo = {
96953
98384
  __typename?: 'TrelloCardDueInfo';
96954
98385
  at?: Maybe<Scalars['DateTime']['output']>;
@@ -97267,6 +98698,10 @@ export declare type TrelloCustomFieldEdgeUpdated = {
97267
98698
  __typename?: 'TrelloCustomFieldEdgeUpdated';
97268
98699
  node: TrelloCustomField;
97269
98700
  };
98701
+ export declare type TrelloCustomFieldId = {
98702
+ __typename?: 'TrelloCustomFieldId';
98703
+ objectId: Scalars['ID']['output'];
98704
+ };
97270
98705
  export declare type TrelloCustomFieldItem = {
97271
98706
  __typename?: 'TrelloCustomFieldItem';
97272
98707
  customField?: Maybe<TrelloCustomField>;
@@ -97285,8 +98720,15 @@ export declare type TrelloCustomFieldItemEdge = {
97285
98720
  cursor: Scalars['String']['output'];
97286
98721
  node: TrelloCustomFieldItem;
97287
98722
  };
98723
+ export declare type TrelloCustomFieldItemUpdated = {
98724
+ __typename?: 'TrelloCustomFieldItemUpdated';
98725
+ customField?: Maybe<TrelloCustomFieldId>;
98726
+ objectId: Scalars['ID']['output'];
98727
+ value?: Maybe<TrelloCustomFieldItemValueInfo>;
98728
+ };
97288
98729
  export declare type TrelloCustomFieldItemUpdatedConnection = {
97289
98730
  __typename?: 'TrelloCustomFieldItemUpdatedConnection';
98731
+ edges?: Maybe<Array<TrelloCardCustomFieldItemEdgeUpdated>>;
97290
98732
  nodes?: Maybe<Array<TrelloCustomFieldItem>>;
97291
98733
  };
97292
98734
  export declare type TrelloCustomFieldItemValueInfo = {
@@ -97605,7 +99047,10 @@ export declare type TrelloMemberUpdated = {
97605
99047
  __typename?: 'TrelloMemberUpdated';
97606
99048
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
97607
99049
  boards?: Maybe<TrelloBoardConnectionUpdated>;
99050
+ fullName?: Maybe<Scalars['String']['output']>;
97608
99051
  id?: Maybe<Scalars['ID']['output']>;
99052
+ initials?: Maybe<Scalars['String']['output']>;
99053
+ username?: Maybe<Scalars['String']['output']>;
97609
99054
  };
97610
99055
  export declare type TrelloMemberUpdatedConnection = {
97611
99056
  __typename?: 'TrelloMemberUpdatedConnection';
@@ -97988,6 +99433,7 @@ export declare type TrelloPlannerCalendarEventCardEdgeUpdated = {
97988
99433
  export declare type TrelloPlannerCalendarEventCardUpdated = {
97989
99434
  __typename?: 'TrelloPlannerCalendarEventCardUpdated';
97990
99435
  boardId?: Maybe<Scalars['ID']['output']>;
99436
+ card?: Maybe<TrelloPlannerCardUpdated>;
97991
99437
  cardId?: Maybe<Scalars['ID']['output']>;
97992
99438
  id: Scalars['ID']['output'];
97993
99439
  position?: Maybe<Scalars['Float']['output']>;
@@ -98089,6 +99535,20 @@ export declare type TrelloPlannerCalendarUpdated = {
98089
99535
  export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
98090
99536
  filter: TrelloPlannerCalendarEventsUpdatedFilter;
98091
99537
  };
99538
+ export declare type TrelloPlannerCardBoardUpdated = {
99539
+ __typename?: 'TrelloPlannerCardBoardUpdated';
99540
+ id: Scalars['ID']['output'];
99541
+ };
99542
+ export declare type TrelloPlannerCardListUpdated = {
99543
+ __typename?: 'TrelloPlannerCardListUpdated';
99544
+ board?: Maybe<TrelloPlannerCardBoardUpdated>;
99545
+ id: Scalars['ID']['output'];
99546
+ };
99547
+ export declare type TrelloPlannerCardUpdated = {
99548
+ __typename?: 'TrelloPlannerCardUpdated';
99549
+ id: Scalars['ID']['output'];
99550
+ list?: Maybe<TrelloPlannerCardListUpdated>;
99551
+ };
98092
99552
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
98093
99553
  __typename?: 'TrelloPlannerProviderCalendar';
98094
99554
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -101624,6 +103084,18 @@ export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsComp
101624
103084
  title: Scalars['String']['output'];
101625
103085
  url: Scalars['String']['output'];
101626
103086
  };
103087
+ export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestionsCompassTask & {
103088
+ __typename?: 'WorkSuggestionsCompassScorecardCriterionTask';
103089
+ componentAri?: Maybe<Scalars['ID']['output']>;
103090
+ componentName?: Maybe<Scalars['String']['output']>;
103091
+ componentType?: Maybe<Scalars['String']['output']>;
103092
+ criterionId?: Maybe<Scalars['ID']['output']>;
103093
+ id: Scalars['String']['output'];
103094
+ orderScore?: Maybe<WorkSuggestionsOrderScore>;
103095
+ scorecardAri?: Maybe<Scalars['ID']['output']>;
103096
+ title: Scalars['String']['output'];
103097
+ url: Scalars['String']['output'];
103098
+ };
101627
103099
  export declare type WorkSuggestionsCompassTask = {
101628
103100
  componentAri?: Maybe<Scalars['ID']['output']>;
101629
103101
  componentName?: Maybe<Scalars['String']['output']>;