@1claw/sdk 0.41.3 → 0.42.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.
@@ -4017,6 +4017,12 @@ export interface paths {
4017
4017
  * Approve or reject
4018
4018
  * @description Submit a decision (approve or reject) for a pending approval.
4019
4019
  * Human-only. The approval must be in `pending` status.
4020
+ * For `card_order` approvals, approving auto-executes the x402 payment;
4021
+ * rejecting marks the card as `rejected`.
4022
+ * Risk tier 2+ approvals require step-up authentication via
4023
+ * `X-Auth-Confirm` (account password or `rat_` re-auth token from
4024
+ * `POST /v1/auth/reauth/begin` + `complete`). Risk tier 3 requires
4025
+ * passkey or TOTP re-auth token.
4020
4026
  */
4021
4027
  post: operations["decideApproval"];
4022
4028
  delete?: never;
@@ -4025,6 +4031,29 @@ export interface paths {
4025
4031
  patch?: never;
4026
4032
  trace?: never;
4027
4033
  };
4034
+ "/v1/approvals/quick-decide": {
4035
+ parameters: {
4036
+ query?: never;
4037
+ header?: never;
4038
+ path?: never;
4039
+ cookie?: never;
4040
+ };
4041
+ /**
4042
+ * One-click approve or deny (email link)
4043
+ * @description Public endpoint (no Bearer auth). The `token` query param is the
4044
+ * authenticator — SHA-256 hashed, single-use, 7-day TTL. On success
4045
+ * redirects to `{public_url}/approvals/{id}?decided=true`.
4046
+ * Auto-executes approved `card_order` and `policy_change` actions.
4047
+ */
4048
+ get: operations["quickDecideApproval"];
4049
+ put?: never;
4050
+ post?: never;
4051
+ delete?: never;
4052
+ options?: never;
4053
+ head?: never;
4054
+ patch?: never;
4055
+ trace?: never;
4056
+ };
4028
4057
  "/v1/deposit-destinations": {
4029
4058
  parameters: {
4030
4059
  query?: never;
@@ -4517,7 +4546,7 @@ export interface paths {
4517
4546
  put?: never;
4518
4547
  /**
4519
4548
  * Order a payment card (x402)
4520
- * @description Order a prepaid or gift card for an agent. Drives the x402 payment flow server-side using the agent's Ethereum signing key (funded with USDC on Base). Requires `cards_enabled` on the agent and a Pro or higher plan. An `Idempotency-Key` header is required.
4549
+ * @description Order a prepaid or gift card for an agent. Drives the x402 payment flow server-side using the agent's Ethereum signing key (funded with USDC on Base). Requires `cards_enabled` on the agent and a Pro or higher plan. An `Idempotency-Key` header is required. When `card_require_approval` is true (default), the order is held in `awaiting_approval` until a human approves via the dashboard, mobile app, or email one-click link; payment runs only after approval.
4521
4550
  */
4522
4551
  post: operations["orderCard"];
4523
4552
  delete?: never;
@@ -4667,129 +4696,457 @@ export interface paths {
4667
4696
  patch?: never;
4668
4697
  trace?: never;
4669
4698
  };
4670
- }
4671
- export type webhooks = Record<string, never>;
4672
- export interface components {
4673
- schemas: {
4674
- OrderCardRequest: {
4675
- /** @enum {string} */
4676
- kind: "prepaid" | "gift_card";
4677
- /**
4678
- * @description USD amount to load onto the card.
4679
- * @example 25.00
4680
- */
4681
- amount_usd: string;
4682
- /** @description Optional Laso gift-card server/brand id (gift cards only). */
4683
- laso_server_id?: string;
4684
- /** @description Optional country (prepaid cards; defaults to US). */
4685
- country?: string;
4699
+ "/v1/automations": {
4700
+ parameters: {
4701
+ query?: never;
4702
+ header?: never;
4703
+ path?: never;
4704
+ cookie?: never;
4686
4705
  };
4687
- /** @description Masked card view — never contains PAN/CVV. */
4688
- CardResponse: {
4689
- /** Format: uuid */
4690
- id: string;
4691
- /** Format: uuid */
4692
- agent_id?: string | null;
4693
- /** @enum {string} */
4694
- issuer: "laso" | "manual";
4695
- /** @enum {string} */
4696
- kind: "prepaid" | "gift_card";
4697
- brand?: string;
4698
- last4?: string;
4699
- exp_month?: number;
4700
- exp_year?: number;
4701
- currency: string;
4702
- order_amount_usd?: string;
4703
- balance?: string;
4704
- /** @enum {string} */
4705
- status: "ordering" | "pending" | "ready" | "depleted" | "expired" | "voided" | "orphaned_payment";
4706
- /** @enum {string} */
4707
- storage_mode: "reference" | "full";
4708
- reveal_policy: {
4709
- [key: string]: unknown;
4710
- };
4711
- /** Format: date-time */
4712
- void_after?: string;
4713
- /** Format: date-time */
4714
- created_at: string;
4715
- /** Format: date-time */
4716
- updated_at: string;
4706
+ /** List automations */
4707
+ get: operations["listAutomations"];
4708
+ put?: never;
4709
+ /** Create automation */
4710
+ post: operations["createAutomation"];
4711
+ delete?: never;
4712
+ options?: never;
4713
+ head?: never;
4714
+ patch?: never;
4715
+ trace?: never;
4716
+ };
4717
+ "/v1/automations/{automationId}": {
4718
+ parameters: {
4719
+ query?: never;
4720
+ header?: never;
4721
+ path?: never;
4722
+ cookie?: never;
4717
4723
  };
4718
- CardListResponse: {
4719
- cards: components["schemas"]["CardResponse"][];
4724
+ /** Get automation */
4725
+ get: operations["getAutomation"];
4726
+ put?: never;
4727
+ post?: never;
4728
+ /** Delete automation */
4729
+ delete: operations["deleteAutomation"];
4730
+ options?: never;
4731
+ head?: never;
4732
+ /** Update automation */
4733
+ patch: operations["updateAutomation"];
4734
+ trace?: never;
4735
+ };
4736
+ "/v1/automations/{automationId}/trigger": {
4737
+ parameters: {
4738
+ query?: never;
4739
+ header?: never;
4740
+ path?: never;
4741
+ cookie?: never;
4720
4742
  };
4721
- /** @description Revealed card details — sensitive. Returned only by the reveal endpoint. */
4722
- CardRevealResponse: {
4723
- /** Format: uuid */
4724
- id: string;
4725
- pan?: string;
4726
- cvv?: string;
4727
- exp_month?: number;
4728
- exp_year?: number;
4729
- brand?: string;
4730
- /** @description Gift-card redemption payload (URL/code/PIN) when applicable. */
4731
- redemption?: {
4732
- [key: string]: unknown;
4733
- };
4734
- disclaimer: string;
4743
+ get?: never;
4744
+ put?: never;
4745
+ /** Trigger automation */
4746
+ post: operations["triggerAutomation"];
4747
+ delete?: never;
4748
+ options?: never;
4749
+ head?: never;
4750
+ patch?: never;
4751
+ trace?: never;
4752
+ };
4753
+ "/v1/automations/{automationId}/runs": {
4754
+ parameters: {
4755
+ query?: never;
4756
+ header?: never;
4757
+ path?: never;
4758
+ cookie?: never;
4735
4759
  };
4736
- /** @description Human-settable per-card reveal policy + lifecycle controls. */
4737
- UpdateCardRequest: {
4738
- agent_reveal?: boolean;
4739
- max_reveals?: number;
4740
- /** Format: date-time */
4741
- reveal_expires_at?: string | null;
4742
- /** Format: date-time */
4743
- void_after?: string | null;
4760
+ /** List automation runs */
4761
+ get: operations["listAutomationRuns"];
4762
+ put?: never;
4763
+ post?: never;
4764
+ delete?: never;
4765
+ options?: never;
4766
+ head?: never;
4767
+ patch?: never;
4768
+ trace?: never;
4769
+ };
4770
+ "/v1/runtimes": {
4771
+ parameters: {
4772
+ query?: never;
4773
+ header?: never;
4774
+ path?: never;
4775
+ cookie?: never;
4744
4776
  };
4745
- ImportCardRequest: {
4746
- pan: string;
4747
- cvv: string;
4748
- exp_month: number;
4749
- exp_year: number;
4750
- brand?: string;
4751
- currency?: string;
4752
- balance?: string;
4753
- /** Format: uuid */
4754
- agent_id?: string;
4777
+ /** List runtimes */
4778
+ get: operations["listRuntimes"];
4779
+ put?: never;
4780
+ /** Create runtime */
4781
+ post: operations["createRuntime"];
4782
+ delete?: never;
4783
+ options?: never;
4784
+ head?: never;
4785
+ patch?: never;
4786
+ trace?: never;
4787
+ };
4788
+ "/v1/runtimes/{runtimeId}": {
4789
+ parameters: {
4790
+ query?: never;
4791
+ header?: never;
4792
+ path?: never;
4793
+ cookie?: never;
4755
4794
  };
4756
- SearchGiftCardsRequest: {
4757
- query?: string;
4758
- country?: string;
4795
+ /** Get runtime */
4796
+ get: operations["getRuntime"];
4797
+ put?: never;
4798
+ post?: never;
4799
+ /** Delete runtime */
4800
+ delete: operations["deleteRuntime"];
4801
+ options?: never;
4802
+ head?: never;
4803
+ /** Update runtime */
4804
+ patch: operations["updateRuntime"];
4805
+ trace?: never;
4806
+ };
4807
+ "/v1/runtimes/{runtimeId}/start": {
4808
+ parameters: {
4809
+ query?: never;
4810
+ header?: never;
4811
+ path?: never;
4812
+ cookie?: never;
4759
4813
  };
4760
- /** @description RFC 7807 error envelope */
4761
- ProblemDetails: {
4762
- type?: string;
4763
- title?: string;
4764
- status?: number;
4765
- detail?: string;
4814
+ get?: never;
4815
+ put?: never;
4816
+ /** Start runtime */
4817
+ post: operations["startRuntime"];
4818
+ delete?: never;
4819
+ options?: never;
4820
+ head?: never;
4821
+ patch?: never;
4822
+ trace?: never;
4823
+ };
4824
+ "/v1/runtimes/{runtimeId}/stop": {
4825
+ parameters: {
4826
+ query?: never;
4827
+ header?: never;
4828
+ path?: never;
4829
+ cookie?: never;
4766
4830
  };
4767
- ResetUsageEventsResponse: {
4768
- /**
4769
- * Format: int64
4770
- * @description Number of usage_events rows removed
4771
- */
4772
- deleted_events: number;
4831
+ get?: never;
4832
+ put?: never;
4833
+ /** Stop runtime */
4834
+ post: operations["stopRuntime"];
4835
+ delete?: never;
4836
+ options?: never;
4837
+ head?: never;
4838
+ patch?: never;
4839
+ trace?: never;
4840
+ };
4841
+ "/v1/runtimes/{runtimeId}/logs": {
4842
+ parameters: {
4843
+ query?: never;
4844
+ header?: never;
4845
+ path?: never;
4846
+ cookie?: never;
4773
4847
  };
4774
- ResetUsageForUserEmailRequest: {
4775
- /** Format: email */
4776
- email: string;
4848
+ /** Get runtime logs */
4849
+ get: operations["getRuntimeLogs"];
4850
+ put?: never;
4851
+ post?: never;
4852
+ delete?: never;
4853
+ options?: never;
4854
+ head?: never;
4855
+ patch?: never;
4856
+ trace?: never;
4857
+ };
4858
+ "/v1/runtimes/slug-check/{slug}": {
4859
+ parameters: {
4860
+ query?: never;
4861
+ header?: never;
4862
+ path?: never;
4863
+ cookie?: never;
4777
4864
  };
4778
- ResetUsageForUserEmailResponse: {
4779
- /** Format: int64 */
4780
- deleted_events: number;
4781
- /** Format: uuid */
4782
- org_id: string;
4783
- /** Format: uuid */
4784
- user_id: string;
4785
- email: string;
4786
- display_name: string;
4865
+ /** Check slug availability */
4866
+ get: operations["checkSlugAvailability"];
4867
+ put?: never;
4868
+ post?: never;
4869
+ delete?: never;
4870
+ options?: never;
4871
+ head?: never;
4872
+ patch?: never;
4873
+ trace?: never;
4874
+ };
4875
+ "/v1/agents/{agent_id}/memory": {
4876
+ parameters: {
4877
+ query?: never;
4878
+ header?: never;
4879
+ path?: never;
4880
+ cookie?: never;
4787
4881
  };
4788
- LoginRequest: {
4789
- /** Format: email */
4790
- email: string;
4791
- /** Format: password */
4792
- password: string;
4882
+ /** List memory namespaces */
4883
+ get: operations["listMemoryNamespaces"];
4884
+ put?: never;
4885
+ post?: never;
4886
+ delete?: never;
4887
+ options?: never;
4888
+ head?: never;
4889
+ patch?: never;
4890
+ trace?: never;
4891
+ };
4892
+ "/v1/agents/{agent_id}/memory/{namespace}": {
4893
+ parameters: {
4894
+ query?: never;
4895
+ header?: never;
4896
+ path?: never;
4897
+ cookie?: never;
4898
+ };
4899
+ /** List entries in namespace */
4900
+ get: operations["listMemoryEntries"];
4901
+ put?: never;
4902
+ post?: never;
4903
+ delete?: never;
4904
+ options?: never;
4905
+ head?: never;
4906
+ patch?: never;
4907
+ trace?: never;
4908
+ };
4909
+ "/v1/agents/{agent_id}/memory/{namespace}/{key}": {
4910
+ parameters: {
4911
+ query?: never;
4912
+ header?: never;
4913
+ path?: never;
4914
+ cookie?: never;
4915
+ };
4916
+ /** Get memory entry */
4917
+ get: operations["getMemoryEntry"];
4918
+ /** Put memory entry */
4919
+ put: operations["putMemoryEntry"];
4920
+ post?: never;
4921
+ /** Delete memory entry */
4922
+ delete: operations["deleteMemoryEntry"];
4923
+ options?: never;
4924
+ head?: never;
4925
+ patch?: never;
4926
+ trace?: never;
4927
+ };
4928
+ "/v1/agents/{agent_id}/memory/search": {
4929
+ parameters: {
4930
+ query?: never;
4931
+ header?: never;
4932
+ path?: never;
4933
+ cookie?: never;
4934
+ };
4935
+ get?: never;
4936
+ put?: never;
4937
+ /** Semantic search */
4938
+ post: operations["searchMemory"];
4939
+ delete?: never;
4940
+ options?: never;
4941
+ head?: never;
4942
+ patch?: never;
4943
+ trace?: never;
4944
+ };
4945
+ "/v1/agents/{agent_id}/card": {
4946
+ parameters: {
4947
+ query?: never;
4948
+ header?: never;
4949
+ path?: never;
4950
+ cookie?: never;
4951
+ };
4952
+ /**
4953
+ * Get agent card
4954
+ * @description Public endpoint returning the agent's discovery card metadata.
4955
+ */
4956
+ get: operations["getAgentCard"];
4957
+ put?: never;
4958
+ post?: never;
4959
+ delete?: never;
4960
+ options?: never;
4961
+ head?: never;
4962
+ patch?: never;
4963
+ trace?: never;
4964
+ };
4965
+ "/v1/agents/directory": {
4966
+ parameters: {
4967
+ query?: never;
4968
+ header?: never;
4969
+ path?: never;
4970
+ cookie?: never;
4971
+ };
4972
+ /**
4973
+ * Public agent directory
4974
+ * @description Browse the public directory of discoverable agents.
4975
+ */
4976
+ get: operations["listDirectory"];
4977
+ put?: never;
4978
+ post?: never;
4979
+ delete?: never;
4980
+ options?: never;
4981
+ head?: never;
4982
+ patch?: never;
4983
+ trace?: never;
4984
+ };
4985
+ "/v1/agents/{agent_id}/discovery": {
4986
+ parameters: {
4987
+ query?: never;
4988
+ header?: never;
4989
+ path?: never;
4990
+ cookie?: never;
4991
+ };
4992
+ get?: never;
4993
+ put?: never;
4994
+ post?: never;
4995
+ delete?: never;
4996
+ options?: never;
4997
+ head?: never;
4998
+ /** Update discovery settings */
4999
+ patch: operations["updateDiscoverySettings"];
5000
+ trace?: never;
5001
+ };
5002
+ "/v1/platform/marketplace": {
5003
+ parameters: {
5004
+ query?: never;
5005
+ header?: never;
5006
+ path?: never;
5007
+ cookie?: never;
5008
+ };
5009
+ /**
5010
+ * Public marketplace
5011
+ * @description Browse the public platform marketplace of agents and apps.
5012
+ */
5013
+ get: operations["listMarketplace"];
5014
+ put?: never;
5015
+ post?: never;
5016
+ delete?: never;
5017
+ options?: never;
5018
+ head?: never;
5019
+ patch?: never;
5020
+ trace?: never;
5021
+ };
5022
+ }
5023
+ export type webhooks = Record<string, never>;
5024
+ export interface components {
5025
+ schemas: {
5026
+ OrderCardRequest: {
5027
+ /** @enum {string} */
5028
+ kind: "prepaid" | "gift_card";
5029
+ /**
5030
+ * @description USD amount to load onto the card.
5031
+ * @example 25.00
5032
+ */
5033
+ amount_usd: string;
5034
+ /** @description Optional Laso gift-card server/brand id (gift cards only). */
5035
+ laso_server_id?: string;
5036
+ /** @description Optional country (prepaid cards; defaults to US). */
5037
+ country?: string;
5038
+ };
5039
+ /** @description Masked card view — never contains PAN/CVV. */
5040
+ CardResponse: {
5041
+ /** Format: uuid */
5042
+ id: string;
5043
+ /** Format: uuid */
5044
+ agent_id?: string | null;
5045
+ /** @enum {string} */
5046
+ issuer: "laso" | "manual";
5047
+ /** @enum {string} */
5048
+ kind: "prepaid" | "gift_card";
5049
+ brand?: string;
5050
+ last4?: string;
5051
+ exp_month?: number;
5052
+ exp_year?: number;
5053
+ currency: string;
5054
+ order_amount_usd?: string;
5055
+ balance?: string;
5056
+ /** @enum {string} */
5057
+ status: "ordering" | "pending" | "ready" | "depleted" | "expired" | "voided" | "orphaned_payment" | "awaiting_approval" | "rejected";
5058
+ /** @enum {string} */
5059
+ storage_mode: "reference" | "full";
5060
+ reveal_policy: {
5061
+ [key: string]: unknown;
5062
+ };
5063
+ /**
5064
+ * Format: uuid
5065
+ * @description Linked approval when status is awaiting_approval
5066
+ */
5067
+ approval_id?: string;
5068
+ /** Format: date-time */
5069
+ void_after?: string;
5070
+ /** Format: date-time */
5071
+ created_at: string;
5072
+ /** Format: date-time */
5073
+ updated_at: string;
5074
+ };
5075
+ CardListResponse: {
5076
+ cards: components["schemas"]["CardResponse"][];
5077
+ };
5078
+ /** @description Revealed card details — sensitive. Returned only by the reveal endpoint. */
5079
+ CardRevealResponse: {
5080
+ /** Format: uuid */
5081
+ id: string;
5082
+ pan?: string;
5083
+ cvv?: string;
5084
+ exp_month?: number;
5085
+ exp_year?: number;
5086
+ brand?: string;
5087
+ /** @description Gift-card redemption payload (URL/code/PIN) when applicable. */
5088
+ redemption?: {
5089
+ [key: string]: unknown;
5090
+ };
5091
+ disclaimer: string;
5092
+ };
5093
+ /** @description Human-settable per-card reveal policy + lifecycle controls. */
5094
+ UpdateCardRequest: {
5095
+ agent_reveal?: boolean;
5096
+ max_reveals?: number;
5097
+ /** Format: date-time */
5098
+ reveal_expires_at?: string | null;
5099
+ /** Format: date-time */
5100
+ void_after?: string | null;
5101
+ };
5102
+ ImportCardRequest: {
5103
+ pan: string;
5104
+ cvv: string;
5105
+ exp_month: number;
5106
+ exp_year: number;
5107
+ brand?: string;
5108
+ currency?: string;
5109
+ balance?: string;
5110
+ /** Format: uuid */
5111
+ agent_id?: string;
5112
+ };
5113
+ SearchGiftCardsRequest: {
5114
+ query?: string;
5115
+ country?: string;
5116
+ };
5117
+ /** @description RFC 7807 error envelope */
5118
+ ProblemDetails: {
5119
+ type?: string;
5120
+ title?: string;
5121
+ status?: number;
5122
+ detail?: string;
5123
+ };
5124
+ ResetUsageEventsResponse: {
5125
+ /**
5126
+ * Format: int64
5127
+ * @description Number of usage_events rows removed
5128
+ */
5129
+ deleted_events: number;
5130
+ };
5131
+ ResetUsageForUserEmailRequest: {
5132
+ /** Format: email */
5133
+ email: string;
5134
+ };
5135
+ ResetUsageForUserEmailResponse: {
5136
+ /** Format: int64 */
5137
+ deleted_events: number;
5138
+ /** Format: uuid */
5139
+ org_id: string;
5140
+ /** Format: uuid */
5141
+ user_id: string;
5142
+ email: string;
5143
+ display_name: string;
5144
+ };
5145
+ LoginRequest: {
5146
+ /** Format: email */
5147
+ email: string;
5148
+ /** Format: password */
5149
+ password: string;
4793
5150
  };
4794
5151
  LoginResponse: {
4795
5152
  access_token?: string;
@@ -5304,6 +5661,11 @@ export interface components {
5304
5661
  card_payto_allowlist?: string[];
5305
5662
  /** @description Whether agents may reveal card details subject to per-card reveal policy. */
5306
5663
  card_reveal_enabled?: boolean;
5664
+ /**
5665
+ * @description When true, card orders route through the human approval queue before x402 payment.
5666
+ * @default true
5667
+ */
5668
+ card_require_approval: boolean;
5307
5669
  /**
5308
5670
  * Format: date-time
5309
5671
  * @description Optional expiration time for the agent's API key.
@@ -5366,6 +5728,8 @@ export interface components {
5366
5728
  card_payto_allowlist?: string[];
5367
5729
  /** @description Whether agents may reveal card details subject to per-card reveal policy. */
5368
5730
  card_reveal_enabled?: boolean;
5731
+ /** @description When true, card orders route through the human approval queue before x402 payment. */
5732
+ card_require_approval?: boolean;
5369
5733
  /**
5370
5734
  * @description Enable OIDC federation (RFC 8693 token-exchange) for this agent.
5371
5735
  * When true, the agent may call POST /v1/auth/federated-token to mint
@@ -5483,6 +5847,8 @@ export interface components {
5483
5847
  card_payto_allowlist?: string[];
5484
5848
  /** @description Whether agents may reveal card details subject to per-card reveal policy. */
5485
5849
  card_reveal_enabled?: boolean;
5850
+ /** @description When true, card orders route through the human approval queue before x402 payment. */
5851
+ card_require_approval?: boolean;
5486
5852
  /** @description Today's transaction count (UTC calendar day). Present when intents_api_enabled. */
5487
5853
  tx_count_today?: number;
5488
5854
  /** @description Today's overhead spend by chain in native units. */
@@ -7708,18 +8074,241 @@ export interface components {
7708
8074
  /** Format: date-time */
7709
8075
  created_at: string;
7710
8076
  };
7711
- };
7712
- responses: {
7713
- /** @description Invalid request */
7714
- BadRequest: {
7715
- headers: {
7716
- [name: string]: unknown;
8077
+ CreateAutomationRequest: {
8078
+ name: string;
8079
+ description?: string;
8080
+ /** Format: uuid */
8081
+ agent_id?: string;
8082
+ /** @enum {string} */
8083
+ trigger_type?: "schedule" | "webhook" | "event" | "manual";
8084
+ trigger_config?: {
8085
+ [key: string]: unknown;
7717
8086
  };
7718
- content: {
7719
- "application/json": components["schemas"]["ProblemDetails"];
8087
+ action_type?: string;
8088
+ action_config?: {
8089
+ [key: string]: unknown;
7720
8090
  };
8091
+ /** @default true */
8092
+ is_active: boolean;
7721
8093
  };
7722
- /** @description Authentication required or invalid */
8094
+ UpdateAutomationRequest: {
8095
+ name?: string;
8096
+ description?: string;
8097
+ /** Format: uuid */
8098
+ agent_id?: string;
8099
+ /** @enum {string} */
8100
+ trigger_type?: "schedule" | "webhook" | "event" | "manual";
8101
+ trigger_config?: {
8102
+ [key: string]: unknown;
8103
+ };
8104
+ action_type?: string;
8105
+ action_config?: {
8106
+ [key: string]: unknown;
8107
+ };
8108
+ is_active?: boolean;
8109
+ };
8110
+ AutomationResponse: {
8111
+ /** Format: uuid */
8112
+ id: string;
8113
+ name: string;
8114
+ description?: string | null;
8115
+ /** Format: uuid */
8116
+ agent_id?: string | null;
8117
+ /** @enum {string} */
8118
+ trigger_type: "schedule" | "webhook" | "event" | "manual";
8119
+ trigger_config?: {
8120
+ [key: string]: unknown;
8121
+ } | null;
8122
+ action_type?: string | null;
8123
+ action_config?: {
8124
+ [key: string]: unknown;
8125
+ } | null;
8126
+ is_active: boolean;
8127
+ webhook_url?: string | null;
8128
+ schedule_expression?: string | null;
8129
+ /** Format: date-time */
8130
+ next_run_at?: string | null;
8131
+ /** Format: date-time */
8132
+ last_run_at?: string | null;
8133
+ /** Format: date-time */
8134
+ created_at: string;
8135
+ /** Format: date-time */
8136
+ updated_at: string;
8137
+ };
8138
+ AutomationListResponse: {
8139
+ automations: components["schemas"]["AutomationResponse"][];
8140
+ };
8141
+ AutomationRunResponse: {
8142
+ /** Format: uuid */
8143
+ id: string;
8144
+ /** Format: uuid */
8145
+ automation_id: string;
8146
+ /** @enum {string} */
8147
+ status: "pending" | "running" | "completed" | "failed";
8148
+ /** Format: date-time */
8149
+ started_at: string;
8150
+ /** Format: date-time */
8151
+ completed_at?: string | null;
8152
+ result?: {
8153
+ [key: string]: unknown;
8154
+ } | null;
8155
+ error?: string | null;
8156
+ };
8157
+ AutomationRunListResponse: {
8158
+ runs: components["schemas"]["AutomationRunResponse"][];
8159
+ };
8160
+ CreateRuntimeRequest: {
8161
+ name: string;
8162
+ /** Format: uuid */
8163
+ agent_id: string;
8164
+ template?: string;
8165
+ preset?: string;
8166
+ image?: string;
8167
+ env_public?: {
8168
+ [key: string]: string;
8169
+ };
8170
+ idle_timeout_secs?: number;
8171
+ /** @default false */
8172
+ expose_http: boolean;
8173
+ http_port?: number;
8174
+ slug?: string;
8175
+ /** @enum {string} */
8176
+ inbound_auth?: "api_key" | "jwt" | "public";
8177
+ };
8178
+ UpdateRuntimeRequest: {
8179
+ name?: string;
8180
+ template?: string;
8181
+ preset?: string;
8182
+ image?: string;
8183
+ env_public?: {
8184
+ [key: string]: string;
8185
+ };
8186
+ idle_timeout_secs?: number;
8187
+ expose_http?: boolean;
8188
+ http_port?: number;
8189
+ slug?: string;
8190
+ /** @enum {string} */
8191
+ inbound_auth?: "api_key" | "jwt" | "public";
8192
+ };
8193
+ RuntimeResponse: {
8194
+ /** Format: uuid */
8195
+ id: string;
8196
+ name: string;
8197
+ /** Format: uuid */
8198
+ agent_id: string;
8199
+ template?: string | null;
8200
+ preset?: string | null;
8201
+ provider?: string | null;
8202
+ /** @enum {string} */
8203
+ status: "creating" | "running" | "stopping" | "stopped" | "failed" | "deleting";
8204
+ image?: string | null;
8205
+ env_public?: {
8206
+ [key: string]: string;
8207
+ } | null;
8208
+ idle_timeout_secs?: number | null;
8209
+ expose_http?: boolean | null;
8210
+ slug?: string | null;
8211
+ public_url?: string | null;
8212
+ http_port?: number | null;
8213
+ /** @enum {string|null} */
8214
+ inbound_auth?: "api_key" | "jwt" | "public" | null;
8215
+ monthly_hours_used?: number | null;
8216
+ /** Format: date-time */
8217
+ created_at: string;
8218
+ /** Format: date-time */
8219
+ updated_at: string;
8220
+ };
8221
+ RuntimeListResponse: {
8222
+ runtimes: components["schemas"]["RuntimeResponse"][];
8223
+ };
8224
+ SlugCheckResponse: {
8225
+ available: boolean;
8226
+ slug: string;
8227
+ reason?: string | null;
8228
+ };
8229
+ MemoryEntry: {
8230
+ /** Format: uuid */
8231
+ id: string;
8232
+ /** Format: uuid */
8233
+ agent_id: string;
8234
+ namespace: string;
8235
+ key: string;
8236
+ value: string;
8237
+ /** Format: date-time */
8238
+ created_at: string;
8239
+ /** Format: date-time */
8240
+ updated_at: string;
8241
+ /** Format: date-time */
8242
+ ttl_expires_at?: string | null;
8243
+ };
8244
+ PutMemoryRequest: {
8245
+ value: string;
8246
+ ttl_seconds?: number | null;
8247
+ };
8248
+ MemorySearchRequest: {
8249
+ namespace: string;
8250
+ query: string;
8251
+ /** @default 5 */
8252
+ top_k: number;
8253
+ };
8254
+ MemorySearchResponse: {
8255
+ results: {
8256
+ key?: string;
8257
+ value?: string;
8258
+ score?: number;
8259
+ namespace?: string;
8260
+ }[];
8261
+ };
8262
+ MemoryNamespaceListResponse: {
8263
+ namespaces: string[];
8264
+ };
8265
+ MemoryEntryListResponse: {
8266
+ entries: components["schemas"]["MemoryEntry"][];
8267
+ };
8268
+ AgentCardResponse: {
8269
+ /** Format: uuid */
8270
+ id: string;
8271
+ name: string;
8272
+ description?: string | null;
8273
+ capabilities?: string[];
8274
+ a2a_url?: string | null;
8275
+ mcp_url?: string | null;
8276
+ tags?: string[];
8277
+ };
8278
+ DirectoryEntry: {
8279
+ /** Format: uuid */
8280
+ id: string;
8281
+ name: string;
8282
+ description?: string | null;
8283
+ tags?: string[];
8284
+ capabilities?: string[];
8285
+ a2a_url?: string | null;
8286
+ mcp_url?: string | null;
8287
+ org_name?: string | null;
8288
+ };
8289
+ DirectoryResponse: {
8290
+ agents: components["schemas"]["DirectoryEntry"][];
8291
+ total: number;
8292
+ page: number;
8293
+ per_page: number;
8294
+ };
8295
+ UpdateDiscoveryRequest: {
8296
+ discoverable?: boolean;
8297
+ public_description?: string;
8298
+ public_tags?: string[];
8299
+ };
8300
+ };
8301
+ responses: {
8302
+ /** @description Invalid request */
8303
+ BadRequest: {
8304
+ headers: {
8305
+ [name: string]: unknown;
8306
+ };
8307
+ content: {
8308
+ "application/json": components["schemas"]["ProblemDetails"];
8309
+ };
8310
+ };
8311
+ /** @description Authentication required or invalid */
7723
8312
  Unauthorized: {
7724
8313
  headers: {
7725
8314
  [name: string]: unknown;
@@ -12688,6 +13277,30 @@ export interface operations {
12688
13277
  409: components["responses"]["Conflict"];
12689
13278
  };
12690
13279
  };
13280
+ quickDecideApproval: {
13281
+ parameters: {
13282
+ query: {
13283
+ token: string;
13284
+ decision: "approved" | "rejected";
13285
+ };
13286
+ header?: never;
13287
+ path?: never;
13288
+ cookie?: never;
13289
+ };
13290
+ requestBody?: never;
13291
+ responses: {
13292
+ /** @description Redirect to dashboard confirmation page */
13293
+ 302: {
13294
+ headers: {
13295
+ [name: string]: unknown;
13296
+ };
13297
+ content?: never;
13298
+ };
13299
+ 400: components["responses"]["BadRequest"];
13300
+ 404: components["responses"]["NotFound"];
13301
+ 409: components["responses"]["Conflict"];
13302
+ };
13303
+ };
12691
13304
  listDepositDestinations: {
12692
13305
  parameters: {
12693
13306
  query?: never;
@@ -13141,9 +13754,12 @@ export interface operations {
13141
13754
  state?: string;
13142
13755
  /** @description PKCE code challenge */
13143
13756
  code_challenge?: string;
13144
- code_challenge_method?: "S256" | "plain";
13757
+ /** @description Only S256 is supported (PKCE is mandatory for code grants) */
13758
+ code_challenge_method?: "S256";
13145
13759
  /** @description OIDC nonce for ID token replay protection */
13146
13760
  nonce?: string;
13761
+ /** @description Pre-fill the email field on the consent page */
13762
+ login_hint?: string;
13147
13763
  };
13148
13764
  header?: never;
13149
13765
  path?: never;
@@ -13187,7 +13803,7 @@ export interface operations {
13187
13803
  state?: string;
13188
13804
  code_challenge?: string;
13189
13805
  /** @enum {string} */
13190
- code_challenge_method?: "S256" | "plain";
13806
+ code_challenge_method?: "S256";
13191
13807
  nonce?: string;
13192
13808
  };
13193
13809
  };
@@ -13230,7 +13846,7 @@ export interface operations {
13230
13846
  client_id: string;
13231
13847
  /** Format: uri */
13232
13848
  redirect_uri: string;
13233
- /** @description PKCE code verifier (required when code_challenge was used) */
13849
+ /** @description PKCE code verifier (required PKCE S256 is mandatory for all code grants) */
13234
13850
  code_verifier?: string;
13235
13851
  };
13236
13852
  };
@@ -13541,7 +14157,16 @@ export interface operations {
13541
14157
  };
13542
14158
  };
13543
14159
  responses: {
13544
- /** @description Card order accepted (status pending) */
14160
+ /** @description Idempotent replay of a prior order */
14161
+ 200: {
14162
+ headers: {
14163
+ [name: string]: unknown;
14164
+ };
14165
+ content: {
14166
+ "application/json": components["schemas"]["CardResponse"];
14167
+ };
14168
+ };
14169
+ /** @description Card order accepted and payment submitted (status pending) */
13545
14170
  201: {
13546
14171
  headers: {
13547
14172
  [name: string]: unknown;
@@ -13550,6 +14175,15 @@ export interface operations {
13550
14175
  "application/json": components["schemas"]["CardResponse"];
13551
14176
  };
13552
14177
  };
14178
+ /** @description Card order queued for human approval (status awaiting_approval) */
14179
+ 202: {
14180
+ headers: {
14181
+ [name: string]: unknown;
14182
+ };
14183
+ content: {
14184
+ "application/json": components["schemas"]["CardResponse"];
14185
+ };
14186
+ };
13553
14187
  400: components["responses"]["BadRequest"];
13554
14188
  403: components["responses"]["Forbidden"];
13555
14189
  409: components["responses"]["Conflict"];
@@ -13758,5 +14392,669 @@ export interface operations {
13758
14392
  };
13759
14393
  };
13760
14394
  };
14395
+ listAutomations: {
14396
+ parameters: {
14397
+ query?: never;
14398
+ header?: never;
14399
+ path?: never;
14400
+ cookie?: never;
14401
+ };
14402
+ requestBody?: never;
14403
+ responses: {
14404
+ /** @description Automation list */
14405
+ 200: {
14406
+ headers: {
14407
+ [name: string]: unknown;
14408
+ };
14409
+ content: {
14410
+ "application/json": components["schemas"]["AutomationListResponse"];
14411
+ };
14412
+ };
14413
+ 401: components["responses"]["Unauthorized"];
14414
+ };
14415
+ };
14416
+ createAutomation: {
14417
+ parameters: {
14418
+ query?: never;
14419
+ header?: never;
14420
+ path?: never;
14421
+ cookie?: never;
14422
+ };
14423
+ requestBody: {
14424
+ content: {
14425
+ "application/json": components["schemas"]["CreateAutomationRequest"];
14426
+ };
14427
+ };
14428
+ responses: {
14429
+ /** @description Automation created */
14430
+ 201: {
14431
+ headers: {
14432
+ [name: string]: unknown;
14433
+ };
14434
+ content: {
14435
+ "application/json": components["schemas"]["AutomationResponse"];
14436
+ };
14437
+ };
14438
+ 400: components["responses"]["BadRequest"];
14439
+ 401: components["responses"]["Unauthorized"];
14440
+ };
14441
+ };
14442
+ getAutomation: {
14443
+ parameters: {
14444
+ query?: never;
14445
+ header?: never;
14446
+ path: {
14447
+ automationId: string;
14448
+ };
14449
+ cookie?: never;
14450
+ };
14451
+ requestBody?: never;
14452
+ responses: {
14453
+ /** @description Automation details */
14454
+ 200: {
14455
+ headers: {
14456
+ [name: string]: unknown;
14457
+ };
14458
+ content: {
14459
+ "application/json": components["schemas"]["AutomationResponse"];
14460
+ };
14461
+ };
14462
+ 401: components["responses"]["Unauthorized"];
14463
+ 404: components["responses"]["NotFound"];
14464
+ };
14465
+ };
14466
+ deleteAutomation: {
14467
+ parameters: {
14468
+ query?: never;
14469
+ header?: never;
14470
+ path: {
14471
+ automationId: string;
14472
+ };
14473
+ cookie?: never;
14474
+ };
14475
+ requestBody?: never;
14476
+ responses: {
14477
+ /** @description Automation deleted */
14478
+ 204: {
14479
+ headers: {
14480
+ [name: string]: unknown;
14481
+ };
14482
+ content?: never;
14483
+ };
14484
+ 401: components["responses"]["Unauthorized"];
14485
+ 404: components["responses"]["NotFound"];
14486
+ };
14487
+ };
14488
+ updateAutomation: {
14489
+ parameters: {
14490
+ query?: never;
14491
+ header?: never;
14492
+ path: {
14493
+ automationId: string;
14494
+ };
14495
+ cookie?: never;
14496
+ };
14497
+ requestBody: {
14498
+ content: {
14499
+ "application/json": components["schemas"]["UpdateAutomationRequest"];
14500
+ };
14501
+ };
14502
+ responses: {
14503
+ /** @description Automation updated */
14504
+ 200: {
14505
+ headers: {
14506
+ [name: string]: unknown;
14507
+ };
14508
+ content: {
14509
+ "application/json": components["schemas"]["AutomationResponse"];
14510
+ };
14511
+ };
14512
+ 400: components["responses"]["BadRequest"];
14513
+ 401: components["responses"]["Unauthorized"];
14514
+ 404: components["responses"]["NotFound"];
14515
+ };
14516
+ };
14517
+ triggerAutomation: {
14518
+ parameters: {
14519
+ query?: never;
14520
+ header?: never;
14521
+ path: {
14522
+ automationId: string;
14523
+ };
14524
+ cookie?: never;
14525
+ };
14526
+ requestBody?: never;
14527
+ responses: {
14528
+ /** @description Automation triggered */
14529
+ 200: {
14530
+ headers: {
14531
+ [name: string]: unknown;
14532
+ };
14533
+ content: {
14534
+ "application/json": components["schemas"]["AutomationRunResponse"];
14535
+ };
14536
+ };
14537
+ 401: components["responses"]["Unauthorized"];
14538
+ 404: components["responses"]["NotFound"];
14539
+ };
14540
+ };
14541
+ listAutomationRuns: {
14542
+ parameters: {
14543
+ query?: {
14544
+ limit?: number;
14545
+ offset?: number;
14546
+ };
14547
+ header?: never;
14548
+ path: {
14549
+ automationId: string;
14550
+ };
14551
+ cookie?: never;
14552
+ };
14553
+ requestBody?: never;
14554
+ responses: {
14555
+ /** @description Automation run list */
14556
+ 200: {
14557
+ headers: {
14558
+ [name: string]: unknown;
14559
+ };
14560
+ content: {
14561
+ "application/json": components["schemas"]["AutomationRunListResponse"];
14562
+ };
14563
+ };
14564
+ 401: components["responses"]["Unauthorized"];
14565
+ 404: components["responses"]["NotFound"];
14566
+ };
14567
+ };
14568
+ listRuntimes: {
14569
+ parameters: {
14570
+ query?: never;
14571
+ header?: never;
14572
+ path?: never;
14573
+ cookie?: never;
14574
+ };
14575
+ requestBody?: never;
14576
+ responses: {
14577
+ /** @description Runtime list */
14578
+ 200: {
14579
+ headers: {
14580
+ [name: string]: unknown;
14581
+ };
14582
+ content: {
14583
+ "application/json": components["schemas"]["RuntimeListResponse"];
14584
+ };
14585
+ };
14586
+ 401: components["responses"]["Unauthorized"];
14587
+ };
14588
+ };
14589
+ createRuntime: {
14590
+ parameters: {
14591
+ query?: never;
14592
+ header?: never;
14593
+ path?: never;
14594
+ cookie?: never;
14595
+ };
14596
+ requestBody: {
14597
+ content: {
14598
+ "application/json": components["schemas"]["CreateRuntimeRequest"];
14599
+ };
14600
+ };
14601
+ responses: {
14602
+ /** @description Runtime created */
14603
+ 201: {
14604
+ headers: {
14605
+ [name: string]: unknown;
14606
+ };
14607
+ content: {
14608
+ "application/json": components["schemas"]["RuntimeResponse"];
14609
+ };
14610
+ };
14611
+ 400: components["responses"]["BadRequest"];
14612
+ 401: components["responses"]["Unauthorized"];
14613
+ };
14614
+ };
14615
+ getRuntime: {
14616
+ parameters: {
14617
+ query?: never;
14618
+ header?: never;
14619
+ path: {
14620
+ runtimeId: string;
14621
+ };
14622
+ cookie?: never;
14623
+ };
14624
+ requestBody?: never;
14625
+ responses: {
14626
+ /** @description Runtime details */
14627
+ 200: {
14628
+ headers: {
14629
+ [name: string]: unknown;
14630
+ };
14631
+ content: {
14632
+ "application/json": components["schemas"]["RuntimeResponse"];
14633
+ };
14634
+ };
14635
+ 401: components["responses"]["Unauthorized"];
14636
+ 404: components["responses"]["NotFound"];
14637
+ };
14638
+ };
14639
+ deleteRuntime: {
14640
+ parameters: {
14641
+ query?: never;
14642
+ header?: never;
14643
+ path: {
14644
+ runtimeId: string;
14645
+ };
14646
+ cookie?: never;
14647
+ };
14648
+ requestBody?: never;
14649
+ responses: {
14650
+ /** @description Runtime deleted */
14651
+ 204: {
14652
+ headers: {
14653
+ [name: string]: unknown;
14654
+ };
14655
+ content?: never;
14656
+ };
14657
+ 401: components["responses"]["Unauthorized"];
14658
+ 404: components["responses"]["NotFound"];
14659
+ };
14660
+ };
14661
+ updateRuntime: {
14662
+ parameters: {
14663
+ query?: never;
14664
+ header?: never;
14665
+ path: {
14666
+ runtimeId: string;
14667
+ };
14668
+ cookie?: never;
14669
+ };
14670
+ requestBody: {
14671
+ content: {
14672
+ "application/json": components["schemas"]["UpdateRuntimeRequest"];
14673
+ };
14674
+ };
14675
+ responses: {
14676
+ /** @description Runtime updated */
14677
+ 200: {
14678
+ headers: {
14679
+ [name: string]: unknown;
14680
+ };
14681
+ content: {
14682
+ "application/json": components["schemas"]["RuntimeResponse"];
14683
+ };
14684
+ };
14685
+ 400: components["responses"]["BadRequest"];
14686
+ 401: components["responses"]["Unauthorized"];
14687
+ 404: components["responses"]["NotFound"];
14688
+ };
14689
+ };
14690
+ startRuntime: {
14691
+ parameters: {
14692
+ query?: never;
14693
+ header?: never;
14694
+ path: {
14695
+ runtimeId: string;
14696
+ };
14697
+ cookie?: never;
14698
+ };
14699
+ requestBody?: never;
14700
+ responses: {
14701
+ /** @description Runtime started */
14702
+ 200: {
14703
+ headers: {
14704
+ [name: string]: unknown;
14705
+ };
14706
+ content: {
14707
+ "application/json": components["schemas"]["RuntimeResponse"];
14708
+ };
14709
+ };
14710
+ 401: components["responses"]["Unauthorized"];
14711
+ 404: components["responses"]["NotFound"];
14712
+ };
14713
+ };
14714
+ stopRuntime: {
14715
+ parameters: {
14716
+ query?: never;
14717
+ header?: never;
14718
+ path: {
14719
+ runtimeId: string;
14720
+ };
14721
+ cookie?: never;
14722
+ };
14723
+ requestBody?: never;
14724
+ responses: {
14725
+ /** @description Runtime stopped */
14726
+ 200: {
14727
+ headers: {
14728
+ [name: string]: unknown;
14729
+ };
14730
+ content: {
14731
+ "application/json": components["schemas"]["RuntimeResponse"];
14732
+ };
14733
+ };
14734
+ 401: components["responses"]["Unauthorized"];
14735
+ 404: components["responses"]["NotFound"];
14736
+ };
14737
+ };
14738
+ getRuntimeLogs: {
14739
+ parameters: {
14740
+ query?: {
14741
+ /** @description Only return logs after this timestamp */
14742
+ since?: string;
14743
+ limit?: number;
14744
+ };
14745
+ header?: never;
14746
+ path: {
14747
+ runtimeId: string;
14748
+ };
14749
+ cookie?: never;
14750
+ };
14751
+ requestBody?: never;
14752
+ responses: {
14753
+ /** @description Runtime logs */
14754
+ 200: {
14755
+ headers: {
14756
+ [name: string]: unknown;
14757
+ };
14758
+ content: {
14759
+ "application/json": {
14760
+ lines?: {
14761
+ /** Format: date-time */
14762
+ timestamp?: string;
14763
+ message?: string;
14764
+ level?: string;
14765
+ }[];
14766
+ };
14767
+ };
14768
+ };
14769
+ 401: components["responses"]["Unauthorized"];
14770
+ 404: components["responses"]["NotFound"];
14771
+ };
14772
+ };
14773
+ checkSlugAvailability: {
14774
+ parameters: {
14775
+ query?: never;
14776
+ header?: never;
14777
+ path: {
14778
+ slug: string;
14779
+ };
14780
+ cookie?: never;
14781
+ };
14782
+ requestBody?: never;
14783
+ responses: {
14784
+ /** @description Slug availability result */
14785
+ 200: {
14786
+ headers: {
14787
+ [name: string]: unknown;
14788
+ };
14789
+ content: {
14790
+ "application/json": components["schemas"]["SlugCheckResponse"];
14791
+ };
14792
+ };
14793
+ 401: components["responses"]["Unauthorized"];
14794
+ };
14795
+ };
14796
+ listMemoryNamespaces: {
14797
+ parameters: {
14798
+ query?: never;
14799
+ header?: never;
14800
+ path: {
14801
+ agent_id: components["parameters"]["AgentId"];
14802
+ };
14803
+ cookie?: never;
14804
+ };
14805
+ requestBody?: never;
14806
+ responses: {
14807
+ /** @description Namespace list */
14808
+ 200: {
14809
+ headers: {
14810
+ [name: string]: unknown;
14811
+ };
14812
+ content: {
14813
+ "application/json": components["schemas"]["MemoryNamespaceListResponse"];
14814
+ };
14815
+ };
14816
+ 401: components["responses"]["Unauthorized"];
14817
+ 404: components["responses"]["NotFound"];
14818
+ };
14819
+ };
14820
+ listMemoryEntries: {
14821
+ parameters: {
14822
+ query?: never;
14823
+ header?: never;
14824
+ path: {
14825
+ agent_id: components["parameters"]["AgentId"];
14826
+ namespace: string;
14827
+ };
14828
+ cookie?: never;
14829
+ };
14830
+ requestBody?: never;
14831
+ responses: {
14832
+ /** @description Memory entries */
14833
+ 200: {
14834
+ headers: {
14835
+ [name: string]: unknown;
14836
+ };
14837
+ content: {
14838
+ "application/json": components["schemas"]["MemoryEntryListResponse"];
14839
+ };
14840
+ };
14841
+ 401: components["responses"]["Unauthorized"];
14842
+ 404: components["responses"]["NotFound"];
14843
+ };
14844
+ };
14845
+ getMemoryEntry: {
14846
+ parameters: {
14847
+ query?: never;
14848
+ header?: never;
14849
+ path: {
14850
+ agent_id: components["parameters"]["AgentId"];
14851
+ namespace: string;
14852
+ key: string;
14853
+ };
14854
+ cookie?: never;
14855
+ };
14856
+ requestBody?: never;
14857
+ responses: {
14858
+ /** @description Memory entry */
14859
+ 200: {
14860
+ headers: {
14861
+ [name: string]: unknown;
14862
+ };
14863
+ content: {
14864
+ "application/json": components["schemas"]["MemoryEntry"];
14865
+ };
14866
+ };
14867
+ 401: components["responses"]["Unauthorized"];
14868
+ 404: components["responses"]["NotFound"];
14869
+ };
14870
+ };
14871
+ putMemoryEntry: {
14872
+ parameters: {
14873
+ query?: never;
14874
+ header?: never;
14875
+ path: {
14876
+ agent_id: components["parameters"]["AgentId"];
14877
+ namespace: string;
14878
+ key: string;
14879
+ };
14880
+ cookie?: never;
14881
+ };
14882
+ requestBody: {
14883
+ content: {
14884
+ "application/json": components["schemas"]["PutMemoryRequest"];
14885
+ };
14886
+ };
14887
+ responses: {
14888
+ /** @description Memory entry stored */
14889
+ 200: {
14890
+ headers: {
14891
+ [name: string]: unknown;
14892
+ };
14893
+ content: {
14894
+ "application/json": components["schemas"]["MemoryEntry"];
14895
+ };
14896
+ };
14897
+ 400: components["responses"]["BadRequest"];
14898
+ 401: components["responses"]["Unauthorized"];
14899
+ 404: components["responses"]["NotFound"];
14900
+ };
14901
+ };
14902
+ deleteMemoryEntry: {
14903
+ parameters: {
14904
+ query?: never;
14905
+ header?: never;
14906
+ path: {
14907
+ agent_id: components["parameters"]["AgentId"];
14908
+ namespace: string;
14909
+ key: string;
14910
+ };
14911
+ cookie?: never;
14912
+ };
14913
+ requestBody?: never;
14914
+ responses: {
14915
+ /** @description Memory entry deleted */
14916
+ 204: {
14917
+ headers: {
14918
+ [name: string]: unknown;
14919
+ };
14920
+ content?: never;
14921
+ };
14922
+ 401: components["responses"]["Unauthorized"];
14923
+ 404: components["responses"]["NotFound"];
14924
+ };
14925
+ };
14926
+ searchMemory: {
14927
+ parameters: {
14928
+ query?: never;
14929
+ header?: never;
14930
+ path: {
14931
+ agent_id: components["parameters"]["AgentId"];
14932
+ };
14933
+ cookie?: never;
14934
+ };
14935
+ requestBody: {
14936
+ content: {
14937
+ "application/json": components["schemas"]["MemorySearchRequest"];
14938
+ };
14939
+ };
14940
+ responses: {
14941
+ /** @description Search results */
14942
+ 200: {
14943
+ headers: {
14944
+ [name: string]: unknown;
14945
+ };
14946
+ content: {
14947
+ "application/json": components["schemas"]["MemorySearchResponse"];
14948
+ };
14949
+ };
14950
+ 400: components["responses"]["BadRequest"];
14951
+ 401: components["responses"]["Unauthorized"];
14952
+ 404: components["responses"]["NotFound"];
14953
+ };
14954
+ };
14955
+ getAgentCard: {
14956
+ parameters: {
14957
+ query?: never;
14958
+ header?: never;
14959
+ path: {
14960
+ agent_id: components["parameters"]["AgentId"];
14961
+ };
14962
+ cookie?: never;
14963
+ };
14964
+ requestBody?: never;
14965
+ responses: {
14966
+ /** @description Agent card */
14967
+ 200: {
14968
+ headers: {
14969
+ [name: string]: unknown;
14970
+ };
14971
+ content: {
14972
+ "application/json": components["schemas"]["AgentCardResponse"];
14973
+ };
14974
+ };
14975
+ 404: components["responses"]["NotFound"];
14976
+ };
14977
+ };
14978
+ listDirectory: {
14979
+ parameters: {
14980
+ query?: {
14981
+ page?: number;
14982
+ per_page?: number;
14983
+ /** @description Comma-separated tag filter */
14984
+ tags?: string;
14985
+ /** @description Search query */
14986
+ q?: string;
14987
+ };
14988
+ header?: never;
14989
+ path?: never;
14990
+ cookie?: never;
14991
+ };
14992
+ requestBody?: never;
14993
+ responses: {
14994
+ /** @description Directory listing */
14995
+ 200: {
14996
+ headers: {
14997
+ [name: string]: unknown;
14998
+ };
14999
+ content: {
15000
+ "application/json": components["schemas"]["DirectoryResponse"];
15001
+ };
15002
+ };
15003
+ };
15004
+ };
15005
+ updateDiscoverySettings: {
15006
+ parameters: {
15007
+ query?: never;
15008
+ header?: never;
15009
+ path: {
15010
+ agent_id: components["parameters"]["AgentId"];
15011
+ };
15012
+ cookie?: never;
15013
+ };
15014
+ requestBody: {
15015
+ content: {
15016
+ "application/json": components["schemas"]["UpdateDiscoveryRequest"];
15017
+ };
15018
+ };
15019
+ responses: {
15020
+ /** @description Discovery settings updated */
15021
+ 200: {
15022
+ headers: {
15023
+ [name: string]: unknown;
15024
+ };
15025
+ content: {
15026
+ "application/json": components["schemas"]["AgentCardResponse"];
15027
+ };
15028
+ };
15029
+ 400: components["responses"]["BadRequest"];
15030
+ 401: components["responses"]["Unauthorized"];
15031
+ 404: components["responses"]["NotFound"];
15032
+ };
15033
+ };
15034
+ listMarketplace: {
15035
+ parameters: {
15036
+ query?: {
15037
+ page?: number;
15038
+ per_page?: number;
15039
+ /** @description Search query */
15040
+ q?: string;
15041
+ };
15042
+ header?: never;
15043
+ path?: never;
15044
+ cookie?: never;
15045
+ };
15046
+ requestBody?: never;
15047
+ responses: {
15048
+ /** @description Marketplace listing */
15049
+ 200: {
15050
+ headers: {
15051
+ [name: string]: unknown;
15052
+ };
15053
+ content: {
15054
+ "application/json": components["schemas"]["DirectoryResponse"];
15055
+ };
15056
+ };
15057
+ };
15058
+ };
13761
15059
  }
13762
15060
  //# sourceMappingURL=api-types.d.ts.map