@temboplus/afloat 0.1.37 → 0.1.38
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.
|
@@ -515,11 +515,11 @@ export declare const userManagementContract: {
|
|
|
515
515
|
path: "/login/:id/reset-password";
|
|
516
516
|
responses: {
|
|
517
517
|
200: z.ZodObject<{
|
|
518
|
-
|
|
518
|
+
success: z.ZodBoolean;
|
|
519
519
|
}, "strip", z.ZodTypeAny, {
|
|
520
|
-
|
|
520
|
+
success: boolean;
|
|
521
521
|
}, {
|
|
522
|
-
|
|
522
|
+
success: boolean;
|
|
523
523
|
}>;
|
|
524
524
|
400: z.ZodObject<{
|
|
525
525
|
message: z.ZodString;
|
package/package.json
CHANGED
|
@@ -515,11 +515,11 @@ export declare const userManagementContract: {
|
|
|
515
515
|
path: "/login/:id/reset-password";
|
|
516
516
|
responses: {
|
|
517
517
|
200: z.ZodObject<{
|
|
518
|
-
|
|
518
|
+
success: z.ZodBoolean;
|
|
519
519
|
}, "strip", z.ZodTypeAny, {
|
|
520
|
-
|
|
520
|
+
success: boolean;
|
|
521
521
|
}, {
|
|
522
|
-
|
|
522
|
+
success: boolean;
|
|
523
523
|
}>;
|
|
524
524
|
400: z.ZodObject<{
|
|
525
525
|
message: z.ZodString;
|
|
@@ -134,7 +134,7 @@ exports.userManagementContract = c.router({
|
|
|
134
134
|
body: schemas_js_1.UserManagementSchemas.resetPasswordRequest,
|
|
135
135
|
responses: {
|
|
136
136
|
200: zod_1.z.object({
|
|
137
|
-
|
|
137
|
+
success: zod_1.z.boolean(),
|
|
138
138
|
}),
|
|
139
139
|
400: zod_1.z.object({
|
|
140
140
|
message: zod_1.z.string(),
|