@1claw/openapi-spec 0.59.7 → 0.59.8

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 CHANGED
@@ -2,28 +2,36 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "1Claw API",
5
- "version": "0.59.7",
6
- "description": "Secure secret management for AI agents. Provides vaults, secrets,\npolicy-based access control, agent identity, Intents API,\nsharing, billing, and audit logging. Automations (workflow_spec,\nwebhook tokens, event triggers, Assist), cloud runtimes with\ninteractive shell sessions, agent memory, and discovery.\n\nAll endpoints require JWT Bearer authentication unless marked with\n`security: []`.\n",
5
+ "version": "0.59.8",
6
+ "description": "Secure secret management for AI agents. Provides vaults, secrets,\npolicy-based access control, agent identity, Intents API,\nsharing, billing, and audit logging. Automations (workflow_spec,\nwebhook tokens, event triggers, Assist), cloud runtimes with\ninteractive shell sessions, agent memory, and discovery.\n\n## Domains\n\n`api.1claw.co` is canonical: it is the OIDC issuer, the `aud` the API\nmints, and the first entry in `servers` — a generated client takes its\nbase URL from there, and the previous ordering pointed every SDK at the\ndomain the issuer had already left. `api.1claw.xyz` still answers and is\nstill accepted on token validation, because tokens minted before the\nmove carry it; it is never minted now.\n\nOne deliberate exception: the Shroud attestation identity token is\nrequested from GCP with `audience: https://api.1claw.xyz`, so\n`/v1/shroud/attestation` reports that as its `expected_audience`. That\nis accurate rather than stale — the audience is a verification contract\nwith anyone already checking the token, and moving it is a breaking\nchange for them, not a rename.\n\nAll endpoints require JWT Bearer authentication unless marked with\n`security: []`.\n",
7
7
  "contact": {
8
8
  "email": "ops@1claw.xyz"
9
9
  }
10
10
  },
11
11
  "servers": [
12
12
  {
13
- "url": "http://localhost:8443",
14
- "description": "Development"
13
+ "url": "https://api.1claw.co",
14
+ "description": "Production (canonical)"
15
+ },
16
+ {
17
+ "url": "https://shroud.1claw.co",
18
+ "description": "Shroud TEE Proxy (Intents API + LLM proxy)"
15
19
  },
16
20
  {
17
21
  "url": "https://api.1claw.xyz",
18
- "description": "Production"
22
+ "description": "Production (legacy domain; still answers, tokens minted before the move carry this issuer)"
19
23
  },
20
24
  {
21
25
  "url": "https://shroud.1claw.xyz",
22
- "description": "Shroud TEE Proxy (Intents API + LLM proxy)"
26
+ "description": "Shroud TEE Proxy (legacy domain)"
27
+ },
28
+ {
29
+ "url": "http://localhost:8443",
30
+ "description": "Development"
23
31
  }
24
32
  ],
25
33
  "x-agentcash-guidance": {
26
- "llmsTxtUrl": "https://1claw.xyz/llms.txt"
34
+ "llmsTxtUrl": "https://1claw.co/llms.txt"
27
35
  },
28
36
  "security": [
29
37
  {
@@ -27171,6 +27179,11 @@
27171
27179
  "type": "boolean",
27172
27180
  "default": false,
27173
27181
  "description": "When true, creates a sub-org under the platform app's org"
27182
+ },
27183
+ "app_id": {
27184
+ "type": "string",
27185
+ "format": "uuid",
27186
+ "description": "Required only when calling as a user (the dashboard wizard).\nA `plt_` key carries its app in the credential; a user does not,\nso the app is named here and checked against the caller's org.\n"
27174
27187
  }
27175
27188
  }
27176
27189
  },
package/openapi.yaml CHANGED
@@ -2,7 +2,7 @@ openapi: 3.1.0
2
2
 
3
3
  info:
4
4
  title: 1Claw API
5
- version: "0.59.7"
5
+ version: "0.59.8"
6
6
  description: |
7
7
  Secure secret management for AI agents. Provides vaults, secrets,
8
8
  policy-based access control, agent identity, Intents API,
@@ -10,21 +10,41 @@ info:
10
10
  webhook tokens, event triggers, Assist), cloud runtimes with
11
11
  interactive shell sessions, agent memory, and discovery.
12
12
 
13
+ ## Domains
14
+
15
+ `api.1claw.co` is canonical: it is the OIDC issuer, the `aud` the API
16
+ mints, and the first entry in `servers` — a generated client takes its
17
+ base URL from there, and the previous ordering pointed every SDK at the
18
+ domain the issuer had already left. `api.1claw.xyz` still answers and is
19
+ still accepted on token validation, because tokens minted before the
20
+ move carry it; it is never minted now.
21
+
22
+ One deliberate exception: the Shroud attestation identity token is
23
+ requested from GCP with `audience: https://api.1claw.xyz`, so
24
+ `/v1/shroud/attestation` reports that as its `expected_audience`. That
25
+ is accurate rather than stale — the audience is a verification contract
26
+ with anyone already checking the token, and moving it is a breaking
27
+ change for them, not a rename.
28
+
13
29
  All endpoints require JWT Bearer authentication unless marked with
14
30
  `security: []`.
15
31
  contact:
16
32
  email: ops@1claw.xyz
17
33
 
18
34
  servers:
19
- - url: http://localhost:8443
20
- description: Development
35
+ - url: https://api.1claw.co
36
+ description: Production (canonical)
37
+ - url: https://shroud.1claw.co
38
+ description: Shroud TEE Proxy (Intents API + LLM proxy)
21
39
  - url: https://api.1claw.xyz
22
- description: Production
40
+ description: Production (legacy domain; still answers, tokens minted before the move carry this issuer)
23
41
  - url: https://shroud.1claw.xyz
24
- description: Shroud TEE Proxy (Intents API + LLM proxy)
42
+ description: Shroud TEE Proxy (legacy domain)
43
+ - url: http://localhost:8443
44
+ description: Development
25
45
 
26
46
  x-agentcash-guidance:
27
- llmsTxtUrl: https://1claw.xyz/llms.txt
47
+ llmsTxtUrl: https://1claw.co/llms.txt
28
48
 
29
49
  security:
30
50
  - BearerAuth: []
@@ -17892,6 +17912,13 @@ components:
17892
17912
  type: boolean
17893
17913
  default: false
17894
17914
  description: When true, creates a sub-org under the platform app's org
17915
+ app_id:
17916
+ type: string
17917
+ format: uuid
17918
+ description: |
17919
+ Required only when calling as a user (the dashboard wizard).
17920
+ A `plt_` key carries its app in the credential; a user does not,
17921
+ so the app is named here and checked against the caller's org.
17895
17922
 
17896
17923
  PlatformUserResponse:
17897
17924
  type: object
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@1claw/openapi-spec",
3
- "version": "0.59.7",
4
- "description": "OpenAPI 3.1.0 specification for the 1Claw Vault API generate clients in any language",
3
+ "version": "0.59.8",
4
+ "description": "OpenAPI 3.1.0 specification for the 1Claw Vault API \u2014 generate clients in any language",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",