@amigo-ai/platform-sdk 0.32.0 → 0.34.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.
@@ -2741,6 +2741,26 @@ export interface paths {
2741
2741
  patch?: never;
2742
2742
  trace?: never;
2743
2743
  };
2744
+ "/v1/{workspace_id}/fhir/import-stream": {
2745
+ parameters: {
2746
+ query?: never;
2747
+ header?: never;
2748
+ path?: never;
2749
+ cookie?: never;
2750
+ };
2751
+ get?: never;
2752
+ put?: never;
2753
+ /**
2754
+ * Import FHIR resources via NDJSON streaming
2755
+ * @description Stream FHIR resources as NDJSON (one resource per line). Bypasses the buffered-body size cap on /fhir/import. Callers MUST send Patient resources before resources that reference them, and MUST pre-resolve any bundle-internal urn:uuid: references.
2756
+ */
2757
+ post: operations["fhir-import-stream"];
2758
+ delete?: never;
2759
+ options?: never;
2760
+ head?: never;
2761
+ patch?: never;
2762
+ trace?: never;
2763
+ };
2744
2764
  "/v1/{workspace_id}/fhir/patients": {
2745
2765
  parameters: {
2746
2766
  query?: never;
@@ -5660,6 +5680,26 @@ export interface paths {
5660
5680
  patch?: never;
5661
5681
  trace?: never;
5662
5682
  };
5683
+ "/v1/{workspace_id}/services/{service_id}/text-turn": {
5684
+ parameters: {
5685
+ query?: never;
5686
+ header?: never;
5687
+ path?: never;
5688
+ cookie?: never;
5689
+ };
5690
+ get?: never;
5691
+ put?: never;
5692
+ /**
5693
+ * Text Turn
5694
+ * @description Run one WhatsApp-style text turn against the service's agent.
5695
+ */
5696
+ post: operations["text-turn"];
5697
+ delete?: never;
5698
+ options?: never;
5699
+ head?: never;
5700
+ patch?: never;
5701
+ trace?: never;
5702
+ };
5663
5703
  "/v1/{workspace_id}/services/{service_id}/tools/resolve": {
5664
5704
  parameters: {
5665
5705
  query?: never;
@@ -6881,13 +6921,19 @@ export interface paths {
6881
6921
  get: operations["get-skill"];
6882
6922
  /**
6883
6923
  * Update a skill
6884
- * @description Update a skill's configuration. Increments version and creates an audit trail snapshot. Requires `Skill.update` permission.
6924
+ * @description Update a skill's configuration. Increments version and creates an audit trail snapshot.
6925
+ *
6926
+ * **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.
6927
+ *
6928
+ * Requires `Skill.update` permission.
6885
6929
  */
6886
6930
  put: operations["update-skill"];
6887
6931
  post?: never;
6888
6932
  /**
6889
6933
  * Delete a skill
6890
- * @description Delete a skill. SkillVersion audit trail is retained. Requires `Skill.delete` permission.
6934
+ * @description Delete a skill. SkillVersion audit trail is retained.
6935
+ *
6936
+ * **Not idempotent.** A second concurrent caller racing the same delete will receive ``404 Not Found`` once the row is gone — clients should treat 404 as success-equivalent for cleanup workflows. Requires `Skill.delete` permission.
6891
6937
  */
6892
6938
  delete: operations["delete-skill"];
6893
6939
  options?: never;
@@ -9056,8 +9102,8 @@ export interface components {
9056
9102
  * @description Authentication configuration for an integration.
9057
9103
  *
9058
9104
  * Supports api_key_header, bearer_token, oauth2_client_credentials,
9059
- * oauth2_jwt_bearer, gcp_wif, smart_backend_services, and
9060
- * bearer_token_exchange.
9105
+ * json_token_exchange, oauth2_jwt_bearer, gcp_wif,
9106
+ * smart_backend_services, and bearer_token_exchange.
9061
9107
  */
9062
9108
  AuthConfig: {
9063
9109
  /** Assertion Algorithm */
@@ -9122,6 +9168,12 @@ export interface components {
9122
9168
  * @default 3600
9123
9169
  */
9124
9170
  token_lifetime_seconds?: number;
9171
+ /** Token Request Client Id Field */
9172
+ token_request_client_id_field?: string | null;
9173
+ /** Token Request Client Secret Field */
9174
+ token_request_client_secret_field?: string | null;
9175
+ /** Token Response Path */
9176
+ token_response_path?: string | null;
9125
9177
  /** Token Ssm Param Path */
9126
9178
  token_ssm_param_path?: string | null;
9127
9179
  /** Token Url */
@@ -9130,7 +9182,7 @@ export interface components {
9130
9182
  * Type
9131
9183
  * @enum {string}
9132
9184
  */
9133
- type: "api_key_header" | "bearer_token" | "oauth2_client_credentials" | "oauth2_jwt_bearer" | "gcp_wif" | "smart_backend_services" | "bearer_token_exchange";
9185
+ type: "api_key_header" | "bearer_token" | "oauth2_client_credentials" | "json_token_exchange" | "oauth2_jwt_bearer" | "gcp_wif" | "smart_backend_services" | "bearer_token_exchange";
9134
9186
  };
9135
9187
  /**
9136
9188
  * AuthConfigWithSecrets
@@ -9207,6 +9259,12 @@ export interface components {
9207
9259
  * @default 3600
9208
9260
  */
9209
9261
  token_lifetime_seconds?: number;
9262
+ /** Token Request Client Id Field */
9263
+ token_request_client_id_field?: string | null;
9264
+ /** Token Request Client Secret Field */
9265
+ token_request_client_secret_field?: string | null;
9266
+ /** Token Response Path */
9267
+ token_response_path?: string | null;
9210
9268
  /** Token Ssm Param Path */
9211
9269
  token_ssm_param_path?: string | null;
9212
9270
  /** Token Url */
@@ -9215,7 +9273,7 @@ export interface components {
9215
9273
  * Type
9216
9274
  * @enum {string}
9217
9275
  */
9218
- type: "api_key_header" | "bearer_token" | "oauth2_client_credentials" | "oauth2_jwt_bearer" | "gcp_wif" | "smart_backend_services" | "bearer_token_exchange";
9276
+ type: "api_key_header" | "bearer_token" | "oauth2_client_credentials" | "json_token_exchange" | "oauth2_jwt_bearer" | "gcp_wif" | "smart_backend_services" | "bearer_token_exchange";
9219
9277
  };
9220
9278
  /** AuthInfoResponse */
9221
9279
  AuthInfoResponse: {
@@ -12444,7 +12502,7 @@ export interface components {
12444
12502
  * @enum {string}
12445
12503
  */
12446
12504
  delivery?: "interrupt" | "queue";
12447
- description: components["schemas"]["StrippedNonemptyString"];
12505
+ description: components["schemas"]["DescriptionString"];
12448
12506
  /**
12449
12507
  * Enable Caching
12450
12508
  * @default true
@@ -12494,7 +12552,7 @@ export interface components {
12494
12552
  * @default claude-sonnet-4-6
12495
12553
  */
12496
12554
  model?: string;
12497
- name: components["schemas"]["StrippedNonemptyString"];
12555
+ name: components["schemas"]["NameString"];
12498
12556
  /** Result Schema */
12499
12557
  result_schema?: {
12500
12558
  [key: string]: unknown;
@@ -12503,7 +12561,7 @@ export interface components {
12503
12561
  slug: string;
12504
12562
  /** Static Tools */
12505
12563
  static_tools?: components["schemas"]["StaticToolDef-Input"][];
12506
- system_prompt?: components["schemas"]["StrippedNonemptyString"] | null;
12564
+ system_prompt?: components["schemas"]["BackgroundString"] | null;
12507
12565
  /** Thinking Effort */
12508
12566
  thinking_effort?: ("low" | "medium" | "high") | null;
12509
12567
  /**
@@ -22683,6 +22741,33 @@ export interface components {
22683
22741
  * @default 0
22684
22742
  */
22685
22743
  fail_count?: number;
22744
+ /** Immediate Average Score */
22745
+ immediate_average_score?: number | null;
22746
+ /**
22747
+ * Immediate Fail Count
22748
+ * @default 0
22749
+ */
22750
+ immediate_fail_count?: number;
22751
+ /**
22752
+ * Immediate Pass Count
22753
+ * @default 0
22754
+ */
22755
+ immediate_pass_count?: number;
22756
+ /** Immediate Passed */
22757
+ immediate_passed?: boolean | null;
22758
+ /**
22759
+ * Metric Result Count
22760
+ * @default 0
22761
+ */
22762
+ metric_result_count?: number;
22763
+ /**
22764
+ * Metric Status
22765
+ * @default pending
22766
+ * @enum {string}
22767
+ */
22768
+ metric_status?: "pending" | "available" | "unavailable";
22769
+ /** Metrics Last Checked At */
22770
+ metrics_last_checked_at?: string | null;
22686
22771
  /**
22687
22772
  * Pass Count
22688
22773
  * @default 0
@@ -22759,6 +22844,19 @@ export interface components {
22759
22844
  * @default 0
22760
22845
  */
22761
22846
  failed_count?: number;
22847
+ /**
22848
+ * Metric Result Count
22849
+ * @default 0
22850
+ */
22851
+ metric_result_count?: number;
22852
+ /**
22853
+ * Metric Status
22854
+ * @default pending
22855
+ * @enum {string}
22856
+ */
22857
+ metric_status?: "pending" | "available" | "unavailable";
22858
+ /** Metrics Last Checked At */
22859
+ metrics_last_checked_at?: string | null;
22762
22860
  /** Missing Run Ids */
22763
22861
  missing_run_ids?: string[];
22764
22862
  /**
@@ -22871,6 +22969,19 @@ export interface components {
22871
22969
  * Format: uuid
22872
22970
  */
22873
22971
  id: string;
22972
+ /**
22973
+ * Metric Result Count
22974
+ * @default 0
22975
+ */
22976
+ metric_result_count?: number;
22977
+ /**
22978
+ * Metric Status
22979
+ * @default pending
22980
+ * @enum {string}
22981
+ */
22982
+ metric_status?: "pending" | "available" | "unavailable";
22983
+ /** Metrics Last Checked At */
22984
+ metrics_last_checked_at?: string | null;
22874
22985
  /** Objective */
22875
22986
  objective?: string | null;
22876
22987
  /** Scenarios */
@@ -24785,6 +24896,195 @@ export interface components {
24785
24896
  /** Session Id */
24786
24897
  session_id: string;
24787
24898
  };
24899
+ /**
24900
+ * TextStreamErrorFrame
24901
+ * @description Recoverable error mid-session. The connection MAY remain open;
24902
+ * for terminal errors the WebSocket is closed with a 4xxx code instead
24903
+ * of (or in addition to) this frame.
24904
+ */
24905
+ TextStreamErrorFrame: {
24906
+ /** Message */
24907
+ message: string;
24908
+ /**
24909
+ * @description discriminator enum property added by openapi-typescript
24910
+ * @enum {string}
24911
+ */
24912
+ type: "error";
24913
+ };
24914
+ TextStreamFrame: components["schemas"]["TextStreamSessionStartedFrame"] | components["schemas"]["TextStreamSessionEndedFrame"] | components["schemas"]["TextStreamErrorFrame"] | components["schemas"]["TextStreamPingFrame"] | components["schemas"]["TextStreamTypingFrame"] | components["schemas"]["TextStreamResponseCompleteFrame"] | components["schemas"]["TextStreamMessageFrame"] | components["schemas"]["TextStreamToolCallStartedFrame"] | components["schemas"]["TextStreamToolCallCompletedFrame"];
24915
+ /**
24916
+ * TextStreamMessageFrame
24917
+ * @description Final consolidated agent message for a turn. ``role`` defaults
24918
+ * to ``"agent"`` because that is the only role that originates server
24919
+ * frames; the field is on the wire so a future bidirectional
24920
+ * extension (e.g. mid-turn system messages) can be added without a
24921
+ * schema break.
24922
+ */
24923
+ TextStreamMessageFrame: {
24924
+ /**
24925
+ * Role
24926
+ * @default agent
24927
+ */
24928
+ role?: string;
24929
+ /** Text */
24930
+ text: string;
24931
+ /**
24932
+ * @description discriminator enum property added by openapi-typescript
24933
+ * @enum {string}
24934
+ */
24935
+ type: "message";
24936
+ };
24937
+ /**
24938
+ * TextStreamPingFrame
24939
+ * @description Keepalive frame emitted at the heartbeat interval. Consumers
24940
+ * SHOULD reset the dead-socket watchdog and otherwise ignore it.
24941
+ */
24942
+ TextStreamPingFrame: {
24943
+ /**
24944
+ * @description discriminator enum property added by openapi-typescript
24945
+ * @enum {string}
24946
+ */
24947
+ type: "ping";
24948
+ };
24949
+ /**
24950
+ * TextStreamResponseCompleteFrame
24951
+ * @description Marks the end of an agent turn. The next user message can be
24952
+ * sent. ``duplicate=true`` indicates the server suppressed a repeat
24953
+ * response (idempotent ``message`` send-with-same-client_message_id).
24954
+ */
24955
+ TextStreamResponseCompleteFrame: {
24956
+ /**
24957
+ * Duplicate
24958
+ * @default false
24959
+ */
24960
+ duplicate?: boolean;
24961
+ /**
24962
+ * @description discriminator enum property added by openapi-typescript
24963
+ * @enum {string}
24964
+ */
24965
+ type: "response_complete";
24966
+ };
24967
+ /**
24968
+ * TextStreamSessionEndedFrame
24969
+ * @description Graceful end-of-conversation. ``reason`` echoes the actor's
24970
+ * completion reason (``stopped``, ``completed``, ``escalated``,
24971
+ * ``disconnected``, ``other``).
24972
+ */
24973
+ TextStreamSessionEndedFrame: {
24974
+ /**
24975
+ * Reason
24976
+ * @default other
24977
+ */
24978
+ reason?: string;
24979
+ /**
24980
+ * @description discriminator enum property added by openapi-typescript
24981
+ * @enum {string}
24982
+ */
24983
+ type: "session_ended";
24984
+ };
24985
+ /**
24986
+ * TextStreamSessionStartedFrame
24987
+ * @description First frame after the WebSocket handshake completes. Carries the
24988
+ * session_id (server-minted) and the conversation_id the actor bound
24989
+ * to (newly minted, or the one supplied via the ``conversation_id``
24990
+ * query param).
24991
+ */
24992
+ TextStreamSessionStartedFrame: {
24993
+ /** Conversation Id */
24994
+ conversation_id: string;
24995
+ /** Session Id */
24996
+ session_id: string;
24997
+ /**
24998
+ * @description discriminator enum property added by openapi-typescript
24999
+ * @enum {string}
25000
+ */
25001
+ type: "session_started";
25002
+ };
25003
+ /**
25004
+ * TextStreamToolCallCompletedFrame
25005
+ * @description Companion to ``TextStreamToolCallStartedFrame``. ``result`` is
25006
+ * the tool's stringified output; binary or large results are sent
25007
+ * out-of-band and not surfaced here.
25008
+ */
25009
+ TextStreamToolCallCompletedFrame: {
25010
+ /** Call Id */
25011
+ call_id: string;
25012
+ /**
25013
+ * Result
25014
+ * @default
25015
+ */
25016
+ result?: string;
25017
+ /**
25018
+ * Succeeded
25019
+ * @default true
25020
+ */
25021
+ succeeded?: boolean;
25022
+ /** Tool Name */
25023
+ tool_name: string;
25024
+ /**
25025
+ * @description discriminator enum property added by openapi-typescript
25026
+ * @enum {string}
25027
+ */
25028
+ type: "tool_call_completed";
25029
+ };
25030
+ /**
25031
+ * TextStreamToolCallStartedFrame
25032
+ * @description A tool-call effect from the most-recent agent turn. Both
25033
+ * ``tool_call_started`` and the matching ``tool_call_completed``
25034
+ * arrive after the tool already ran — they are post-hoc summaries,
25035
+ * not real-time progress events. Frontends typically animate them as
25036
+ * a sequence.
25037
+ */
25038
+ TextStreamToolCallStartedFrame: {
25039
+ /** Call Id */
25040
+ call_id: string;
25041
+ /**
25042
+ * Input
25043
+ * @default null
25044
+ */
25045
+ input?: {
25046
+ [key: string]: unknown;
25047
+ } | string | null;
25048
+ /** Tool Name */
25049
+ tool_name: string;
25050
+ /**
25051
+ * @description discriminator enum property added by openapi-typescript
25052
+ * @enum {string}
25053
+ */
25054
+ type: "tool_call_started";
25055
+ };
25056
+ /**
25057
+ * TextStreamTypingFrame
25058
+ * @description Indicates the agent is preparing a response. Pure UX hint;
25059
+ * no payload.
25060
+ */
25061
+ TextStreamTypingFrame: {
25062
+ /**
25063
+ * @description discriminator enum property added by openapi-typescript
25064
+ * @enum {string}
25065
+ */
25066
+ type: "typing";
25067
+ };
25068
+ /**
25069
+ * TextTurnRequest
25070
+ * @description Request body for ``POST /v1/{ws}/services/{service_id}/text-turn``.
25071
+ */
25072
+ TextTurnRequest: {
25073
+ /** Phone Number */
25074
+ phone_number: string;
25075
+ /** Text */
25076
+ text: string;
25077
+ };
25078
+ /**
25079
+ * TextTurnResponse
25080
+ * @description Response body — the agent's text reply.
25081
+ *
25082
+ * Returned only on 200; 204 indicates the engine elected silence.
25083
+ */
25084
+ TextTurnResponse: {
25085
+ /** Text */
25086
+ text: string;
25087
+ };
24788
25088
  /** ThroughputBucket */
24789
25089
  ThroughputBucket: {
24790
25090
  /** Bucket */
@@ -24978,21 +25278,43 @@ export interface components {
24978
25278
  };
24979
25279
  /** ToolCallCompletedEvent */
24980
25280
  ToolCallCompletedEvent: {
25281
+ /** Call Id */
25282
+ call_id: string;
24981
25283
  /**
24982
25284
  * Duration Ms
24983
25285
  * @default null
24984
25286
  */
24985
25287
  duration_ms?: number | null;
24986
25288
  /**
24987
- * Error
25289
+ * Endpoint Name
24988
25290
  * @default null
24989
25291
  */
24990
- error?: string | null;
25292
+ endpoint_name?: string | null;
25293
+ /**
25294
+ * Error Message
25295
+ * @default null
25296
+ */
25297
+ error_message?: string | null;
25298
+ /**
25299
+ * Integration Name
25300
+ * @default null
25301
+ */
25302
+ integration_name?: string | null;
24991
25303
  /**
24992
25304
  * Output
24993
25305
  * @default null
24994
25306
  */
24995
25307
  output?: string | null;
25308
+ /**
25309
+ * Parent Call Id
25310
+ * @default null
25311
+ */
25312
+ parent_call_id?: string | null;
25313
+ /**
25314
+ * Protocol
25315
+ * @default null
25316
+ */
25317
+ protocol?: string | null;
24996
25318
  /**
24997
25319
  * Succeeded
24998
25320
  * @default true
@@ -25065,13 +25387,35 @@ export interface components {
25065
25387
  };
25066
25388
  /** ToolCallStartedEvent */
25067
25389
  ToolCallStartedEvent: {
25390
+ /** Call Id */
25391
+ call_id: string;
25068
25392
  /**
25069
- * Tool Input
25393
+ * Endpoint Name
25070
25394
  * @default null
25071
25395
  */
25072
- tool_input?: {
25396
+ endpoint_name?: string | null;
25397
+ /**
25398
+ * Input
25399
+ * @default null
25400
+ */
25401
+ input?: {
25073
25402
  [key: string]: unknown;
25074
- } | null;
25403
+ } | string | null;
25404
+ /**
25405
+ * Integration Name
25406
+ * @default null
25407
+ */
25408
+ integration_name?: string | null;
25409
+ /**
25410
+ * Parent Call Id
25411
+ * @default null
25412
+ */
25413
+ parent_call_id?: string | null;
25414
+ /**
25415
+ * Protocol
25416
+ * @default null
25417
+ */
25418
+ protocol?: string | null;
25075
25419
  /** Tool Name */
25076
25420
  tool_name: string;
25077
25421
  /**
@@ -26330,7 +26674,7 @@ export interface components {
26330
26674
  checkpoint_enabled?: boolean | null;
26331
26675
  /** Delivery */
26332
26676
  delivery?: ("interrupt" | "queue") | null;
26333
- description?: components["schemas"]["StrippedNonemptyString"] | null;
26677
+ description?: components["schemas"]["DescriptionString"] | null;
26334
26678
  /** Enable Caching */
26335
26679
  enable_caching?: boolean | null;
26336
26680
  /** Enable Citations */
@@ -26355,14 +26699,14 @@ export interface components {
26355
26699
  max_tokens?: number | null;
26356
26700
  /** Model */
26357
26701
  model?: string | null;
26358
- name?: components["schemas"]["StrippedNonemptyString"] | null;
26702
+ name?: components["schemas"]["NameString"] | null;
26359
26703
  /** Result Schema */
26360
26704
  result_schema?: {
26361
26705
  [key: string]: unknown;
26362
26706
  } | null;
26363
26707
  /** Static Tools */
26364
26708
  static_tools?: components["schemas"]["StaticToolDef-Input"][] | null;
26365
- system_prompt?: components["schemas"]["StrippedNonemptyString"] | null;
26709
+ system_prompt?: components["schemas"]["BackgroundString"] | null;
26366
26710
  /** Thinking Effort */
26367
26711
  thinking_effort?: ("low" | "medium" | "high") | null;
26368
26712
  /** Timeout S */
@@ -34621,6 +34965,48 @@ export interface operations {
34621
34965
  };
34622
34966
  };
34623
34967
  };
34968
+ "fhir-import-stream": {
34969
+ parameters: {
34970
+ query?: {
34971
+ source?: string;
34972
+ source_system?: string | null;
34973
+ data_source_id?: string | null;
34974
+ };
34975
+ header?: never;
34976
+ path: {
34977
+ workspace_id: string;
34978
+ };
34979
+ cookie?: never;
34980
+ };
34981
+ requestBody?: never;
34982
+ responses: {
34983
+ /** @description Successful Response */
34984
+ 200: {
34985
+ headers: {
34986
+ [name: string]: unknown;
34987
+ };
34988
+ content: {
34989
+ "application/json": components["schemas"]["FhirImportResponse"];
34990
+ };
34991
+ };
34992
+ /** @description Stream exceeded line cap. */
34993
+ 400: {
34994
+ headers: {
34995
+ [name: string]: unknown;
34996
+ };
34997
+ content?: never;
34998
+ };
34999
+ /** @description Validation Error */
35000
+ 422: {
35001
+ headers: {
35002
+ [name: string]: unknown;
35003
+ };
35004
+ content: {
35005
+ "application/json": components["schemas"]["HTTPValidationError"];
35006
+ };
35007
+ };
35008
+ };
35009
+ };
34624
35010
  "fhir-patient-search": {
34625
35011
  parameters: {
34626
35012
  query?: {
@@ -41317,6 +41703,56 @@ export interface operations {
41317
41703
  };
41318
41704
  };
41319
41705
  };
41706
+ "text-turn": {
41707
+ parameters: {
41708
+ query?: never;
41709
+ header?: never;
41710
+ path: {
41711
+ workspace_id: string;
41712
+ service_id: string;
41713
+ };
41714
+ cookie?: never;
41715
+ };
41716
+ requestBody: {
41717
+ content: {
41718
+ "application/json": components["schemas"]["TextTurnRequest"];
41719
+ };
41720
+ };
41721
+ responses: {
41722
+ /** @description Agent text reply */
41723
+ 200: {
41724
+ headers: {
41725
+ [name: string]: unknown;
41726
+ };
41727
+ content: {
41728
+ "application/json": components["schemas"]["TextTurnResponse"];
41729
+ };
41730
+ };
41731
+ /** @description Agent elected silence */
41732
+ 204: {
41733
+ headers: {
41734
+ [name: string]: unknown;
41735
+ };
41736
+ content?: never;
41737
+ };
41738
+ /** @description Concurrent text turn in progress for this speaker */
41739
+ 409: {
41740
+ headers: {
41741
+ [name: string]: unknown;
41742
+ };
41743
+ content?: never;
41744
+ };
41745
+ /** @description Validation Error */
41746
+ 422: {
41747
+ headers: {
41748
+ [name: string]: unknown;
41749
+ };
41750
+ content: {
41751
+ "application/json": components["schemas"]["HTTPValidationError"];
41752
+ };
41753
+ };
41754
+ };
41755
+ };
41320
41756
  "resolve-service-tools": {
41321
41757
  parameters: {
41322
41758
  query?: never;
@@ -43853,7 +44289,7 @@ export interface operations {
43853
44289
  parameters: {
43854
44290
  query?: {
43855
44291
  enabled?: boolean | null;
43856
- execution_tier?: string | null;
44292
+ execution_tier?: ("direct" | "orchestrated" | "autonomous" | "browser" | "computer_use") | null;
43857
44293
  search?: components["schemas"]["SearchString"] | null;
43858
44294
  sort_by?: string | null;
43859
44295
  limit?: number;
@@ -43899,6 +44335,13 @@ export interface operations {
43899
44335
  "application/json": components["schemas"]["HTTPValidationError"];
43900
44336
  };
43901
44337
  };
44338
+ /** @description Rate limited. */
44339
+ 429: {
44340
+ headers: {
44341
+ [name: string]: unknown;
44342
+ };
44343
+ content?: never;
44344
+ };
43902
44345
  };
43903
44346
  };
43904
44347
  "create-skill": {
@@ -43960,6 +44403,13 @@ export interface operations {
43960
44403
  };
43961
44404
  content?: never;
43962
44405
  };
44406
+ /** @description Rate limited. */
44407
+ 429: {
44408
+ headers: {
44409
+ [name: string]: unknown;
44410
+ };
44411
+ content?: never;
44412
+ };
43963
44413
  };
43964
44414
  };
43965
44415
  "get-skill": {
@@ -44013,6 +44463,13 @@ export interface operations {
44013
44463
  "application/json": components["schemas"]["HTTPValidationError"];
44014
44464
  };
44015
44465
  };
44466
+ /** @description Rate limited. */
44467
+ 429: {
44468
+ headers: {
44469
+ [name: string]: unknown;
44470
+ };
44471
+ content?: never;
44472
+ };
44016
44473
  };
44017
44474
  };
44018
44475
  "update-skill": {
@@ -44068,6 +44525,13 @@ export interface operations {
44068
44525
  };
44069
44526
  content?: never;
44070
44527
  };
44528
+ /** @description Rate limited. */
44529
+ 429: {
44530
+ headers: {
44531
+ [name: string]: unknown;
44532
+ };
44533
+ content?: never;
44534
+ };
44071
44535
  };
44072
44536
  };
44073
44537
  "delete-skill": {
@@ -44110,6 +44574,13 @@ export interface operations {
44110
44574
  };
44111
44575
  content?: never;
44112
44576
  };
44577
+ /** @description Skill is referenced by one or more context graphs. */
44578
+ 409: {
44579
+ headers: {
44580
+ [name: string]: unknown;
44581
+ };
44582
+ content?: never;
44583
+ };
44113
44584
  /** @description Validation Error */
44114
44585
  422: {
44115
44586
  headers: {
@@ -44119,6 +44590,13 @@ export interface operations {
44119
44590
  "application/json": components["schemas"]["HTTPValidationError"];
44120
44591
  };
44121
44592
  };
44593
+ /** @description Rate limited. */
44594
+ 429: {
44595
+ headers: {
44596
+ [name: string]: unknown;
44597
+ };
44598
+ content?: never;
44599
+ };
44122
44600
  };
44123
44601
  };
44124
44602
  "get-skill-references": {
@@ -44172,6 +44650,13 @@ export interface operations {
44172
44650
  "application/json": components["schemas"]["HTTPValidationError"];
44173
44651
  };
44174
44652
  };
44653
+ /** @description Rate limited. */
44654
+ 429: {
44655
+ headers: {
44656
+ [name: string]: unknown;
44657
+ };
44658
+ content?: never;
44659
+ };
44175
44660
  };
44176
44661
  };
44177
44662
  "test-skill": {