@amigo-ai/platform-sdk 0.19.0 → 0.22.0
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/api.md +3 -2
- package/dist/index.cjs +103 -2
- package/dist/index.cjs.map +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +103 -2
- package/dist/index.mjs.map +2 -2
- package/dist/resources/conversations.js +112 -1
- package/dist/resources/conversations.js.map +1 -1
- package/dist/resources/operators.js.map +1 -1
- package/dist/types/generated/api.d.ts +995 -390
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.cts.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/resources/calls.d.ts +1 -1
- package/dist/types/resources/conversations.d.ts +79 -1
- package/dist/types/resources/conversations.d.ts.map +1 -1
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/metrics.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts +8 -5
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/recordings.d.ts +1 -1
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -8115,7 +8115,10 @@ export interface components {
|
|
|
8115
8115
|
jwt_credentials_note: string;
|
|
8116
8116
|
/** Total Credentials */
|
|
8117
8117
|
total_credentials: number;
|
|
8118
|
-
/**
|
|
8118
|
+
/**
|
|
8119
|
+
* Workspace Id
|
|
8120
|
+
* Format: uuid
|
|
8121
|
+
*/
|
|
8119
8122
|
workspace_id: string;
|
|
8120
8123
|
};
|
|
8121
8124
|
/**
|
|
@@ -8414,13 +8417,16 @@ export interface components {
|
|
|
8414
8417
|
*/
|
|
8415
8418
|
scenario?: string;
|
|
8416
8419
|
/** Service Id */
|
|
8417
|
-
service_id
|
|
8420
|
+
service_id?: string | null;
|
|
8418
8421
|
/** Workspace Id */
|
|
8419
|
-
workspace_id
|
|
8422
|
+
workspace_id?: string | null;
|
|
8420
8423
|
};
|
|
8421
8424
|
/** AgentAnalyticsEntry */
|
|
8422
8425
|
AgentAnalyticsEntry: {
|
|
8423
|
-
/**
|
|
8426
|
+
/**
|
|
8427
|
+
* Agent Id
|
|
8428
|
+
* Format: uuid
|
|
8429
|
+
*/
|
|
8424
8430
|
agent_id: string;
|
|
8425
8431
|
/** Agent Name */
|
|
8426
8432
|
agent_name: string;
|
|
@@ -8466,7 +8472,10 @@ export interface components {
|
|
|
8466
8472
|
created_at: string;
|
|
8467
8473
|
/** Description */
|
|
8468
8474
|
description: string;
|
|
8469
|
-
/**
|
|
8475
|
+
/**
|
|
8476
|
+
* Id
|
|
8477
|
+
* Format: uuid
|
|
8478
|
+
*/
|
|
8470
8479
|
id: string;
|
|
8471
8480
|
/**
|
|
8472
8481
|
* Latest Version
|
|
@@ -8480,7 +8489,10 @@ export interface components {
|
|
|
8480
8489
|
* Format: date-time
|
|
8481
8490
|
*/
|
|
8482
8491
|
updated_at: string;
|
|
8483
|
-
/**
|
|
8492
|
+
/**
|
|
8493
|
+
* Workspace Id
|
|
8494
|
+
* Format: uuid
|
|
8495
|
+
*/
|
|
8484
8496
|
workspace_id: string;
|
|
8485
8497
|
};
|
|
8486
8498
|
/** AgentTranscriptDeltaEvent */
|
|
@@ -8538,7 +8550,10 @@ export interface components {
|
|
|
8538
8550
|
* @description A version of an Agent document.
|
|
8539
8551
|
*/
|
|
8540
8552
|
AgentVersion: {
|
|
8541
|
-
/**
|
|
8553
|
+
/**
|
|
8554
|
+
* Agent Id
|
|
8555
|
+
* Format: uuid
|
|
8556
|
+
*/
|
|
8542
8557
|
agent_id: string;
|
|
8543
8558
|
/** Background */
|
|
8544
8559
|
background: string;
|
|
@@ -8548,7 +8563,10 @@ export interface components {
|
|
|
8548
8563
|
communication_patterns: string[];
|
|
8549
8564
|
/** Created At */
|
|
8550
8565
|
created_at?: string | null;
|
|
8551
|
-
/**
|
|
8566
|
+
/**
|
|
8567
|
+
* Id
|
|
8568
|
+
* Format: uuid
|
|
8569
|
+
*/
|
|
8552
8570
|
id: string;
|
|
8553
8571
|
identity: components["schemas"]["Identity"];
|
|
8554
8572
|
/** Initials */
|
|
@@ -8563,7 +8581,10 @@ export interface components {
|
|
|
8563
8581
|
};
|
|
8564
8582
|
/** AgentVersionResponse */
|
|
8565
8583
|
AgentVersionResponse: {
|
|
8566
|
-
/**
|
|
8584
|
+
/**
|
|
8585
|
+
* Agent Id
|
|
8586
|
+
* Format: uuid
|
|
8587
|
+
*/
|
|
8567
8588
|
agent_id: string;
|
|
8568
8589
|
/** Background */
|
|
8569
8590
|
background: string;
|
|
@@ -8576,7 +8597,10 @@ export interface components {
|
|
|
8576
8597
|
* Format: date-time
|
|
8577
8598
|
*/
|
|
8578
8599
|
created_at: string;
|
|
8579
|
-
/**
|
|
8600
|
+
/**
|
|
8601
|
+
* Id
|
|
8602
|
+
* Format: uuid
|
|
8603
|
+
*/
|
|
8580
8604
|
id: string;
|
|
8581
8605
|
identity: components["schemas"]["Identity"];
|
|
8582
8606
|
/** Initials */
|
|
@@ -8591,7 +8615,10 @@ export interface components {
|
|
|
8591
8615
|
/** Version */
|
|
8592
8616
|
version: number;
|
|
8593
8617
|
voice_config: components["schemas"]["VoiceConfig"] | null;
|
|
8594
|
-
/**
|
|
8618
|
+
/**
|
|
8619
|
+
* Workspace Id
|
|
8620
|
+
* Format: uuid
|
|
8621
|
+
*/
|
|
8595
8622
|
workspace_id: string;
|
|
8596
8623
|
};
|
|
8597
8624
|
/**
|
|
@@ -8617,7 +8644,10 @@ export interface components {
|
|
|
8617
8644
|
count: number;
|
|
8618
8645
|
/** Items */
|
|
8619
8646
|
items: components["schemas"]["AnomalyAlertRow"][];
|
|
8620
|
-
/**
|
|
8647
|
+
/**
|
|
8648
|
+
* Workspace Id
|
|
8649
|
+
* Format: uuid
|
|
8650
|
+
*/
|
|
8621
8651
|
workspace_id: string;
|
|
8622
8652
|
};
|
|
8623
8653
|
/** AnomalyAlertRow */
|
|
@@ -8644,7 +8674,10 @@ export interface components {
|
|
|
8644
8674
|
slice_label: string;
|
|
8645
8675
|
/** Stats Json */
|
|
8646
8676
|
stats_json?: string | null;
|
|
8647
|
-
/**
|
|
8677
|
+
/**
|
|
8678
|
+
* Workspace Id
|
|
8679
|
+
* Format: uuid
|
|
8680
|
+
*/
|
|
8648
8681
|
workspace_id: string;
|
|
8649
8682
|
};
|
|
8650
8683
|
/** ApiKeyResponse */
|
|
@@ -8663,7 +8696,10 @@ export interface components {
|
|
|
8663
8696
|
* Format: date-time
|
|
8664
8697
|
*/
|
|
8665
8698
|
expires_at: string;
|
|
8666
|
-
/**
|
|
8699
|
+
/**
|
|
8700
|
+
* Id
|
|
8701
|
+
* Format: uuid
|
|
8702
|
+
*/
|
|
8667
8703
|
id: string;
|
|
8668
8704
|
/** Key Id */
|
|
8669
8705
|
key_id: string;
|
|
@@ -8680,7 +8716,10 @@ export interface components {
|
|
|
8680
8716
|
* Format: date-time
|
|
8681
8717
|
*/
|
|
8682
8718
|
updated_at: string;
|
|
8683
|
-
/**
|
|
8719
|
+
/**
|
|
8720
|
+
* Workspace Id
|
|
8721
|
+
* Format: uuid
|
|
8722
|
+
*/
|
|
8684
8723
|
workspace_id: string;
|
|
8685
8724
|
};
|
|
8686
8725
|
/** ApplyTemplateRequest */
|
|
@@ -8718,7 +8757,10 @@ export interface components {
|
|
|
8718
8757
|
* @constant
|
|
8719
8758
|
*/
|
|
8720
8759
|
status: "archived";
|
|
8721
|
-
/**
|
|
8760
|
+
/**
|
|
8761
|
+
* Surface Id
|
|
8762
|
+
* Format: uuid
|
|
8763
|
+
*/
|
|
8722
8764
|
surface_id: string;
|
|
8723
8765
|
};
|
|
8724
8766
|
/** ArchiveWorkspaceRequest */
|
|
@@ -9010,7 +9052,10 @@ export interface components {
|
|
|
9010
9052
|
key_id: string;
|
|
9011
9053
|
/** Name */
|
|
9012
9054
|
name: string | null;
|
|
9013
|
-
/**
|
|
9055
|
+
/**
|
|
9056
|
+
* Workspace Id
|
|
9057
|
+
* Format: uuid
|
|
9058
|
+
*/
|
|
9014
9059
|
workspace_id: string;
|
|
9015
9060
|
};
|
|
9016
9061
|
/** AvailableNumber */
|
|
@@ -9232,6 +9277,7 @@ export interface components {
|
|
|
9232
9277
|
top_meters: components["schemas"]["MeterSummary"][];
|
|
9233
9278
|
/**
|
|
9234
9279
|
* Workspace Id
|
|
9280
|
+
* Format: uuid
|
|
9235
9281
|
* @description Workspace ID
|
|
9236
9282
|
*/
|
|
9237
9283
|
workspace_id: string;
|
|
@@ -9640,7 +9686,10 @@ export interface components {
|
|
|
9640
9686
|
* @default []
|
|
9641
9687
|
*/
|
|
9642
9688
|
human_segments?: components["schemas"]["HumanSegment"][];
|
|
9643
|
-
/**
|
|
9689
|
+
/**
|
|
9690
|
+
* Id
|
|
9691
|
+
* Format: uuid
|
|
9692
|
+
*/
|
|
9644
9693
|
id: string;
|
|
9645
9694
|
/** Media Start Time */
|
|
9646
9695
|
media_start_time?: string | null;
|
|
@@ -9707,11 +9756,8 @@ export interface components {
|
|
|
9707
9756
|
verified_words?: {
|
|
9708
9757
|
[key: string]: unknown;
|
|
9709
9758
|
}[] | null;
|
|
9710
|
-
/**
|
|
9711
|
-
|
|
9712
|
-
* @default
|
|
9713
|
-
*/
|
|
9714
|
-
workspace_id?: string;
|
|
9759
|
+
/** Workspace Id */
|
|
9760
|
+
workspace_id?: string | null;
|
|
9715
9761
|
};
|
|
9716
9762
|
/** CallEndedEvent */
|
|
9717
9763
|
CallEndedEvent: {
|
|
@@ -9863,7 +9909,10 @@ export interface components {
|
|
|
9863
9909
|
* @enum {string}
|
|
9864
9910
|
*/
|
|
9865
9911
|
event_type: "call.started";
|
|
9866
|
-
/**
|
|
9912
|
+
/**
|
|
9913
|
+
* Service Id
|
|
9914
|
+
* Format: uuid
|
|
9915
|
+
*/
|
|
9867
9916
|
service_id: string;
|
|
9868
9917
|
};
|
|
9869
9918
|
/** CallStatsResponse */
|
|
@@ -9902,6 +9951,7 @@ export interface components {
|
|
|
9902
9951
|
total_duration_seconds: number;
|
|
9903
9952
|
/**
|
|
9904
9953
|
* Workspace Id
|
|
9954
|
+
* Format: uuid
|
|
9905
9955
|
* @description Workspace identifier
|
|
9906
9956
|
*/
|
|
9907
9957
|
workspace_id: string;
|
|
@@ -9935,6 +9985,7 @@ export interface components {
|
|
|
9935
9985
|
duration_seconds?: number | null;
|
|
9936
9986
|
/**
|
|
9937
9987
|
* Entity Id
|
|
9988
|
+
* Format: uuid
|
|
9938
9989
|
* @description World entity ID for this call
|
|
9939
9990
|
*/
|
|
9940
9991
|
entity_id: string;
|
|
@@ -10340,7 +10391,10 @@ export interface components {
|
|
|
10340
10391
|
* @enum {string}
|
|
10341
10392
|
*/
|
|
10342
10393
|
status: "delivered" | "skipped" | "failed" | "not_delivered";
|
|
10343
|
-
/**
|
|
10394
|
+
/**
|
|
10395
|
+
* Voicemail Id
|
|
10396
|
+
* Format: uuid
|
|
10397
|
+
*/
|
|
10344
10398
|
voicemail_id: string;
|
|
10345
10399
|
};
|
|
10346
10400
|
/**
|
|
@@ -10466,7 +10520,10 @@ export interface components {
|
|
|
10466
10520
|
t: number;
|
|
10467
10521
|
/** Upper 95 */
|
|
10468
10522
|
upper_95?: number | null;
|
|
10469
|
-
/**
|
|
10523
|
+
/**
|
|
10524
|
+
* Workspace Id
|
|
10525
|
+
* Format: uuid
|
|
10526
|
+
*/
|
|
10470
10527
|
workspace_id: string;
|
|
10471
10528
|
/** Ym */
|
|
10472
10529
|
ym?: string | null;
|
|
@@ -10477,7 +10534,10 @@ export interface components {
|
|
|
10477
10534
|
count: number;
|
|
10478
10535
|
/** Items */
|
|
10479
10536
|
items: components["schemas"]["ClusterForecastPointRow"][];
|
|
10480
|
-
/**
|
|
10537
|
+
/**
|
|
10538
|
+
* Workspace Id
|
|
10539
|
+
* Format: uuid
|
|
10540
|
+
*/
|
|
10481
10541
|
workspace_id: string;
|
|
10482
10542
|
};
|
|
10483
10543
|
/** ClusterSummaryResponse */
|
|
@@ -10486,7 +10546,10 @@ export interface components {
|
|
|
10486
10546
|
count: number;
|
|
10487
10547
|
/** Items */
|
|
10488
10548
|
items: components["schemas"]["ClusterSummaryRow"][];
|
|
10489
|
-
/**
|
|
10549
|
+
/**
|
|
10550
|
+
* Workspace Id
|
|
10551
|
+
* Format: uuid
|
|
10552
|
+
*/
|
|
10490
10553
|
workspace_id: string;
|
|
10491
10554
|
};
|
|
10492
10555
|
/** ClusterSummaryRow */
|
|
@@ -10544,7 +10607,10 @@ export interface components {
|
|
|
10544
10607
|
count: number;
|
|
10545
10608
|
/** Items */
|
|
10546
10609
|
items: components["schemas"]["CohortDriverRow"][];
|
|
10547
|
-
/**
|
|
10610
|
+
/**
|
|
10611
|
+
* Workspace Id
|
|
10612
|
+
* Format: uuid
|
|
10613
|
+
*/
|
|
10548
10614
|
workspace_id: string;
|
|
10549
10615
|
};
|
|
10550
10616
|
/** CohortDriverRow */
|
|
@@ -10577,7 +10643,10 @@ export interface components {
|
|
|
10577
10643
|
spr_ci_upper?: number | null;
|
|
10578
10644
|
/** Workspace Baseline Rate */
|
|
10579
10645
|
workspace_baseline_rate?: number | null;
|
|
10580
|
-
/**
|
|
10646
|
+
/**
|
|
10647
|
+
* Workspace Id
|
|
10648
|
+
* Format: uuid
|
|
10649
|
+
*/
|
|
10581
10650
|
workspace_id: string;
|
|
10582
10651
|
/** Workspace Patients With Condition */
|
|
10583
10652
|
workspace_patients_with_condition?: number | null;
|
|
@@ -10624,7 +10693,10 @@ export interface components {
|
|
|
10624
10693
|
count: number;
|
|
10625
10694
|
/** Items */
|
|
10626
10695
|
items: components["schemas"]["ColumnInfo"][];
|
|
10627
|
-
/**
|
|
10696
|
+
/**
|
|
10697
|
+
* Workspace Id
|
|
10698
|
+
* Format: uuid
|
|
10699
|
+
*/
|
|
10628
10700
|
workspace_id: string;
|
|
10629
10701
|
};
|
|
10630
10702
|
/** CommandCenterAlert */
|
|
@@ -10696,7 +10768,10 @@ export interface components {
|
|
|
10696
10768
|
* }
|
|
10697
10769
|
*/
|
|
10698
10770
|
voice?: components["schemas"]["VoiceMetrics"];
|
|
10699
|
-
/**
|
|
10771
|
+
/**
|
|
10772
|
+
* Workspace Id
|
|
10773
|
+
* Format: uuid
|
|
10774
|
+
*/
|
|
10700
10775
|
workspace_id: string;
|
|
10701
10776
|
};
|
|
10702
10777
|
/** CompletionCriteria */
|
|
@@ -10874,7 +10949,10 @@ export interface components {
|
|
|
10874
10949
|
ConnectorHeartbeat: {
|
|
10875
10950
|
/** Alive */
|
|
10876
10951
|
alive: boolean;
|
|
10877
|
-
/**
|
|
10952
|
+
/**
|
|
10953
|
+
* Data Source Id
|
|
10954
|
+
* Format: uuid
|
|
10955
|
+
*/
|
|
10878
10956
|
data_source_id: string;
|
|
10879
10957
|
/** Last Seen */
|
|
10880
10958
|
last_seen?: string | null;
|
|
@@ -10885,7 +10963,10 @@ export interface components {
|
|
|
10885
10963
|
ConnectorOverviewItem: {
|
|
10886
10964
|
/** Connector Type */
|
|
10887
10965
|
connector_type: string;
|
|
10888
|
-
/**
|
|
10966
|
+
/**
|
|
10967
|
+
* Data Source Id
|
|
10968
|
+
* Format: uuid
|
|
10969
|
+
*/
|
|
10889
10970
|
data_source_id: string;
|
|
10890
10971
|
/** Display Name */
|
|
10891
10972
|
display_name?: string | null;
|
|
@@ -11006,7 +11087,10 @@ export interface components {
|
|
|
11006
11087
|
created_at: string;
|
|
11007
11088
|
/** Description */
|
|
11008
11089
|
description: string;
|
|
11009
|
-
/**
|
|
11090
|
+
/**
|
|
11091
|
+
* Id
|
|
11092
|
+
* Format: uuid
|
|
11093
|
+
*/
|
|
11010
11094
|
id: string;
|
|
11011
11095
|
/**
|
|
11012
11096
|
* Latest Version
|
|
@@ -11025,7 +11109,10 @@ export interface components {
|
|
|
11025
11109
|
* Format: date-time
|
|
11026
11110
|
*/
|
|
11027
11111
|
updated_at: string;
|
|
11028
|
-
/**
|
|
11112
|
+
/**
|
|
11113
|
+
* Workspace Id
|
|
11114
|
+
* Format: uuid
|
|
11115
|
+
*/
|
|
11029
11116
|
workspace_id: string;
|
|
11030
11117
|
};
|
|
11031
11118
|
"ContextGraphState-Input": components["schemas"]["ActionState-Input"] | components["schemas"]["DecisionState-Input"] | components["schemas"]["AnnotationState"] | components["schemas"]["DataCollectionState-Input"];
|
|
@@ -11035,7 +11122,10 @@ export interface components {
|
|
|
11035
11122
|
* @description A version of a hierarchical state machine (context graph).
|
|
11036
11123
|
*/
|
|
11037
11124
|
ContextGraphVersion: {
|
|
11038
|
-
/**
|
|
11125
|
+
/**
|
|
11126
|
+
* Context Graph Id
|
|
11127
|
+
* Format: uuid
|
|
11128
|
+
*/
|
|
11039
11129
|
context_graph_id: string;
|
|
11040
11130
|
/** Created At */
|
|
11041
11131
|
created_at?: string | null;
|
|
@@ -11056,7 +11146,10 @@ export interface components {
|
|
|
11056
11146
|
* @default []
|
|
11057
11147
|
*/
|
|
11058
11148
|
global_intra_state_navigation_guidelines?: string[];
|
|
11059
|
-
/**
|
|
11149
|
+
/**
|
|
11150
|
+
* Id
|
|
11151
|
+
* Format: uuid
|
|
11152
|
+
*/
|
|
11060
11153
|
id: string;
|
|
11061
11154
|
/** New User Initial State */
|
|
11062
11155
|
new_user_initial_state: string;
|
|
@@ -11075,7 +11168,10 @@ export interface components {
|
|
|
11075
11168
|
};
|
|
11076
11169
|
/** ContextGraphVersionResponse */
|
|
11077
11170
|
ContextGraphVersionResponse: {
|
|
11078
|
-
/**
|
|
11171
|
+
/**
|
|
11172
|
+
* Context Graph Id
|
|
11173
|
+
* Format: uuid
|
|
11174
|
+
*/
|
|
11079
11175
|
context_graph_id: string;
|
|
11080
11176
|
/**
|
|
11081
11177
|
* Created At
|
|
@@ -11090,7 +11186,10 @@ export interface components {
|
|
|
11090
11186
|
global_boundary_constraints: string[];
|
|
11091
11187
|
/** Global Intra State Navigation Guidelines */
|
|
11092
11188
|
global_intra_state_navigation_guidelines: string[];
|
|
11093
|
-
/**
|
|
11189
|
+
/**
|
|
11190
|
+
* Id
|
|
11191
|
+
* Format: uuid
|
|
11192
|
+
*/
|
|
11094
11193
|
id: string;
|
|
11095
11194
|
/** New User Initial State */
|
|
11096
11195
|
new_user_initial_state: string;
|
|
@@ -11109,7 +11208,10 @@ export interface components {
|
|
|
11109
11208
|
updated_at: string;
|
|
11110
11209
|
/** Version */
|
|
11111
11210
|
version: number;
|
|
11112
|
-
/**
|
|
11211
|
+
/**
|
|
11212
|
+
* Workspace Id
|
|
11213
|
+
* Format: uuid
|
|
11214
|
+
*/
|
|
11113
11215
|
workspace_id: string;
|
|
11114
11216
|
};
|
|
11115
11217
|
/** ConversationActorStartFailedRequest */
|
|
@@ -11402,7 +11504,10 @@ export interface components {
|
|
|
11402
11504
|
items: components["schemas"]["CooccurrenceRow"][];
|
|
11403
11505
|
/** Sort By */
|
|
11404
11506
|
sort_by: string;
|
|
11405
|
-
/**
|
|
11507
|
+
/**
|
|
11508
|
+
* Workspace Id
|
|
11509
|
+
* Format: uuid
|
|
11510
|
+
*/
|
|
11406
11511
|
workspace_id: string;
|
|
11407
11512
|
};
|
|
11408
11513
|
/** CooccurrenceRow */
|
|
@@ -11437,7 +11542,10 @@ export interface components {
|
|
|
11437
11542
|
n_patients_both: number;
|
|
11438
11543
|
/** Pmi */
|
|
11439
11544
|
pmi?: number | null;
|
|
11440
|
-
/**
|
|
11545
|
+
/**
|
|
11546
|
+
* Workspace Id
|
|
11547
|
+
* Format: uuid
|
|
11548
|
+
*/
|
|
11441
11549
|
workspace_id: string;
|
|
11442
11550
|
};
|
|
11443
11551
|
/**
|
|
@@ -12206,15 +12314,24 @@ export interface components {
|
|
|
12206
12314
|
created_at: string;
|
|
12207
12315
|
/** Description */
|
|
12208
12316
|
description?: string | null;
|
|
12209
|
-
/**
|
|
12317
|
+
/**
|
|
12318
|
+
* Entity Id
|
|
12319
|
+
* Format: uuid
|
|
12320
|
+
*/
|
|
12210
12321
|
entity_id: string;
|
|
12211
|
-
/**
|
|
12322
|
+
/**
|
|
12323
|
+
* Event Id
|
|
12324
|
+
* Format: uuid
|
|
12325
|
+
*/
|
|
12212
12326
|
event_id: string;
|
|
12213
12327
|
/** Expires At */
|
|
12214
12328
|
expires_at: string;
|
|
12215
12329
|
/** Fields Count */
|
|
12216
12330
|
fields_count: number;
|
|
12217
|
-
/**
|
|
12331
|
+
/**
|
|
12332
|
+
* Id
|
|
12333
|
+
* Format: uuid
|
|
12334
|
+
*/
|
|
12218
12335
|
id: string;
|
|
12219
12336
|
/**
|
|
12220
12337
|
* Status
|
|
@@ -12333,7 +12450,10 @@ export interface components {
|
|
|
12333
12450
|
description?: string | null;
|
|
12334
12451
|
/** Direction */
|
|
12335
12452
|
direction?: string | null;
|
|
12336
|
-
/**
|
|
12453
|
+
/**
|
|
12454
|
+
* Id
|
|
12455
|
+
* Format: uuid
|
|
12456
|
+
*/
|
|
12337
12457
|
id: string;
|
|
12338
12458
|
/** Occurred At */
|
|
12339
12459
|
occurred_at?: string | null;
|
|
@@ -12349,7 +12469,10 @@ export interface components {
|
|
|
12349
12469
|
CrmActivityTimelineResponse: {
|
|
12350
12470
|
/** Activities */
|
|
12351
12471
|
activities: components["schemas"]["CrmActivityItem"][];
|
|
12352
|
-
/**
|
|
12472
|
+
/**
|
|
12473
|
+
* Entity Id
|
|
12474
|
+
* Format: uuid
|
|
12475
|
+
*/
|
|
12353
12476
|
entity_id: string;
|
|
12354
12477
|
/**
|
|
12355
12478
|
* Has More
|
|
@@ -12372,7 +12495,10 @@ export interface components {
|
|
|
12372
12495
|
created_at?: string | null;
|
|
12373
12496
|
/** Domain */
|
|
12374
12497
|
domain?: string | null;
|
|
12375
|
-
/**
|
|
12498
|
+
/**
|
|
12499
|
+
* Entity Id
|
|
12500
|
+
* Format: uuid
|
|
12501
|
+
*/
|
|
12376
12502
|
entity_id: string;
|
|
12377
12503
|
/**
|
|
12378
12504
|
* Event Count
|
|
@@ -12437,7 +12563,10 @@ export interface components {
|
|
|
12437
12563
|
created_at?: string | null;
|
|
12438
12564
|
/** Email */
|
|
12439
12565
|
email?: string | null;
|
|
12440
|
-
/**
|
|
12566
|
+
/**
|
|
12567
|
+
* Entity Id
|
|
12568
|
+
* Format: uuid
|
|
12569
|
+
*/
|
|
12441
12570
|
entity_id: string;
|
|
12442
12571
|
/**
|
|
12443
12572
|
* Event Count
|
|
@@ -12497,7 +12626,10 @@ export interface components {
|
|
|
12497
12626
|
created_at?: string | null;
|
|
12498
12627
|
/** Email */
|
|
12499
12628
|
email?: string | null;
|
|
12500
|
-
/**
|
|
12629
|
+
/**
|
|
12630
|
+
* Entity Id
|
|
12631
|
+
* Format: uuid
|
|
12632
|
+
*/
|
|
12501
12633
|
entity_id: string;
|
|
12502
12634
|
/**
|
|
12503
12635
|
* Event Count
|
|
@@ -12552,7 +12684,10 @@ export interface components {
|
|
|
12552
12684
|
created_at?: string | null;
|
|
12553
12685
|
/** Deal Type */
|
|
12554
12686
|
deal_type?: string | null;
|
|
12555
|
-
/**
|
|
12687
|
+
/**
|
|
12688
|
+
* Entity Id
|
|
12689
|
+
* Format: uuid
|
|
12690
|
+
*/
|
|
12556
12691
|
entity_id: string;
|
|
12557
12692
|
/**
|
|
12558
12693
|
* Event Count
|
|
@@ -13039,6 +13174,7 @@ export interface components {
|
|
|
13039
13174
|
total_events: number;
|
|
13040
13175
|
/**
|
|
13041
13176
|
* Workspace Id
|
|
13177
|
+
* Format: uuid
|
|
13042
13178
|
* @description Workspace identifier
|
|
13043
13179
|
*/
|
|
13044
13180
|
workspace_id: string;
|
|
@@ -13080,7 +13216,10 @@ export interface components {
|
|
|
13080
13216
|
* @enum {string}
|
|
13081
13217
|
*/
|
|
13082
13218
|
health_status: "unknown" | "healthy" | "degraded";
|
|
13083
|
-
/**
|
|
13219
|
+
/**
|
|
13220
|
+
* Id
|
|
13221
|
+
* Format: uuid
|
|
13222
|
+
*/
|
|
13084
13223
|
id: string;
|
|
13085
13224
|
/** Is Active */
|
|
13086
13225
|
is_active: boolean;
|
|
@@ -13113,12 +13252,18 @@ export interface components {
|
|
|
13113
13252
|
* Format: date-time
|
|
13114
13253
|
*/
|
|
13115
13254
|
updated_at: string;
|
|
13116
|
-
/**
|
|
13255
|
+
/**
|
|
13256
|
+
* Workspace Id
|
|
13257
|
+
* Format: uuid
|
|
13258
|
+
*/
|
|
13117
13259
|
workspace_id: string;
|
|
13118
13260
|
};
|
|
13119
13261
|
/** DataSourceStatusResponse */
|
|
13120
13262
|
DataSourceStatusResponse: {
|
|
13121
|
-
/**
|
|
13263
|
+
/**
|
|
13264
|
+
* Data Source Id
|
|
13265
|
+
* Format: uuid
|
|
13266
|
+
*/
|
|
13122
13267
|
data_source_id: string;
|
|
13123
13268
|
/** Event Count */
|
|
13124
13269
|
event_count: number;
|
|
@@ -13144,7 +13289,10 @@ export interface components {
|
|
|
13144
13289
|
};
|
|
13145
13290
|
/** DataSourceSyncHistoryResponse */
|
|
13146
13291
|
DataSourceSyncHistoryResponse: {
|
|
13147
|
-
/**
|
|
13292
|
+
/**
|
|
13293
|
+
* Data Source Id
|
|
13294
|
+
* Format: uuid
|
|
13295
|
+
*/
|
|
13148
13296
|
data_source_id: string;
|
|
13149
13297
|
/** Name */
|
|
13150
13298
|
name: string;
|
|
@@ -13354,7 +13502,10 @@ export interface components {
|
|
|
13354
13502
|
* @enum {string}
|
|
13355
13503
|
*/
|
|
13356
13504
|
status: "delivered" | "pending_review";
|
|
13357
|
-
/**
|
|
13505
|
+
/**
|
|
13506
|
+
* Surface Id
|
|
13507
|
+
* Format: uuid
|
|
13508
|
+
*/
|
|
13358
13509
|
surface_id: string;
|
|
13359
13510
|
/** Url */
|
|
13360
13511
|
url?: string | null;
|
|
@@ -13434,7 +13585,10 @@ export interface components {
|
|
|
13434
13585
|
started_at: string;
|
|
13435
13586
|
/** Task Id */
|
|
13436
13587
|
task_id: string;
|
|
13437
|
-
/**
|
|
13588
|
+
/**
|
|
13589
|
+
* Workspace Id
|
|
13590
|
+
* Format: uuid
|
|
13591
|
+
*/
|
|
13438
13592
|
workspace_id: string;
|
|
13439
13593
|
};
|
|
13440
13594
|
DescriptionString: string;
|
|
@@ -13509,7 +13663,10 @@ export interface components {
|
|
|
13509
13663
|
DimensionScoresResponse: {
|
|
13510
13664
|
/** Dimensions */
|
|
13511
13665
|
dimensions: components["schemas"]["DimensionScore"][];
|
|
13512
|
-
/**
|
|
13666
|
+
/**
|
|
13667
|
+
* Entity Id
|
|
13668
|
+
* Format: uuid
|
|
13669
|
+
*/
|
|
13513
13670
|
entity_id: string;
|
|
13514
13671
|
/** Total Facts */
|
|
13515
13672
|
total_facts: number;
|
|
@@ -13525,7 +13682,10 @@ export interface components {
|
|
|
13525
13682
|
count: number;
|
|
13526
13683
|
/** Items */
|
|
13527
13684
|
items: components["schemas"]["DistrictMetricsRow"][];
|
|
13528
|
-
/**
|
|
13685
|
+
/**
|
|
13686
|
+
* Workspace Id
|
|
13687
|
+
* Format: uuid
|
|
13688
|
+
*/
|
|
13529
13689
|
workspace_id: string;
|
|
13530
13690
|
};
|
|
13531
13691
|
/** DistrictMetricsRow */
|
|
@@ -13554,7 +13714,10 @@ export interface components {
|
|
|
13554
13714
|
unmet_demand_score?: number | null;
|
|
13555
13715
|
/** Updated At */
|
|
13556
13716
|
updated_at?: string | null;
|
|
13557
|
-
/**
|
|
13717
|
+
/**
|
|
13718
|
+
* Workspace Id
|
|
13719
|
+
* Format: uuid
|
|
13720
|
+
*/
|
|
13558
13721
|
workspace_id: string;
|
|
13559
13722
|
};
|
|
13560
13723
|
/**
|
|
@@ -13602,7 +13765,10 @@ export interface components {
|
|
|
13602
13765
|
spr_ci_upper?: number | null;
|
|
13603
13766
|
/** Window Days */
|
|
13604
13767
|
window_days?: number | null;
|
|
13605
|
-
/**
|
|
13768
|
+
/**
|
|
13769
|
+
* Workspace Id
|
|
13770
|
+
* Format: uuid
|
|
13771
|
+
*/
|
|
13606
13772
|
workspace_id: string;
|
|
13607
13773
|
};
|
|
13608
13774
|
/** DriversResponse */
|
|
@@ -13617,7 +13783,10 @@ export interface components {
|
|
|
13617
13783
|
outcome_key: string;
|
|
13618
13784
|
/** Sort By */
|
|
13619
13785
|
sort_by: string;
|
|
13620
|
-
/**
|
|
13786
|
+
/**
|
|
13787
|
+
* Workspace Id
|
|
13788
|
+
* Format: uuid
|
|
13789
|
+
*/
|
|
13621
13790
|
workspace_id: string;
|
|
13622
13791
|
};
|
|
13623
13792
|
/** EditSoapRequest */
|
|
@@ -13906,7 +14075,10 @@ export interface components {
|
|
|
13906
14075
|
};
|
|
13907
14076
|
/** EncounterUpdatedEvent */
|
|
13908
14077
|
EncounterUpdatedEvent: {
|
|
13909
|
-
/**
|
|
14078
|
+
/**
|
|
14079
|
+
* Encounter Entity Id
|
|
14080
|
+
* Format: uuid
|
|
14081
|
+
*/
|
|
13910
14082
|
encounter_entity_id: string;
|
|
13911
14083
|
/**
|
|
13912
14084
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -14594,7 +14766,10 @@ export interface components {
|
|
|
14594
14766
|
display_name: string | null;
|
|
14595
14767
|
/** Entity Type */
|
|
14596
14768
|
entity_type: string | null;
|
|
14597
|
-
/**
|
|
14769
|
+
/**
|
|
14770
|
+
* Id
|
|
14771
|
+
* Format: uuid
|
|
14772
|
+
*/
|
|
14598
14773
|
id: string;
|
|
14599
14774
|
/** State */
|
|
14600
14775
|
state: {
|
|
@@ -14907,6 +15082,7 @@ export interface components {
|
|
|
14907
15082
|
total_events: number;
|
|
14908
15083
|
/**
|
|
14909
15084
|
* Workspace Id
|
|
15085
|
+
* Format: uuid
|
|
14910
15086
|
* @description Workspace identifier
|
|
14911
15087
|
*/
|
|
14912
15088
|
workspace_id: string;
|
|
@@ -14933,7 +15109,10 @@ export interface components {
|
|
|
14933
15109
|
fhir_resource_id: string | null;
|
|
14934
15110
|
/** Fhir Resource Type */
|
|
14935
15111
|
fhir_resource_type: string | null;
|
|
14936
|
-
/**
|
|
15112
|
+
/**
|
|
15113
|
+
* Id
|
|
15114
|
+
* Format: uuid
|
|
15115
|
+
*/
|
|
14937
15116
|
id: string;
|
|
14938
15117
|
/**
|
|
14939
15118
|
* Review Status
|
|
@@ -15049,7 +15228,10 @@ export interface components {
|
|
|
15049
15228
|
n_total: number;
|
|
15050
15229
|
/** N Y1 */
|
|
15051
15230
|
n_y1: number;
|
|
15052
|
-
/**
|
|
15231
|
+
/**
|
|
15232
|
+
* Workspace Id
|
|
15233
|
+
* Format: uuid
|
|
15234
|
+
*/
|
|
15053
15235
|
workspace_id: string;
|
|
15054
15236
|
};
|
|
15055
15237
|
/** FeaturesResponse */
|
|
@@ -15058,7 +15240,10 @@ export interface components {
|
|
|
15058
15240
|
count: number;
|
|
15059
15241
|
/** Items */
|
|
15060
15242
|
items: components["schemas"]["FeatureDef"][];
|
|
15061
|
-
/**
|
|
15243
|
+
/**
|
|
15244
|
+
* Workspace Id
|
|
15245
|
+
* Format: uuid
|
|
15246
|
+
*/
|
|
15062
15247
|
workspace_id: string;
|
|
15063
15248
|
};
|
|
15064
15249
|
/** FhirAppointmentListResponse */
|
|
@@ -15087,7 +15272,10 @@ export interface components {
|
|
|
15087
15272
|
duration_minutes?: number | null;
|
|
15088
15273
|
/** End */
|
|
15089
15274
|
end?: string | null;
|
|
15090
|
-
/**
|
|
15275
|
+
/**
|
|
15276
|
+
* Entity Id
|
|
15277
|
+
* Format: uuid
|
|
15278
|
+
*/
|
|
15091
15279
|
entity_id: string;
|
|
15092
15280
|
/**
|
|
15093
15281
|
* Event Count
|
|
@@ -15178,7 +15366,10 @@ export interface components {
|
|
|
15178
15366
|
city?: string | null;
|
|
15179
15367
|
/** Country */
|
|
15180
15368
|
country?: string | null;
|
|
15181
|
-
/**
|
|
15369
|
+
/**
|
|
15370
|
+
* Entity Id
|
|
15371
|
+
* Format: uuid
|
|
15372
|
+
*/
|
|
15182
15373
|
entity_id: string;
|
|
15183
15374
|
/**
|
|
15184
15375
|
* Event Count
|
|
@@ -15234,7 +15425,10 @@ export interface components {
|
|
|
15234
15425
|
canonical_id?: string | null;
|
|
15235
15426
|
/** Domain */
|
|
15236
15427
|
domain?: string | null;
|
|
15237
|
-
/**
|
|
15428
|
+
/**
|
|
15429
|
+
* Entity Id
|
|
15430
|
+
* Format: uuid
|
|
15431
|
+
*/
|
|
15238
15432
|
entity_id: string;
|
|
15239
15433
|
/**
|
|
15240
15434
|
* Event Count
|
|
@@ -15297,7 +15491,10 @@ export interface components {
|
|
|
15297
15491
|
created_at?: string | null;
|
|
15298
15492
|
/** Email */
|
|
15299
15493
|
email?: string | null;
|
|
15300
|
-
/**
|
|
15494
|
+
/**
|
|
15495
|
+
* Entity Id
|
|
15496
|
+
* Format: uuid
|
|
15497
|
+
*/
|
|
15301
15498
|
entity_id: string;
|
|
15302
15499
|
/**
|
|
15303
15500
|
* Event Count
|
|
@@ -15357,7 +15554,10 @@ export interface components {
|
|
|
15357
15554
|
canonical_id?: string | null;
|
|
15358
15555
|
/** Email */
|
|
15359
15556
|
email?: string | null;
|
|
15360
|
-
/**
|
|
15557
|
+
/**
|
|
15558
|
+
* Entity Id
|
|
15559
|
+
* Format: uuid
|
|
15560
|
+
*/
|
|
15361
15561
|
entity_id: string;
|
|
15362
15562
|
/**
|
|
15363
15563
|
* Event Count
|
|
@@ -15397,7 +15597,10 @@ export interface components {
|
|
|
15397
15597
|
effective_at?: string | null;
|
|
15398
15598
|
/** Entity Id */
|
|
15399
15599
|
entity_id?: string | null;
|
|
15400
|
-
/**
|
|
15600
|
+
/**
|
|
15601
|
+
* Event Id
|
|
15602
|
+
* Format: uuid
|
|
15603
|
+
*/
|
|
15401
15604
|
event_id: string;
|
|
15402
15605
|
/** Event Type */
|
|
15403
15606
|
event_type: string;
|
|
@@ -15478,7 +15681,10 @@ export interface components {
|
|
|
15478
15681
|
canonical_id?: string | null;
|
|
15479
15682
|
/** End */
|
|
15480
15683
|
end?: string | null;
|
|
15481
|
-
/**
|
|
15684
|
+
/**
|
|
15685
|
+
* Entity Id
|
|
15686
|
+
* Format: uuid
|
|
15687
|
+
*/
|
|
15482
15688
|
entity_id: string;
|
|
15483
15689
|
/**
|
|
15484
15690
|
* Event Count
|
|
@@ -15586,7 +15792,10 @@ export interface components {
|
|
|
15586
15792
|
count: number;
|
|
15587
15793
|
/** Items */
|
|
15588
15794
|
items: components["schemas"]["ForecastDrawPoint"][];
|
|
15589
|
-
/**
|
|
15795
|
+
/**
|
|
15796
|
+
* Workspace Id
|
|
15797
|
+
* Format: uuid
|
|
15798
|
+
*/
|
|
15590
15799
|
workspace_id: string;
|
|
15591
15800
|
};
|
|
15592
15801
|
/** ForecastFanPointRow */
|
|
@@ -15610,7 +15819,10 @@ export interface components {
|
|
|
15610
15819
|
t: number;
|
|
15611
15820
|
/** Upper 95 */
|
|
15612
15821
|
upper_95?: number | null;
|
|
15613
|
-
/**
|
|
15822
|
+
/**
|
|
15823
|
+
* Workspace Id
|
|
15824
|
+
* Format: uuid
|
|
15825
|
+
*/
|
|
15614
15826
|
workspace_id: string;
|
|
15615
15827
|
/** Ym */
|
|
15616
15828
|
ym?: string | null;
|
|
@@ -15621,7 +15833,10 @@ export interface components {
|
|
|
15621
15833
|
count: number;
|
|
15622
15834
|
/** Items */
|
|
15623
15835
|
items: components["schemas"]["ForecastFanPointRow"][];
|
|
15624
|
-
/**
|
|
15836
|
+
/**
|
|
15837
|
+
* Workspace Id
|
|
15838
|
+
* Format: uuid
|
|
15839
|
+
*/
|
|
15625
15840
|
workspace_id: string;
|
|
15626
15841
|
};
|
|
15627
15842
|
/** ForkAlternative */
|
|
@@ -16291,7 +16506,10 @@ export interface components {
|
|
|
16291
16506
|
retention_policy: {
|
|
16292
16507
|
[key: string]: unknown;
|
|
16293
16508
|
};
|
|
16294
|
-
/**
|
|
16509
|
+
/**
|
|
16510
|
+
* Workspace Id
|
|
16511
|
+
* Format: uuid
|
|
16512
|
+
*/
|
|
16295
16513
|
workspace_id: string;
|
|
16296
16514
|
};
|
|
16297
16515
|
/** HistogramBin */
|
|
@@ -16492,6 +16710,7 @@ export interface components {
|
|
|
16492
16710
|
endpoints?: components["schemas"]["EndpointConfig-Output"][];
|
|
16493
16711
|
/**
|
|
16494
16712
|
* Id
|
|
16713
|
+
* Format: uuid
|
|
16495
16714
|
* @description Integration ID
|
|
16496
16715
|
*/
|
|
16497
16716
|
id: string;
|
|
@@ -16541,6 +16760,7 @@ export interface components {
|
|
|
16541
16760
|
updated_at: string;
|
|
16542
16761
|
/**
|
|
16543
16762
|
* Workspace Id
|
|
16763
|
+
* Format: uuid
|
|
16544
16764
|
* @description Workspace ID
|
|
16545
16765
|
*/
|
|
16546
16766
|
workspace_id: string;
|
|
@@ -16624,7 +16844,10 @@ export interface components {
|
|
|
16624
16844
|
* @default []
|
|
16625
16845
|
*/
|
|
16626
16846
|
endpoints?: components["schemas"]["EndpointConfig-Output"][];
|
|
16627
|
-
/**
|
|
16847
|
+
/**
|
|
16848
|
+
* Id
|
|
16849
|
+
* Format: uuid
|
|
16850
|
+
*/
|
|
16628
16851
|
id: string;
|
|
16629
16852
|
/** Mcp Args */
|
|
16630
16853
|
mcp_args?: string[] | null;
|
|
@@ -16645,7 +16868,10 @@ export interface components {
|
|
|
16645
16868
|
* @default rest
|
|
16646
16869
|
*/
|
|
16647
16870
|
protocol?: string;
|
|
16648
|
-
/**
|
|
16871
|
+
/**
|
|
16872
|
+
* Workspace Id
|
|
16873
|
+
* Format: uuid
|
|
16874
|
+
*/
|
|
16649
16875
|
workspace_id: string;
|
|
16650
16876
|
};
|
|
16651
16877
|
/** InternalIntegrationsListResponse */
|
|
@@ -16712,7 +16938,10 @@ export interface components {
|
|
|
16712
16938
|
* @enum {string}
|
|
16713
16939
|
*/
|
|
16714
16940
|
execution_tier?: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
|
|
16715
|
-
/**
|
|
16941
|
+
/**
|
|
16942
|
+
* Id
|
|
16943
|
+
* Format: uuid
|
|
16944
|
+
*/
|
|
16716
16945
|
id: string;
|
|
16717
16946
|
/**
|
|
16718
16947
|
* Input Schema
|
|
@@ -16788,7 +17017,10 @@ export interface components {
|
|
|
16788
17017
|
* @default 1
|
|
16789
17018
|
*/
|
|
16790
17019
|
version?: number;
|
|
16791
|
-
/**
|
|
17020
|
+
/**
|
|
17021
|
+
* Workspace Id
|
|
17022
|
+
* Format: uuid
|
|
17023
|
+
*/
|
|
16792
17024
|
workspace_id: string;
|
|
16793
17025
|
};
|
|
16794
17026
|
/** InternalSkillsListResponse */
|
|
@@ -16951,6 +17183,7 @@ export interface components {
|
|
|
16951
17183
|
mode: "listen" | "takeover";
|
|
16952
17184
|
/**
|
|
16953
17185
|
* Operator Entity Id
|
|
17186
|
+
* Format: uuid
|
|
16954
17187
|
* @description World entity ID of the operator
|
|
16955
17188
|
*/
|
|
16956
17189
|
operator_entity_id: string;
|
|
@@ -17151,7 +17384,10 @@ export interface components {
|
|
|
17151
17384
|
count: number;
|
|
17152
17385
|
/** Items */
|
|
17153
17386
|
items: components["schemas"]["CatalogEntry"][];
|
|
17154
|
-
/**
|
|
17387
|
+
/**
|
|
17388
|
+
* Workspace Id
|
|
17389
|
+
* Format: uuid
|
|
17390
|
+
*/
|
|
17155
17391
|
workspace_id: string;
|
|
17156
17392
|
};
|
|
17157
17393
|
/** MarkSyncedRequest */
|
|
@@ -17279,7 +17515,10 @@ export interface components {
|
|
|
17279
17515
|
MemoryFactsResponse: {
|
|
17280
17516
|
/** Dimension */
|
|
17281
17517
|
dimension: string | null;
|
|
17282
|
-
/**
|
|
17518
|
+
/**
|
|
17519
|
+
* Entity Id
|
|
17520
|
+
* Format: uuid
|
|
17521
|
+
*/
|
|
17283
17522
|
entity_id: string;
|
|
17284
17523
|
/** Facts */
|
|
17285
17524
|
facts: components["schemas"]["MemoryFact"][];
|
|
@@ -17735,7 +17974,10 @@ export interface components {
|
|
|
17735
17974
|
count: number;
|
|
17736
17975
|
/** Items */
|
|
17737
17976
|
items: components["schemas"]["ModelRegistryRow"][];
|
|
17738
|
-
/**
|
|
17977
|
+
/**
|
|
17978
|
+
* Workspace Id
|
|
17979
|
+
* Format: uuid
|
|
17980
|
+
*/
|
|
17739
17981
|
workspace_id: string;
|
|
17740
17982
|
};
|
|
17741
17983
|
/** ModelRegistryRow */
|
|
@@ -17760,7 +18002,10 @@ export interface components {
|
|
|
17760
18002
|
training_set_size?: number | null;
|
|
17761
18003
|
/** Version */
|
|
17762
18004
|
version?: string | null;
|
|
17763
|
-
/**
|
|
18005
|
+
/**
|
|
18006
|
+
* Workspace Id
|
|
18007
|
+
* Format: uuid
|
|
18008
|
+
*/
|
|
17764
18009
|
workspace_id: string;
|
|
17765
18010
|
};
|
|
17766
18011
|
/** MonitorConceptResponse */
|
|
@@ -17782,7 +18027,10 @@ export interface components {
|
|
|
17782
18027
|
};
|
|
17783
18028
|
/** Has Embedding */
|
|
17784
18029
|
has_embedding: boolean;
|
|
17785
|
-
/**
|
|
18030
|
+
/**
|
|
18031
|
+
* Id
|
|
18032
|
+
* Format: uuid
|
|
18033
|
+
*/
|
|
17786
18034
|
id: string;
|
|
17787
18035
|
/** Name */
|
|
17788
18036
|
name: string;
|
|
@@ -17797,7 +18045,10 @@ export interface components {
|
|
|
17797
18045
|
* Format: date-time
|
|
17798
18046
|
*/
|
|
17799
18047
|
updated_at: string;
|
|
17800
|
-
/**
|
|
18048
|
+
/**
|
|
18049
|
+
* Workspace Id
|
|
18050
|
+
* Format: uuid
|
|
18051
|
+
*/
|
|
17801
18052
|
workspace_id: string;
|
|
17802
18053
|
};
|
|
17803
18054
|
NameString: string;
|
|
@@ -17807,14 +18058,20 @@ export interface components {
|
|
|
17807
18058
|
confidence: number;
|
|
17808
18059
|
/** Event Count */
|
|
17809
18060
|
event_count: number;
|
|
17810
|
-
/**
|
|
18061
|
+
/**
|
|
18062
|
+
* Event Id
|
|
18063
|
+
* Format: uuid
|
|
18064
|
+
*/
|
|
17811
18065
|
event_id: string;
|
|
17812
18066
|
/**
|
|
17813
18067
|
* @description discriminator enum property added by openapi-typescript
|
|
17814
18068
|
* @enum {string}
|
|
17815
18069
|
*/
|
|
17816
18070
|
event_type: "self_image.brief_generated";
|
|
17817
|
-
/**
|
|
18071
|
+
/**
|
|
18072
|
+
* Target Entity Id
|
|
18073
|
+
* Format: uuid
|
|
18074
|
+
*/
|
|
17818
18075
|
target_entity_id: string;
|
|
17819
18076
|
/** Target Entity Type */
|
|
17820
18077
|
target_entity_type: string;
|
|
@@ -17909,7 +18166,10 @@ export interface components {
|
|
|
17909
18166
|
top_symptoms: components["schemas"]["NoteRollupCategoryEntry"][];
|
|
17910
18167
|
/** Total Notes */
|
|
17911
18168
|
total_notes: number;
|
|
17912
|
-
/**
|
|
18169
|
+
/**
|
|
18170
|
+
* Workspace Id
|
|
18171
|
+
* Format: uuid
|
|
18172
|
+
*/
|
|
17913
18173
|
workspace_id: string;
|
|
17914
18174
|
};
|
|
17915
18175
|
/** NoteRollupSdoh */
|
|
@@ -18023,7 +18283,10 @@ export interface components {
|
|
|
18023
18283
|
* @enum {string}
|
|
18024
18284
|
*/
|
|
18025
18285
|
mode: "listen" | "takeover";
|
|
18026
|
-
/**
|
|
18286
|
+
/**
|
|
18287
|
+
* Operator Id
|
|
18288
|
+
* Format: uuid
|
|
18289
|
+
*/
|
|
18027
18290
|
operator_id: string;
|
|
18028
18291
|
};
|
|
18029
18292
|
/** OperatorLeftCallEvent */
|
|
@@ -18040,7 +18303,10 @@ export interface components {
|
|
|
18040
18303
|
* @default null
|
|
18041
18304
|
*/
|
|
18042
18305
|
human_segment_turn_count?: number | null;
|
|
18043
|
-
/**
|
|
18306
|
+
/**
|
|
18307
|
+
* Operator Id
|
|
18308
|
+
* Format: uuid
|
|
18309
|
+
*/
|
|
18044
18310
|
operator_id: string;
|
|
18045
18311
|
};
|
|
18046
18312
|
/** OperatorModeChangedEvent */
|
|
@@ -18057,7 +18323,10 @@ export interface components {
|
|
|
18057
18323
|
* @enum {string}
|
|
18058
18324
|
*/
|
|
18059
18325
|
mode: "listen" | "takeover";
|
|
18060
|
-
/**
|
|
18326
|
+
/**
|
|
18327
|
+
* Operator Id
|
|
18328
|
+
* Format: uuid
|
|
18329
|
+
*/
|
|
18061
18330
|
operator_id: string;
|
|
18062
18331
|
};
|
|
18063
18332
|
/** OperatorPerformanceItem */
|
|
@@ -18184,7 +18453,10 @@ export interface components {
|
|
|
18184
18453
|
* @enum {string}
|
|
18185
18454
|
*/
|
|
18186
18455
|
event_type: "operator.profile_updated";
|
|
18187
|
-
/**
|
|
18456
|
+
/**
|
|
18457
|
+
* Operator Id
|
|
18458
|
+
* Format: uuid
|
|
18459
|
+
*/
|
|
18188
18460
|
operator_id: string;
|
|
18189
18461
|
};
|
|
18190
18462
|
/** OperatorRegisteredEvent */
|
|
@@ -18194,7 +18466,10 @@ export interface components {
|
|
|
18194
18466
|
* @enum {string}
|
|
18195
18467
|
*/
|
|
18196
18468
|
event_type: "operator.registered";
|
|
18197
|
-
/**
|
|
18469
|
+
/**
|
|
18470
|
+
* Operator Id
|
|
18471
|
+
* Format: uuid
|
|
18472
|
+
*/
|
|
18198
18473
|
operator_id: string;
|
|
18199
18474
|
/**
|
|
18200
18475
|
* Timestamp
|
|
@@ -18300,7 +18575,10 @@ export interface components {
|
|
|
18300
18575
|
* @enum {string}
|
|
18301
18576
|
*/
|
|
18302
18577
|
event_type: "operator.status_changed";
|
|
18303
|
-
/**
|
|
18578
|
+
/**
|
|
18579
|
+
* Operator Id
|
|
18580
|
+
* Format: uuid
|
|
18581
|
+
*/
|
|
18304
18582
|
operator_id: string;
|
|
18305
18583
|
/**
|
|
18306
18584
|
* Status
|
|
@@ -18350,9 +18628,15 @@ export interface components {
|
|
|
18350
18628
|
* Format: date-time
|
|
18351
18629
|
*/
|
|
18352
18630
|
created_at: string;
|
|
18353
|
-
/**
|
|
18631
|
+
/**
|
|
18632
|
+
* Event Id
|
|
18633
|
+
* Format: uuid
|
|
18634
|
+
*/
|
|
18354
18635
|
event_id: string;
|
|
18355
|
-
/**
|
|
18636
|
+
/**
|
|
18637
|
+
* Id
|
|
18638
|
+
* Format: uuid
|
|
18639
|
+
*/
|
|
18356
18640
|
id: string;
|
|
18357
18641
|
/** Sync Error */
|
|
18358
18642
|
sync_error?: string | null;
|
|
@@ -18361,7 +18645,10 @@ export interface components {
|
|
|
18361
18645
|
};
|
|
18362
18646
|
/** OutboundSinkSummary */
|
|
18363
18647
|
OutboundSinkSummary: {
|
|
18364
|
-
/**
|
|
18648
|
+
/**
|
|
18649
|
+
* Data Source Id
|
|
18650
|
+
* Format: uuid
|
|
18651
|
+
*/
|
|
18365
18652
|
data_source_id: string;
|
|
18366
18653
|
/** Data Source Name */
|
|
18367
18654
|
data_source_name: string;
|
|
@@ -18953,11 +19240,17 @@ export interface components {
|
|
|
18953
19240
|
n_lifetime_distinct_codes?: number | null;
|
|
18954
19241
|
/** Oldest Active Onset Date */
|
|
18955
19242
|
oldest_active_onset_date?: string | null;
|
|
18956
|
-
/**
|
|
19243
|
+
/**
|
|
19244
|
+
* Patient Entity Id
|
|
19245
|
+
* Format: uuid
|
|
19246
|
+
*/
|
|
18957
19247
|
patient_entity_id: string;
|
|
18958
19248
|
/** Recent Onset Count 365D */
|
|
18959
19249
|
recent_onset_count_365d?: number | null;
|
|
18960
|
-
/**
|
|
19250
|
+
/**
|
|
19251
|
+
* Workspace Id
|
|
19252
|
+
* Format: uuid
|
|
19253
|
+
*/
|
|
18961
19254
|
workspace_id: string;
|
|
18962
19255
|
};
|
|
18963
19256
|
/** PatientBurdenResponse */
|
|
@@ -18968,7 +19261,10 @@ export interface components {
|
|
|
18968
19261
|
items: components["schemas"]["PatientBurdenRow"][];
|
|
18969
19262
|
/** Sort By */
|
|
18970
19263
|
sort_by: string;
|
|
18971
|
-
/**
|
|
19264
|
+
/**
|
|
19265
|
+
* Workspace Id
|
|
19266
|
+
* Format: uuid
|
|
19267
|
+
*/
|
|
18972
19268
|
workspace_id: string;
|
|
18973
19269
|
};
|
|
18974
19270
|
/** PatientBurdenRow */
|
|
@@ -19003,11 +19299,17 @@ export interface components {
|
|
|
19003
19299
|
n_lifetime_distinct_codes?: number | null;
|
|
19004
19300
|
/** Oldest Active Onset Date */
|
|
19005
19301
|
oldest_active_onset_date?: string | null;
|
|
19006
|
-
/**
|
|
19302
|
+
/**
|
|
19303
|
+
* Patient Entity Id
|
|
19304
|
+
* Format: uuid
|
|
19305
|
+
*/
|
|
19007
19306
|
patient_entity_id: string;
|
|
19008
19307
|
/** Recent Onset Count 365D */
|
|
19009
19308
|
recent_onset_count_365d?: number | null;
|
|
19010
|
-
/**
|
|
19309
|
+
/**
|
|
19310
|
+
* Workspace Id
|
|
19311
|
+
* Format: uuid
|
|
19312
|
+
*/
|
|
19011
19313
|
workspace_id: string;
|
|
19012
19314
|
};
|
|
19013
19315
|
/** PatientLabRow */
|
|
@@ -19031,7 +19333,10 @@ export interface components {
|
|
|
19031
19333
|
count: number;
|
|
19032
19334
|
/** Items */
|
|
19033
19335
|
items: components["schemas"]["PatientLabRow"][];
|
|
19034
|
-
/**
|
|
19336
|
+
/**
|
|
19337
|
+
* Workspace Id
|
|
19338
|
+
* Format: uuid
|
|
19339
|
+
*/
|
|
19035
19340
|
workspace_id: string;
|
|
19036
19341
|
};
|
|
19037
19342
|
/**
|
|
@@ -19049,7 +19354,10 @@ export interface components {
|
|
|
19049
19354
|
* @description Primary email address
|
|
19050
19355
|
*/
|
|
19051
19356
|
email?: string | null;
|
|
19052
|
-
/**
|
|
19357
|
+
/**
|
|
19358
|
+
* Entity Id
|
|
19359
|
+
* Format: uuid
|
|
19360
|
+
*/
|
|
19053
19361
|
entity_id: string;
|
|
19054
19362
|
/**
|
|
19055
19363
|
* Event Count
|
|
@@ -19117,7 +19425,10 @@ export interface components {
|
|
|
19117
19425
|
note_text: string;
|
|
19118
19426
|
/** Patient Id */
|
|
19119
19427
|
patient_id: string;
|
|
19120
|
-
/**
|
|
19428
|
+
/**
|
|
19429
|
+
* Workspace Id
|
|
19430
|
+
* Format: uuid
|
|
19431
|
+
*/
|
|
19121
19432
|
workspace_id: string;
|
|
19122
19433
|
};
|
|
19123
19434
|
/** PatientSearchResponse */
|
|
@@ -19148,7 +19459,10 @@ export interface components {
|
|
|
19148
19459
|
* @description Primary email address
|
|
19149
19460
|
*/
|
|
19150
19461
|
email?: string | null;
|
|
19151
|
-
/**
|
|
19462
|
+
/**
|
|
19463
|
+
* Entity Id
|
|
19464
|
+
* Format: uuid
|
|
19465
|
+
*/
|
|
19152
19466
|
entity_id: string;
|
|
19153
19467
|
/** Entity Type */
|
|
19154
19468
|
entity_type: string;
|
|
@@ -19187,7 +19501,10 @@ export interface components {
|
|
|
19187
19501
|
};
|
|
19188
19502
|
/** PatientTimelineResponse */
|
|
19189
19503
|
PatientTimelineResponse: {
|
|
19190
|
-
/**
|
|
19504
|
+
/**
|
|
19505
|
+
* Entity Id
|
|
19506
|
+
* Format: uuid
|
|
19507
|
+
*/
|
|
19191
19508
|
entity_id: string;
|
|
19192
19509
|
/** Events */
|
|
19193
19510
|
events: {
|
|
@@ -19202,7 +19519,10 @@ export interface components {
|
|
|
19202
19519
|
count: number;
|
|
19203
19520
|
/** Items */
|
|
19204
19521
|
items: components["schemas"]["PatientTopologyRow"][];
|
|
19205
|
-
/**
|
|
19522
|
+
/**
|
|
19523
|
+
* Workspace Id
|
|
19524
|
+
* Format: uuid
|
|
19525
|
+
*/
|
|
19206
19526
|
workspace_id: string;
|
|
19207
19527
|
};
|
|
19208
19528
|
/** PatientTopologyRow */
|
|
@@ -19239,7 +19559,10 @@ export interface components {
|
|
|
19239
19559
|
umap_x: number;
|
|
19240
19560
|
/** Umap Y */
|
|
19241
19561
|
umap_y: number;
|
|
19242
|
-
/**
|
|
19562
|
+
/**
|
|
19563
|
+
* Workspace Id
|
|
19564
|
+
* Format: uuid
|
|
19565
|
+
*/
|
|
19243
19566
|
workspace_id: string;
|
|
19244
19567
|
/** Y Hat Asthma 12Mo */
|
|
19245
19568
|
y_hat_asthma_12mo?: number | null;
|
|
@@ -19310,6 +19633,7 @@ export interface components {
|
|
|
19310
19633
|
developed_by: string;
|
|
19311
19634
|
/**
|
|
19312
19635
|
* Id
|
|
19636
|
+
* Format: uuid
|
|
19313
19637
|
* @description Unique persona identifier
|
|
19314
19638
|
*/
|
|
19315
19639
|
id: string;
|
|
@@ -19331,6 +19655,7 @@ export interface components {
|
|
|
19331
19655
|
updated_at: string;
|
|
19332
19656
|
/**
|
|
19333
19657
|
* Workspace Id
|
|
19658
|
+
* Format: uuid
|
|
19334
19659
|
* @description Workspace that owns this persona
|
|
19335
19660
|
*/
|
|
19336
19661
|
workspace_id: string;
|
|
@@ -19379,7 +19704,10 @@ export interface components {
|
|
|
19379
19704
|
created_at: string;
|
|
19380
19705
|
/** Display Name */
|
|
19381
19706
|
display_name: string;
|
|
19382
|
-
/**
|
|
19707
|
+
/**
|
|
19708
|
+
* Id
|
|
19709
|
+
* Format: uuid
|
|
19710
|
+
*/
|
|
19383
19711
|
id: string;
|
|
19384
19712
|
/** Phone Number */
|
|
19385
19713
|
phone_number: string;
|
|
@@ -19387,7 +19715,10 @@ export interface components {
|
|
|
19387
19715
|
provider_phone_sid: string;
|
|
19388
19716
|
/** Status */
|
|
19389
19717
|
status: string;
|
|
19390
|
-
/**
|
|
19718
|
+
/**
|
|
19719
|
+
* Workspace Id
|
|
19720
|
+
* Format: uuid
|
|
19721
|
+
*/
|
|
19391
19722
|
workspace_id: string;
|
|
19392
19723
|
};
|
|
19393
19724
|
/** PhoneNumberResponse */
|
|
@@ -19404,7 +19735,10 @@ export interface components {
|
|
|
19404
19735
|
/** Display Name */
|
|
19405
19736
|
display_name: string;
|
|
19406
19737
|
forwarding: components["schemas"]["ForwardingConfigResponse"] | null;
|
|
19407
|
-
/**
|
|
19738
|
+
/**
|
|
19739
|
+
* Id
|
|
19740
|
+
* Format: uuid
|
|
19741
|
+
*/
|
|
19408
19742
|
id: string;
|
|
19409
19743
|
/** Inbound Service Id */
|
|
19410
19744
|
inbound_service_id: string | null;
|
|
@@ -19423,12 +19757,18 @@ export interface components {
|
|
|
19423
19757
|
* Format: date-time
|
|
19424
19758
|
*/
|
|
19425
19759
|
updated_at: string;
|
|
19426
|
-
/**
|
|
19760
|
+
/**
|
|
19761
|
+
* Workspace Id
|
|
19762
|
+
* Format: uuid
|
|
19763
|
+
*/
|
|
19427
19764
|
workspace_id: string;
|
|
19428
19765
|
};
|
|
19429
19766
|
/** PipelineErrorEvent */
|
|
19430
19767
|
PipelineErrorEvent: {
|
|
19431
|
-
/**
|
|
19768
|
+
/**
|
|
19769
|
+
* Data Source Id
|
|
19770
|
+
* Format: uuid
|
|
19771
|
+
*/
|
|
19432
19772
|
data_source_id: string;
|
|
19433
19773
|
/** Error */
|
|
19434
19774
|
error: string;
|
|
@@ -19545,7 +19885,10 @@ export interface components {
|
|
|
19545
19885
|
};
|
|
19546
19886
|
/** PipelineSyncCompletedEvent */
|
|
19547
19887
|
PipelineSyncCompletedEvent: {
|
|
19548
|
-
/**
|
|
19888
|
+
/**
|
|
19889
|
+
* Data Source Id
|
|
19890
|
+
* Format: uuid
|
|
19891
|
+
*/
|
|
19549
19892
|
data_source_id: string;
|
|
19550
19893
|
/** Duration Ms */
|
|
19551
19894
|
duration_ms: number;
|
|
@@ -19601,7 +19944,10 @@ export interface components {
|
|
|
19601
19944
|
count: number;
|
|
19602
19945
|
/** Items */
|
|
19603
19946
|
items: components["schemas"]["PositiveSignalRow"][];
|
|
19604
|
-
/**
|
|
19947
|
+
/**
|
|
19948
|
+
* Workspace Id
|
|
19949
|
+
* Format: uuid
|
|
19950
|
+
*/
|
|
19605
19951
|
workspace_id: string;
|
|
19606
19952
|
};
|
|
19607
19953
|
/** PositiveSignalRow */
|
|
@@ -19622,7 +19968,10 @@ export interface components {
|
|
|
19622
19968
|
signal_id: string;
|
|
19623
19969
|
/** Updated At */
|
|
19624
19970
|
updated_at?: string | null;
|
|
19625
|
-
/**
|
|
19971
|
+
/**
|
|
19972
|
+
* Workspace Id
|
|
19973
|
+
* Format: uuid
|
|
19974
|
+
*/
|
|
19626
19975
|
workspace_id: string;
|
|
19627
19976
|
};
|
|
19628
19977
|
/** PrevalenceResponse */
|
|
@@ -19631,7 +19980,10 @@ export interface components {
|
|
|
19631
19980
|
count: number;
|
|
19632
19981
|
/** Items */
|
|
19633
19982
|
items: components["schemas"]["PrevalenceRow"][];
|
|
19634
|
-
/**
|
|
19983
|
+
/**
|
|
19984
|
+
* Workspace Id
|
|
19985
|
+
* Format: uuid
|
|
19986
|
+
*/
|
|
19635
19987
|
workspace_id: string;
|
|
19636
19988
|
};
|
|
19637
19989
|
/** PrevalenceRow */
|
|
@@ -19660,7 +20012,10 @@ export interface components {
|
|
|
19660
20012
|
prevalence_ci_upper_pct?: number | null;
|
|
19661
20013
|
/** Prevalence Pct */
|
|
19662
20014
|
prevalence_pct?: number | null;
|
|
19663
|
-
/**
|
|
20015
|
+
/**
|
|
20016
|
+
* Workspace Id
|
|
20017
|
+
* Format: uuid
|
|
20018
|
+
*/
|
|
19664
20019
|
workspace_id: string;
|
|
19665
20020
|
};
|
|
19666
20021
|
/**
|
|
@@ -19681,6 +20036,11 @@ export interface components {
|
|
|
19681
20036
|
* @default
|
|
19682
20037
|
*/
|
|
19683
20038
|
caller_id?: string;
|
|
20039
|
+
/**
|
|
20040
|
+
* Caller Phone
|
|
20041
|
+
* @description Caller E.164 phone number for console clients
|
|
20042
|
+
*/
|
|
20043
|
+
caller_phone?: string | null;
|
|
19684
20044
|
/** Current Emotion */
|
|
19685
20045
|
current_emotion?: string | null;
|
|
19686
20046
|
/**
|
|
@@ -19690,6 +20050,11 @@ export interface components {
|
|
|
19690
20050
|
current_state?: string;
|
|
19691
20051
|
/** Current Valence */
|
|
19692
20052
|
current_valence?: number | null;
|
|
20053
|
+
/**
|
|
20054
|
+
* Data Quality Flags
|
|
20055
|
+
* @default []
|
|
20056
|
+
*/
|
|
20057
|
+
data_quality_flags?: "invalid_direction"[];
|
|
19693
20058
|
/**
|
|
19694
20059
|
* Direction
|
|
19695
20060
|
* @description Call direction
|
|
@@ -19709,8 +20074,13 @@ export interface components {
|
|
|
19709
20074
|
* @default []
|
|
19710
20075
|
*/
|
|
19711
20076
|
priority_reasons?: ("high_risk" | "long_wait" | "negative_emotion" | "safety_concern" | "looping")[];
|
|
19712
|
-
/**
|
|
20077
|
+
/**
|
|
20078
|
+
* Priority Score
|
|
20079
|
+
* @description Priority score normalized to 0.0-1.0
|
|
20080
|
+
*/
|
|
19713
20081
|
priority_score: number;
|
|
20082
|
+
/** Risk Level */
|
|
20083
|
+
risk_level?: ("low" | "medium" | "high" | "critical") | null;
|
|
19714
20084
|
/** Risk Score */
|
|
19715
20085
|
risk_score?: number | null;
|
|
19716
20086
|
/**
|
|
@@ -19719,6 +20089,13 @@ export interface components {
|
|
|
19719
20089
|
* @default
|
|
19720
20090
|
*/
|
|
19721
20091
|
service_id?: string;
|
|
20092
|
+
/** @description Human-readable service name when available */
|
|
20093
|
+
service_name?: components["schemas"]["NameString"] | null;
|
|
20094
|
+
/**
|
|
20095
|
+
* Started At
|
|
20096
|
+
* @description When the active call started
|
|
20097
|
+
*/
|
|
20098
|
+
started_at?: string | null;
|
|
19722
20099
|
/**
|
|
19723
20100
|
* Turn Count
|
|
19724
20101
|
* @default 0
|
|
@@ -19817,7 +20194,10 @@ export interface components {
|
|
|
19817
20194
|
edges_deleted: number;
|
|
19818
20195
|
/** Entity Deleted */
|
|
19819
20196
|
entity_deleted: boolean;
|
|
19820
|
-
/**
|
|
20197
|
+
/**
|
|
20198
|
+
* Entity Id
|
|
20199
|
+
* Format: uuid
|
|
20200
|
+
*/
|
|
19821
20201
|
entity_id: string;
|
|
19822
20202
|
/** Events Deleted */
|
|
19823
20203
|
events_deleted: number;
|
|
@@ -19932,7 +20312,10 @@ export interface components {
|
|
|
19932
20312
|
count: number;
|
|
19933
20313
|
/** Items */
|
|
19934
20314
|
items: components["schemas"]["RankedAnomalyRow"][];
|
|
19935
|
-
/**
|
|
20315
|
+
/**
|
|
20316
|
+
* Workspace Id
|
|
20317
|
+
* Format: uuid
|
|
20318
|
+
*/
|
|
19936
20319
|
workspace_id: string;
|
|
19937
20320
|
};
|
|
19938
20321
|
/** RankedAnomalyRow */
|
|
@@ -20083,7 +20466,7 @@ export interface components {
|
|
|
20083
20466
|
* Service Id
|
|
20084
20467
|
* @description Service (agent) that handled the call
|
|
20085
20468
|
*/
|
|
20086
|
-
service_id
|
|
20469
|
+
service_id?: string | null;
|
|
20087
20470
|
/**
|
|
20088
20471
|
* Tts Provider
|
|
20089
20472
|
* @description Text-to-speech provider used for the call
|
|
@@ -20091,6 +20474,7 @@ export interface components {
|
|
|
20091
20474
|
tts_provider: string;
|
|
20092
20475
|
/**
|
|
20093
20476
|
* Workspace Id
|
|
20477
|
+
* Format: uuid
|
|
20094
20478
|
* @description Workspace that owns this recording
|
|
20095
20479
|
*/
|
|
20096
20480
|
workspace_id: string;
|
|
@@ -20303,7 +20687,10 @@ export interface components {
|
|
|
20303
20687
|
* @enum {string}
|
|
20304
20688
|
*/
|
|
20305
20689
|
status: "created" | "pending_review" | "delivered" | "opened" | "partial" | "completed" | "expired" | "archived";
|
|
20306
|
-
/**
|
|
20690
|
+
/**
|
|
20691
|
+
* Surface Id
|
|
20692
|
+
* Format: uuid
|
|
20693
|
+
*/
|
|
20307
20694
|
surface_id: string;
|
|
20308
20695
|
};
|
|
20309
20696
|
/**
|
|
@@ -20359,7 +20746,10 @@ export interface components {
|
|
|
20359
20746
|
event_ids: string[];
|
|
20360
20747
|
/** Events */
|
|
20361
20748
|
events?: components["schemas"]["EventSummary"][] | null;
|
|
20362
|
-
/**
|
|
20749
|
+
/**
|
|
20750
|
+
* Id
|
|
20751
|
+
* Format: uuid
|
|
20752
|
+
*/
|
|
20363
20753
|
id: string;
|
|
20364
20754
|
/** Judge Analysis */
|
|
20365
20755
|
judge_analysis: {
|
|
@@ -20376,7 +20766,10 @@ export interface components {
|
|
|
20376
20766
|
* @enum {string}
|
|
20377
20767
|
*/
|
|
20378
20768
|
status: "pending" | "in_progress" | "completed" | "rejected";
|
|
20379
|
-
/**
|
|
20769
|
+
/**
|
|
20770
|
+
* Workspace Id
|
|
20771
|
+
* Format: uuid
|
|
20772
|
+
*/
|
|
20380
20773
|
workspace_id: string;
|
|
20381
20774
|
};
|
|
20382
20775
|
/** ReviewMetrics */
|
|
@@ -20716,7 +21109,10 @@ export interface components {
|
|
|
20716
21109
|
SampleFact: {
|
|
20717
21110
|
/** Confidence */
|
|
20718
21111
|
confidence: number;
|
|
20719
|
-
/**
|
|
21112
|
+
/**
|
|
21113
|
+
* Entity Id
|
|
21114
|
+
* Format: uuid
|
|
21115
|
+
*/
|
|
20720
21116
|
entity_id: string;
|
|
20721
21117
|
/** Extracted Text */
|
|
20722
21118
|
extracted_text: string;
|
|
@@ -20729,7 +21125,10 @@ export interface components {
|
|
|
20729
21125
|
items: {
|
|
20730
21126
|
[key: string]: unknown;
|
|
20731
21127
|
}[];
|
|
20732
|
-
/**
|
|
21128
|
+
/**
|
|
21129
|
+
* Workspace Id
|
|
21130
|
+
* Format: uuid
|
|
21131
|
+
*/
|
|
20733
21132
|
workspace_id: string;
|
|
20734
21133
|
};
|
|
20735
21134
|
/** Scenario */
|
|
@@ -21061,7 +21460,10 @@ export interface components {
|
|
|
21061
21460
|
* @description A service links an agent + context graph + version sets.
|
|
21062
21461
|
*/
|
|
21063
21462
|
Service: {
|
|
21064
|
-
/**
|
|
21463
|
+
/**
|
|
21464
|
+
* Agent Id
|
|
21465
|
+
* Format: uuid
|
|
21466
|
+
*/
|
|
21065
21467
|
agent_id: string;
|
|
21066
21468
|
/**
|
|
21067
21469
|
* Channel Type
|
|
@@ -21069,7 +21471,10 @@ export interface components {
|
|
|
21069
21471
|
* @enum {string}
|
|
21070
21472
|
*/
|
|
21071
21473
|
channel_type?: "voice" | "text" | "scribe";
|
|
21072
|
-
/**
|
|
21474
|
+
/**
|
|
21475
|
+
* Context Graph Id
|
|
21476
|
+
* Format: uuid
|
|
21477
|
+
*/
|
|
21073
21478
|
context_graph_id: string;
|
|
21074
21479
|
/** Created At */
|
|
21075
21480
|
created_at?: string | null;
|
|
@@ -21087,7 +21492,10 @@ export interface components {
|
|
|
21087
21492
|
* @default []
|
|
21088
21493
|
*/
|
|
21089
21494
|
hard_escalation_rules?: components["schemas"]["HardEscalationRule"][];
|
|
21090
|
-
/**
|
|
21495
|
+
/**
|
|
21496
|
+
* Id
|
|
21497
|
+
* Format: uuid
|
|
21498
|
+
*/
|
|
21091
21499
|
id: string;
|
|
21092
21500
|
/** Is Active */
|
|
21093
21501
|
is_active: boolean;
|
|
@@ -21120,7 +21528,10 @@ export interface components {
|
|
|
21120
21528
|
};
|
|
21121
21529
|
/** ServiceResponse */
|
|
21122
21530
|
ServiceResponse: {
|
|
21123
|
-
/**
|
|
21531
|
+
/**
|
|
21532
|
+
* Agent Id
|
|
21533
|
+
* Format: uuid
|
|
21534
|
+
*/
|
|
21124
21535
|
agent_id: string;
|
|
21125
21536
|
/** Agent Name */
|
|
21126
21537
|
agent_name?: string | null;
|
|
@@ -21130,7 +21541,10 @@ export interface components {
|
|
|
21130
21541
|
* @enum {string}
|
|
21131
21542
|
*/
|
|
21132
21543
|
channel_type?: "voice" | "text" | "scribe";
|
|
21133
|
-
/**
|
|
21544
|
+
/**
|
|
21545
|
+
* Context Graph Id
|
|
21546
|
+
* Format: uuid
|
|
21547
|
+
*/
|
|
21134
21548
|
context_graph_id: string;
|
|
21135
21549
|
/** Context Graph Name */
|
|
21136
21550
|
context_graph_name?: string | null;
|
|
@@ -21148,7 +21562,10 @@ export interface components {
|
|
|
21148
21562
|
*/
|
|
21149
21563
|
environment?: "sandbox" | "production";
|
|
21150
21564
|
escalation_policy?: components["schemas"]["EscalationPolicy"] | null;
|
|
21151
|
-
/**
|
|
21565
|
+
/**
|
|
21566
|
+
* Id
|
|
21567
|
+
* Format: uuid
|
|
21568
|
+
*/
|
|
21152
21569
|
id: string;
|
|
21153
21570
|
/** Is Active */
|
|
21154
21571
|
is_active: boolean;
|
|
@@ -21184,7 +21601,10 @@ export interface components {
|
|
|
21184
21601
|
[key: string]: components["schemas"]["VersionSet"];
|
|
21185
21602
|
};
|
|
21186
21603
|
voice_config?: components["schemas"]["ServiceVoiceConfig"] | null;
|
|
21187
|
-
/**
|
|
21604
|
+
/**
|
|
21605
|
+
* Workspace Id
|
|
21606
|
+
* Format: uuid
|
|
21607
|
+
*/
|
|
21188
21608
|
workspace_id: string;
|
|
21189
21609
|
};
|
|
21190
21610
|
/** ServiceTag */
|
|
@@ -21725,7 +22145,10 @@ export interface components {
|
|
|
21725
22145
|
is_terminal: boolean;
|
|
21726
22146
|
/** Run Id */
|
|
21727
22147
|
run_id: string;
|
|
21728
|
-
/**
|
|
22148
|
+
/**
|
|
22149
|
+
* Service Id
|
|
22150
|
+
* Format: uuid
|
|
22151
|
+
*/
|
|
21729
22152
|
service_id: string;
|
|
21730
22153
|
/** Session Id */
|
|
21731
22154
|
session_id: string;
|
|
@@ -21758,7 +22181,10 @@ export interface components {
|
|
|
21758
22181
|
};
|
|
21759
22182
|
/** SkillContextGraphReference */
|
|
21760
22183
|
SkillContextGraphReference: {
|
|
21761
|
-
/**
|
|
22184
|
+
/**
|
|
22185
|
+
* Context Graph Id
|
|
22186
|
+
* Format: uuid
|
|
22187
|
+
*/
|
|
21762
22188
|
context_graph_id: string;
|
|
21763
22189
|
/** Context Graph Name */
|
|
21764
22190
|
context_graph_name: string;
|
|
@@ -21773,7 +22199,10 @@ export interface components {
|
|
|
21773
22199
|
context_graph_references: components["schemas"]["SkillContextGraphReference"][];
|
|
21774
22200
|
/** Service References */
|
|
21775
22201
|
service_references: string[];
|
|
21776
|
-
/**
|
|
22202
|
+
/**
|
|
22203
|
+
* Skill Id
|
|
22204
|
+
* Format: uuid
|
|
22205
|
+
*/
|
|
21777
22206
|
skill_id: string;
|
|
21778
22207
|
/** Skill Slug */
|
|
21779
22208
|
skill_slug: string;
|
|
@@ -21813,7 +22242,10 @@ export interface components {
|
|
|
21813
22242
|
* @enum {string}
|
|
21814
22243
|
*/
|
|
21815
22244
|
execution_tier: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
|
|
21816
|
-
/**
|
|
22245
|
+
/**
|
|
22246
|
+
* Id
|
|
22247
|
+
* Format: uuid
|
|
22248
|
+
*/
|
|
21817
22249
|
id: string;
|
|
21818
22250
|
/** Input Schema */
|
|
21819
22251
|
input_schema: {
|
|
@@ -21858,7 +22290,10 @@ export interface components {
|
|
|
21858
22290
|
use_structured_output: boolean;
|
|
21859
22291
|
/** Version */
|
|
21860
22292
|
version: number;
|
|
21861
|
-
/**
|
|
22293
|
+
/**
|
|
22294
|
+
* Workspace Id
|
|
22295
|
+
* Format: uuid
|
|
22296
|
+
*/
|
|
21862
22297
|
workspace_id: string;
|
|
21863
22298
|
};
|
|
21864
22299
|
/** SkillStateReference */
|
|
@@ -21895,7 +22330,10 @@ export interface components {
|
|
|
21895
22330
|
entity_type?: string | null;
|
|
21896
22331
|
/** Event Type */
|
|
21897
22332
|
event_type: string;
|
|
21898
|
-
/**
|
|
22333
|
+
/**
|
|
22334
|
+
* Id
|
|
22335
|
+
* Format: uuid
|
|
22336
|
+
*/
|
|
21899
22337
|
id: string;
|
|
21900
22338
|
/**
|
|
21901
22339
|
* Ingested At
|
|
@@ -21909,7 +22347,10 @@ export interface components {
|
|
|
21909
22347
|
};
|
|
21910
22348
|
/** SourceFailureItem */
|
|
21911
22349
|
SourceFailureItem: {
|
|
21912
|
-
/**
|
|
22350
|
+
/**
|
|
22351
|
+
* Event Id
|
|
22352
|
+
* Format: uuid
|
|
22353
|
+
*/
|
|
21913
22354
|
event_id: string;
|
|
21914
22355
|
/** Event Type */
|
|
21915
22356
|
event_type: string;
|
|
@@ -21943,7 +22384,10 @@ export interface components {
|
|
|
21943
22384
|
* @enum {string}
|
|
21944
22385
|
*/
|
|
21945
22386
|
health_status: "unknown" | "healthy" | "degraded";
|
|
21946
|
-
/**
|
|
22387
|
+
/**
|
|
22388
|
+
* Id
|
|
22389
|
+
* Format: uuid
|
|
22390
|
+
*/
|
|
21947
22391
|
id: string;
|
|
21948
22392
|
/** Is Active */
|
|
21949
22393
|
is_active: boolean;
|
|
@@ -21979,7 +22423,10 @@ export interface components {
|
|
|
21979
22423
|
* @enum {string}
|
|
21980
22424
|
*/
|
|
21981
22425
|
health_status: "unknown" | "healthy" | "degraded";
|
|
21982
|
-
/**
|
|
22426
|
+
/**
|
|
22427
|
+
* Id
|
|
22428
|
+
* Format: uuid
|
|
22429
|
+
*/
|
|
21983
22430
|
id: string;
|
|
21984
22431
|
/** Is Active */
|
|
21985
22432
|
is_active: boolean;
|
|
@@ -22029,7 +22476,10 @@ export interface components {
|
|
|
22029
22476
|
* @default 0
|
|
22030
22477
|
*/
|
|
22031
22478
|
consecutive_errors?: number;
|
|
22032
|
-
/**
|
|
22479
|
+
/**
|
|
22480
|
+
* Data Source Id
|
|
22481
|
+
* Format: uuid
|
|
22482
|
+
*/
|
|
22033
22483
|
data_source_id: string;
|
|
22034
22484
|
/** Last Error */
|
|
22035
22485
|
last_error?: string | null;
|
|
@@ -22052,7 +22502,10 @@ export interface components {
|
|
|
22052
22502
|
source_type: "rest_api" | "webhook" | "file_drop" | "fhir" | "fhir_store" | "ehr" | "crm" | "database" | "custom" | "smart_fhir";
|
|
22053
22503
|
/** Status */
|
|
22054
22504
|
status: string;
|
|
22055
|
-
/**
|
|
22505
|
+
/**
|
|
22506
|
+
* Workspace Id
|
|
22507
|
+
* Format: uuid
|
|
22508
|
+
*/
|
|
22056
22509
|
workspace_id: string;
|
|
22057
22510
|
};
|
|
22058
22511
|
/** SpeakerAcoustics */
|
|
@@ -22294,7 +22747,7 @@ export interface components {
|
|
|
22294
22747
|
/** Region */
|
|
22295
22748
|
region: string;
|
|
22296
22749
|
/** Workspace Id */
|
|
22297
|
-
workspace_id: string;
|
|
22750
|
+
workspace_id: string | "labs";
|
|
22298
22751
|
};
|
|
22299
22752
|
/** StratifiedFitsResponse */
|
|
22300
22753
|
StratifiedFitsResponse: {
|
|
@@ -22302,7 +22755,10 @@ export interface components {
|
|
|
22302
22755
|
count: number;
|
|
22303
22756
|
/** Items */
|
|
22304
22757
|
items: components["schemas"]["StratifiedFitRow"][];
|
|
22305
|
-
/**
|
|
22758
|
+
/**
|
|
22759
|
+
* Workspace Id
|
|
22760
|
+
* Format: uuid
|
|
22761
|
+
*/
|
|
22306
22762
|
workspace_id: string;
|
|
22307
22763
|
};
|
|
22308
22764
|
StrippedNonemptyString: string;
|
|
@@ -22333,7 +22789,10 @@ export interface components {
|
|
|
22333
22789
|
* Format: date-time
|
|
22334
22790
|
*/
|
|
22335
22791
|
updated_at: string;
|
|
22336
|
-
/**
|
|
22792
|
+
/**
|
|
22793
|
+
* Workspace Id
|
|
22794
|
+
* Format: uuid
|
|
22795
|
+
*/
|
|
22337
22796
|
workspace_id: string;
|
|
22338
22797
|
};
|
|
22339
22798
|
/** SubToolLog */
|
|
@@ -22410,7 +22869,10 @@ export interface components {
|
|
|
22410
22869
|
* @enum {string}
|
|
22411
22870
|
*/
|
|
22412
22871
|
event_type: "surface.archived";
|
|
22413
|
-
/**
|
|
22872
|
+
/**
|
|
22873
|
+
* Surface Id
|
|
22874
|
+
* Format: uuid
|
|
22875
|
+
*/
|
|
22414
22876
|
surface_id: string;
|
|
22415
22877
|
};
|
|
22416
22878
|
/** SurfaceCreatedEvent */
|
|
@@ -22420,7 +22882,10 @@ export interface components {
|
|
|
22420
22882
|
* @default null
|
|
22421
22883
|
*/
|
|
22422
22884
|
channel?: string | null;
|
|
22423
|
-
/**
|
|
22885
|
+
/**
|
|
22886
|
+
* Entity Id
|
|
22887
|
+
* Format: uuid
|
|
22888
|
+
*/
|
|
22424
22889
|
entity_id: string;
|
|
22425
22890
|
/**
|
|
22426
22891
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -22447,7 +22912,10 @@ export interface components {
|
|
|
22447
22912
|
* @default null
|
|
22448
22913
|
*/
|
|
22449
22914
|
source?: string | null;
|
|
22450
|
-
/**
|
|
22915
|
+
/**
|
|
22916
|
+
* Surface Id
|
|
22917
|
+
* Format: uuid
|
|
22918
|
+
*/
|
|
22451
22919
|
surface_id: string;
|
|
22452
22920
|
};
|
|
22453
22921
|
/** SurfaceDeliveredEvent */
|
|
@@ -22464,7 +22932,10 @@ export interface components {
|
|
|
22464
22932
|
* @default null
|
|
22465
22933
|
*/
|
|
22466
22934
|
delivery_status?: string | null;
|
|
22467
|
-
/**
|
|
22935
|
+
/**
|
|
22936
|
+
* Entity Id
|
|
22937
|
+
* Format: uuid
|
|
22938
|
+
*/
|
|
22468
22939
|
entity_id: string;
|
|
22469
22940
|
/**
|
|
22470
22941
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -22481,7 +22952,10 @@ export interface components {
|
|
|
22481
22952
|
* @default null
|
|
22482
22953
|
*/
|
|
22483
22954
|
short_url?: string | null;
|
|
22484
|
-
/**
|
|
22955
|
+
/**
|
|
22956
|
+
* Surface Id
|
|
22957
|
+
* Format: uuid
|
|
22958
|
+
*/
|
|
22485
22959
|
surface_id: string;
|
|
22486
22960
|
};
|
|
22487
22961
|
/**
|
|
@@ -22526,7 +23000,10 @@ export interface components {
|
|
|
22526
23000
|
};
|
|
22527
23001
|
/** SurfaceFieldSavedEvent */
|
|
22528
23002
|
SurfaceFieldSavedEvent: {
|
|
22529
|
-
/**
|
|
23003
|
+
/**
|
|
23004
|
+
* Entity Id
|
|
23005
|
+
* Format: uuid
|
|
23006
|
+
*/
|
|
22530
23007
|
entity_id: string;
|
|
22531
23008
|
/**
|
|
22532
23009
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -22535,24 +23012,36 @@ export interface components {
|
|
|
22535
23012
|
event_type: "surface.field_saved";
|
|
22536
23013
|
/** Field Key */
|
|
22537
23014
|
field_key: string;
|
|
22538
|
-
/**
|
|
23015
|
+
/**
|
|
23016
|
+
* Surface Id
|
|
23017
|
+
* Format: uuid
|
|
23018
|
+
*/
|
|
22539
23019
|
surface_id: string;
|
|
22540
23020
|
};
|
|
22541
23021
|
/** SurfaceOpenedEvent */
|
|
22542
23022
|
SurfaceOpenedEvent: {
|
|
22543
|
-
/**
|
|
23023
|
+
/**
|
|
23024
|
+
* Entity Id
|
|
23025
|
+
* Format: uuid
|
|
23026
|
+
*/
|
|
22544
23027
|
entity_id: string;
|
|
22545
23028
|
/**
|
|
22546
23029
|
* @description discriminator enum property added by openapi-typescript
|
|
22547
23030
|
* @enum {string}
|
|
22548
23031
|
*/
|
|
22549
23032
|
event_type: "surface.opened";
|
|
22550
|
-
/**
|
|
23033
|
+
/**
|
|
23034
|
+
* Surface Id
|
|
23035
|
+
* Format: uuid
|
|
23036
|
+
*/
|
|
22551
23037
|
surface_id: string;
|
|
22552
23038
|
};
|
|
22553
23039
|
/** SurfacePendingReviewEvent */
|
|
22554
23040
|
SurfacePendingReviewEvent: {
|
|
22555
|
-
/**
|
|
23041
|
+
/**
|
|
23042
|
+
* Entity Id
|
|
23043
|
+
* Format: uuid
|
|
23044
|
+
*/
|
|
22556
23045
|
entity_id: string;
|
|
22557
23046
|
/**
|
|
22558
23047
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -22574,7 +23063,10 @@ export interface components {
|
|
|
22574
23063
|
* @default null
|
|
22575
23064
|
*/
|
|
22576
23065
|
source?: string | null;
|
|
22577
|
-
/**
|
|
23066
|
+
/**
|
|
23067
|
+
* Surface Id
|
|
23068
|
+
* Format: uuid
|
|
23069
|
+
*/
|
|
22578
23070
|
surface_id: string;
|
|
22579
23071
|
};
|
|
22580
23072
|
/** SurfaceProgressResponse */
|
|
@@ -22589,7 +23081,10 @@ export interface components {
|
|
|
22589
23081
|
filled_keys: string[];
|
|
22590
23082
|
/** Required Empty Keys */
|
|
22591
23083
|
required_empty_keys: string[];
|
|
22592
|
-
/**
|
|
23084
|
+
/**
|
|
23085
|
+
* Surface Id
|
|
23086
|
+
* Format: uuid
|
|
23087
|
+
*/
|
|
22593
23088
|
surface_id: string;
|
|
22594
23089
|
/** Total Fields */
|
|
22595
23090
|
total_fields: number;
|
|
@@ -22601,9 +23096,15 @@ export interface components {
|
|
|
22601
23096
|
* @enum {string}
|
|
22602
23097
|
*/
|
|
22603
23098
|
event_type: "surface.reshaped";
|
|
22604
|
-
/**
|
|
23099
|
+
/**
|
|
23100
|
+
* Original Surface Id
|
|
23101
|
+
* Format: uuid
|
|
23102
|
+
*/
|
|
22605
23103
|
original_surface_id: string;
|
|
22606
|
-
/**
|
|
23104
|
+
/**
|
|
23105
|
+
* Surface Id
|
|
23106
|
+
* Format: uuid
|
|
23107
|
+
*/
|
|
22607
23108
|
surface_id: string;
|
|
22608
23109
|
};
|
|
22609
23110
|
/** SurfaceResponse */
|
|
@@ -22629,7 +23130,10 @@ export interface components {
|
|
|
22629
23130
|
description?: string | null;
|
|
22630
23131
|
/** Entity Id */
|
|
22631
23132
|
entity_id?: string | null;
|
|
22632
|
-
/**
|
|
23133
|
+
/**
|
|
23134
|
+
* Event Id
|
|
23135
|
+
* Format: uuid
|
|
23136
|
+
*/
|
|
22633
23137
|
event_id: string;
|
|
22634
23138
|
/** Expires At */
|
|
22635
23139
|
expires_at?: string | null;
|
|
@@ -22642,7 +23146,10 @@ export interface components {
|
|
|
22642
23146
|
}[];
|
|
22643
23147
|
/** Fields Count */
|
|
22644
23148
|
fields_count: number;
|
|
22645
|
-
/**
|
|
23149
|
+
/**
|
|
23150
|
+
* Id
|
|
23151
|
+
* Format: uuid
|
|
23152
|
+
*/
|
|
22646
23153
|
id: string;
|
|
22647
23154
|
/** Opened At */
|
|
22648
23155
|
opened_at?: string | null;
|
|
@@ -22669,7 +23176,10 @@ export interface components {
|
|
|
22669
23176
|
* @enum {string}
|
|
22670
23177
|
*/
|
|
22671
23178
|
event_type: "surface.review_approved";
|
|
22672
|
-
/**
|
|
23179
|
+
/**
|
|
23180
|
+
* Surface Id
|
|
23181
|
+
* Format: uuid
|
|
23182
|
+
*/
|
|
22673
23183
|
surface_id: string;
|
|
22674
23184
|
};
|
|
22675
23185
|
/** SurfaceReviewRejectedEvent */
|
|
@@ -22684,7 +23194,10 @@ export interface components {
|
|
|
22684
23194
|
* @default null
|
|
22685
23195
|
*/
|
|
22686
23196
|
reason?: string | null;
|
|
22687
|
-
/**
|
|
23197
|
+
/**
|
|
23198
|
+
* Surface Id
|
|
23199
|
+
* Format: uuid
|
|
23200
|
+
*/
|
|
22688
23201
|
surface_id: string;
|
|
22689
23202
|
};
|
|
22690
23203
|
/**
|
|
@@ -22746,7 +23259,10 @@ export interface components {
|
|
|
22746
23259
|
};
|
|
22747
23260
|
/** SurfaceSubmittedEvent */
|
|
22748
23261
|
SurfaceSubmittedEvent: {
|
|
22749
|
-
/**
|
|
23262
|
+
/**
|
|
23263
|
+
* Entity Id
|
|
23264
|
+
* Format: uuid
|
|
23265
|
+
*/
|
|
22750
23266
|
entity_id: string;
|
|
22751
23267
|
/**
|
|
22752
23268
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -22763,7 +23279,10 @@ export interface components {
|
|
|
22763
23279
|
* @default null
|
|
22764
23280
|
*/
|
|
22765
23281
|
submitted_at?: string | null;
|
|
22766
|
-
/**
|
|
23282
|
+
/**
|
|
23283
|
+
* Surface Id
|
|
23284
|
+
* Format: uuid
|
|
23285
|
+
*/
|
|
22767
23286
|
surface_id: string;
|
|
22768
23287
|
};
|
|
22769
23288
|
/** SurfaceUpdatedEvent */
|
|
@@ -22773,7 +23292,10 @@ export interface components {
|
|
|
22773
23292
|
* @enum {string}
|
|
22774
23293
|
*/
|
|
22775
23294
|
event_type: "surface.updated";
|
|
22776
|
-
/**
|
|
23295
|
+
/**
|
|
23296
|
+
* Surface Id
|
|
23297
|
+
* Format: uuid
|
|
23298
|
+
*/
|
|
22777
23299
|
surface_id: string;
|
|
22778
23300
|
};
|
|
22779
23301
|
/**
|
|
@@ -22865,7 +23387,10 @@ export interface components {
|
|
|
22865
23387
|
SyncFailureEntry: {
|
|
22866
23388
|
/** Created At */
|
|
22867
23389
|
created_at: string | null;
|
|
22868
|
-
/**
|
|
23390
|
+
/**
|
|
23391
|
+
* Event Id
|
|
23392
|
+
* Format: uuid
|
|
23393
|
+
*/
|
|
22869
23394
|
event_id: string;
|
|
22870
23395
|
/** Event Type */
|
|
22871
23396
|
event_type: string;
|
|
@@ -22886,7 +23411,10 @@ export interface components {
|
|
|
22886
23411
|
};
|
|
22887
23412
|
/** Entity Id */
|
|
22888
23413
|
entity_id?: string | null;
|
|
22889
|
-
/**
|
|
23414
|
+
/**
|
|
23415
|
+
* Event Id
|
|
23416
|
+
* Format: uuid
|
|
23417
|
+
*/
|
|
22890
23418
|
event_id: string;
|
|
22891
23419
|
/** Event Type */
|
|
22892
23420
|
event_type: string;
|
|
@@ -22936,7 +23464,10 @@ export interface components {
|
|
|
22936
23464
|
};
|
|
22937
23465
|
/** SyncRetryResponse */
|
|
22938
23466
|
SyncRetryResponse: {
|
|
22939
|
-
/**
|
|
23467
|
+
/**
|
|
23468
|
+
* Event Id
|
|
23469
|
+
* Format: uuid
|
|
23470
|
+
*/
|
|
22940
23471
|
event_id: string;
|
|
22941
23472
|
/** Status */
|
|
22942
23473
|
status: string;
|
|
@@ -23010,7 +23541,10 @@ export interface components {
|
|
|
23010
23541
|
* @enum {string}
|
|
23011
23542
|
*/
|
|
23012
23543
|
tier: "direct" | "companion" | "desktop" | "computer_use";
|
|
23013
|
-
/**
|
|
23544
|
+
/**
|
|
23545
|
+
* Workspace Id
|
|
23546
|
+
* Format: uuid
|
|
23547
|
+
*/
|
|
23014
23548
|
workspace_id: string;
|
|
23015
23549
|
};
|
|
23016
23550
|
/** TestCallerNumbersRequest */
|
|
@@ -23172,7 +23706,10 @@ export interface components {
|
|
|
23172
23706
|
* @enum {string}
|
|
23173
23707
|
*/
|
|
23174
23708
|
event_type: "text.started";
|
|
23175
|
-
/**
|
|
23709
|
+
/**
|
|
23710
|
+
* Service Id
|
|
23711
|
+
* Format: uuid
|
|
23712
|
+
*/
|
|
23176
23713
|
service_id: string;
|
|
23177
23714
|
/** Session Id */
|
|
23178
23715
|
session_id: string;
|
|
@@ -23494,6 +24031,7 @@ export interface components {
|
|
|
23494
24031
|
};
|
|
23495
24032
|
/**
|
|
23496
24033
|
* Service Id
|
|
24034
|
+
* Format: uuid
|
|
23497
24035
|
* @description Service ID that owns the HSM
|
|
23498
24036
|
*/
|
|
23499
24037
|
service_id: string;
|
|
@@ -23548,11 +24086,17 @@ export interface components {
|
|
|
23548
24086
|
};
|
|
23549
24087
|
/** ToolResolveResponse */
|
|
23550
24088
|
ToolResolveResponse: {
|
|
23551
|
-
/**
|
|
24089
|
+
/**
|
|
24090
|
+
* Service Id
|
|
24091
|
+
* Format: uuid
|
|
24092
|
+
*/
|
|
23552
24093
|
service_id: string;
|
|
23553
24094
|
/** Tools */
|
|
23554
24095
|
tools: components["schemas"]["ResolvedToolItem"][];
|
|
23555
|
-
/**
|
|
24096
|
+
/**
|
|
24097
|
+
* Workspace Id
|
|
24098
|
+
* Format: uuid
|
|
24099
|
+
*/
|
|
23556
24100
|
workspace_id: string;
|
|
23557
24101
|
};
|
|
23558
24102
|
/**
|
|
@@ -23833,7 +24377,10 @@ export interface components {
|
|
|
23833
24377
|
count: number;
|
|
23834
24378
|
/** Items */
|
|
23835
24379
|
items: components["schemas"]["TrendRow"][];
|
|
23836
|
-
/**
|
|
24380
|
+
/**
|
|
24381
|
+
* Workspace Id
|
|
24382
|
+
* Format: uuid
|
|
24383
|
+
*/
|
|
23837
24384
|
workspace_id: string;
|
|
23838
24385
|
};
|
|
23839
24386
|
/** TrendRow */
|
|
@@ -23852,7 +24399,10 @@ export interface components {
|
|
|
23852
24399
|
gender?: string | null;
|
|
23853
24400
|
/** Incident Patients */
|
|
23854
24401
|
incident_patients: number;
|
|
23855
|
-
/**
|
|
24402
|
+
/**
|
|
24403
|
+
* Workspace Id
|
|
24404
|
+
* Format: uuid
|
|
24405
|
+
*/
|
|
23856
24406
|
workspace_id: string;
|
|
23857
24407
|
/** Year Month */
|
|
23858
24408
|
year_month: string;
|
|
@@ -23866,7 +24416,10 @@ export interface components {
|
|
|
23866
24416
|
event_type: "trigger.completed";
|
|
23867
24417
|
/** Status */
|
|
23868
24418
|
status: string;
|
|
23869
|
-
/**
|
|
24419
|
+
/**
|
|
24420
|
+
* Trigger Id
|
|
24421
|
+
* Format: uuid
|
|
24422
|
+
*/
|
|
23870
24423
|
trigger_id: string;
|
|
23871
24424
|
/** Trigger Name */
|
|
23872
24425
|
trigger_name: string;
|
|
@@ -23880,7 +24433,10 @@ export interface components {
|
|
|
23880
24433
|
event_type: "trigger.failed";
|
|
23881
24434
|
/** Status */
|
|
23882
24435
|
status: string;
|
|
23883
|
-
/**
|
|
24436
|
+
/**
|
|
24437
|
+
* Trigger Id
|
|
24438
|
+
* Format: uuid
|
|
24439
|
+
*/
|
|
23884
24440
|
trigger_id: string;
|
|
23885
24441
|
/** Trigger Name */
|
|
23886
24442
|
trigger_name: string;
|
|
@@ -23916,7 +24472,10 @@ export interface components {
|
|
|
23916
24472
|
* @default false
|
|
23917
24473
|
*/
|
|
23918
24474
|
manual?: boolean;
|
|
23919
|
-
/**
|
|
24475
|
+
/**
|
|
24476
|
+
* Trigger Id
|
|
24477
|
+
* Format: uuid
|
|
24478
|
+
*/
|
|
23920
24479
|
trigger_id: string;
|
|
23921
24480
|
/** Trigger Name */
|
|
23922
24481
|
trigger_name: string;
|
|
@@ -24058,7 +24617,10 @@ export interface components {
|
|
|
24058
24617
|
};
|
|
24059
24618
|
/** TriggerSyncResponse */
|
|
24060
24619
|
TriggerSyncResponse: {
|
|
24061
|
-
/**
|
|
24620
|
+
/**
|
|
24621
|
+
* Data Source Id
|
|
24622
|
+
* Format: uuid
|
|
24623
|
+
*/
|
|
24062
24624
|
data_source_id: string;
|
|
24063
24625
|
/**
|
|
24064
24626
|
* Status
|
|
@@ -24174,7 +24736,10 @@ export interface components {
|
|
|
24174
24736
|
};
|
|
24175
24737
|
/** TurnDoneEvent */
|
|
24176
24738
|
TurnDoneEvent: {
|
|
24177
|
-
/**
|
|
24739
|
+
/**
|
|
24740
|
+
* Conversation Id
|
|
24741
|
+
* Format: uuid
|
|
24742
|
+
*/
|
|
24178
24743
|
conversation_id: string;
|
|
24179
24744
|
/**
|
|
24180
24745
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -24370,7 +24935,10 @@ export interface components {
|
|
|
24370
24935
|
description: string | null;
|
|
24371
24936
|
/** Events Processed */
|
|
24372
24937
|
events_processed: number;
|
|
24373
|
-
/**
|
|
24938
|
+
/**
|
|
24939
|
+
* Id
|
|
24940
|
+
* Format: uuid
|
|
24941
|
+
*/
|
|
24374
24942
|
id: string;
|
|
24375
24943
|
/** Is Active */
|
|
24376
24944
|
is_active: boolean;
|
|
@@ -24393,7 +24961,10 @@ export interface components {
|
|
|
24393
24961
|
* Format: date-time
|
|
24394
24962
|
*/
|
|
24395
24963
|
updated_at: string;
|
|
24396
|
-
/**
|
|
24964
|
+
/**
|
|
24965
|
+
* Workspace Id
|
|
24966
|
+
* Format: uuid
|
|
24967
|
+
*/
|
|
24397
24968
|
workspace_id: string;
|
|
24398
24969
|
};
|
|
24399
24970
|
/** UpdateAgentRequest */
|
|
@@ -24866,6 +25437,7 @@ export interface components {
|
|
|
24866
25437
|
total_events: number;
|
|
24867
25438
|
/**
|
|
24868
25439
|
* Workspace Id
|
|
25440
|
+
* Format: uuid
|
|
24869
25441
|
* @description Workspace identifier
|
|
24870
25442
|
*/
|
|
24871
25443
|
workspace_id: string;
|
|
@@ -25167,7 +25739,10 @@ export interface components {
|
|
|
25167
25739
|
count: number;
|
|
25168
25740
|
/** Items */
|
|
25169
25741
|
items: components["schemas"]["VoiceJudgeResultRow"][];
|
|
25170
|
-
/**
|
|
25742
|
+
/**
|
|
25743
|
+
* Service Id
|
|
25744
|
+
* Format: uuid
|
|
25745
|
+
*/
|
|
25171
25746
|
service_id: string;
|
|
25172
25747
|
};
|
|
25173
25748
|
/**
|
|
@@ -25366,14 +25941,20 @@ export interface components {
|
|
|
25366
25941
|
updated_at: string;
|
|
25367
25942
|
/** Use Case Id */
|
|
25368
25943
|
use_case_id: string;
|
|
25369
|
-
/**
|
|
25944
|
+
/**
|
|
25945
|
+
* Voicemail Id
|
|
25946
|
+
* Format: uuid
|
|
25947
|
+
*/
|
|
25370
25948
|
voicemail_id: string;
|
|
25371
25949
|
};
|
|
25372
25950
|
/** VoicemailSentResponse */
|
|
25373
25951
|
VoicemailSentResponse: {
|
|
25374
25952
|
/** Sender Phone Number */
|
|
25375
25953
|
sender_phone_number: string;
|
|
25376
|
-
/**
|
|
25954
|
+
/**
|
|
25955
|
+
* Voicemail Id
|
|
25956
|
+
* Format: uuid
|
|
25957
|
+
*/
|
|
25377
25958
|
voicemail_id: string;
|
|
25378
25959
|
};
|
|
25379
25960
|
/** VoiceprintEnrollResponse */
|
|
@@ -25388,7 +25969,10 @@ export interface components {
|
|
|
25388
25969
|
* @default true
|
|
25389
25970
|
*/
|
|
25390
25971
|
enrolled?: boolean;
|
|
25391
|
-
/**
|
|
25972
|
+
/**
|
|
25973
|
+
* Entity Id
|
|
25974
|
+
* Format: uuid
|
|
25975
|
+
*/
|
|
25392
25976
|
entity_id: string;
|
|
25393
25977
|
/** Model Id */
|
|
25394
25978
|
model_id: string;
|
|
@@ -25404,7 +25988,10 @@ export interface components {
|
|
|
25404
25988
|
};
|
|
25405
25989
|
/** VoiceprintVerifyResponse */
|
|
25406
25990
|
VoiceprintVerifyResponse: {
|
|
25407
|
-
/**
|
|
25991
|
+
/**
|
|
25992
|
+
* Entity Id
|
|
25993
|
+
* Format: uuid
|
|
25994
|
+
*/
|
|
25408
25995
|
entity_id: string;
|
|
25409
25996
|
/** Similarity */
|
|
25410
25997
|
similarity: number;
|
|
@@ -25799,7 +26386,10 @@ export interface components {
|
|
|
25799
26386
|
};
|
|
25800
26387
|
/** WorkspaceInvitationAcceptedEvent */
|
|
25801
26388
|
WorkspaceInvitationAcceptedEvent: {
|
|
25802
|
-
/**
|
|
26389
|
+
/**
|
|
26390
|
+
* Entity Id
|
|
26391
|
+
* Format: uuid
|
|
26392
|
+
*/
|
|
25803
26393
|
entity_id: string;
|
|
25804
26394
|
/**
|
|
25805
26395
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -25828,7 +26418,10 @@ export interface components {
|
|
|
25828
26418
|
};
|
|
25829
26419
|
/** WorkspaceMemberAddedEvent */
|
|
25830
26420
|
WorkspaceMemberAddedEvent: {
|
|
25831
|
-
/**
|
|
26421
|
+
/**
|
|
26422
|
+
* Entity Id
|
|
26423
|
+
* Format: uuid
|
|
26424
|
+
*/
|
|
25832
26425
|
entity_id: string;
|
|
25833
26426
|
/**
|
|
25834
26427
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -25840,7 +26433,10 @@ export interface components {
|
|
|
25840
26433
|
};
|
|
25841
26434
|
/** WorkspaceMemberRoleUpdatedEvent */
|
|
25842
26435
|
WorkspaceMemberRoleUpdatedEvent: {
|
|
25843
|
-
/**
|
|
26436
|
+
/**
|
|
26437
|
+
* Entity Id
|
|
26438
|
+
* Format: uuid
|
|
26439
|
+
*/
|
|
25844
26440
|
entity_id: string;
|
|
25845
26441
|
/**
|
|
25846
26442
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -25865,7 +26461,10 @@ export interface components {
|
|
|
25865
26461
|
created_at: string;
|
|
25866
26462
|
/** Environment */
|
|
25867
26463
|
environment: string;
|
|
25868
|
-
/**
|
|
26464
|
+
/**
|
|
26465
|
+
* Id
|
|
26466
|
+
* Format: uuid
|
|
26467
|
+
*/
|
|
25869
26468
|
id: string;
|
|
25870
26469
|
/** Name */
|
|
25871
26470
|
name: string;
|
|
@@ -25980,6 +26579,7 @@ export interface components {
|
|
|
25980
26579
|
actor_entity_id?: string | null;
|
|
25981
26580
|
/**
|
|
25982
26581
|
* Id
|
|
26582
|
+
* Format: uuid
|
|
25983
26583
|
* @description Unique audit event identifier
|
|
25984
26584
|
*/
|
|
25985
26585
|
id: string;
|
|
@@ -26033,6 +26633,7 @@ export interface components {
|
|
|
26033
26633
|
user_agent?: string | null;
|
|
26034
26634
|
/**
|
|
26035
26635
|
* Workspace Id
|
|
26636
|
+
* Format: uuid
|
|
26036
26637
|
* @description Workspace that owns this audit event
|
|
26037
26638
|
*/
|
|
26038
26639
|
workspace_id: string;
|
|
@@ -28064,8 +28665,8 @@ export interface operations {
|
|
|
28064
28665
|
query?: never;
|
|
28065
28666
|
header?: never;
|
|
28066
28667
|
path: {
|
|
28067
|
-
agent_id: string;
|
|
28068
28668
|
workspace_id: string;
|
|
28669
|
+
agent_id: string;
|
|
28069
28670
|
};
|
|
28070
28671
|
cookie?: never;
|
|
28071
28672
|
};
|
|
@@ -28117,8 +28718,8 @@ export interface operations {
|
|
|
28117
28718
|
query?: never;
|
|
28118
28719
|
header?: never;
|
|
28119
28720
|
path: {
|
|
28120
|
-
agent_id: string;
|
|
28121
28721
|
workspace_id: string;
|
|
28722
|
+
agent_id: string;
|
|
28122
28723
|
};
|
|
28123
28724
|
cookie?: never;
|
|
28124
28725
|
};
|
|
@@ -28179,8 +28780,8 @@ export interface operations {
|
|
|
28179
28780
|
query?: never;
|
|
28180
28781
|
header?: never;
|
|
28181
28782
|
path: {
|
|
28182
|
-
agent_id: string;
|
|
28183
28783
|
workspace_id: string;
|
|
28784
|
+
agent_id: string;
|
|
28184
28785
|
};
|
|
28185
28786
|
cookie?: never;
|
|
28186
28787
|
};
|
|
@@ -28234,8 +28835,8 @@ export interface operations {
|
|
|
28234
28835
|
};
|
|
28235
28836
|
header?: never;
|
|
28236
28837
|
path: {
|
|
28237
|
-
agent_id: string;
|
|
28238
28838
|
workspace_id: string;
|
|
28839
|
+
agent_id: string;
|
|
28239
28840
|
};
|
|
28240
28841
|
cookie?: never;
|
|
28241
28842
|
};
|
|
@@ -28287,8 +28888,8 @@ export interface operations {
|
|
|
28287
28888
|
query?: never;
|
|
28288
28889
|
header?: never;
|
|
28289
28890
|
path: {
|
|
28290
|
-
agent_id: string;
|
|
28291
28891
|
workspace_id: string;
|
|
28892
|
+
agent_id: string;
|
|
28292
28893
|
};
|
|
28293
28894
|
cookie?: never;
|
|
28294
28895
|
};
|
|
@@ -28349,9 +28950,9 @@ export interface operations {
|
|
|
28349
28950
|
query?: never;
|
|
28350
28951
|
header?: never;
|
|
28351
28952
|
path: {
|
|
28953
|
+
workspace_id: string;
|
|
28352
28954
|
agent_id: string;
|
|
28353
28955
|
version: number | string;
|
|
28354
|
-
workspace_id: string;
|
|
28355
28956
|
};
|
|
28356
28957
|
cookie?: never;
|
|
28357
28958
|
};
|
|
@@ -29005,8 +29606,8 @@ export interface operations {
|
|
|
29005
29606
|
};
|
|
29006
29607
|
header?: never;
|
|
29007
29608
|
path: {
|
|
29008
|
-
entity_id: string;
|
|
29009
29609
|
workspace_id: string;
|
|
29610
|
+
entity_id: string;
|
|
29010
29611
|
};
|
|
29011
29612
|
cookie?: never;
|
|
29012
29613
|
};
|
|
@@ -29265,8 +29866,8 @@ export interface operations {
|
|
|
29265
29866
|
query?: never;
|
|
29266
29867
|
header?: never;
|
|
29267
29868
|
path: {
|
|
29268
|
-
key_id: string;
|
|
29269
29869
|
workspace_id: string;
|
|
29870
|
+
key_id: string;
|
|
29270
29871
|
};
|
|
29271
29872
|
cookie?: never;
|
|
29272
29873
|
};
|
|
@@ -29316,8 +29917,8 @@ export interface operations {
|
|
|
29316
29917
|
query?: never;
|
|
29317
29918
|
header?: never;
|
|
29318
29919
|
path: {
|
|
29319
|
-
key_id: string;
|
|
29320
29920
|
workspace_id: string;
|
|
29921
|
+
key_id: string;
|
|
29321
29922
|
};
|
|
29322
29923
|
cookie?: never;
|
|
29323
29924
|
};
|
|
@@ -29441,8 +30042,8 @@ export interface operations {
|
|
|
29441
30042
|
};
|
|
29442
30043
|
header?: never;
|
|
29443
30044
|
path: {
|
|
29444
|
-
entity_id: string;
|
|
29445
30045
|
workspace_id: string;
|
|
30046
|
+
entity_id: string;
|
|
29446
30047
|
};
|
|
29447
30048
|
cookie?: never;
|
|
29448
30049
|
};
|
|
@@ -29725,8 +30326,8 @@ export interface operations {
|
|
|
29725
30326
|
query?: never;
|
|
29726
30327
|
header?: never;
|
|
29727
30328
|
path: {
|
|
29728
|
-
invoice_id: string;
|
|
29729
30329
|
workspace_id: string;
|
|
30330
|
+
invoice_id: string;
|
|
29730
30331
|
};
|
|
29731
30332
|
cookie?: never;
|
|
29732
30333
|
};
|
|
@@ -29759,8 +30360,8 @@ export interface operations {
|
|
|
29759
30360
|
query?: never;
|
|
29760
30361
|
header?: never;
|
|
29761
30362
|
path: {
|
|
29762
|
-
invoice_id: string;
|
|
29763
30363
|
workspace_id: string;
|
|
30364
|
+
invoice_id: string;
|
|
29764
30365
|
};
|
|
29765
30366
|
cookie?: never;
|
|
29766
30367
|
};
|
|
@@ -30185,8 +30786,8 @@ export interface operations {
|
|
|
30185
30786
|
query?: never;
|
|
30186
30787
|
header?: never;
|
|
30187
30788
|
path: {
|
|
30188
|
-
call_id: string;
|
|
30189
30789
|
workspace_id: string;
|
|
30790
|
+
call_id: string;
|
|
30190
30791
|
};
|
|
30191
30792
|
cookie?: never;
|
|
30192
30793
|
};
|
|
@@ -30224,8 +30825,8 @@ export interface operations {
|
|
|
30224
30825
|
query?: never;
|
|
30225
30826
|
header?: never;
|
|
30226
30827
|
path: {
|
|
30227
|
-
call_id: string;
|
|
30228
30828
|
workspace_id: string;
|
|
30829
|
+
call_id: string;
|
|
30229
30830
|
};
|
|
30230
30831
|
cookie?: never;
|
|
30231
30832
|
};
|
|
@@ -30266,8 +30867,8 @@ export interface operations {
|
|
|
30266
30867
|
};
|
|
30267
30868
|
header?: never;
|
|
30268
30869
|
path: {
|
|
30269
|
-
call_id: string;
|
|
30270
30870
|
workspace_id: string;
|
|
30871
|
+
call_id: string;
|
|
30271
30872
|
};
|
|
30272
30873
|
cookie?: never;
|
|
30273
30874
|
};
|
|
@@ -30298,8 +30899,8 @@ export interface operations {
|
|
|
30298
30899
|
query?: never;
|
|
30299
30900
|
header?: never;
|
|
30300
30901
|
path: {
|
|
30301
|
-
call_id: string;
|
|
30302
30902
|
workspace_id: string;
|
|
30903
|
+
call_id: string;
|
|
30303
30904
|
};
|
|
30304
30905
|
cookie?: never;
|
|
30305
30906
|
};
|
|
@@ -30337,8 +30938,8 @@ export interface operations {
|
|
|
30337
30938
|
query?: never;
|
|
30338
30939
|
header?: never;
|
|
30339
30940
|
path: {
|
|
30340
|
-
call_id: string;
|
|
30341
30941
|
workspace_id: string;
|
|
30942
|
+
call_id: string;
|
|
30342
30943
|
};
|
|
30343
30944
|
cookie?: never;
|
|
30344
30945
|
};
|
|
@@ -30668,8 +31269,8 @@ export interface operations {
|
|
|
30668
31269
|
query?: never;
|
|
30669
31270
|
header?: never;
|
|
30670
31271
|
path: {
|
|
30671
|
-
context_graph_id: string;
|
|
30672
31272
|
workspace_id: string;
|
|
31273
|
+
context_graph_id: string;
|
|
30673
31274
|
};
|
|
30674
31275
|
cookie?: never;
|
|
30675
31276
|
};
|
|
@@ -30721,8 +31322,8 @@ export interface operations {
|
|
|
30721
31322
|
query?: never;
|
|
30722
31323
|
header?: never;
|
|
30723
31324
|
path: {
|
|
30724
|
-
context_graph_id: string;
|
|
30725
31325
|
workspace_id: string;
|
|
31326
|
+
context_graph_id: string;
|
|
30726
31327
|
};
|
|
30727
31328
|
cookie?: never;
|
|
30728
31329
|
};
|
|
@@ -30783,8 +31384,8 @@ export interface operations {
|
|
|
30783
31384
|
query?: never;
|
|
30784
31385
|
header?: never;
|
|
30785
31386
|
path: {
|
|
30786
|
-
context_graph_id: string;
|
|
30787
31387
|
workspace_id: string;
|
|
31388
|
+
context_graph_id: string;
|
|
30788
31389
|
};
|
|
30789
31390
|
cookie?: never;
|
|
30790
31391
|
};
|
|
@@ -30838,8 +31439,8 @@ export interface operations {
|
|
|
30838
31439
|
};
|
|
30839
31440
|
header?: never;
|
|
30840
31441
|
path: {
|
|
30841
|
-
context_graph_id: string;
|
|
30842
31442
|
workspace_id: string;
|
|
31443
|
+
context_graph_id: string;
|
|
30843
31444
|
};
|
|
30844
31445
|
cookie?: never;
|
|
30845
31446
|
};
|
|
@@ -30891,8 +31492,8 @@ export interface operations {
|
|
|
30891
31492
|
query?: never;
|
|
30892
31493
|
header?: never;
|
|
30893
31494
|
path: {
|
|
30894
|
-
context_graph_id: string;
|
|
30895
31495
|
workspace_id: string;
|
|
31496
|
+
context_graph_id: string;
|
|
30896
31497
|
};
|
|
30897
31498
|
cookie?: never;
|
|
30898
31499
|
};
|
|
@@ -30953,9 +31554,9 @@ export interface operations {
|
|
|
30953
31554
|
query?: never;
|
|
30954
31555
|
header?: never;
|
|
30955
31556
|
path: {
|
|
31557
|
+
workspace_id: string;
|
|
30956
31558
|
context_graph_id: string;
|
|
30957
31559
|
version: number | string;
|
|
30958
|
-
workspace_id: string;
|
|
30959
31560
|
};
|
|
30960
31561
|
cookie?: never;
|
|
30961
31562
|
};
|
|
@@ -31080,8 +31681,8 @@ export interface operations {
|
|
|
31080
31681
|
query?: never;
|
|
31081
31682
|
header?: never;
|
|
31082
31683
|
path: {
|
|
31083
|
-
conversation_id: string;
|
|
31084
31684
|
workspace_id: string;
|
|
31685
|
+
conversation_id: string;
|
|
31085
31686
|
};
|
|
31086
31687
|
cookie?: never;
|
|
31087
31688
|
};
|
|
@@ -31112,8 +31713,8 @@ export interface operations {
|
|
|
31112
31713
|
query?: never;
|
|
31113
31714
|
header?: never;
|
|
31114
31715
|
path: {
|
|
31115
|
-
conversation_id: string;
|
|
31116
31716
|
workspace_id: string;
|
|
31717
|
+
conversation_id: string;
|
|
31117
31718
|
};
|
|
31118
31719
|
cookie?: never;
|
|
31119
31720
|
};
|
|
@@ -31145,8 +31746,8 @@ export interface operations {
|
|
|
31145
31746
|
};
|
|
31146
31747
|
header?: never;
|
|
31147
31748
|
path: {
|
|
31148
|
-
conversation_id: string;
|
|
31149
31749
|
workspace_id: string;
|
|
31750
|
+
conversation_id: string;
|
|
31150
31751
|
};
|
|
31151
31752
|
cookie?: never;
|
|
31152
31753
|
};
|
|
@@ -31218,8 +31819,8 @@ export interface operations {
|
|
|
31218
31819
|
query?: never;
|
|
31219
31820
|
header?: never;
|
|
31220
31821
|
path: {
|
|
31221
|
-
company_id: string;
|
|
31222
31822
|
workspace_id: string;
|
|
31823
|
+
company_id: string;
|
|
31223
31824
|
};
|
|
31224
31825
|
cookie?: never;
|
|
31225
31826
|
};
|
|
@@ -31295,8 +31896,8 @@ export interface operations {
|
|
|
31295
31896
|
query?: never;
|
|
31296
31897
|
header?: never;
|
|
31297
31898
|
path: {
|
|
31298
|
-
contact_id: string;
|
|
31299
31899
|
workspace_id: string;
|
|
31900
|
+
contact_id: string;
|
|
31300
31901
|
};
|
|
31301
31902
|
cookie?: never;
|
|
31302
31903
|
};
|
|
@@ -31335,8 +31936,8 @@ export interface operations {
|
|
|
31335
31936
|
};
|
|
31336
31937
|
header?: never;
|
|
31337
31938
|
path: {
|
|
31338
|
-
contact_id: string;
|
|
31339
31939
|
workspace_id: string;
|
|
31940
|
+
contact_id: string;
|
|
31340
31941
|
};
|
|
31341
31942
|
cookie?: never;
|
|
31342
31943
|
};
|
|
@@ -31432,8 +32033,8 @@ export interface operations {
|
|
|
31432
32033
|
query?: never;
|
|
31433
32034
|
header?: never;
|
|
31434
32035
|
path: {
|
|
31435
|
-
deal_id: string;
|
|
31436
32036
|
workspace_id: string;
|
|
32037
|
+
deal_id: string;
|
|
31437
32038
|
};
|
|
31438
32039
|
cookie?: never;
|
|
31439
32040
|
};
|
|
@@ -31561,8 +32162,8 @@ export interface operations {
|
|
|
31561
32162
|
query?: never;
|
|
31562
32163
|
header?: never;
|
|
31563
32164
|
path: {
|
|
31564
|
-
slug: string;
|
|
31565
32165
|
workspace_id: string;
|
|
32166
|
+
slug: string;
|
|
31566
32167
|
};
|
|
31567
32168
|
cookie?: never;
|
|
31568
32169
|
};
|
|
@@ -31593,8 +32194,8 @@ export interface operations {
|
|
|
31593
32194
|
query?: never;
|
|
31594
32195
|
header?: never;
|
|
31595
32196
|
path: {
|
|
31596
|
-
dashboard_id: string;
|
|
31597
32197
|
workspace_id: string;
|
|
32198
|
+
dashboard_id: string;
|
|
31598
32199
|
};
|
|
31599
32200
|
cookie?: never;
|
|
31600
32201
|
};
|
|
@@ -31625,8 +32226,8 @@ export interface operations {
|
|
|
31625
32226
|
query?: never;
|
|
31626
32227
|
header?: never;
|
|
31627
32228
|
path: {
|
|
31628
|
-
dashboard_id: string;
|
|
31629
32229
|
workspace_id: string;
|
|
32230
|
+
dashboard_id: string;
|
|
31630
32231
|
};
|
|
31631
32232
|
cookie?: never;
|
|
31632
32233
|
};
|
|
@@ -31661,8 +32262,8 @@ export interface operations {
|
|
|
31661
32262
|
query?: never;
|
|
31662
32263
|
header?: never;
|
|
31663
32264
|
path: {
|
|
31664
|
-
dashboard_id: string;
|
|
31665
32265
|
workspace_id: string;
|
|
32266
|
+
dashboard_id: string;
|
|
31666
32267
|
};
|
|
31667
32268
|
cookie?: never;
|
|
31668
32269
|
};
|
|
@@ -31691,8 +32292,8 @@ export interface operations {
|
|
|
31691
32292
|
query?: never;
|
|
31692
32293
|
header?: never;
|
|
31693
32294
|
path: {
|
|
31694
|
-
dashboard_id: string;
|
|
31695
32295
|
workspace_id: string;
|
|
32296
|
+
dashboard_id: string;
|
|
31696
32297
|
};
|
|
31697
32298
|
cookie?: never;
|
|
31698
32299
|
};
|
|
@@ -31822,8 +32423,8 @@ export interface operations {
|
|
|
31822
32423
|
query?: never;
|
|
31823
32424
|
header?: never;
|
|
31824
32425
|
path: {
|
|
31825
|
-
data_source_id: string;
|
|
31826
32426
|
workspace_id: string;
|
|
32427
|
+
data_source_id: string;
|
|
31827
32428
|
};
|
|
31828
32429
|
cookie?: never;
|
|
31829
32430
|
};
|
|
@@ -31868,8 +32469,8 @@ export interface operations {
|
|
|
31868
32469
|
query?: never;
|
|
31869
32470
|
header?: never;
|
|
31870
32471
|
path: {
|
|
31871
|
-
data_source_id: string;
|
|
31872
32472
|
workspace_id: string;
|
|
32473
|
+
data_source_id: string;
|
|
31873
32474
|
};
|
|
31874
32475
|
cookie?: never;
|
|
31875
32476
|
};
|
|
@@ -31912,8 +32513,8 @@ export interface operations {
|
|
|
31912
32513
|
query?: never;
|
|
31913
32514
|
header?: never;
|
|
31914
32515
|
path: {
|
|
31915
|
-
data_source_id: string;
|
|
31916
32516
|
workspace_id: string;
|
|
32517
|
+
data_source_id: string;
|
|
31917
32518
|
};
|
|
31918
32519
|
cookie?: never;
|
|
31919
32520
|
};
|
|
@@ -31962,8 +32563,8 @@ export interface operations {
|
|
|
31962
32563
|
query?: never;
|
|
31963
32564
|
header?: never;
|
|
31964
32565
|
path: {
|
|
31965
|
-
data_source_id: string;
|
|
31966
32566
|
workspace_id: string;
|
|
32567
|
+
data_source_id: string;
|
|
31967
32568
|
};
|
|
31968
32569
|
cookie?: never;
|
|
31969
32570
|
};
|
|
@@ -32008,8 +32609,8 @@ export interface operations {
|
|
|
32008
32609
|
query?: never;
|
|
32009
32610
|
header?: never;
|
|
32010
32611
|
path: {
|
|
32011
|
-
data_source_id: string;
|
|
32012
32612
|
workspace_id: string;
|
|
32613
|
+
data_source_id: string;
|
|
32013
32614
|
};
|
|
32014
32615
|
cookie?: never;
|
|
32015
32616
|
};
|
|
@@ -32086,8 +32687,8 @@ export interface operations {
|
|
|
32086
32687
|
};
|
|
32087
32688
|
header?: never;
|
|
32088
32689
|
path: {
|
|
32089
|
-
data_source_id: string;
|
|
32090
32690
|
workspace_id: string;
|
|
32691
|
+
data_source_id: string;
|
|
32091
32692
|
};
|
|
32092
32693
|
cookie?: never;
|
|
32093
32694
|
};
|
|
@@ -32259,8 +32860,8 @@ export interface operations {
|
|
|
32259
32860
|
query?: never;
|
|
32260
32861
|
header?: never;
|
|
32261
32862
|
path: {
|
|
32262
|
-
session_id: string;
|
|
32263
32863
|
workspace_id: string;
|
|
32864
|
+
session_id: string;
|
|
32264
32865
|
};
|
|
32265
32866
|
cookie?: never;
|
|
32266
32867
|
};
|
|
@@ -32291,8 +32892,8 @@ export interface operations {
|
|
|
32291
32892
|
query?: never;
|
|
32292
32893
|
header?: never;
|
|
32293
32894
|
path: {
|
|
32294
|
-
session_id: string;
|
|
32295
32895
|
workspace_id: string;
|
|
32896
|
+
session_id: string;
|
|
32296
32897
|
};
|
|
32297
32898
|
cookie?: never;
|
|
32298
32899
|
};
|
|
@@ -32327,8 +32928,8 @@ export interface operations {
|
|
|
32327
32928
|
query?: never;
|
|
32328
32929
|
header?: never;
|
|
32329
32930
|
path: {
|
|
32330
|
-
session_id: string;
|
|
32331
32931
|
workspace_id: string;
|
|
32932
|
+
session_id: string;
|
|
32332
32933
|
};
|
|
32333
32934
|
cookie?: never;
|
|
32334
32935
|
};
|
|
@@ -32359,8 +32960,8 @@ export interface operations {
|
|
|
32359
32960
|
query?: never;
|
|
32360
32961
|
header?: never;
|
|
32361
32962
|
path: {
|
|
32362
|
-
session_id: string;
|
|
32363
32963
|
workspace_id: string;
|
|
32964
|
+
session_id: string;
|
|
32364
32965
|
};
|
|
32365
32966
|
cookie?: never;
|
|
32366
32967
|
};
|
|
@@ -32391,9 +32992,9 @@ export interface operations {
|
|
|
32391
32992
|
query?: never;
|
|
32392
32993
|
header?: never;
|
|
32393
32994
|
path: {
|
|
32995
|
+
workspace_id: string;
|
|
32394
32996
|
/** @description Target entity UUID */
|
|
32395
32997
|
entity_id: string;
|
|
32396
|
-
workspace_id: string;
|
|
32397
32998
|
};
|
|
32398
32999
|
cookie?: never;
|
|
32399
33000
|
};
|
|
@@ -32424,9 +33025,9 @@ export interface operations {
|
|
|
32424
33025
|
query?: never;
|
|
32425
33026
|
header?: never;
|
|
32426
33027
|
path: {
|
|
33028
|
+
workspace_id: string;
|
|
32427
33029
|
/** @description Target entity UUID */
|
|
32428
33030
|
entity_id: string;
|
|
32429
|
-
workspace_id: string;
|
|
32430
33031
|
};
|
|
32431
33032
|
cookie?: never;
|
|
32432
33033
|
};
|
|
@@ -32569,8 +33170,8 @@ export interface operations {
|
|
|
32569
33170
|
query?: never;
|
|
32570
33171
|
header?: never;
|
|
32571
33172
|
path: {
|
|
32572
|
-
patient_entity_id: string;
|
|
32573
33173
|
workspace_id: string;
|
|
33174
|
+
patient_entity_id: string;
|
|
32574
33175
|
};
|
|
32575
33176
|
cookie?: never;
|
|
32576
33177
|
};
|
|
@@ -32793,8 +33394,8 @@ export interface operations {
|
|
|
32793
33394
|
query?: never;
|
|
32794
33395
|
header?: never;
|
|
32795
33396
|
path: {
|
|
32796
|
-
patient_id: string;
|
|
32797
33397
|
workspace_id: string;
|
|
33398
|
+
patient_id: string;
|
|
32798
33399
|
};
|
|
32799
33400
|
cookie?: never;
|
|
32800
33401
|
};
|
|
@@ -32829,8 +33430,8 @@ export interface operations {
|
|
|
32829
33430
|
};
|
|
32830
33431
|
header?: never;
|
|
32831
33432
|
path: {
|
|
32832
|
-
patient_id: string;
|
|
32833
33433
|
workspace_id: string;
|
|
33434
|
+
patient_id: string;
|
|
32834
33435
|
};
|
|
32835
33436
|
cookie?: never;
|
|
32836
33437
|
};
|
|
@@ -32872,8 +33473,8 @@ export interface operations {
|
|
|
32872
33473
|
};
|
|
32873
33474
|
header?: never;
|
|
32874
33475
|
path: {
|
|
32875
|
-
resource_type: string;
|
|
32876
33476
|
workspace_id: string;
|
|
33477
|
+
resource_type: string;
|
|
32877
33478
|
};
|
|
32878
33479
|
cookie?: never;
|
|
32879
33480
|
};
|
|
@@ -32911,8 +33512,8 @@ export interface operations {
|
|
|
32911
33512
|
query?: never;
|
|
32912
33513
|
header?: never;
|
|
32913
33514
|
path: {
|
|
32914
|
-
resource_type: string;
|
|
32915
33515
|
workspace_id: string;
|
|
33516
|
+
resource_type: string;
|
|
32916
33517
|
};
|
|
32917
33518
|
cookie?: never;
|
|
32918
33519
|
};
|
|
@@ -32954,9 +33555,9 @@ export interface operations {
|
|
|
32954
33555
|
query?: never;
|
|
32955
33556
|
header?: never;
|
|
32956
33557
|
path: {
|
|
33558
|
+
workspace_id: string;
|
|
32957
33559
|
resource_type: string;
|
|
32958
33560
|
resource_id: string;
|
|
32959
|
-
workspace_id: string;
|
|
32960
33561
|
};
|
|
32961
33562
|
cookie?: never;
|
|
32962
33563
|
};
|
|
@@ -33001,9 +33602,9 @@ export interface operations {
|
|
|
33001
33602
|
query?: never;
|
|
33002
33603
|
header?: never;
|
|
33003
33604
|
path: {
|
|
33605
|
+
workspace_id: string;
|
|
33004
33606
|
resource_type: string;
|
|
33005
33607
|
resource_id: string;
|
|
33006
|
-
workspace_id: string;
|
|
33007
33608
|
};
|
|
33008
33609
|
cookie?: never;
|
|
33009
33610
|
};
|
|
@@ -33055,9 +33656,9 @@ export interface operations {
|
|
|
33055
33656
|
};
|
|
33056
33657
|
header?: never;
|
|
33057
33658
|
path: {
|
|
33659
|
+
workspace_id: string;
|
|
33058
33660
|
resource_type: string;
|
|
33059
33661
|
resource_id: string;
|
|
33060
|
-
workspace_id: string;
|
|
33061
33662
|
};
|
|
33062
33663
|
cookie?: never;
|
|
33063
33664
|
};
|
|
@@ -33619,8 +34220,8 @@ export interface operations {
|
|
|
33619
34220
|
query?: never;
|
|
33620
34221
|
header?: never;
|
|
33621
34222
|
path: {
|
|
33622
|
-
function_name: string;
|
|
33623
34223
|
workspace_id: string;
|
|
34224
|
+
function_name: string;
|
|
33624
34225
|
};
|
|
33625
34226
|
cookie?: never;
|
|
33626
34227
|
};
|
|
@@ -33667,8 +34268,8 @@ export interface operations {
|
|
|
33667
34268
|
query?: never;
|
|
33668
34269
|
header?: never;
|
|
33669
34270
|
path: {
|
|
33670
|
-
function_name: string;
|
|
33671
34271
|
workspace_id: string;
|
|
34272
|
+
function_name: string;
|
|
33672
34273
|
};
|
|
33673
34274
|
cookie?: never;
|
|
33674
34275
|
};
|
|
@@ -33824,9 +34425,9 @@ export interface operations {
|
|
|
33824
34425
|
query?: never;
|
|
33825
34426
|
header?: never;
|
|
33826
34427
|
path: {
|
|
34428
|
+
workspace_id: string;
|
|
33827
34429
|
/** @description Session ID */
|
|
33828
34430
|
session_id: string;
|
|
33829
|
-
workspace_id: string;
|
|
33830
34431
|
};
|
|
33831
34432
|
cookie?: never;
|
|
33832
34433
|
};
|
|
@@ -33859,9 +34460,9 @@ export interface operations {
|
|
|
33859
34460
|
query?: never;
|
|
33860
34461
|
header?: never;
|
|
33861
34462
|
path: {
|
|
34463
|
+
workspace_id: string;
|
|
33862
34464
|
/** @description Session ID */
|
|
33863
34465
|
session_id: string;
|
|
33864
|
-
workspace_id: string;
|
|
33865
34466
|
};
|
|
33866
34467
|
cookie?: never;
|
|
33867
34468
|
};
|
|
@@ -34059,8 +34660,8 @@ export interface operations {
|
|
|
34059
34660
|
query?: never;
|
|
34060
34661
|
header?: never;
|
|
34061
34662
|
path: {
|
|
34062
|
-
link_id: string;
|
|
34063
34663
|
workspace_id: string;
|
|
34664
|
+
link_id: string;
|
|
34064
34665
|
};
|
|
34065
34666
|
cookie?: never;
|
|
34066
34667
|
};
|
|
@@ -34089,8 +34690,8 @@ export interface operations {
|
|
|
34089
34690
|
query?: never;
|
|
34090
34691
|
header?: never;
|
|
34091
34692
|
path: {
|
|
34092
|
-
link_id: string;
|
|
34093
34693
|
workspace_id: string;
|
|
34694
|
+
link_id: string;
|
|
34094
34695
|
};
|
|
34095
34696
|
cookie?: never;
|
|
34096
34697
|
};
|
|
@@ -34121,9 +34722,9 @@ export interface operations {
|
|
|
34121
34722
|
query?: never;
|
|
34122
34723
|
header?: never;
|
|
34123
34724
|
path: {
|
|
34725
|
+
workspace_id: string;
|
|
34124
34726
|
link_id: string;
|
|
34125
34727
|
upload_id: string;
|
|
34126
|
-
workspace_id: string;
|
|
34127
34728
|
};
|
|
34128
34729
|
cookie?: never;
|
|
34129
34730
|
};
|
|
@@ -34305,8 +34906,8 @@ export interface operations {
|
|
|
34305
34906
|
query?: never;
|
|
34306
34907
|
header?: never;
|
|
34307
34908
|
path: {
|
|
34308
|
-
integration_id: string;
|
|
34309
34909
|
workspace_id: string;
|
|
34910
|
+
integration_id: string;
|
|
34310
34911
|
};
|
|
34311
34912
|
cookie?: never;
|
|
34312
34913
|
};
|
|
@@ -34358,8 +34959,8 @@ export interface operations {
|
|
|
34358
34959
|
query?: never;
|
|
34359
34960
|
header?: never;
|
|
34360
34961
|
path: {
|
|
34361
|
-
integration_id: string;
|
|
34362
34962
|
workspace_id: string;
|
|
34963
|
+
integration_id: string;
|
|
34363
34964
|
};
|
|
34364
34965
|
cookie?: never;
|
|
34365
34966
|
};
|
|
@@ -34413,8 +35014,8 @@ export interface operations {
|
|
|
34413
35014
|
query?: never;
|
|
34414
35015
|
header?: never;
|
|
34415
35016
|
path: {
|
|
34416
|
-
integration_id: string;
|
|
34417
35017
|
workspace_id: string;
|
|
35018
|
+
integration_id: string;
|
|
34418
35019
|
};
|
|
34419
35020
|
cookie?: never;
|
|
34420
35021
|
};
|
|
@@ -34464,9 +35065,9 @@ export interface operations {
|
|
|
34464
35065
|
query?: never;
|
|
34465
35066
|
header?: never;
|
|
34466
35067
|
path: {
|
|
35068
|
+
workspace_id: string;
|
|
34467
35069
|
integration_id: string;
|
|
34468
35070
|
endpoint_name: string;
|
|
34469
|
-
workspace_id: string;
|
|
34470
35071
|
};
|
|
34471
35072
|
cookie?: never;
|
|
34472
35073
|
};
|
|
@@ -34611,8 +35212,8 @@ export interface operations {
|
|
|
34611
35212
|
query?: never;
|
|
34612
35213
|
header?: never;
|
|
34613
35214
|
path: {
|
|
34614
|
-
table: string;
|
|
34615
35215
|
workspace_id: string;
|
|
35216
|
+
table: string;
|
|
34616
35217
|
};
|
|
34617
35218
|
cookie?: never;
|
|
34618
35219
|
};
|
|
@@ -34645,8 +35246,8 @@ export interface operations {
|
|
|
34645
35246
|
};
|
|
34646
35247
|
header?: never;
|
|
34647
35248
|
path: {
|
|
34648
|
-
table: string;
|
|
34649
35249
|
workspace_id: string;
|
|
35250
|
+
table: string;
|
|
34650
35251
|
};
|
|
34651
35252
|
cookie?: never;
|
|
34652
35253
|
};
|
|
@@ -34971,8 +35572,8 @@ export interface operations {
|
|
|
34971
35572
|
query?: never;
|
|
34972
35573
|
header?: never;
|
|
34973
35574
|
path: {
|
|
34974
|
-
patient_id: string;
|
|
34975
35575
|
workspace_id: string;
|
|
35576
|
+
patient_id: string;
|
|
34976
35577
|
};
|
|
34977
35578
|
cookie?: never;
|
|
34978
35579
|
};
|
|
@@ -35003,8 +35604,8 @@ export interface operations {
|
|
|
35003
35604
|
query?: never;
|
|
35004
35605
|
header?: never;
|
|
35005
35606
|
path: {
|
|
35006
|
-
patient_id: string;
|
|
35007
35607
|
workspace_id: string;
|
|
35608
|
+
patient_id: string;
|
|
35008
35609
|
};
|
|
35009
35610
|
cookie?: never;
|
|
35010
35611
|
};
|
|
@@ -35119,9 +35720,9 @@ export interface operations {
|
|
|
35119
35720
|
query?: never;
|
|
35120
35721
|
header?: never;
|
|
35121
35722
|
path: {
|
|
35723
|
+
workspace_id: string;
|
|
35122
35724
|
/** @description Entity UUID */
|
|
35123
35725
|
entity_id: string;
|
|
35124
|
-
workspace_id: string;
|
|
35125
35726
|
};
|
|
35126
35727
|
cookie?: never;
|
|
35127
35728
|
};
|
|
@@ -35162,9 +35763,9 @@ export interface operations {
|
|
|
35162
35763
|
};
|
|
35163
35764
|
header?: never;
|
|
35164
35765
|
path: {
|
|
35766
|
+
workspace_id: string;
|
|
35165
35767
|
/** @description Entity UUID */
|
|
35166
35768
|
entity_id: string;
|
|
35167
|
-
workspace_id: string;
|
|
35168
35769
|
};
|
|
35169
35770
|
cookie?: never;
|
|
35170
35771
|
};
|
|
@@ -35323,9 +35924,9 @@ export interface operations {
|
|
|
35323
35924
|
};
|
|
35324
35925
|
header?: never;
|
|
35325
35926
|
path: {
|
|
35927
|
+
workspace_id: string;
|
|
35326
35928
|
/** @description Metric key (lowercase alphanumeric + underscores) */
|
|
35327
35929
|
metric_key: string;
|
|
35328
|
-
workspace_id: string;
|
|
35329
35930
|
};
|
|
35330
35931
|
cookie?: never;
|
|
35331
35932
|
};
|
|
@@ -35363,9 +35964,9 @@ export interface operations {
|
|
|
35363
35964
|
query?: never;
|
|
35364
35965
|
header?: never;
|
|
35365
35966
|
path: {
|
|
35967
|
+
workspace_id: string;
|
|
35366
35968
|
/** @description Metric key (lowercase alphanumeric + underscores) */
|
|
35367
35969
|
metric_key: string;
|
|
35368
|
-
workspace_id: string;
|
|
35369
35970
|
};
|
|
35370
35971
|
cookie?: never;
|
|
35371
35972
|
};
|
|
@@ -35435,9 +36036,9 @@ export interface operations {
|
|
|
35435
36036
|
};
|
|
35436
36037
|
header?: never;
|
|
35437
36038
|
path: {
|
|
36039
|
+
workspace_id: string;
|
|
35438
36040
|
/** @description Metric key (lowercase alphanumeric + underscores) */
|
|
35439
36041
|
metric_key: string;
|
|
35440
|
-
workspace_id: string;
|
|
35441
36042
|
};
|
|
35442
36043
|
cookie?: never;
|
|
35443
36044
|
};
|
|
@@ -35565,8 +36166,8 @@ export interface operations {
|
|
|
35565
36166
|
query?: never;
|
|
35566
36167
|
header?: never;
|
|
35567
36168
|
path: {
|
|
35568
|
-
concept_id: string;
|
|
35569
36169
|
workspace_id: string;
|
|
36170
|
+
concept_id: string;
|
|
35570
36171
|
};
|
|
35571
36172
|
cookie?: never;
|
|
35572
36173
|
};
|
|
@@ -35611,8 +36212,8 @@ export interface operations {
|
|
|
35611
36212
|
query?: never;
|
|
35612
36213
|
header?: never;
|
|
35613
36214
|
path: {
|
|
35614
|
-
concept_id: string;
|
|
35615
36215
|
workspace_id: string;
|
|
36216
|
+
concept_id: string;
|
|
35616
36217
|
};
|
|
35617
36218
|
cookie?: never;
|
|
35618
36219
|
};
|
|
@@ -35655,8 +36256,8 @@ export interface operations {
|
|
|
35655
36256
|
query?: never;
|
|
35656
36257
|
header?: never;
|
|
35657
36258
|
path: {
|
|
35658
|
-
concept_id: string;
|
|
35659
36259
|
workspace_id: string;
|
|
36260
|
+
concept_id: string;
|
|
35660
36261
|
};
|
|
35661
36262
|
cookie?: never;
|
|
35662
36263
|
};
|
|
@@ -35815,6 +36416,10 @@ export interface operations {
|
|
|
35815
36416
|
"list-audit-log": {
|
|
35816
36417
|
parameters: {
|
|
35817
36418
|
query?: {
|
|
36419
|
+
/** @description Filter by operator entity UUID. */
|
|
36420
|
+
operator_id?: string | null;
|
|
36421
|
+
/** @description Filter by exact operator audit event type. */
|
|
36422
|
+
action?: ("operator.registered" | "operator.status_changed" | "operator.profile_updated" | "operator.joined_call" | "operator.mode_changed" | "operator.mode_switched" | "operator.left_call" | "operator.access_token_generated" | "operator.guidance_sent" | "operator.wrap_up" | "operator.viewed_transcript") | null;
|
|
35818
36423
|
limit?: number;
|
|
35819
36424
|
continuation_token?: number;
|
|
35820
36425
|
};
|
|
@@ -35851,8 +36456,8 @@ export interface operations {
|
|
|
35851
36456
|
query?: never;
|
|
35852
36457
|
header?: never;
|
|
35853
36458
|
path: {
|
|
35854
|
-
call_sid: string;
|
|
35855
36459
|
workspace_id: string;
|
|
36460
|
+
call_sid: string;
|
|
35856
36461
|
};
|
|
35857
36462
|
cookie?: never;
|
|
35858
36463
|
};
|
|
@@ -35979,9 +36584,9 @@ export interface operations {
|
|
|
35979
36584
|
parameters: {
|
|
35980
36585
|
query?: {
|
|
35981
36586
|
/** @description Time period: day, week, or month. */
|
|
35982
|
-
period?:
|
|
36587
|
+
period?: "day" | "week" | "month";
|
|
35983
36588
|
/** @description Grouping dimension: status, trigger, or operator. */
|
|
35984
|
-
group_by?:
|
|
36589
|
+
group_by?: "status" | "trigger" | "operator";
|
|
35985
36590
|
};
|
|
35986
36591
|
header?: never;
|
|
35987
36592
|
path: {
|
|
@@ -36067,8 +36672,8 @@ export interface operations {
|
|
|
36067
36672
|
query?: never;
|
|
36068
36673
|
header?: never;
|
|
36069
36674
|
path: {
|
|
36070
|
-
operator_id: string;
|
|
36071
36675
|
workspace_id: string;
|
|
36676
|
+
operator_id: string;
|
|
36072
36677
|
};
|
|
36073
36678
|
cookie?: never;
|
|
36074
36679
|
};
|
|
@@ -36106,8 +36711,8 @@ export interface operations {
|
|
|
36106
36711
|
query?: never;
|
|
36107
36712
|
header?: never;
|
|
36108
36713
|
path: {
|
|
36109
|
-
operator_id: string;
|
|
36110
36714
|
workspace_id: string;
|
|
36715
|
+
operator_id: string;
|
|
36111
36716
|
};
|
|
36112
36717
|
cookie?: never;
|
|
36113
36718
|
};
|
|
@@ -36149,8 +36754,8 @@ export interface operations {
|
|
|
36149
36754
|
query?: never;
|
|
36150
36755
|
header?: never;
|
|
36151
36756
|
path: {
|
|
36152
|
-
operator_id: string;
|
|
36153
36757
|
workspace_id: string;
|
|
36758
|
+
operator_id: string;
|
|
36154
36759
|
};
|
|
36155
36760
|
cookie?: never;
|
|
36156
36761
|
};
|
|
@@ -36199,8 +36804,8 @@ export interface operations {
|
|
|
36199
36804
|
query?: never;
|
|
36200
36805
|
header?: never;
|
|
36201
36806
|
path: {
|
|
36202
|
-
operator_id: string;
|
|
36203
36807
|
workspace_id: string;
|
|
36808
|
+
operator_id: string;
|
|
36204
36809
|
};
|
|
36205
36810
|
cookie?: never;
|
|
36206
36811
|
};
|
|
@@ -36249,8 +36854,8 @@ export interface operations {
|
|
|
36249
36854
|
query?: never;
|
|
36250
36855
|
header?: never;
|
|
36251
36856
|
path: {
|
|
36252
|
-
operator_id: string;
|
|
36253
36857
|
workspace_id: string;
|
|
36858
|
+
operator_id: string;
|
|
36254
36859
|
};
|
|
36255
36860
|
cookie?: never;
|
|
36256
36861
|
};
|
|
@@ -36306,8 +36911,8 @@ export interface operations {
|
|
|
36306
36911
|
query?: never;
|
|
36307
36912
|
header?: never;
|
|
36308
36913
|
path: {
|
|
36309
|
-
operator_id: string;
|
|
36310
36914
|
workspace_id: string;
|
|
36915
|
+
operator_id: string;
|
|
36311
36916
|
};
|
|
36312
36917
|
cookie?: never;
|
|
36313
36918
|
};
|
|
@@ -36356,8 +36961,8 @@ export interface operations {
|
|
|
36356
36961
|
query?: never;
|
|
36357
36962
|
header?: never;
|
|
36358
36963
|
path: {
|
|
36359
|
-
operator_id: string;
|
|
36360
36964
|
workspace_id: string;
|
|
36965
|
+
operator_id: string;
|
|
36361
36966
|
};
|
|
36362
36967
|
cookie?: never;
|
|
36363
36968
|
};
|
|
@@ -36406,8 +37011,8 @@ export interface operations {
|
|
|
36406
37011
|
query?: never;
|
|
36407
37012
|
header?: never;
|
|
36408
37013
|
path: {
|
|
36409
|
-
operator_id: string;
|
|
36410
37014
|
workspace_id: string;
|
|
37015
|
+
operator_id: string;
|
|
36411
37016
|
};
|
|
36412
37017
|
cookie?: never;
|
|
36413
37018
|
};
|
|
@@ -36456,8 +37061,8 @@ export interface operations {
|
|
|
36456
37061
|
query?: never;
|
|
36457
37062
|
header?: never;
|
|
36458
37063
|
path: {
|
|
36459
|
-
operator_id: string;
|
|
36460
37064
|
workspace_id: string;
|
|
37065
|
+
operator_id: string;
|
|
36461
37066
|
};
|
|
36462
37067
|
cookie?: never;
|
|
36463
37068
|
};
|
|
@@ -36582,8 +37187,8 @@ export interface operations {
|
|
|
36582
37187
|
query?: never;
|
|
36583
37188
|
header?: never;
|
|
36584
37189
|
path: {
|
|
36585
|
-
persona_id: string;
|
|
36586
37190
|
workspace_id: string;
|
|
37191
|
+
persona_id: string;
|
|
36587
37192
|
};
|
|
36588
37193
|
cookie?: never;
|
|
36589
37194
|
};
|
|
@@ -36628,8 +37233,8 @@ export interface operations {
|
|
|
36628
37233
|
query?: never;
|
|
36629
37234
|
header?: never;
|
|
36630
37235
|
path: {
|
|
36631
|
-
persona_id: string;
|
|
36632
37236
|
workspace_id: string;
|
|
37237
|
+
persona_id: string;
|
|
36633
37238
|
};
|
|
36634
37239
|
cookie?: never;
|
|
36635
37240
|
};
|
|
@@ -36674,8 +37279,8 @@ export interface operations {
|
|
|
36674
37279
|
query?: never;
|
|
36675
37280
|
header?: never;
|
|
36676
37281
|
path: {
|
|
36677
|
-
persona_id: string;
|
|
36678
37282
|
workspace_id: string;
|
|
37283
|
+
persona_id: string;
|
|
36679
37284
|
};
|
|
36680
37285
|
cookie?: never;
|
|
36681
37286
|
};
|
|
@@ -36895,8 +37500,8 @@ export interface operations {
|
|
|
36895
37500
|
query?: never;
|
|
36896
37501
|
header?: never;
|
|
36897
37502
|
path: {
|
|
36898
|
-
phone_number_id: string;
|
|
36899
37503
|
workspace_id: string;
|
|
37504
|
+
phone_number_id: string;
|
|
36900
37505
|
};
|
|
36901
37506
|
cookie?: never;
|
|
36902
37507
|
};
|
|
@@ -36948,8 +37553,8 @@ export interface operations {
|
|
|
36948
37553
|
query?: never;
|
|
36949
37554
|
header?: never;
|
|
36950
37555
|
path: {
|
|
36951
|
-
phone_number_id: string;
|
|
36952
37556
|
workspace_id: string;
|
|
37557
|
+
phone_number_id: string;
|
|
36953
37558
|
};
|
|
36954
37559
|
cookie?: never;
|
|
36955
37560
|
};
|
|
@@ -37003,8 +37608,8 @@ export interface operations {
|
|
|
37003
37608
|
query?: never;
|
|
37004
37609
|
header?: never;
|
|
37005
37610
|
path: {
|
|
37006
|
-
phone_number_id: string;
|
|
37007
37611
|
workspace_id: string;
|
|
37612
|
+
phone_number_id: string;
|
|
37008
37613
|
};
|
|
37009
37614
|
cookie?: never;
|
|
37010
37615
|
};
|
|
@@ -37054,8 +37659,8 @@ export interface operations {
|
|
|
37054
37659
|
query?: never;
|
|
37055
37660
|
header?: never;
|
|
37056
37661
|
path: {
|
|
37057
|
-
phone_number_id: string;
|
|
37058
37662
|
workspace_id: string;
|
|
37663
|
+
phone_number_id: string;
|
|
37059
37664
|
};
|
|
37060
37665
|
cookie?: never;
|
|
37061
37666
|
};
|
|
@@ -37109,8 +37714,8 @@ export interface operations {
|
|
|
37109
37714
|
query?: never;
|
|
37110
37715
|
header?: never;
|
|
37111
37716
|
path: {
|
|
37112
|
-
phone_number_id: string;
|
|
37113
37717
|
workspace_id: string;
|
|
37718
|
+
phone_number_id: string;
|
|
37114
37719
|
};
|
|
37115
37720
|
cookie?: never;
|
|
37116
37721
|
};
|
|
@@ -37225,8 +37830,8 @@ export interface operations {
|
|
|
37225
37830
|
};
|
|
37226
37831
|
header?: never;
|
|
37227
37832
|
path: {
|
|
37228
|
-
data_source_id: string;
|
|
37229
37833
|
workspace_id: string;
|
|
37834
|
+
data_source_id: string;
|
|
37230
37835
|
};
|
|
37231
37836
|
cookie?: never;
|
|
37232
37837
|
};
|
|
@@ -37352,8 +37957,8 @@ export interface operations {
|
|
|
37352
37957
|
};
|
|
37353
37958
|
header?: never;
|
|
37354
37959
|
path: {
|
|
37355
|
-
source_id: string;
|
|
37356
37960
|
workspace_id: string;
|
|
37961
|
+
source_id: string;
|
|
37357
37962
|
};
|
|
37358
37963
|
cookie?: never;
|
|
37359
37964
|
};
|
|
@@ -37396,8 +38001,8 @@ export interface operations {
|
|
|
37396
38001
|
};
|
|
37397
38002
|
header?: never;
|
|
37398
38003
|
path: {
|
|
37399
|
-
source_id: string;
|
|
37400
38004
|
workspace_id: string;
|
|
38005
|
+
source_id: string;
|
|
37401
38006
|
};
|
|
37402
38007
|
cookie?: never;
|
|
37403
38008
|
};
|
|
@@ -37435,8 +38040,8 @@ export interface operations {
|
|
|
37435
38040
|
query?: never;
|
|
37436
38041
|
header?: never;
|
|
37437
38042
|
path: {
|
|
37438
|
-
source_id: string;
|
|
37439
38043
|
workspace_id: string;
|
|
38044
|
+
source_id: string;
|
|
37440
38045
|
};
|
|
37441
38046
|
cookie?: never;
|
|
37442
38047
|
};
|
|
@@ -37561,9 +38166,9 @@ export interface operations {
|
|
|
37561
38166
|
};
|
|
37562
38167
|
header?: never;
|
|
37563
38168
|
path: {
|
|
38169
|
+
workspace_id: string;
|
|
37564
38170
|
schema: string;
|
|
37565
38171
|
table: string;
|
|
37566
|
-
workspace_id: string;
|
|
37567
38172
|
};
|
|
37568
38173
|
cookie?: never;
|
|
37569
38174
|
};
|
|
@@ -37594,9 +38199,9 @@ export interface operations {
|
|
|
37594
38199
|
query?: never;
|
|
37595
38200
|
header?: never;
|
|
37596
38201
|
path: {
|
|
38202
|
+
workspace_id: string;
|
|
37597
38203
|
call_sid: string;
|
|
37598
38204
|
filename: string;
|
|
37599
|
-
workspace_id: string;
|
|
37600
38205
|
};
|
|
37601
38206
|
cookie?: never;
|
|
37602
38207
|
};
|
|
@@ -37648,8 +38253,8 @@ export interface operations {
|
|
|
37648
38253
|
query?: never;
|
|
37649
38254
|
header?: never;
|
|
37650
38255
|
path: {
|
|
37651
|
-
call_sid: string;
|
|
37652
38256
|
workspace_id: string;
|
|
38257
|
+
call_sid: string;
|
|
37653
38258
|
};
|
|
37654
38259
|
cookie?: never;
|
|
37655
38260
|
};
|
|
@@ -37694,8 +38299,8 @@ export interface operations {
|
|
|
37694
38299
|
query?: never;
|
|
37695
38300
|
header?: never;
|
|
37696
38301
|
path: {
|
|
37697
|
-
call_sid: string;
|
|
37698
38302
|
workspace_id: string;
|
|
38303
|
+
call_sid: string;
|
|
37699
38304
|
};
|
|
37700
38305
|
cookie?: never;
|
|
37701
38306
|
};
|
|
@@ -38039,8 +38644,8 @@ export interface operations {
|
|
|
38039
38644
|
query?: never;
|
|
38040
38645
|
header?: never;
|
|
38041
38646
|
path: {
|
|
38042
|
-
item_id: string;
|
|
38043
38647
|
workspace_id: string;
|
|
38648
|
+
item_id: string;
|
|
38044
38649
|
};
|
|
38045
38650
|
cookie?: never;
|
|
38046
38651
|
};
|
|
@@ -38071,8 +38676,8 @@ export interface operations {
|
|
|
38071
38676
|
query?: never;
|
|
38072
38677
|
header?: never;
|
|
38073
38678
|
path: {
|
|
38074
|
-
item_id: string;
|
|
38075
38679
|
workspace_id: string;
|
|
38680
|
+
item_id: string;
|
|
38076
38681
|
};
|
|
38077
38682
|
cookie?: never;
|
|
38078
38683
|
};
|
|
@@ -38107,8 +38712,8 @@ export interface operations {
|
|
|
38107
38712
|
query?: never;
|
|
38108
38713
|
header?: never;
|
|
38109
38714
|
path: {
|
|
38110
|
-
item_id: string;
|
|
38111
38715
|
workspace_id: string;
|
|
38716
|
+
item_id: string;
|
|
38112
38717
|
};
|
|
38113
38718
|
cookie?: never;
|
|
38114
38719
|
};
|
|
@@ -38139,8 +38744,8 @@ export interface operations {
|
|
|
38139
38744
|
query?: never;
|
|
38140
38745
|
header?: never;
|
|
38141
38746
|
path: {
|
|
38142
|
-
item_id: string;
|
|
38143
38747
|
workspace_id: string;
|
|
38748
|
+
item_id: string;
|
|
38144
38749
|
};
|
|
38145
38750
|
cookie?: never;
|
|
38146
38751
|
};
|
|
@@ -38175,8 +38780,8 @@ export interface operations {
|
|
|
38175
38780
|
query?: never;
|
|
38176
38781
|
header?: never;
|
|
38177
38782
|
path: {
|
|
38178
|
-
item_id: string;
|
|
38179
38783
|
workspace_id: string;
|
|
38784
|
+
item_id: string;
|
|
38180
38785
|
};
|
|
38181
38786
|
cookie?: never;
|
|
38182
38787
|
};
|
|
@@ -38207,8 +38812,8 @@ export interface operations {
|
|
|
38207
38812
|
query?: never;
|
|
38208
38813
|
header?: never;
|
|
38209
38814
|
path: {
|
|
38210
|
-
item_id: string;
|
|
38211
38815
|
workspace_id: string;
|
|
38816
|
+
item_id: string;
|
|
38212
38817
|
};
|
|
38213
38818
|
cookie?: never;
|
|
38214
38819
|
};
|
|
@@ -38239,8 +38844,8 @@ export interface operations {
|
|
|
38239
38844
|
query?: never;
|
|
38240
38845
|
header?: never;
|
|
38241
38846
|
path: {
|
|
38242
|
-
item_id: string;
|
|
38243
38847
|
workspace_id: string;
|
|
38848
|
+
item_id: string;
|
|
38244
38849
|
};
|
|
38245
38850
|
cookie?: never;
|
|
38246
38851
|
};
|
|
@@ -38275,8 +38880,8 @@ export interface operations {
|
|
|
38275
38880
|
query?: never;
|
|
38276
38881
|
header?: never;
|
|
38277
38882
|
path: {
|
|
38278
|
-
item_id: string;
|
|
38279
38883
|
workspace_id: string;
|
|
38884
|
+
item_id: string;
|
|
38280
38885
|
};
|
|
38281
38886
|
cookie?: never;
|
|
38282
38887
|
};
|
|
@@ -38407,8 +39012,8 @@ export interface operations {
|
|
|
38407
39012
|
query?: never;
|
|
38408
39013
|
header?: never;
|
|
38409
39014
|
path: {
|
|
38410
|
-
template_id: string;
|
|
38411
39015
|
workspace_id: string;
|
|
39016
|
+
template_id: string;
|
|
38412
39017
|
};
|
|
38413
39018
|
cookie?: never;
|
|
38414
39019
|
};
|
|
@@ -38453,8 +39058,8 @@ export interface operations {
|
|
|
38453
39058
|
query?: never;
|
|
38454
39059
|
header?: never;
|
|
38455
39060
|
path: {
|
|
38456
|
-
template_id: string;
|
|
38457
39061
|
workspace_id: string;
|
|
39062
|
+
template_id: string;
|
|
38458
39063
|
};
|
|
38459
39064
|
cookie?: never;
|
|
38460
39065
|
};
|
|
@@ -38503,8 +39108,8 @@ export interface operations {
|
|
|
38503
39108
|
query?: never;
|
|
38504
39109
|
header?: never;
|
|
38505
39110
|
path: {
|
|
38506
|
-
encounter_id: string;
|
|
38507
39111
|
workspace_id: string;
|
|
39112
|
+
encounter_id: string;
|
|
38508
39113
|
};
|
|
38509
39114
|
cookie?: never;
|
|
38510
39115
|
};
|
|
@@ -38537,8 +39142,8 @@ export interface operations {
|
|
|
38537
39142
|
query?: never;
|
|
38538
39143
|
header?: never;
|
|
38539
39144
|
path: {
|
|
38540
|
-
encounter_id: string;
|
|
38541
39145
|
workspace_id: string;
|
|
39146
|
+
encounter_id: string;
|
|
38542
39147
|
};
|
|
38543
39148
|
cookie?: never;
|
|
38544
39149
|
};
|
|
@@ -38575,8 +39180,8 @@ export interface operations {
|
|
|
38575
39180
|
query?: never;
|
|
38576
39181
|
header?: never;
|
|
38577
39182
|
path: {
|
|
38578
|
-
encounter_id: string;
|
|
38579
39183
|
workspace_id: string;
|
|
39184
|
+
encounter_id: string;
|
|
38580
39185
|
};
|
|
38581
39186
|
cookie?: never;
|
|
38582
39187
|
};
|
|
@@ -38613,8 +39218,8 @@ export interface operations {
|
|
|
38613
39218
|
query?: never;
|
|
38614
39219
|
header?: never;
|
|
38615
39220
|
path: {
|
|
38616
|
-
encounter_id: string;
|
|
38617
39221
|
workspace_id: string;
|
|
39222
|
+
encounter_id: string;
|
|
38618
39223
|
};
|
|
38619
39224
|
cookie?: never;
|
|
38620
39225
|
};
|
|
@@ -38861,8 +39466,8 @@ export interface operations {
|
|
|
38861
39466
|
query?: never;
|
|
38862
39467
|
header?: never;
|
|
38863
39468
|
path: {
|
|
38864
|
-
service_id: string;
|
|
38865
39469
|
workspace_id: string;
|
|
39470
|
+
service_id: string;
|
|
38866
39471
|
};
|
|
38867
39472
|
cookie?: never;
|
|
38868
39473
|
};
|
|
@@ -38914,8 +39519,8 @@ export interface operations {
|
|
|
38914
39519
|
query?: never;
|
|
38915
39520
|
header?: never;
|
|
38916
39521
|
path: {
|
|
38917
|
-
service_id: string;
|
|
38918
39522
|
workspace_id: string;
|
|
39523
|
+
service_id: string;
|
|
38919
39524
|
};
|
|
38920
39525
|
cookie?: never;
|
|
38921
39526
|
};
|
|
@@ -38976,8 +39581,8 @@ export interface operations {
|
|
|
38976
39581
|
query?: never;
|
|
38977
39582
|
header?: never;
|
|
38978
39583
|
path: {
|
|
38979
|
-
service_id: string;
|
|
38980
39584
|
workspace_id: string;
|
|
39585
|
+
service_id: string;
|
|
38981
39586
|
};
|
|
38982
39587
|
cookie?: never;
|
|
38983
39588
|
};
|
|
@@ -39027,8 +39632,8 @@ export interface operations {
|
|
|
39027
39632
|
query?: never;
|
|
39028
39633
|
header?: never;
|
|
39029
39634
|
path: {
|
|
39030
|
-
service_id: string;
|
|
39031
39635
|
workspace_id: string;
|
|
39636
|
+
service_id: string;
|
|
39032
39637
|
};
|
|
39033
39638
|
cookie?: never;
|
|
39034
39639
|
};
|
|
@@ -39080,10 +39685,10 @@ export interface operations {
|
|
|
39080
39685
|
query?: never;
|
|
39081
39686
|
header?: never;
|
|
39082
39687
|
path: {
|
|
39688
|
+
workspace_id: string;
|
|
39083
39689
|
service_id: string;
|
|
39084
39690
|
/** @description Version set name (e.g. 'release') */
|
|
39085
39691
|
name: string;
|
|
39086
|
-
workspace_id: string;
|
|
39087
39692
|
};
|
|
39088
39693
|
cookie?: never;
|
|
39089
39694
|
};
|
|
@@ -39145,9 +39750,9 @@ export interface operations {
|
|
|
39145
39750
|
};
|
|
39146
39751
|
header?: never;
|
|
39147
39752
|
path: {
|
|
39753
|
+
workspace_id: string;
|
|
39148
39754
|
/** @description Service UUID */
|
|
39149
39755
|
service_id: string;
|
|
39150
|
-
workspace_id: string;
|
|
39151
39756
|
};
|
|
39152
39757
|
cookie?: never;
|
|
39153
39758
|
};
|
|
@@ -39185,8 +39790,8 @@ export interface operations {
|
|
|
39185
39790
|
query?: never;
|
|
39186
39791
|
header?: never;
|
|
39187
39792
|
path: {
|
|
39188
|
-
service_id: string;
|
|
39189
39793
|
workspace_id: string;
|
|
39794
|
+
service_id: string;
|
|
39190
39795
|
};
|
|
39191
39796
|
cookie?: never;
|
|
39192
39797
|
};
|
|
@@ -39312,8 +39917,8 @@ export interface operations {
|
|
|
39312
39917
|
query?: never;
|
|
39313
39918
|
header?: never;
|
|
39314
39919
|
path: {
|
|
39315
|
-
call_sid: string;
|
|
39316
39920
|
workspace_id: string;
|
|
39921
|
+
call_sid: string;
|
|
39317
39922
|
};
|
|
39318
39923
|
cookie?: never;
|
|
39319
39924
|
};
|
|
@@ -39735,8 +40340,8 @@ export interface operations {
|
|
|
39735
40340
|
query?: never;
|
|
39736
40341
|
header?: never;
|
|
39737
40342
|
path: {
|
|
39738
|
-
template_id: string;
|
|
39739
40343
|
workspace_id: string;
|
|
40344
|
+
template_id: string;
|
|
39740
40345
|
};
|
|
39741
40346
|
cookie?: never;
|
|
39742
40347
|
};
|
|
@@ -39767,8 +40372,8 @@ export interface operations {
|
|
|
39767
40372
|
query?: never;
|
|
39768
40373
|
header?: never;
|
|
39769
40374
|
path: {
|
|
39770
|
-
template_id: string;
|
|
39771
40375
|
workspace_id: string;
|
|
40376
|
+
template_id: string;
|
|
39772
40377
|
};
|
|
39773
40378
|
cookie?: never;
|
|
39774
40379
|
};
|
|
@@ -40817,8 +41422,8 @@ export interface operations {
|
|
|
40817
41422
|
query?: never;
|
|
40818
41423
|
header?: never;
|
|
40819
41424
|
path: {
|
|
40820
|
-
run_id: string;
|
|
40821
41425
|
workspace_id: string;
|
|
41426
|
+
run_id: string;
|
|
40822
41427
|
};
|
|
40823
41428
|
cookie?: never;
|
|
40824
41429
|
};
|
|
@@ -40851,8 +41456,8 @@ export interface operations {
|
|
|
40851
41456
|
};
|
|
40852
41457
|
header?: never;
|
|
40853
41458
|
path: {
|
|
40854
|
-
run_id: string;
|
|
40855
41459
|
workspace_id: string;
|
|
41460
|
+
run_id: string;
|
|
40856
41461
|
};
|
|
40857
41462
|
cookie?: never;
|
|
40858
41463
|
};
|
|
@@ -40885,8 +41490,8 @@ export interface operations {
|
|
|
40885
41490
|
query?: never;
|
|
40886
41491
|
header?: never;
|
|
40887
41492
|
path: {
|
|
40888
|
-
run_id: string;
|
|
40889
41493
|
workspace_id: string;
|
|
41494
|
+
run_id: string;
|
|
40890
41495
|
};
|
|
40891
41496
|
cookie?: never;
|
|
40892
41497
|
};
|
|
@@ -40924,8 +41529,8 @@ export interface operations {
|
|
|
40924
41529
|
};
|
|
40925
41530
|
header?: never;
|
|
40926
41531
|
path: {
|
|
40927
|
-
service_id: string;
|
|
40928
41532
|
workspace_id: string;
|
|
41533
|
+
service_id: string;
|
|
40929
41534
|
};
|
|
40930
41535
|
cookie?: never;
|
|
40931
41536
|
};
|
|
@@ -40958,8 +41563,8 @@ export interface operations {
|
|
|
40958
41563
|
query?: never;
|
|
40959
41564
|
header?: never;
|
|
40960
41565
|
path: {
|
|
40961
|
-
service_id: string;
|
|
40962
41566
|
workspace_id: string;
|
|
41567
|
+
service_id: string;
|
|
40963
41568
|
};
|
|
40964
41569
|
cookie?: never;
|
|
40965
41570
|
};
|
|
@@ -40994,8 +41599,8 @@ export interface operations {
|
|
|
40994
41599
|
};
|
|
40995
41600
|
header?: never;
|
|
40996
41601
|
path: {
|
|
40997
|
-
service_id: string;
|
|
40998
41602
|
workspace_id: string;
|
|
41603
|
+
service_id: string;
|
|
40999
41604
|
};
|
|
41000
41605
|
cookie?: never;
|
|
41001
41606
|
};
|
|
@@ -41031,8 +41636,8 @@ export interface operations {
|
|
|
41031
41636
|
};
|
|
41032
41637
|
header?: never;
|
|
41033
41638
|
path: {
|
|
41034
|
-
service_id: string;
|
|
41035
41639
|
workspace_id: string;
|
|
41640
|
+
service_id: string;
|
|
41036
41641
|
};
|
|
41037
41642
|
cookie?: never;
|
|
41038
41643
|
};
|
|
@@ -41070,8 +41675,8 @@ export interface operations {
|
|
|
41070
41675
|
};
|
|
41071
41676
|
header?: never;
|
|
41072
41677
|
path: {
|
|
41073
|
-
service_id: string;
|
|
41074
41678
|
workspace_id: string;
|
|
41679
|
+
service_id: string;
|
|
41075
41680
|
};
|
|
41076
41681
|
cookie?: never;
|
|
41077
41682
|
};
|
|
@@ -41209,8 +41814,8 @@ export interface operations {
|
|
|
41209
41814
|
query?: never;
|
|
41210
41815
|
header?: never;
|
|
41211
41816
|
path: {
|
|
41212
|
-
session_id: string;
|
|
41213
41817
|
workspace_id: string;
|
|
41818
|
+
session_id: string;
|
|
41214
41819
|
};
|
|
41215
41820
|
cookie?: never;
|
|
41216
41821
|
};
|
|
@@ -41241,8 +41846,8 @@ export interface operations {
|
|
|
41241
41846
|
query?: never;
|
|
41242
41847
|
header?: never;
|
|
41243
41848
|
path: {
|
|
41244
|
-
session_id: string;
|
|
41245
41849
|
workspace_id: string;
|
|
41850
|
+
session_id: string;
|
|
41246
41851
|
};
|
|
41247
41852
|
cookie?: never;
|
|
41248
41853
|
};
|
|
@@ -41273,8 +41878,8 @@ export interface operations {
|
|
|
41273
41878
|
query?: never;
|
|
41274
41879
|
header?: never;
|
|
41275
41880
|
path: {
|
|
41276
|
-
session_id: string;
|
|
41277
41881
|
workspace_id: string;
|
|
41882
|
+
session_id: string;
|
|
41278
41883
|
};
|
|
41279
41884
|
cookie?: never;
|
|
41280
41885
|
};
|
|
@@ -41311,8 +41916,8 @@ export interface operations {
|
|
|
41311
41916
|
query?: never;
|
|
41312
41917
|
header?: never;
|
|
41313
41918
|
path: {
|
|
41314
|
-
session_id: string;
|
|
41315
41919
|
workspace_id: string;
|
|
41920
|
+
session_id: string;
|
|
41316
41921
|
};
|
|
41317
41922
|
cookie?: never;
|
|
41318
41923
|
};
|
|
@@ -41343,8 +41948,8 @@ export interface operations {
|
|
|
41343
41948
|
query?: never;
|
|
41344
41949
|
header?: never;
|
|
41345
41950
|
path: {
|
|
41346
|
-
session_id: string;
|
|
41347
41951
|
workspace_id: string;
|
|
41952
|
+
session_id: string;
|
|
41348
41953
|
};
|
|
41349
41954
|
cookie?: never;
|
|
41350
41955
|
};
|
|
@@ -41381,8 +41986,8 @@ export interface operations {
|
|
|
41381
41986
|
query?: never;
|
|
41382
41987
|
header?: never;
|
|
41383
41988
|
path: {
|
|
41384
|
-
session_id: string;
|
|
41385
41989
|
workspace_id: string;
|
|
41990
|
+
session_id: string;
|
|
41386
41991
|
};
|
|
41387
41992
|
cookie?: never;
|
|
41388
41993
|
};
|
|
@@ -41417,8 +42022,8 @@ export interface operations {
|
|
|
41417
42022
|
query?: never;
|
|
41418
42023
|
header?: never;
|
|
41419
42024
|
path: {
|
|
41420
|
-
session_id: string;
|
|
41421
42025
|
workspace_id: string;
|
|
42026
|
+
session_id: string;
|
|
41422
42027
|
};
|
|
41423
42028
|
cookie?: never;
|
|
41424
42029
|
};
|
|
@@ -41564,8 +42169,8 @@ export interface operations {
|
|
|
41564
42169
|
query?: never;
|
|
41565
42170
|
header?: never;
|
|
41566
42171
|
path: {
|
|
41567
|
-
skill_id: string;
|
|
41568
42172
|
workspace_id: string;
|
|
42173
|
+
skill_id: string;
|
|
41569
42174
|
};
|
|
41570
42175
|
cookie?: never;
|
|
41571
42176
|
};
|
|
@@ -41617,8 +42222,8 @@ export interface operations {
|
|
|
41617
42222
|
query?: never;
|
|
41618
42223
|
header?: never;
|
|
41619
42224
|
path: {
|
|
41620
|
-
skill_id: string;
|
|
41621
42225
|
workspace_id: string;
|
|
42226
|
+
skill_id: string;
|
|
41622
42227
|
};
|
|
41623
42228
|
cookie?: never;
|
|
41624
42229
|
};
|
|
@@ -41672,8 +42277,8 @@ export interface operations {
|
|
|
41672
42277
|
query?: never;
|
|
41673
42278
|
header?: never;
|
|
41674
42279
|
path: {
|
|
41675
|
-
skill_id: string;
|
|
41676
42280
|
workspace_id: string;
|
|
42281
|
+
skill_id: string;
|
|
41677
42282
|
};
|
|
41678
42283
|
cookie?: never;
|
|
41679
42284
|
};
|
|
@@ -41723,8 +42328,8 @@ export interface operations {
|
|
|
41723
42328
|
query?: never;
|
|
41724
42329
|
header?: never;
|
|
41725
42330
|
path: {
|
|
41726
|
-
skill_id: string;
|
|
41727
42331
|
workspace_id: string;
|
|
42332
|
+
skill_id: string;
|
|
41728
42333
|
};
|
|
41729
42334
|
cookie?: never;
|
|
41730
42335
|
};
|
|
@@ -41776,8 +42381,8 @@ export interface operations {
|
|
|
41776
42381
|
query?: never;
|
|
41777
42382
|
header?: never;
|
|
41778
42383
|
path: {
|
|
41779
|
-
skill_id: string;
|
|
41780
42384
|
workspace_id: string;
|
|
42385
|
+
skill_id: string;
|
|
41781
42386
|
};
|
|
41782
42387
|
cookie?: never;
|
|
41783
42388
|
};
|
|
@@ -41961,8 +42566,8 @@ export interface operations {
|
|
|
41961
42566
|
query?: never;
|
|
41962
42567
|
header?: never;
|
|
41963
42568
|
path: {
|
|
41964
|
-
surface_id: string;
|
|
41965
42569
|
workspace_id: string;
|
|
42570
|
+
surface_id: string;
|
|
41966
42571
|
};
|
|
41967
42572
|
cookie?: never;
|
|
41968
42573
|
};
|
|
@@ -42007,8 +42612,8 @@ export interface operations {
|
|
|
42007
42612
|
query?: never;
|
|
42008
42613
|
header?: never;
|
|
42009
42614
|
path: {
|
|
42010
|
-
surface_id: string;
|
|
42011
42615
|
workspace_id: string;
|
|
42616
|
+
surface_id: string;
|
|
42012
42617
|
};
|
|
42013
42618
|
cookie?: never;
|
|
42014
42619
|
};
|
|
@@ -42060,8 +42665,8 @@ export interface operations {
|
|
|
42060
42665
|
query?: never;
|
|
42061
42666
|
header?: never;
|
|
42062
42667
|
path: {
|
|
42063
|
-
surface_id: string;
|
|
42064
42668
|
workspace_id: string;
|
|
42669
|
+
surface_id: string;
|
|
42065
42670
|
};
|
|
42066
42671
|
cookie?: never;
|
|
42067
42672
|
};
|
|
@@ -42115,8 +42720,8 @@ export interface operations {
|
|
|
42115
42720
|
query?: never;
|
|
42116
42721
|
header?: never;
|
|
42117
42722
|
path: {
|
|
42118
|
-
surface_id: string;
|
|
42119
42723
|
workspace_id: string;
|
|
42724
|
+
surface_id: string;
|
|
42120
42725
|
};
|
|
42121
42726
|
cookie?: never;
|
|
42122
42727
|
};
|
|
@@ -42168,8 +42773,8 @@ export interface operations {
|
|
|
42168
42773
|
query?: never;
|
|
42169
42774
|
header?: never;
|
|
42170
42775
|
path: {
|
|
42171
|
-
surface_id: string;
|
|
42172
42776
|
workspace_id: string;
|
|
42777
|
+
surface_id: string;
|
|
42173
42778
|
};
|
|
42174
42779
|
cookie?: never;
|
|
42175
42780
|
};
|
|
@@ -42223,8 +42828,8 @@ export interface operations {
|
|
|
42223
42828
|
query?: never;
|
|
42224
42829
|
header?: never;
|
|
42225
42830
|
path: {
|
|
42226
|
-
surface_id: string;
|
|
42227
42831
|
workspace_id: string;
|
|
42832
|
+
surface_id: string;
|
|
42228
42833
|
};
|
|
42229
42834
|
cookie?: never;
|
|
42230
42835
|
};
|
|
@@ -42269,8 +42874,8 @@ export interface operations {
|
|
|
42269
42874
|
query?: never;
|
|
42270
42875
|
header?: never;
|
|
42271
42876
|
path: {
|
|
42272
|
-
surface_id: string;
|
|
42273
42877
|
workspace_id: string;
|
|
42878
|
+
surface_id: string;
|
|
42274
42879
|
};
|
|
42275
42880
|
cookie?: never;
|
|
42276
42881
|
};
|
|
@@ -42326,8 +42931,8 @@ export interface operations {
|
|
|
42326
42931
|
query?: never;
|
|
42327
42932
|
header?: never;
|
|
42328
42933
|
path: {
|
|
42329
|
-
surface_id: string;
|
|
42330
42934
|
workspace_id: string;
|
|
42935
|
+
surface_id: string;
|
|
42331
42936
|
};
|
|
42332
42937
|
cookie?: never;
|
|
42333
42938
|
};
|
|
@@ -42574,8 +43179,8 @@ export interface operations {
|
|
|
42574
43179
|
query?: never;
|
|
42575
43180
|
header?: never;
|
|
42576
43181
|
path: {
|
|
42577
|
-
trigger_id: string;
|
|
42578
43182
|
workspace_id: string;
|
|
43183
|
+
trigger_id: string;
|
|
42579
43184
|
};
|
|
42580
43185
|
cookie?: never;
|
|
42581
43186
|
};
|
|
@@ -42606,8 +43211,8 @@ export interface operations {
|
|
|
42606
43211
|
query?: never;
|
|
42607
43212
|
header?: never;
|
|
42608
43213
|
path: {
|
|
42609
|
-
trigger_id: string;
|
|
42610
43214
|
workspace_id: string;
|
|
43215
|
+
trigger_id: string;
|
|
42611
43216
|
};
|
|
42612
43217
|
cookie?: never;
|
|
42613
43218
|
};
|
|
@@ -42642,8 +43247,8 @@ export interface operations {
|
|
|
42642
43247
|
query?: never;
|
|
42643
43248
|
header?: never;
|
|
42644
43249
|
path: {
|
|
42645
|
-
trigger_id: string;
|
|
42646
43250
|
workspace_id: string;
|
|
43251
|
+
trigger_id: string;
|
|
42647
43252
|
};
|
|
42648
43253
|
cookie?: never;
|
|
42649
43254
|
};
|
|
@@ -42672,8 +43277,8 @@ export interface operations {
|
|
|
42672
43277
|
query?: never;
|
|
42673
43278
|
header?: never;
|
|
42674
43279
|
path: {
|
|
42675
|
-
trigger_id: string;
|
|
42676
43280
|
workspace_id: string;
|
|
43281
|
+
trigger_id: string;
|
|
42677
43282
|
};
|
|
42678
43283
|
cookie?: never;
|
|
42679
43284
|
};
|
|
@@ -42708,8 +43313,8 @@ export interface operations {
|
|
|
42708
43313
|
query?: never;
|
|
42709
43314
|
header?: never;
|
|
42710
43315
|
path: {
|
|
42711
|
-
trigger_id: string;
|
|
42712
43316
|
workspace_id: string;
|
|
43317
|
+
trigger_id: string;
|
|
42713
43318
|
};
|
|
42714
43319
|
cookie?: never;
|
|
42715
43320
|
};
|
|
@@ -42740,8 +43345,8 @@ export interface operations {
|
|
|
42740
43345
|
query?: never;
|
|
42741
43346
|
header?: never;
|
|
42742
43347
|
path: {
|
|
42743
|
-
trigger_id: string;
|
|
42744
43348
|
workspace_id: string;
|
|
43349
|
+
trigger_id: string;
|
|
42745
43350
|
};
|
|
42746
43351
|
cookie?: never;
|
|
42747
43352
|
};
|
|
@@ -42775,8 +43380,8 @@ export interface operations {
|
|
|
42775
43380
|
};
|
|
42776
43381
|
header?: never;
|
|
42777
43382
|
path: {
|
|
42778
|
-
trigger_id: string;
|
|
42779
43383
|
workspace_id: string;
|
|
43384
|
+
trigger_id: string;
|
|
42780
43385
|
};
|
|
42781
43386
|
cookie?: never;
|
|
42782
43387
|
};
|
|
@@ -42927,8 +43532,8 @@ export interface operations {
|
|
|
42927
43532
|
query?: never;
|
|
42928
43533
|
header?: never;
|
|
42929
43534
|
path: {
|
|
42930
|
-
phone_number_id: string;
|
|
42931
43535
|
workspace_id: string;
|
|
43536
|
+
phone_number_id: string;
|
|
42932
43537
|
};
|
|
42933
43538
|
cookie?: never;
|
|
42934
43539
|
};
|
|
@@ -43159,8 +43764,8 @@ export interface operations {
|
|
|
43159
43764
|
query?: never;
|
|
43160
43765
|
header?: never;
|
|
43161
43766
|
path: {
|
|
43162
|
-
rule_id: string;
|
|
43163
43767
|
workspace_id: string;
|
|
43768
|
+
rule_id: string;
|
|
43164
43769
|
};
|
|
43165
43770
|
cookie?: never;
|
|
43166
43771
|
};
|
|
@@ -43205,8 +43810,8 @@ export interface operations {
|
|
|
43205
43810
|
query?: never;
|
|
43206
43811
|
header?: never;
|
|
43207
43812
|
path: {
|
|
43208
|
-
rule_id: string;
|
|
43209
43813
|
workspace_id: string;
|
|
43814
|
+
rule_id: string;
|
|
43210
43815
|
};
|
|
43211
43816
|
cookie?: never;
|
|
43212
43817
|
};
|
|
@@ -43249,8 +43854,8 @@ export interface operations {
|
|
|
43249
43854
|
query?: never;
|
|
43250
43855
|
header?: never;
|
|
43251
43856
|
path: {
|
|
43252
|
-
rule_id: string;
|
|
43253
43857
|
workspace_id: string;
|
|
43858
|
+
rule_id: string;
|
|
43254
43859
|
};
|
|
43255
43860
|
cookie?: never;
|
|
43256
43861
|
};
|
|
@@ -43409,8 +44014,8 @@ export interface operations {
|
|
|
43409
44014
|
query?: never;
|
|
43410
44015
|
header?: never;
|
|
43411
44016
|
path: {
|
|
43412
|
-
use_case_id: string;
|
|
43413
44017
|
workspace_id: string;
|
|
44018
|
+
use_case_id: string;
|
|
43414
44019
|
};
|
|
43415
44020
|
cookie?: never;
|
|
43416
44021
|
};
|
|
@@ -43690,8 +44295,8 @@ export interface operations {
|
|
|
43690
44295
|
query?: never;
|
|
43691
44296
|
header?: never;
|
|
43692
44297
|
path: {
|
|
43693
|
-
entity_id: string;
|
|
43694
44298
|
workspace_id: string;
|
|
44299
|
+
entity_id: string;
|
|
43695
44300
|
};
|
|
43696
44301
|
cookie?: never;
|
|
43697
44302
|
};
|
|
@@ -43791,8 +44396,8 @@ export interface operations {
|
|
|
43791
44396
|
query?: never;
|
|
43792
44397
|
header?: never;
|
|
43793
44398
|
path: {
|
|
43794
|
-
destination_id: string;
|
|
43795
44399
|
workspace_id: string;
|
|
44400
|
+
destination_id: string;
|
|
43796
44401
|
};
|
|
43797
44402
|
cookie?: never;
|
|
43798
44403
|
};
|
|
@@ -43823,8 +44428,8 @@ export interface operations {
|
|
|
43823
44428
|
query?: never;
|
|
43824
44429
|
header?: never;
|
|
43825
44430
|
path: {
|
|
43826
|
-
destination_id: string;
|
|
43827
44431
|
workspace_id: string;
|
|
44432
|
+
destination_id: string;
|
|
43828
44433
|
};
|
|
43829
44434
|
cookie?: never;
|
|
43830
44435
|
};
|
|
@@ -43859,8 +44464,8 @@ export interface operations {
|
|
|
43859
44464
|
query?: never;
|
|
43860
44465
|
header?: never;
|
|
43861
44466
|
path: {
|
|
43862
|
-
destination_id: string;
|
|
43863
44467
|
workspace_id: string;
|
|
44468
|
+
destination_id: string;
|
|
43864
44469
|
};
|
|
43865
44470
|
cookie?: never;
|
|
43866
44471
|
};
|
|
@@ -43892,8 +44497,8 @@ export interface operations {
|
|
|
43892
44497
|
};
|
|
43893
44498
|
header?: never;
|
|
43894
44499
|
path: {
|
|
43895
|
-
destination_id: string;
|
|
43896
44500
|
workspace_id: string;
|
|
44501
|
+
destination_id: string;
|
|
43897
44502
|
};
|
|
43898
44503
|
cookie?: never;
|
|
43899
44504
|
};
|
|
@@ -43924,8 +44529,8 @@ export interface operations {
|
|
|
43924
44529
|
query?: never;
|
|
43925
44530
|
header?: never;
|
|
43926
44531
|
path: {
|
|
43927
|
-
destination_id: string;
|
|
43928
44532
|
workspace_id: string;
|
|
44533
|
+
destination_id: string;
|
|
43929
44534
|
};
|
|
43930
44535
|
cookie?: never;
|
|
43931
44536
|
};
|
|
@@ -43985,8 +44590,8 @@ export interface operations {
|
|
|
43985
44590
|
};
|
|
43986
44591
|
header?: never;
|
|
43987
44592
|
path: {
|
|
43988
|
-
data_source_id: string;
|
|
43989
44593
|
workspace_id: string;
|
|
44594
|
+
data_source_id: string;
|
|
43990
44595
|
};
|
|
43991
44596
|
cookie?: never;
|
|
43992
44597
|
};
|
|
@@ -44029,8 +44634,8 @@ export interface operations {
|
|
|
44029
44634
|
};
|
|
44030
44635
|
header?: never;
|
|
44031
44636
|
path: {
|
|
44032
|
-
data_source_id: string;
|
|
44033
44637
|
workspace_id: string;
|
|
44638
|
+
data_source_id: string;
|
|
44034
44639
|
};
|
|
44035
44640
|
cookie?: never;
|
|
44036
44641
|
};
|
|
@@ -44180,8 +44785,8 @@ export interface operations {
|
|
|
44180
44785
|
query?: never;
|
|
44181
44786
|
header?: never;
|
|
44182
44787
|
path: {
|
|
44183
|
-
key_id: string;
|
|
44184
44788
|
workspace_id: string;
|
|
44789
|
+
key_id: string;
|
|
44185
44790
|
};
|
|
44186
44791
|
cookie?: never;
|
|
44187
44792
|
};
|
|
@@ -44224,8 +44829,8 @@ export interface operations {
|
|
|
44224
44829
|
query?: never;
|
|
44225
44830
|
header?: never;
|
|
44226
44831
|
path: {
|
|
44227
|
-
key_id: string;
|
|
44228
44832
|
workspace_id: string;
|
|
44833
|
+
key_id: string;
|
|
44229
44834
|
};
|
|
44230
44835
|
cookie?: never;
|
|
44231
44836
|
};
|
|
@@ -44374,8 +44979,8 @@ export interface operations {
|
|
|
44374
44979
|
query?: never;
|
|
44375
44980
|
header?: never;
|
|
44376
44981
|
path: {
|
|
44377
|
-
entity_id: string;
|
|
44378
44982
|
workspace_id: string;
|
|
44983
|
+
entity_id: string;
|
|
44379
44984
|
};
|
|
44380
44985
|
cookie?: never;
|
|
44381
44986
|
};
|
|
@@ -44427,8 +45032,8 @@ export interface operations {
|
|
|
44427
45032
|
query?: never;
|
|
44428
45033
|
header?: never;
|
|
44429
45034
|
path: {
|
|
44430
|
-
entity_id: string;
|
|
44431
45035
|
workspace_id: string;
|
|
45036
|
+
entity_id: string;
|
|
44432
45037
|
};
|
|
44433
45038
|
cookie?: never;
|
|
44434
45039
|
};
|
|
@@ -44466,9 +45071,9 @@ export interface operations {
|
|
|
44466
45071
|
query?: never;
|
|
44467
45072
|
header?: never;
|
|
44468
45073
|
path: {
|
|
45074
|
+
workspace_id: string;
|
|
44469
45075
|
entity_id: string;
|
|
44470
45076
|
key: string;
|
|
44471
|
-
workspace_id: string;
|
|
44472
45077
|
};
|
|
44473
45078
|
cookie?: never;
|
|
44474
45079
|
};
|
|
@@ -44526,9 +45131,9 @@ export interface operations {
|
|
|
44526
45131
|
};
|
|
44527
45132
|
header?: never;
|
|
44528
45133
|
path: {
|
|
45134
|
+
workspace_id: string;
|
|
44529
45135
|
entity_id: string;
|
|
44530
45136
|
key: string;
|
|
44531
|
-
workspace_id: string;
|
|
44532
45137
|
};
|
|
44533
45138
|
cookie?: never;
|
|
44534
45139
|
};
|
|
@@ -44566,8 +45171,8 @@ export interface operations {
|
|
|
44566
45171
|
query?: never;
|
|
44567
45172
|
header?: never;
|
|
44568
45173
|
path: {
|
|
44569
|
-
entity_id: string;
|
|
44570
45174
|
workspace_id: string;
|
|
45175
|
+
entity_id: string;
|
|
44571
45176
|
};
|
|
44572
45177
|
cookie?: never;
|
|
44573
45178
|
};
|
|
@@ -44614,8 +45219,8 @@ export interface operations {
|
|
|
44614
45219
|
query?: never;
|
|
44615
45220
|
header?: never;
|
|
44616
45221
|
path: {
|
|
44617
|
-
entity_id: string;
|
|
44618
45222
|
workspace_id: string;
|
|
45223
|
+
entity_id: string;
|
|
44619
45224
|
};
|
|
44620
45225
|
cookie?: never;
|
|
44621
45226
|
};
|
|
@@ -44662,8 +45267,8 @@ export interface operations {
|
|
|
44662
45267
|
query?: never;
|
|
44663
45268
|
header?: never;
|
|
44664
45269
|
path: {
|
|
44665
|
-
entity_id: string;
|
|
44666
45270
|
workspace_id: string;
|
|
45271
|
+
entity_id: string;
|
|
44667
45272
|
};
|
|
44668
45273
|
cookie?: never;
|
|
44669
45274
|
};
|
|
@@ -44708,8 +45313,8 @@ export interface operations {
|
|
|
44708
45313
|
query?: never;
|
|
44709
45314
|
header?: never;
|
|
44710
45315
|
path: {
|
|
44711
|
-
entity_id: string;
|
|
44712
45316
|
workspace_id: string;
|
|
45317
|
+
entity_id: string;
|
|
44713
45318
|
};
|
|
44714
45319
|
cookie?: never;
|
|
44715
45320
|
};
|
|
@@ -44759,8 +45364,8 @@ export interface operations {
|
|
|
44759
45364
|
};
|
|
44760
45365
|
header?: never;
|
|
44761
45366
|
path: {
|
|
44762
|
-
entity_id: string;
|
|
44763
45367
|
workspace_id: string;
|
|
45368
|
+
entity_id: string;
|
|
44764
45369
|
};
|
|
44765
45370
|
cookie?: never;
|
|
44766
45371
|
};
|
|
@@ -44817,8 +45422,8 @@ export interface operations {
|
|
|
44817
45422
|
};
|
|
44818
45423
|
header?: never;
|
|
44819
45424
|
path: {
|
|
44820
|
-
entity_id: string;
|
|
44821
45425
|
workspace_id: string;
|
|
45426
|
+
entity_id: string;
|
|
44822
45427
|
};
|
|
44823
45428
|
cookie?: never;
|
|
44824
45429
|
};
|
|
@@ -45191,8 +45796,8 @@ export interface operations {
|
|
|
45191
45796
|
query?: never;
|
|
45192
45797
|
header?: never;
|
|
45193
45798
|
path: {
|
|
45194
|
-
event_id: string;
|
|
45195
45799
|
workspace_id: string;
|
|
45800
|
+
event_id: string;
|
|
45196
45801
|
};
|
|
45197
45802
|
cookie?: never;
|
|
45198
45803
|
};
|