@1claw/openapi-spec 0.61.15 → 0.61.16

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,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "1Claw API",
5
- "version": "0.61.15",
5
+ "version": "0.61.16",
6
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.co"
@@ -33381,12 +33381,25 @@
33381
33381
  "LlmTokenBillingStatus": {
33382
33382
  "type": "object",
33383
33383
  "required": [
33384
- "enabled"
33384
+ "enabled",
33385
+ "billing_model",
33386
+ "inference_allowed"
33385
33387
  ],
33386
33388
  "properties": {
33387
33389
  "enabled": {
33388
33390
  "type": "boolean"
33389
33391
  },
33392
+ "billing_model": {
33393
+ "type": "string",
33394
+ "enum": [
33395
+ "postpaid_metered"
33396
+ ],
33397
+ "description": "Usage accrues on the Stripe subscription and is invoiced at the end of the\nbilling period. `credit_balance` is Stripe's prepaid credit-grant balance,\nwhich is 0 unless a credit grant was issued; a 0 there does not block inference.\n"
33398
+ },
33399
+ "inference_allowed": {
33400
+ "type": "boolean",
33401
+ "description": "Enabled and the subscription is not canceled/unpaid/expired."
33402
+ },
33390
33403
  "subscription_status": {
33391
33404
  "type": "string",
33392
33405
  "enum": [
@@ -37577,6 +37590,13 @@
37577
37590
  "type": "string",
37578
37591
  "format": "uuid"
37579
37592
  },
37593
+ "email": {
37594
+ "type": "string",
37595
+ "description": "The connected user's email, as returned by the upsert. Use it to recognise a returning user and begin a passkey ceremony from the connection alone."
37596
+ },
37597
+ "display_name": {
37598
+ "type": "string"
37599
+ },
37580
37600
  "status": {
37581
37601
  "type": "string"
37582
37602
  },
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.61.15"
5
+ version: "0.61.16"
6
6
  description: |
7
7
  Secure secret management for AI agents. Provides vaults, secrets,
8
8
  policy-based access control, agent identity, Intents API,
@@ -21805,10 +21805,20 @@ components:
21805
21805
 
21806
21806
  LlmTokenBillingStatus:
21807
21807
  type: object
21808
- required: [enabled]
21808
+ required: [enabled, billing_model, inference_allowed]
21809
21809
  properties:
21810
21810
  enabled:
21811
21811
  type: boolean
21812
+ billing_model:
21813
+ type: string
21814
+ enum: [postpaid_metered]
21815
+ description: |
21816
+ Usage accrues on the Stripe subscription and is invoiced at the end of the
21817
+ billing period. `credit_balance` is Stripe's prepaid credit-grant balance,
21818
+ which is 0 unless a credit grant was issued; a 0 there does not block inference.
21819
+ inference_allowed:
21820
+ type: boolean
21821
+ description: Enabled and the subscription is not canceled/unpaid/expired.
21812
21822
  subscription_status:
21813
21823
  type: string
21814
21824
  enum: [active, inactive]
@@ -24534,6 +24544,11 @@ components:
24534
24544
  user_id:
24535
24545
  type: string
24536
24546
  format: uuid
24547
+ email:
24548
+ type: string
24549
+ description: The connected user's email, as returned by the upsert. Use it to recognise a returning user and begin a passkey ceremony from the connection alone.
24550
+ display_name:
24551
+ type: string
24537
24552
  status:
24538
24553
  type: string
24539
24554
  entitlement_status:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1claw/openapi-spec",
3
- "version": "0.61.15",
3
+ "version": "0.61.16",
4
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": {