@1claw/openapi-spec 0.22.0 → 0.22.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.
package/openapi.json CHANGED
@@ -5560,9 +5560,23 @@
5560
5560
  },
5561
5561
  "ForgotPasswordResponse": {
5562
5562
  "type": "object",
5563
+ "required": [
5564
+ "message",
5565
+ "status"
5566
+ ],
5563
5567
  "properties": {
5564
5568
  "message": {
5565
5569
  "type": "string"
5570
+ },
5571
+ "status": {
5572
+ "type": "string",
5573
+ "enum": [
5574
+ "email_sent",
5575
+ "no_account",
5576
+ "social_account",
5577
+ "invalid"
5578
+ ],
5579
+ "description": "Outcome of the reset request:\n- email_sent: password reset email dispatched\n- no_account: no account found for the email\n- social_account: account uses Google/SSO sign-in\n- invalid: request was malformed\n"
5566
5580
  }
5567
5581
  }
5568
5582
  },
@@ -7477,7 +7491,8 @@
7477
7491
  "description": "Hex-encoded calldata"
7478
7492
  },
7479
7493
  "signing_key_path": {
7480
- "type": "string"
7494
+ "type": "string",
7495
+ "description": "Vault path to signing key. Auto-resolves per-chain signing key if provisioned, otherwise keys/{chain}-signer."
7481
7496
  },
7482
7497
  "nonce": {
7483
7498
  "type": "integer"
@@ -7534,7 +7549,8 @@
7534
7549
  "description": "Hex-encoded calldata"
7535
7550
  },
7536
7551
  "signing_key_path": {
7537
- "type": "string"
7552
+ "type": "string",
7553
+ "description": "Vault path to signing key. Auto-resolves per-chain signing key if provisioned, otherwise keys/{chain}-signer."
7538
7554
  },
7539
7555
  "nonce": {
7540
7556
  "type": "integer"
@@ -7627,7 +7643,8 @@
7627
7643
  "type": "string"
7628
7644
  },
7629
7645
  "signing_key_path": {
7630
- "type": "string"
7646
+ "type": "string",
7647
+ "description": "Vault path to signing key. Auto-resolves per-chain signing key if provisioned, otherwise keys/{chain}-signer."
7631
7648
  },
7632
7649
  "gas_limit": {
7633
7650
  "type": "integer"
@@ -7738,7 +7755,8 @@
7738
7755
  "type": "string"
7739
7756
  },
7740
7757
  "signing_key_path": {
7741
- "type": "string"
7758
+ "type": "string",
7759
+ "description": "Vault path to signing key. Auto-resolves per-chain signing key if provisioned, otherwise keys/{chain}-signer."
7742
7760
  },
7743
7761
  "message": {
7744
7762
  "type": "string",
package/openapi.yaml CHANGED
@@ -3661,9 +3661,19 @@ components:
3661
3661
 
3662
3662
  ForgotPasswordResponse:
3663
3663
  type: object
3664
+ required: [message, status]
3664
3665
  properties:
3665
3666
  message:
3666
3667
  type: string
3668
+ status:
3669
+ type: string
3670
+ enum: [email_sent, no_account, social_account, invalid]
3671
+ description: |
3672
+ Outcome of the reset request:
3673
+ - email_sent: password reset email dispatched
3674
+ - no_account: no account found for the email
3675
+ - social_account: account uses Google/SSO sign-in
3676
+ - invalid: request was malformed
3667
3677
 
3668
3678
  ResetPasswordRequest:
3669
3679
  type: object
@@ -5013,6 +5023,7 @@ components:
5013
5023
  description: Hex-encoded calldata
5014
5024
  signing_key_path:
5015
5025
  type: string
5026
+ description: Vault path to signing key. Auto-resolves per-chain signing key if provisioned, otherwise keys/{chain}-signer.
5016
5027
  nonce:
5017
5028
  type: integer
5018
5029
  gas_price:
@@ -5050,6 +5061,7 @@ components:
5050
5061
  description: Hex-encoded calldata
5051
5062
  signing_key_path:
5052
5063
  type: string
5064
+ description: Vault path to signing key. Auto-resolves per-chain signing key if provisioned, otherwise keys/{chain}-signer.
5053
5065
  nonce:
5054
5066
  type: integer
5055
5067
  gas_price:
@@ -5111,6 +5123,7 @@ components:
5111
5123
  type: string
5112
5124
  signing_key_path:
5113
5125
  type: string
5126
+ description: Vault path to signing key. Auto-resolves per-chain signing key if provisioned, otherwise keys/{chain}-signer.
5114
5127
  gas_limit:
5115
5128
  type: integer
5116
5129
 
@@ -5182,6 +5195,7 @@ components:
5182
5195
  type: string
5183
5196
  signing_key_path:
5184
5197
  type: string
5198
+ description: Vault path to signing key. Auto-resolves per-chain signing key if provisioned, otherwise keys/{chain}-signer.
5185
5199
  message:
5186
5200
  type: string
5187
5201
  description: Hex-encoded message bytes (for personal_sign)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1claw/openapi-spec",
3
- "version": "0.22.0",
3
+ "version": "0.22.2",
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": {