@forge/cli-shared 6.9.0-next.2 → 6.9.0-next.4

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.
@@ -252,6 +252,7 @@ export declare type ActionsActionableApp = {
252
252
  integrationKey?: Maybe<Scalars['String']['output']>;
253
253
  name: Scalars['String']['output'];
254
254
  oauthClientId?: Maybe<Scalars['String']['output']>;
255
+ scopes?: Maybe<Array<Scalars['String']['output']>>;
255
256
  };
256
257
  export declare type ActionsActionableAppConnection = {
257
258
  __typename?: 'ActionsActionableAppConnection';
@@ -269,6 +270,7 @@ export declare type ActionsActionableAppsFilter = {
269
270
  byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
270
271
  byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
271
272
  byActionVersion?: InputMaybe<Scalars['String']['input']>;
273
+ byCaasScopes?: InputMaybe<Array<Scalars['String']['input']>>;
272
274
  byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
273
275
  byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
274
276
  byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -283,6 +285,7 @@ export declare enum ActionsAuthType {
283
285
  TwoLegged = "TWO_LEGGED"
284
286
  }
285
287
  export declare enum ActionsCapabilityType {
288
+ Ai = "AI",
286
289
  Automation = "AUTOMATION"
287
290
  }
288
291
  export declare enum ActionsConfigurationLayout {
@@ -310,6 +313,7 @@ export declare type ActionsDescription = {
310
313
  };
311
314
  export declare type ActionsExecuteActionFilter = {
312
315
  actionId?: InputMaybe<Scalars['String']['input']>;
316
+ authType?: InputMaybe<Array<InputMaybe<ActionsAuthType>>>;
313
317
  extensionAri?: InputMaybe<Scalars['String']['input']>;
314
318
  integrationKey?: InputMaybe<Scalars['String']['input']>;
315
319
  oauthClientId?: InputMaybe<Scalars['String']['input']>;
@@ -3585,6 +3589,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
3585
3589
  featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
3586
3590
  featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
3587
3591
  id: Scalars['ID']['output'];
3592
+ invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
3588
3593
  latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
3589
3594
  metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
3590
3595
  offering?: Maybe<CcpOffering>;
@@ -3695,6 +3700,29 @@ export declare type CcpInvoiceGroupExperienceCapabilities = CommerceInvoiceGroup
3695
3700
  configurePayment?: Maybe<CcpExperienceCapability>;
3696
3701
  configurePaymentV2?: Maybe<CcpConfigurePaymentMethodExperienceCapability>;
3697
3702
  };
3703
+ export declare type CcpInvoiceRequest = {
3704
+ __typename?: 'CcpInvoiceRequest';
3705
+ id: Scalars['ID']['output'];
3706
+ items?: Maybe<Array<Maybe<CcpInvoiceRequestItem>>>;
3707
+ };
3708
+ export declare type CcpInvoiceRequestItem = {
3709
+ __typename?: 'CcpInvoiceRequestItem';
3710
+ accruedCharges?: Maybe<Scalars['Boolean']['output']>;
3711
+ id?: Maybe<Scalars['ID']['output']>;
3712
+ offeringKey?: Maybe<Scalars['ID']['output']>;
3713
+ period?: Maybe<CcpInvoiceRequestItemPeriod>;
3714
+ planObj?: Maybe<CcpInvoiceRequestItemPlanObj>;
3715
+ quantity?: Maybe<Scalars['Int']['output']>;
3716
+ };
3717
+ export declare type CcpInvoiceRequestItemPeriod = {
3718
+ __typename?: 'CcpInvoiceRequestItemPeriod';
3719
+ endAt: Scalars['Float']['output'];
3720
+ startAt: Scalars['Float']['output'];
3721
+ };
3722
+ export declare type CcpInvoiceRequestItemPlanObj = {
3723
+ __typename?: 'CcpInvoiceRequestItemPlanObj';
3724
+ id?: Maybe<Scalars['ID']['output']>;
3725
+ };
3698
3726
  export declare type CcpListPriceEstimate = {
3699
3727
  __typename?: 'CcpListPriceEstimate';
3700
3728
  averageAmountPerUnit?: Maybe<Scalars['Float']['output']>;
@@ -4066,6 +4094,7 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
4066
4094
  };
4067
4095
  export declare type CcpTrial = CommerceTrial & {
4068
4096
  __typename?: 'CcpTrial';
4097
+ endBehaviour?: Maybe<CcpTrialEndBehaviour>;
4069
4098
  endTimestamp?: Maybe<Scalars['Float']['output']>;
4070
4099
  listPriceEstimates?: Maybe<Array<Maybe<CcpListPriceEstimate>>>;
4071
4100
  offeringId?: Maybe<Scalars['ID']['output']>;
@@ -4073,6 +4102,10 @@ export declare type CcpTrial = CommerceTrial & {
4073
4102
  startTimestamp?: Maybe<Scalars['Float']['output']>;
4074
4103
  timeLeft?: Maybe<Scalars['Float']['output']>;
4075
4104
  };
4105
+ export declare enum CcpTrialEndBehaviour {
4106
+ BillingPlan = "BILLING_PLAN",
4107
+ TrialPlan = "TRIAL_PLAN"
4108
+ }
4076
4109
  export declare type CcpUsageUpdateCadence = {
4077
4110
  __typename?: 'CcpUsageUpdateCadence';
4078
4111
  cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
@@ -4119,6 +4152,7 @@ export declare enum Classification {
4119
4152
  }
4120
4153
  export declare type ClassificationLevelDetails = {
4121
4154
  __typename?: 'ClassificationLevelDetails';
4155
+ classificationLevel?: Maybe<ContentDataClassificationLevel>;
4122
4156
  classificationLevelId?: Maybe<Scalars['ID']['output']>;
4123
4157
  source?: Maybe<ClassificationLevelSource>;
4124
4158
  };
@@ -8425,6 +8459,7 @@ export declare type CompassScorecardMetricCriterionScore = CompassScorecardCrite
8425
8459
  export declare type CompassScorecardQueryFilter = {
8426
8460
  componentTypeIds?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
8427
8461
  name?: InputMaybe<Scalars['String']['input']>;
8462
+ ownerId?: InputMaybe<Array<Scalars['ID']['input']>>;
8428
8463
  state?: InputMaybe<Scalars['String']['input']>;
8429
8464
  type?: InputMaybe<CompassScorecardTypesFilter>;
8430
8465
  };
@@ -9523,11 +9558,29 @@ export declare type ConfluenceCommentFilter = {
9523
9558
  commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
9524
9559
  commentType?: InputMaybe<Array<InputMaybe<CommentType>>>;
9525
9560
  };
9561
+ export declare enum ConfluenceCommentLevel {
9562
+ Reply = "REPLY",
9563
+ TopLevel = "TOP_LEVEL"
9564
+ }
9526
9565
  export declare type ConfluenceCommentLinks = {
9527
9566
  __typename?: 'ConfluenceCommentLinks';
9528
9567
  base?: Maybe<Scalars['String']['output']>;
9529
9568
  webUi?: Maybe<Scalars['String']['output']>;
9530
9569
  };
9570
+ export declare type ConfluenceCommentModified = {
9571
+ __typename?: 'ConfluenceCommentModified';
9572
+ adfBodyContent?: Maybe<Scalars['String']['output']>;
9573
+ commentId?: Maybe<Scalars['ID']['output']>;
9574
+ eventType?: Maybe<ConfluenceCommentModifiedType>;
9575
+ pageCommentType?: Maybe<ConfluenceCommentLevel>;
9576
+ };
9577
+ export declare enum ConfluenceCommentModifiedType {
9578
+ CommentCreated = "COMMENT_CREATED",
9579
+ CommentDeleted = "COMMENT_DELETED",
9580
+ CommentReopened = "COMMENT_REOPENED",
9581
+ CommentResolved = "COMMENT_RESOLVED",
9582
+ CommentUpdated = "COMMENT_UPDATED"
9583
+ }
9531
9584
  export declare type ConfluenceCommentResolutionState = {
9532
9585
  __typename?: 'ConfluenceCommentResolutionState';
9533
9586
  commentId: Scalars['ID']['output'];
@@ -9578,8 +9631,26 @@ export declare type ConfluenceContentMetadata = {
9578
9631
  export declare type ConfluenceContentModified = {
9579
9632
  __typename?: 'ConfluenceContentModified';
9580
9633
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
9634
+ commentModified?: Maybe<ConfluenceCommentModified>;
9635
+ contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
9636
+ contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
9637
+ contentStateUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
9581
9638
  contentTitleUpdated?: Maybe<ConfluenceContentTitleUpdated>;
9582
- id: Scalars['ID']['output'];
9639
+ contentUpdatedWithTemplate?: Maybe<ConfluenceContentUpdatedWithTemplate>;
9640
+ coverPictureDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
9641
+ coverPictureUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
9642
+ coverPictureWidthUpdated?: Maybe<ConfluenceCoverPictureWidthUpdated>;
9643
+ embedUpdated?: Maybe<ConfluenceEmbedUpdated>;
9644
+ emojiTitleDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
9645
+ emojiTitleUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
9646
+ id: Scalars['ID']['output'];
9647
+ inlineCommentModified?: Maybe<ConfluenceInlineCommentModified>;
9648
+ pageBlogified?: Maybe<ConfluencePageBlogified>;
9649
+ pageMigrated?: Maybe<ConfluencePageMigrated>;
9650
+ pageMoved?: Maybe<ConfluencePageMoved>;
9651
+ pageTitlePropertyUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
9652
+ pageUpdated?: Maybe<ConfluencePageUpdated>;
9653
+ schedulePublished?: Maybe<ConfluenceSchedulePublished>;
9583
9654
  type: ConfluenceSubscriptionContentType;
9584
9655
  };
9585
9656
  export declare type ConfluenceContentNativeProperties = {
@@ -9587,6 +9658,16 @@ export declare type ConfluenceContentNativeProperties = {
9587
9658
  current?: Maybe<ConfluenceCurrentContentNativeProperties>;
9588
9659
  draft?: Maybe<ConfluenceDraftContentNativeProperties>;
9589
9660
  };
9661
+ export declare type ConfluenceContentPropertyDeleted = {
9662
+ __typename?: 'ConfluenceContentPropertyDeleted';
9663
+ key?: Maybe<Scalars['String']['output']>;
9664
+ };
9665
+ export declare type ConfluenceContentPropertyUpdated = {
9666
+ __typename?: 'ConfluenceContentPropertyUpdated';
9667
+ key?: Maybe<Scalars['String']['output']>;
9668
+ value?: Maybe<Scalars['String']['output']>;
9669
+ version?: Maybe<Scalars['Int']['output']>;
9670
+ };
9590
9671
  export declare enum ConfluenceContentRepresentation {
9591
9672
  AtlasDocFormat = "ATLAS_DOC_FORMAT",
9592
9673
  Editor = "EDITOR",
@@ -9599,6 +9680,10 @@ export declare enum ConfluenceContentRepresentation {
9599
9680
  View = "VIEW",
9600
9681
  Wiki = "WIKI"
9601
9682
  }
9683
+ export declare type ConfluenceContentRestrictionUpdated = {
9684
+ __typename?: 'ConfluenceContentRestrictionUpdated';
9685
+ contentId?: Maybe<Scalars['ID']['output']>;
9686
+ };
9602
9687
  export declare type ConfluenceContentState = {
9603
9688
  __typename?: 'ConfluenceContentState';
9604
9689
  color?: Maybe<Scalars['String']['output']>;
@@ -9635,6 +9720,12 @@ export declare enum ConfluenceContentType {
9635
9720
  Page = "PAGE",
9636
9721
  Whiteboard = "WHITEBOARD"
9637
9722
  }
9723
+ export declare type ConfluenceContentUpdatedWithTemplate = {
9724
+ __typename?: 'ConfluenceContentUpdatedWithTemplate';
9725
+ spaceKey?: Maybe<Scalars['String']['output']>;
9726
+ subtype?: Maybe<Scalars['String']['output']>;
9727
+ title?: Maybe<Scalars['String']['output']>;
9728
+ };
9638
9729
  export declare type ConfluenceContentVersion = {
9639
9730
  __typename?: 'ConfluenceContentVersion';
9640
9731
  author?: Maybe<ConfluenceUserInfo>;
@@ -9672,6 +9763,10 @@ export declare type ConfluenceCopySpaceSecurityConfigurationPayload = Payload &
9672
9763
  errors?: Maybe<Array<MutationError>>;
9673
9764
  success: Scalars['Boolean']['output'];
9674
9765
  };
9766
+ export declare type ConfluenceCoverPictureWidthUpdated = {
9767
+ __typename?: 'ConfluenceCoverPictureWidthUpdated';
9768
+ coverPictureWidth?: Maybe<Scalars['String']['output']>;
9769
+ };
9675
9770
  export declare type ConfluenceCreateAdminAnnouncementBannerInput = {
9676
9771
  appearance: Scalars['String']['input'];
9677
9772
  content: Scalars['String']['input'];
@@ -9968,6 +10063,11 @@ export declare type ConfluenceEmbedLinks = {
9968
10063
  base?: Maybe<Scalars['String']['output']>;
9969
10064
  webUi?: Maybe<Scalars['String']['output']>;
9970
10065
  };
10066
+ export declare type ConfluenceEmbedUpdated = {
10067
+ __typename?: 'ConfluenceEmbedUpdated';
10068
+ isBlankStateUpdate?: Maybe<Scalars['Boolean']['output']>;
10069
+ product?: Maybe<Scalars['String']['output']>;
10070
+ };
9971
10071
  export declare type ConfluenceFavoritedSummary = {
9972
10072
  __typename?: 'ConfluenceFavoritedSummary';
9973
10073
  favoritedAt?: Maybe<Scalars['String']['output']>;
@@ -10017,10 +10117,56 @@ export declare type ConfluenceInlineComment = ConfluenceComment & {
10017
10117
  resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
10018
10118
  status?: Maybe<ConfluenceCommentStatus>;
10019
10119
  };
10120
+ export declare type ConfluenceInlineCommentModified = {
10121
+ __typename?: 'ConfluenceInlineCommentModified';
10122
+ adfBodyContent?: Maybe<Scalars['String']['output']>;
10123
+ commentId?: Maybe<Scalars['ID']['output']>;
10124
+ eventType?: Maybe<ConfluenceInlineCommentModifiedType>;
10125
+ inlineCommentType?: Maybe<ConfluenceCommentLevel>;
10126
+ inlineResolveProperties?: Maybe<ConfluenceInlineCommentResolveProperties>;
10127
+ inlineText?: Maybe<Scalars['String']['output']>;
10128
+ markerRef?: Maybe<Scalars['String']['output']>;
10129
+ publishVersionNumber?: Maybe<Scalars['Int']['output']>;
10130
+ step?: Maybe<ConfluenceInlineCommentStep>;
10131
+ };
10132
+ export declare enum ConfluenceInlineCommentModifiedType {
10133
+ EditorInlineCommentCreated = "EDITOR_INLINE_COMMENT_CREATED",
10134
+ InlineCommentCreated = "INLINE_COMMENT_CREATED",
10135
+ InlineCommentDeleted = "INLINE_COMMENT_DELETED",
10136
+ InlineCommentReattached = "INLINE_COMMENT_REATTACHED",
10137
+ InlineCommentResolved = "INLINE_COMMENT_RESOLVED",
10138
+ InlineCommentUnresolved = "INLINE_COMMENT_UNRESOLVED",
10139
+ InlineCommentUpdated = "INLINE_COMMENT_UPDATED",
10140
+ RendererInlineCommentCreated = "RENDERER_INLINE_COMMENT_CREATED"
10141
+ }
10020
10142
  export declare enum ConfluenceInlineCommentResolutionStatus {
10021
10143
  Resolved = "RESOLVED",
10022
10144
  Unresolved = "UNRESOLVED"
10023
10145
  }
10146
+ export declare type ConfluenceInlineCommentResolveProperties = {
10147
+ __typename?: 'ConfluenceInlineCommentResolveProperties';
10148
+ isDangling?: Maybe<Scalars['Boolean']['output']>;
10149
+ resolved?: Maybe<Scalars['Boolean']['output']>;
10150
+ resolvedByDangling?: Maybe<Scalars['Boolean']['output']>;
10151
+ resolvedFriendlyDate?: Maybe<Scalars['String']['output']>;
10152
+ resolvedTime?: Maybe<Scalars['String']['output']>;
10153
+ resolvedUser?: Maybe<Scalars['String']['output']>;
10154
+ };
10155
+ export declare type ConfluenceInlineCommentStep = {
10156
+ __typename?: 'ConfluenceInlineCommentStep';
10157
+ from?: Maybe<Scalars['Int']['output']>;
10158
+ mark?: Maybe<ConfluenceInlineCommentStepMark>;
10159
+ pos?: Maybe<Scalars['Int']['output']>;
10160
+ to?: Maybe<Scalars['Int']['output']>;
10161
+ };
10162
+ export declare type ConfluenceInlineCommentStepMark = {
10163
+ __typename?: 'ConfluenceInlineCommentStepMark';
10164
+ attrs?: Maybe<ConfluenceInlineCommentStepMarkAttrs>;
10165
+ };
10166
+ export declare type ConfluenceInlineCommentStepMarkAttrs = {
10167
+ __typename?: 'ConfluenceInlineCommentStepMarkAttrs';
10168
+ annotationType?: Maybe<Scalars['String']['output']>;
10169
+ };
10024
10170
  export declare type ConfluenceInlineTask = {
10025
10171
  __typename?: 'ConfluenceInlineTask';
10026
10172
  assignedTo?: Maybe<ConfluenceUserInfo>;
@@ -15917,6 +16063,13 @@ export declare type ConfluencePageCommentsArgs = {
15917
16063
  export declare type ConfluencePagePropertiesArgs = {
15918
16064
  keys: Array<InputMaybe<Scalars['String']['input']>>;
15919
16065
  };
16066
+ export declare type ConfluencePageBlogified = {
16067
+ __typename?: 'ConfluencePageBlogified';
16068
+ blogTitle?: Maybe<Scalars['String']['output']>;
16069
+ converterDisplayName?: Maybe<Scalars['String']['output']>;
16070
+ spaceKey?: Maybe<Scalars['String']['output']>;
16071
+ spaceName?: Maybe<Scalars['String']['output']>;
16072
+ };
15920
16073
  export declare type ConfluencePageInfo = {
15921
16074
  __typename?: 'ConfluencePageInfo';
15922
16075
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -15928,6 +16081,19 @@ export declare type ConfluencePageLinks = {
15928
16081
  editUi?: Maybe<Scalars['String']['output']>;
15929
16082
  webUi?: Maybe<Scalars['String']['output']>;
15930
16083
  };
16084
+ export declare type ConfluencePageMigrated = {
16085
+ __typename?: 'ConfluencePageMigrated';
16086
+ fabricEligibility?: Maybe<Scalars['String']['output']>;
16087
+ };
16088
+ export declare type ConfluencePageMoved = {
16089
+ __typename?: 'ConfluencePageMoved';
16090
+ newSpaceAlias?: Maybe<Scalars['String']['output']>;
16091
+ newSpaceKey?: Maybe<Scalars['String']['output']>;
16092
+ oldParentId?: Maybe<Scalars['String']['output']>;
16093
+ oldPosition?: Maybe<Scalars['Int']['output']>;
16094
+ oldSpaceAlias?: Maybe<Scalars['String']['output']>;
16095
+ oldSpaceKey?: Maybe<Scalars['String']['output']>;
16096
+ };
15931
16097
  export declare type ConfluencePageProperty = {
15932
16098
  __typename?: 'ConfluencePageProperty';
15933
16099
  key: Scalars['String']['output'];
@@ -15944,6 +16110,11 @@ export declare enum ConfluencePageStatus {
15944
16110
  export declare enum ConfluencePageSubType {
15945
16111
  Live = "LIVE"
15946
16112
  }
16113
+ export declare type ConfluencePageUpdated = {
16114
+ __typename?: 'ConfluencePageUpdated';
16115
+ confVersion?: Maybe<Scalars['Int']['output']>;
16116
+ trigger?: Maybe<Scalars['String']['output']>;
16117
+ };
15947
16118
  export declare type ConfluencePageVersion = {
15948
16119
  __typename?: 'ConfluencePageVersion';
15949
16120
  author?: Maybe<ConfluenceUserInfo>;
@@ -15984,6 +16155,7 @@ export declare type ConfluencePerson = {
15984
16155
  permissionType?: Maybe<SitePermissionType>;
15985
16156
  profilePicture?: Maybe<Icon>;
15986
16157
  publicName?: Maybe<Scalars['String']['output']>;
16158
+ spacesAssigned?: Maybe<PaginatedSpaceList>;
15987
16159
  timeZone?: Maybe<Scalars['String']['output']>;
15988
16160
  type?: Maybe<Scalars['String']['output']>;
15989
16161
  userKey?: Maybe<Scalars['String']['output']>;
@@ -16214,6 +16386,17 @@ export declare type ConfluenceResolveInlineCommentPayload = {
16214
16386
  errors?: Maybe<Array<MutationError>>;
16215
16387
  success: Scalars['Boolean']['output'];
16216
16388
  };
16389
+ export declare type ConfluenceSchedulePublished = {
16390
+ __typename?: 'ConfluenceSchedulePublished';
16391
+ confVersion?: Maybe<Scalars['Int']['output']>;
16392
+ eventType?: Maybe<ConfluenceSchedulePublishedType>;
16393
+ publishTime?: Maybe<Scalars['String']['output']>;
16394
+ };
16395
+ export declare enum ConfluenceSchedulePublishedType {
16396
+ Published = "PUBLISHED",
16397
+ Scheduled = "SCHEDULED",
16398
+ Unscheduled = "UNSCHEDULED"
16399
+ }
16217
16400
  export declare type ConfluenceSearchConnection = {
16218
16401
  __typename?: 'ConfluenceSearchConnection';
16219
16402
  count?: Maybe<Scalars['Int']['output']>;
@@ -17405,6 +17588,8 @@ export declare type Content = {
17405
17588
  currentUserHasAncestorWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
17406
17589
  currentUserIsWatching: Scalars['Boolean']['output'];
17407
17590
  currentUserIsWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
17591
+ dataClassificationLevel?: Maybe<ContentDataClassificationLevel>;
17592
+ dataClassificationLevelId?: Maybe<Scalars['String']['output']>;
17408
17593
  deletableDescendantsCount: Scalars['Long']['output'];
17409
17594
  dynamicMobileBody?: Maybe<ContentBody>;
17410
17595
  embeddedProduct?: Maybe<Scalars['String']['output']>;
@@ -17422,7 +17607,6 @@ export declare type Content = {
17422
17607
  id?: Maybe<Scalars['ID']['output']>;
17423
17608
  inContentTree: Scalars['Boolean']['output'];
17424
17609
  incomingLinks?: Maybe<PaginatedContentList>;
17425
- isExportEnabled: Scalars['Boolean']['output'];
17426
17610
  labels?: Maybe<PaginatedLabelList>;
17427
17611
  likes?: Maybe<LikesResponse>;
17428
17612
  links?: Maybe<LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase>;
@@ -50921,10 +51105,6 @@ export declare enum GrowthUnifiedProfileCompanyType {
50921
51105
  Private = "PRIVATE",
50922
51106
  Public = "PUBLIC"
50923
51107
  }
50924
- export declare type GrowthUnifiedProfileConfluenceActivityContext = {
50925
- __typename?: 'GrowthUnifiedProfileConfluenceActivityContext';
50926
- r28PageDwells?: Maybe<Scalars['Int']['output']>;
50927
- };
50928
51108
  export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
50929
51109
  __typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
50930
51110
  jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
@@ -50934,6 +51114,10 @@ export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
50934
51114
  jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
50935
51115
  template?: InputMaybe<Scalars['String']['input']>;
50936
51116
  };
51117
+ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
51118
+ __typename?: 'GrowthUnifiedProfileConfluenceUserActivityContext';
51119
+ r28PageDwells?: Maybe<Scalars['Int']['output']>;
51120
+ };
50937
51121
  export declare type GrowthUnifiedProfileCreateProfileInput = {
50938
51122
  accountId?: InputMaybe<Scalars['ID']['input']>;
50939
51123
  anonymousId?: InputMaybe<Scalars['ID']['input']>;
@@ -50967,6 +51151,9 @@ export declare enum GrowthUnifiedProfileEntryType {
50967
51151
  Existing = "EXISTING",
50968
51152
  New = "NEW"
50969
51153
  }
51154
+ export declare type GrowthUnifiedProfileGetUnifiedUserProfileWhereInput = {
51155
+ tenantId: Scalars['String']['input'];
51156
+ };
50970
51157
  export declare type GrowthUnifiedProfileInput = {
50971
51158
  marketingContext?: InputMaybe<GrowthUnifiedProfileMarketingContextInput>;
50972
51159
  onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
@@ -51187,19 +51374,27 @@ export declare type GrowthUnifiedProfileUserActivityContext = {
51187
51374
  export declare type GrowthUnifiedProfileUserActivitySiteDetails = {
51188
51375
  __typename?: 'GrowthUnifiedProfileUserActivitySiteDetails';
51189
51376
  cloudId?: Maybe<Scalars['String']['output']>;
51190
- confluence?: Maybe<GrowthUnifiedProfileConfluenceActivityContext>;
51377
+ confluence?: Maybe<GrowthUnifiedProfileConfluenceUserActivityContext>;
51191
51378
  };
51192
51379
  export declare type GrowthUnifiedProfileUserFootprints = {
51193
51380
  __typename?: 'GrowthUnifiedProfileUserFootprints';
51194
51381
  hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
51195
51382
  products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
51196
51383
  };
51384
+ export declare enum GrowthUnifiedProfileUserIdType {
51385
+ AccountId = "ACCOUNT_ID",
51386
+ AnonymousId = "ANONYMOUS_ID"
51387
+ }
51197
51388
  export declare type GrowthUnifiedProfileUserProfile = {
51198
51389
  __typename?: 'GrowthUnifiedProfileUserProfile';
51199
51390
  domainType?: Maybe<GrowthUnifiedProfileDomainType>;
51200
51391
  teamType?: Maybe<Scalars['String']['output']>;
51201
51392
  userType?: Maybe<GrowthUnifiedProfileEntryType>;
51202
51393
  };
51394
+ export declare type GrowthUnifiedProfileUserProfileResult = {
51395
+ __typename?: 'GrowthUnifiedProfileUserProfileResult';
51396
+ userActivityContext?: Maybe<GrowthUnifiedProfileUserActivityContext>;
51397
+ };
51203
51398
  export declare type GrowthUnifiedProfileUtm = {
51204
51399
  __typename?: 'GrowthUnifiedProfileUtm';
51205
51400
  channel?: Maybe<GrowthUnifiedProfileChannel>;
@@ -52330,7 +52525,7 @@ export declare type HelpLayoutCreatePayload = Payload & {
52330
52525
  export declare type HelpLayoutCreationInput = {
52331
52526
  parentAri: Scalars['ID']['input'];
52332
52527
  sections: Array<HelpLayoutSectionInput>;
52333
- type?: InputMaybe<HelpLayoutType>;
52528
+ type: HelpLayoutType;
52334
52529
  };
52335
52530
  export declare type HelpLayoutEditorElement = HelpLayoutVisualEntity & Node & {
52336
52531
  __typename?: 'HelpLayoutEditorElement';
@@ -58117,12 +58312,28 @@ export declare type JiraFieldConfigFilterInput = {
58117
58312
  aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
58118
58313
  cloudId: Scalars['ID']['input'];
58119
58314
  fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
58315
+ fieldStatus?: InputMaybe<JiraFieldStatusType>;
58120
58316
  includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
58121
58317
  includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
58122
58318
  includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
58319
+ orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
58320
+ orderDirection?: InputMaybe<JiraFieldConfigOrderDirection>;
58123
58321
  projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
58124
58322
  searchString?: InputMaybe<Scalars['String']['input']>;
58125
58323
  };
58324
+ export declare enum JiraFieldConfigOrderBy {
58325
+ ContextCount = "CONTEXT_COUNT",
58326
+ LastUsed = "LAST_USED",
58327
+ Name = "NAME",
58328
+ PlannedDeleteDate = "PLANNED_DELETE_DATE",
58329
+ ProjectCount = "PROJECT_COUNT",
58330
+ ScreenCount = "SCREEN_COUNT",
58331
+ TrashedDate = "TRASHED_DATE"
58332
+ }
58333
+ export declare enum JiraFieldConfigOrderDirection {
58334
+ Asc = "ASC",
58335
+ Desc = "DESC"
58336
+ }
58126
58337
  export declare type JiraFieldConfigScheme = {
58127
58338
  __typename?: 'JiraFieldConfigScheme';
58128
58339
  description?: Maybe<Scalars['String']['output']>;
@@ -59793,6 +60004,7 @@ export declare type JiraIssueFieldConfig = Node & {
59793
60004
  associatedScreensCount?: Maybe<Scalars['Int']['output']>;
59794
60005
  customId?: Maybe<Scalars['Int']['output']>;
59795
60006
  dateCreated?: Maybe<Scalars['DateTime']['output']>;
60007
+ dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
59796
60008
  defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
59797
60009
  description?: Maybe<Scalars['String']['output']>;
59798
60010
  fieldId: Scalars['String']['output'];
@@ -59800,9 +60012,15 @@ export declare type JiraIssueFieldConfig = Node & {
59800
60012
  isCustom: Scalars['Boolean']['output'];
59801
60013
  isGlobal?: Maybe<Scalars['Boolean']['output']>;
59802
60014
  isLocked?: Maybe<Scalars['Boolean']['output']>;
60015
+ isTrashed?: Maybe<Scalars['Boolean']['output']>;
60016
+ isUnscreenable?: Maybe<Scalars['Boolean']['output']>;
59803
60017
  jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
59804
60018
  lastUsed?: Maybe<Scalars['DateTime']['output']>;
60019
+ lastUsedTimestamp?: Maybe<Scalars['Long']['output']>;
59805
60020
  name: Scalars['String']['output'];
60021
+ plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
60022
+ trashedByUser?: Maybe<User>;
60023
+ trashedTimestamp?: Maybe<Scalars['Long']['output']>;
59806
60024
  type: JiraConfigFieldType;
59807
60025
  };
59808
60026
  export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
@@ -64058,6 +64276,7 @@ export declare type JiraPlaybookStepRun = Node & {
64058
64276
  id: Scalars['ID']['output'];
64059
64277
  playbookId?: Maybe<Scalars['ID']['output']>;
64060
64278
  playbookName?: Maybe<Scalars['String']['output']>;
64279
+ ruleId?: Maybe<Scalars['String']['output']>;
64061
64280
  stepDuration?: Maybe<Scalars['Long']['output']>;
64062
64281
  stepId?: Maybe<Scalars['ID']['output']>;
64063
64282
  stepName?: Maybe<Scalars['String']['output']>;
@@ -69216,6 +69435,7 @@ export declare type JiraSubscription = {
69216
69435
  onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
69217
69436
  onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
69218
69437
  onIssueCreatedByProject?: Maybe<JiraIssue>;
69438
+ onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
69219
69439
  onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
69220
69440
  onIssueExported?: Maybe<JiraIssueExportEvent>;
69221
69441
  onIssueUpdatedByProject?: Maybe<JiraIssue>;
@@ -69272,6 +69492,10 @@ export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
69272
69492
  cloudId: Scalars['ID']['input'];
69273
69493
  projectId: Scalars['String']['input'];
69274
69494
  };
69495
+ export declare type JiraSubscriptionOnIssueCreatedByProjectNoEnrichmentArgs = {
69496
+ cloudId: Scalars['ID']['input'];
69497
+ projectId: Scalars['String']['input'];
69498
+ };
69275
69499
  export declare type JiraSubscriptionOnIssueDeletedByProjectArgs = {
69276
69500
  cloudId: Scalars['ID']['input'];
69277
69501
  projectId: Scalars['String']['input'];
@@ -73076,6 +73300,7 @@ export declare type KnowledgeDiscoverySearchUser = {
73076
73300
  avatarUrl?: Maybe<Scalars['String']['output']>;
73077
73301
  id: Scalars['String']['output'];
73078
73302
  locale?: Maybe<Scalars['String']['output']>;
73303
+ location?: Maybe<Scalars['String']['output']>;
73079
73304
  name: Scalars['String']['output'];
73080
73305
  title?: Maybe<Scalars['String']['output']>;
73081
73306
  zoneInfo?: Maybe<Scalars['String']['output']>;
@@ -73491,6 +73716,10 @@ export declare type LoomSpace = Node & {
73491
73716
  id: Scalars['ID']['output'];
73492
73717
  name: Scalars['String']['output'];
73493
73718
  };
73719
+ export declare enum LoomSpacePrivacyType {
73720
+ Private = "private",
73721
+ Workspace = "workspace"
73722
+ }
73494
73723
  export declare type LoomToken = {
73495
73724
  __typename?: 'LoomToken';
73496
73725
  token: Scalars['String']['output'];
@@ -73624,6 +73853,8 @@ export declare type LoomVideo = Node & {
73624
73853
  name: Scalars['String']['output'];
73625
73854
  owner?: Maybe<User>;
73626
73855
  ownerId?: Maybe<Scalars['String']['output']>;
73856
+ playableDuration?: Maybe<Scalars['Float']['output']>;
73857
+ sourceDuration?: Maybe<Scalars['Float']['output']>;
73627
73858
  transcript?: Maybe<LoomTranscript>;
73628
73859
  transcriptLanguage?: Maybe<LoomTranscriptLanguage>;
73629
73860
  url: Scalars['String']['output'];
@@ -76160,7 +76391,9 @@ export declare type MercuryChangeProposal = Node & {
76160
76391
  __typename?: 'MercuryChangeProposal';
76161
76392
  comments?: Maybe<MercuryChangeProposalCommentConnection>;
76162
76393
  description?: Maybe<Scalars['String']['output']>;
76394
+ focusArea?: Maybe<MercuryFocusArea>;
76163
76395
  id: Scalars['ID']['output'];
76396
+ impact?: Maybe<Scalars['Int']['output']>;
76164
76397
  name: Scalars['String']['output'];
76165
76398
  owner?: Maybe<User>;
76166
76399
  status?: Maybe<MercuryChangeProposalStatus>;
@@ -76276,6 +76509,8 @@ export declare type MercuryCreateChangeProposalCommentPayload = Payload & {
76276
76509
  export declare type MercuryCreateChangeProposalInput = {
76277
76510
  cloudId?: InputMaybe<Scalars['ID']['input']>;
76278
76511
  description?: InputMaybe<Scalars['String']['input']>;
76512
+ focusAreaId?: InputMaybe<Scalars['ID']['input']>;
76513
+ impact?: InputMaybe<Scalars['Int']['input']>;
76279
76514
  name: Scalars['String']['input'];
76280
76515
  owner?: InputMaybe<Scalars['ID']['input']>;
76281
76516
  strategicEventId: Scalars['ID']['input'];
@@ -76964,6 +77199,16 @@ export declare type MercuryMediaToken = {
76964
77199
  __typename?: 'MercuryMediaToken';
76965
77200
  token: Scalars['String']['output'];
76966
77201
  };
77202
+ export declare type MercuryMoveChangesInput = {
77203
+ changeIds: Array<Scalars['ID']['input']>;
77204
+ sourceChangeProposalId: Scalars['ID']['input'];
77205
+ targetChangeProposalId: Scalars['ID']['input'];
77206
+ };
77207
+ export declare type MercuryMoveChangesPayload = Payload & {
77208
+ __typename?: 'MercuryMoveChangesPayload';
77209
+ errors?: Maybe<Array<MutationError>>;
77210
+ success: Scalars['Boolean']['output'];
77211
+ };
76967
77212
  export declare type MercuryMoveFundsChange = MercuryChangeInterface & Node & {
76968
77213
  __typename?: 'MercuryMoveFundsChange';
76969
77214
  amount: Scalars['BigDecimal']['output'];
@@ -77723,13 +77968,19 @@ export declare type MercuryStrategicEventsMutationApi = {
77723
77968
  deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
77724
77969
  deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
77725
77970
  deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
77971
+ moveChanges?: Maybe<MercuryMoveChangesPayload>;
77726
77972
  proposeChanges?: Maybe<MercuryProposeChangesPayload>;
77727
77973
  transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
77728
77974
  transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
77729
77975
  updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
77730
77976
  updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
77977
+ updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
77731
77978
  updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
77732
77979
  updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
77980
+ updateMoveFundsChange: MercuryUpdateChangePayload;
77981
+ updateMovePositionsChange: MercuryUpdateChangePayload;
77982
+ updateRequestFundsChange: MercuryUpdateChangePayload;
77983
+ updateRequestPositionsChange: MercuryUpdateChangePayload;
77733
77984
  updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
77734
77985
  updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
77735
77986
  updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
@@ -77760,6 +78011,9 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
77760
78011
  export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
77761
78012
  input: MercuryDeleteStrategicEventCommentInput;
77762
78013
  };
78014
+ export declare type MercuryStrategicEventsMutationApiMoveChangesArgs = {
78015
+ input: MercuryMoveChangesInput;
78016
+ };
77763
78017
  export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
77764
78018
  input: MercuryProposeChangesInput;
77765
78019
  };
@@ -77775,12 +78029,27 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalComment
77775
78029
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
77776
78030
  input: MercuryUpdateChangeProposalDescriptionInput;
77777
78031
  };
78032
+ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalImpactArgs = {
78033
+ input: MercuryUpdateChangeProposalImpactInput;
78034
+ };
77778
78035
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArgs = {
77779
78036
  input: MercuryUpdateChangeProposalNameInput;
77780
78037
  };
77781
78038
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
77782
78039
  input: MercuryUpdateChangeProposalOwnerInput;
77783
78040
  };
78041
+ export declare type MercuryStrategicEventsMutationApiUpdateMoveFundsChangeArgs = {
78042
+ input: MercuryUpdateMoveFundsChangeInput;
78043
+ };
78044
+ export declare type MercuryStrategicEventsMutationApiUpdateMovePositionsChangeArgs = {
78045
+ input: MercuryUpdateMovePositionsChangeInput;
78046
+ };
78047
+ export declare type MercuryStrategicEventsMutationApiUpdateRequestFundsChangeArgs = {
78048
+ input: MercuryUpdateRequestFundsChangeInput;
78049
+ };
78050
+ export declare type MercuryStrategicEventsMutationApiUpdateRequestPositionsChangeArgs = {
78051
+ input: MercuryUpdateRequestPositionsChangeInput;
78052
+ };
77784
78053
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
77785
78054
  input: MercuryUpdateStrategicEventCommentInput;
77786
78055
  };
@@ -77958,6 +78227,18 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
77958
78227
  errors?: Maybe<Array<MutationError>>;
77959
78228
  success: Scalars['Boolean']['output'];
77960
78229
  };
78230
+ export declare type MercuryUpdateChangeFocusAreaInput = {
78231
+ focusAreaId?: InputMaybe<Scalars['ID']['input']>;
78232
+ };
78233
+ export declare type MercuryUpdateChangeMonetaryAmountInput = {
78234
+ monetaryAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
78235
+ };
78236
+ export declare type MercuryUpdateChangePayload = Payload & {
78237
+ __typename?: 'MercuryUpdateChangePayload';
78238
+ change?: Maybe<MercuryChange>;
78239
+ errors?: Maybe<Array<MutationError>>;
78240
+ success: Scalars['Boolean']['output'];
78241
+ };
77961
78242
  export declare type MercuryUpdateChangeProposalCommentInput = {
77962
78243
  cloudId?: InputMaybe<Scalars['ID']['input']>;
77963
78244
  content: Scalars['String']['input'];
@@ -77974,6 +78255,14 @@ export declare type MercuryUpdateChangeProposalDescriptionInput = {
77974
78255
  description: Scalars['String']['input'];
77975
78256
  id: Scalars['ID']['input'];
77976
78257
  };
78258
+ export declare type MercuryUpdateChangeProposalFocusAreaInput = {
78259
+ focusAreaId: Scalars['ID']['input'];
78260
+ id: Scalars['ID']['input'];
78261
+ };
78262
+ export declare type MercuryUpdateChangeProposalImpactInput = {
78263
+ id: Scalars['ID']['input'];
78264
+ impact: Scalars['Int']['input'];
78265
+ };
77977
78266
  export declare type MercuryUpdateChangeProposalNameInput = {
77978
78267
  cloudId?: InputMaybe<Scalars['ID']['input']>;
77979
78268
  id: Scalars['ID']['input'];
@@ -77990,6 +78279,9 @@ export declare type MercuryUpdateChangeProposalPayload = Payload & {
77990
78279
  success: Scalars['Boolean']['output'];
77991
78280
  updatedChangeProposal?: Maybe<MercuryChangeProposal>;
77992
78281
  };
78282
+ export declare type MercuryUpdateChangeQuantityInput = {
78283
+ quantity?: InputMaybe<Scalars['Int']['input']>;
78284
+ };
77993
78285
  export declare type MercuryUpdateCommentInput = {
77994
78286
  cloudId: Scalars['ID']['input'];
77995
78287
  commentText: Scalars['MercuryJSONString']['input'];
@@ -78041,6 +78333,19 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
78041
78333
  targetDate?: InputMaybe<Scalars['String']['input']>;
78042
78334
  targetDateType?: InputMaybe<MercuryTargetDateType>;
78043
78335
  };
78336
+ export declare type MercuryUpdateMoveFundsChangeInput = {
78337
+ amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
78338
+ changeId: Scalars['ID']['input'];
78339
+ sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
78340
+ targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
78341
+ };
78342
+ export declare type MercuryUpdateMovePositionsChangeInput = {
78343
+ changeId: Scalars['ID']['input'];
78344
+ cost?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
78345
+ positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
78346
+ sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
78347
+ targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
78348
+ };
78044
78349
  export declare type MercuryUpdatePortfolioNameInput = {
78045
78350
  cloudId: Scalars['ID']['input'];
78046
78351
  id: Scalars['ID']['input'];
@@ -78052,6 +78357,17 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
78052
78357
  success: Scalars['Boolean']['output'];
78053
78358
  updatedPortfolio?: Maybe<MercuryPortfolio>;
78054
78359
  };
78360
+ export declare type MercuryUpdateRequestFundsChangeInput = {
78361
+ amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
78362
+ changeId: Scalars['ID']['input'];
78363
+ targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
78364
+ };
78365
+ export declare type MercuryUpdateRequestPositionsChangeInput = {
78366
+ changeId: Scalars['ID']['input'];
78367
+ cost?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
78368
+ positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
78369
+ targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
78370
+ };
78055
78371
  export declare type MercuryUpdateStrategicEventCommentInput = {
78056
78372
  cloudId?: InputMaybe<Scalars['ID']['input']>;
78057
78373
  content: Scalars['String']['input'];
@@ -78761,6 +79077,7 @@ export declare type Mutation = {
78761
79077
  radar_createCustomField?: Maybe<RadarMutationResponse>;
78762
79078
  radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
78763
79079
  radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
79080
+ radar_updateConnector?: Maybe<RadarConnector>;
78764
79081
  radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
78765
79082
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
78766
79083
  radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
@@ -80198,6 +80515,10 @@ export declare type MutationRadar_DeleteRoleAssignmentArgs = {
80198
80515
  cloudId: Scalars['ID']['input'];
80199
80516
  input: RadarRoleAssignmentRequest;
80200
80517
  };
80518
+ export declare type MutationRadar_UpdateConnectorArgs = {
80519
+ cloudId: Scalars['ID']['input'];
80520
+ input: RadarConnectorsInput;
80521
+ };
80201
80522
  export declare type MutationRadar_UpdateFieldSettingsArgs = {
80202
80523
  cloudId: Scalars['ID']['input'];
80203
80524
  input: Array<RadarFieldSettingsInput>;
@@ -83721,6 +84042,7 @@ export declare type Query = {
83721
84042
  groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
83722
84043
  growthRecommendations?: Maybe<GrowthRecQuery>;
83723
84044
  growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
84045
+ growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
83724
84046
  hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
83725
84047
  hasUserCommented?: Maybe<Scalars['Boolean']['output']>;
83726
84048
  helpCenter?: Maybe<HelpCenterQueryApi>;
@@ -83764,6 +84086,7 @@ export declare type Query = {
83764
84086
  jira_categoryField?: Maybe<JiraJqlField>;
83765
84087
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
83766
84088
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
84089
+ jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
83767
84090
  jira_projectByIdOrKey?: Maybe<JiraProject>;
83768
84091
  jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
83769
84092
  jsmChat?: Maybe<JsmChatQuery>;
@@ -83780,6 +84103,7 @@ export declare type Query = {
83780
84103
  loomUserStatus?: Maybe<LoomUserStatus>;
83781
84104
  loom_comment?: Maybe<LoomComment>;
83782
84105
  loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
84106
+ loom_createSpace?: Maybe<LoomSpace>;
83783
84107
  loom_meeting?: Maybe<LoomMeeting>;
83784
84108
  loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
83785
84109
  loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
@@ -83871,6 +84195,7 @@ export declare type Query = {
83871
84195
  publishConditions?: Maybe<Array<Maybe<PublishConditions>>>;
83872
84196
  pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
83873
84197
  quickReload?: Maybe<QuickReload>;
84198
+ radar_connectors?: Maybe<Array<RadarConnector>>;
83874
84199
  radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
83875
84200
  radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
83876
84201
  radar_positionByAri?: Maybe<RadarPosition>;
@@ -85896,6 +86221,11 @@ export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
85896
86221
  anonymousId?: InputMaybe<Scalars['ID']['input']>;
85897
86222
  tenantId?: InputMaybe<Scalars['ID']['input']>;
85898
86223
  };
86224
+ export declare type QueryGrowthUnifiedProfile_GetUnifiedUserProfileArgs = {
86225
+ id: Scalars['String']['input'];
86226
+ idType: GrowthUnifiedProfileUserIdType;
86227
+ where?: InputMaybe<GrowthUnifiedProfileGetUnifiedUserProfileWhereInput>;
86228
+ };
85899
86229
  export declare type QueryHasUserCommentedArgs = {
85900
86230
  accountId: Scalars['String']['input'];
85901
86231
  };
@@ -86020,6 +86350,9 @@ export declare type QueryJira_IsRovoLlmEnabledArgs = {
86020
86350
  export declare type QueryJira_IssueSearchViewsByIdsArgs = {
86021
86351
  ids: Array<Scalars['ID']['input']>;
86022
86352
  };
86353
+ export declare type QueryJira_IssuesByIdsArgs = {
86354
+ ids: Array<Scalars['ID']['input']>;
86355
+ };
86023
86356
  export declare type QueryJira_ProjectByIdOrKeyArgs = {
86024
86357
  cloudId: Scalars['ID']['input'];
86025
86358
  idOrKey: Scalars['String']['input'];
@@ -86054,6 +86387,12 @@ export declare type QueryLoom_CommentArgs = {
86054
86387
  export declare type QueryLoom_CommentsArgs = {
86055
86388
  ids: Array<Scalars['ID']['input']>;
86056
86389
  };
86390
+ export declare type QueryLoom_CreateSpaceArgs = {
86391
+ analyticsSource?: InputMaybe<Scalars['String']['input']>;
86392
+ name: Scalars['String']['input'];
86393
+ privacy?: InputMaybe<LoomSpacePrivacyType>;
86394
+ siteId: Scalars['ID']['input'];
86395
+ };
86057
86396
  export declare type QueryLoom_MeetingArgs = {
86058
86397
  id: Scalars['ID']['input'];
86059
86398
  };
@@ -86345,6 +86684,9 @@ export declare type QueryQuickReloadArgs = {
86345
86684
  pageId: Scalars['Long']['input'];
86346
86685
  since: Scalars['Long']['input'];
86347
86686
  };
86687
+ export declare type QueryRadar_ConnectorsArgs = {
86688
+ cloudId: Scalars['ID']['input'];
86689
+ };
86348
86690
  export declare type QueryRadar_FieldValuesArgs = {
86349
86691
  after?: InputMaybe<Scalars['String']['input']>;
86350
86692
  before?: InputMaybe<Scalars['String']['input']>;
@@ -86883,6 +87225,19 @@ export declare type RadarConnection = {
86883
87225
  pageInfo: PageInfo;
86884
87226
  totalCount: Scalars['Int']['output'];
86885
87227
  };
87228
+ export declare type RadarConnector = {
87229
+ __typename?: 'RadarConnector';
87230
+ connectorId: Scalars['ID']['output'];
87231
+ connectorName?: Maybe<Scalars['String']['output']>;
87232
+ connectorType?: Maybe<Scalars['String']['output']>;
87233
+ id: Scalars['ID']['output'];
87234
+ isEnabled: Scalars['Boolean']['output'];
87235
+ isHealthy?: Maybe<Scalars['Boolean']['output']>;
87236
+ };
87237
+ export declare type RadarConnectorsInput = {
87238
+ connectorId: Scalars['ID']['input'];
87239
+ isEnabled: Scalars['Boolean']['input'];
87240
+ };
86886
87241
  export declare type RadarCustomFieldInput = {
86887
87242
  displayName: Scalars['String']['input'];
86888
87243
  entity: RadarEntityType;
@@ -86901,7 +87256,6 @@ export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
86901
87256
  functions: Array<RadarFunctionId>;
86902
87257
  isHidden?: Maybe<Scalars['Boolean']['output']>;
86903
87258
  operators: Array<RadarFilterOperators>;
86904
- plurality: RadarFilterPlurality;
86905
87259
  type: RadarFilterInputType;
86906
87260
  };
86907
87261
  export declare type RadarEdge = {
@@ -86986,14 +87340,8 @@ export declare type RadarFilterOptions = {
86986
87340
  functions: Array<RadarFunctionId>;
86987
87341
  isHidden?: Maybe<Scalars['Boolean']['output']>;
86988
87342
  operators: Array<RadarFilterOperators>;
86989
- plurality: RadarFilterPlurality;
86990
87343
  type: RadarFilterInputType;
86991
87344
  };
86992
- export declare enum RadarFilterPlurality {
86993
- And = "AND",
86994
- None = "NONE",
86995
- Or = "OR"
86996
- }
86997
87345
  export declare type RadarFocusAreaMappingsInput = {
86998
87346
  focusAreaAri?: InputMaybe<Scalars['ID']['input']>;
86999
87347
  positionAri: Scalars['ID']['input'];
@@ -87143,7 +87491,6 @@ export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
87143
87491
  functions: Array<RadarFunctionId>;
87144
87492
  isHidden?: Maybe<Scalars['Boolean']['output']>;
87145
87493
  operators: Array<RadarFilterOperators>;
87146
- plurality: RadarFilterPlurality;
87147
87494
  type: RadarFilterInputType;
87148
87495
  values?: Maybe<Array<Maybe<RadarFieldValue>>>;
87149
87496
  };
@@ -87261,6 +87608,7 @@ export declare enum RateLimitingCurrency {
87261
87608
  ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
87262
87609
  ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
87263
87610
  ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
87611
+ ForgeCustomMetricsCurrency = "FORGE_CUSTOM_METRICS_CURRENCY",
87264
87612
  ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
87265
87613
  HelpCenterCurrency = "HELP_CENTER_CURRENCY",
87266
87614
  HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
@@ -94954,6 +95302,14 @@ export declare type TrelloActionAttachmentPreviewEntity = {
94954
95302
  type?: Maybe<Scalars['String']['output']>;
94955
95303
  url?: Maybe<Scalars['URL']['output']>;
94956
95304
  };
95305
+ export declare type TrelloActionBoardEntity = {
95306
+ __typename?: 'TrelloActionBoardEntity';
95307
+ id?: Maybe<Scalars['ID']['output']>;
95308
+ name?: Maybe<Scalars['String']['output']>;
95309
+ shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
95310
+ text?: Maybe<Scalars['String']['output']>;
95311
+ type?: Maybe<Scalars['String']['output']>;
95312
+ };
94957
95313
  export declare type TrelloActionCardEntity = {
94958
95314
  __typename?: 'TrelloActionCardEntity';
94959
95315
  closed?: Maybe<Scalars['Boolean']['output']>;
@@ -94984,6 +95340,11 @@ export declare type TrelloActionCommentEntity = {
94984
95340
  textHtml?: Maybe<Scalars['String']['output']>;
94985
95341
  type?: Maybe<Scalars['String']['output']>;
94986
95342
  };
95343
+ export declare type TrelloActionDateEntity = {
95344
+ __typename?: 'TrelloActionDateEntity';
95345
+ date?: Maybe<Scalars['DateTime']['output']>;
95346
+ type?: Maybe<Scalars['String']['output']>;
95347
+ };
94987
95348
  export declare type TrelloActionLimits = {
94988
95349
  __typename?: 'TrelloActionLimits';
94989
95350
  reactions?: Maybe<TrelloReactionLimits>;
@@ -95183,6 +95544,7 @@ export declare type TrelloBoard = Node & {
95183
95544
  shortLink: Scalars['TrelloShortLink']['output'];
95184
95545
  shortUrl?: Maybe<Scalars['URL']['output']>;
95185
95546
  tags?: Maybe<TrelloTagConnection>;
95547
+ type?: Maybe<Scalars['String']['output']>;
95186
95548
  url?: Maybe<Scalars['URL']['output']>;
95187
95549
  viewer?: Maybe<TrelloBoardViewer>;
95188
95550
  workspace?: Maybe<TrelloWorkspace>;
@@ -95478,6 +95840,7 @@ export declare type TrelloCard = Node & {
95478
95840
  shortId?: Maybe<Scalars['Int']['output']>;
95479
95841
  shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
95480
95842
  shortUrl?: Maybe<Scalars['URL']['output']>;
95843
+ singleInstrumentationId?: Maybe<Scalars['String']['output']>;
95481
95844
  startedAt?: Maybe<Scalars['DateTime']['output']>;
95482
95845
  stickers?: Maybe<TrelloStickerConnection>;
95483
95846
  url?: Maybe<Scalars['URL']['output']>;
@@ -95537,10 +95900,13 @@ export declare enum TrelloCardActionType {
95537
95900
  AddMember = "ADD_MEMBER",
95538
95901
  Comment = "COMMENT",
95539
95902
  MoveCard = "MOVE_CARD",
95903
+ MoveCardToBoard = "MOVE_CARD_TO_BOARD",
95904
+ MoveInboxCardToBoard = "MOVE_INBOX_CARD_TO_BOARD",
95540
95905
  RemoveChecklist = "REMOVE_CHECKLIST",
95541
- RemoveMember = "REMOVE_MEMBER"
95906
+ RemoveMember = "REMOVE_MEMBER",
95907
+ UpdateCardDue = "UPDATE_CARD_DUE"
95542
95908
  }
95543
- export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloMoveCardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction;
95909
+ export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardDueAction;
95544
95910
  export declare type TrelloCardAttachmentsByType = {
95545
95911
  __typename?: 'TrelloCardAttachmentsByType';
95546
95912
  trello?: Maybe<TrelloCardAttachmentsCount>;
@@ -96261,6 +96627,45 @@ export declare type TrelloMoveCardActionDisplayEntities = {
96261
96627
  listBefore?: Maybe<TrelloActionListEntity>;
96262
96628
  memberCreator?: Maybe<TrelloActionMemberEntity>;
96263
96629
  };
96630
+ export declare type TrelloMoveCardBoardEntities = {
96631
+ __typename?: 'TrelloMoveCardBoardEntities';
96632
+ board?: Maybe<TrelloActionBoardEntity>;
96633
+ card?: Maybe<TrelloActionCardEntity>;
96634
+ memberCreator?: Maybe<TrelloActionMemberEntity>;
96635
+ };
96636
+ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
96637
+ __typename?: 'TrelloMoveCardToBoardAction';
96638
+ appCreator?: Maybe<TrelloAppCreator>;
96639
+ board?: Maybe<TrelloBoard>;
96640
+ card?: Maybe<TrelloCard>;
96641
+ creator?: Maybe<TrelloMember>;
96642
+ date?: Maybe<Scalars['DateTime']['output']>;
96643
+ displayEntities?: Maybe<TrelloMoveCardBoardEntities>;
96644
+ displayKey?: Maybe<Scalars['String']['output']>;
96645
+ id: Scalars['ID']['output'];
96646
+ limits?: Maybe<TrelloActionLimits>;
96647
+ reactions?: Maybe<Array<TrelloReaction>>;
96648
+ type?: Maybe<Scalars['String']['output']>;
96649
+ };
96650
+ export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
96651
+ __typename?: 'TrelloMoveInboxCardToBoardAction';
96652
+ appCreator?: Maybe<TrelloAppCreator>;
96653
+ board?: Maybe<TrelloBoard>;
96654
+ card?: Maybe<TrelloCard>;
96655
+ creator?: Maybe<TrelloMember>;
96656
+ date?: Maybe<Scalars['DateTime']['output']>;
96657
+ displayEntities?: Maybe<TrelloMoveInboxCardToBoardEntities>;
96658
+ displayKey?: Maybe<Scalars['String']['output']>;
96659
+ id: Scalars['ID']['output'];
96660
+ limits?: Maybe<TrelloActionLimits>;
96661
+ reactions?: Maybe<Array<TrelloReaction>>;
96662
+ type?: Maybe<Scalars['String']['output']>;
96663
+ };
96664
+ export declare type TrelloMoveInboxCardToBoardEntities = {
96665
+ __typename?: 'TrelloMoveInboxCardToBoardEntities';
96666
+ card?: Maybe<TrelloActionCardEntity>;
96667
+ memberCreator?: Maybe<TrelloActionMemberEntity>;
96668
+ };
96264
96669
  export declare type TrelloMutationApi = {
96265
96670
  __typename?: 'TrelloMutationApi';
96266
96671
  addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
@@ -96794,7 +97199,8 @@ export declare type TrelloQueryApiBoardByShortLinkArgs = {
96794
97199
  shortLink: Scalars['TrelloShortLink']['input'];
96795
97200
  };
96796
97201
  export declare type TrelloQueryApiBoardMirrorCardInfoArgs = {
96797
- id: Scalars['ID']['input'];
97202
+ id?: InputMaybe<Scalars['ID']['input']>;
97203
+ shortLink?: InputMaybe<Scalars['TrelloShortLink']['input']>;
96798
97204
  };
96799
97205
  export declare type TrelloQueryApiCardArgs = {
96800
97206
  id: Scalars['ID']['input'];
@@ -97008,7 +97414,8 @@ export declare type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
97008
97414
  id: Scalars['ID']['input'];
97009
97415
  };
97010
97416
  export declare enum TrelloSupportedPlannerProviders {
97011
- Google = "GOOGLE"
97417
+ Google = "GOOGLE",
97418
+ Outlook = "OUTLOOK"
97012
97419
  }
97013
97420
  export declare type TrelloSwitcherViewsInfo = {
97014
97421
  __typename?: 'TrelloSwitcherViewsInfo';
@@ -97141,6 +97548,26 @@ export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payloa
97141
97548
  success: Scalars['Boolean']['output'];
97142
97549
  viewer?: Maybe<TrelloBoardViewer>;
97143
97550
  };
97551
+ export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
97552
+ __typename?: 'TrelloUpdateCardDueAction';
97553
+ appCreator?: Maybe<TrelloAppCreator>;
97554
+ board?: Maybe<TrelloBoard>;
97555
+ card?: Maybe<TrelloCard>;
97556
+ creator?: Maybe<TrelloMember>;
97557
+ date?: Maybe<Scalars['DateTime']['output']>;
97558
+ displayEntities?: Maybe<TrelloUpdateCardDueActionDisplayEntities>;
97559
+ displayKey?: Maybe<Scalars['String']['output']>;
97560
+ id: Scalars['ID']['output'];
97561
+ limits?: Maybe<TrelloActionLimits>;
97562
+ reactions?: Maybe<Array<TrelloReaction>>;
97563
+ type?: Maybe<Scalars['String']['output']>;
97564
+ };
97565
+ export declare type TrelloUpdateCardDueActionDisplayEntities = {
97566
+ __typename?: 'TrelloUpdateCardDueActionDisplayEntities';
97567
+ card?: Maybe<TrelloActionCardEntity>;
97568
+ date?: Maybe<TrelloActionDateEntity>;
97569
+ memberCreator?: Maybe<TrelloActionMemberEntity>;
97570
+ };
97144
97571
  export declare type TrelloUpdateCardNameInput = {
97145
97572
  cardId: Scalars['ID']['input'];
97146
97573
  name?: InputMaybe<Scalars['String']['input']>;
@@ -97198,6 +97625,10 @@ export declare type TrelloWorkspaceTagsArgs = {
97198
97625
  after?: InputMaybe<Scalars['String']['input']>;
97199
97626
  first?: InputMaybe<Scalars['Int']['input']>;
97200
97627
  };
97628
+ export declare type TrelloWorkspaceEnterpriseUpdated = {
97629
+ __typename?: 'TrelloWorkspaceEnterpriseUpdated';
97630
+ id?: Maybe<Scalars['ID']['output']>;
97631
+ };
97201
97632
  export declare type TrelloWorkspaceLimits = {
97202
97633
  __typename?: 'TrelloWorkspaceLimits';
97203
97634
  freeBoards?: Maybe<TrelloLimitProps>;
@@ -97246,6 +97677,7 @@ export declare enum TrelloWorkspaceTier {
97246
97677
  export declare type TrelloWorkspaceUpdated = {
97247
97678
  __typename?: 'TrelloWorkspaceUpdated';
97248
97679
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
97680
+ enterprise?: Maybe<TrelloWorkspaceEnterpriseUpdated>;
97249
97681
  id: Scalars['ID']['output'];
97250
97682
  offering?: Maybe<Scalars['String']['output']>;
97251
97683
  planner?: Maybe<TrelloPlannerUpdated>;
@@ -99353,6 +99785,12 @@ export declare type VirtualAgentConversationsFilter = {
99353
99785
  startDate: Scalars['DateTime']['input'];
99354
99786
  states?: InputMaybe<Array<VirtualAgentConversationState>>;
99355
99787
  };
99788
+ export declare type VirtualAgentCopyIntentRuleProjectionPayload = {
99789
+ __typename?: 'VirtualAgentCopyIntentRuleProjectionPayload';
99790
+ errors?: Maybe<Array<MutationError>>;
99791
+ intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
99792
+ success: Scalars['Boolean']['output'];
99793
+ };
99356
99794
  export declare type VirtualAgentCreateChatChannelInput = {
99357
99795
  isTriageChannel: Scalars['Boolean']['input'];
99358
99796
  isVirtualAgentTestChannel: Scalars['Boolean']['input'];
@@ -99583,6 +100021,7 @@ export declare type VirtualAgentLiveIntentCountResponse = {
99583
100021
  };
99584
100022
  export declare type VirtualAgentMutationApi = {
99585
100023
  __typename?: 'VirtualAgentMutationApi';
100024
+ copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
99586
100025
  createChatChannel?: Maybe<VirtualAgentCreateChatChannelPayload>;
99587
100026
  createIntentRuleProjection?: Maybe<VirtualAgentCreateIntentRuleProjectionPayload>;
99588
100027
  createVirtualAgentConfiguration?: Maybe<VirtualAgentCreateConfigurationPayload>;
@@ -99595,6 +100034,9 @@ export declare type VirtualAgentMutationApi = {
99595
100034
  updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
99596
100035
  updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
99597
100036
  };
100037
+ export declare type VirtualAgentMutationApiCopyIntentRuleProjectionArgs = {
100038
+ virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
100039
+ };
99598
100040
  export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
99599
100041
  input: VirtualAgentCreateChatChannelInput;
99600
100042
  virtualAgentConfigurationId: Scalars['ID']['input'];