@comet/brevo-api 2.0.0-canary-20240809075018 → 2.0.0-canary-20240820071220
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/lib/brevo-api/brevo-api-contact.service.d.ts +1 -1
- package/lib/brevo-api/brevo-api-contact.service.d.ts.map +1 -1
- package/lib/brevo-api/brevo-api-contact.service.js +2 -2
- package/lib/brevo-api/brevo-api-contact.service.js.map +1 -1
- package/lib/brevo-contact/brevo-contact-import.console.d.ts +6 -0
- package/lib/brevo-contact/brevo-contact-import.console.d.ts.map +1 -0
- package/lib/brevo-contact/brevo-contact-import.console.js +154 -0
- package/lib/brevo-contact/brevo-contact-import.console.js.map +1 -0
- package/lib/brevo-contact/brevo-contact-import.controller.d.ts +6 -0
- package/lib/brevo-contact/brevo-contact-import.controller.d.ts.map +1 -0
- package/lib/brevo-contact/brevo-contact-import.controller.js +86 -0
- package/lib/brevo-contact/brevo-contact-import.controller.js.map +1 -0
- package/lib/brevo-contact/brevo-contact-import.service.d.ts +22 -0
- package/lib/brevo-contact/brevo-contact-import.service.d.ts.map +1 -0
- package/lib/brevo-contact/brevo-contact-import.service.js +165 -0
- package/lib/brevo-contact/brevo-contact-import.service.js.map +1 -0
- package/lib/brevo-contact/brevo-contact.module.d.ts.map +1 -1
- package/lib/brevo-contact/brevo-contact.module.js +9 -1
- package/lib/brevo-contact/brevo-contact.module.js.map +1 -1
- package/lib/brevo-contact/brevo-contacts.service.d.ts +2 -1
- package/lib/brevo-contact/brevo-contacts.service.d.ts.map +1 -1
- package/lib/brevo-contact/brevo-contacts.service.js +6 -2
- package/lib/brevo-contact/brevo-contacts.service.js.map +1 -1
- package/lib/config/brevo-module.config.d.ts +1 -0
- package/lib/config/brevo-module.config.d.ts.map +1 -1
- package/lib/email-campaign/email-campaigns.service.js +1 -1
- package/lib/email-campaign/email-campaigns.service.js.map +1 -1
- package/lib/target-group/target-group.resolver.d.ts.map +1 -1
- package/lib/target-group/target-group.resolver.js +5 -18
- package/lib/target-group/target-group.resolver.js.map +1 -1
- package/lib/target-group/target-groups.service.d.ts +1 -0
- package/lib/target-group/target-groups.service.d.ts.map +1 -1
- package/lib/target-group/target-groups.service.js +16 -0
- package/lib/target-group/target-groups.service.js.map +1 -1
- package/lib/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comet/brevo-api",
|
|
3
|
-
"version": "2.0.0-canary-
|
|
3
|
+
"version": "2.0.0-canary-20240820071220",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/vivid-planet/comet-brevo-module/",
|
|
@@ -13,10 +13,13 @@
|
|
|
13
13
|
"lib/*"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
+
"@fast-csv/parse": "^5.0.0",
|
|
16
17
|
"@getbrevo/brevo": "^2.2.0",
|
|
17
18
|
"@nestjs/axios": "^1.0.0",
|
|
18
19
|
"@nestjs/cache-manager": "^2.2.2",
|
|
20
|
+
"@types/multer": "^1.4.11",
|
|
19
21
|
"cache-manager": "^5.7.3",
|
|
22
|
+
"commander": "^7.2.0",
|
|
20
23
|
"node-fetch": "^2.6.1"
|
|
21
24
|
},
|
|
22
25
|
"devDependencies": {
|
|
@@ -34,7 +37,9 @@
|
|
|
34
37
|
"@nestjs/common": "^9.0.0",
|
|
35
38
|
"@nestjs/core": "^9.0.0",
|
|
36
39
|
"@nestjs/graphql": "^10.0.0",
|
|
40
|
+
"@nestjs/platform-express": "^9.0.0",
|
|
37
41
|
"@types/jest": "^29.5.0",
|
|
42
|
+
"@types/mime-db": "^1.43.5",
|
|
38
43
|
"@types/node-fetch": "^2.5.12",
|
|
39
44
|
"@types/rimraf": "^3.0.0",
|
|
40
45
|
"@types/uuid": "^8.3.0",
|
|
@@ -67,6 +72,7 @@
|
|
|
67
72
|
"@mikro-orm/nestjs": "^5.0.0",
|
|
68
73
|
"@mikro-orm/postgresql": "^5.0.4",
|
|
69
74
|
"@nestjs/common": "^9.0.0",
|
|
75
|
+
"@nestjs/platform-express": "^9.0.0",
|
|
70
76
|
"axios": "^0.21.0",
|
|
71
77
|
"reflect-metadata": "^0.1.13",
|
|
72
78
|
"rxjs": "^7.0.0"
|