@amigo-ai/platform-sdk 0.44.0 → 0.46.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/dist/types/generated/api.d.ts +19 -85
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/actions.d.ts +5 -20
- package/dist/types/resources/actions.d.ts.map +1 -1
- package/dist/types/resources/calls.d.ts +3 -3
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/intake.d.ts.map +1 -1
- package/dist/types/resources/metrics.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/skills.d.ts +5 -20
- package/dist/types/resources/skills.d.ts.map +1 -1
- package/dist/types/resources/surfaces.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -7231,7 +7231,7 @@ export interface paths {
|
|
|
7231
7231
|
* Update a skill
|
|
7232
7232
|
* @description Update a skill's configuration. Increments version and creates an audit trail snapshot.
|
|
7233
7233
|
*
|
|
7234
|
-
* **Field semantics.** Omitted fields and explicit ``null`` are treated identically — both leave the existing value unchanged. Empty-string is rejected with 422 for fields that carry a ``minLength`` bound (``
|
|
7234
|
+
* **Field semantics.** Omitted fields and explicit ``null`` are treated identically — both leave the existing value unchanged. Empty-string is rejected with 422 for fields that carry a ``minLength`` bound (``model``). Clearing a previously-set optional value back to ``null`` is not currently supported via PUT.
|
|
7235
7235
|
*
|
|
7236
7236
|
* Requires `Skill.update` permission.
|
|
7237
7237
|
*/
|
|
@@ -10245,7 +10245,7 @@ export interface components {
|
|
|
10245
10245
|
/** Caller Id */
|
|
10246
10246
|
caller_id?: string | null;
|
|
10247
10247
|
/** Completion Reason */
|
|
10248
|
-
completion_reason?: ("completed" | "abandoned" | "escalated" | "transferred" | "timeout" | "error" | "voicemail" | "no_answer" | "caller_hangup" | "forwarded" | "terminal_state" | "warm_transfer_completed" | "no_inbound_audio" | "cancelled"
|
|
10248
|
+
completion_reason?: ("completed" | "abandoned" | "escalated" | "transferred" | "timeout" | "error" | "voicemail" | "no_answer" | "caller_hangup" | "forwarded" | "terminal_state" | "warm_transfer_completed" | "no_inbound_audio" | "cancelled") | null;
|
|
10249
10249
|
/** Conference Sid */
|
|
10250
10250
|
conference_sid?: string | null;
|
|
10251
10251
|
config?: components["schemas"]["ConversationConfig"] | null;
|
|
@@ -10355,7 +10355,7 @@ export interface components {
|
|
|
10355
10355
|
* Completion Reason
|
|
10356
10356
|
* @enum {string}
|
|
10357
10357
|
*/
|
|
10358
|
-
completion_reason: "completed" | "abandoned" | "escalated" | "transferred" | "timeout" | "error" | "voicemail" | "no_answer" | "caller_hangup" | "forwarded" | "terminal_state" | "warm_transfer_completed" | "no_inbound_audio" | "cancelled"
|
|
10358
|
+
completion_reason: "completed" | "abandoned" | "escalated" | "transferred" | "timeout" | "error" | "voicemail" | "no_answer" | "caller_hangup" | "forwarded" | "terminal_state" | "warm_transfer_completed" | "no_inbound_audio" | "cancelled";
|
|
10359
10359
|
/**
|
|
10360
10360
|
* Direction
|
|
10361
10361
|
* @enum {string}
|
|
@@ -10560,7 +10560,7 @@ export interface components {
|
|
|
10560
10560
|
* Completion Reason
|
|
10561
10561
|
* @description Why the call ended
|
|
10562
10562
|
*/
|
|
10563
|
-
completion_reason?: ("completed" | "abandoned" | "escalated" | "transferred" | "timeout" | "error" | "voicemail" | "no_answer" | "caller_hangup" | "forwarded" | "terminal_state" | "warm_transfer_completed" | "no_inbound_audio" | "cancelled"
|
|
10563
|
+
completion_reason?: ("completed" | "abandoned" | "escalated" | "transferred" | "timeout" | "error" | "voicemail" | "no_answer" | "caller_hangup" | "forwarded" | "terminal_state" | "warm_transfer_completed" | "no_inbound_audio" | "cancelled") | null;
|
|
10564
10564
|
/**
|
|
10565
10565
|
* Direction
|
|
10566
10566
|
* @description Call direction
|
|
@@ -11843,35 +11843,6 @@ export interface components {
|
|
|
11843
11843
|
*/
|
|
11844
11844
|
workspace_id: string;
|
|
11845
11845
|
};
|
|
11846
|
-
/** ConversationActorStartFailedRequest */
|
|
11847
|
-
ConversationActorStartFailedRequest: {
|
|
11848
|
-
channel_kind: components["schemas"]["ChannelKind"];
|
|
11849
|
-
provider: components["schemas"]["ProviderType"];
|
|
11850
|
-
/** Provider Thread Id */
|
|
11851
|
-
provider_thread_id: string;
|
|
11852
|
-
};
|
|
11853
|
-
/** ConversationActorStartFailedResponse */
|
|
11854
|
-
ConversationActorStartFailedResponse: {
|
|
11855
|
-
/**
|
|
11856
|
-
* Conversation Id
|
|
11857
|
-
* Format: uuid
|
|
11858
|
-
*/
|
|
11859
|
-
conversation_id: string;
|
|
11860
|
-
/** Rolled Back */
|
|
11861
|
-
rolled_back: boolean;
|
|
11862
|
-
/**
|
|
11863
|
-
* Status
|
|
11864
|
-
* @enum {string}
|
|
11865
|
-
*/
|
|
11866
|
-
status: "active" | "frozen" | "closed";
|
|
11867
|
-
/** Version */
|
|
11868
|
-
version: number;
|
|
11869
|
-
/**
|
|
11870
|
-
* Workspace Id
|
|
11871
|
-
* Format: uuid
|
|
11872
|
-
*/
|
|
11873
|
-
workspace_id: string;
|
|
11874
|
-
};
|
|
11875
11846
|
/** ConversationConfig */
|
|
11876
11847
|
ConversationConfig: {
|
|
11877
11848
|
/** Agent Id */
|
|
@@ -11923,6 +11894,11 @@ export interface components {
|
|
|
11923
11894
|
* Format: uuid
|
|
11924
11895
|
*/
|
|
11925
11896
|
id: string;
|
|
11897
|
+
/**
|
|
11898
|
+
* Lifecycle
|
|
11899
|
+
* @enum {string}
|
|
11900
|
+
*/
|
|
11901
|
+
lifecycle: "active" | "dormant" | "closed";
|
|
11926
11902
|
/** Phone Number */
|
|
11927
11903
|
phone_number?: string | null;
|
|
11928
11904
|
/** Plan */
|
|
@@ -11961,26 +11937,6 @@ export interface components {
|
|
|
11961
11937
|
/** Total */
|
|
11962
11938
|
total: number;
|
|
11963
11939
|
};
|
|
11964
|
-
/** ConversationReactivationResponse */
|
|
11965
|
-
ConversationReactivationResponse: {
|
|
11966
|
-
/**
|
|
11967
|
-
* Conversation Id
|
|
11968
|
-
* Format: uuid
|
|
11969
|
-
*/
|
|
11970
|
-
conversation_id: string;
|
|
11971
|
-
/**
|
|
11972
|
-
* Status
|
|
11973
|
-
* @enum {string}
|
|
11974
|
-
*/
|
|
11975
|
-
status: "active" | "reactivated";
|
|
11976
|
-
/** Version */
|
|
11977
|
-
version: number;
|
|
11978
|
-
/**
|
|
11979
|
-
* Workspace Id
|
|
11980
|
-
* Format: uuid
|
|
11981
|
-
*/
|
|
11982
|
-
workspace_id: string;
|
|
11983
|
-
};
|
|
11984
11940
|
/** ConversationStateSaveRequest */
|
|
11985
11941
|
ConversationStateSaveRequest: {
|
|
11986
11942
|
/** Entity Id */
|
|
@@ -12806,12 +12762,6 @@ export interface components {
|
|
|
12806
12762
|
* @default false
|
|
12807
12763
|
*/
|
|
12808
12764
|
approval_required?: boolean;
|
|
12809
|
-
/** Browser Allowed Domains */
|
|
12810
|
-
browser_allowed_domains?: string[];
|
|
12811
|
-
/** Browser Auth Integration */
|
|
12812
|
-
browser_auth_integration?: string | null;
|
|
12813
|
-
/** Browser Start Url */
|
|
12814
|
-
browser_start_url?: string | null;
|
|
12815
12765
|
/**
|
|
12816
12766
|
* Checkpoint Enabled
|
|
12817
12767
|
* @default true
|
|
@@ -12844,7 +12794,7 @@ export interface components {
|
|
|
12844
12794
|
* @default orchestrated
|
|
12845
12795
|
* @enum {string}
|
|
12846
12796
|
*/
|
|
12847
|
-
execution_tier?: "direct" | "orchestrated" | "
|
|
12797
|
+
execution_tier?: "direct" | "orchestrated" | "computer_use";
|
|
12848
12798
|
/** Input Schema */
|
|
12849
12799
|
input_schema: {
|
|
12850
12800
|
[key: string]: unknown;
|
|
@@ -17797,15 +17747,6 @@ export interface components {
|
|
|
17797
17747
|
* @default false
|
|
17798
17748
|
*/
|
|
17799
17749
|
approval_required?: boolean;
|
|
17800
|
-
/**
|
|
17801
|
-
* Browser Allowed Domains
|
|
17802
|
-
* @default []
|
|
17803
|
-
*/
|
|
17804
|
-
browser_allowed_domains?: string[];
|
|
17805
|
-
/** Browser Auth Integration */
|
|
17806
|
-
browser_auth_integration?: string | null;
|
|
17807
|
-
/** Browser Start Url */
|
|
17808
|
-
browser_start_url?: string | null;
|
|
17809
17750
|
/**
|
|
17810
17751
|
* Checkpoint Enabled
|
|
17811
17752
|
* @default true
|
|
@@ -17839,7 +17780,7 @@ export interface components {
|
|
|
17839
17780
|
* @default orchestrated
|
|
17840
17781
|
* @enum {string}
|
|
17841
17782
|
*/
|
|
17842
|
-
execution_tier?: "direct" | "orchestrated" | "
|
|
17783
|
+
execution_tier?: "direct" | "orchestrated" | "computer_use";
|
|
17843
17784
|
/**
|
|
17844
17785
|
* Id
|
|
17845
17786
|
* Format: uuid
|
|
@@ -23987,12 +23928,6 @@ export interface components {
|
|
|
23987
23928
|
SkillResponse: {
|
|
23988
23929
|
/** Approval Required */
|
|
23989
23930
|
approval_required: boolean;
|
|
23990
|
-
/** Browser Allowed Domains */
|
|
23991
|
-
browser_allowed_domains: string[];
|
|
23992
|
-
/** Browser Auth Integration */
|
|
23993
|
-
browser_auth_integration: string | null;
|
|
23994
|
-
/** Browser Start Url */
|
|
23995
|
-
browser_start_url: string | null;
|
|
23996
23931
|
/** Checkpoint Enabled */
|
|
23997
23932
|
checkpoint_enabled: boolean;
|
|
23998
23933
|
/**
|
|
@@ -24017,7 +23952,7 @@ export interface components {
|
|
|
24017
23952
|
* Execution Tier
|
|
24018
23953
|
* @enum {string}
|
|
24019
23954
|
*/
|
|
24020
|
-
execution_tier: "direct" | "orchestrated" | "
|
|
23955
|
+
execution_tier: "direct" | "orchestrated" | "computer_use";
|
|
24021
23956
|
/**
|
|
24022
23957
|
* Id
|
|
24023
23958
|
* Format: uuid
|
|
@@ -27273,12 +27208,6 @@ export interface components {
|
|
|
27273
27208
|
UpdateSkillRequest: {
|
|
27274
27209
|
/** Approval Required */
|
|
27275
27210
|
approval_required?: boolean | null;
|
|
27276
|
-
/** Browser Allowed Domains */
|
|
27277
|
-
browser_allowed_domains?: string[] | null;
|
|
27278
|
-
/** Browser Auth Integration */
|
|
27279
|
-
browser_auth_integration?: string | null;
|
|
27280
|
-
/** Browser Start Url */
|
|
27281
|
-
browser_start_url?: string | null;
|
|
27282
27211
|
/** Checkpoint Enabled */
|
|
27283
27212
|
checkpoint_enabled?: boolean | null;
|
|
27284
27213
|
/** Delivery */
|
|
@@ -27291,7 +27220,7 @@ export interface components {
|
|
|
27291
27220
|
/** Enabled */
|
|
27292
27221
|
enabled?: boolean | null;
|
|
27293
27222
|
/** Execution Tier */
|
|
27294
|
-
execution_tier?: ("direct" | "orchestrated" | "
|
|
27223
|
+
execution_tier?: ("direct" | "orchestrated" | "computer_use") | null;
|
|
27295
27224
|
/** Input Schema */
|
|
27296
27225
|
input_schema?: {
|
|
27297
27226
|
[key: string]: unknown;
|
|
@@ -28844,6 +28773,11 @@ export interface components {
|
|
|
28844
28773
|
* Format: uuid
|
|
28845
28774
|
*/
|
|
28846
28775
|
id: string;
|
|
28776
|
+
/**
|
|
28777
|
+
* Lifecycle
|
|
28778
|
+
* @enum {string}
|
|
28779
|
+
*/
|
|
28780
|
+
lifecycle: "active" | "dormant" | "closed";
|
|
28847
28781
|
/** Phone Number */
|
|
28848
28782
|
phone_number?: string | null;
|
|
28849
28783
|
/** Quality Score */
|
|
@@ -45615,7 +45549,7 @@ export interface operations {
|
|
|
45615
45549
|
parameters: {
|
|
45616
45550
|
query?: {
|
|
45617
45551
|
enabled?: boolean | null;
|
|
45618
|
-
execution_tier?: ("direct" | "orchestrated" | "
|
|
45552
|
+
execution_tier?: ("direct" | "orchestrated" | "computer_use") | null;
|
|
45619
45553
|
search?: components["schemas"]["SearchString"] | null;
|
|
45620
45554
|
sort_by?: string | null;
|
|
45621
45555
|
limit?: number;
|