@hed-hog/contact-us 0.0.266 → 0.0.270
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contact-us.module.d.ts","sourceRoot":"","sources":["../src/contact-us.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"contact-us.module.d.ts","sourceRoot":"","sources":["../src/contact-us.module.ts"],"names":[],"mappings":"AAOA,qBAYa,eAAe;CAAG"}
|
|
@@ -11,7 +11,6 @@ const api_locale_1 = require("@hed-hog/api-locale");
|
|
|
11
11
|
const api_pagination_1 = require("@hed-hog/api-pagination");
|
|
12
12
|
const api_prisma_1 = require("@hed-hog/api-prisma");
|
|
13
13
|
const core_1 = require("@hed-hog/core");
|
|
14
|
-
const mail_module_1 = require("@hed-hog/core/mail/mail.module");
|
|
15
14
|
const common_1 = require("@nestjs/common");
|
|
16
15
|
const contact_us_controller_1 = require("./contact-us.controller");
|
|
17
16
|
const contact_us_service_1 = require("./contact-us.service");
|
|
@@ -25,7 +24,7 @@ exports.ContactUsModule = ContactUsModule = __decorate([
|
|
|
25
24
|
(0, common_1.forwardRef)(() => api_prisma_1.PrismaModule),
|
|
26
25
|
(0, common_1.forwardRef)(() => api_pagination_1.PaginationModule),
|
|
27
26
|
(0, common_1.forwardRef)(() => core_1.CoreModule),
|
|
28
|
-
(0, common_1.forwardRef)(() =>
|
|
27
|
+
(0, common_1.forwardRef)(() => core_1.MailModule),
|
|
29
28
|
],
|
|
30
29
|
controllers: [contact_us_controller_1.ContactUsController],
|
|
31
30
|
providers: [contact_us_service_1.ContactUsService],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contact-us.module.js","sourceRoot":"","sources":["../src/contact-us.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAmD;AACnD,4DAA2D;AAC3D,oDAAmD;AACnD,
|
|
1
|
+
{"version":3,"file":"contact-us.module.js","sourceRoot":"","sources":["../src/contact-us.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAmD;AACnD,4DAA2D;AAC3D,oDAAmD;AACnD,wCAAuD;AACvD,2CAAoD;AACpD,mEAA8D;AAC9D,6DAAwD;AAajD,IAAM,eAAe,GAArB,MAAM,eAAe;CAAG,CAAA;AAAlB,0CAAe;0BAAf,eAAe;IAZ3B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE;YACP,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,yBAAY,CAAC;YAC9B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,yBAAY,CAAC;YAC9B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;YAClC,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,iBAAU,CAAC;YAC5B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,iBAAU,CAAC;SAC7B;QACD,WAAW,EAAE,CAAC,2CAAmB,CAAC;QAClC,SAAS,EAAE,CAAC,qCAAgB,CAAC;QAC7B,OAAO,EAAE,CAAC,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,qCAAgB,CAAC,CAAC;KAC9C,CAAC;GACW,eAAe,CAAG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hed-hog/contact-us",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.270",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"@nestjs/jwt": "^11",
|
|
11
11
|
"@nestjs/mapped-types": "*",
|
|
12
12
|
"@hed-hog/api-locale": "0.0.13",
|
|
13
|
-
"@hed-hog/core": "0.0.266",
|
|
14
|
-
"@hed-hog/api": "0.0.4",
|
|
15
13
|
"@hed-hog/api-prisma": "0.0.5",
|
|
14
|
+
"@hed-hog/core": "0.0.270",
|
|
15
|
+
"@hed-hog/api": "0.0.4",
|
|
16
16
|
"@hed-hog/api-pagination": "0.0.6"
|
|
17
17
|
},
|
|
18
18
|
"exports": {
|
package/src/contact-us.module.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { LocaleModule } from '@hed-hog/api-locale';
|
|
2
2
|
import { PaginationModule } from '@hed-hog/api-pagination';
|
|
3
3
|
import { PrismaModule } from '@hed-hog/api-prisma';
|
|
4
|
-
import { CoreModule } from '@hed-hog/core';
|
|
5
|
-
import { MailModule } from '@hed-hog/core/mail/mail.module';
|
|
4
|
+
import { CoreModule, MailModule } from '@hed-hog/core';
|
|
6
5
|
import { forwardRef, Module } from '@nestjs/common';
|
|
7
6
|
import { ContactUsController } from './contact-us.controller';
|
|
8
7
|
import { ContactUsService } from './contact-us.service';
|