easywork-common-lib 1.0.321 → 1.0.323

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.
Files changed (52) hide show
  1. package/.gitattributes +2 -2
  2. package/.github/workflows/npm-publish.yml +33 -33
  3. package/.vscode/settings.json +12 -12
  4. package/dist/entities/helpers/tools/task_crm.entity.d.ts +5 -3
  5. package/dist/entities/helpers/tools/task_crm.entity.js +35 -16
  6. package/dist/entities/helpers/tools/task_crm.entity.js.map +1 -1
  7. package/dist/entities/thirdparty/email-config.entity.d.ts +6 -6
  8. package/dist/entities/thirdparty/email-config.entity.js +22 -22
  9. package/dist/entities/thirdparty/email-config.entity.js.map +1 -1
  10. package/dist/grpc/drive/drive.proto +73 -73
  11. package/package.json +42 -42
  12. package/scripts/bump.sh +5 -5
  13. package/test.bat +15 -15
  14. package/tsconfig.build.json +4 -4
  15. package/tsconfig.json +26 -26
  16. package/tsconfig.tsbuildinfo +1 -1
  17. package/dist/entities/helpers/sales/contact/contact_sources.entity.d.ts +0 -5
  18. package/dist/entities/helpers/sales/contact/contact_sources.entity.js +0 -36
  19. package/dist/entities/helpers/sales/contact/contact_sources.entity.js.map +0 -1
  20. package/dist/entities/helpers/sales/contact/contact_types.entity.d.ts +0 -5
  21. package/dist/entities/helpers/sales/contact/contact_types.entity.js +0 -36
  22. package/dist/entities/helpers/sales/contact/contact_types.entity.js.map +0 -1
  23. package/dist/entities/helpers/sales/poliza/h_poliza_company.entity.d.ts +0 -5
  24. package/dist/entities/helpers/sales/poliza/h_poliza_company.entity.js +0 -30
  25. package/dist/entities/helpers/sales/poliza/h_poliza_company.entity.js.map +0 -1
  26. package/dist/entities/imap-folder.entity.d.ts +0 -7
  27. package/dist/entities/imap-folder.entity.js +0 -41
  28. package/dist/entities/imap-folder.entity.js.map +0 -1
  29. package/dist/entities/oauth.entity.d.ts +0 -16
  30. package/dist/entities/oauth.entity.js +0 -83
  31. package/dist/entities/oauth.entity.js.map +0 -1
  32. package/dist/modules/notifier/notifier.module.d.ts +0 -4
  33. package/dist/modules/notifier/notifier.module.js +0 -52
  34. package/dist/modules/notifier/notifier.module.js.map +0 -1
  35. package/dist/modules/notifier/notifier.service.d.ts +0 -19
  36. package/dist/modules/notifier/notifier.service.js +0 -231
  37. package/dist/modules/notifier/notifier.service.js.map +0 -1
  38. package/dist/modules/notifier/scheduler.service.d.ts +0 -9
  39. package/dist/modules/notifier/scheduler.service.js +0 -40
  40. package/dist/modules/notifier/scheduler.service.js.map +0 -1
  41. package/dist/modules/queue/subservices/calendar.service.d.ts +0 -2
  42. package/dist/modules/queue/subservices/calendar.service.js +0 -17
  43. package/dist/modules/queue/subservices/calendar.service.js.map +0 -1
  44. package/dist/modules/queue/subservices/contact.service.d.ts +0 -7
  45. package/dist/modules/queue/subservices/contact.service.js +0 -49
  46. package/dist/modules/queue/subservices/contact.service.js.map +0 -1
  47. package/dist/modules/queue/subservices/index.d.ts +0 -3
  48. package/dist/modules/queue/subservices/index.js +0 -20
  49. package/dist/modules/queue/subservices/index.js.map +0 -1
  50. package/dist/modules/queue/subservices/task.service.d.ts +0 -12
  51. package/dist/modules/queue/subservices/task.service.js +0 -173
  52. package/dist/modules/queue/subservices/task.service.js.map +0 -1
package/tsconfig.json CHANGED
@@ -1,26 +1,26 @@
1
- {
2
- "extends": "@rubiin/tsconfig",
3
- "compilerOptions": {
4
- "module": "commonjs",
5
- "declaration": true,
6
- "removeComments": true,
7
- "emitDecoratorMetadata": true,
8
- "experimentalDecorators": true,
9
- "allowSyntheticDefaultImports": true,
10
- "target": "ES2022",
11
- "sourceMap": true,
12
- "outDir": "./dist",
13
- "rootDir": "./src",
14
- "baseUrl": "./src",
15
- "incremental": true,
16
- "strict": true,
17
- "skipLibCheck": true,
18
- "strictNullChecks": false,
19
- "noImplicitAny": false,
20
- "strictBindCallApply": false,
21
- "forceConsistentCasingInFileNames": true,
22
- "noFallthroughCasesInSwitch": false
23
- },
24
- "include": ["test/**/*", "src/**/*", "eslint.config.js"],
25
- "typeRoots": ["./src/common/@types/typings"]
26
- }
1
+ {
2
+ "extends": "@rubiin/tsconfig",
3
+ "compilerOptions": {
4
+ "module": "commonjs",
5
+ "declaration": true,
6
+ "removeComments": true,
7
+ "emitDecoratorMetadata": true,
8
+ "experimentalDecorators": true,
9
+ "allowSyntheticDefaultImports": true,
10
+ "target": "ES2022",
11
+ "sourceMap": true,
12
+ "outDir": "./dist",
13
+ "rootDir": "./src",
14
+ "baseUrl": "./src",
15
+ "incremental": true,
16
+ "strict": true,
17
+ "skipLibCheck": true,
18
+ "strictNullChecks": false,
19
+ "noImplicitAny": false,
20
+ "strictBindCallApply": false,
21
+ "forceConsistentCasingInFileNames": true,
22
+ "noFallthroughCasesInSwitch": false
23
+ },
24
+ "include": ["test/**/*", "src/**/*", "eslint.config.js"],
25
+ "typeRoots": ["./src/common/@types/typings"]
26
+ }