easywork-common-lib 1.0.259 → 1.0.261

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 (40) 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/common/enums/drive.enum.d.ts +20 -0
  5. package/dist/common/enums/drive.enum.js +26 -0
  6. package/dist/common/enums/drive.enum.js.map +1 -0
  7. package/dist/common/enums/index.d.ts +1 -0
  8. package/dist/common/enums/index.js +1 -0
  9. package/dist/common/enums/index.js.map +1 -1
  10. package/dist/entities/drive/attached_object.entity.d.ts +3 -2
  11. package/dist/entities/drive/attached_object.entity.js +21 -5
  12. package/dist/entities/drive/attached_object.entity.js.map +1 -1
  13. package/dist/entities/easyapp/index.d.ts +1 -0
  14. package/dist/{modules/queue/subservices → entities/easyapp}/index.js +1 -3
  15. package/dist/entities/easyapp/index.js.map +1 -0
  16. package/dist/grpc/drive/drive.proto +69 -69
  17. package/dist/modules/notifier/notifier.module.js +1 -4
  18. package/dist/modules/notifier/notifier.module.js.map +1 -1
  19. package/dist/modules/notifier/notifier.service.js +3 -3
  20. package/dist/modules/notifier/notifier.service.js.map +1 -1
  21. package/package.json +41 -41
  22. package/scripts/bump.sh +5 -5
  23. package/test.bat +15 -15
  24. package/tsconfig.build.json +4 -4
  25. package/tsconfig.json +26 -26
  26. package/tsconfig.tsbuildinfo +1 -1
  27. package/dist/modules/notifier/scheduler.service.d.ts +0 -9
  28. package/dist/modules/notifier/scheduler.service.js +0 -40
  29. package/dist/modules/notifier/scheduler.service.js.map +0 -1
  30. package/dist/modules/queue/subservices/calendar.service.d.ts +0 -2
  31. package/dist/modules/queue/subservices/calendar.service.js +0 -17
  32. package/dist/modules/queue/subservices/calendar.service.js.map +0 -1
  33. package/dist/modules/queue/subservices/contact.service.d.ts +0 -7
  34. package/dist/modules/queue/subservices/contact.service.js +0 -49
  35. package/dist/modules/queue/subservices/contact.service.js.map +0 -1
  36. package/dist/modules/queue/subservices/index.d.ts +0 -3
  37. package/dist/modules/queue/subservices/index.js.map +0 -1
  38. package/dist/modules/queue/subservices/task.service.d.ts +0 -12
  39. package/dist/modules/queue/subservices/task.service.js +0 -173
  40. 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
+ }