clarion-shared-types 1.0.59 → 1.0.60

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.
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SendOTPDto = void 0;
4
+ class SendOTPDto {
5
+ }
6
+ exports.SendOTPDto = SendOTPDto;
7
+ //# sourceMappingURL=send-otp.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"send-otp.dto.js","sourceRoot":"","sources":["../../../../../src/modules/auth/dtos/send-otp.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,UAAU;CAItB;AAJD,gCAIC"}
@@ -23,6 +23,7 @@ __exportStar(require("./dtos/forgot-password.dto"), exports);
23
23
  __exportStar(require("./dtos/verify-otp.dto"), exports);
24
24
  __exportStar(require("./dtos/resend-otp.dto"), exports);
25
25
  __exportStar(require("./dtos/refresh-token.dto"), exports);
26
+ __exportStar(require("./dtos/send-otp.dto"), exports);
26
27
  // Interfaces
27
28
  __exportStar(require("./interfaces/register-response"), exports);
28
29
  __exportStar(require("./interfaces/login-response"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/auth/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,OAAO;AACP,sDAAoC;AACpC,mDAAiC;AACjC,4DAA0C;AAC1C,6DAA2C;AAC3C,6DAA2C;AAC3C,wDAAsC;AACtC,wDAAsC;AACtC,2DAAyC;AAEzC,aAAa;AACb,iEAA+C;AAC/C,8DAA4C;AAC5C,sEAAoD;AAEpD,QAAQ;AACR,qDAAmC;AACnC,qEAAmD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/auth/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,OAAO;AACP,sDAAoC;AACpC,mDAAiC;AACjC,4DAA0C;AAC1C,6DAA2C;AAC3C,6DAA2C;AAC3C,wDAAsC;AACtC,wDAAsC;AACtC,2DAAyC;AACzC,sDAAoC;AAEpC,aAAa;AACb,iEAA+C;AAC/C,8DAA4C;AAC5C,sEAAoD;AAEpD,QAAQ;AACR,qDAAmC;AACnC,qEAAmD"}
@@ -0,0 +1,3 @@
1
+ export class SendOTPDto {
2
+ }
3
+ //# sourceMappingURL=send-otp.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"send-otp.dto.js","sourceRoot":"","sources":["../../../../../src/modules/auth/dtos/send-otp.dto.ts"],"names":[],"mappings":"AAEA,MAAM,OAAO,UAAU;CAItB"}
@@ -7,6 +7,7 @@ export * from './dtos/forgot-password.dto';
7
7
  export * from './dtos/verify-otp.dto';
8
8
  export * from './dtos/resend-otp.dto';
9
9
  export * from './dtos/refresh-token.dto';
10
+ export * from './dtos/send-otp.dto';
10
11
  // Interfaces
11
12
  export * from './interfaces/register-response';
12
13
  export * from './interfaces/login-response';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/auth/index.ts"],"names":[],"mappings":"AAAA,OAAO;AACP,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AAEzC,aAAa;AACb,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qCAAqC,CAAC;AAEpD,QAAQ;AACR,cAAc,oBAAoB,CAAC;AACnC,cAAc,oCAAoC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/auth/index.ts"],"names":[],"mappings":"AAAA,OAAO;AACP,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AAEpC,aAAa;AACb,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qCAAqC,CAAC;AAEpD,QAAQ;AACR,cAAc,oBAAoB,CAAC;AACnC,cAAc,oCAAoC,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { OtpAction } from "../enums/otp-action";
2
+ export declare class SendOTPDto {
3
+ phoneNumber?: string;
4
+ email?: string;
5
+ action: OtpAction;
6
+ }
@@ -6,6 +6,7 @@ export * from './dtos/forgot-password.dto';
6
6
  export * from './dtos/verify-otp.dto';
7
7
  export * from './dtos/resend-otp.dto';
8
8
  export * from './dtos/refresh-token.dto';
9
+ export * from './dtos/send-otp.dto';
9
10
  export * from './interfaces/register-response';
10
11
  export * from './interfaces/login-response';
11
12
  export * from './interfaces/delete-account-request';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clarion-shared-types",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",