shared-dto 1.0.1 → 1.0.2
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/UserDTO.dto.d.ts
CHANGED
|
@@ -2,4 +2,11 @@ export declare class CreateUserDTO {
|
|
|
2
2
|
email: string;
|
|
3
3
|
password: string;
|
|
4
4
|
}
|
|
5
|
+
export declare class UserDTO {
|
|
6
|
+
uid: string;
|
|
7
|
+
email: string;
|
|
8
|
+
name: string | null | undefined;
|
|
9
|
+
phone: number | null | undefined;
|
|
10
|
+
profileURL: string | null | undefined;
|
|
11
|
+
}
|
|
5
12
|
//# sourceMappingURL=UserDTO.dto.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserDTO.dto.d.ts","sourceRoot":"","sources":["../src/UserDTO.dto.ts"],"names":[],"mappings":"AAAA,qBAAa,aAAa;IACtB,KAAK,EAAE,MAAM,CAAE;IACf,QAAQ,EAAE,MAAM,CAAE;CACrB"}
|
|
1
|
+
{"version":3,"file":"UserDTO.dto.d.ts","sourceRoot":"","sources":["../src/UserDTO.dto.ts"],"names":[],"mappings":"AAAA,qBAAa,aAAa;IACtB,KAAK,EAAE,MAAM,CAAE;IACf,QAAQ,EAAE,MAAM,CAAE;CACrB;AAED,qBAAa,OAAO;IAChB,GAAG,EAAC,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAC/B,KAAK,EAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAChC,UAAU,EAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACxC"}
|
package/dist/UserDTO.dto.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateUserDTO = void 0;
|
|
3
|
+
exports.UserDTO = exports.CreateUserDTO = void 0;
|
|
4
4
|
class CreateUserDTO {
|
|
5
5
|
}
|
|
6
6
|
exports.CreateUserDTO = CreateUserDTO;
|
|
7
|
+
class UserDTO {
|
|
8
|
+
}
|
|
9
|
+
exports.UserDTO = UserDTO;
|
|
7
10
|
//# sourceMappingURL=UserDTO.dto.js.map
|
package/dist/UserDTO.dto.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserDTO.dto.js","sourceRoot":"","sources":["../src/UserDTO.dto.ts"],"names":[],"mappings":";;;AAAA,MAAa,aAAa;CAGzB;AAHD,sCAGC"}
|
|
1
|
+
{"version":3,"file":"UserDTO.dto.js","sourceRoot":"","sources":["../src/UserDTO.dto.ts"],"names":[],"mappings":";;;AAAA,MAAa,aAAa;CAGzB;AAHD,sCAGC;AAED,MAAa,OAAO;CAMnB;AAND,0BAMC"}
|
package/package.json
CHANGED
package/src/UserDTO.dto.ts
CHANGED