@free-drivers-ed-california/types 0.0.47 → 0.0.48

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.
@@ -8,7 +8,7 @@ export interface DatabaseStudentUser {
8
8
  email: string;
9
9
  role: UserRoles;
10
10
  last_login?: string;
11
- user_id: string;
11
+ user_id: number;
12
12
  date_of_birth: string;
13
13
  phone: string;
14
14
  address1: string;
@@ -1,5 +1,5 @@
1
1
  export interface DatabaseStudent {
2
- user_id: string;
2
+ user_id: number;
3
3
  date_of_birth: string;
4
4
  phone: string;
5
5
  address1: string;
@@ -1,4 +1,4 @@
1
1
  export interface DeleteStudentRequest {
2
- userId: string;
2
+ userId: number;
3
3
  }
4
4
  //# sourceMappingURL=delete-student-request.interface.d.ts.map
@@ -1,4 +1,4 @@
1
1
  export interface GetStudentRequest {
2
- userId: string;
2
+ userId: number;
3
3
  }
4
4
  //# sourceMappingURL=get-student-request.interface.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { Address } from "../generics";
2
2
  export interface Student {
3
- userId: string;
3
+ userId: number;
4
4
  address: Address;
5
5
  dateOfBirth: string;
6
6
  phone: string;
@@ -1,6 +1,6 @@
1
1
  import { Address } from "../generics";
2
2
  export interface UpdateStudentRequest {
3
- userId: string;
3
+ userId: number;
4
4
  firstName?: string;
5
5
  lastName?: string;
6
6
  email?: string;
@@ -1,5 +1,6 @@
1
1
  import { UserRoles } from "../../enums";
2
2
  export interface UpdateUserRequest {
3
+ id: number;
3
4
  firstName?: string;
4
5
  lastName?: string;
5
6
  email?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"update-user-request.interface.d.ts","sourceRoot":"","sources":["../../../src/interfaces/user/update-user-request.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AAEtC,MAAM,WAAW,iBAAiB;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,SAAS,CAAC;CACpB"}
1
+ {"version":3,"file":"update-user-request.interface.d.ts","sourceRoot":"","sources":["../../../src/interfaces/user/update-user-request.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AAEtC,MAAM,WAAW,iBAAiB;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,SAAS,CAAC;CACpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@free-drivers-ed-california/types",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "private": false,
5
5
  "description": "Types and Interfaces for Free Drivers Ed California UI & API",
6
6
  "main": "dist/index.js",