@forge/cli-shared 3.4.1-next.3 → 3.4.1-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.
@@ -964,6 +964,7 @@ export declare type AriGraphCreateRelationshipsPayload = Payload & {
964
964
  __typename?: 'AriGraphCreateRelationshipsPayload';
965
965
  success: Scalars['Boolean'];
966
966
  errors?: Maybe<Array<MutationError>>;
967
+ createdRelationships?: Maybe<Array<AriGraphRelationship>>;
967
968
  };
968
969
  export declare type AriGraphDeleteRelationshipsInput = {
969
970
  from?: Maybe<Scalars['ID']>;
@@ -2059,7 +2060,7 @@ export declare type CompassCatalogQueryApiComponentArgs = {
2059
2060
  };
2060
2061
  export declare type CompassCatalogQueryApiComponentByExternalAliasArgs = {
2061
2062
  cloudId: Scalars['ID'];
2062
- externalSource?: Maybe<Scalars['ID']>;
2063
+ externalSource: Scalars['ID'];
2063
2064
  externalID: Scalars['ID'];
2064
2065
  };
2065
2066
  export declare type CompassCatalogQueryApiComponentTypeArgs = {
@@ -2756,12 +2757,12 @@ export declare type CompassEventsQuery = {
2756
2757
  export declare type CompassEventsQueryResult = CompassEventConnection | QueryError;
2757
2758
  export declare type CompassExternalAlias = {
2758
2759
  __typename?: 'CompassExternalAlias';
2759
- externalSource?: Maybe<Scalars['ID']>;
2760
+ externalSource: Scalars['ID'];
2760
2761
  externalAliasId: Scalars['ID'];
2761
2762
  };
2762
2763
  export declare type CompassExternalAliasInput = {
2763
2764
  externalId: Scalars['ID'];
2764
- externalSource?: Maybe<Scalars['ID']>;
2765
+ externalSource: Scalars['ID'];
2765
2766
  };
2766
2767
  export declare type CompassExternalMetricSourceConfigurationInput = {
2767
2768
  slo?: Maybe<CompassSloMetricSourceConfigurationInput>;
@@ -2994,7 +2995,7 @@ export declare enum CompassLinkType {
2994
2995
  OnCall = "ON_CALL",
2995
2996
  OtherLink = "OTHER_LINK"
2996
2997
  }
2997
- export declare type CompassMetricDefinition = {
2998
+ export declare type CompassMetricDefinition = Node & {
2998
2999
  __typename?: 'CompassMetricDefinition';
2999
3000
  id: Scalars['ID'];
3000
3001
  name?: Maybe<Scalars['String']>;
@@ -6797,10 +6798,18 @@ export declare type DeveloperLogAccessResult = {
6797
6798
  export declare type DirectoryMutation = {
6798
6799
  __typename?: 'DirectoryMutation';
6799
6800
  removeUserFromOrganization?: Maybe<DirectoryRemoveUserPayload>;
6801
+ restoreUserAccess?: Maybe<DirectoryRestoreUserAccessPayload>;
6802
+ suspendUserAccess?: Maybe<DirectorySuspendUserAccessPayload>;
6800
6803
  };
6801
6804
  export declare type DirectoryMutationRemoveUserFromOrganizationArgs = {
6802
6805
  input?: Maybe<DirectoryRemoveUserInput>;
6803
6806
  };
6807
+ export declare type DirectoryMutationRestoreUserAccessArgs = {
6808
+ input?: Maybe<DirectoryRestoreUserInput>;
6809
+ };
6810
+ export declare type DirectoryMutationSuspendUserAccessArgs = {
6811
+ input?: Maybe<DirectorySuspendUserInput>;
6812
+ };
6804
6813
  export declare type DirectoryQuery = {
6805
6814
  __typename?: 'DirectoryQuery';
6806
6815
  _version?: Maybe<Scalars['String']>;
@@ -6814,6 +6823,24 @@ export declare type DirectoryRemoveUserPayload = Payload & {
6814
6823
  success: Scalars['Boolean'];
6815
6824
  errors?: Maybe<Array<MutationError>>;
6816
6825
  };
6826
+ export declare type DirectoryRestoreUserAccessPayload = Payload & {
6827
+ __typename?: 'DirectoryRestoreUserAccessPayload';
6828
+ success: Scalars['Boolean'];
6829
+ errors?: Maybe<Array<MutationError>>;
6830
+ };
6831
+ export declare type DirectoryRestoreUserInput = {
6832
+ orgId: Scalars['ID'];
6833
+ accountId: Scalars['ID'];
6834
+ };
6835
+ export declare type DirectorySuspendUserAccessPayload = Payload & {
6836
+ __typename?: 'DirectorySuspendUserAccessPayload';
6837
+ success: Scalars['Boolean'];
6838
+ errors?: Maybe<Array<MutationError>>;
6839
+ };
6840
+ export declare type DirectorySuspendUserInput = {
6841
+ orgId: Scalars['ID'];
6842
+ accountId: Scalars['ID'];
6843
+ };
6817
6844
  export declare type DvcsBitbucketWorkspaceConnection = {
6818
6845
  __typename?: 'DvcsBitbucketWorkspaceConnection';
6819
6846
  edges?: Maybe<Array<Maybe<DvcsBitbucketWorkspaceEdge>>>;
@@ -6961,7 +6988,7 @@ export declare enum EventMatchingStrategies {
6961
6988
  ByAccount = "BY_ACCOUNT",
6962
6989
  JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT"
6963
6990
  }
6964
- export declare type EventSource = {
6991
+ export declare type EventSource = Node & {
6965
6992
  __typename?: 'EventSource';
6966
6993
  id: Scalars['ID'];
6967
6994
  externalEventSourceId: Scalars['ID'];
@@ -7261,6 +7288,24 @@ export declare type ForgeMetricsLabelGroup = {
7261
7288
  key: Scalars['String'];
7262
7289
  value: Scalars['String'];
7263
7290
  };
7291
+ export declare type ForgeMetricsLatenciesData = ForgeMetricsData & {
7292
+ __typename?: 'ForgeMetricsLatenciesData';
7293
+ name: Scalars['String'];
7294
+ type: ForgeMetricsDataType;
7295
+ series: Array<ForgeMetricsLatenciesSeries>;
7296
+ interval: ForgeMetricsIntervalRange;
7297
+ };
7298
+ export declare type ForgeMetricsLatenciesDataPoint = {
7299
+ __typename?: 'ForgeMetricsLatenciesDataPoint';
7300
+ bucket: Scalars['String'];
7301
+ count: Scalars['Int'];
7302
+ };
7303
+ export declare type ForgeMetricsLatenciesResult = ForgeMetricsLatenciesData | QueryError;
7304
+ export declare type ForgeMetricsLatenciesSeries = ForgeMetricsSeries & {
7305
+ __typename?: 'ForgeMetricsLatenciesSeries';
7306
+ groups: Array<ForgeMetricsLabelGroup>;
7307
+ data: Array<ForgeMetricsLatenciesDataPoint>;
7308
+ };
7264
7309
  export declare type ForgeMetricsQuery = {
7265
7310
  __typename?: 'ForgeMetricsQuery';
7266
7311
  appId: Scalars['ID'];
@@ -7271,6 +7316,7 @@ export declare type ForgeMetricsQuery = {
7271
7316
  errors: ForgeMetricsErrorsResult;
7272
7317
  errorsValue: ForgeMetricsErrorsValueResult;
7273
7318
  sites: ForgeMetricsSitesResult;
7319
+ latencies: ForgeMetricsLatenciesResult;
7274
7320
  };
7275
7321
  export declare type ForgeMetricsQuerySuccessRateArgs = {
7276
7322
  query: ForgeMetricsQueryInput;
@@ -7293,6 +7339,9 @@ export declare type ForgeMetricsQueryErrorsValueArgs = {
7293
7339
  export declare type ForgeMetricsQuerySitesArgs = {
7294
7340
  query: ForgeMetricsQueryInput;
7295
7341
  };
7342
+ export declare type ForgeMetricsQueryLatenciesArgs = {
7343
+ query: ForgeMetricsQueryInput;
7344
+ };
7296
7345
  export declare type ForgeMetricsQueryFilters = {
7297
7346
  environment?: Maybe<Scalars['ID']>;
7298
7347
  contextAris?: Maybe<Array<Scalars['ID']>>;
@@ -7469,7 +7518,6 @@ export declare enum GrantCheckProduct {
7469
7518
  JiraServicedesk = "JIRA_SERVICEDESK",
7470
7519
  Confluence = "CONFLUENCE",
7471
7520
  Compass = "COMPASS",
7472
- Avocado = "AVOCADO",
7473
7521
  NoGrantChecks = "NO_GRANT_CHECKS"
7474
7522
  }
7475
7523
  export declare type HelpCenter = Node & {
@@ -7505,7 +7553,7 @@ export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
7505
7553
  errors?: Maybe<Array<MutationError>>;
7506
7554
  topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
7507
7555
  };
7508
- export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreQueryError;
7556
+ export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError;
7509
7557
  export declare type HelpCenterMutationApi = {
7510
7558
  __typename?: 'HelpCenterMutationApi';
7511
7559
  createTopic?: Maybe<HelpCenterCreateTopicPayload>;
@@ -7613,15 +7661,35 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
7613
7661
  icon?: Maybe<HelpObjectStoreIcon>;
7614
7662
  displayLink?: Maybe<Scalars['URL']>;
7615
7663
  entityId?: Maybe<Scalars['String']>;
7664
+ entityKey?: Maybe<Scalars['String']>;
7616
7665
  entityProjectId?: Maybe<Scalars['String']>;
7666
+ containerId?: Maybe<Scalars['String']>;
7667
+ containerKey?: Maybe<Scalars['String']>;
7617
7668
  };
7618
7669
  export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
7619
7670
  export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
7620
7671
  helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
7621
7672
  };
7673
+ export declare type HelpObjectStoreChannel = HelpObjectStoreHelpObject & Node & {
7674
+ __typename?: 'HelpObjectStoreChannel';
7675
+ id: Scalars['ID'];
7676
+ ari: Scalars['ID'];
7677
+ title?: Maybe<Scalars['String']>;
7678
+ description?: Maybe<Scalars['String']>;
7679
+ icon?: Maybe<HelpObjectStoreIcon>;
7680
+ displayLink?: Maybe<Scalars['URL']>;
7681
+ entityId?: Maybe<Scalars['String']>;
7682
+ entityKey?: Maybe<Scalars['String']>;
7683
+ containerId?: Maybe<Scalars['String']>;
7684
+ containerKey?: Maybe<Scalars['String']>;
7685
+ };
7686
+ export declare type HelpObjectStoreChannelResult = HelpObjectStoreChannel | HelpObjectStoreQueryError;
7622
7687
  export declare type HelpObjectStoreCreateEntityMappingInput = {
7623
7688
  entityId: Scalars['String'];
7624
- projectId: Scalars['String'];
7689
+ entityKey?: Maybe<Scalars['String']>;
7690
+ projectId?: Maybe<Scalars['String']>;
7691
+ containerId?: Maybe<Scalars['String']>;
7692
+ containerKey?: Maybe<Scalars['String']>;
7625
7693
  type: HelpObjectStoreJsmEntityType;
7626
7694
  };
7627
7695
  export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
@@ -7640,7 +7708,8 @@ export declare type HelpObjectStoreHelpObject = {
7640
7708
  };
7641
7709
  export declare enum HelpObjectStoreHelpObjectType {
7642
7710
  RequestForm = "REQUEST_FORM",
7643
- Article = "ARTICLE"
7711
+ Article = "ARTICLE",
7712
+ Channel = "CHANNEL"
7644
7713
  }
7645
7714
  export declare type HelpObjectStoreIcon = {
7646
7715
  __typename?: 'HelpObjectStoreIcon';
@@ -7648,7 +7717,8 @@ export declare type HelpObjectStoreIcon = {
7648
7717
  };
7649
7718
  export declare enum HelpObjectStoreJsmEntityType {
7650
7719
  RequestForm = "REQUEST_FORM",
7651
- Article = "ARTICLE"
7720
+ Article = "ARTICLE",
7721
+ Channel = "CHANNEL"
7652
7722
  }
7653
7723
  export declare type HelpObjectStoreMutationApi = {
7654
7724
  __typename?: 'HelpObjectStoreMutationApi';
@@ -7661,6 +7731,7 @@ export declare type HelpObjectStoreQueryApi = {
7661
7731
  __typename?: 'HelpObjectStoreQueryApi';
7662
7732
  requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
7663
7733
  articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
7734
+ channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
7664
7735
  };
7665
7736
  export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
7666
7737
  ids: Array<Scalars['ID']>;
@@ -7668,6 +7739,9 @@ export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
7668
7739
  export declare type HelpObjectStoreQueryApiArticlesArgs = {
7669
7740
  ids: Array<Scalars['ID']>;
7670
7741
  };
7742
+ export declare type HelpObjectStoreQueryApiChannelsArgs = {
7743
+ ids: Array<Scalars['ID']>;
7744
+ };
7671
7745
  export declare type HelpObjectStoreQueryError = {
7672
7746
  __typename?: 'HelpObjectStoreQueryError';
7673
7747
  ari: Scalars['ID'];
@@ -7683,14 +7757,20 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
7683
7757
  icon?: Maybe<HelpObjectStoreIcon>;
7684
7758
  displayLink?: Maybe<Scalars['URL']>;
7685
7759
  entityId?: Maybe<Scalars['String']>;
7760
+ entityKey?: Maybe<Scalars['String']>;
7686
7761
  entityProjectId?: Maybe<Scalars['String']>;
7762
+ containerId?: Maybe<Scalars['String']>;
7763
+ containerKey?: Maybe<Scalars['String']>;
7687
7764
  };
7688
7765
  export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
7689
7766
  export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
7690
7767
  __typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
7691
7768
  ari: Scalars['ID'];
7692
7769
  entityId: Scalars['String'];
7693
- projectId: Scalars['String'];
7770
+ entityKey?: Maybe<Scalars['String']>;
7771
+ projectId?: Maybe<Scalars['String']>;
7772
+ containerId?: Maybe<Scalars['String']>;
7773
+ containerKey?: Maybe<Scalars['String']>;
7694
7774
  };
7695
7775
  export declare type HostedResourcePreSignedUrl = {
7696
7776
  __typename?: 'HostedResourcePreSignedUrl';
@@ -9845,8 +9925,9 @@ export declare type JiraIssueHierarchyConfigurationMutationInput = {
9845
9925
  export declare type JiraIssueHierarchyConfigurationMutationResult = {
9846
9926
  __typename?: 'JiraIssueHierarchyConfigurationMutationResult';
9847
9927
  updateInitiated: Scalars['Boolean'];
9848
- updateIssuesCount?: Maybe<Scalars['Long']>;
9849
9928
  success: Scalars['Boolean'];
9929
+ updateIssuesCount?: Maybe<Scalars['Long']>;
9930
+ updateIssuesJQL?: Maybe<Scalars['String']>;
9850
9931
  errors?: Maybe<Array<JiraHierarchyConfigError>>;
9851
9932
  };
9852
9933
  export declare type JiraIssueHierarchyConfigurationQuery = {
@@ -11709,7 +11790,9 @@ export declare type JiraProjectAction = {
11709
11790
  export declare enum JiraProjectActionType {
11710
11791
  EditProjectConfig = "EDIT_PROJECT_CONFIG",
11711
11792
  ViewIssues = "VIEW_ISSUES",
11712
- CreateIssues = "CREATE_ISSUES"
11793
+ CreateIssues = "CREATE_ISSUES",
11794
+ DeleteIssues = "DELETE_ISSUES",
11795
+ LinkIssues = "LINK_ISSUES"
11713
11796
  }
11714
11797
  export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
11715
11798
  id: Scalars['ID'];
@@ -12219,6 +12302,8 @@ export declare type JiraQueryVersionsForProjectArgs = {
12219
12302
  last?: Maybe<Scalars['Int']>;
12220
12303
  before?: Maybe<Scalars['String']>;
12221
12304
  filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
12305
+ releaseDateAfter?: Maybe<Scalars['Date']>;
12306
+ releaseDateBefore?: Maybe<Scalars['Date']>;
12222
12307
  searchString?: Maybe<Scalars['String']>;
12223
12308
  };
12224
12309
  export declare type JiraQueryVersionDetailPageArgs = {
@@ -15380,6 +15465,8 @@ export declare type Mutation = {
15380
15465
  applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
15381
15466
  setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
15382
15467
  setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
15468
+ polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
15469
+ polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
15383
15470
  refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
15384
15471
  setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
15385
15472
  createPolarisView?: Maybe<CreatePolarisViewPayload>;
@@ -15435,6 +15522,7 @@ export declare type Mutation = {
15435
15522
  setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
15436
15523
  planModeCardMove?: Maybe<MoveCardOutput>;
15437
15524
  planModeCardCreate?: Maybe<CreateCardsOutput>;
15525
+ splitIssue?: Maybe<SplitIssueOutput>;
15438
15526
  createApp?: Maybe<CreateAppResponse>;
15439
15527
  updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
15440
15528
  deleteApp?: Maybe<DeleteAppResponse>;
@@ -15689,6 +15777,12 @@ export declare type MutationSetPolarisProjectOnboardedArgs = {
15689
15777
  export declare type MutationSetPolarisSelectedDeliveryProjectArgs = {
15690
15778
  input: SetPolarisSelectedDeliveryProjectInput;
15691
15779
  };
15780
+ export declare type MutationPolarisAddReactionArgs = {
15781
+ input: PolarisAddReactionInput;
15782
+ };
15783
+ export declare type MutationPolarisDeleteReactionArgs = {
15784
+ input: PolarisDeleteReactionInput;
15785
+ };
15692
15786
  export declare type MutationRefreshPolarisSnippetsArgs = {
15693
15787
  input: RefreshPolarisSnippetsInput;
15694
15788
  };
@@ -15844,6 +15938,9 @@ export declare type MutationPlanModeCardMoveArgs = {
15844
15938
  export declare type MutationPlanModeCardCreateArgs = {
15845
15939
  input?: Maybe<PlanModeCardCreateInput>;
15846
15940
  };
15941
+ export declare type MutationSplitIssueArgs = {
15942
+ input?: Maybe<SplitIssueInput>;
15943
+ };
15847
15944
  export declare type MutationCreateAppArgs = {
15848
15945
  input: CreateAppInput;
15849
15946
  };
@@ -16024,6 +16121,17 @@ export declare type NewCardParent = {
16024
16121
  summary: Scalars['String'];
16025
16122
  issueTypeId: Scalars['ID'];
16026
16123
  };
16124
+ export declare type NewSplitIssueRequest = {
16125
+ summary: Scalars['String'];
16126
+ estimate?: Maybe<Scalars['String']>;
16127
+ estimateFieldId?: Maybe<Scalars['String']>;
16128
+ destinationId?: Maybe<Scalars['ID']>;
16129
+ };
16130
+ export declare type NewSplitIssueResponse = {
16131
+ __typename?: 'NewSplitIssueResponse';
16132
+ id: Scalars['ID'];
16133
+ key: Scalars['String'];
16134
+ };
16027
16135
  export declare type Node = {
16028
16136
  id: Scalars['ID'];
16029
16137
  };
@@ -16066,6 +16174,142 @@ export declare type OAuthClientsScopeDetails = {
16066
16174
  key: Scalars['String'];
16067
16175
  description?: Maybe<Scalars['String']>;
16068
16176
  };
16177
+ export declare type OfferingBillingCycle = {
16178
+ __typename?: 'OfferingBillingCycle';
16179
+ count?: Maybe<Scalars['Int']>;
16180
+ interval?: Maybe<Scalars['String']>;
16181
+ name?: Maybe<Scalars['String']>;
16182
+ };
16183
+ export declare type OfferingBillingSpecificTier = {
16184
+ __typename?: 'OfferingBillingSpecificTier';
16185
+ editionType?: Maybe<Scalars['String']>;
16186
+ entitionTypeIsDepercated?: Maybe<Scalars['Boolean']>;
16187
+ price?: Maybe<Scalars['Float']>;
16188
+ unitBlockSize?: Maybe<Scalars['Int']>;
16189
+ unitLabel?: Maybe<Scalars['String']>;
16190
+ unitLimit?: Maybe<Scalars['Int']>;
16191
+ unitStart?: Maybe<Scalars['Int']>;
16192
+ };
16193
+ export declare type OfferingBtfInput = {
16194
+ productKey: Scalars['ID'];
16195
+ };
16196
+ export declare type OfferingBtfProduct = OfferingBtfProductNode & {
16197
+ __typename?: 'OfferingBtfProduct';
16198
+ annual?: Maybe<Array<Maybe<OfferingBillingSpecificTier>>>;
16199
+ billingType?: Maybe<Scalars['String']>;
16200
+ contactSalesForAdditionalPricing?: Maybe<Scalars['Boolean']>;
16201
+ currency?: Maybe<Scalars['String']>;
16202
+ dataCenter?: Maybe<Scalars['Boolean']>;
16203
+ discountOptOut?: Maybe<Scalars['Boolean']>;
16204
+ lastModified?: Maybe<Scalars['String']>;
16205
+ marketplaceAddon?: Maybe<Scalars['Boolean']>;
16206
+ monthly?: Maybe<Array<Maybe<OfferingBillingSpecificTier>>>;
16207
+ orderableItems?: Maybe<Array<Maybe<OfferingBtfProductItem>>>;
16208
+ parentDescription?: Maybe<Scalars['String']>;
16209
+ parentKey?: Maybe<Scalars['String']>;
16210
+ productDescription?: Maybe<Scalars['String']>;
16211
+ productKey: Scalars['ID'];
16212
+ productType?: Maybe<Scalars['String']>;
16213
+ userCountEnforced?: Maybe<Scalars['Boolean']>;
16214
+ };
16215
+ export declare type OfferingBtfProductItem = {
16216
+ __typename?: 'OfferingBtfProductItem';
16217
+ amount?: Maybe<Scalars['Float']>;
16218
+ description?: Maybe<Scalars['String']>;
16219
+ edition?: Maybe<Scalars['String']>;
16220
+ editionDescription?: Maybe<Scalars['String']>;
16221
+ editionId?: Maybe<Scalars['String']>;
16222
+ editionType?: Maybe<Scalars['String']>;
16223
+ editionTypeIsDeprecated?: Maybe<Scalars['Boolean']>;
16224
+ enterprise?: Maybe<Scalars['Boolean']>;
16225
+ licenseType?: Maybe<Scalars['String']>;
16226
+ monthsValid?: Maybe<Scalars['Int']>;
16227
+ newPricingPlanItem?: Maybe<Scalars['String']>;
16228
+ orderableItemId: Scalars['ID'];
16229
+ publiclyAvailable?: Maybe<Scalars['Boolean']>;
16230
+ renewalAmount?: Maybe<Scalars['Float']>;
16231
+ renewalFrequency?: Maybe<Scalars['String']>;
16232
+ saleType?: Maybe<Scalars['String']>;
16233
+ sku?: Maybe<Scalars['String']>;
16234
+ starter?: Maybe<Scalars['Boolean']>;
16235
+ unitCount?: Maybe<Scalars['Int']>;
16236
+ unitLabel?: Maybe<Scalars['String']>;
16237
+ };
16238
+ export declare type OfferingBtfProductNode = {
16239
+ productKey: Scalars['ID'];
16240
+ };
16241
+ export declare type OfferingCloudInput = {
16242
+ key: Scalars['ID'];
16243
+ };
16244
+ export declare type OfferingCloudProduct = OfferingCloudProductNode & {
16245
+ __typename?: 'OfferingCloudProduct';
16246
+ chargeElements?: Maybe<Array<Maybe<Scalars['String']>>>;
16247
+ key: Scalars['ID'];
16248
+ name?: Maybe<Scalars['String']>;
16249
+ offerings?: Maybe<Array<Maybe<OfferingItem>>>;
16250
+ uncollectibleAction?: Maybe<OfferingUncollectibleAction>;
16251
+ };
16252
+ export declare type OfferingCloudProductNode = {
16253
+ key: Scalars['ID'];
16254
+ };
16255
+ export declare type OfferingFilter = {
16256
+ btfProduct?: Maybe<OfferingBtfInput>;
16257
+ cloudProduct?: Maybe<OfferingCloudInput>;
16258
+ };
16259
+ export declare type OfferingItem = {
16260
+ __typename?: 'OfferingItem';
16261
+ apps?: Maybe<Array<Maybe<OfferingItem>>>;
16262
+ billingType?: Maybe<Scalars['String']>;
16263
+ hostingType?: Maybe<Scalars['String']>;
16264
+ key: Scalars['ID'];
16265
+ level?: Maybe<Scalars['Int']>;
16266
+ name?: Maybe<Scalars['String']>;
16267
+ pricingPlans?: Maybe<Array<Maybe<OfferingPricingPlan>>>;
16268
+ pricingType?: Maybe<Scalars['String']>;
16269
+ sku?: Maybe<Scalars['String']>;
16270
+ supportedBillingSystems?: Maybe<Array<Maybe<Scalars['String']>>>;
16271
+ };
16272
+ export declare type OfferingPricingPlan = {
16273
+ __typename?: 'OfferingPricingPlan';
16274
+ currency?: Maybe<Scalars['String']>;
16275
+ description?: Maybe<Scalars['String']>;
16276
+ items?: Maybe<Array<Maybe<OfferingPricingPlanItem>>>;
16277
+ key: Scalars['ID'];
16278
+ primaryCycle?: Maybe<OfferingBillingCycle>;
16279
+ sku?: Maybe<Scalars['String']>;
16280
+ type?: Maybe<Scalars['String']>;
16281
+ };
16282
+ export declare type OfferingPricingPlanItem = {
16283
+ __typename?: 'OfferingPricingPlanItem';
16284
+ chargeElement?: Maybe<Scalars['String']>;
16285
+ chargeType?: Maybe<Scalars['String']>;
16286
+ cycle?: Maybe<OfferingBillingCycle>;
16287
+ tiers?: Maybe<Array<Maybe<OfferingPricingTier>>>;
16288
+ tiersMode?: Maybe<Scalars['String']>;
16289
+ };
16290
+ export declare type OfferingPricingTier = {
16291
+ __typename?: 'OfferingPricingTier';
16292
+ amount?: Maybe<Scalars['Float']>;
16293
+ ceiling?: Maybe<Scalars['Float']>;
16294
+ flatAmount?: Maybe<Scalars['Float']>;
16295
+ floor?: Maybe<Scalars['Float']>;
16296
+ policy?: Maybe<Scalars['String']>;
16297
+ unitAmount?: Maybe<Scalars['Float']>;
16298
+ };
16299
+ export declare type OfferingResponse = {
16300
+ __typename?: 'OfferingResponse';
16301
+ btfProducts?: Maybe<Array<Maybe<OfferingBtfProduct>>>;
16302
+ cloudProducts?: Maybe<Array<Maybe<OfferingCloudProduct>>>;
16303
+ };
16304
+ export declare type OfferingUncollectibleAction = {
16305
+ __typename?: 'OfferingUncollectibleAction';
16306
+ destination?: Maybe<OfferingUncollectibleDestination>;
16307
+ type?: Maybe<Scalars['String']>;
16308
+ };
16309
+ export declare type OfferingUncollectibleDestination = {
16310
+ __typename?: 'OfferingUncollectibleDestination';
16311
+ offeringKey: Scalars['ID'];
16312
+ };
16069
16313
  export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
16070
16314
  export declare type OpsgenieAlertCountByPriority = {
16071
16315
  __typename?: 'OpsgenieAlertCountByPriority';
@@ -16223,6 +16467,13 @@ export declare type OriginalEstimate = {
16223
16467
  value?: Maybe<Scalars['Float']>;
16224
16468
  valueAsText?: Maybe<Scalars['String']>;
16225
16469
  };
16470
+ export declare type OriginalSplitIssue = {
16471
+ id: Scalars['ID'];
16472
+ summary: Scalars['String'];
16473
+ estimate?: Maybe<Scalars['String']>;
16474
+ estimateFieldId?: Maybe<Scalars['String']>;
16475
+ destinationId?: Maybe<Scalars['ID']>;
16476
+ };
16226
16477
  export declare type PageInfo = {
16227
16478
  __typename?: 'PageInfo';
16228
16479
  hasNextPage: Scalars['Boolean'];
@@ -16265,6 +16516,18 @@ export declare enum PlanModeDestination {
16265
16516
  Backlog = "BACKLOG",
16266
16517
  Sprint = "SPRINT"
16267
16518
  }
16519
+ export declare type PolarisAddReactionInput = {
16520
+ containerAri: Scalars['String'];
16521
+ ari: Scalars['String'];
16522
+ emojiId: Scalars['String'];
16523
+ metadata?: Maybe<Scalars['JSON']>;
16524
+ };
16525
+ export declare type PolarisAddReactionPayload = Payload & {
16526
+ __typename?: 'PolarisAddReactionPayload';
16527
+ success: Scalars['Boolean'];
16528
+ errors?: Maybe<Array<MutationError>>;
16529
+ node: Array<PolarisReactionSummary>;
16530
+ };
16268
16531
  export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
16269
16532
  export declare type PolarisAnonymousVisitorViewHash = {
16270
16533
  __typename?: 'PolarisAnonymousVisitorViewHash';
@@ -16315,6 +16578,18 @@ export declare type PolarisDelegationToken = {
16315
16578
  token: Scalars['String'];
16316
16579
  expires: Scalars['String'];
16317
16580
  };
16581
+ export declare type PolarisDeleteReactionInput = {
16582
+ containerAri: Scalars['String'];
16583
+ ari: Scalars['String'];
16584
+ emojiId: Scalars['String'];
16585
+ metadata?: Maybe<Scalars['JSON']>;
16586
+ };
16587
+ export declare type PolarisDeleteReactionPayload = Payload & {
16588
+ __typename?: 'PolarisDeleteReactionPayload';
16589
+ success: Scalars['Boolean'];
16590
+ errors?: Maybe<Array<MutationError>>;
16591
+ node: Array<PolarisReactionSummary>;
16592
+ };
16318
16593
  export declare enum PolarisFieldType {
16319
16594
  PolarisIdeaStringField = "PolarisIdeaStringField",
16320
16595
  PolarisIdeaDateTimeField = "PolarisIdeaDateTimeField",
@@ -16328,11 +16603,21 @@ export declare enum PolarisFieldType {
16328
16603
  PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
16329
16604
  PolarisIdeaExternalReferencePropertyField = "PolarisIdeaExternalReferencePropertyField",
16330
16605
  PolarisIdeaIntervalField = "PolarisIdeaIntervalField",
16606
+ PolarisIdeaReactionsField = "PolarisIdeaReactionsField",
16331
16607
  PolarisIdeaPlayField = "PolarisIdeaPlayField"
16332
16608
  }
16333
16609
  export declare type PolarisFilterInput = {
16334
16610
  jql?: Maybe<Scalars['String']>;
16335
16611
  };
16612
+ export declare type PolarisGetDetailedReactionInput = {
16613
+ containerAri: Scalars['String'];
16614
+ ari: Scalars['String'];
16615
+ emojiId: Scalars['String'];
16616
+ };
16617
+ export declare type PolarisGetReactionsInput = {
16618
+ containerAri: Scalars['String'];
16619
+ aris?: Maybe<Array<Scalars['String']>>;
16620
+ };
16336
16621
  export declare type PolarisGroupValue = {
16337
16622
  __typename?: 'PolarisGroupValue';
16338
16623
  label?: Maybe<Scalars['String']>;
@@ -16759,6 +17044,25 @@ export declare type PolarisIdeaPlayField = PolarisIdeaField & {
16759
17044
  aspect?: Maybe<Scalars['String']>;
16760
17045
  builtin?: Maybe<BuiltinPolarisIdeaField>;
16761
17046
  };
17047
+ export declare type PolarisIdeaReactionsField = PolarisIdeaField & {
17048
+ __typename?: 'PolarisIdeaReactionsField';
17049
+ id: Scalars['ID'];
17050
+ fieldId?: Maybe<Scalars['Int']>;
17051
+ fieldName?: Maybe<Scalars['String']>;
17052
+ label: Scalars['String'];
17053
+ editable: Scalars['Boolean'];
17054
+ sortable: Scalars['Boolean'];
17055
+ groupable: Scalars['Boolean'];
17056
+ linearizable: Scalars['Boolean'];
17057
+ defaultSortOrder?: Maybe<PolarisSortOrder>;
17058
+ jiraFieldKey?: Maybe<Scalars['String']>;
17059
+ decorations?: Maybe<Array<PolarisDecoration>>;
17060
+ formula?: Maybe<Scalars['JSON']>;
17061
+ presentation?: Maybe<PolarisPresentation>;
17062
+ description?: Maybe<Scalars['String']>;
17063
+ emoji?: Maybe<Scalars['String']>;
17064
+ builtin?: Maybe<BuiltinPolarisIdeaField>;
17065
+ };
16762
17066
  export declare type PolarisIdeaSpecialField = PolarisIdeaField & {
16763
17067
  __typename?: 'PolarisIdeaSpecialField';
16764
17068
  id: Scalars['ID'];
@@ -17051,6 +17355,25 @@ export declare type PolarisRankingQueryNamespace = {
17051
17355
  export declare type PolarisRankingQueryNamespaceListArgs = {
17052
17356
  listId: Scalars['ID'];
17053
17357
  };
17358
+ export declare type PolarisReaction = {
17359
+ __typename?: 'PolarisReaction';
17360
+ key: Scalars['String'];
17361
+ value: Array<PolarisReactionSummary>;
17362
+ };
17363
+ export declare type PolarisReactionSummary = {
17364
+ __typename?: 'PolarisReactionSummary';
17365
+ ari: Scalars['String'];
17366
+ containerAri: Scalars['String'];
17367
+ emojiId: Scalars['String'];
17368
+ count: Scalars['Int'];
17369
+ reacted: Scalars['Boolean'];
17370
+ users?: Maybe<Array<PolarisReactionUser>>;
17371
+ };
17372
+ export declare type PolarisReactionUser = {
17373
+ __typename?: 'PolarisReactionUser';
17374
+ id: Scalars['String'];
17375
+ displayName: Scalars['String'];
17376
+ };
17054
17377
  export declare enum PolarisRefreshError {
17055
17378
  NeedAuth = "NEED_AUTH",
17056
17379
  InvalidSnippet = "INVALID_SNIPPET",
@@ -17418,6 +17741,8 @@ export declare type Query = {
17418
17741
  polaris?: Maybe<PolarisQueryNamespace>;
17419
17742
  polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
17420
17743
  polarisViewArrangementInfo?: Maybe<Scalars['JSON']>;
17744
+ polarisGetReactions?: Maybe<Array<Maybe<PolarisReaction>>>;
17745
+ polarisGetDetailedReaction?: Maybe<PolarisReactionSummary>;
17421
17746
  appActiveTunnels?: Maybe<AppTunnelDefinitions>;
17422
17747
  dvcs?: Maybe<DvcsQuery>;
17423
17748
  webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
@@ -17429,6 +17754,8 @@ export declare type Query = {
17429
17754
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
17430
17755
  marketplaceUser?: Maybe<MarketplaceUser>;
17431
17756
  compass?: Maybe<CompassCatalogQueryApi>;
17757
+ offeringCatalog?: Maybe<OfferingResponse>;
17758
+ offeringDetails?: Maybe<OfferingResponse>;
17432
17759
  extensionsEcho?: Maybe<Scalars['String']>;
17433
17760
  extensionContexts?: Maybe<Array<ExtensionContext>>;
17434
17761
  extensionByKey?: Maybe<Extension>;
@@ -17471,6 +17798,7 @@ export declare type Query = {
17471
17798
  jwmOverview?: Maybe<JiraWorkManagementOverview>;
17472
17799
  jwmOverviews?: Maybe<JiraWorkManagementOverviewConnection>;
17473
17800
  tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
17801
+ surfacePlatform?: Maybe<SurfacePlatformQueryApi>;
17474
17802
  virtualAgent?: Maybe<VirtualAgentQueryApi>;
17475
17803
  jiraReleases?: Maybe<JiraReleases>;
17476
17804
  appDeployment?: Maybe<AppDeployment>;
@@ -17661,6 +17989,12 @@ export declare type QueryPolarisIdeaTemplatesArgs = {
17661
17989
  export declare type QueryPolarisViewArrangementInfoArgs = {
17662
17990
  id: Scalars['ID'];
17663
17991
  };
17992
+ export declare type QueryPolarisGetReactionsArgs = {
17993
+ input: PolarisGetReactionsInput;
17994
+ };
17995
+ export declare type QueryPolarisGetDetailedReactionArgs = {
17996
+ input: PolarisGetDetailedReactionInput;
17997
+ };
17664
17998
  export declare type QueryAppActiveTunnelsArgs = {
17665
17999
  appId: Scalars['ID'];
17666
18000
  environmentId: Scalars['ID'];
@@ -17692,6 +18026,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
17692
18026
  hostingType: AtlassianProductHostingType;
17693
18027
  pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
17694
18028
  };
18029
+ export declare type QueryOfferingDetailsArgs = {
18030
+ filter?: Maybe<OfferingFilter>;
18031
+ };
17695
18032
  export declare type QueryExtensionsEchoArgs = {
17696
18033
  text: Scalars['String'];
17697
18034
  };
@@ -18366,6 +18703,7 @@ export declare type RoadmapUserConfiguration = {
18366
18703
  isProgressVisible: Scalars['Boolean'];
18367
18704
  isWarningsVisible: Scalars['Boolean'];
18368
18705
  listWidth: Scalars['Long'];
18706
+ issuePanelRatio?: Maybe<Scalars['Float']>;
18369
18707
  timelineMode: RoadmapTimelineMode;
18370
18708
  epicView: RoadmapEpicView;
18371
18709
  levelOneView: RoadmapLevelOneView;
@@ -19181,12 +19519,13 @@ export declare type ShepherdAlert = Node & {
19181
19519
  createdOn: Scalars['DateTime'];
19182
19520
  description?: Maybe<ShepherdDescriptionTemplate>;
19183
19521
  id: Scalars['ID'];
19184
- orgId: Scalars['ID'];
19522
+ orgId?: Maybe<Scalars['ID']>;
19185
19523
  status: ShepherdAlertStatus;
19186
19524
  supportingData?: Maybe<ShepherdAlertSupportingData>;
19187
19525
  template?: Maybe<ShepherdAlertTemplateType>;
19188
19526
  title: Scalars['String'];
19189
19527
  updatedOn?: Maybe<Scalars['DateTime']>;
19528
+ workspaceId?: Maybe<Scalars['ID']>;
19190
19529
  };
19191
19530
  export declare enum ShepherdAlertDescriptionType {
19192
19531
  AlertInfo = "ALERT_INFO",
@@ -19228,10 +19567,10 @@ export declare type ShepherdAlertSupportingData = {
19228
19567
  };
19229
19568
  export declare enum ShepherdAlertTemplateType {
19230
19569
  AddedOrgadmin = "ADDED_ORGADMIN",
19231
- AdminPasswordReset = "ADMIN_PASSWORD_RESET",
19232
19570
  ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
19233
19571
  ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
19234
19572
  ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
19573
+ ConfluenceSuspiciousSearch = "CONFLUENCE_SUSPICIOUS_SEARCH",
19235
19574
  CreatedAuthPolicy = "CREATED_AUTH_POLICY",
19236
19575
  CreatedInstallation = "CREATED_INSTALLATION",
19237
19576
  CreatedPolicy = "CREATED_POLICY",
@@ -19245,10 +19584,10 @@ export declare enum ShepherdAlertTemplateType {
19245
19584
  DeletedTunnel = "DELETED_TUNNEL",
19246
19585
  EnableScimSync = "ENABLE_SCIM_SYNC",
19247
19586
  ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
19587
+ IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
19248
19588
  InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
19249
19589
  JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
19250
19590
  OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
19251
- PasswordResetCompletedUser = "PASSWORD_RESET_COMPLETED_USER",
19252
19591
  RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
19253
19592
  TokenCreated = "TOKEN_CREATED",
19254
19593
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
@@ -19710,8 +20049,12 @@ export declare type ShepherdWorkspaceMutationPayload = Payload & {
19710
20049
  };
19711
20050
  export declare type ShepherdWorkspaceMutations = {
19712
20051
  __typename?: 'ShepherdWorkspaceMutations';
20052
+ onboard?: Maybe<ShepherdWorkspaceMutationPayload>;
19713
20053
  update?: Maybe<ShepherdWorkspaceMutationPayload>;
19714
20054
  };
20055
+ export declare type ShepherdWorkspaceMutationsOnboardArgs = {
20056
+ id: Scalars['ID'];
20057
+ };
19715
20058
  export declare type ShepherdWorkspaceMutationsUpdateArgs = {
19716
20059
  id: Scalars['ID'];
19717
20060
  input: ShepherdWorkspaceUpdateInput;
@@ -19913,6 +20256,18 @@ export declare enum SortDirection {
19913
20256
  Asc = "ASC",
19914
20257
  Desc = "DESC"
19915
20258
  }
20259
+ export declare type SplitIssueInput = {
20260
+ originalIssue: OriginalSplitIssue;
20261
+ newIssues: Array<Maybe<NewSplitIssueRequest>>;
20262
+ };
20263
+ export declare type SplitIssueOutput = MutationResponse & {
20264
+ __typename?: 'SplitIssueOutput';
20265
+ newIssues?: Maybe<Array<Maybe<NewSplitIssueResponse>>>;
20266
+ statusCode: Scalars['Int'];
20267
+ success: Scalars['Boolean'];
20268
+ message: Scalars['String'];
20269
+ clientMutationId?: Maybe<Scalars['ID']>;
20270
+ };
19916
20271
  export declare type Sprint = {
19917
20272
  __typename?: 'Sprint';
19918
20273
  id?: Maybe<Scalars['ID']>;
@@ -20371,6 +20726,24 @@ export declare type SupportRequests = {
20371
20726
  total: Scalars['Int'];
20372
20727
  page: Array<SupportRequest>;
20373
20728
  };
20729
+ export declare type SurfacePlatformQueryApi = {
20730
+ __typename?: 'SurfacePlatformQueryApi';
20731
+ surface?: Maybe<SurfacePlatformSurface>;
20732
+ };
20733
+ export declare type SurfacePlatformQueryApiSurfaceArgs = {
20734
+ id: Scalars['ID'];
20735
+ };
20736
+ export declare type SurfacePlatformSurface = {
20737
+ __typename?: 'SurfacePlatformSurface';
20738
+ channels?: Maybe<Array<Maybe<Scalars['String']>>>;
20739
+ description?: Maybe<Scalars['String']>;
20740
+ id: Scalars['ID'];
20741
+ locale?: Maybe<Scalars['String']>;
20742
+ name?: Maybe<Scalars['String']>;
20743
+ status?: Maybe<Scalars['String']>;
20744
+ version?: Maybe<Scalars['String']>;
20745
+ zones?: Maybe<Scalars['JSON']>;
20746
+ };
20374
20747
  export declare type Swimlane = {
20375
20748
  __typename?: 'Swimlane';
20376
20749
  id?: Maybe<Scalars['ID']>;
@@ -21608,6 +21981,8 @@ export declare type VirtualAgentCreateIntentRuleProjectionInput = {
21608
21981
  name: Scalars['String'];
21609
21982
  description?: Maybe<Scalars['String']>;
21610
21983
  questions?: Maybe<Array<Scalars['String']>>;
21984
+ confirmationMessage?: Maybe<Scalars['String']>;
21985
+ suggestionButtonText?: Maybe<Scalars['String']>;
21611
21986
  };
21612
21987
  export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
21613
21988
  __typename?: 'VirtualAgentCreateIntentRuleProjectionPayload';
@@ -21655,6 +22030,8 @@ export declare type VirtualAgentIntentRuleProjection = Node & {
21655
22030
  isEnabled: Scalars['Boolean'];
21656
22031
  intentProjection?: Maybe<VirtualAgentIntentProjectionResult>;
21657
22032
  flowJsonRepresentation?: Maybe<Scalars['String']>;
22033
+ confirmationMessage?: Maybe<Scalars['String']>;
22034
+ suggestionButtonText?: Maybe<Scalars['String']>;
21658
22035
  };
21659
22036
  export declare type VirtualAgentIntentRuleProjectionEdge = {
21660
22037
  __typename?: 'VirtualAgentIntentRuleProjectionEdge';
@@ -21730,6 +22107,8 @@ export declare type VirtualAgentUpdateIntentRuleProjectionInput = {
21730
22107
  isEnabled?: Maybe<Scalars['Boolean']>;
21731
22108
  name?: Maybe<Scalars['String']>;
21732
22109
  description?: Maybe<Scalars['String']>;
22110
+ confirmationMessage?: Maybe<Scalars['String']>;
22111
+ suggestionButtonText?: Maybe<Scalars['String']>;
21733
22112
  };
21734
22113
  export declare type VirtualAgentUpdateIntentRuleProjectionPayload = Payload & {
21735
22114
  __typename?: 'VirtualAgentUpdateIntentRuleProjectionPayload';
@@ -21743,6 +22122,8 @@ export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsInput = {
21743
22122
  addedQuestions?: Maybe<Array<Scalars['String']>>;
21744
22123
  updatedQuestions?: Maybe<Array<VirtualAgentUpdatedQuestionInput>>;
21745
22124
  deletedQuestions?: Maybe<Array<Scalars['ID']>>;
22125
+ confirmationMessage?: Maybe<Scalars['String']>;
22126
+ suggestionButtonText?: Maybe<Scalars['String']>;
21746
22127
  };
21747
22128
  export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Payload & {
21748
22129
  __typename?: 'VirtualAgentUpdateIntentRuleProjectionQuestionsPayload';