@exclusive-website/types 2.1.7 → 2.1.8

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
@@ -176,7 +176,7 @@ export interface LoginUserDto {
176
176
  export interface JwtDto {
177
177
  token: string;
178
178
  }
179
- export interface OtpDto {
179
+ export interface ActivateDto {
180
180
  email: string;
181
181
  code: string;
182
182
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
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
@@ -227,7 +227,7 @@ export interface JwtDto {
227
227
  token: string;
228
228
  }
229
229
 
230
- export interface OtpDto {
230
+ export interface ActivateDto {
231
231
  email: string;
232
232
  code: string;
233
233
  }