@1claw/openapi-spec 0.41.0 → 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.
Files changed (3) hide show
  1. package/openapi.json +98 -1
  2. package/openapi.yaml +74 -1
  3. package/package.json +38 -38
package/openapi.json CHANGED
@@ -11373,6 +11373,16 @@
11373
11373
  "additionalProperties": true,
11374
11374
  "description": "Guardrails applied to all execution intents for this agent"
11375
11375
  },
11376
+ "intents_require_tee": {
11377
+ "type": "boolean",
11378
+ "default": false,
11379
+ "description": "When true, transaction/sign requests must arrive via a TEE host (Pro+ only)"
11380
+ },
11381
+ "execution_require_tee": {
11382
+ "type": "boolean",
11383
+ "default": false,
11384
+ "description": "When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)"
11385
+ },
11376
11386
  "tx_token_allowlist": {
11377
11387
  "type": "array",
11378
11388
  "items": {
@@ -11395,7 +11405,27 @@
11395
11405
  "per_chain_guardrails": {
11396
11406
  "type": "object",
11397
11407
  "additionalProperties": true,
11398
- "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 (legacy *_eth keys accepted).\nStrictest of global and per-chain limits wins. Daily limits apply per chain family spend, not cross-chain totals.\n"
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."
11399
11429
  },
11400
11430
  "api_key_expires_at": {
11401
11431
  "type": "string",
@@ -11484,6 +11514,34 @@
11484
11514
  "additionalProperties": true,
11485
11515
  "description": "Guardrails applied to all execution intents for this agent"
11486
11516
  },
11517
+ "intents_require_tee": {
11518
+ "type": "boolean",
11519
+ "description": "When true, transaction/sign requests must arrive via a TEE host (Pro+ only)"
11520
+ },
11521
+ "execution_require_tee": {
11522
+ "type": "boolean",
11523
+ "description": "When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)"
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
+ },
11487
11545
  "federation_enabled": {
11488
11546
  "type": "boolean",
11489
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"
@@ -11663,6 +11721,45 @@
11663
11721
  "additionalProperties": true,
11664
11722
  "description": "Guardrails applied to all execution intents for this agent"
11665
11723
  },
11724
+ "intents_require_tee": {
11725
+ "type": "boolean",
11726
+ "description": "When true, transaction/sign requests must arrive via a TEE host (Pro+ only)"
11727
+ },
11728
+ "execution_require_tee": {
11729
+ "type": "boolean",
11730
+ "description": "When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)"
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
+ },
11666
11763
  "federation_enabled": {
11667
11764
  "type": "boolean",
11668
11765
  "description": "Whether this agent may mint OIDC federation tokens via\nPOST /v1/auth/federated-token. False by default.\n"
package/openapi.yaml CHANGED
@@ -7332,6 +7332,14 @@ components:
7332
7332
  type: object
7333
7333
  additionalProperties: true
7334
7334
  description: Guardrails applied to all execution intents for this agent
7335
+ intents_require_tee:
7336
+ type: boolean
7337
+ default: false
7338
+ description: When true, transaction/sign requests must arrive via a TEE host (Pro+ only)
7339
+ execution_require_tee:
7340
+ type: boolean
7341
+ default: false
7342
+ description: When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)
7335
7343
  tx_token_allowlist:
7336
7344
  type: array
7337
7345
  items:
@@ -7351,8 +7359,23 @@ components:
7351
7359
  additionalProperties: true
7352
7360
  description: |
7353
7361
  Per-chain guardrail overrides. Keys are signing chains (ethereum, bitcoin, solana, xrp, cardano, tron).
7354
- Each value may include max_value, daily_limit, to_allowlist, token_allowlist (legacy *_eth keys accepted).
7362
+ Each value may include max_value, daily_limit, to_allowlist, token_allowlist, max_per_day, overhead_budget, max_ata_creates_per_day.
7355
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.
7356
7379
  api_key_expires_at:
7357
7380
  type: string
7358
7381
  format: date-time
@@ -7417,6 +7440,27 @@ components:
7417
7440
  type: object
7418
7441
  additionalProperties: true
7419
7442
  description: Guardrails applied to all execution intents for this agent
7443
+ intents_require_tee:
7444
+ type: boolean
7445
+ description: When true, transaction/sign requests must arrive via a TEE host (Pro+ only)
7446
+ execution_require_tee:
7447
+ type: boolean
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.
7420
7464
  federation_enabled:
7421
7465
  type: boolean
7422
7466
  description: |
@@ -7563,6 +7607,35 @@ components:
7563
7607
  type: object
7564
7608
  additionalProperties: true
7565
7609
  description: Guardrails applied to all execution intents for this agent
7610
+ intents_require_tee:
7611
+ type: boolean
7612
+ description: When true, transaction/sign requests must arrive via a TEE host (Pro+ only)
7613
+ execution_require_tee:
7614
+ type: boolean
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.
7566
7639
  federation_enabled:
7567
7640
  type: boolean
7568
7641
  description: |
package/package.json CHANGED
@@ -1,40 +1,40 @@
1
1
  {
2
- "name": "@1claw/openapi-spec",
3
- "version": "0.41.0",
4
- "description": "OpenAPI 3.1.0 specification for the 1Claw Vault API — generate clients in any language",
5
- "license": "MIT",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/1clawAI/1claw.git",
9
- "directory": "packages/openapi-spec"
10
- },
11
- "files": [
12
- "openapi.yaml",
13
- "openapi.json",
14
- "README.md"
15
- ],
16
- "exports": {
17
- "./openapi.yaml": "./openapi.yaml",
18
- "./openapi.json": "./openapi.json"
19
- },
20
- "scripts": {
21
- "build": "node scripts/yaml-to-json.mjs",
22
- "prepublishOnly": "npm run build"
23
- },
24
- "publishConfig": {
25
- "access": "public"
26
- },
27
- "keywords": [
28
- "1claw",
29
- "openapi",
30
- "api-spec",
31
- "codegen",
32
- "swagger",
33
- "secrets",
34
- "vault",
35
- "ai-agents"
36
- ],
37
- "devDependencies": {
38
- "js-yaml": "^4.1.1"
39
- }
2
+ "name": "@1claw/openapi-spec",
3
+ "version": "0.41.2",
4
+ "description": "OpenAPI 3.1.0 specification for the 1Claw Vault API — generate clients in any language",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/1clawAI/1claw.git",
9
+ "directory": "packages/openapi-spec"
10
+ },
11
+ "files": [
12
+ "openapi.yaml",
13
+ "openapi.json",
14
+ "README.md"
15
+ ],
16
+ "exports": {
17
+ "./openapi.yaml": "./openapi.yaml",
18
+ "./openapi.json": "./openapi.json"
19
+ },
20
+ "scripts": {
21
+ "build": "node scripts/yaml-to-json.mjs",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "keywords": [
28
+ "1claw",
29
+ "openapi",
30
+ "api-spec",
31
+ "codegen",
32
+ "swagger",
33
+ "secrets",
34
+ "vault",
35
+ "ai-agents"
36
+ ],
37
+ "devDependencies": {
38
+ "js-yaml": "^4.1.1"
39
+ }
40
40
  }