grm-shared-library 1.1.83 → 1.1.84
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/cjs/modules/auth/dtos/register-response.dto.js +8 -8
- package/dist/cjs/modules/auth/dtos/register-response.dto.js.map +1 -1
- package/dist/esm/modules/auth/dtos/register-response.dto.js +6 -6
- package/dist/esm/modules/auth/dtos/register-response.dto.js.map +1 -1
- package/dist/types/modules/auth/dtos/register-response.dto.d.ts +1 -1
- package/package.json +1 -1
|
@@ -9,44 +9,44 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.RegisterResponseDto = void 0;
|
|
13
13
|
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
-
class
|
|
14
|
+
class RegisterResponseDto {
|
|
15
15
|
}
|
|
16
|
-
exports.
|
|
16
|
+
exports.RegisterResponseDto = RegisterResponseDto;
|
|
17
17
|
__decorate([
|
|
18
18
|
(0, swagger_1.ApiProperty)({
|
|
19
19
|
description: 'Registration success message',
|
|
20
20
|
example: 'User registered successfully. Please verify your email.'
|
|
21
21
|
}),
|
|
22
22
|
__metadata("design:type", String)
|
|
23
|
-
],
|
|
23
|
+
], RegisterResponseDto.prototype, "message", void 0);
|
|
24
24
|
__decorate([
|
|
25
25
|
(0, swagger_1.ApiProperty)({
|
|
26
26
|
description: 'Action to be taken for OTP verification',
|
|
27
27
|
example: 'REGISTER'
|
|
28
28
|
}),
|
|
29
29
|
__metadata("design:type", String)
|
|
30
|
-
],
|
|
30
|
+
], RegisterResponseDto.prototype, "action", void 0);
|
|
31
31
|
__decorate([
|
|
32
32
|
(0, swagger_1.ApiProperty)({
|
|
33
33
|
description: 'Verification token for OTP verification',
|
|
34
34
|
example: 'abc123def456ghi789'
|
|
35
35
|
}),
|
|
36
36
|
__metadata("design:type", String)
|
|
37
|
-
],
|
|
37
|
+
], RegisterResponseDto.prototype, "verificationToken", void 0);
|
|
38
38
|
__decorate([
|
|
39
39
|
(0, swagger_1.ApiProperty)({
|
|
40
40
|
description: 'User ID of the created user',
|
|
41
41
|
example: 123
|
|
42
42
|
}),
|
|
43
43
|
__metadata("design:type", Number)
|
|
44
|
-
],
|
|
44
|
+
], RegisterResponseDto.prototype, "userId", void 0);
|
|
45
45
|
__decorate([
|
|
46
46
|
(0, swagger_1.ApiProperty)({
|
|
47
47
|
description: 'Whether email verification is required',
|
|
48
48
|
example: true
|
|
49
49
|
}),
|
|
50
50
|
__metadata("design:type", Boolean)
|
|
51
|
-
],
|
|
51
|
+
], RegisterResponseDto.prototype, "requiresVerification", void 0);
|
|
52
52
|
//# sourceMappingURL=register-response.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register-response.dto.js","sourceRoot":"","sources":["../../../../../src/modules/auth/dtos/register-response.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAE9C,MAAa,
|
|
1
|
+
{"version":3,"file":"register-response.dto.js","sourceRoot":"","sources":["../../../../../src/modules/auth/dtos/register-response.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA8C;AAE9C,MAAa,mBAAmB;CA8B/B;AA9BD,kDA8BC;AAzBG;IAJC,IAAA,qBAAW,EAAC;QACT,WAAW,EAAE,8BAA8B;QAC3C,OAAO,EAAE,yDAAyD;KACrE,CAAC;;oDACe;AAMjB;IAJC,IAAA,qBAAW,EAAC;QACT,WAAW,EAAE,yCAAyC;QACtD,OAAO,EAAE,UAAU;KACtB,CAAC;;mDACc;AAMhB;IAJC,IAAA,qBAAW,EAAC;QACT,WAAW,EAAE,yCAAyC;QACtD,OAAO,EAAE,oBAAoB;KAChC,CAAC;;8DACyB;AAM3B;IAJC,IAAA,qBAAW,EAAC;QACT,WAAW,EAAE,6BAA6B;QAC1C,OAAO,EAAE,GAAG;KACf,CAAC;;mDACc;AAMhB;IAJC,IAAA,qBAAW,EAAC;QACT,WAAW,EAAE,wCAAwC;QACrD,OAAO,EAAE,IAAI;KAChB,CAAC;;iEAC6B"}
|
|
@@ -8,7 +8,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
8
8
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
9
|
};
|
|
10
10
|
import { ApiProperty } from '@nestjs/swagger';
|
|
11
|
-
export class
|
|
11
|
+
export class RegisterResponseDto {
|
|
12
12
|
}
|
|
13
13
|
__decorate([
|
|
14
14
|
ApiProperty({
|
|
@@ -16,33 +16,33 @@ __decorate([
|
|
|
16
16
|
example: 'User registered successfully. Please verify your email.'
|
|
17
17
|
}),
|
|
18
18
|
__metadata("design:type", String)
|
|
19
|
-
],
|
|
19
|
+
], RegisterResponseDto.prototype, "message", void 0);
|
|
20
20
|
__decorate([
|
|
21
21
|
ApiProperty({
|
|
22
22
|
description: 'Action to be taken for OTP verification',
|
|
23
23
|
example: 'REGISTER'
|
|
24
24
|
}),
|
|
25
25
|
__metadata("design:type", String)
|
|
26
|
-
],
|
|
26
|
+
], RegisterResponseDto.prototype, "action", void 0);
|
|
27
27
|
__decorate([
|
|
28
28
|
ApiProperty({
|
|
29
29
|
description: 'Verification token for OTP verification',
|
|
30
30
|
example: 'abc123def456ghi789'
|
|
31
31
|
}),
|
|
32
32
|
__metadata("design:type", String)
|
|
33
|
-
],
|
|
33
|
+
], RegisterResponseDto.prototype, "verificationToken", void 0);
|
|
34
34
|
__decorate([
|
|
35
35
|
ApiProperty({
|
|
36
36
|
description: 'User ID of the created user',
|
|
37
37
|
example: 123
|
|
38
38
|
}),
|
|
39
39
|
__metadata("design:type", Number)
|
|
40
|
-
],
|
|
40
|
+
], RegisterResponseDto.prototype, "userId", void 0);
|
|
41
41
|
__decorate([
|
|
42
42
|
ApiProperty({
|
|
43
43
|
description: 'Whether email verification is required',
|
|
44
44
|
example: true
|
|
45
45
|
}),
|
|
46
46
|
__metadata("design:type", Boolean)
|
|
47
|
-
],
|
|
47
|
+
], RegisterResponseDto.prototype, "requiresVerification", void 0);
|
|
48
48
|
//# sourceMappingURL=register-response.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register-response.dto.js","sourceRoot":"","sources":["../../../../../src/modules/auth/dtos/register-response.dto.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"register-response.dto.js","sourceRoot":"","sources":["../../../../../src/modules/auth/dtos/register-response.dto.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,MAAM,OAAO,mBAAmB;CA8B/B;AAzBG;IAJC,WAAW,CAAC;QACT,WAAW,EAAE,8BAA8B;QAC3C,OAAO,EAAE,yDAAyD;KACrE,CAAC;;oDACe;AAMjB;IAJC,WAAW,CAAC;QACT,WAAW,EAAE,yCAAyC;QACtD,OAAO,EAAE,UAAU;KACtB,CAAC;;mDACc;AAMhB;IAJC,WAAW,CAAC;QACT,WAAW,EAAE,yCAAyC;QACtD,OAAO,EAAE,oBAAoB;KAChC,CAAC;;8DACyB;AAM3B;IAJC,WAAW,CAAC;QACT,WAAW,EAAE,6BAA6B;QAC1C,OAAO,EAAE,GAAG;KACf,CAAC;;mDACc;AAMhB;IAJC,WAAW,CAAC;QACT,WAAW,EAAE,wCAAwC;QACrD,OAAO,EAAE,IAAI;KAChB,CAAC;;iEAC6B"}
|