@1claw/openapi-spec 0.41.1 → 0.41.2
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/openapi.json +72 -1
- package/openapi.yaml +54 -1
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -11405,7 +11405,27 @@
|
|
|
11405
11405
|
"per_chain_guardrails": {
|
|
11406
11406
|
"type": "object",
|
|
11407
11407
|
"additionalProperties": true,
|
|
11408
|
-
"description": "Per-chain guardrail overrides. Keys are signing chains (ethereum, bitcoin, solana, xrp, cardano, tron).\nEach value may include max_value, daily_limit, to_allowlist, token_allowlist
|
|
11408
|
+
"description": "Per-chain guardrail overrides. Keys are signing chains (ethereum, bitcoin, solana, xrp, cardano, tron).\nEach value may include max_value, daily_limit, to_allowlist, token_allowlist, max_per_day, overhead_budget, max_ata_creates_per_day.\nStrictest of global and per-chain limits wins. Daily limits apply per chain family spend, not cross-chain totals.\n"
|
|
11409
|
+
},
|
|
11410
|
+
"tx_max_per_day": {
|
|
11411
|
+
"type": "integer",
|
|
11412
|
+
"nullable": true,
|
|
11413
|
+
"description": "Max transactions per UTC calendar day. Null = unlimited."
|
|
11414
|
+
},
|
|
11415
|
+
"tx_overhead_budget": {
|
|
11416
|
+
"type": "object",
|
|
11417
|
+
"nullable": true,
|
|
11418
|
+
"additionalProperties": {
|
|
11419
|
+
"type": "string"
|
|
11420
|
+
},
|
|
11421
|
+
"description": "Per-chain daily overhead budget in native units (e.g. {\"solana\":\"0.5\",\"xrp\":\"100\"})."
|
|
11422
|
+
},
|
|
11423
|
+
"solana_ata_allowlist": {
|
|
11424
|
+
"type": "array",
|
|
11425
|
+
"items": {
|
|
11426
|
+
"type": "string"
|
|
11427
|
+
},
|
|
11428
|
+
"description": "Solana wallet addresses whose ATAs may be created. Empty = unrestricted."
|
|
11409
11429
|
},
|
|
11410
11430
|
"api_key_expires_at": {
|
|
11411
11431
|
"type": "string",
|
|
@@ -11502,6 +11522,26 @@
|
|
|
11502
11522
|
"type": "boolean",
|
|
11503
11523
|
"description": "When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)"
|
|
11504
11524
|
},
|
|
11525
|
+
"tx_max_per_day": {
|
|
11526
|
+
"type": "integer",
|
|
11527
|
+
"nullable": true,
|
|
11528
|
+
"description": "Max transactions per UTC calendar day. Null = unlimited."
|
|
11529
|
+
},
|
|
11530
|
+
"tx_overhead_budget": {
|
|
11531
|
+
"type": "object",
|
|
11532
|
+
"nullable": true,
|
|
11533
|
+
"additionalProperties": {
|
|
11534
|
+
"type": "string"
|
|
11535
|
+
},
|
|
11536
|
+
"description": "Per-chain daily overhead budget in native units."
|
|
11537
|
+
},
|
|
11538
|
+
"solana_ata_allowlist": {
|
|
11539
|
+
"type": "array",
|
|
11540
|
+
"items": {
|
|
11541
|
+
"type": "string"
|
|
11542
|
+
},
|
|
11543
|
+
"description": "Solana wallet addresses whose ATAs may be created."
|
|
11544
|
+
},
|
|
11505
11545
|
"federation_enabled": {
|
|
11506
11546
|
"type": "boolean",
|
|
11507
11547
|
"description": "Enable OIDC federation (RFC 8693 token-exchange) for this agent.\nWhen true, the agent may call POST /v1/auth/federated-token to mint\nfederation tokens for the audiences listed in `federation_audiences`.\n"
|
|
@@ -11689,6 +11729,37 @@
|
|
|
11689
11729
|
"type": "boolean",
|
|
11690
11730
|
"description": "When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)"
|
|
11691
11731
|
},
|
|
11732
|
+
"tx_max_per_day": {
|
|
11733
|
+
"type": "integer",
|
|
11734
|
+
"nullable": true,
|
|
11735
|
+
"description": "Max transactions per UTC calendar day. Null = unlimited."
|
|
11736
|
+
},
|
|
11737
|
+
"tx_overhead_budget": {
|
|
11738
|
+
"type": "object",
|
|
11739
|
+
"nullable": true,
|
|
11740
|
+
"additionalProperties": {
|
|
11741
|
+
"type": "string"
|
|
11742
|
+
},
|
|
11743
|
+
"description": "Per-chain daily overhead budget in native units."
|
|
11744
|
+
},
|
|
11745
|
+
"solana_ata_allowlist": {
|
|
11746
|
+
"type": "array",
|
|
11747
|
+
"items": {
|
|
11748
|
+
"type": "string"
|
|
11749
|
+
},
|
|
11750
|
+
"description": "Solana wallet addresses whose ATAs may be created."
|
|
11751
|
+
},
|
|
11752
|
+
"tx_count_today": {
|
|
11753
|
+
"type": "integer",
|
|
11754
|
+
"description": "Today's transaction count (UTC calendar day). Present when intents_api_enabled."
|
|
11755
|
+
},
|
|
11756
|
+
"tx_overhead_today_by_chain": {
|
|
11757
|
+
"type": "object",
|
|
11758
|
+
"additionalProperties": {
|
|
11759
|
+
"type": "string"
|
|
11760
|
+
},
|
|
11761
|
+
"description": "Today's overhead spend by chain in native units."
|
|
11762
|
+
},
|
|
11692
11763
|
"federation_enabled": {
|
|
11693
11764
|
"type": "boolean",
|
|
11694
11765
|
"description": "Whether this agent may mint OIDC federation tokens via\nPOST /v1/auth/federated-token. False by default.\n"
|
package/openapi.yaml
CHANGED
|
@@ -7359,8 +7359,23 @@ components:
|
|
|
7359
7359
|
additionalProperties: true
|
|
7360
7360
|
description: |
|
|
7361
7361
|
Per-chain guardrail overrides. Keys are signing chains (ethereum, bitcoin, solana, xrp, cardano, tron).
|
|
7362
|
-
Each value may include max_value, daily_limit, to_allowlist, token_allowlist
|
|
7362
|
+
Each value may include max_value, daily_limit, to_allowlist, token_allowlist, max_per_day, overhead_budget, max_ata_creates_per_day.
|
|
7363
7363
|
Strictest of global and per-chain limits wins. Daily limits apply per chain family spend, not cross-chain totals.
|
|
7364
|
+
tx_max_per_day:
|
|
7365
|
+
type: integer
|
|
7366
|
+
nullable: true
|
|
7367
|
+
description: Max transactions per UTC calendar day. Null = unlimited.
|
|
7368
|
+
tx_overhead_budget:
|
|
7369
|
+
type: object
|
|
7370
|
+
nullable: true
|
|
7371
|
+
additionalProperties:
|
|
7372
|
+
type: string
|
|
7373
|
+
description: Per-chain daily overhead budget in native units (e.g. {"solana":"0.5","xrp":"100"}).
|
|
7374
|
+
solana_ata_allowlist:
|
|
7375
|
+
type: array
|
|
7376
|
+
items:
|
|
7377
|
+
type: string
|
|
7378
|
+
description: Solana wallet addresses whose ATAs may be created. Empty = unrestricted.
|
|
7364
7379
|
api_key_expires_at:
|
|
7365
7380
|
type: string
|
|
7366
7381
|
format: date-time
|
|
@@ -7431,6 +7446,21 @@ components:
|
|
|
7431
7446
|
execution_require_tee:
|
|
7432
7447
|
type: boolean
|
|
7433
7448
|
description: When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)
|
|
7449
|
+
tx_max_per_day:
|
|
7450
|
+
type: integer
|
|
7451
|
+
nullable: true
|
|
7452
|
+
description: Max transactions per UTC calendar day. Null = unlimited.
|
|
7453
|
+
tx_overhead_budget:
|
|
7454
|
+
type: object
|
|
7455
|
+
nullable: true
|
|
7456
|
+
additionalProperties:
|
|
7457
|
+
type: string
|
|
7458
|
+
description: Per-chain daily overhead budget in native units.
|
|
7459
|
+
solana_ata_allowlist:
|
|
7460
|
+
type: array
|
|
7461
|
+
items:
|
|
7462
|
+
type: string
|
|
7463
|
+
description: Solana wallet addresses whose ATAs may be created.
|
|
7434
7464
|
federation_enabled:
|
|
7435
7465
|
type: boolean
|
|
7436
7466
|
description: |
|
|
@@ -7583,6 +7613,29 @@ components:
|
|
|
7583
7613
|
execution_require_tee:
|
|
7584
7614
|
type: boolean
|
|
7585
7615
|
description: When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)
|
|
7616
|
+
tx_max_per_day:
|
|
7617
|
+
type: integer
|
|
7618
|
+
nullable: true
|
|
7619
|
+
description: Max transactions per UTC calendar day. Null = unlimited.
|
|
7620
|
+
tx_overhead_budget:
|
|
7621
|
+
type: object
|
|
7622
|
+
nullable: true
|
|
7623
|
+
additionalProperties:
|
|
7624
|
+
type: string
|
|
7625
|
+
description: Per-chain daily overhead budget in native units.
|
|
7626
|
+
solana_ata_allowlist:
|
|
7627
|
+
type: array
|
|
7628
|
+
items:
|
|
7629
|
+
type: string
|
|
7630
|
+
description: Solana wallet addresses whose ATAs may be created.
|
|
7631
|
+
tx_count_today:
|
|
7632
|
+
type: integer
|
|
7633
|
+
description: Today's transaction count (UTC calendar day). Present when intents_api_enabled.
|
|
7634
|
+
tx_overhead_today_by_chain:
|
|
7635
|
+
type: object
|
|
7636
|
+
additionalProperties:
|
|
7637
|
+
type: string
|
|
7638
|
+
description: Today's overhead spend by chain in native units.
|
|
7586
7639
|
federation_enabled:
|
|
7587
7640
|
type: boolean
|
|
7588
7641
|
description: |
|