@forge/cli-shared 3.1.1-next.2 → 3.1.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.1.1-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [aa3a70e]
8
+ - @forge/manifest@4.3.0-next.4
9
+
10
+ ## 3.1.1-next.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [47a47a4]
15
+ - @forge/manifest@4.3.0-next.3
16
+
3
17
  ## 3.1.1-next.2
4
18
 
5
19
  ### Patch Changes
@@ -720,6 +720,10 @@ export declare type AppPermission = {
720
720
  egress?: Maybe<Array<AppNetworkEgressPermission>>;
721
721
  securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
722
722
  };
723
+ export declare type AppPrincipal = {
724
+ __typename?: 'AppPrincipal';
725
+ id?: Maybe<Scalars['ID']>;
726
+ };
723
727
  export declare type AppSecurityPoliciesPermission = {
724
728
  __typename?: 'AppSecurityPoliciesPermission';
725
729
  type?: Maybe<AppSecurityPoliciesPermissionType>;
@@ -895,6 +899,8 @@ export declare type AriGraphCreateRelationshipsInputRelationship = {
895
899
  from: Scalars['ID'];
896
900
  to: Scalars['ID'];
897
901
  type: Scalars['ID'];
902
+ sequenceNumber?: Maybe<Scalars['Long']>;
903
+ updatedAt?: Maybe<Scalars['DateTime']>;
898
904
  };
899
905
  export declare type AriGraphCreateRelationshipsPayload = Payload & {
900
906
  __typename?: 'AriGraphCreateRelationshipsPayload';
@@ -914,11 +920,15 @@ export declare type AriGraphDeleteRelationshipsPayload = Payload & {
914
920
  export declare type AriGraphMutation = {
915
921
  __typename?: 'AriGraphMutation';
916
922
  createRelationships?: Maybe<AriGraphCreateRelationshipsPayload>;
923
+ replaceRelationships?: Maybe<AriGraphReplaceRelationshipsPayload>;
917
924
  deleteRelationships?: Maybe<AriGraphDeleteRelationshipsPayload>;
918
925
  };
919
926
  export declare type AriGraphMutationCreateRelationshipsArgs = {
920
927
  input: AriGraphCreateRelationshipsInput;
921
928
  };
929
+ export declare type AriGraphMutationReplaceRelationshipsArgs = {
930
+ input: AriGraphReplaceRelationshipsInput;
931
+ };
922
932
  export declare type AriGraphMutationDeleteRelationshipsArgs = {
923
933
  input: AriGraphDeleteRelationshipsInput;
924
934
  };
@@ -972,6 +982,21 @@ export declare enum AriGraphRelationshipsSortDirection {
972
982
  Asc = "ASC",
973
983
  Desc = "DESC"
974
984
  }
985
+ export declare type AriGraphReplaceRelationshipsInput = {
986
+ type: Scalars['ID'];
987
+ sequenceNumber?: Maybe<Scalars['Long']>;
988
+ updatedAt?: Maybe<Scalars['DateTime']>;
989
+ relationships: Array<AriGraphReplaceRelationshipsInputRelationship>;
990
+ };
991
+ export declare type AriGraphReplaceRelationshipsInputRelationship = {
992
+ from: Scalars['ID'];
993
+ to: Scalars['ID'];
994
+ };
995
+ export declare type AriGraphReplaceRelationshipsPayload = Payload & {
996
+ __typename?: 'AriGraphReplaceRelationshipsPayload';
997
+ success: Scalars['Boolean'];
998
+ errors?: Maybe<Array<MutationError>>;
999
+ };
975
1000
  export declare type ArjConfiguration = {
976
1001
  __typename?: 'ArjConfiguration';
977
1002
  parentCustomFieldId?: Maybe<Scalars['String']>;
@@ -6203,7 +6228,9 @@ export declare type DevOpsToolAppLinks = {
6203
6228
  configure?: Maybe<Scalars['String']>;
6204
6229
  getStarted?: Maybe<Scalars['String']>;
6205
6230
  };
6206
- export declare type DevOpsToolAuth = DevOpsToolDefaultAuth | DevOpsToolOAuth;
6231
+ export declare type DevOpsToolAuth = {
6232
+ authenticated: Scalars['Boolean'];
6233
+ };
6207
6234
  export declare type DevOpsToolAvatar = {
6208
6235
  __typename?: 'DevOpsToolAvatar';
6209
6236
  url: Scalars['URL'];
@@ -6291,7 +6318,7 @@ export declare type DevOpsToolContainerNameConflict = {
6291
6318
  __typename?: 'DevOpsToolContainerNameConflict';
6292
6319
  name?: Maybe<Scalars['String']>;
6293
6320
  };
6294
- export declare type DevOpsToolDefaultAuth = {
6321
+ export declare type DevOpsToolDefaultAuth = DevOpsToolAuth & {
6295
6322
  __typename?: 'DevOpsToolDefaultAuth';
6296
6323
  authenticated: Scalars['Boolean'];
6297
6324
  };
@@ -6333,21 +6360,31 @@ export declare type DevOpsToolGroupEdge = {
6333
6360
  cursor: Scalars['String'];
6334
6361
  node?: Maybe<DevOpsToolGroup>;
6335
6362
  };
6336
- export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
6337
- export declare type DevOpsToolIntegrationApp = {
6363
+ export declare type DevOpsToolIntegration = {
6364
+ key: Scalars['String'];
6365
+ name: Scalars['String'];
6366
+ installed: Scalars['Boolean'];
6367
+ iconUrl?: Maybe<Scalars['String']>;
6368
+ };
6369
+ export declare type DevOpsToolIntegrationApp = DevOpsToolIntegration & {
6338
6370
  __typename?: 'DevOpsToolIntegrationApp';
6339
6371
  appKey: Scalars['String'];
6372
+ key: Scalars['String'];
6340
6373
  appName: Scalars['String'];
6374
+ name: Scalars['String'];
6341
6375
  marketplaceType: Scalars['String'];
6342
6376
  installed: Scalars['Boolean'];
6343
6377
  iconUrl?: Maybe<Scalars['String']>;
6344
6378
  links?: Maybe<DevOpsToolAppLinks>;
6345
6379
  };
6346
- export declare type DevOpsToolIntegrationProduct = {
6380
+ export declare type DevOpsToolIntegrationProduct = DevOpsToolIntegration & {
6347
6381
  __typename?: 'DevOpsToolIntegrationProduct';
6348
6382
  productKey: Scalars['String'];
6383
+ key: Scalars['String'];
6349
6384
  productName: Scalars['String'];
6385
+ name: Scalars['String'];
6350
6386
  available: Scalars['Boolean'];
6387
+ installed: Scalars['Boolean'];
6351
6388
  iconUrl?: Maybe<Scalars['String']>;
6352
6389
  };
6353
6390
  export declare enum DevOpsToolIntegrationType {
@@ -6394,7 +6431,7 @@ export declare enum DevOpsToolNavbarConnectionStateTab {
6394
6431
  OncallTab = "ONCALL_TAB",
6395
6432
  PagesTab = "PAGES_TAB"
6396
6433
  }
6397
- export declare type DevOpsToolOAuth = {
6434
+ export declare type DevOpsToolOAuth = DevOpsToolAuth & {
6398
6435
  __typename?: 'DevOpsToolOAuth';
6399
6436
  authenticated: Scalars['Boolean'];
6400
6437
  oauthUrl: Scalars['String'];
@@ -6444,6 +6481,7 @@ export declare type DevOpsToolsToolsArgs = {
6444
6481
  first?: Maybe<Scalars['Int']>;
6445
6482
  after?: Maybe<Scalars['String']>;
6446
6483
  recommended?: Maybe<Scalars['Boolean']>;
6484
+ search?: Maybe<Scalars['String']>;
6447
6485
  groupId?: Maybe<Scalars['String']>;
6448
6486
  categoryId?: Maybe<Scalars['String']>;
6449
6487
  supportsContainers?: Maybe<Scalars['Boolean']>;
@@ -6652,8 +6690,10 @@ export declare type EventSourceEventsArgs = {
6652
6690
  export declare type Extension = {
6653
6691
  __typename?: 'Extension';
6654
6692
  id: Scalars['ID'];
6693
+ appId: Scalars['ID'];
6655
6694
  definitionId: Scalars['ID'];
6656
6695
  environmentId: Scalars['ID'];
6696
+ versionId: Scalars['ID'];
6657
6697
  environmentKey: Scalars['String'];
6658
6698
  environmentType: Scalars['String'];
6659
6699
  installationId: Scalars['String'];
@@ -6662,6 +6702,7 @@ export declare type Extension = {
6662
6702
  appOwner?: Maybe<User>;
6663
6703
  appVersion?: Maybe<Scalars['String']>;
6664
6704
  properties: Scalars['JSON'];
6705
+ principal?: Maybe<AppPrincipal>;
6665
6706
  migrationKey?: Maybe<Scalars['String']>;
6666
6707
  license?: Maybe<AppInstallationLicense>;
6667
6708
  egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
@@ -13140,6 +13181,9 @@ export declare type JiraVersionReleaseNotesOptionsIssueFieldsArgs = {
13140
13181
  before?: Maybe<Scalars['String']>;
13141
13182
  searchString?: Maybe<Scalars['String']>;
13142
13183
  };
13184
+ export declare type JiraVersionReleaseNotesArgs = {
13185
+ releaseNoteConfiguration?: Maybe<JiraVersionReleaseNotesConfigurationInput>;
13186
+ };
13143
13187
  export declare type JiraVersionConnectAddonIframeData = {
13144
13188
  __typename?: 'JiraVersionConnectAddonIframeData';
13145
13189
  appKey?: Maybe<Scalars['String']>;
@@ -13210,6 +13254,11 @@ export declare type JiraVersionRelatedWorkEdge = {
13210
13254
  cursor?: Maybe<Scalars['String']>;
13211
13255
  node?: Maybe<JiraVersionRelatedWork>;
13212
13256
  };
13257
+ export declare type JiraVersionReleaseNotesConfigurationInput = {
13258
+ issueFieldIds: Array<Scalars['ID']>;
13259
+ issueTypeIds: Array<Scalars['ID']>;
13260
+ issueKeyConfig: JiraReleaseNotesIssueKeyConfig;
13261
+ };
13213
13262
  export declare type JiraVersionResult = JiraVersion | QueryError;
13214
13263
  export declare enum JiraVersionStatus {
13215
13264
  Released = "RELEASED",
@@ -13940,6 +13989,7 @@ export declare type Mutation = {
13940
13989
  archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
13941
13990
  unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
13942
13991
  createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
13992
+ updatePolarisPlay?: Maybe<UpdatePolarisPlayPayload>;
13943
13993
  createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
13944
13994
  updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
13945
13995
  deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
@@ -14222,6 +14272,9 @@ export declare type MutationUnarchivePolarisInsightsArgs = {
14222
14272
  export declare type MutationCreatePolarisPlayArgs = {
14223
14273
  input: CreatePolarisPlayInput;
14224
14274
  };
14275
+ export declare type MutationUpdatePolarisPlayArgs = {
14276
+ input: UpdatePolarisPlayInput;
14277
+ };
14225
14278
  export declare type MutationCreatePolarisPlayContributionArgs = {
14226
14279
  input: CreatePolarisPlayContribution;
14227
14280
  };
@@ -14573,6 +14626,7 @@ export declare type OpsgenieQuery = {
14573
14626
  __typename?: 'OpsgenieQuery';
14574
14627
  opsgenieTeam?: Maybe<OpsgenieTeam>;
14575
14628
  opsgenieTeams?: Maybe<Array<Maybe<OpsgenieTeam>>>;
14629
+ opsgenieSchedule?: Maybe<OpsgenieSchedule>;
14576
14630
  allOpsgenieTeams?: Maybe<OpsgenieTeamConnection>;
14577
14631
  myOpsgenieSchedules?: Maybe<Array<Maybe<OpsgenieSchedule>>>;
14578
14632
  opsgenieTeamsWithServiceModificationPermissions?: Maybe<OpsgenieTeamConnection>;
@@ -14583,6 +14637,9 @@ export declare type OpsgenieQueryOpsgenieTeamArgs = {
14583
14637
  export declare type OpsgenieQueryOpsgenieTeamsArgs = {
14584
14638
  ids: Array<Scalars['ID']>;
14585
14639
  };
14640
+ export declare type OpsgenieQueryOpsgenieScheduleArgs = {
14641
+ id: Scalars['ID'];
14642
+ };
14586
14643
  export declare type OpsgenieQueryAllOpsgenieTeamsArgs = {
14587
14644
  cloudId: Scalars['ID'];
14588
14645
  first?: Maybe<Scalars['Int']>;
@@ -14607,11 +14664,19 @@ export declare type OpsgenieSchedule = {
14607
14664
  enabled?: Maybe<Scalars['Boolean']>;
14608
14665
  timezone?: Maybe<Scalars['String']>;
14609
14666
  finalTimeline?: Maybe<OpsgenieScheduleTimeline>;
14667
+ onCallRecipients?: Maybe<Array<Maybe<OpsgenieScheduleOnCallRecipient>>>;
14610
14668
  };
14611
14669
  export declare type OpsgenieScheduleFinalTimelineArgs = {
14612
14670
  startTime: Scalars['DateTime'];
14613
14671
  endTime: Scalars['DateTime'];
14614
14672
  };
14673
+ export declare type OpsgenieScheduleOnCallRecipient = {
14674
+ __typename?: 'OpsgenieScheduleOnCallRecipient';
14675
+ id?: Maybe<Scalars['ID']>;
14676
+ type?: Maybe<Scalars['String']>;
14677
+ name?: Maybe<Scalars['String']>;
14678
+ accountId?: Maybe<Scalars['ID']>;
14679
+ };
14615
14680
  export declare type OpsgenieSchedulePeriod = {
14616
14681
  __typename?: 'OpsgenieSchedulePeriod';
14617
14682
  startDate?: Maybe<Scalars['DateTime']>;
@@ -17509,17 +17574,18 @@ export declare enum ShepherdAlertTemplateType {
17509
17574
  AdminPasswordReset = "ADMIN_PASSWORD_RESET",
17510
17575
  ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
17511
17576
  CreatedAuthPolicy = "CREATED_AUTH_POLICY",
17577
+ CreatedPolicy = "CREATED_POLICY",
17512
17578
  CreatedSamlConfig = "CREATED_SAML_CONFIG",
17579
+ CreatedTunnel = "CREATED_TUNNEL",
17513
17580
  Default = "DEFAULT",
17514
17581
  DeletedAuthPolicy = "DELETED_AUTH_POLICY",
17582
+ DeletedPolicy = "DELETED_POLICY",
17583
+ DeletedTunnel = "DELETED_TUNNEL",
17515
17584
  EnableScimSync = "ENABLE_SCIM_SYNC",
17516
17585
  InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
17517
- IpAllowlistPolicyCreated = "IP_ALLOWLIST_POLICY_CREATED",
17518
- IpAllowlistPolicyDeleted = "IP_ALLOWLIST_POLICY_DELETED",
17519
- IpAllowlistPolicyDisabled = "IP_ALLOWLIST_POLICY_DISABLED",
17520
- IpAllowlistPolicyUpdated = "IP_ALLOWLIST_POLICY_UPDATED",
17521
17586
  TokenCreated = "TOKEN_CREATED",
17522
17587
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
17588
+ UpdatedPolicy = "UPDATED_POLICY",
17523
17589
  UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
17524
17590
  UserGrantedRole = "USER_GRANTED_ROLE",
17525
17591
  UserRevokedRole = "USER_REVOKED_ROLE"
@@ -17577,9 +17643,17 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
17577
17643
  node?: Maybe<ShepherdOrganization>;
17578
17644
  success: Scalars['Boolean'];
17579
17645
  };
17646
+ export declare type ShepherdCreateSlackInput = {
17647
+ authToken: Scalars['String'];
17648
+ callbackURL: Scalars['URL'];
17649
+ channelId: Scalars['String'];
17650
+ status: ShepherdSubscriptionStatus;
17651
+ teamId: Scalars['String'];
17652
+ };
17580
17653
  export declare type ShepherdCreateSubscriptionInput = {
17581
17654
  email?: Maybe<ShepherdCreateEmailInput>;
17582
17655
  orgId: Scalars['ID'];
17656
+ slack?: Maybe<ShepherdCreateSlackInput>;
17583
17657
  webhook?: Maybe<ShepherdCreateWebhookInput>;
17584
17658
  };
17585
17659
  export declare type ShepherdCreateSubscriptionPayload = Payload & {
@@ -17608,7 +17682,7 @@ export declare type ShepherdEmailConnection = {
17608
17682
  __typename?: 'ShepherdEmailConnection';
17609
17683
  edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
17610
17684
  };
17611
- export declare type ShepherdEmailEdge = {
17685
+ export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
17612
17686
  __typename?: 'ShepherdEmailEdge';
17613
17687
  node?: Maybe<ShepherdEmailSubscription>;
17614
17688
  };
@@ -17683,6 +17757,7 @@ export declare type ShepherdQuery = {
17683
17757
  shepherdAppInfo: ShepherdAppInfo;
17684
17758
  shepherdConfig?: Maybe<ShepherdConfigResult>;
17685
17759
  shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
17760
+ shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
17686
17761
  shepherdUser?: Maybe<ShepherdUser>;
17687
17762
  };
17688
17763
  export declare type ShepherdQueryShepherdAlertArgs = {
@@ -17694,10 +17769,29 @@ export declare type ShepherdQueryShepherdAlertsArgs = {
17694
17769
  export declare type ShepherdQueryShepherdOrganizationArgs = {
17695
17770
  id: Scalars['ID'];
17696
17771
  };
17772
+ export declare type ShepherdQueryShepherdSubscriptionsArgs = {
17773
+ orgId: Scalars['ID'];
17774
+ };
17697
17775
  export declare enum ShepherdQueryErrorType {
17698
17776
  NoProductAccess = "NO_PRODUCT_ACCESS",
17699
17777
  Unauthorized = "UNAUTHORIZED"
17700
17778
  }
17779
+ export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
17780
+ __typename?: 'ShepherdSlackEdge';
17781
+ node?: Maybe<ShepherdSlackSubscription>;
17782
+ };
17783
+ export declare type ShepherdSlackSubscription = ShepherdSubscription & {
17784
+ __typename?: 'ShepherdSlackSubscription';
17785
+ callbackURL: Scalars['String'];
17786
+ channelId: Scalars['String'];
17787
+ createdBy: Scalars['String'];
17788
+ createdOn: Scalars['DateTime'];
17789
+ id: Scalars['ID'];
17790
+ status: ShepherdSubscriptionStatus;
17791
+ teamId: Scalars['String'];
17792
+ updatedBy?: Maybe<Scalars['String']>;
17793
+ updatedOn?: Maybe<Scalars['DateTime']>;
17794
+ };
17701
17795
  export declare type ShepherdSubscription = {
17702
17796
  createdBy: Scalars['String'];
17703
17797
  createdOn: Scalars['DateTime'];
@@ -17706,11 +17800,18 @@ export declare type ShepherdSubscription = {
17706
17800
  updatedBy?: Maybe<Scalars['String']>;
17707
17801
  updatedOn?: Maybe<Scalars['DateTime']>;
17708
17802
  };
17803
+ export declare type ShepherdSubscriptionConnection = {
17804
+ __typename?: 'ShepherdSubscriptionConnection';
17805
+ edges?: Maybe<Array<Maybe<ShepherdSubscriptionEdge>>>;
17806
+ };
17807
+ export declare type ShepherdSubscriptionEdge = {
17808
+ node?: Maybe<ShepherdSubscription>;
17809
+ };
17709
17810
  export declare enum ShepherdSubscriptionStatus {
17710
17811
  Active = "ACTIVE",
17711
17812
  Inactive = "INACTIVE"
17712
17813
  }
17713
- export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
17814
+ export declare type ShepherdSubscriptionsResult = QueryError | ShepherdEmailConnection | ShepherdSubscriptionConnection | ShepherdWebhookConnection;
17714
17815
  export declare type ShepherdTestSubscriptionError = {
17715
17816
  __typename?: 'ShepherdTestSubscriptionError';
17716
17817
  reason?: Maybe<Scalars['String']>;
@@ -17745,9 +17846,17 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
17745
17846
  node?: Maybe<ShepherdOrganization>;
17746
17847
  success: Scalars['Boolean'];
17747
17848
  };
17849
+ export declare type ShepherdUpdateSlackInput = {
17850
+ authToken?: Maybe<Scalars['String']>;
17851
+ callbackURL?: Maybe<Scalars['URL']>;
17852
+ channelId?: Maybe<Scalars['String']>;
17853
+ status?: Maybe<ShepherdSubscriptionStatus>;
17854
+ teamId?: Maybe<Scalars['String']>;
17855
+ };
17748
17856
  export declare type ShepherdUpdateSubscriptionInput = {
17749
17857
  email?: Maybe<ShepherdUpdateEmailInput>;
17750
17858
  orgId: Scalars['ID'];
17859
+ slack?: Maybe<ShepherdUpdateSlackInput>;
17751
17860
  webhook?: Maybe<ShepherdUpdateWebhookInput>;
17752
17861
  };
17753
17862
  export declare type ShepherdUpdateSubscriptionPayload = Payload & {
@@ -17769,7 +17878,7 @@ export declare type ShepherdWebhookConnection = {
17769
17878
  __typename?: 'ShepherdWebhookConnection';
17770
17879
  edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
17771
17880
  };
17772
- export declare type ShepherdWebhookEdge = {
17881
+ export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
17773
17882
  __typename?: 'ShepherdWebhookEdge';
17774
17883
  node?: Maybe<ShepherdWebhookSubscription>;
17775
17884
  };
@@ -19348,6 +19457,16 @@ export declare type UpdatePolarisPlayContributionPayload = {
19348
19457
  errors?: Maybe<Array<MutationError>>;
19349
19458
  node?: Maybe<PolarisPlayContribution>;
19350
19459
  };
19460
+ export declare type UpdatePolarisPlayInput = {
19461
+ id: Scalars['ID'];
19462
+ parameters?: Maybe<Scalars['JSON']>;
19463
+ };
19464
+ export declare type UpdatePolarisPlayPayload = {
19465
+ __typename?: 'UpdatePolarisPlayPayload';
19466
+ success: Scalars['Boolean'];
19467
+ errors?: Maybe<Array<MutationError>>;
19468
+ node?: Maybe<PolarisPlay>;
19469
+ };
19351
19470
  export declare type UpdatePolarisSnippetInput = {
19352
19471
  id?: Maybe<Scalars['ID']>;
19353
19472
  oauthClientId?: Maybe<Scalars['String']>;
@@ -19523,11 +19642,15 @@ export declare type VirtualAgentConfiguration = Node & {
19523
19642
  id: Scalars['ID'];
19524
19643
  respondToQueries: Scalars['Boolean'];
19525
19644
  intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
19645
+ intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
19526
19646
  };
19527
19647
  export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
19528
19648
  first?: Maybe<Scalars['Int']>;
19529
19649
  after?: Maybe<Scalars['String']>;
19530
19650
  };
19651
+ export declare type VirtualAgentConfigurationIntentRuleProjectionArgs = {
19652
+ intentId: Scalars['String'];
19653
+ };
19531
19654
  export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
19532
19655
  export declare type VirtualAgentIntentProjection = Node & {
19533
19656
  __typename?: 'VirtualAgentIntentProjection';
@@ -19567,6 +19690,7 @@ export declare type VirtualAgentIntentRuleProjectionEdge = {
19567
19690
  cursor: Scalars['String'];
19568
19691
  node?: Maybe<VirtualAgentIntentRuleProjection>;
19569
19692
  };
19693
+ export declare type VirtualAgentIntentRuleProjectionResult = VirtualAgentIntentRuleProjection | VirtualAgentQueryError;
19570
19694
  export declare type VirtualAgentIntentRuleProjectionsConnection = {
19571
19695
  __typename?: 'VirtualAgentIntentRuleProjectionsConnection';
19572
19696
  edges?: Maybe<Array<VirtualAgentIntentRuleProjectionEdge>>;