@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.8.6",
3
+ "version": "1.8.7",
4
4
  "description": "A collection of shared types (DTOs and DBEs) for the organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -148,6 +148,10 @@ export interface MediaDto {
148
148
  url: string;
149
149
  }
150
150
 
151
+ export interface AuthJwtDto {
152
+ email : string;
153
+ }
154
+
151
155
 
152
156
 
153
157