@amigo-ai/platform-sdk 0.45.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.
@@ -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 (``browser_start_url``, ``browser_auth_integration``, ``model``). Clearing a previously-set optional value back to ``null`` is not currently supported via PUT.
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" | "max_duration" | "idle_timeout" | "client_stop" | "transport_error" | "disconnected" | "transport_closed" | "unknown" | "conference_ended") | null;
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" | "max_duration" | "idle_timeout" | "client_stop" | "transport_error" | "disconnected" | "transport_closed" | "unknown" | "conference_ended";
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" | "max_duration" | "idle_timeout" | "client_stop" | "transport_error" | "disconnected" | "transport_closed" | "unknown" | "conference_ended") | null;
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
@@ -12762,12 +12762,6 @@ export interface components {
12762
12762
  * @default false
12763
12763
  */
12764
12764
  approval_required?: boolean;
12765
- /** Browser Allowed Domains */
12766
- browser_allowed_domains?: string[];
12767
- /** Browser Auth Integration */
12768
- browser_auth_integration?: string | null;
12769
- /** Browser Start Url */
12770
- browser_start_url?: string | null;
12771
12765
  /**
12772
12766
  * Checkpoint Enabled
12773
12767
  * @default true
@@ -12800,7 +12794,7 @@ export interface components {
12800
12794
  * @default orchestrated
12801
12795
  * @enum {string}
12802
12796
  */
12803
- execution_tier?: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
12797
+ execution_tier?: "direct" | "orchestrated" | "computer_use";
12804
12798
  /** Input Schema */
12805
12799
  input_schema: {
12806
12800
  [key: string]: unknown;
@@ -17753,15 +17747,6 @@ export interface components {
17753
17747
  * @default false
17754
17748
  */
17755
17749
  approval_required?: boolean;
17756
- /**
17757
- * Browser Allowed Domains
17758
- * @default []
17759
- */
17760
- browser_allowed_domains?: string[];
17761
- /** Browser Auth Integration */
17762
- browser_auth_integration?: string | null;
17763
- /** Browser Start Url */
17764
- browser_start_url?: string | null;
17765
17750
  /**
17766
17751
  * Checkpoint Enabled
17767
17752
  * @default true
@@ -17795,7 +17780,7 @@ export interface components {
17795
17780
  * @default orchestrated
17796
17781
  * @enum {string}
17797
17782
  */
17798
- execution_tier?: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
17783
+ execution_tier?: "direct" | "orchestrated" | "computer_use";
17799
17784
  /**
17800
17785
  * Id
17801
17786
  * Format: uuid
@@ -23943,12 +23928,6 @@ export interface components {
23943
23928
  SkillResponse: {
23944
23929
  /** Approval Required */
23945
23930
  approval_required: boolean;
23946
- /** Browser Allowed Domains */
23947
- browser_allowed_domains: string[];
23948
- /** Browser Auth Integration */
23949
- browser_auth_integration: string | null;
23950
- /** Browser Start Url */
23951
- browser_start_url: string | null;
23952
23931
  /** Checkpoint Enabled */
23953
23932
  checkpoint_enabled: boolean;
23954
23933
  /**
@@ -23973,7 +23952,7 @@ export interface components {
23973
23952
  * Execution Tier
23974
23953
  * @enum {string}
23975
23954
  */
23976
- execution_tier: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
23955
+ execution_tier: "direct" | "orchestrated" | "computer_use";
23977
23956
  /**
23978
23957
  * Id
23979
23958
  * Format: uuid
@@ -27229,12 +27208,6 @@ export interface components {
27229
27208
  UpdateSkillRequest: {
27230
27209
  /** Approval Required */
27231
27210
  approval_required?: boolean | null;
27232
- /** Browser Allowed Domains */
27233
- browser_allowed_domains?: string[] | null;
27234
- /** Browser Auth Integration */
27235
- browser_auth_integration?: string | null;
27236
- /** Browser Start Url */
27237
- browser_start_url?: string | null;
27238
27211
  /** Checkpoint Enabled */
27239
27212
  checkpoint_enabled?: boolean | null;
27240
27213
  /** Delivery */
@@ -27247,7 +27220,7 @@ export interface components {
27247
27220
  /** Enabled */
27248
27221
  enabled?: boolean | null;
27249
27222
  /** Execution Tier */
27250
- execution_tier?: ("direct" | "orchestrated" | "autonomous" | "browser" | "computer_use") | null;
27223
+ execution_tier?: ("direct" | "orchestrated" | "computer_use") | null;
27251
27224
  /** Input Schema */
27252
27225
  input_schema?: {
27253
27226
  [key: string]: unknown;
@@ -45576,7 +45549,7 @@ export interface operations {
45576
45549
  parameters: {
45577
45550
  query?: {
45578
45551
  enabled?: boolean | null;
45579
- execution_tier?: ("direct" | "orchestrated" | "autonomous" | "browser" | "computer_use") | null;
45552
+ execution_tier?: ("direct" | "orchestrated" | "computer_use") | null;
45580
45553
  search?: components["schemas"]["SearchString"] | null;
45581
45554
  sort_by?: string | null;
45582
45555
  limit?: number;