@forge/cli-shared 3.10.0 → 3.10.1
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,23 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e8d41b0: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- ignore-walk
|
|
10
|
+
- @types/ignore-walk
|
|
11
|
+
|
|
12
|
+
## 3.10.1-next.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- e8d41b0: Bumping dependencies via Renovate:
|
|
17
|
+
|
|
18
|
+
- ignore-walk
|
|
19
|
+
- @types/ignore-walk
|
|
20
|
+
|
|
3
21
|
## 3.10.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -2435,6 +2435,12 @@ export declare type CompassComponentResult = CompassComponent | QueryError;
|
|
|
2435
2435
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
2436
2436
|
scorecardId: Scalars['ID'];
|
|
2437
2437
|
};
|
|
2438
|
+
export declare type CompassComponentStats = {
|
|
2439
|
+
__typename?: 'CompassComponentStats';
|
|
2440
|
+
passing: Scalars['Int'];
|
|
2441
|
+
needsWork: Scalars['Int'];
|
|
2442
|
+
failing: Scalars['Int'];
|
|
2443
|
+
};
|
|
2438
2444
|
export declare type CompassComponentTier = {
|
|
2439
2445
|
__typename?: 'CompassComponentTier';
|
|
2440
2446
|
value?: Maybe<Scalars['String']>;
|
|
@@ -3507,6 +3513,7 @@ export declare type CompassScorecard = Node & {
|
|
|
3507
3513
|
importance: CompassScorecardImportance;
|
|
3508
3514
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3509
3515
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
3516
|
+
appliedToComponentStats?: Maybe<CompassScorecardComponentStatsQueryResult>;
|
|
3510
3517
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
3511
3518
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
3512
3519
|
changeMetadata: CompassChangeMetadata;
|
|
@@ -3541,6 +3548,12 @@ export declare type CompassScorecardAppliedToComponentsQueryResult = CompassScor
|
|
|
3541
3548
|
export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
|
|
3542
3549
|
lt: Scalars['Int'];
|
|
3543
3550
|
};
|
|
3551
|
+
export declare type CompassScorecardComponentStats = {
|
|
3552
|
+
__typename?: 'CompassScorecardComponentStats';
|
|
3553
|
+
componentStats?: Maybe<CompassComponentStats>;
|
|
3554
|
+
totalCount: Scalars['Int'];
|
|
3555
|
+
};
|
|
3556
|
+
export declare type CompassScorecardComponentStatsQueryResult = CompassScorecardComponentStats | QueryError;
|
|
3544
3557
|
export declare type CompassScorecardConnection = {
|
|
3545
3558
|
__typename?: 'CompassScorecardConnection';
|
|
3546
3559
|
edges?: Maybe<Array<CompassScorecardEdge>>;
|
|
@@ -5359,8 +5372,6 @@ export declare type CreateCompassScorecardInput = {
|
|
|
5359
5372
|
name: Scalars['String'];
|
|
5360
5373
|
description?: Maybe<Scalars['String']>;
|
|
5361
5374
|
ownerId?: Maybe<Scalars['ID']>;
|
|
5362
|
-
componentType?: Maybe<CompassComponentType>;
|
|
5363
|
-
componentTypeId?: Maybe<Scalars['ID']>;
|
|
5364
5375
|
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
5365
5376
|
importance: CompassScorecardImportance;
|
|
5366
5377
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
@@ -9277,6 +9288,10 @@ export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
9277
9288
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9278
9289
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9279
9290
|
};
|
|
9291
|
+
export declare type JiraCcMessage = {
|
|
9292
|
+
role: Scalars['String'];
|
|
9293
|
+
content: Scalars['String'];
|
|
9294
|
+
};
|
|
9280
9295
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
9281
9296
|
__typename?: 'JiraCMDBField';
|
|
9282
9297
|
id: Scalars['ID'];
|
|
@@ -11446,6 +11461,10 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
11446
11461
|
Absolute = "ABSOLUTE",
|
|
11447
11462
|
Relative = "RELATIVE"
|
|
11448
11463
|
}
|
|
11464
|
+
export declare enum JiraIteration {
|
|
11465
|
+
Iteration_1 = "ITERATION_1",
|
|
11466
|
+
Iteration_2 = "ITERATION_2"
|
|
11467
|
+
}
|
|
11449
11468
|
export declare enum JiraJqlBuilderSearchMode {
|
|
11450
11469
|
Basic = "BASIC",
|
|
11451
11470
|
Advanced = "ADVANCED"
|
|
@@ -11456,6 +11475,12 @@ export declare type JiraJqlBuilderSearchModeMutationPayload = Payload & {
|
|
|
11456
11475
|
errors?: Maybe<Array<MutationError>>;
|
|
11457
11476
|
userSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
11458
11477
|
};
|
|
11478
|
+
export declare type JiraJqlFromNaturalLanguage = {
|
|
11479
|
+
__typename?: 'JiraJQLFromNaturalLanguage';
|
|
11480
|
+
generatedJQL?: Maybe<Scalars['String']>;
|
|
11481
|
+
generatedJQLError?: Maybe<JiraJqlGenerationError>;
|
|
11482
|
+
};
|
|
11483
|
+
export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
11459
11484
|
export declare enum JiraJqlAutocompleteType {
|
|
11460
11485
|
None = "NONE",
|
|
11461
11486
|
Component = "COMPONENT",
|
|
@@ -11632,8 +11657,8 @@ export declare type JiraJqlFunction = {
|
|
|
11632
11657
|
};
|
|
11633
11658
|
export declare type JiraJqlFunctionProcessingStatus = {
|
|
11634
11659
|
__typename?: 'JiraJqlFunctionProcessingStatus';
|
|
11635
|
-
status
|
|
11636
|
-
function
|
|
11660
|
+
status: JiraJqlFunctionStatus;
|
|
11661
|
+
function: Scalars['String'];
|
|
11637
11662
|
app?: Maybe<Scalars['String']>;
|
|
11638
11663
|
};
|
|
11639
11664
|
export declare enum JiraJqlFunctionStatus {
|
|
@@ -12366,6 +12391,11 @@ export declare type JiraMutationUpdateProjectShortcutArgs = {
|
|
|
12366
12391
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
12367
12392
|
input: JiraDeleteShortcutInput;
|
|
12368
12393
|
};
|
|
12394
|
+
export declare type JiraNaturalLanguageToJqlInput = {
|
|
12395
|
+
naturalLanguageInput: Scalars['String'];
|
|
12396
|
+
iteration?: Maybe<JiraIteration>;
|
|
12397
|
+
initMessages?: Maybe<Array<JiraCcMessage>>;
|
|
12398
|
+
};
|
|
12369
12399
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
12370
12400
|
__typename?: 'JiraNumberField';
|
|
12371
12401
|
id: Scalars['ID'];
|
|
@@ -13386,6 +13416,7 @@ export declare type JiraQuery = {
|
|
|
13386
13416
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
13387
13417
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13388
13418
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13419
|
+
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
13389
13420
|
permission?: Maybe<JiraPermission>;
|
|
13390
13421
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
13391
13422
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -13551,6 +13582,10 @@ export declare type JiraQueryIssueSearchStatusArgs = {
|
|
|
13551
13582
|
cloudId: Scalars['ID'];
|
|
13552
13583
|
jql: Scalars['String'];
|
|
13553
13584
|
};
|
|
13585
|
+
export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
13586
|
+
cloudId: Scalars['ID'];
|
|
13587
|
+
input: JiraNaturalLanguageToJqlInput;
|
|
13588
|
+
};
|
|
13554
13589
|
export declare type JiraQueryPermissionArgs = {
|
|
13555
13590
|
cloudId: Scalars['ID'];
|
|
13556
13591
|
type: JiraPermissionType;
|
|
@@ -15572,6 +15607,7 @@ export declare type JiraVersion = Node & {
|
|
|
15572
15607
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
15573
15608
|
warningsCount?: Maybe<Scalars['Long']>;
|
|
15574
15609
|
contributors?: Maybe<JiraVersionContributorConnection>;
|
|
15610
|
+
driver?: Maybe<User>;
|
|
15575
15611
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
15576
15612
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
15577
15613
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -16716,6 +16752,7 @@ export declare type Mutation = {
|
|
|
16716
16752
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
16717
16753
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
16718
16754
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
16755
|
+
createThirdPartyContainer?: Maybe<ThirdPartyCreateContainerPayload>;
|
|
16719
16756
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
16720
16757
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
16721
16758
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
@@ -17074,6 +17111,9 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
17074
17111
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
17075
17112
|
id: Scalars['ID'];
|
|
17076
17113
|
};
|
|
17114
|
+
export declare type MutationCreateThirdPartyContainerArgs = {
|
|
17115
|
+
input: ThirdPartyCreateContainerInput;
|
|
17116
|
+
};
|
|
17077
17117
|
export declare type MutationWatchMarketplaceAppArgs = {
|
|
17078
17118
|
id: Scalars['ID'];
|
|
17079
17119
|
};
|
|
@@ -18812,6 +18852,7 @@ export declare type PolarisView = {
|
|
|
18812
18852
|
id: Scalars['ID'];
|
|
18813
18853
|
xid?: Maybe<Scalars['Int']>;
|
|
18814
18854
|
uuid: Scalars['ID'];
|
|
18855
|
+
createdAt?: Maybe<Scalars['String']>;
|
|
18815
18856
|
name: Scalars['String'];
|
|
18816
18857
|
emoji?: Maybe<Scalars['String']>;
|
|
18817
18858
|
description?: Maybe<Scalars['JSON']>;
|
|
@@ -20859,6 +20900,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
20859
20900
|
export declare enum SearchResultType {
|
|
20860
20901
|
Page = "page",
|
|
20861
20902
|
Blogpost = "blogpost",
|
|
20903
|
+
Whiteboard = "whiteboard",
|
|
20862
20904
|
Space = "space",
|
|
20863
20905
|
Attachment = "attachment",
|
|
20864
20906
|
Comment = "comment",
|
|
@@ -22454,6 +22496,19 @@ export declare type TestingActivityItem = Node & {
|
|
|
22454
22496
|
__typename?: 'TestingActivityItem';
|
|
22455
22497
|
id: Scalars['ID'];
|
|
22456
22498
|
};
|
|
22499
|
+
export declare type ThirdPartyCreateContainerInput = {
|
|
22500
|
+
cloudId: Scalars['ID'];
|
|
22501
|
+
providerId?: Maybe<Scalars['ID']>;
|
|
22502
|
+
workspaceId?: Maybe<Scalars['ID']>;
|
|
22503
|
+
name: Scalars['String'];
|
|
22504
|
+
type?: Maybe<Scalars['String']>;
|
|
22505
|
+
};
|
|
22506
|
+
export declare type ThirdPartyCreateContainerPayload = Payload & {
|
|
22507
|
+
__typename?: 'ThirdPartyCreateContainerPayload';
|
|
22508
|
+
success: Scalars['Boolean'];
|
|
22509
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22510
|
+
createdContainer?: Maybe<ThirdPartyEntity>;
|
|
22511
|
+
};
|
|
22457
22512
|
export declare type ThirdPartyDetails = {
|
|
22458
22513
|
__typename?: 'ThirdPartyDetails';
|
|
22459
22514
|
name: Scalars['String'];
|
|
@@ -22461,6 +22516,7 @@ export declare type ThirdPartyDetails = {
|
|
|
22461
22516
|
purpose: Scalars['String'];
|
|
22462
22517
|
thirdPartyCountries: Array<Maybe<Scalars['String']>>;
|
|
22463
22518
|
};
|
|
22519
|
+
export declare type ThirdPartyEntity = ThirdPartySecurityWorkspace | ThirdPartySecurityContainer;
|
|
22464
22520
|
export declare type ThirdPartyInformation = {
|
|
22465
22521
|
__typename?: 'ThirdPartyInformation';
|
|
22466
22522
|
isEndUserDataShared: Scalars['Boolean'];
|
|
@@ -23119,8 +23175,6 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
23119
23175
|
name?: Maybe<Scalars['String']>;
|
|
23120
23176
|
description?: Maybe<Scalars['String']>;
|
|
23121
23177
|
ownerId?: Maybe<Scalars['ID']>;
|
|
23122
|
-
componentType?: Maybe<CompassComponentType>;
|
|
23123
|
-
componentTypeId?: Maybe<Scalars['ID']>;
|
|
23124
23178
|
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
23125
23179
|
importance?: Maybe<CompassScorecardImportance>;
|
|
23126
23180
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
@@ -23578,6 +23632,7 @@ export declare type VirtualAgentChannelConfig = {
|
|
|
23578
23632
|
triage?: Maybe<VirtualAgentSlackChannel>;
|
|
23579
23633
|
test?: Maybe<VirtualAgentSlackChannel>;
|
|
23580
23634
|
production?: Maybe<Array<Maybe<VirtualAgentSlackChannel>>>;
|
|
23635
|
+
jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;
|
|
23581
23636
|
};
|
|
23582
23637
|
export declare type VirtualAgentConfiguration = Node & {
|
|
23583
23638
|
__typename?: 'VirtualAgentConfiguration';
|
|
@@ -23610,6 +23665,16 @@ export declare type VirtualAgentConfigurationFlowEditorFlowArgs = {
|
|
|
23610
23665
|
flowRevisionId: Scalars['String'];
|
|
23611
23666
|
};
|
|
23612
23667
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
23668
|
+
export declare type VirtualAgentCreateChatChannelInput = {
|
|
23669
|
+
isTriageChannel: Scalars['Boolean'];
|
|
23670
|
+
isVirtualAgentTestChannel: Scalars['Boolean'];
|
|
23671
|
+
};
|
|
23672
|
+
export declare type VirtualAgentCreateChatChannelPayload = Payload & {
|
|
23673
|
+
__typename?: 'VirtualAgentCreateChatChannelPayload';
|
|
23674
|
+
success: Scalars['Boolean'];
|
|
23675
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23676
|
+
channel?: Maybe<VirtualAgentSlackChannel>;
|
|
23677
|
+
};
|
|
23613
23678
|
export declare type VirtualAgentCreateConfigurationInput = {
|
|
23614
23679
|
respondToQueries?: Maybe<Scalars['Boolean']>;
|
|
23615
23680
|
};
|
|
@@ -23754,6 +23819,12 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
23754
23819
|
resolutionRate?: Maybe<Scalars['Float']>;
|
|
23755
23820
|
averageCsat?: Maybe<Scalars['Float']>;
|
|
23756
23821
|
};
|
|
23822
|
+
export declare type VirtualAgentJsmChatContext = {
|
|
23823
|
+
__typename?: 'VirtualAgentJSMChatContext';
|
|
23824
|
+
connectivityState: Scalars['String'];
|
|
23825
|
+
slackSetupLink?: Maybe<Scalars['String']>;
|
|
23826
|
+
errorMessage?: Maybe<Scalars['String']>;
|
|
23827
|
+
};
|
|
23757
23828
|
export declare type VirtualAgentMutationApi = {
|
|
23758
23829
|
__typename?: 'VirtualAgentMutationApi';
|
|
23759
23830
|
createVirtualAgentConfiguration?: Maybe<VirtualAgentCreateConfigurationPayload>;
|
|
@@ -23764,6 +23835,8 @@ export declare type VirtualAgentMutationApi = {
|
|
|
23764
23835
|
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
23765
23836
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
23766
23837
|
handleFlowEditorActions?: Maybe<VirtualAgentFlowEditorActionPayload>;
|
|
23838
|
+
createChatChannel?: Maybe<VirtualAgentCreateChatChannelPayload>;
|
|
23839
|
+
updateChatChannel?: Maybe<VirtualAgentUpdateChatChannelPayload>;
|
|
23767
23840
|
};
|
|
23768
23841
|
export declare type VirtualAgentMutationApiCreateVirtualAgentConfigurationArgs = {
|
|
23769
23842
|
jiraProjectId: Scalars['ID'];
|
|
@@ -23796,6 +23869,14 @@ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
|
|
|
23796
23869
|
virtualAgentFlowEditorId: Scalars['ID'];
|
|
23797
23870
|
input: VirtualAgentFlowEditorActionInput;
|
|
23798
23871
|
};
|
|
23872
|
+
export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
|
|
23873
|
+
virtualAgentConfigurationId: Scalars['ID'];
|
|
23874
|
+
input: VirtualAgentCreateChatChannelInput;
|
|
23875
|
+
};
|
|
23876
|
+
export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
23877
|
+
virtualAgentConfigurationId: Scalars['ID'];
|
|
23878
|
+
input: VirtualAgentUpdateChatChannelInput;
|
|
23879
|
+
};
|
|
23799
23880
|
export declare type VirtualAgentProperties = {
|
|
23800
23881
|
__typename?: 'VirtualAgentProperties';
|
|
23801
23882
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
@@ -23807,6 +23888,7 @@ export declare type VirtualAgentQueryApi = {
|
|
|
23807
23888
|
__typename?: 'VirtualAgentQueryApi';
|
|
23808
23889
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
23809
23890
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
23891
|
+
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
23810
23892
|
};
|
|
23811
23893
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
23812
23894
|
jiraProjectId: Scalars['ID'];
|
|
@@ -23816,6 +23898,10 @@ export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
|
23816
23898
|
after?: Maybe<Scalars['String']>;
|
|
23817
23899
|
filter: VirtualAgentIntentRuleProjectionsFilter;
|
|
23818
23900
|
};
|
|
23901
|
+
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
23902
|
+
jiraProjectId: Scalars['ID'];
|
|
23903
|
+
requestTypeId: Scalars['String'];
|
|
23904
|
+
};
|
|
23819
23905
|
export declare type VirtualAgentQueryError = {
|
|
23820
23906
|
__typename?: 'VirtualAgentQueryError';
|
|
23821
23907
|
id: Scalars['ID'];
|
|
@@ -23823,6 +23909,12 @@ export declare type VirtualAgentQueryError = {
|
|
|
23823
23909
|
message?: Maybe<Scalars['String']>;
|
|
23824
23910
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
23825
23911
|
};
|
|
23912
|
+
export declare type VirtualAgentRequestTypeConnectionStatus = {
|
|
23913
|
+
__typename?: 'VirtualAgentRequestTypeConnectionStatus';
|
|
23914
|
+
connectionStatus?: Maybe<Scalars['String']>;
|
|
23915
|
+
hasUnsupportedFields?: Maybe<Scalars['Boolean']>;
|
|
23916
|
+
hasRequiredFields?: Maybe<Scalars['Boolean']>;
|
|
23917
|
+
};
|
|
23826
23918
|
export declare type VirtualAgentSlackChannel = {
|
|
23827
23919
|
__typename?: 'VirtualAgentSlackChannel';
|
|
23828
23920
|
id?: Maybe<Scalars['String']>;
|
|
@@ -23844,6 +23936,16 @@ export declare type VirtualAgentStatisticsProjection = {
|
|
|
23844
23936
|
globalStatistics?: Maybe<VirtualAgentGlobalStatisticsProjection>;
|
|
23845
23937
|
statisticsPercentageChange?: Maybe<VirtualAgentStatisticsPercentageChangeProjection>;
|
|
23846
23938
|
};
|
|
23939
|
+
export declare type VirtualAgentUpdateChatChannelInput = {
|
|
23940
|
+
halpChannelId: Scalars['String'];
|
|
23941
|
+
isVirtualAgentChannel: Scalars['Boolean'];
|
|
23942
|
+
};
|
|
23943
|
+
export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
23944
|
+
__typename?: 'VirtualAgentUpdateChatChannelPayload';
|
|
23945
|
+
success: Scalars['Boolean'];
|
|
23946
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23947
|
+
channel?: Maybe<VirtualAgentSlackChannel>;
|
|
23948
|
+
};
|
|
23847
23949
|
export declare type VirtualAgentUpdateConfigurationInput = {
|
|
23848
23950
|
respondToQueries?: Maybe<Scalars['Boolean']>;
|
|
23849
23951
|
properties?: Maybe<VirtualAgentPropertiesInput>;
|