@exclusive-website/types 1.8.6 → 1.8.7
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 +3 -0
- package/package.json +1 -1
- package/src/types.ts +4 -0
package/dist/types.d.ts
CHANGED
|
@@ -118,6 +118,9 @@ export interface UserInfoReadDto {
|
|
|
118
118
|
export interface MediaDto {
|
|
119
119
|
url: string;
|
|
120
120
|
}
|
|
121
|
+
export interface AuthJwtDto {
|
|
122
|
+
email: string;
|
|
123
|
+
}
|
|
121
124
|
export type SupportedCurrency = "EUR" | "CZK" | null;
|
|
122
125
|
export interface RegisterUserDto {
|
|
123
126
|
email: string;
|
package/package.json
CHANGED