@1claw/openapi-spec 0.15.3 → 0.16.0

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
@@ -4248,11 +4248,17 @@
4248
4248
  "DeviceCodeRequest": {
4249
4249
  "type": "object",
4250
4250
  "required": [
4251
- "client_id"
4251
+ "client_id",
4252
+ "email"
4252
4253
  ],
4253
4254
  "properties": {
4254
4255
  "client_id": {
4255
4256
  "type": "string"
4257
+ },
4258
+ "email": {
4259
+ "type": "string",
4260
+ "format": "email",
4261
+ "description": "Account email; only that user may approve the code in the dashboard."
4256
4262
  }
4257
4263
  }
4258
4264
  },
package/openapi.yaml CHANGED
@@ -2744,10 +2744,14 @@ components:
2744
2744
 
2745
2745
  DeviceCodeRequest:
2746
2746
  type: object
2747
- required: [client_id]
2747
+ required: [client_id, email]
2748
2748
  properties:
2749
2749
  client_id:
2750
2750
  type: string
2751
+ email:
2752
+ type: string
2753
+ format: email
2754
+ description: Account email; only that user may approve the code in the dashboard.
2751
2755
 
2752
2756
  DeviceCodeResponse:
2753
2757
  type: object
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1claw/openapi-spec",
3
- "version": "0.15.3",
3
+ "version": "0.16.0",
4
4
  "description": "OpenAPI 3.1.0 specification for the 1Claw Vault API — generate clients in any language",
5
5
  "license": "MIT",
6
6
  "repository": {