@milobedini/shared-types 1.0.85 → 1.0.87
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/dist/types.d.ts +5 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -35,6 +35,10 @@ export type UpdateNameInput = {
|
|
|
35
35
|
newName: string;
|
|
36
36
|
userId: string;
|
|
37
37
|
};
|
|
38
|
+
export type ChangePasswordInput = {
|
|
39
|
+
currentPassword: string;
|
|
40
|
+
newPassword: string;
|
|
41
|
+
};
|
|
38
42
|
export type VerifyInput = {
|
|
39
43
|
verificationCode: string;
|
|
40
44
|
};
|
|
@@ -478,7 +482,7 @@ export type ReviewResponse = {
|
|
|
478
482
|
};
|
|
479
483
|
export type UpdateAssignmentInput = {
|
|
480
484
|
status?: AssignmentStatus;
|
|
481
|
-
dueAt?: string;
|
|
485
|
+
dueAt?: string | null;
|
|
482
486
|
notes?: string;
|
|
483
487
|
recurrence?: AssignmentRecurrence;
|
|
484
488
|
};
|