@vogent/vogent-web-client 0.1.1 → 0.1.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.
|
@@ -149,6 +149,8 @@ export type AiEvalRunsResult = {
|
|
|
149
149
|
export type AiModel = {
|
|
150
150
|
__typename?: 'AIModel';
|
|
151
151
|
allowedAgentType: AllowedAgentType;
|
|
152
|
+
customPrompt?: Maybe<Scalars['String']['output']>;
|
|
153
|
+
highCost: Scalars['Boolean']['output'];
|
|
152
154
|
id: Scalars['ID']['output'];
|
|
153
155
|
modelOptions: Array<AiModelOption>;
|
|
154
156
|
modelParams?: Maybe<Scalars['String']['output']>;
|
|
@@ -183,19 +185,28 @@ export type AiModelsResult = {
|
|
|
183
185
|
};
|
|
184
186
|
export type AiVoice = {
|
|
185
187
|
__typename?: 'AIVoice';
|
|
188
|
+
annotations?: Maybe<Scalars['String']['output']>;
|
|
186
189
|
badges?: Maybe<Array<Scalars['String']['output']>>;
|
|
190
|
+
description: Scalars['String']['output'];
|
|
191
|
+
featured: Scalars['Boolean']['output'];
|
|
192
|
+
featuredPriority?: Maybe<Scalars['Int']['output']>;
|
|
187
193
|
gender: VoiceGender;
|
|
188
194
|
id: Scalars['ID']['output'];
|
|
189
195
|
name: Scalars['String']['output'];
|
|
196
|
+
pricePerCharacter: Scalars['String']['output'];
|
|
190
197
|
provider: Scalars['String']['output'];
|
|
191
198
|
providerDetails?: Maybe<Scalars['String']['output']>;
|
|
192
199
|
providerVoiceId: Scalars['String']['output'];
|
|
193
200
|
public: Scalars['Boolean']['output'];
|
|
194
201
|
refText: Scalars['String']['output'];
|
|
202
|
+
subProvider: Scalars['String']['output'];
|
|
195
203
|
voiceOptions: Array<AiModelOption>;
|
|
196
204
|
voiceTier: VoiceTier;
|
|
197
205
|
workspaces: Array<AiVoiceWorkspace>;
|
|
198
206
|
};
|
|
207
|
+
export type AiVoicePricePerCharacterArgs = {
|
|
208
|
+
workspaceId: Scalars['ID']['input'];
|
|
209
|
+
};
|
|
199
210
|
export type AiVoiceWorkspace = {
|
|
200
211
|
__typename?: 'AIVoiceWorkspace';
|
|
201
212
|
providerDetails?: Maybe<Scalars['String']['output']>;
|
|
@@ -218,6 +229,10 @@ export declare enum AccessType {
|
|
|
218
229
|
Deny = "DENY",
|
|
219
230
|
Grant = "GRANT"
|
|
220
231
|
}
|
|
232
|
+
export type ActivateUserInput = {
|
|
233
|
+
token: Scalars['String']['input'];
|
|
234
|
+
verificationId: Scalars['String']['input'];
|
|
235
|
+
};
|
|
221
236
|
export type AdHocDialSession = {
|
|
222
237
|
__typename?: 'AdHocDialSession';
|
|
223
238
|
id: Scalars['ID']['output'];
|
|
@@ -239,6 +254,12 @@ export type AddKnowledgeBaseFilesInput = {
|
|
|
239
254
|
files: Array<Scalars['Upload']['input']>;
|
|
240
255
|
knowledgeBaseId: Scalars['ID']['input'];
|
|
241
256
|
};
|
|
257
|
+
export type AddSipUriInput = {
|
|
258
|
+
password: Scalars['String']['input'];
|
|
259
|
+
sipPrefix: Scalars['String']['input'];
|
|
260
|
+
username: Scalars['String']['input'];
|
|
261
|
+
workspaceId: Scalars['ID']['input'];
|
|
262
|
+
};
|
|
242
263
|
export type AgentFieldValue = {
|
|
243
264
|
fieldName: Scalars['String']['input'];
|
|
244
265
|
value: Scalars['String']['input'];
|
|
@@ -282,6 +303,7 @@ export declare enum AnswerType {
|
|
|
282
303
|
}
|
|
283
304
|
export type ApiFlowNode = {
|
|
284
305
|
__typename?: 'ApiFlowNode';
|
|
306
|
+
editorMetadata?: Maybe<NodeEditorMetadata>;
|
|
285
307
|
id: Scalars['ID']['output'];
|
|
286
308
|
name: Scalars['String']['output'];
|
|
287
309
|
nodeData: Scalars['Map']['output'];
|
|
@@ -294,6 +316,7 @@ export type ApiFlowNodeDeleteResult = {
|
|
|
294
316
|
connectedNodes: Array<ApiFlowNode>;
|
|
295
317
|
};
|
|
296
318
|
export type ApiFlowNodeInput = {
|
|
319
|
+
editorMetadata?: InputMaybe<NodeEditorMetadataInput>;
|
|
297
320
|
id: Scalars['ID']['input'];
|
|
298
321
|
name: Scalars['String']['input'];
|
|
299
322
|
nodeData: Scalars['Map']['input'];
|
|
@@ -321,16 +344,45 @@ export type ApolloUser = {
|
|
|
321
344
|
export type AppConfig = {
|
|
322
345
|
__typename?: 'AppConfig';
|
|
323
346
|
billingConfig: Scalars['String']['output'];
|
|
347
|
+
pricingPlanOptions: Scalars['String']['output'];
|
|
348
|
+
voiceConfig: Scalars['String']['output'];
|
|
324
349
|
};
|
|
325
350
|
export type AppNotice = {
|
|
326
351
|
__typename?: 'AppNotice';
|
|
327
352
|
id: Scalars['ID']['output'];
|
|
328
353
|
text: Scalars['String']['output'];
|
|
329
354
|
};
|
|
355
|
+
export type ApplyFlowDiffInput = {
|
|
356
|
+
diffs: Array<DiffStageInput>;
|
|
357
|
+
versionedPromptId: Scalars['ID']['input'];
|
|
358
|
+
};
|
|
359
|
+
export type ApplyFlowDiffReplaceTransitionsInput = {
|
|
360
|
+
nodeId: Scalars['ID']['input'];
|
|
361
|
+
transitionRules: Array<FlowTransitionRuleInput>;
|
|
362
|
+
};
|
|
363
|
+
export type ApplyFlowDiffResult = {
|
|
364
|
+
__typename?: 'ApplyFlowDiffResult';
|
|
365
|
+
createdOrUpdatedNodes: Array<ApiFlowNode>;
|
|
366
|
+
deletedNodes: Array<Scalars['String']['output']>;
|
|
367
|
+
};
|
|
330
368
|
export declare enum ArrayConditionType {
|
|
331
369
|
All = "all",
|
|
332
370
|
Any = "any"
|
|
333
371
|
}
|
|
372
|
+
export type AssistantChat = {
|
|
373
|
+
__typename?: 'AssistantChat';
|
|
374
|
+
id: Scalars['ID']['output'];
|
|
375
|
+
turns: Array<ChatTurn>;
|
|
376
|
+
};
|
|
377
|
+
export type AssistantFile = {
|
|
378
|
+
__typename?: 'AssistantFile';
|
|
379
|
+
fileName: Scalars['String']['output'];
|
|
380
|
+
id: Scalars['ID']['output'];
|
|
381
|
+
};
|
|
382
|
+
export type AssistantFileUploadInput = {
|
|
383
|
+
file: Scalars['Upload']['input'];
|
|
384
|
+
workspaceId: Scalars['ID']['input'];
|
|
385
|
+
};
|
|
334
386
|
export type AuthPayload = {
|
|
335
387
|
__typename?: 'AuthPayload';
|
|
336
388
|
token: Scalars['String']['output'];
|
|
@@ -343,16 +395,64 @@ export type BasicUtteranceDetectorConfig = {
|
|
|
343
395
|
export type BasicUtteranceDetectorConfigInput = {
|
|
344
396
|
sensitivity: UtteranceDetectorSensitivity;
|
|
345
397
|
};
|
|
398
|
+
export type BatchDialJob = {
|
|
399
|
+
__typename?: 'BatchDialJob';
|
|
400
|
+
callAgent: CallAgent;
|
|
401
|
+
callAgentId: Scalars['String']['output'];
|
|
402
|
+
createdAt: Scalars['Time']['output'];
|
|
403
|
+
fromPhoneNumberIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
404
|
+
id: Scalars['ID']['output'];
|
|
405
|
+
maxConcurrentDials: Scalars['Int']['output'];
|
|
406
|
+
name: Scalars['String']['output'];
|
|
407
|
+
queuedSpecs: ListBatchDialSpecsResult;
|
|
408
|
+
schedule?: Maybe<WeeklySchedule>;
|
|
409
|
+
status: BatchDialJobStatus;
|
|
410
|
+
};
|
|
411
|
+
export type BatchDialJobQueuedSpecsArgs = {
|
|
412
|
+
limit: Scalars['Int']['input'];
|
|
413
|
+
offset: Scalars['Int']['input'];
|
|
414
|
+
};
|
|
415
|
+
export type BatchDialJobFilter = {
|
|
416
|
+
callAgentId?: InputMaybe<Scalars['String']['input']>;
|
|
417
|
+
status?: InputMaybe<BatchDialJobStatus>;
|
|
418
|
+
userId?: InputMaybe<Scalars['String']['input']>;
|
|
419
|
+
};
|
|
420
|
+
export declare enum BatchDialJobStatus {
|
|
421
|
+
Active = "ACTIVE",
|
|
422
|
+
Cancelled = "CANCELLED",
|
|
423
|
+
Complete = "COMPLETE",
|
|
424
|
+
Init = "INIT",
|
|
425
|
+
Paused = "PAUSED"
|
|
426
|
+
}
|
|
427
|
+
export type BatchDialJobsResult = {
|
|
428
|
+
__typename?: 'BatchDialJobsResult';
|
|
429
|
+
batchDialJobs: Array<BatchDialJob>;
|
|
430
|
+
numBatchDialJobs: Scalars['Int']['output'];
|
|
431
|
+
};
|
|
432
|
+
export type BatchDialSpec = {
|
|
433
|
+
__typename?: 'BatchDialSpec';
|
|
434
|
+
batchDialJobId: Scalars['String']['output'];
|
|
435
|
+
createdAt: Scalars['Time']['output'];
|
|
436
|
+
dial?: Maybe<Dial>;
|
|
437
|
+
id: Scalars['ID']['output'];
|
|
438
|
+
inputs?: Maybe<Scalars['Map']['output']>;
|
|
439
|
+
toNumber: Scalars['String']['output'];
|
|
440
|
+
};
|
|
441
|
+
export type BatchDialSpecInput = {
|
|
442
|
+
inputs: Scalars['Map']['input'];
|
|
443
|
+
toNumber: Scalars['String']['input'];
|
|
444
|
+
};
|
|
346
445
|
export type BillingSubscription = {
|
|
347
446
|
__typename?: 'BillingSubscription';
|
|
348
|
-
|
|
349
|
-
|
|
447
|
+
enterprise: Scalars['Boolean']['output'];
|
|
448
|
+
pricingPlan: PricingPlanOption;
|
|
350
449
|
};
|
|
351
450
|
export type BillingUsageFilter = {
|
|
352
451
|
range: TimeRange;
|
|
353
452
|
};
|
|
354
453
|
export type BrowserDialTokenInput = {
|
|
355
454
|
dialSessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
455
|
+
liveListen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
356
456
|
telephonyProvider?: InputMaybe<Scalars['String']['input']>;
|
|
357
457
|
type: BrowserDialTokenType;
|
|
358
458
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -411,6 +511,7 @@ export type CallAgent = {
|
|
|
411
511
|
backgroundNoiseType: Scalars['String']['output'];
|
|
412
512
|
defaultExtractor?: Maybe<CallAgentExtractor>;
|
|
413
513
|
defaultPrompt?: Maybe<VersionedPrompt>;
|
|
514
|
+
endpointDetectorConfig: EndpointDetectorConfig;
|
|
414
515
|
extractors: Array<CallAgentExtractor>;
|
|
415
516
|
functionDefinitions: Array<CallAgentFunctionDefinition>;
|
|
416
517
|
id: Scalars['ID']['output'];
|
|
@@ -431,11 +532,14 @@ export type CallAgent = {
|
|
|
431
532
|
presets: Array<CallDataPreset>;
|
|
432
533
|
prompts: Array<VersionedPrompt>;
|
|
433
534
|
pronunciationMap?: Maybe<PronunciationMap>;
|
|
535
|
+
silenceHangupConfiguration: SilenceHangupConfiguration;
|
|
434
536
|
transcriberConfig: TranscriberConfig;
|
|
435
537
|
transferNumber?: Maybe<Scalars['String']['output']>;
|
|
436
538
|
utteranceDetectorConfig: UtteranceDetectorConfig;
|
|
539
|
+
versionedPromptBackupDetails?: Maybe<VersionedPromptBackupDetails>;
|
|
437
540
|
voiceOptionValues?: Maybe<Array<ModelOptionValue>>;
|
|
438
541
|
voiceVolumeLevel: Scalars['Int']['output'];
|
|
542
|
+
voicemailDetection: VoicemailDetection;
|
|
439
543
|
workspaceId: Scalars['ID']['output'];
|
|
440
544
|
};
|
|
441
545
|
export type CallAgentExtractor = {
|
|
@@ -464,6 +568,7 @@ export type CallAgentInput = {
|
|
|
464
568
|
defaultExtractor?: InputMaybe<CallAgentExtractorInput>;
|
|
465
569
|
defaultVersionedPrompt?: InputMaybe<CallAgentVersionedPromptInput>;
|
|
466
570
|
defaultVoiceId: Scalars['ID']['input'];
|
|
571
|
+
endpointDetectorConfig?: InputMaybe<EndpointDetectorConfigInput>;
|
|
467
572
|
idleMessageConfig?: InputMaybe<IdleConfigInput>;
|
|
468
573
|
inboundWebhookResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
469
574
|
inboundWebhookURL?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -474,10 +579,12 @@ export type CallAgentInput = {
|
|
|
474
579
|
name: Scalars['String']['input'];
|
|
475
580
|
openingLine?: InputMaybe<NullableStringInput>;
|
|
476
581
|
openingLineType?: InputMaybe<OpeningLineType>;
|
|
582
|
+
silenceHangupConfiguration?: InputMaybe<SilenceHangupConfigurationInput>;
|
|
477
583
|
transcriberParams?: InputMaybe<TranscriberParamsInput>;
|
|
478
584
|
transferNumber?: InputMaybe<NullableStringInput>;
|
|
479
585
|
utteranceDetectorConfig?: InputMaybe<UtteranceDetectorConfigInput>;
|
|
480
586
|
voiceVolumeLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
587
|
+
voicemailDetection?: InputMaybe<VoicemailDetection>;
|
|
481
588
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
482
589
|
};
|
|
483
590
|
export type CallAgentVersionedPromptInput = {
|
|
@@ -530,6 +637,17 @@ export declare enum ChatStreamMessageType {
|
|
|
530
637
|
AppendText = "APPEND_TEXT",
|
|
531
638
|
NewSpeakerRes = "NEW_SPEAKER_RES"
|
|
532
639
|
}
|
|
640
|
+
export type ChatTurn = {
|
|
641
|
+
__typename?: 'ChatTurn';
|
|
642
|
+
content: Scalars['String']['output'];
|
|
643
|
+
files: Array<ChatTurnFile>;
|
|
644
|
+
role: Scalars['String']['output'];
|
|
645
|
+
toolCalls: Array<ToolCall>;
|
|
646
|
+
};
|
|
647
|
+
export type ChatTurnFile = {
|
|
648
|
+
__typename?: 'ChatTurnFile';
|
|
649
|
+
fileName: Scalars['String']['output'];
|
|
650
|
+
};
|
|
533
651
|
export type CloneAgentInput = {
|
|
534
652
|
agentId: Scalars['ID']['input'];
|
|
535
653
|
destAgentName: Scalars['String']['input'];
|
|
@@ -540,6 +658,11 @@ export type CloneExtractorInput = {
|
|
|
540
658
|
clonedExtractorName: Scalars['String']['input'];
|
|
541
659
|
extractorId: Scalars['ID']['input'];
|
|
542
660
|
};
|
|
661
|
+
export type CloneVersionedPromptInput = {
|
|
662
|
+
callAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
663
|
+
name: Scalars['String']['input'];
|
|
664
|
+
versionedPromptId: Scalars['ID']['input'];
|
|
665
|
+
};
|
|
543
666
|
export type CloneVoiceInput = {
|
|
544
667
|
clip: Scalars['Upload']['input'];
|
|
545
668
|
gender: VoiceGender;
|
|
@@ -683,6 +806,9 @@ export type CreateAiEvalConfigInput = {
|
|
|
683
806
|
workspaceId: Scalars['ID']['input'];
|
|
684
807
|
};
|
|
685
808
|
export type CreateAiVoiceInput = {
|
|
809
|
+
annotations?: InputMaybe<NullableStringInput>;
|
|
810
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
811
|
+
featuredPriority?: InputMaybe<Scalars['Int']['input']>;
|
|
686
812
|
gender: VoiceGender;
|
|
687
813
|
name: Scalars['String']['input'];
|
|
688
814
|
provider: Scalars['String']['input'];
|
|
@@ -691,6 +817,7 @@ export type CreateAiVoiceInput = {
|
|
|
691
817
|
public: Scalars['Boolean']['input'];
|
|
692
818
|
refAudio?: InputMaybe<Scalars['Upload']['input']>;
|
|
693
819
|
refText?: InputMaybe<Scalars['String']['input']>;
|
|
820
|
+
subProvider?: InputMaybe<Scalars['String']['input']>;
|
|
694
821
|
};
|
|
695
822
|
export type CreateApiKeyInput = {
|
|
696
823
|
apiKey: Scalars['String']['input'];
|
|
@@ -708,28 +835,51 @@ export type CreateAdHocDialSessionInput = {
|
|
|
708
835
|
callAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
709
836
|
callAgentInput?: InputMaybe<Scalars['Map']['input']>;
|
|
710
837
|
fromPhoneNumberId?: InputMaybe<Scalars['ID']['input']>;
|
|
838
|
+
ivrVersionedPromptId?: InputMaybe<Scalars['ID']['input']>;
|
|
711
839
|
keywords?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
840
|
+
overrideTranscriberFinalDurationMs?: InputMaybe<Scalars['Int']['input']>;
|
|
712
841
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
842
|
+
silenceHangupConfiguration?: InputMaybe<SilenceHangupConfigurationInput>;
|
|
713
843
|
timeoutMinutes?: InputMaybe<Scalars['Int']['input']>;
|
|
714
844
|
versionedPromptId?: InputMaybe<Scalars['ID']['input']>;
|
|
845
|
+
voiceOptionValues?: InputMaybe<Array<ModelOptionValueInput>>;
|
|
846
|
+
voiceVolumeLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
847
|
+
voicemailDetection?: InputMaybe<VoicemailDetection>;
|
|
715
848
|
webcallType?: InputMaybe<WebcallType>;
|
|
716
849
|
webhookURL?: InputMaybe<Scalars['String']['input']>;
|
|
717
850
|
workspaceId: Scalars['ID']['input'];
|
|
718
851
|
};
|
|
719
852
|
export type CreateAiModelInput = {
|
|
720
853
|
allowedAgentType: AllowedAgentType;
|
|
854
|
+
customPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
855
|
+
highCost: Scalars['Boolean']['input'];
|
|
721
856
|
modelParams?: InputMaybe<Scalars['String']['input']>;
|
|
722
857
|
modelType: Scalars['String']['input'];
|
|
723
858
|
name: Scalars['String']['input'];
|
|
724
859
|
providerModelId: Scalars['String']['input'];
|
|
725
860
|
public: Scalars['Boolean']['input'];
|
|
726
861
|
};
|
|
862
|
+
export type CreateBatchDialJobInput = {
|
|
863
|
+
callAgentId: Scalars['String']['input'];
|
|
864
|
+
csvFile?: InputMaybe<Scalars['Upload']['input']>;
|
|
865
|
+
fromPhoneNumberIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
866
|
+
maxConcurrentDials: Scalars['Int']['input'];
|
|
867
|
+
name: Scalars['String']['input'];
|
|
868
|
+
rows?: InputMaybe<Array<BatchDialSpecInput>>;
|
|
869
|
+
schedule?: InputMaybe<WeeklyScheduleInput>;
|
|
870
|
+
workspaceId: Scalars['String']['input'];
|
|
871
|
+
};
|
|
727
872
|
export type CreateCallAgentExtractorInput = {
|
|
728
873
|
callAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
729
874
|
extractorFields: Array<ExtractorFieldInput>;
|
|
730
875
|
name: Scalars['String']['input'];
|
|
731
876
|
workspaceId: Scalars['ID']['input'];
|
|
732
877
|
};
|
|
878
|
+
export type CreateCallAgentFromPromptInput = {
|
|
879
|
+
fileIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
880
|
+
flowPrompt: Scalars['String']['input'];
|
|
881
|
+
workspaceId: Scalars['ID']['input'];
|
|
882
|
+
};
|
|
733
883
|
export type CreateCallAgentNodeInput = {
|
|
734
884
|
nodeInput: ApiFlowNodeInput;
|
|
735
885
|
versionedPromptId: Scalars['ID']['input'];
|
|
@@ -781,10 +931,15 @@ export type CreateDialInput = {
|
|
|
781
931
|
callAgentId: Scalars['ID']['input'];
|
|
782
932
|
callAgentInput?: InputMaybe<Scalars['Map']['input']>;
|
|
783
933
|
fromPhoneNumberId?: InputMaybe<Scalars['ID']['input']>;
|
|
934
|
+
ivrVersionedPromptId?: InputMaybe<Scalars['ID']['input']>;
|
|
784
935
|
keywords?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
936
|
+
overrideTranscriberFinalDurationMs?: InputMaybe<Scalars['Int']['input']>;
|
|
937
|
+
silenceHangupConfiguration?: InputMaybe<SilenceHangupConfigurationInput>;
|
|
785
938
|
timeoutMinutes?: InputMaybe<Scalars['Int']['input']>;
|
|
786
939
|
toNumber?: InputMaybe<Scalars['String']['input']>;
|
|
787
940
|
versionedModelId?: InputMaybe<Scalars['ID']['input']>;
|
|
941
|
+
voiceOptionValues?: InputMaybe<Array<ModelOptionValueInput>>;
|
|
942
|
+
voiceVolumeLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
788
943
|
webcallType?: InputMaybe<WebcallType>;
|
|
789
944
|
webhookURL?: InputMaybe<Scalars['String']['input']>;
|
|
790
945
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -811,6 +966,7 @@ export type CreateDialSessionInput = {
|
|
|
811
966
|
sortField?: InputMaybe<Scalars['String']['input']>;
|
|
812
967
|
/** If empty, the default set of fields will be used. */
|
|
813
968
|
tableFields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
969
|
+
voicemailDetection?: InputMaybe<VoicemailDetection>;
|
|
814
970
|
voicemailId?: InputMaybe<Scalars['ID']['input']>;
|
|
815
971
|
workspaceId: Scalars['ID']['input'];
|
|
816
972
|
};
|
|
@@ -894,6 +1050,15 @@ export type DncRecordInput = {
|
|
|
894
1050
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
895
1051
|
workspaceId: Scalars['ID']['input'];
|
|
896
1052
|
};
|
|
1053
|
+
export type DaySchedule = {
|
|
1054
|
+
__typename?: 'DaySchedule';
|
|
1055
|
+
dayOfWeek: Scalars['Int']['output'];
|
|
1056
|
+
timeSlots: Array<ScheduleTimeSlot>;
|
|
1057
|
+
};
|
|
1058
|
+
export type DayScheduleInput = {
|
|
1059
|
+
dayOfWeek: Scalars['Int']['input'];
|
|
1060
|
+
timeSlots: Array<ScheduleTimeSlotInput>;
|
|
1061
|
+
};
|
|
897
1062
|
export type DeleteCallAgentNodeInput = {
|
|
898
1063
|
nodeId: Scalars['ID']['input'];
|
|
899
1064
|
versionedPromptId: Scalars['ID']['input'];
|
|
@@ -908,6 +1073,7 @@ export type Dial = {
|
|
|
908
1073
|
callAgent?: Maybe<CallAgent>;
|
|
909
1074
|
callDisposition?: Maybe<CallDisposition>;
|
|
910
1075
|
callDispositionId?: Maybe<Scalars['ID']['output']>;
|
|
1076
|
+
callTimeSeconds: Scalars['Int']['output'];
|
|
911
1077
|
coachingComments: Array<CoachingComment>;
|
|
912
1078
|
completedAt?: Maybe<Scalars['Time']['output']>;
|
|
913
1079
|
contact?: Maybe<Contact>;
|
|
@@ -923,7 +1089,6 @@ export type Dial = {
|
|
|
923
1089
|
inferenceEvents?: Maybe<Array<InferenceEvent>>;
|
|
924
1090
|
internalTransferDialId?: Maybe<Scalars['ID']['output']>;
|
|
925
1091
|
notes: Scalars['String']['output'];
|
|
926
|
-
phoneField: Scalars['String']['output'];
|
|
927
1092
|
recordings: Array<CallRecording>;
|
|
928
1093
|
status: Scalars['String']['output'];
|
|
929
1094
|
systemResultType?: Maybe<SystemResultType>;
|
|
@@ -931,6 +1096,7 @@ export type Dial = {
|
|
|
931
1096
|
transcript?: Maybe<CallTranscript>;
|
|
932
1097
|
user: User;
|
|
933
1098
|
versionedPrompt?: Maybe<VersionedPrompt>;
|
|
1099
|
+
voice?: Maybe<AiVoice>;
|
|
934
1100
|
};
|
|
935
1101
|
export type DialComment = {
|
|
936
1102
|
__typename?: 'DialComment';
|
|
@@ -961,13 +1127,17 @@ export declare enum DialEventType {
|
|
|
961
1127
|
}
|
|
962
1128
|
export type DialFilter = {
|
|
963
1129
|
agentFieldValues?: InputMaybe<Array<AgentFieldValue>>;
|
|
1130
|
+
batchDialJobId?: InputMaybe<Scalars['ID']['input']>;
|
|
964
1131
|
callAgents?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
965
1132
|
callDirections?: InputMaybe<Array<CallDirection>>;
|
|
966
1133
|
callTypes?: InputMaybe<Array<CallType>>;
|
|
967
1134
|
extractorValues?: InputMaybe<Array<ExtractorValue>>;
|
|
968
1135
|
inputValues?: InputMaybe<Array<InputValue>>;
|
|
1136
|
+
maxDurationSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
1137
|
+
minDurationSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
969
1138
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
970
1139
|
range?: InputMaybe<TimeRange>;
|
|
1140
|
+
systemResultTypes?: InputMaybe<Array<SystemResultType>>;
|
|
971
1141
|
};
|
|
972
1142
|
export type DialListResult = {
|
|
973
1143
|
__typename?: 'DialListResult';
|
|
@@ -997,14 +1167,14 @@ export type DialSession = {
|
|
|
997
1167
|
id: Scalars['ID']['output'];
|
|
998
1168
|
name: Scalars['String']['output'];
|
|
999
1169
|
numParallel: Scalars['Int']['output'];
|
|
1000
|
-
phoneFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
1001
1170
|
recordingSetting: RecordingSettingType;
|
|
1002
1171
|
sessionContacts: SessionContactsResult;
|
|
1172
|
+
silenceHangupConfiguration: SilenceHangupConfiguration;
|
|
1003
1173
|
sortDesc?: Maybe<Scalars['Boolean']['output']>;
|
|
1004
1174
|
sortField?: Maybe<Scalars['String']['output']>;
|
|
1005
1175
|
status: DialSessionStatus;
|
|
1006
|
-
tableFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
1007
1176
|
telephonyProvider: Scalars['String']['output'];
|
|
1177
|
+
voicemailDetection: VoicemailDetection;
|
|
1008
1178
|
voicemailId?: Maybe<Scalars['String']['output']>;
|
|
1009
1179
|
};
|
|
1010
1180
|
export type DialSessionDispositionsArgs = {
|
|
@@ -1070,6 +1240,37 @@ export type DialsUpdatedMessage = {
|
|
|
1070
1240
|
contactId?: Maybe<Scalars['ID']['output']>;
|
|
1071
1241
|
dials: Array<Dial>;
|
|
1072
1242
|
};
|
|
1243
|
+
export type DiffStageInput = {
|
|
1244
|
+
adds?: InputMaybe<Array<ApiFlowNodeInput>>;
|
|
1245
|
+
deletes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1246
|
+
globalInfoUpdate?: InputMaybe<GlobalInfoInput>;
|
|
1247
|
+
replacedTransitions?: InputMaybe<Array<ApplyFlowDiffReplaceTransitionsInput>>;
|
|
1248
|
+
updates?: InputMaybe<Array<ApiFlowNodeInput>>;
|
|
1249
|
+
};
|
|
1250
|
+
export type EditPromptAssistantInput = {
|
|
1251
|
+
chatId?: InputMaybe<Scalars['ID']['input']>;
|
|
1252
|
+
improvementInput: Scalars['String']['input'];
|
|
1253
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
1254
|
+
workspaceId: Scalars['ID']['input'];
|
|
1255
|
+
};
|
|
1256
|
+
export type EndpointDetectorConfig = {
|
|
1257
|
+
__typename?: 'EndpointDetectorConfig';
|
|
1258
|
+
mode?: Maybe<EndpointDetectorMode>;
|
|
1259
|
+
type: EndpointDetectorType;
|
|
1260
|
+
};
|
|
1261
|
+
export type EndpointDetectorConfigInput = {
|
|
1262
|
+
mode?: InputMaybe<EndpointDetectorMode>;
|
|
1263
|
+
type?: InputMaybe<EndpointDetectorType>;
|
|
1264
|
+
};
|
|
1265
|
+
export declare enum EndpointDetectorMode {
|
|
1266
|
+
Aggressive = "AGGRESSIVE",
|
|
1267
|
+
Conservative = "CONSERVATIVE",
|
|
1268
|
+
Default = "DEFAULT"
|
|
1269
|
+
}
|
|
1270
|
+
export declare enum EndpointDetectorType {
|
|
1271
|
+
Semantic = "SEMANTIC",
|
|
1272
|
+
Simple = "SIMPLE"
|
|
1273
|
+
}
|
|
1073
1274
|
export type ExtractorField = {
|
|
1074
1275
|
__typename?: 'ExtractorField';
|
|
1075
1276
|
customFieldJsonSchema?: Maybe<Scalars['String']['output']>;
|
|
@@ -1123,6 +1324,35 @@ export type FilterableField = {
|
|
|
1123
1324
|
fieldId: Scalars['String']['output'];
|
|
1124
1325
|
fieldName: Scalars['String']['output'];
|
|
1125
1326
|
};
|
|
1327
|
+
export type FlowAssistantChatQueryInput = {
|
|
1328
|
+
chatId?: InputMaybe<Scalars['ID']['input']>;
|
|
1329
|
+
fileIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1330
|
+
message: Scalars['String']['input'];
|
|
1331
|
+
versionedPromptId: Scalars['ID']['input'];
|
|
1332
|
+
};
|
|
1333
|
+
export type FlowAssistantChatQueryReplaceTransitionsResult = {
|
|
1334
|
+
__typename?: 'FlowAssistantChatQueryReplaceTransitionsResult';
|
|
1335
|
+
edges: Array<FlowTransitionRule>;
|
|
1336
|
+
nodeId: Scalars['ID']['output'];
|
|
1337
|
+
};
|
|
1338
|
+
export type FlowAssistantChatQueryResult = {
|
|
1339
|
+
__typename?: 'FlowAssistantChatQueryResult';
|
|
1340
|
+
adds: Array<ApiFlowNode>;
|
|
1341
|
+
chatId: Scalars['ID']['output'];
|
|
1342
|
+
deletes: Array<Scalars['String']['output']>;
|
|
1343
|
+
globalInfoUpdate?: Maybe<GlobalInfo>;
|
|
1344
|
+
replacedTransitions: Array<FlowAssistantChatQueryReplaceTransitionsResult>;
|
|
1345
|
+
updates: Array<ApiFlowNode>;
|
|
1346
|
+
};
|
|
1347
|
+
export type FlowAssistantStreamItem = {
|
|
1348
|
+
__typename?: 'FlowAssistantStreamItem';
|
|
1349
|
+
chatId?: Maybe<Scalars['ID']['output']>;
|
|
1350
|
+
chatTurn?: Maybe<Scalars['String']['output']>;
|
|
1351
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
1352
|
+
flowDiff?: Maybe<FlowAssistantChatQueryResult>;
|
|
1353
|
+
toolCalls?: Maybe<Array<ToolCall>>;
|
|
1354
|
+
turnComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
1355
|
+
};
|
|
1126
1356
|
export declare enum FlowConditionType {
|
|
1127
1357
|
Always = "always",
|
|
1128
1358
|
Equal = "equal",
|
|
@@ -1137,6 +1367,7 @@ export type FlowDefinition = {
|
|
|
1137
1367
|
globalContext?: Maybe<Scalars['String']['output']>;
|
|
1138
1368
|
nodes: Array<ApiFlowNode>;
|
|
1139
1369
|
openingLineType: OpeningLineType;
|
|
1370
|
+
startNodeMetadata?: Maybe<NodeEditorMetadata>;
|
|
1140
1371
|
useHistory: Scalars['Boolean']['output'];
|
|
1141
1372
|
};
|
|
1142
1373
|
export type FlowDefinitionInput = {
|
|
@@ -1144,6 +1375,7 @@ export type FlowDefinitionInput = {
|
|
|
1144
1375
|
globalContext?: InputMaybe<Scalars['String']['input']>;
|
|
1145
1376
|
nodes?: InputMaybe<Array<ApiFlowNodeInput>>;
|
|
1146
1377
|
openingLineType?: InputMaybe<OpeningLineType>;
|
|
1378
|
+
startNodeMetadata?: InputMaybe<NodeEditorMetadataInput>;
|
|
1147
1379
|
useHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1148
1380
|
};
|
|
1149
1381
|
export type FlowTransitionRule = {
|
|
@@ -1163,6 +1395,9 @@ export type FlowTransitionRuleInput = {
|
|
|
1163
1395
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
1164
1396
|
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1165
1397
|
};
|
|
1398
|
+
export type ForgotPasswordInput = {
|
|
1399
|
+
email: Scalars['String']['input'];
|
|
1400
|
+
};
|
|
1166
1401
|
export type FunctionCallRes = {
|
|
1167
1402
|
__typename?: 'FunctionCallRes';
|
|
1168
1403
|
arguments: Scalars['String']['output'];
|
|
@@ -1201,6 +1436,13 @@ export declare enum FunctionType {
|
|
|
1201
1436
|
Custom = "CUSTOM",
|
|
1202
1437
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
1203
1438
|
}
|
|
1439
|
+
export type GlobalInfo = {
|
|
1440
|
+
__typename?: 'GlobalInfo';
|
|
1441
|
+
globalContext?: Maybe<Scalars['String']['output']>;
|
|
1442
|
+
};
|
|
1443
|
+
export type GlobalInfoInput = {
|
|
1444
|
+
globalContext?: InputMaybe<Scalars['String']['input']>;
|
|
1445
|
+
};
|
|
1204
1446
|
export type GrantCreditsInput = {
|
|
1205
1447
|
balanceCents: Scalars['Int']['input'];
|
|
1206
1448
|
reason: Scalars['String']['input'];
|
|
@@ -1233,6 +1475,13 @@ export type ImportPhoneNumberInput = {
|
|
|
1233
1475
|
providerPhoneNumberId: Scalars['String']['input'];
|
|
1234
1476
|
workspaceId: Scalars['ID']['input'];
|
|
1235
1477
|
};
|
|
1478
|
+
export type ImportSipPhoneNumberInput = {
|
|
1479
|
+
password: Scalars['String']['input'];
|
|
1480
|
+
phoneNumber: Scalars['String']['input'];
|
|
1481
|
+
terminationUri: Scalars['String']['input'];
|
|
1482
|
+
username: Scalars['String']['input'];
|
|
1483
|
+
workspaceId: Scalars['ID']['input'];
|
|
1484
|
+
};
|
|
1236
1485
|
export type InboundForwardNumberInput = {
|
|
1237
1486
|
number?: InputMaybe<Scalars['String']['input']>;
|
|
1238
1487
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -1296,10 +1545,20 @@ export type LinkPhoneNumberInput = {
|
|
|
1296
1545
|
agentId: Scalars['ID']['input'];
|
|
1297
1546
|
phoneNumberId: Scalars['ID']['input'];
|
|
1298
1547
|
};
|
|
1548
|
+
export type ListBatchDialSpecsResult = {
|
|
1549
|
+
__typename?: 'ListBatchDialSpecsResult';
|
|
1550
|
+
batchDialSpecs: Array<BatchDialSpec>;
|
|
1551
|
+
numBatchDialSpecs: Scalars['Int']['output'];
|
|
1552
|
+
};
|
|
1299
1553
|
export type ListContactImportOptionsRes = {
|
|
1300
1554
|
__typename?: 'ListContactImportOptionsRes';
|
|
1301
1555
|
spec: Array<ContactListImportOptionSpec>;
|
|
1302
1556
|
};
|
|
1557
|
+
export type ListDialsResult = {
|
|
1558
|
+
__typename?: 'ListDialsResult';
|
|
1559
|
+
dials: Array<Dial>;
|
|
1560
|
+
numDials: Scalars['Int']['output'];
|
|
1561
|
+
};
|
|
1303
1562
|
export type ListKnowledgeBaseFilesResult = {
|
|
1304
1563
|
__typename?: 'ListKnowledgeBaseFilesResult';
|
|
1305
1564
|
knowledgeBaseFiles: Array<KnowledgeBaseFile>;
|
|
@@ -1361,18 +1620,28 @@ export type ModelOptionValueInput = {
|
|
|
1361
1620
|
export type MonitorActiveUsersInput = {
|
|
1362
1621
|
workspaceId: Scalars['ID']['input'];
|
|
1363
1622
|
};
|
|
1623
|
+
export type MultispeakerLine = {
|
|
1624
|
+
aiVoiceId: Scalars['ID']['input'];
|
|
1625
|
+
text: Scalars['String']['input'];
|
|
1626
|
+
};
|
|
1364
1627
|
export type Mutation = {
|
|
1365
1628
|
__typename?: 'Mutation';
|
|
1629
|
+
activateUser: Scalars['Boolean']['output'];
|
|
1366
1630
|
addBalance: Workspace;
|
|
1367
1631
|
addDialAiEvalRecord: AiEvalConfig;
|
|
1368
1632
|
addKnowledgeBaseFiles: Array<KnowledgeBaseFile>;
|
|
1369
1633
|
addPhoneNumber: PhoneNumber;
|
|
1634
|
+
addSipUri: PhoneNumber;
|
|
1370
1635
|
agentVariables: Array<Scalars['String']['output']>;
|
|
1371
1636
|
applyCRMAction: Contact;
|
|
1637
|
+
applyFlowDiff: ApplyFlowDiffResult;
|
|
1372
1638
|
assignContactList: ContactList;
|
|
1639
|
+
assistantFileUpload: AssistantFile;
|
|
1373
1640
|
browserDialToken: BrowserDialTokenRes;
|
|
1641
|
+
changeSubscription: Workspace;
|
|
1374
1642
|
cloneAgent: CallAgent;
|
|
1375
1643
|
cloneExtractor: CallAgentExtractor;
|
|
1644
|
+
cloneVersionedPrompt: VersionedPrompt;
|
|
1376
1645
|
cloneVoice: AiVoice;
|
|
1377
1646
|
completeOnboarding: Workspace;
|
|
1378
1647
|
connectCall: Scalars['Boolean']['output'];
|
|
@@ -1382,8 +1651,10 @@ export type Mutation = {
|
|
|
1382
1651
|
createAiEvalConfig: AiEvalConfig;
|
|
1383
1652
|
createAiModel: AiModel;
|
|
1384
1653
|
createAiVoice: AiVoice;
|
|
1654
|
+
createBatchDialJob: BatchDialJob;
|
|
1385
1655
|
createCallAgent: CallAgent;
|
|
1386
1656
|
createCallAgentExtractor: CallAgentExtractor;
|
|
1657
|
+
createCallAgentFromPrompt: CallAgent;
|
|
1387
1658
|
createCallAgentNode: ApiFlowNode;
|
|
1388
1659
|
createCallDataPreset: CallDataPreset;
|
|
1389
1660
|
createCoachingComment: CoachingComment;
|
|
@@ -1421,12 +1692,14 @@ export type Mutation = {
|
|
|
1421
1692
|
editSubscriptionLink: Scalars['String']['output'];
|
|
1422
1693
|
endDialSession: Scalars['Boolean']['output'];
|
|
1423
1694
|
enrollSelfLearning: Workspace;
|
|
1695
|
+
forgotPassword: Scalars['Boolean']['output'];
|
|
1424
1696
|
genTempToken: Scalars['String']['output'];
|
|
1425
1697
|
generateVideoToken: VideoTokenResp;
|
|
1426
1698
|
grantCredits: Workspace;
|
|
1427
1699
|
hangupAllCalls: Scalars['Boolean']['output'];
|
|
1428
1700
|
hangupCall: Scalars['Boolean']['output'];
|
|
1429
1701
|
importPhoneNumber: PhoneNumber;
|
|
1702
|
+
importSIPPhoneNumber: PhoneNumber;
|
|
1430
1703
|
linkPhoneNumber: CallAgent;
|
|
1431
1704
|
logCall: LogCallResponse;
|
|
1432
1705
|
logDialFeedback: Scalars['Boolean']['output'];
|
|
@@ -1437,11 +1710,18 @@ export type Mutation = {
|
|
|
1437
1710
|
pauseAI: Dial;
|
|
1438
1711
|
pauseDialSession: Scalars['Boolean']['output'];
|
|
1439
1712
|
phoneNumberSearch?: Maybe<Array<Scalars['String']['output']>>;
|
|
1713
|
+
rateVoiceGeneration: Scalars['Boolean']['output'];
|
|
1440
1714
|
removeMemberAccess: Scalars['String']['output'];
|
|
1441
1715
|
removePhoneNumber: PhoneNumber;
|
|
1716
|
+
resetPassword: Scalars['Boolean']['output'];
|
|
1442
1717
|
resyncContacts: Scalars['ID']['output'];
|
|
1718
|
+
rotateWebhookSigningSecret: Workspace;
|
|
1443
1719
|
runAiEval: AiEvalRun;
|
|
1444
1720
|
runExtractor: Scalars['Map']['output'];
|
|
1721
|
+
runMultiSpeakerTextToSpeech: Scalars['String']['output'];
|
|
1722
|
+
runTextToSpeech: Scalars['String']['output'];
|
|
1723
|
+
runVoicePlayground: VoiceGeneration;
|
|
1724
|
+
setBatchDialJobPaused: BatchDialJob;
|
|
1445
1725
|
setMemberAccess: WorkspaceMember;
|
|
1446
1726
|
setRecordingConfig: RecordingConfig;
|
|
1447
1727
|
signUp?: Maybe<AuthPayload>;
|
|
@@ -1458,9 +1738,11 @@ export type Mutation = {
|
|
|
1458
1738
|
updateAiVoiceAccess: AiVoice;
|
|
1459
1739
|
updateApolloSettings: CrmSpecification;
|
|
1460
1740
|
updateAppConfig: AppConfig;
|
|
1741
|
+
updateBatchDialJob: BatchDialJob;
|
|
1461
1742
|
updateCallAgent: CallAgent;
|
|
1462
1743
|
updateCallAgentExtractor: CallAgentExtractor;
|
|
1463
1744
|
updateCallAgentNode: ApiFlowNode;
|
|
1745
|
+
updateCallAgentNodeMetadata: ApiFlowNode;
|
|
1464
1746
|
updateCallAgentPronunciationMap: CallAgent;
|
|
1465
1747
|
updateCustomDetectorRegexps: Workspace;
|
|
1466
1748
|
updateDialMetadata: Dial;
|
|
@@ -1479,9 +1761,13 @@ export type Mutation = {
|
|
|
1479
1761
|
updateWorkspacePronunciationMap: Workspace;
|
|
1480
1762
|
updateWorkspaceSettings: Workspace;
|
|
1481
1763
|
updateWorkspaceUserSettings: Workspace;
|
|
1764
|
+
updateWorkspaceVoiceConfig: Workspace;
|
|
1482
1765
|
updateWorkspaceWebhook: Workspace;
|
|
1483
1766
|
verifyPhoneNumber: PhoneNumberVerification;
|
|
1484
1767
|
};
|
|
1768
|
+
export type MutationActivateUserArgs = {
|
|
1769
|
+
input: ActivateUserInput;
|
|
1770
|
+
};
|
|
1485
1771
|
export type MutationAddBalanceArgs = {
|
|
1486
1772
|
input: AddBalanceInput;
|
|
1487
1773
|
};
|
|
@@ -1496,25 +1782,41 @@ export type MutationAddPhoneNumberArgs = {
|
|
|
1496
1782
|
webhookUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1497
1783
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1498
1784
|
};
|
|
1785
|
+
export type MutationAddSipUriArgs = {
|
|
1786
|
+
input: AddSipUriInput;
|
|
1787
|
+
};
|
|
1499
1788
|
export type MutationAgentVariablesArgs = {
|
|
1500
1789
|
input: AgentVariablesInput;
|
|
1501
1790
|
};
|
|
1502
1791
|
export type MutationApplyCrmActionArgs = {
|
|
1503
1792
|
input: CrmActionInput;
|
|
1504
1793
|
};
|
|
1794
|
+
export type MutationApplyFlowDiffArgs = {
|
|
1795
|
+
input: ApplyFlowDiffInput;
|
|
1796
|
+
};
|
|
1505
1797
|
export type MutationAssignContactListArgs = {
|
|
1506
1798
|
id: Scalars['ID']['input'];
|
|
1507
1799
|
userId: Scalars['ID']['input'];
|
|
1508
1800
|
};
|
|
1801
|
+
export type MutationAssistantFileUploadArgs = {
|
|
1802
|
+
input: AssistantFileUploadInput;
|
|
1803
|
+
};
|
|
1509
1804
|
export type MutationBrowserDialTokenArgs = {
|
|
1510
1805
|
input: BrowserDialTokenInput;
|
|
1511
1806
|
};
|
|
1807
|
+
export type MutationChangeSubscriptionArgs = {
|
|
1808
|
+
pricingPlanId: Scalars['String']['input'];
|
|
1809
|
+
workspaceId: Scalars['ID']['input'];
|
|
1810
|
+
};
|
|
1512
1811
|
export type MutationCloneAgentArgs = {
|
|
1513
1812
|
input: CloneAgentInput;
|
|
1514
1813
|
};
|
|
1515
1814
|
export type MutationCloneExtractorArgs = {
|
|
1516
1815
|
input: CloneExtractorInput;
|
|
1517
1816
|
};
|
|
1817
|
+
export type MutationCloneVersionedPromptArgs = {
|
|
1818
|
+
input: CloneVersionedPromptInput;
|
|
1819
|
+
};
|
|
1518
1820
|
export type MutationCloneVoiceArgs = {
|
|
1519
1821
|
input: CloneVoiceInput;
|
|
1520
1822
|
};
|
|
@@ -1542,12 +1844,18 @@ export type MutationCreateAiModelArgs = {
|
|
|
1542
1844
|
export type MutationCreateAiVoiceArgs = {
|
|
1543
1845
|
input: CreateAiVoiceInput;
|
|
1544
1846
|
};
|
|
1847
|
+
export type MutationCreateBatchDialJobArgs = {
|
|
1848
|
+
input: CreateBatchDialJobInput;
|
|
1849
|
+
};
|
|
1545
1850
|
export type MutationCreateCallAgentArgs = {
|
|
1546
1851
|
input: CallAgentInput;
|
|
1547
1852
|
};
|
|
1548
1853
|
export type MutationCreateCallAgentExtractorArgs = {
|
|
1549
1854
|
input: CreateCallAgentExtractorInput;
|
|
1550
1855
|
};
|
|
1856
|
+
export type MutationCreateCallAgentFromPromptArgs = {
|
|
1857
|
+
input: CreateCallAgentFromPromptInput;
|
|
1858
|
+
};
|
|
1551
1859
|
export type MutationCreateCallAgentNodeArgs = {
|
|
1552
1860
|
input: CreateCallAgentNodeInput;
|
|
1553
1861
|
};
|
|
@@ -1662,6 +1970,9 @@ export type MutationEndDialSessionArgs = {
|
|
|
1662
1970
|
export type MutationEnrollSelfLearningArgs = {
|
|
1663
1971
|
workspaceId: Scalars['ID']['input'];
|
|
1664
1972
|
};
|
|
1973
|
+
export type MutationForgotPasswordArgs = {
|
|
1974
|
+
input: ForgotPasswordInput;
|
|
1975
|
+
};
|
|
1665
1976
|
export type MutationGenerateVideoTokenArgs = {
|
|
1666
1977
|
roomId: Scalars['ID']['input'];
|
|
1667
1978
|
};
|
|
@@ -1679,6 +1990,9 @@ export type MutationHangupCallArgs = {
|
|
|
1679
1990
|
export type MutationImportPhoneNumberArgs = {
|
|
1680
1991
|
input: ImportPhoneNumberInput;
|
|
1681
1992
|
};
|
|
1993
|
+
export type MutationImportSipPhoneNumberArgs = {
|
|
1994
|
+
input: ImportSipPhoneNumberInput;
|
|
1995
|
+
};
|
|
1682
1996
|
export type MutationLinkPhoneNumberArgs = {
|
|
1683
1997
|
input: LinkPhoneNumberInput;
|
|
1684
1998
|
};
|
|
@@ -1698,6 +2012,7 @@ export type MutationMarkTaskCompleteArgs = {
|
|
|
1698
2012
|
input: MarkTaskCompleteInput;
|
|
1699
2013
|
};
|
|
1700
2014
|
export type MutationNewSubscriptionLinkArgs = {
|
|
2015
|
+
pricingPlanId: Scalars['String']['input'];
|
|
1701
2016
|
workspaceId: Scalars['ID']['input'];
|
|
1702
2017
|
};
|
|
1703
2018
|
export type MutationPauseAiArgs = {
|
|
@@ -1713,6 +2028,10 @@ export type MutationPhoneNumberSearchArgs = {
|
|
|
1713
2028
|
prefix: Scalars['String']['input'];
|
|
1714
2029
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1715
2030
|
};
|
|
2031
|
+
export type MutationRateVoiceGenerationArgs = {
|
|
2032
|
+
id: Scalars['ID']['input'];
|
|
2033
|
+
rating: Scalars['Int']['input'];
|
|
2034
|
+
};
|
|
1716
2035
|
export type MutationRemoveMemberAccessArgs = {
|
|
1717
2036
|
userId: Scalars['ID']['input'];
|
|
1718
2037
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -1720,9 +2039,15 @@ export type MutationRemoveMemberAccessArgs = {
|
|
|
1720
2039
|
export type MutationRemovePhoneNumberArgs = {
|
|
1721
2040
|
id: Scalars['ID']['input'];
|
|
1722
2041
|
};
|
|
2042
|
+
export type MutationResetPasswordArgs = {
|
|
2043
|
+
input: ResetPasswordInput;
|
|
2044
|
+
};
|
|
1723
2045
|
export type MutationResyncContactsArgs = {
|
|
1724
2046
|
contactListId: Scalars['ID']['input'];
|
|
1725
2047
|
};
|
|
2048
|
+
export type MutationRotateWebhookSigningSecretArgs = {
|
|
2049
|
+
workspaceId: Scalars['ID']['input'];
|
|
2050
|
+
};
|
|
1726
2051
|
export type MutationRunAiEvalArgs = {
|
|
1727
2052
|
input: RunAiEvalInput;
|
|
1728
2053
|
};
|
|
@@ -1731,6 +2056,19 @@ export type MutationRunExtractorArgs = {
|
|
|
1731
2056
|
extractorId: Scalars['ID']['input'];
|
|
1732
2057
|
writeData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1733
2058
|
};
|
|
2059
|
+
export type MutationRunMultiSpeakerTextToSpeechArgs = {
|
|
2060
|
+
input: RunMultiSpeakerTextToSpeechInput;
|
|
2061
|
+
};
|
|
2062
|
+
export type MutationRunTextToSpeechArgs = {
|
|
2063
|
+
input: RunTextToSpeechInput;
|
|
2064
|
+
};
|
|
2065
|
+
export type MutationRunVoicePlaygroundArgs = {
|
|
2066
|
+
input: RunVoicePlaygroundInput;
|
|
2067
|
+
};
|
|
2068
|
+
export type MutationSetBatchDialJobPausedArgs = {
|
|
2069
|
+
id: Scalars['ID']['input'];
|
|
2070
|
+
paused: Scalars['Boolean']['input'];
|
|
2071
|
+
};
|
|
1734
2072
|
export type MutationSetMemberAccessArgs = {
|
|
1735
2073
|
email: Scalars['String']['input'];
|
|
1736
2074
|
role: Role;
|
|
@@ -1782,6 +2120,9 @@ export type MutationUpdateApolloSettingsArgs = {
|
|
|
1782
2120
|
export type MutationUpdateAppConfigArgs = {
|
|
1783
2121
|
input: UpdateAppConfigInput;
|
|
1784
2122
|
};
|
|
2123
|
+
export type MutationUpdateBatchDialJobArgs = {
|
|
2124
|
+
input: UpdateBatchDialJobInput;
|
|
2125
|
+
};
|
|
1785
2126
|
export type MutationUpdateCallAgentArgs = {
|
|
1786
2127
|
input: UpdateCallAgentInput;
|
|
1787
2128
|
};
|
|
@@ -1791,6 +2132,9 @@ export type MutationUpdateCallAgentExtractorArgs = {
|
|
|
1791
2132
|
export type MutationUpdateCallAgentNodeArgs = {
|
|
1792
2133
|
input: UpdateCallAgentNodeInput;
|
|
1793
2134
|
};
|
|
2135
|
+
export type MutationUpdateCallAgentNodeMetadataArgs = {
|
|
2136
|
+
input: UpdateCallAgentNodeMetadataInput;
|
|
2137
|
+
};
|
|
1794
2138
|
export type MutationUpdateCallAgentPronunciationMapArgs = {
|
|
1795
2139
|
input: UpdateCallAgentPronunciationMapInput;
|
|
1796
2140
|
};
|
|
@@ -1845,12 +2189,24 @@ export type MutationUpdateWorkspaceSettingsArgs = {
|
|
|
1845
2189
|
export type MutationUpdateWorkspaceUserSettingsArgs = {
|
|
1846
2190
|
input: UserWorkspaceSettingsInput;
|
|
1847
2191
|
};
|
|
2192
|
+
export type MutationUpdateWorkspaceVoiceConfigArgs = {
|
|
2193
|
+
input: UpdateWorkspaceVoiceConfig;
|
|
2194
|
+
};
|
|
1848
2195
|
export type MutationUpdateWorkspaceWebhookArgs = {
|
|
1849
2196
|
input: WorkspaceWebhookInput;
|
|
1850
2197
|
};
|
|
1851
2198
|
export type MutationVerifyPhoneNumberArgs = {
|
|
1852
2199
|
input: VerifyPhoneNumberInput;
|
|
1853
2200
|
};
|
|
2201
|
+
export type NodeEditorMetadata = {
|
|
2202
|
+
__typename?: 'NodeEditorMetadata';
|
|
2203
|
+
x: Scalars['Float']['output'];
|
|
2204
|
+
y: Scalars['Float']['output'];
|
|
2205
|
+
};
|
|
2206
|
+
export type NodeEditorMetadataInput = {
|
|
2207
|
+
x: Scalars['Float']['input'];
|
|
2208
|
+
y: Scalars['Float']['input'];
|
|
2209
|
+
};
|
|
1854
2210
|
export type NodeTransitionResult = {
|
|
1855
2211
|
__typename?: 'NodeTransitionResult';
|
|
1856
2212
|
fromNodeId: Scalars['String']['output'];
|
|
@@ -1874,6 +2230,15 @@ export declare enum OpeningLineType {
|
|
|
1874
2230
|
InboundOutbound = "INBOUND_OUTBOUND",
|
|
1875
2231
|
None = "NONE"
|
|
1876
2232
|
}
|
|
2233
|
+
export type OutputFormat = {
|
|
2234
|
+
outputType: OutputType;
|
|
2235
|
+
sampleRate: Scalars['Int']['input'];
|
|
2236
|
+
};
|
|
2237
|
+
export declare enum OutputType {
|
|
2238
|
+
Mp3 = "MP3",
|
|
2239
|
+
RawPcm16 = "RAW_PCM16",
|
|
2240
|
+
WavPcm16 = "WAV_PCM16"
|
|
2241
|
+
}
|
|
1877
2242
|
export type OverLimitResult = {
|
|
1878
2243
|
__typename?: 'OverLimitResult';
|
|
1879
2244
|
exceededLimit: Scalars['Boolean']['output'];
|
|
@@ -1888,16 +2253,25 @@ export type PhoneNumber = {
|
|
|
1888
2253
|
__typename?: 'PhoneNumber';
|
|
1889
2254
|
callAgent?: Maybe<CallAgent>;
|
|
1890
2255
|
id: Scalars['ID']['output'];
|
|
2256
|
+
imported: Scalars['Boolean']['output'];
|
|
1891
2257
|
number: Scalars['String']['output'];
|
|
2258
|
+
numberType: PhoneNumberType;
|
|
1892
2259
|
spamInfo?: Maybe<SpamData>;
|
|
1893
2260
|
stats: PhoneNumberStats;
|
|
1894
2261
|
};
|
|
2262
|
+
export type PhoneNumberFilter = {
|
|
2263
|
+
numberType?: InputMaybe<PhoneNumberType>;
|
|
2264
|
+
};
|
|
1895
2265
|
export type PhoneNumberStats = {
|
|
1896
2266
|
__typename?: 'PhoneNumberStats';
|
|
1897
2267
|
numConnects: Scalars['Int']['output'];
|
|
1898
2268
|
numDials: Scalars['Int']['output'];
|
|
1899
2269
|
numFails: Scalars['Int']['output'];
|
|
1900
2270
|
};
|
|
2271
|
+
export declare enum PhoneNumberType {
|
|
2272
|
+
Pstn = "PSTN",
|
|
2273
|
+
SipUsername = "SIP_USERNAME"
|
|
2274
|
+
}
|
|
1901
2275
|
export type PhoneNumberVerification = {
|
|
1902
2276
|
__typename?: 'PhoneNumberVerification';
|
|
1903
2277
|
id: Scalars['ID']['output'];
|
|
@@ -1907,6 +2281,15 @@ export type PhoneNumbersResult = {
|
|
|
1907
2281
|
numPhoneNumbers: Scalars['Int']['output'];
|
|
1908
2282
|
phoneNumbers: Array<PhoneNumber>;
|
|
1909
2283
|
};
|
|
2284
|
+
export type PricingPlanOption = {
|
|
2285
|
+
__typename?: 'PricingPlanOption';
|
|
2286
|
+
contactUs: Scalars['Boolean']['output'];
|
|
2287
|
+
default: Scalars['Boolean']['output'];
|
|
2288
|
+
description: Scalars['String']['output'];
|
|
2289
|
+
id: Scalars['String']['output'];
|
|
2290
|
+
name: Scalars['String']['output'];
|
|
2291
|
+
priceCents: Scalars['Int']['output'];
|
|
2292
|
+
};
|
|
1910
2293
|
export type PricingProduct = {
|
|
1911
2294
|
__typename?: 'PricingProduct';
|
|
1912
2295
|
billingName: Scalars['String']['output'];
|
|
@@ -1914,6 +2297,12 @@ export type PricingProduct = {
|
|
|
1914
2297
|
id: Scalars['ID']['output'];
|
|
1915
2298
|
priceDecimal: Scalars['String']['output'];
|
|
1916
2299
|
};
|
|
2300
|
+
export type PromptEditStreamItem = {
|
|
2301
|
+
__typename?: 'PromptEditStreamItem';
|
|
2302
|
+
chatId: Scalars['ID']['output'];
|
|
2303
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
2304
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
2305
|
+
};
|
|
1917
2306
|
export type PronunciationEntry = {
|
|
1918
2307
|
__typename?: 'PronunciationEntry';
|
|
1919
2308
|
ipaPronunciation: Scalars['String']['output'];
|
|
@@ -1941,6 +2330,7 @@ export type Query = {
|
|
|
1941
2330
|
aiVoice: AiVoice;
|
|
1942
2331
|
allWorkspaces: AllWorkspacesResult;
|
|
1943
2332
|
appConfig: AppConfig;
|
|
2333
|
+
batchDialJob: BatchDialJob;
|
|
1944
2334
|
callAgent: CallAgent;
|
|
1945
2335
|
callDataPreset: CallDataPreset;
|
|
1946
2336
|
contact: Contact;
|
|
@@ -1958,6 +2348,7 @@ export type Query = {
|
|
|
1958
2348
|
recording: CallRecording;
|
|
1959
2349
|
salesfloorRoom: SalesfloorRoom;
|
|
1960
2350
|
versionedPrompt: VersionedPrompt;
|
|
2351
|
+
voiceGeneration: VoiceGeneration;
|
|
1961
2352
|
voicemail: Voicemail;
|
|
1962
2353
|
voices: AiVoicesResult;
|
|
1963
2354
|
workspace: Workspace;
|
|
@@ -1991,6 +2382,9 @@ export type QueryAllWorkspacesArgs = {
|
|
|
1991
2382
|
limit: Scalars['Int']['input'];
|
|
1992
2383
|
offset: Scalars['Int']['input'];
|
|
1993
2384
|
};
|
|
2385
|
+
export type QueryBatchDialJobArgs = {
|
|
2386
|
+
id: Scalars['ID']['input'];
|
|
2387
|
+
};
|
|
1994
2388
|
export type QueryCallAgentArgs = {
|
|
1995
2389
|
id: Scalars['ID']['input'];
|
|
1996
2390
|
};
|
|
@@ -2036,6 +2430,9 @@ export type QuerySalesfloorRoomArgs = {
|
|
|
2036
2430
|
export type QueryVersionedPromptArgs = {
|
|
2037
2431
|
id: Scalars['ID']['input'];
|
|
2038
2432
|
};
|
|
2433
|
+
export type QueryVoiceGenerationArgs = {
|
|
2434
|
+
id: Scalars['ID']['input'];
|
|
2435
|
+
};
|
|
2039
2436
|
export type QueryVoicemailArgs = {
|
|
2040
2437
|
id: Scalars['ID']['input'];
|
|
2041
2438
|
};
|
|
@@ -2074,6 +2471,12 @@ export declare enum RecordingSettingType {
|
|
|
2074
2471
|
RecordAll = "RECORD_ALL",
|
|
2075
2472
|
RecordNone = "RECORD_NONE"
|
|
2076
2473
|
}
|
|
2474
|
+
export type ResetPasswordInput = {
|
|
2475
|
+
confirmPassword: Scalars['String']['input'];
|
|
2476
|
+
password: Scalars['String']['input'];
|
|
2477
|
+
resetId: Scalars['String']['input'];
|
|
2478
|
+
token: Scalars['String']['input'];
|
|
2479
|
+
};
|
|
2077
2480
|
export declare enum Role {
|
|
2078
2481
|
Admin = "ADMIN",
|
|
2079
2482
|
Manager = "MANAGER",
|
|
@@ -2104,9 +2507,28 @@ export type RunModelCounterfactualInput = {
|
|
|
2104
2507
|
};
|
|
2105
2508
|
export type RunModelCounterfactualResult = {
|
|
2106
2509
|
__typename?: 'RunModelCounterfactualResult';
|
|
2510
|
+
functionCalls?: Maybe<Array<FunctionCallRes>>;
|
|
2107
2511
|
index: Scalars['Int']['output'];
|
|
2108
2512
|
text: Scalars['String']['output'];
|
|
2109
2513
|
};
|
|
2514
|
+
export type RunMultiSpeakerTextToSpeechInput = {
|
|
2515
|
+
format: OutputFormat;
|
|
2516
|
+
lines: Array<MultispeakerLine>;
|
|
2517
|
+
voiceOptionValues?: InputMaybe<Array<ModelOptionValueInput>>;
|
|
2518
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2519
|
+
};
|
|
2520
|
+
export type RunTextToSpeechInput = {
|
|
2521
|
+
aiVoiceId: Scalars['ID']['input'];
|
|
2522
|
+
format: OutputFormat;
|
|
2523
|
+
text: Scalars['String']['input'];
|
|
2524
|
+
voiceOptionValues?: InputMaybe<Array<ModelOptionValueInput>>;
|
|
2525
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2526
|
+
};
|
|
2527
|
+
export type RunVoicePlaygroundInput = {
|
|
2528
|
+
lines: Array<VoicePlaygroundLineInput>;
|
|
2529
|
+
voiceOptionValues?: InputMaybe<Array<ModelOptionValueInput>>;
|
|
2530
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2531
|
+
};
|
|
2110
2532
|
export type SalesfloorRoom = {
|
|
2111
2533
|
__typename?: 'SalesfloorRoom';
|
|
2112
2534
|
id: Scalars['ID']['output'];
|
|
@@ -2143,6 +2565,15 @@ export type SalesloftSettingsInput = {
|
|
|
2143
2565
|
notesMode?: InputMaybe<SalesloftNotesMode>;
|
|
2144
2566
|
workspaceId: Scalars['ID']['input'];
|
|
2145
2567
|
};
|
|
2568
|
+
export type ScheduleTimeSlot = {
|
|
2569
|
+
__typename?: 'ScheduleTimeSlot';
|
|
2570
|
+
endTime: Scalars['String']['output'];
|
|
2571
|
+
startTime: Scalars['String']['output'];
|
|
2572
|
+
};
|
|
2573
|
+
export type ScheduleTimeSlotInput = {
|
|
2574
|
+
endTime: Scalars['String']['input'];
|
|
2575
|
+
startTime: Scalars['String']['input'];
|
|
2576
|
+
};
|
|
2146
2577
|
export type SessionContact = {
|
|
2147
2578
|
__typename?: 'SessionContact';
|
|
2148
2579
|
contact: Contact;
|
|
@@ -2205,6 +2636,20 @@ export type SignUpInput = {
|
|
|
2205
2636
|
email: Scalars['String']['input'];
|
|
2206
2637
|
password: Scalars['String']['input'];
|
|
2207
2638
|
};
|
|
2639
|
+
export type SilenceHangupConfiguration = {
|
|
2640
|
+
__typename?: 'SilenceHangupConfiguration';
|
|
2641
|
+
silenceDurationSeconds: Scalars['Int']['output'];
|
|
2642
|
+
type: SilenceHangupType;
|
|
2643
|
+
};
|
|
2644
|
+
export type SilenceHangupConfigurationInput = {
|
|
2645
|
+
silenceDurationSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
2646
|
+
type?: InputMaybe<SilenceHangupType>;
|
|
2647
|
+
};
|
|
2648
|
+
export declare enum SilenceHangupType {
|
|
2649
|
+
Disabled = "DISABLED",
|
|
2650
|
+
FirstMessageOnly = "FIRST_MESSAGE_ONLY",
|
|
2651
|
+
WholeCall = "WHOLE_CALL"
|
|
2652
|
+
}
|
|
2208
2653
|
export type SpamData = {
|
|
2209
2654
|
__typename?: 'SpamData';
|
|
2210
2655
|
flagged?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2224,6 +2669,7 @@ export type SpeakerTextRes = {
|
|
|
2224
2669
|
functionCalls?: Maybe<Array<FunctionCallRes>>;
|
|
2225
2670
|
knowledgeBaseContext?: Maybe<Array<SpeakerTextKnowledgeBaseContext>>;
|
|
2226
2671
|
nodeTransitionResult?: Maybe<NodeTransitionResult>;
|
|
2672
|
+
playId?: Maybe<Scalars['String']['output']>;
|
|
2227
2673
|
speaker: Scalars['String']['output'];
|
|
2228
2674
|
text: Scalars['String']['output'];
|
|
2229
2675
|
};
|
|
@@ -2249,6 +2695,8 @@ export type Subscription = {
|
|
|
2249
2695
|
__typename?: 'Subscription';
|
|
2250
2696
|
connectRoom: SalesfloorRoomMessage;
|
|
2251
2697
|
connectSession: SessionMessage;
|
|
2698
|
+
editPromptAssistant: PromptEditStreamItem;
|
|
2699
|
+
flowAssistantChatStream: FlowAssistantStreamItem;
|
|
2252
2700
|
listenForIncomingCalls: Dial;
|
|
2253
2701
|
monitorActiveUsers: UserActivityMessage;
|
|
2254
2702
|
runChatQueryStream: RunChatQueryStreamResult;
|
|
@@ -2263,6 +2711,12 @@ export type SubscriptionConnectRoomArgs = {
|
|
|
2263
2711
|
export type SubscriptionConnectSessionArgs = {
|
|
2264
2712
|
sessionId: Scalars['ID']['input'];
|
|
2265
2713
|
};
|
|
2714
|
+
export type SubscriptionEditPromptAssistantArgs = {
|
|
2715
|
+
input: EditPromptAssistantInput;
|
|
2716
|
+
};
|
|
2717
|
+
export type SubscriptionFlowAssistantChatStreamArgs = {
|
|
2718
|
+
input: FlowAssistantChatQueryInput;
|
|
2719
|
+
};
|
|
2266
2720
|
export type SubscriptionListenForIncomingCallsArgs = {
|
|
2267
2721
|
workspaceId: Scalars['ID']['input'];
|
|
2268
2722
|
};
|
|
@@ -2295,16 +2749,21 @@ export type SystemResult = {
|
|
|
2295
2749
|
resultType: SystemResultType;
|
|
2296
2750
|
};
|
|
2297
2751
|
export declare enum SystemResultType {
|
|
2752
|
+
AgentHangup = "AGENT_HANGUP",
|
|
2298
2753
|
Busy = "BUSY",
|
|
2299
2754
|
Cancelled = "CANCELLED",
|
|
2755
|
+
CounterpartyHangup = "COUNTERPARTY_HANGUP",
|
|
2300
2756
|
DialTreeFound = "DIAL_TREE_FOUND",
|
|
2301
2757
|
DncSkipped = "DNC_SKIPPED",
|
|
2302
2758
|
Failed = "FAILED",
|
|
2759
|
+
LongSilenceHangup = "LONG_SILENCE_HANGUP",
|
|
2303
2760
|
NoAnswer = "NO_ANSWER",
|
|
2304
2761
|
NumberSkipped = "NUMBER_SKIPPED",
|
|
2305
2762
|
RateLimited = "RATE_LIMITED",
|
|
2306
2763
|
Timeout = "TIMEOUT",
|
|
2764
|
+
Transferred = "TRANSFERRED",
|
|
2307
2765
|
UserHangup = "USER_HANGUP",
|
|
2766
|
+
VoicemailDetectedHangup = "VOICEMAIL_DETECTED_HANGUP",
|
|
2308
2767
|
VoicemailLeft = "VOICEMAIL_LEFT",
|
|
2309
2768
|
VoicemailNotLeft = "VOICEMAIL_NOT_LEFT"
|
|
2310
2769
|
}
|
|
@@ -2343,6 +2802,11 @@ export type TokenRes = {
|
|
|
2343
2802
|
__typename?: 'TokenRes';
|
|
2344
2803
|
token: Scalars['String']['output'];
|
|
2345
2804
|
};
|
|
2805
|
+
export type ToolCall = {
|
|
2806
|
+
__typename?: 'ToolCall';
|
|
2807
|
+
description: Scalars['String']['output'];
|
|
2808
|
+
id: Scalars['String']['output'];
|
|
2809
|
+
};
|
|
2346
2810
|
export type TranscriberConfig = {
|
|
2347
2811
|
__typename?: 'TranscriberConfig';
|
|
2348
2812
|
type: Scalars['String']['output'];
|
|
@@ -2361,6 +2825,9 @@ export type UpdateAiEvalConfigInput = {
|
|
|
2361
2825
|
};
|
|
2362
2826
|
export type UpdateAiVoiceInput = {
|
|
2363
2827
|
aiVoiceId: Scalars['ID']['input'];
|
|
2828
|
+
annotations?: InputMaybe<NullableStringInput>;
|
|
2829
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
2830
|
+
featuredPriority?: InputMaybe<Scalars['Int']['input']>;
|
|
2364
2831
|
gender?: InputMaybe<VoiceGender>;
|
|
2365
2832
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2366
2833
|
provider?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2369,6 +2836,7 @@ export type UpdateAiVoiceInput = {
|
|
|
2369
2836
|
public?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2370
2837
|
refAudio?: InputMaybe<Scalars['Upload']['input']>;
|
|
2371
2838
|
refText?: InputMaybe<NullableStringInput>;
|
|
2839
|
+
subProvider?: InputMaybe<Scalars['String']['input']>;
|
|
2372
2840
|
workspaceId?: InputMaybe<NullableIdInput>;
|
|
2373
2841
|
};
|
|
2374
2842
|
export type UpdateAiModelAccessInput = {
|
|
@@ -2379,6 +2847,8 @@ export type UpdateAiModelAccessInput = {
|
|
|
2379
2847
|
export type UpdateAiModelInput = {
|
|
2380
2848
|
aiModelId: Scalars['ID']['input'];
|
|
2381
2849
|
allowedAgentType?: InputMaybe<AllowedAgentType>;
|
|
2850
|
+
customPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
2851
|
+
highCost?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2382
2852
|
modelParams?: InputMaybe<Scalars['String']['input']>;
|
|
2383
2853
|
modelType?: InputMaybe<Scalars['String']['input']>;
|
|
2384
2854
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2392,7 +2862,15 @@ export type UpdateAiVoiceAccessInput = {
|
|
|
2392
2862
|
workspaceId: Scalars['ID']['input'];
|
|
2393
2863
|
};
|
|
2394
2864
|
export type UpdateAppConfigInput = {
|
|
2395
|
-
billingConfigJSON
|
|
2865
|
+
billingConfigJSON?: InputMaybe<Scalars['String']['input']>;
|
|
2866
|
+
pricingPlanOptionsJSON?: InputMaybe<Scalars['String']['input']>;
|
|
2867
|
+
voiceConfigJSON?: InputMaybe<Scalars['String']['input']>;
|
|
2868
|
+
};
|
|
2869
|
+
export type UpdateBatchDialJobInput = {
|
|
2870
|
+
fromPhoneNumberIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2871
|
+
id: Scalars['ID']['input'];
|
|
2872
|
+
maxConcurrentDials?: InputMaybe<Scalars['Int']['input']>;
|
|
2873
|
+
schedule?: InputMaybe<WeeklyScheduleInput>;
|
|
2396
2874
|
};
|
|
2397
2875
|
export type UpdateCallAgentExtractorInput = {
|
|
2398
2876
|
callAgentExtractorId: Scalars['ID']['input'];
|
|
@@ -2406,6 +2884,7 @@ export type UpdateCallAgentInput = {
|
|
|
2406
2884
|
backgroundNoiseType?: InputMaybe<Scalars['String']['input']>;
|
|
2407
2885
|
callAgentExtractorId?: InputMaybe<NullableStringInput>;
|
|
2408
2886
|
defaultPromptId?: InputMaybe<Scalars['ID']['input']>;
|
|
2887
|
+
endpointDetectorConfig?: InputMaybe<EndpointDetectorConfigInput>;
|
|
2409
2888
|
idleMessageConfig?: InputMaybe<IdleConfigInput>;
|
|
2410
2889
|
inboundWebhookResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2411
2890
|
inboundWebhookURL?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2420,17 +2899,25 @@ export type UpdateCallAgentInput = {
|
|
|
2420
2899
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2421
2900
|
openingLine?: InputMaybe<NullableStringInput>;
|
|
2422
2901
|
openingLineType?: InputMaybe<OpeningLineType>;
|
|
2902
|
+
silenceHangupConfiguration?: InputMaybe<SilenceHangupConfigurationInput>;
|
|
2423
2903
|
transcriberParams?: InputMaybe<TranscriberParamsInput>;
|
|
2424
2904
|
transferNumber?: InputMaybe<NullableStringInput>;
|
|
2425
2905
|
utteranceDetectorConfig?: InputMaybe<UtteranceDetectorConfigInput>;
|
|
2906
|
+
versionedPromptBackupDetails?: InputMaybe<VersionedPromptBackupDetailsInput>;
|
|
2426
2907
|
voiceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2427
2908
|
voiceOptionValues?: InputMaybe<Array<ModelOptionValueInput>>;
|
|
2428
2909
|
voiceVolumeLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
2910
|
+
voicemailDetection?: InputMaybe<VoicemailDetection>;
|
|
2429
2911
|
};
|
|
2430
2912
|
export type UpdateCallAgentNodeInput = {
|
|
2431
2913
|
nodeInput: ApiFlowNodeInput;
|
|
2432
2914
|
versionedPromptId: Scalars['ID']['input'];
|
|
2433
2915
|
};
|
|
2916
|
+
export type UpdateCallAgentNodeMetadataInput = {
|
|
2917
|
+
editorMetadata: NodeEditorMetadataInput;
|
|
2918
|
+
nodeId: Scalars['ID']['input'];
|
|
2919
|
+
versionedPromptId: Scalars['ID']['input'];
|
|
2920
|
+
};
|
|
2434
2921
|
export type UpdateCallAgentPronunciationMapInput = {
|
|
2435
2922
|
agentId: Scalars['ID']['input'];
|
|
2436
2923
|
pronunciationEntries: Array<PronunciationEntryInput>;
|
|
@@ -2484,7 +2971,9 @@ export type UpdateVersionedPromptInput = {
|
|
|
2484
2971
|
versionedPromptId: Scalars['ID']['input'];
|
|
2485
2972
|
};
|
|
2486
2973
|
export type UpdateWorkspaceBillingConfig = {
|
|
2487
|
-
billingConfigJSON
|
|
2974
|
+
billingConfigJSON?: InputMaybe<Scalars['String']['input']>;
|
|
2975
|
+
enterprise?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2976
|
+
hipaa?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2488
2977
|
workspaceId: Scalars['ID']['input'];
|
|
2489
2978
|
};
|
|
2490
2979
|
export type UpdateWorkspaceCustomDetectorRegexps = {
|
|
@@ -2499,6 +2988,10 @@ export type UpdateWorkspaceSettingsInput = {
|
|
|
2499
2988
|
defaultWebcallType?: InputMaybe<WebcallType>;
|
|
2500
2989
|
workspaceId: Scalars['ID']['input'];
|
|
2501
2990
|
};
|
|
2991
|
+
export type UpdateWorkspaceVoiceConfig = {
|
|
2992
|
+
voiceConfigJSON?: InputMaybe<Scalars['String']['input']>;
|
|
2993
|
+
workspaceId: Scalars['ID']['input'];
|
|
2994
|
+
};
|
|
2502
2995
|
export type UsageInfo = {
|
|
2503
2996
|
__typename?: 'UsageInfo';
|
|
2504
2997
|
limit: Scalars['Int']['output'];
|
|
@@ -2597,11 +3090,32 @@ export type VersionedPrompt = {
|
|
|
2597
3090
|
createdAt: Scalars['Time']['output'];
|
|
2598
3091
|
flowDefinition?: Maybe<FlowDefinition>;
|
|
2599
3092
|
id: Scalars['ID']['output'];
|
|
3093
|
+
initializingChat?: Maybe<AssistantChat>;
|
|
2600
3094
|
modelOptionValues?: Maybe<Array<ModelOptionValue>>;
|
|
2601
3095
|
name: Scalars['String']['output'];
|
|
2602
3096
|
prompt?: Maybe<Scalars['String']['output']>;
|
|
2603
3097
|
updatedAt: Scalars['Time']['output'];
|
|
2604
3098
|
};
|
|
3099
|
+
export type VersionedPromptBackupDetails = {
|
|
3100
|
+
__typename?: 'VersionedPromptBackupDetails';
|
|
3101
|
+
backupPrompts: Array<VersionedPromptBackupPrompt>;
|
|
3102
|
+
waitBackupTimeMs: Scalars['Int']['output'];
|
|
3103
|
+
};
|
|
3104
|
+
export type VersionedPromptBackupDetailsInput = {
|
|
3105
|
+
backupPrompts?: InputMaybe<Array<VersionedPromptBackupPromptInput>>;
|
|
3106
|
+
disable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3107
|
+
waitBackupTimeMs?: InputMaybe<Scalars['Int']['input']>;
|
|
3108
|
+
};
|
|
3109
|
+
export type VersionedPromptBackupPrompt = {
|
|
3110
|
+
__typename?: 'VersionedPromptBackupPrompt';
|
|
3111
|
+
versionedPrompt: VersionedPrompt;
|
|
3112
|
+
versionedPromptId: Scalars['ID']['output'];
|
|
3113
|
+
waitBackupTimeMs: Scalars['Int']['output'];
|
|
3114
|
+
};
|
|
3115
|
+
export type VersionedPromptBackupPromptInput = {
|
|
3116
|
+
versionedPromptId: Scalars['ID']['input'];
|
|
3117
|
+
waitBackupTimeMs: Scalars['Int']['input'];
|
|
3118
|
+
};
|
|
2605
3119
|
export type VideoTokenResp = {
|
|
2606
3120
|
__typename?: 'VideoTokenResp';
|
|
2607
3121
|
sessionId: Scalars['String']['output'];
|
|
@@ -2610,8 +3124,10 @@ export type VideoTokenResp = {
|
|
|
2610
3124
|
export type VisibleWorkspaceLimits = {
|
|
2611
3125
|
__typename?: 'VisibleWorkspaceLimits';
|
|
2612
3126
|
concurrentDialLimit: Scalars['Int']['output'];
|
|
3127
|
+
concurrentTTSLimit: Scalars['Int']['output'];
|
|
2613
3128
|
};
|
|
2614
3129
|
export type VoiceFilter = {
|
|
3130
|
+
provider?: InputMaybe<Scalars['String']['input']>;
|
|
2615
3131
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
2616
3132
|
};
|
|
2617
3133
|
export declare enum VoiceGender {
|
|
@@ -2619,10 +3135,32 @@ export declare enum VoiceGender {
|
|
|
2619
3135
|
Male = "MALE",
|
|
2620
3136
|
Neutral = "NEUTRAL"
|
|
2621
3137
|
}
|
|
3138
|
+
export type VoiceGeneration = {
|
|
3139
|
+
__typename?: 'VoiceGeneration';
|
|
3140
|
+
audio: Scalars['String']['output'];
|
|
3141
|
+
createdAt: Scalars['Time']['output'];
|
|
3142
|
+
id: Scalars['ID']['output'];
|
|
3143
|
+
lines: Array<VoiceGenerationLine>;
|
|
3144
|
+
};
|
|
3145
|
+
export type VoiceGenerationLine = {
|
|
3146
|
+
__typename?: 'VoiceGenerationLine';
|
|
3147
|
+
aiVoice: AiVoice;
|
|
3148
|
+
aiVoiceId: Scalars['ID']['output'];
|
|
3149
|
+
text: Scalars['String']['output'];
|
|
3150
|
+
};
|
|
3151
|
+
export type VoiceGenerationListResult = {
|
|
3152
|
+
__typename?: 'VoiceGenerationListResult';
|
|
3153
|
+
numVoiceGenerations: Scalars['Int']['output'];
|
|
3154
|
+
voiceGenerations: Array<VoiceGeneration>;
|
|
3155
|
+
};
|
|
2622
3156
|
export declare enum VoiceModel {
|
|
2623
3157
|
Default = "DEFAULT",
|
|
2624
3158
|
Sesame = "SESAME"
|
|
2625
3159
|
}
|
|
3160
|
+
export type VoicePlaygroundLineInput = {
|
|
3161
|
+
aiVoiceId: Scalars['ID']['input'];
|
|
3162
|
+
text: Scalars['String']['input'];
|
|
3163
|
+
};
|
|
2626
3164
|
export declare enum VoiceTier {
|
|
2627
3165
|
Premium = "PREMIUM",
|
|
2628
3166
|
Standard = "STANDARD"
|
|
@@ -2633,10 +3171,24 @@ export type Voicemail = {
|
|
|
2633
3171
|
id: Scalars['String']['output'];
|
|
2634
3172
|
name: Scalars['String']['output'];
|
|
2635
3173
|
};
|
|
3174
|
+
export declare enum VoicemailDetection {
|
|
3175
|
+
Disable = "DISABLE",
|
|
3176
|
+
Hangup = "HANGUP"
|
|
3177
|
+
}
|
|
2636
3178
|
export declare enum WebcallType {
|
|
2637
3179
|
Legacy = "legacy",
|
|
2638
3180
|
Standard = "standard"
|
|
2639
3181
|
}
|
|
3182
|
+
export type WeeklySchedule = {
|
|
3183
|
+
__typename?: 'WeeklySchedule';
|
|
3184
|
+
days: Array<DaySchedule>;
|
|
3185
|
+
timezone: Scalars['String']['output'];
|
|
3186
|
+
};
|
|
3187
|
+
export type WeeklyScheduleInput = {
|
|
3188
|
+
days: Array<DayScheduleInput>;
|
|
3189
|
+
disableSchedule?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3190
|
+
timezone: Scalars['String']['input'];
|
|
3191
|
+
};
|
|
2640
3192
|
export type Workspace = {
|
|
2641
3193
|
__typename?: 'Workspace';
|
|
2642
3194
|
activeDials: Array<Dial>;
|
|
@@ -2649,9 +3201,11 @@ export type Workspace = {
|
|
|
2649
3201
|
apolloPurposes: Array<ApolloPurpose>;
|
|
2650
3202
|
apolloUsers: Array<ApolloUser>;
|
|
2651
3203
|
bannerMessage?: Maybe<Scalars['String']['output']>;
|
|
3204
|
+
batchDialJobs: BatchDialJobsResult;
|
|
2652
3205
|
billingUsage: Array<UsageLineItem>;
|
|
2653
3206
|
callAgents: CallAgentsResult;
|
|
2654
3207
|
concurrentDialCount: Scalars['Int']['output'];
|
|
3208
|
+
concurrentTTSCount: Scalars['Int']['output'];
|
|
2655
3209
|
contactLists: ContactListResult;
|
|
2656
3210
|
crmSpecification: CrmSpecification;
|
|
2657
3211
|
crmSpecifications: Array<CrmSpecification>;
|
|
@@ -2661,7 +3215,9 @@ export type Workspace = {
|
|
|
2661
3215
|
dialTasks: DialTaskListResult;
|
|
2662
3216
|
dials: DialListResult;
|
|
2663
3217
|
dispositions: Array<CallDisposition>;
|
|
3218
|
+
enterprise: Scalars['Boolean']['output'];
|
|
2664
3219
|
functionDefinitions: FunctionDefinitionsResult;
|
|
3220
|
+
hipaa: Scalars['Boolean']['output'];
|
|
2665
3221
|
id: Scalars['ID']['output'];
|
|
2666
3222
|
importedLists: IntegrationListsResponse;
|
|
2667
3223
|
inboundForwardNumber?: Maybe<Scalars['String']['output']>;
|
|
@@ -2676,12 +3232,14 @@ export type Workspace = {
|
|
|
2676
3232
|
overLimit: OverLimitResult;
|
|
2677
3233
|
phoneNumberVerified: Scalars['Boolean']['output'];
|
|
2678
3234
|
phoneNumbers: PhoneNumbersResult;
|
|
3235
|
+
pricingPlanOptions: Array<PricingPlanOption>;
|
|
2679
3236
|
pronunciationMap?: Maybe<PronunciationMap>;
|
|
2680
3237
|
quickstartProjects: Array<QuickstartProject>;
|
|
2681
3238
|
recordingConfig?: Maybe<RecordingConfig>;
|
|
2682
3239
|
salesfloorRooms: Array<SalesfloorRoom>;
|
|
2683
3240
|
salesfloorType: SalesfloorType;
|
|
2684
3241
|
selfLearningEnrolled: Scalars['Boolean']['output'];
|
|
3242
|
+
sipUrl: Scalars['String']['output'];
|
|
2685
3243
|
spamUsage: UsageInfo;
|
|
2686
3244
|
subscription?: Maybe<BillingSubscription>;
|
|
2687
3245
|
systemResults: Array<SystemResult>;
|
|
@@ -2691,9 +3249,13 @@ export type Workspace = {
|
|
|
2691
3249
|
userSettings: UserWorkspaceSettings;
|
|
2692
3250
|
viewerRole: Role;
|
|
2693
3251
|
visibleLimits: VisibleWorkspaceLimits;
|
|
3252
|
+
vogentCarrierDisabled: Scalars['Boolean']['output'];
|
|
3253
|
+
voiceConfig?: Maybe<Scalars['String']['output']>;
|
|
3254
|
+
voiceGenerations: VoiceGenerationListResult;
|
|
2694
3255
|
voicemails: Array<Voicemail>;
|
|
2695
3256
|
voices: AiVoicesResult;
|
|
2696
3257
|
wallet?: Maybe<WorkspaceWallet>;
|
|
3258
|
+
webhookFormat?: Maybe<Scalars['String']['output']>;
|
|
2697
3259
|
webhookSigningSecret: Scalars['String']['output'];
|
|
2698
3260
|
webhookURL?: Maybe<Scalars['String']['output']>;
|
|
2699
3261
|
};
|
|
@@ -2705,6 +3267,11 @@ export type WorkspaceAiModelsArgs = {
|
|
|
2705
3267
|
limit: Scalars['Int']['input'];
|
|
2706
3268
|
offset: Scalars['Int']['input'];
|
|
2707
3269
|
};
|
|
3270
|
+
export type WorkspaceBatchDialJobsArgs = {
|
|
3271
|
+
filter?: InputMaybe<BatchDialJobFilter>;
|
|
3272
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3273
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3274
|
+
};
|
|
2708
3275
|
export type WorkspaceBillingUsageArgs = {
|
|
2709
3276
|
filter: BillingUsageFilter;
|
|
2710
3277
|
};
|
|
@@ -2758,6 +3325,7 @@ export type WorkspaceMemberArgs = {
|
|
|
2758
3325
|
userId: Scalars['ID']['input'];
|
|
2759
3326
|
};
|
|
2760
3327
|
export type WorkspacePhoneNumbersArgs = {
|
|
3328
|
+
filter?: InputMaybe<PhoneNumberFilter>;
|
|
2761
3329
|
limit: Scalars['Int']['input'];
|
|
2762
3330
|
offset: Scalars['Int']['input'];
|
|
2763
3331
|
};
|
|
@@ -2771,6 +3339,10 @@ export type WorkspaceTeamArgs = {
|
|
|
2771
3339
|
export type WorkspaceTimeStatsArgs = {
|
|
2772
3340
|
filter: StatFilter;
|
|
2773
3341
|
};
|
|
3342
|
+
export type WorkspaceVoiceGenerationsArgs = {
|
|
3343
|
+
limit: Scalars['Int']['input'];
|
|
3344
|
+
offset: Scalars['Int']['input'];
|
|
3345
|
+
};
|
|
2774
3346
|
export type WorkspaceVoicesArgs = {
|
|
2775
3347
|
filter?: InputMaybe<VoiceFilter>;
|
|
2776
3348
|
limit: Scalars['Int']['input'];
|
|
@@ -2795,14 +3367,19 @@ export type WorkspaceDialStatusChangeMessage = {
|
|
|
2795
3367
|
export type WorkspaceLimits = {
|
|
2796
3368
|
__typename?: 'WorkspaceLimits';
|
|
2797
3369
|
concurrentDialLimit: Scalars['Int']['output'];
|
|
3370
|
+
cpsLimit: Scalars['Int']['output'];
|
|
3371
|
+
maxExportLimit: Scalars['Int']['output'];
|
|
2798
3372
|
spamLimit: Scalars['Int']['output'];
|
|
2799
3373
|
userPhoneNumberLimit: Scalars['Int']['output'];
|
|
2800
3374
|
};
|
|
2801
3375
|
export type WorkspaceLimitsInput = {
|
|
2802
3376
|
concurrentDialLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
3377
|
+
cpsLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
3378
|
+
maxExportLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
2803
3379
|
salesfloorType?: InputMaybe<SalesfloorType>;
|
|
2804
3380
|
spamLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
2805
3381
|
userPhoneNumberLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
3382
|
+
vogentCarrierDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2806
3383
|
workspaceId: Scalars['ID']['input'];
|
|
2807
3384
|
};
|
|
2808
3385
|
export type WorkspaceMember = {
|
|
@@ -2819,6 +3396,7 @@ export type WorkspaceWallet = {
|
|
|
2819
3396
|
refillThresholdCents?: Maybe<Scalars['Int']['output']>;
|
|
2820
3397
|
};
|
|
2821
3398
|
export type WorkspaceWebhookInput = {
|
|
3399
|
+
webhookFormat?: InputMaybe<Scalars['String']['input']>;
|
|
2822
3400
|
webhookURL?: InputMaybe<NullableStringInput>;
|
|
2823
3401
|
workspaceId: Scalars['ID']['input'];
|
|
2824
3402
|
};
|
|
@@ -2896,7 +3474,6 @@ export type ConnectSessionSubscription = {
|
|
|
2896
3474
|
id: string;
|
|
2897
3475
|
status: string;
|
|
2898
3476
|
answerType: AnswerType;
|
|
2899
|
-
phoneField: string;
|
|
2900
3477
|
callDispositionId?: string | null;
|
|
2901
3478
|
systemResultType?: SystemResultType | null;
|
|
2902
3479
|
toNumber: string;
|