@1claw/openapi-spec 0.22.0 → 0.22.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.
- package/openapi.json +14 -0
- package/openapi.yaml +10 -0
- package/package.json +1 -1
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
|
},
|
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
|