@1claw/sdk 0.28.0 → 0.29.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.
- package/README.md +1 -1
- package/dist/generated/api-types.d.ts +466 -0
- package/dist/generated/api-types.d.ts.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -99,9 +99,9 @@ await client.auth.verifyEmailChange({ code: "123456" });
|
|
|
99
99
|
| `client.treasuryWallets` | `generateWallets`, `listWallets`, `getWallet`, `exportWallet`, `rotateWallet`, `deactivateWallet` |
|
|
100
100
|
| `client.signingKeys` | `create`, `list`, `rotate`, `deactivate`, `export` |
|
|
101
101
|
| `client.platform` | `createApp`, `listApps`, `getApp`, `updateApp`, `deleteApp`, `createTemplate`, `listTemplates`, `upsertUser`, `listUsers`, `bootstrapUser`, `claimPreview`, `claimRedeem`, `listConnectedApps`, `disconnectApp` |
|
|
102
|
+
| `client.x402` | `getPaymentRequirement`, `pay`, `verifyReceipt`, `withPayment` |
|
|
102
103
|
|
|
103
104
|
**Platform bootstrap response:** `bootstrapUser()` returns a `summary` object containing `agent_api_key` (one-time, not retrievable later) and `signing_keys[]` (with chain, address, and public_key for each provisioned key).
|
|
104
|
-
| `client.x402` | `getPaymentRequirement`, `pay`, `verifyReceipt`, `withPayment` |
|
|
105
105
|
|
|
106
106
|
**Agent create response:** `agents.create()` returns `{ agent: AgentResponse, api_key?: string }`. The `api_key` is only present for `auth_method: "api_key"` and is shown once — use `data.agent.id` and `data.api_key` from the response.
|
|
107
107
|
|
|
@@ -1432,6 +1432,27 @@ export interface paths {
|
|
|
1432
1432
|
patch?: never;
|
|
1433
1433
|
trace?: never;
|
|
1434
1434
|
};
|
|
1435
|
+
"/v1/agents/{agent_id}/signing-keys/{chain}/balance": {
|
|
1436
|
+
parameters: {
|
|
1437
|
+
query?: never;
|
|
1438
|
+
header?: never;
|
|
1439
|
+
path?: never;
|
|
1440
|
+
cookie?: never;
|
|
1441
|
+
};
|
|
1442
|
+
/**
|
|
1443
|
+
* Get signing key balance
|
|
1444
|
+
* @description Returns the native token balance for the agent's signing key address
|
|
1445
|
+
* on the specified chain.
|
|
1446
|
+
*/
|
|
1447
|
+
get: operations["getSigningKeyBalance"];
|
|
1448
|
+
put?: never;
|
|
1449
|
+
post?: never;
|
|
1450
|
+
delete?: never;
|
|
1451
|
+
options?: never;
|
|
1452
|
+
head?: never;
|
|
1453
|
+
patch?: never;
|
|
1454
|
+
trace?: never;
|
|
1455
|
+
};
|
|
1435
1456
|
"/v1/agents/{agent_id}/sign": {
|
|
1436
1457
|
parameters: {
|
|
1437
1458
|
query?: never;
|
|
@@ -2284,6 +2305,108 @@ export interface paths {
|
|
|
2284
2305
|
patch?: never;
|
|
2285
2306
|
trace?: never;
|
|
2286
2307
|
};
|
|
2308
|
+
"/v1/treasury/wallets/{chain}/balance": {
|
|
2309
|
+
parameters: {
|
|
2310
|
+
query?: never;
|
|
2311
|
+
header?: never;
|
|
2312
|
+
path?: never;
|
|
2313
|
+
cookie?: never;
|
|
2314
|
+
};
|
|
2315
|
+
/**
|
|
2316
|
+
* Get wallet balance
|
|
2317
|
+
* @description Returns the native and token balances for the user's active wallet
|
|
2318
|
+
* on the specified chain.
|
|
2319
|
+
*/
|
|
2320
|
+
get: operations["getTreasuryWalletBalance"];
|
|
2321
|
+
put?: never;
|
|
2322
|
+
post?: never;
|
|
2323
|
+
delete?: never;
|
|
2324
|
+
options?: never;
|
|
2325
|
+
head?: never;
|
|
2326
|
+
patch?: never;
|
|
2327
|
+
trace?: never;
|
|
2328
|
+
};
|
|
2329
|
+
"/v1/treasury/wallets/{chain}/send": {
|
|
2330
|
+
parameters: {
|
|
2331
|
+
query?: never;
|
|
2332
|
+
header?: never;
|
|
2333
|
+
path?: never;
|
|
2334
|
+
cookie?: never;
|
|
2335
|
+
};
|
|
2336
|
+
get?: never;
|
|
2337
|
+
put?: never;
|
|
2338
|
+
/**
|
|
2339
|
+
* Send from treasury wallet
|
|
2340
|
+
* @description Signs and broadcasts a transaction from the user's active wallet on
|
|
2341
|
+
* the specified chain. Requires re-authentication via `X-Auth-Confirm`
|
|
2342
|
+
* header (account password). Human users only.
|
|
2343
|
+
*/
|
|
2344
|
+
post: operations["sendFromTreasuryWallet"];
|
|
2345
|
+
delete?: never;
|
|
2346
|
+
options?: never;
|
|
2347
|
+
head?: never;
|
|
2348
|
+
patch?: never;
|
|
2349
|
+
trace?: never;
|
|
2350
|
+
};
|
|
2351
|
+
"/v1/treasury/wallets/{chain}/swap": {
|
|
2352
|
+
parameters: {
|
|
2353
|
+
query?: never;
|
|
2354
|
+
header?: never;
|
|
2355
|
+
path?: never;
|
|
2356
|
+
cookie?: never;
|
|
2357
|
+
};
|
|
2358
|
+
get?: never;
|
|
2359
|
+
put?: never;
|
|
2360
|
+
/**
|
|
2361
|
+
* Swap tokens via DEX aggregator
|
|
2362
|
+
* @description Executes a token swap through a DEX aggregator from the user's active
|
|
2363
|
+
* wallet on the specified chain. Requires re-authentication via
|
|
2364
|
+
* `X-Auth-Confirm` header (account password). Human users only.
|
|
2365
|
+
*/
|
|
2366
|
+
post: operations["swapFromTreasuryWallet"];
|
|
2367
|
+
delete?: never;
|
|
2368
|
+
options?: never;
|
|
2369
|
+
head?: never;
|
|
2370
|
+
patch?: never;
|
|
2371
|
+
trace?: never;
|
|
2372
|
+
};
|
|
2373
|
+
"/v1/webhooks": {
|
|
2374
|
+
parameters: {
|
|
2375
|
+
query?: never;
|
|
2376
|
+
header?: never;
|
|
2377
|
+
path?: never;
|
|
2378
|
+
cookie?: never;
|
|
2379
|
+
};
|
|
2380
|
+
/** List webhooks */
|
|
2381
|
+
get: operations["listWebhooks"];
|
|
2382
|
+
put?: never;
|
|
2383
|
+
/** Register a webhook */
|
|
2384
|
+
post: operations["createWebhook"];
|
|
2385
|
+
delete?: never;
|
|
2386
|
+
options?: never;
|
|
2387
|
+
head?: never;
|
|
2388
|
+
patch?: never;
|
|
2389
|
+
trace?: never;
|
|
2390
|
+
};
|
|
2391
|
+
"/v1/webhooks/{id}": {
|
|
2392
|
+
parameters: {
|
|
2393
|
+
query?: never;
|
|
2394
|
+
header?: never;
|
|
2395
|
+
path?: never;
|
|
2396
|
+
cookie?: never;
|
|
2397
|
+
};
|
|
2398
|
+
/** Get webhook */
|
|
2399
|
+
get: operations["getWebhook"];
|
|
2400
|
+
put?: never;
|
|
2401
|
+
post?: never;
|
|
2402
|
+
/** Delete webhook */
|
|
2403
|
+
delete: operations["deleteWebhook"];
|
|
2404
|
+
options?: never;
|
|
2405
|
+
head?: never;
|
|
2406
|
+
/** Update webhook */
|
|
2407
|
+
patch: operations["updateWebhook"];
|
|
2408
|
+
trace?: never;
|
|
2409
|
+
};
|
|
2287
2410
|
"/v1/admin/settings": {
|
|
2288
2411
|
parameters: {
|
|
2289
2412
|
query?: never;
|
|
@@ -4442,6 +4565,11 @@ export interface components {
|
|
|
4442
4565
|
* @enum {string}
|
|
4443
4566
|
*/
|
|
4444
4567
|
mode: "eoa" | "smart_account";
|
|
4568
|
+
/**
|
|
4569
|
+
* @description Whether to submit as a gasless (sponsored) transaction
|
|
4570
|
+
* @default false
|
|
4571
|
+
*/
|
|
4572
|
+
gasless: boolean;
|
|
4445
4573
|
};
|
|
4446
4574
|
SignTransactionRequest: {
|
|
4447
4575
|
/** @description Destination address (0x-prefixed) */
|
|
@@ -5144,6 +5272,102 @@ export interface components {
|
|
|
5144
5272
|
/** @description Raw private key in hex encoding. Handle with extreme care. */
|
|
5145
5273
|
private_key_hex?: string;
|
|
5146
5274
|
};
|
|
5275
|
+
TreasuryWalletBalanceResponse: {
|
|
5276
|
+
chain: string;
|
|
5277
|
+
address: string;
|
|
5278
|
+
native: {
|
|
5279
|
+
symbol: string;
|
|
5280
|
+
balance_wei: string;
|
|
5281
|
+
balance_display: string;
|
|
5282
|
+
};
|
|
5283
|
+
tokens?: {
|
|
5284
|
+
contract_address: string;
|
|
5285
|
+
balance_raw: string;
|
|
5286
|
+
}[];
|
|
5287
|
+
};
|
|
5288
|
+
TreasuryWalletSendRequest: {
|
|
5289
|
+
/** @description Destination address (0x-prefixed) */
|
|
5290
|
+
to: string;
|
|
5291
|
+
/** @description Value in wei */
|
|
5292
|
+
value_wei: string;
|
|
5293
|
+
/** @description Hex-encoded calldata (optional) */
|
|
5294
|
+
data?: string;
|
|
5295
|
+
/** @description Gas limit override */
|
|
5296
|
+
gas_limit?: number;
|
|
5297
|
+
};
|
|
5298
|
+
TreasuryWalletSendResponse: {
|
|
5299
|
+
tx_hash: string;
|
|
5300
|
+
from: string;
|
|
5301
|
+
to: string;
|
|
5302
|
+
value_wei: string;
|
|
5303
|
+
chain: string;
|
|
5304
|
+
status: string;
|
|
5305
|
+
};
|
|
5306
|
+
TreasuryWalletSwapRequest: {
|
|
5307
|
+
/** @description Address of the token to sell (or "native" for ETH) */
|
|
5308
|
+
sell_token: string;
|
|
5309
|
+
/** @description Address of the token to buy (or "native" for ETH) */
|
|
5310
|
+
buy_token: string;
|
|
5311
|
+
/** @description Amount to sell in token's smallest unit */
|
|
5312
|
+
sell_amount: string;
|
|
5313
|
+
};
|
|
5314
|
+
TreasuryWalletSwapResponse: {
|
|
5315
|
+
tx_hash: string;
|
|
5316
|
+
sell_token: string;
|
|
5317
|
+
buy_token: string;
|
|
5318
|
+
sell_amount: string;
|
|
5319
|
+
buy_amount: string;
|
|
5320
|
+
chain: string;
|
|
5321
|
+
status: string;
|
|
5322
|
+
};
|
|
5323
|
+
CreateWebhookRequest: {
|
|
5324
|
+
/**
|
|
5325
|
+
* Format: uri
|
|
5326
|
+
* @description HTTPS URL to deliver webhook events to
|
|
5327
|
+
*/
|
|
5328
|
+
url: string;
|
|
5329
|
+
/** @description Event types to subscribe to */
|
|
5330
|
+
events: string[];
|
|
5331
|
+
description?: string;
|
|
5332
|
+
};
|
|
5333
|
+
UpdateWebhookRequest: {
|
|
5334
|
+
/** Format: uri */
|
|
5335
|
+
url?: string;
|
|
5336
|
+
events?: string[];
|
|
5337
|
+
is_active?: boolean;
|
|
5338
|
+
description?: string;
|
|
5339
|
+
};
|
|
5340
|
+
WebhookCreatedResponse: {
|
|
5341
|
+
/** Format: uuid */
|
|
5342
|
+
id: string;
|
|
5343
|
+
/** Format: uri */
|
|
5344
|
+
url: string;
|
|
5345
|
+
events: string[];
|
|
5346
|
+
/** @description HMAC signing secret for verifying payloads (shown only once) */
|
|
5347
|
+
secret: string;
|
|
5348
|
+
/** Format: date-time */
|
|
5349
|
+
created_at: string;
|
|
5350
|
+
};
|
|
5351
|
+
WebhookResponse: {
|
|
5352
|
+
/** Format: uuid */
|
|
5353
|
+
id: string;
|
|
5354
|
+
/** Format: uri */
|
|
5355
|
+
url: string;
|
|
5356
|
+
events: string[];
|
|
5357
|
+
is_active: boolean;
|
|
5358
|
+
description?: string;
|
|
5359
|
+
/** Format: date-time */
|
|
5360
|
+
created_at: string;
|
|
5361
|
+
};
|
|
5362
|
+
WebhookListResponse: {
|
|
5363
|
+
webhooks: components["schemas"]["WebhookResponse"][];
|
|
5364
|
+
};
|
|
5365
|
+
SigningKeyBalanceResponse: {
|
|
5366
|
+
chain: string;
|
|
5367
|
+
address: string;
|
|
5368
|
+
balance_wei: string;
|
|
5369
|
+
balance_display: string;
|
|
5370
|
+
};
|
|
5147
5371
|
PaymentRequirement: {
|
|
5148
5372
|
x402Version?: number;
|
|
5149
5373
|
accepts?: {
|
|
@@ -8036,6 +8260,32 @@ export interface operations {
|
|
|
8036
8260
|
404: components["responses"]["NotFound"];
|
|
8037
8261
|
};
|
|
8038
8262
|
};
|
|
8263
|
+
getSigningKeyBalance: {
|
|
8264
|
+
parameters: {
|
|
8265
|
+
query?: never;
|
|
8266
|
+
header?: never;
|
|
8267
|
+
path: {
|
|
8268
|
+
agent_id: components["parameters"]["AgentId"];
|
|
8269
|
+
chain: string;
|
|
8270
|
+
};
|
|
8271
|
+
cookie?: never;
|
|
8272
|
+
};
|
|
8273
|
+
requestBody?: never;
|
|
8274
|
+
responses: {
|
|
8275
|
+
/** @description Signing key balance */
|
|
8276
|
+
200: {
|
|
8277
|
+
headers: {
|
|
8278
|
+
[name: string]: unknown;
|
|
8279
|
+
};
|
|
8280
|
+
content: {
|
|
8281
|
+
"application/json": components["schemas"]["SigningKeyBalanceResponse"];
|
|
8282
|
+
};
|
|
8283
|
+
};
|
|
8284
|
+
401: components["responses"]["Unauthorized"];
|
|
8285
|
+
403: components["responses"]["Forbidden"];
|
|
8286
|
+
404: components["responses"]["NotFound"];
|
|
8287
|
+
};
|
|
8288
|
+
};
|
|
8039
8289
|
signIntent: {
|
|
8040
8290
|
parameters: {
|
|
8041
8291
|
query?: never;
|
|
@@ -9406,6 +9656,222 @@ export interface operations {
|
|
|
9406
9656
|
404: components["responses"]["NotFound"];
|
|
9407
9657
|
};
|
|
9408
9658
|
};
|
|
9659
|
+
getTreasuryWalletBalance: {
|
|
9660
|
+
parameters: {
|
|
9661
|
+
query?: {
|
|
9662
|
+
/** @description Optional list of ERC-20 contract addresses to query balances for */
|
|
9663
|
+
tokens?: string[];
|
|
9664
|
+
};
|
|
9665
|
+
header?: never;
|
|
9666
|
+
path: {
|
|
9667
|
+
chain: string;
|
|
9668
|
+
};
|
|
9669
|
+
cookie?: never;
|
|
9670
|
+
};
|
|
9671
|
+
requestBody?: never;
|
|
9672
|
+
responses: {
|
|
9673
|
+
/** @description Wallet balance */
|
|
9674
|
+
200: {
|
|
9675
|
+
headers: {
|
|
9676
|
+
[name: string]: unknown;
|
|
9677
|
+
};
|
|
9678
|
+
content: {
|
|
9679
|
+
"application/json": components["schemas"]["TreasuryWalletBalanceResponse"];
|
|
9680
|
+
};
|
|
9681
|
+
};
|
|
9682
|
+
401: components["responses"]["Unauthorized"];
|
|
9683
|
+
403: components["responses"]["Forbidden"];
|
|
9684
|
+
404: components["responses"]["NotFound"];
|
|
9685
|
+
};
|
|
9686
|
+
};
|
|
9687
|
+
sendFromTreasuryWallet: {
|
|
9688
|
+
parameters: {
|
|
9689
|
+
query?: never;
|
|
9690
|
+
header: {
|
|
9691
|
+
/** @description Account password for re-authentication */
|
|
9692
|
+
"X-Auth-Confirm": string;
|
|
9693
|
+
};
|
|
9694
|
+
path: {
|
|
9695
|
+
chain: string;
|
|
9696
|
+
};
|
|
9697
|
+
cookie?: never;
|
|
9698
|
+
};
|
|
9699
|
+
requestBody: {
|
|
9700
|
+
content: {
|
|
9701
|
+
"application/json": components["schemas"]["TreasuryWalletSendRequest"];
|
|
9702
|
+
};
|
|
9703
|
+
};
|
|
9704
|
+
responses: {
|
|
9705
|
+
/** @description Transaction sent */
|
|
9706
|
+
200: {
|
|
9707
|
+
headers: {
|
|
9708
|
+
[name: string]: unknown;
|
|
9709
|
+
};
|
|
9710
|
+
content: {
|
|
9711
|
+
"application/json": components["schemas"]["TreasuryWalletSendResponse"];
|
|
9712
|
+
};
|
|
9713
|
+
};
|
|
9714
|
+
400: components["responses"]["BadRequest"];
|
|
9715
|
+
401: components["responses"]["Unauthorized"];
|
|
9716
|
+
403: components["responses"]["Forbidden"];
|
|
9717
|
+
404: components["responses"]["NotFound"];
|
|
9718
|
+
};
|
|
9719
|
+
};
|
|
9720
|
+
swapFromTreasuryWallet: {
|
|
9721
|
+
parameters: {
|
|
9722
|
+
query?: never;
|
|
9723
|
+
header: {
|
|
9724
|
+
/** @description Account password for re-authentication */
|
|
9725
|
+
"X-Auth-Confirm": string;
|
|
9726
|
+
};
|
|
9727
|
+
path: {
|
|
9728
|
+
chain: string;
|
|
9729
|
+
};
|
|
9730
|
+
cookie?: never;
|
|
9731
|
+
};
|
|
9732
|
+
requestBody: {
|
|
9733
|
+
content: {
|
|
9734
|
+
"application/json": components["schemas"]["TreasuryWalletSwapRequest"];
|
|
9735
|
+
};
|
|
9736
|
+
};
|
|
9737
|
+
responses: {
|
|
9738
|
+
/** @description Swap executed */
|
|
9739
|
+
200: {
|
|
9740
|
+
headers: {
|
|
9741
|
+
[name: string]: unknown;
|
|
9742
|
+
};
|
|
9743
|
+
content: {
|
|
9744
|
+
"application/json": components["schemas"]["TreasuryWalletSwapResponse"];
|
|
9745
|
+
};
|
|
9746
|
+
};
|
|
9747
|
+
400: components["responses"]["BadRequest"];
|
|
9748
|
+
401: components["responses"]["Unauthorized"];
|
|
9749
|
+
403: components["responses"]["Forbidden"];
|
|
9750
|
+
404: components["responses"]["NotFound"];
|
|
9751
|
+
};
|
|
9752
|
+
};
|
|
9753
|
+
listWebhooks: {
|
|
9754
|
+
parameters: {
|
|
9755
|
+
query?: never;
|
|
9756
|
+
header?: never;
|
|
9757
|
+
path?: never;
|
|
9758
|
+
cookie?: never;
|
|
9759
|
+
};
|
|
9760
|
+
requestBody?: never;
|
|
9761
|
+
responses: {
|
|
9762
|
+
/** @description Webhook list */
|
|
9763
|
+
200: {
|
|
9764
|
+
headers: {
|
|
9765
|
+
[name: string]: unknown;
|
|
9766
|
+
};
|
|
9767
|
+
content: {
|
|
9768
|
+
"application/json": components["schemas"]["WebhookListResponse"];
|
|
9769
|
+
};
|
|
9770
|
+
};
|
|
9771
|
+
401: components["responses"]["Unauthorized"];
|
|
9772
|
+
};
|
|
9773
|
+
};
|
|
9774
|
+
createWebhook: {
|
|
9775
|
+
parameters: {
|
|
9776
|
+
query?: never;
|
|
9777
|
+
header?: never;
|
|
9778
|
+
path?: never;
|
|
9779
|
+
cookie?: never;
|
|
9780
|
+
};
|
|
9781
|
+
requestBody: {
|
|
9782
|
+
content: {
|
|
9783
|
+
"application/json": components["schemas"]["CreateWebhookRequest"];
|
|
9784
|
+
};
|
|
9785
|
+
};
|
|
9786
|
+
responses: {
|
|
9787
|
+
/** @description Webhook registered */
|
|
9788
|
+
201: {
|
|
9789
|
+
headers: {
|
|
9790
|
+
[name: string]: unknown;
|
|
9791
|
+
};
|
|
9792
|
+
content: {
|
|
9793
|
+
"application/json": components["schemas"]["WebhookCreatedResponse"];
|
|
9794
|
+
};
|
|
9795
|
+
};
|
|
9796
|
+
400: components["responses"]["BadRequest"];
|
|
9797
|
+
401: components["responses"]["Unauthorized"];
|
|
9798
|
+
};
|
|
9799
|
+
};
|
|
9800
|
+
getWebhook: {
|
|
9801
|
+
parameters: {
|
|
9802
|
+
query?: never;
|
|
9803
|
+
header?: never;
|
|
9804
|
+
path: {
|
|
9805
|
+
id: string;
|
|
9806
|
+
};
|
|
9807
|
+
cookie?: never;
|
|
9808
|
+
};
|
|
9809
|
+
requestBody?: never;
|
|
9810
|
+
responses: {
|
|
9811
|
+
/** @description Webhook details */
|
|
9812
|
+
200: {
|
|
9813
|
+
headers: {
|
|
9814
|
+
[name: string]: unknown;
|
|
9815
|
+
};
|
|
9816
|
+
content: {
|
|
9817
|
+
"application/json": components["schemas"]["WebhookResponse"];
|
|
9818
|
+
};
|
|
9819
|
+
};
|
|
9820
|
+
401: components["responses"]["Unauthorized"];
|
|
9821
|
+
404: components["responses"]["NotFound"];
|
|
9822
|
+
};
|
|
9823
|
+
};
|
|
9824
|
+
deleteWebhook: {
|
|
9825
|
+
parameters: {
|
|
9826
|
+
query?: never;
|
|
9827
|
+
header?: never;
|
|
9828
|
+
path: {
|
|
9829
|
+
id: string;
|
|
9830
|
+
};
|
|
9831
|
+
cookie?: never;
|
|
9832
|
+
};
|
|
9833
|
+
requestBody?: never;
|
|
9834
|
+
responses: {
|
|
9835
|
+
/** @description Webhook deleted */
|
|
9836
|
+
204: {
|
|
9837
|
+
headers: {
|
|
9838
|
+
[name: string]: unknown;
|
|
9839
|
+
};
|
|
9840
|
+
content?: never;
|
|
9841
|
+
};
|
|
9842
|
+
401: components["responses"]["Unauthorized"];
|
|
9843
|
+
404: components["responses"]["NotFound"];
|
|
9844
|
+
};
|
|
9845
|
+
};
|
|
9846
|
+
updateWebhook: {
|
|
9847
|
+
parameters: {
|
|
9848
|
+
query?: never;
|
|
9849
|
+
header?: never;
|
|
9850
|
+
path: {
|
|
9851
|
+
id: string;
|
|
9852
|
+
};
|
|
9853
|
+
cookie?: never;
|
|
9854
|
+
};
|
|
9855
|
+
requestBody: {
|
|
9856
|
+
content: {
|
|
9857
|
+
"application/json": components["schemas"]["UpdateWebhookRequest"];
|
|
9858
|
+
};
|
|
9859
|
+
};
|
|
9860
|
+
responses: {
|
|
9861
|
+
/** @description Webhook updated */
|
|
9862
|
+
200: {
|
|
9863
|
+
headers: {
|
|
9864
|
+
[name: string]: unknown;
|
|
9865
|
+
};
|
|
9866
|
+
content: {
|
|
9867
|
+
"application/json": components["schemas"]["WebhookResponse"];
|
|
9868
|
+
};
|
|
9869
|
+
};
|
|
9870
|
+
400: components["responses"]["BadRequest"];
|
|
9871
|
+
401: components["responses"]["Unauthorized"];
|
|
9872
|
+
404: components["responses"]["NotFound"];
|
|
9873
|
+
};
|
|
9874
|
+
};
|
|
9409
9875
|
adminListSettings: {
|
|
9410
9876
|
parameters: {
|
|
9411
9877
|
query?: never;
|