@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.
Files changed (2) hide show
  1. package/dist/types.d.ts +5 -1
  2. 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
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@milobedini/shared-types",
3
3
  "type": "commonjs",
4
- "version": "1.0.85",
4
+ "version": "1.0.87",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "sideEffects": false,