@forge/cli-shared 3.26.1-next.1 → 3.26.1-next.2
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 +6 -0
- package/out/graphql/graphql-types.d.ts +62 -46
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -1
- package/out/shared/error-handling.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +16 -17
- package/out/ui/text.d.ts +0 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -26395,19 +26395,23 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
26395
26395
|
export declare type HelpLayoutAnnouncementInput = {
|
|
26396
26396
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26397
26397
|
};
|
|
26398
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26398
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26399
26399
|
export declare type HelpLayoutAtomicElementInput = {
|
|
26400
26400
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26401
26401
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
26402
26402
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26403
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26403
26404
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26404
26405
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26406
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26405
26407
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26408
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26406
26409
|
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26407
26410
|
};
|
|
26408
26411
|
export declare enum HelpLayoutAtomicElementKey {
|
|
26409
26412
|
Announcement = "ANNOUNCEMENT",
|
|
26410
26413
|
Heading = "HEADING",
|
|
26414
|
+
Hero = "HERO",
|
|
26411
26415
|
Image = "IMAGE",
|
|
26412
26416
|
Paragraph = "PARAGRAPH",
|
|
26413
26417
|
PortalsList = "PORTALS_LIST",
|
|
@@ -26442,7 +26446,6 @@ export declare type HelpLayoutCompositeElement = {
|
|
|
26442
26446
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26443
26447
|
};
|
|
26444
26448
|
export declare enum HelpLayoutCompositeElementKey {
|
|
26445
|
-
Hero = "HERO",
|
|
26446
26449
|
LinkCard = "LINK_CARD"
|
|
26447
26450
|
}
|
|
26448
26451
|
export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
@@ -26472,10 +26475,13 @@ export declare type HelpLayoutElementInput = {
|
|
|
26472
26475
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26473
26476
|
elementTypeKey: HelpLayoutElementKey;
|
|
26474
26477
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26478
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26475
26479
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26476
26480
|
linkCardInput?: InputMaybe<HelpLayoutLinkCardInput>;
|
|
26477
26481
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26482
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26478
26483
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26484
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26479
26485
|
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26480
26486
|
};
|
|
26481
26487
|
export declare enum HelpLayoutElementKey {
|
|
@@ -26520,13 +26526,21 @@ export declare enum HelpLayoutHeadingType {
|
|
|
26520
26526
|
H5 = "h5",
|
|
26521
26527
|
H6 = "h6"
|
|
26522
26528
|
}
|
|
26523
|
-
export declare type HelpLayoutHeroElement =
|
|
26529
|
+
export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
26524
26530
|
__typename?: 'HelpLayoutHeroElement';
|
|
26525
|
-
|
|
26526
|
-
elementType?: Maybe<
|
|
26531
|
+
data?: Maybe<HelpLayoutHeroElementData>;
|
|
26532
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
26527
26533
|
id: Scalars['ID']['output'];
|
|
26528
26534
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26529
26535
|
};
|
|
26536
|
+
export declare type HelpLayoutHeroElementData = {
|
|
26537
|
+
__typename?: 'HelpLayoutHeroElementData';
|
|
26538
|
+
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
26539
|
+
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
26540
|
+
};
|
|
26541
|
+
export declare type HelpLayoutHeroElementInput = {
|
|
26542
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26543
|
+
};
|
|
26530
26544
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
26531
26545
|
Center = "CENTER",
|
|
26532
26546
|
Left = "LEFT",
|
|
@@ -26639,6 +26653,9 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
26639
26653
|
id: Scalars['ID']['output'];
|
|
26640
26654
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26641
26655
|
};
|
|
26656
|
+
export declare type HelpLayoutPortalsListInput = {
|
|
26657
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26658
|
+
};
|
|
26642
26659
|
export declare type HelpLayoutQueryApi = {
|
|
26643
26660
|
__typename?: 'HelpLayoutQueryApi';
|
|
26644
26661
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -26732,6 +26749,9 @@ export declare type HelpLayoutSuggestedRequestFormsListElementData = {
|
|
|
26732
26749
|
__typename?: 'HelpLayoutSuggestedRequestFormsListElementData';
|
|
26733
26750
|
suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
|
|
26734
26751
|
};
|
|
26752
|
+
export declare type HelpLayoutSuggestedRequestFormsListInput = {
|
|
26753
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26754
|
+
};
|
|
26735
26755
|
export declare type HelpLayoutTopic = {
|
|
26736
26756
|
__typename?: 'HelpLayoutTopic';
|
|
26737
26757
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -30217,6 +30237,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
30217
30237
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
30218
30238
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
30219
30239
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
30240
|
+
resumeAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30220
30241
|
retryAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30221
30242
|
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
30222
30243
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
@@ -30263,6 +30284,10 @@ export declare type JiraDevOpsMutationRemoveJiraBitbucketWorkspaceConnectionArgs
|
|
|
30263
30284
|
cloudId: Scalars['ID']['input'];
|
|
30264
30285
|
input: JiraRemoveJiraBitbucketWorkspaceConnectionInput;
|
|
30265
30286
|
};
|
|
30287
|
+
export declare type JiraDevOpsMutationResumeAutodevJobArgs = {
|
|
30288
|
+
issueAri: Scalars['ID']['input'];
|
|
30289
|
+
jobId: Scalars['ID']['input'];
|
|
30290
|
+
};
|
|
30266
30291
|
export declare type JiraDevOpsMutationRetryAutodevJobArgs = {
|
|
30267
30292
|
issueAri: Scalars['ID']['input'];
|
|
30268
30293
|
jobId: Scalars['ID']['input'];
|
|
@@ -30399,6 +30424,19 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
30399
30424
|
errors?: Maybe<Array<MutationError>>;
|
|
30400
30425
|
success: Scalars['Boolean']['output'];
|
|
30401
30426
|
};
|
|
30427
|
+
export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30428
|
+
__typename?: 'JiraDurationField';
|
|
30429
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
30430
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30431
|
+
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
30432
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
30433
|
+
fieldId: Scalars['String']['output'];
|
|
30434
|
+
id: Scalars['ID']['output'];
|
|
30435
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
30436
|
+
name: Scalars['String']['output'];
|
|
30437
|
+
type: Scalars['String']['output'];
|
|
30438
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
30439
|
+
};
|
|
30402
30440
|
export declare type JiraDurationFieldInput = {
|
|
30403
30441
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
30404
30442
|
};
|
|
@@ -33103,7 +33141,7 @@ export declare type JiraMultipleGroupPickerFieldInput = {
|
|
|
33103
33141
|
groups: Array<JiraGroupInput>;
|
|
33104
33142
|
};
|
|
33105
33143
|
export declare type JiraMultipleGroupPickerFieldOperationInput = {
|
|
33106
|
-
|
|
33144
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
33107
33145
|
operation: JiraMultiValueFieldOperations;
|
|
33108
33146
|
};
|
|
33109
33147
|
export declare type JiraMultipleGroupPickerFieldPayload = Payload & {
|
|
@@ -36992,8 +37030,10 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
36992
37030
|
authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
|
|
36993
37031
|
commentId: Scalars['ID']['output'];
|
|
36994
37032
|
created: Scalars['DateTime']['output'];
|
|
37033
|
+
eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
36995
37034
|
id: Scalars['ID']['output'];
|
|
36996
37035
|
issue?: Maybe<JiraIssue>;
|
|
37036
|
+
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36997
37037
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
36998
37038
|
richText?: Maybe<JiraRichText>;
|
|
36999
37039
|
updateAuthor?: Maybe<User>;
|
|
@@ -37864,7 +37904,7 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37864
37904
|
group: JiraGroupInput;
|
|
37865
37905
|
};
|
|
37866
37906
|
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
37867
|
-
|
|
37907
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
37868
37908
|
operation: JiraSingleValueFieldOperations;
|
|
37869
37909
|
};
|
|
37870
37910
|
export declare type JiraSingleGroupPickerFieldPayload = Payload & {
|
|
@@ -40232,15 +40272,6 @@ export declare type JsmChatChannelSettings = {
|
|
|
40232
40272
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40233
40273
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40234
40274
|
};
|
|
40235
|
-
export declare type JsmChatChatConfigSlack = {
|
|
40236
|
-
__typename?: 'JsmChatChatConfigSlack';
|
|
40237
|
-
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40238
|
-
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40239
|
-
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40240
|
-
siteId: Scalars['ID']['output'];
|
|
40241
|
-
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40242
|
-
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40243
|
-
};
|
|
40244
40275
|
export declare type JsmChatGetSlackChatConfigInput = {
|
|
40245
40276
|
activationId: Scalars['ID']['input'];
|
|
40246
40277
|
projectId: Scalars['ID']['input'];
|
|
@@ -40275,7 +40306,7 @@ export declare type JsmChatProjectSettingsSlack = {
|
|
|
40275
40306
|
};
|
|
40276
40307
|
export declare type JsmChatQuery = {
|
|
40277
40308
|
__typename?: 'JsmChatQuery';
|
|
40278
|
-
getSlackChatConfig?: Maybe<
|
|
40309
|
+
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
40279
40310
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
40280
40311
|
};
|
|
40281
40312
|
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
@@ -40284,6 +40315,15 @@ export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
|
40284
40315
|
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
40285
40316
|
input: JsmChatInitializeConfigRequest;
|
|
40286
40317
|
};
|
|
40318
|
+
export declare type JsmChatSlackConfig = {
|
|
40319
|
+
__typename?: 'JsmChatSlackConfig';
|
|
40320
|
+
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40321
|
+
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40322
|
+
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40323
|
+
siteId: Scalars['ID']['output'];
|
|
40324
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40325
|
+
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40326
|
+
};
|
|
40287
40327
|
export declare type JswMutation = {
|
|
40288
40328
|
__typename?: 'JswMutation';
|
|
40289
40329
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -45928,6 +45968,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
45928
45968
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45929
45969
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
45930
45970
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45971
|
+
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45931
45972
|
experience: Scalars['String']['input'];
|
|
45932
45973
|
filters: SearchFilterInput;
|
|
45933
45974
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -47421,6 +47462,9 @@ export declare type SignupSubscriptionApi = {
|
|
|
47421
47462
|
__typename?: 'SignupSubscriptionApi';
|
|
47422
47463
|
signupProvisioningStatus?: Maybe<SignupProvisioningStatus>;
|
|
47423
47464
|
};
|
|
47465
|
+
export declare type SignupSubscriptionApiSignupProvisioningStatusArgs = {
|
|
47466
|
+
orchestrationId: Scalars['String']['input'];
|
|
47467
|
+
};
|
|
47424
47468
|
export declare type SmartsContext = {
|
|
47425
47469
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
47426
47470
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47730,7 +47774,7 @@ export declare type Subscription = {
|
|
|
47730
47774
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
47731
47775
|
jira?: Maybe<JiraSubscription>;
|
|
47732
47776
|
sandbox: SandboxSubscription;
|
|
47733
|
-
signup
|
|
47777
|
+
signup: SignupSubscriptionApi;
|
|
47734
47778
|
testing?: Maybe<TestingSubscription>;
|
|
47735
47779
|
trello: TrelloSubscriptionApi;
|
|
47736
47780
|
};
|
|
@@ -50967,7 +51011,6 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
50967
51011
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
50968
51012
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50969
51013
|
isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
|
|
50970
|
-
properties?: Maybe<VirtualAgentProperties>;
|
|
50971
51014
|
respondToQueries: Scalars['Boolean']['output'];
|
|
50972
51015
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
50973
51016
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -51090,7 +51133,6 @@ export declare type VirtualAgentFeatures = {
|
|
|
51090
51133
|
isAiEnabledInAdminHub?: Maybe<Scalars['Boolean']['output']>;
|
|
51091
51134
|
isVirtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
51092
51135
|
};
|
|
51093
|
-
export declare type VirtualAgentFeaturesResult = VirtualAgentFeatures | VirtualAgentQueryError;
|
|
51094
51136
|
export declare type VirtualAgentFlowEditor = Node & {
|
|
51095
51137
|
__typename?: 'VirtualAgentFlowEditor';
|
|
51096
51138
|
group?: Maybe<Scalars['String']['output']>;
|
|
@@ -51303,44 +51345,18 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
51303
51345
|
input: VirtualAgentUpdateConfigurationInput;
|
|
51304
51346
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
51305
51347
|
};
|
|
51306
|
-
export declare type VirtualAgentProperties = {
|
|
51307
|
-
__typename?: 'VirtualAgentProperties';
|
|
51308
|
-
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
51309
|
-
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
51310
|
-
};
|
|
51311
|
-
export declare type VirtualAgentPropertiesInput = {};
|
|
51312
51348
|
export declare type VirtualAgentQueryApi = {
|
|
51313
51349
|
__typename?: 'VirtualAgentQueryApi';
|
|
51314
|
-
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
51315
|
-
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
51316
51350
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
51317
|
-
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
51318
51351
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
51319
|
-
virtualAgentFeatures?: Maybe<VirtualAgentFeaturesResult>;
|
|
51320
|
-
};
|
|
51321
|
-
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
51322
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
51323
|
-
filter: VirtualAgentIntentRuleProjectionsFilter;
|
|
51324
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51325
|
-
};
|
|
51326
|
-
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
51327
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
51328
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51329
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
51330
51352
|
};
|
|
51331
51353
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
51332
51354
|
jiraProjectId: Scalars['ID']['input'];
|
|
51333
51355
|
requestTypeId: Scalars['String']['input'];
|
|
51334
51356
|
};
|
|
51335
|
-
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
51336
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
51337
|
-
};
|
|
51338
51357
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
51339
51358
|
cloudId: Scalars['ID']['input'];
|
|
51340
51359
|
};
|
|
51341
|
-
export declare type VirtualAgentQueryApiVirtualAgentFeaturesArgs = {
|
|
51342
|
-
cloudId: Scalars['ID']['input'];
|
|
51343
|
-
};
|
|
51344
51360
|
export declare type VirtualAgentQueryError = {
|
|
51345
51361
|
__typename?: 'VirtualAgentQueryError';
|
|
51346
51362
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|