@agent-os-sdk/client 0.9.39 → 0.9.40

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.
@@ -7013,6 +7013,61 @@ export interface paths {
7013
7013
  patch?: never;
7014
7014
  trace?: never;
7015
7015
  };
7016
+ "/v1/api/providers/bindings/official-onboarding": {
7017
+ parameters: {
7018
+ query?: never;
7019
+ header?: never;
7020
+ path?: never;
7021
+ cookie?: never;
7022
+ };
7023
+ get: {
7024
+ parameters: {
7025
+ query?: {
7026
+ bindingRef?: string;
7027
+ };
7028
+ header?: never;
7029
+ path?: never;
7030
+ cookie?: never;
7031
+ };
7032
+ requestBody?: never;
7033
+ responses: {
7034
+ /** @description OK */
7035
+ 200: {
7036
+ headers: {
7037
+ [name: string]: unknown;
7038
+ };
7039
+ content: {
7040
+ "application/json": components["schemas"]["ProviderBindingOfficialOnboardingResponseDto"];
7041
+ };
7042
+ };
7043
+ /** @description Not Found */
7044
+ 404: {
7045
+ headers: {
7046
+ [name: string]: unknown;
7047
+ };
7048
+ content: {
7049
+ "application/json": components["schemas"]["ProblemDetails"];
7050
+ };
7051
+ };
7052
+ /** @description Conflict */
7053
+ 409: {
7054
+ headers: {
7055
+ [name: string]: unknown;
7056
+ };
7057
+ content: {
7058
+ "application/json": components["schemas"]["ProblemDetails"];
7059
+ };
7060
+ };
7061
+ };
7062
+ };
7063
+ put?: never;
7064
+ post?: never;
7065
+ delete?: never;
7066
+ options?: never;
7067
+ head?: never;
7068
+ patch?: never;
7069
+ trace?: never;
7070
+ };
7016
7071
  "/v1/api/providers/bindings/connection/sync": {
7017
7072
  parameters: {
7018
7073
  query?: never;
@@ -13753,9 +13808,15 @@ export interface components {
13753
13808
  PromoteImprovementCaseRequest: {
13754
13809
  decision_reason?: string | null;
13755
13810
  };
13811
+ ProviderBindingConnectionQrDto: {
13812
+ data?: string | null;
13813
+ /** Format: date-time */
13814
+ expires_at?: string | null;
13815
+ };
13756
13816
  ProviderBindingConnectionResponseDto: {
13757
13817
  binding_ref?: string | null;
13758
13818
  provider_slug?: string | null;
13819
+ state?: string | null;
13759
13820
  status?: string | null;
13760
13821
  connected?: boolean | null;
13761
13822
  logged_in?: boolean | null;
@@ -13765,6 +13826,10 @@ export interface components {
13765
13826
  webhook_url?: string | null;
13766
13827
  qr_code_image_url?: string | null;
13767
13828
  qr_code_raw?: string | null;
13829
+ qr?: components["schemas"]["ProviderBindingConnectionQrDto"];
13830
+ /** Format: date-time */
13831
+ last_event_at?: string | null;
13832
+ error?: string | null;
13768
13833
  errors?: components["schemas"]["ProviderValidationIssueDto"][] | null;
13769
13834
  warnings?: components["schemas"]["ProviderValidationIssueDto"][] | null;
13770
13835
  qr_ready?: boolean;
@@ -13778,6 +13843,7 @@ export interface components {
13778
13843
  display_name?: string | null;
13779
13844
  status?: string | null;
13780
13845
  external_instance_ref?: string | null;
13846
+ external_account_ref?: string | null;
13781
13847
  endpoint?: components["schemas"]["ProviderBindingEndpointDto"];
13782
13848
  subscriptions?: components["schemas"]["ProviderBindingSubscriptionDto"][] | null;
13783
13849
  health?: components["schemas"]["ProviderBindingHealthDto"];
@@ -13828,6 +13894,20 @@ export interface components {
13828
13894
  /** Format: date-time */
13829
13895
  previous_endpoint_valid_until?: string | null;
13830
13896
  };
13897
+ ProviderBindingOfficialOnboardingResponseDto: {
13898
+ binding_ref?: string | null;
13899
+ provider_slug?: string | null;
13900
+ channel_kind?: string | null;
13901
+ readiness?: string | null;
13902
+ external_account_ref?: string | null;
13903
+ external_instance_ref?: string | null;
13904
+ credential_ref?: string | null;
13905
+ phone_number_id?: string | null;
13906
+ business_account_id?: string | null;
13907
+ webhook_ready?: boolean;
13908
+ blocking_reasons?: components["schemas"]["ProviderValidationIssueDto"][] | null;
13909
+ required_inputs?: string[] | null;
13910
+ };
13831
13911
  ProviderBindingProbeResponseDto: {
13832
13912
  status?: string | null;
13833
13913
  provider_slug?: string | null;
@@ -13865,6 +13945,7 @@ export interface components {
13865
13945
  router_ref?: string | null;
13866
13946
  worker_ref?: string | null;
13867
13947
  external_instance_ref?: string | null;
13948
+ external_account_ref?: string | null;
13868
13949
  webhook?: components["schemas"]["WebhookSpecDto"];
13869
13950
  settings?: {
13870
13951
  [key: string]: unknown;
@@ -13887,6 +13968,7 @@ export interface components {
13887
13968
  display_name?: string | null;
13888
13969
  status?: string | null;
13889
13970
  external_instance_ref?: string | null;
13971
+ external_account_ref?: string | null;
13890
13972
  endpoint?: components["schemas"]["ProviderBindingEndpointDto"];
13891
13973
  health?: components["schemas"]["ProviderBindingHealthDto"];
13892
13974
  /** Format: int32 */
@@ -14035,6 +14117,7 @@ export interface components {
14035
14117
  router_ref?: string | null;
14036
14118
  worker_ref?: string | null;
14037
14119
  external_instance_ref?: string | null;
14120
+ external_account_ref?: string | null;
14038
14121
  secret_ref?: string | null;
14039
14122
  require_signature?: boolean | null;
14040
14123
  replay_mode?: string | null;
@@ -14071,6 +14154,7 @@ export interface components {
14071
14154
  credential_ref?: string | null;
14072
14155
  router_ref?: string | null;
14073
14156
  external_instance_ref?: string | null;
14157
+ external_account_ref?: string | null;
14074
14158
  };
14075
14159
  PublishAgentRequest: {
14076
14160
  version_label?: string | null;