@1claw/openapi-spec 0.41.0 → 0.41.1

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 +26 -0
  2. package/openapi.yaml +20 -0
  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": {
@@ -11484,6 +11494,14 @@
11484
11494
  "additionalProperties": true,
11485
11495
  "description": "Guardrails applied to all execution intents for this agent"
11486
11496
  },
11497
+ "intents_require_tee": {
11498
+ "type": "boolean",
11499
+ "description": "When true, transaction/sign requests must arrive via a TEE host (Pro+ only)"
11500
+ },
11501
+ "execution_require_tee": {
11502
+ "type": "boolean",
11503
+ "description": "When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)"
11504
+ },
11487
11505
  "federation_enabled": {
11488
11506
  "type": "boolean",
11489
11507
  "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 +11681,14 @@
11663
11681
  "additionalProperties": true,
11664
11682
  "description": "Guardrails applied to all execution intents for this agent"
11665
11683
  },
11684
+ "intents_require_tee": {
11685
+ "type": "boolean",
11686
+ "description": "When true, transaction/sign requests must arrive via a TEE host (Pro+ only)"
11687
+ },
11688
+ "execution_require_tee": {
11689
+ "type": "boolean",
11690
+ "description": "When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)"
11691
+ },
11666
11692
  "federation_enabled": {
11667
11693
  "type": "boolean",
11668
11694
  "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:
@@ -7417,6 +7425,12 @@ components:
7417
7425
  type: object
7418
7426
  additionalProperties: true
7419
7427
  description: Guardrails applied to all execution intents for this agent
7428
+ intents_require_tee:
7429
+ type: boolean
7430
+ description: When true, transaction/sign requests must arrive via a TEE host (Pro+ only)
7431
+ execution_require_tee:
7432
+ type: boolean
7433
+ description: When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)
7420
7434
  federation_enabled:
7421
7435
  type: boolean
7422
7436
  description: |
@@ -7563,6 +7577,12 @@ components:
7563
7577
  type: object
7564
7578
  additionalProperties: true
7565
7579
  description: Guardrails applied to all execution intents for this agent
7580
+ intents_require_tee:
7581
+ type: boolean
7582
+ description: When true, transaction/sign requests must arrive via a TEE host (Pro+ only)
7583
+ execution_require_tee:
7584
+ type: boolean
7585
+ description: When true, execute requests must arrive via TEE and all direct secret reads are blocked (Pro+ only)
7566
7586
  federation_enabled:
7567
7587
  type: boolean
7568
7588
  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.1",
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
  }