@agent-os-sdk/client 0.9.39 → 0.9.41

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.
@@ -6596,6 +6596,61 @@ export interface paths {
6596
6596
  patch?: never;
6597
6597
  trace?: never;
6598
6598
  };
6599
+ "/v1/api/providers/default-router": {
6600
+ parameters: {
6601
+ query?: never;
6602
+ header?: never;
6603
+ path?: never;
6604
+ cookie?: never;
6605
+ };
6606
+ get: {
6607
+ parameters: {
6608
+ query?: {
6609
+ channel_kind?: string;
6610
+ };
6611
+ header?: never;
6612
+ path?: never;
6613
+ cookie?: never;
6614
+ };
6615
+ requestBody?: never;
6616
+ responses: {
6617
+ /** @description OK */
6618
+ 200: {
6619
+ headers: {
6620
+ [name: string]: unknown;
6621
+ };
6622
+ content: {
6623
+ "application/json": components["schemas"]["DefaultRouterResponseDto"];
6624
+ };
6625
+ };
6626
+ /** @description Bad Request */
6627
+ 400: {
6628
+ headers: {
6629
+ [name: string]: unknown;
6630
+ };
6631
+ content: {
6632
+ "application/json": components["schemas"]["ProblemDetails"];
6633
+ };
6634
+ };
6635
+ /** @description Not Found */
6636
+ 404: {
6637
+ headers: {
6638
+ [name: string]: unknown;
6639
+ };
6640
+ content: {
6641
+ "application/json": components["schemas"]["ProblemDetails"];
6642
+ };
6643
+ };
6644
+ };
6645
+ };
6646
+ put?: never;
6647
+ post?: never;
6648
+ delete?: never;
6649
+ options?: never;
6650
+ head?: never;
6651
+ patch?: never;
6652
+ trace?: never;
6653
+ };
6599
6654
  "/v1/api/providers/validate": {
6600
6655
  parameters: {
6601
6656
  query?: never;
@@ -7013,6 +7068,61 @@ export interface paths {
7013
7068
  patch?: never;
7014
7069
  trace?: never;
7015
7070
  };
7071
+ "/v1/api/providers/bindings/official-onboarding": {
7072
+ parameters: {
7073
+ query?: never;
7074
+ header?: never;
7075
+ path?: never;
7076
+ cookie?: never;
7077
+ };
7078
+ get: {
7079
+ parameters: {
7080
+ query?: {
7081
+ bindingRef?: string;
7082
+ };
7083
+ header?: never;
7084
+ path?: never;
7085
+ cookie?: never;
7086
+ };
7087
+ requestBody?: never;
7088
+ responses: {
7089
+ /** @description OK */
7090
+ 200: {
7091
+ headers: {
7092
+ [name: string]: unknown;
7093
+ };
7094
+ content: {
7095
+ "application/json": components["schemas"]["ProviderBindingOfficialOnboardingResponseDto"];
7096
+ };
7097
+ };
7098
+ /** @description Not Found */
7099
+ 404: {
7100
+ headers: {
7101
+ [name: string]: unknown;
7102
+ };
7103
+ content: {
7104
+ "application/json": components["schemas"]["ProblemDetails"];
7105
+ };
7106
+ };
7107
+ /** @description Conflict */
7108
+ 409: {
7109
+ headers: {
7110
+ [name: string]: unknown;
7111
+ };
7112
+ content: {
7113
+ "application/json": components["schemas"]["ProblemDetails"];
7114
+ };
7115
+ };
7116
+ };
7117
+ };
7118
+ put?: never;
7119
+ post?: never;
7120
+ delete?: never;
7121
+ options?: never;
7122
+ head?: never;
7123
+ patch?: never;
7124
+ trace?: never;
7125
+ };
7016
7126
  "/v1/api/providers/bindings/connection/sync": {
7017
7127
  parameters: {
7018
7128
  query?: never;
@@ -13187,6 +13297,12 @@ export interface components {
13187
13297
  /** Format: date-time */
13188
13298
  updatedAt?: string;
13189
13299
  };
13300
+ DefaultRouterResponseDto: {
13301
+ channel_kind?: string | null;
13302
+ router_ref?: string | null;
13303
+ worker_name?: string | null;
13304
+ status?: string | null;
13305
+ };
13190
13306
  EndpointContract: {
13191
13307
  /** Format: uuid */
13192
13308
  endpoint_id?: string | null;
@@ -13753,9 +13869,15 @@ export interface components {
13753
13869
  PromoteImprovementCaseRequest: {
13754
13870
  decision_reason?: string | null;
13755
13871
  };
13872
+ ProviderBindingConnectionQrDto: {
13873
+ data?: string | null;
13874
+ /** Format: date-time */
13875
+ expires_at?: string | null;
13876
+ };
13756
13877
  ProviderBindingConnectionResponseDto: {
13757
13878
  binding_ref?: string | null;
13758
13879
  provider_slug?: string | null;
13880
+ state?: string | null;
13759
13881
  status?: string | null;
13760
13882
  connected?: boolean | null;
13761
13883
  logged_in?: boolean | null;
@@ -13765,6 +13887,10 @@ export interface components {
13765
13887
  webhook_url?: string | null;
13766
13888
  qr_code_image_url?: string | null;
13767
13889
  qr_code_raw?: string | null;
13890
+ qr?: components["schemas"]["ProviderBindingConnectionQrDto"];
13891
+ /** Format: date-time */
13892
+ last_event_at?: string | null;
13893
+ error?: string | null;
13768
13894
  errors?: components["schemas"]["ProviderValidationIssueDto"][] | null;
13769
13895
  warnings?: components["schemas"]["ProviderValidationIssueDto"][] | null;
13770
13896
  qr_ready?: boolean;
@@ -13778,6 +13904,7 @@ export interface components {
13778
13904
  display_name?: string | null;
13779
13905
  status?: string | null;
13780
13906
  external_instance_ref?: string | null;
13907
+ external_account_ref?: string | null;
13781
13908
  endpoint?: components["schemas"]["ProviderBindingEndpointDto"];
13782
13909
  subscriptions?: components["schemas"]["ProviderBindingSubscriptionDto"][] | null;
13783
13910
  health?: components["schemas"]["ProviderBindingHealthDto"];
@@ -13828,6 +13955,20 @@ export interface components {
13828
13955
  /** Format: date-time */
13829
13956
  previous_endpoint_valid_until?: string | null;
13830
13957
  };
13958
+ ProviderBindingOfficialOnboardingResponseDto: {
13959
+ binding_ref?: string | null;
13960
+ provider_slug?: string | null;
13961
+ channel_kind?: string | null;
13962
+ readiness?: string | null;
13963
+ external_account_ref?: string | null;
13964
+ external_instance_ref?: string | null;
13965
+ credential_ref?: string | null;
13966
+ phone_number_id?: string | null;
13967
+ business_account_id?: string | null;
13968
+ webhook_ready?: boolean;
13969
+ blocking_reasons?: components["schemas"]["ProviderValidationIssueDto"][] | null;
13970
+ required_inputs?: string[] | null;
13971
+ };
13831
13972
  ProviderBindingProbeResponseDto: {
13832
13973
  status?: string | null;
13833
13974
  provider_slug?: string | null;
@@ -13865,6 +14006,7 @@ export interface components {
13865
14006
  router_ref?: string | null;
13866
14007
  worker_ref?: string | null;
13867
14008
  external_instance_ref?: string | null;
14009
+ external_account_ref?: string | null;
13868
14010
  webhook?: components["schemas"]["WebhookSpecDto"];
13869
14011
  settings?: {
13870
14012
  [key: string]: unknown;
@@ -13887,6 +14029,7 @@ export interface components {
13887
14029
  display_name?: string | null;
13888
14030
  status?: string | null;
13889
14031
  external_instance_ref?: string | null;
14032
+ external_account_ref?: string | null;
13890
14033
  endpoint?: components["schemas"]["ProviderBindingEndpointDto"];
13891
14034
  health?: components["schemas"]["ProviderBindingHealthDto"];
13892
14035
  /** Format: int32 */
@@ -14035,6 +14178,7 @@ export interface components {
14035
14178
  router_ref?: string | null;
14036
14179
  worker_ref?: string | null;
14037
14180
  external_instance_ref?: string | null;
14181
+ external_account_ref?: string | null;
14038
14182
  secret_ref?: string | null;
14039
14183
  require_signature?: boolean | null;
14040
14184
  replay_mode?: string | null;
@@ -14071,6 +14215,7 @@ export interface components {
14071
14215
  credential_ref?: string | null;
14072
14216
  router_ref?: string | null;
14073
14217
  external_instance_ref?: string | null;
14218
+ external_account_ref?: string | null;
14074
14219
  };
14075
14220
  PublishAgentRequest: {
14076
14221
  version_label?: string | null;