easywork-common-lib 1.0.304 → 1.0.305
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/.gitattributes +2 -2
- package/.github/workflows/npm-publish.yml +33 -33
- package/.vscode/settings.json +12 -12
- package/dist/common/index.d.ts +0 -1
- package/dist/common/index.js +0 -1
- package/dist/common/index.js.map +1 -1
- package/dist/entities/helpers/sales/lead/index.d.ts +0 -1
- package/dist/entities/helpers/sales/lead/index.js +0 -1
- package/dist/entities/helpers/sales/lead/index.js.map +1 -1
- package/dist/entities/index.d.ts +2 -1
- package/dist/entities/index.js +2 -1
- package/dist/entities/index.js.map +1 -1
- package/dist/entities/sales/contact.entity.js +0 -1
- package/dist/entities/sales/contact.entity.js.map +1 -1
- package/dist/entities/sales/index.d.ts +0 -2
- package/dist/entities/sales/index.js +0 -2
- package/dist/entities/sales/index.js.map +1 -1
- package/dist/entities/sales/lead.entity.d.ts +44 -35
- package/dist/entities/sales/lead.entity.js +199 -146
- package/dist/entities/sales/lead.entity.js.map +1 -1
- package/dist/entities/sales/poliza.entity.d.ts +0 -15
- package/dist/entities/sales/poliza.entity.js +1 -103
- package/dist/entities/sales/poliza.entity.js.map +1 -1
- package/dist/entities/sales/receipt.entity.d.ts +0 -5
- package/dist/entities/sales/receipt.entity.js +1 -31
- package/dist/entities/sales/receipt.entity.js.map +1 -1
- package/dist/entities/thirdparty/email.entity.d.ts +2 -3
- package/dist/entities/thirdparty/email.entity.js +2 -7
- package/dist/entities/thirdparty/email.entity.js.map +1 -1
- package/dist/grpc/drive/drive.proto +69 -69
- package/dist/modules/notifier/notifier.module.js +4 -1
- package/dist/modules/notifier/notifier.module.js.map +1 -1
- package/dist/modules/notifier/notifier.service.js +3 -3
- package/dist/modules/notifier/notifier.service.js.map +1 -1
- package/dist/modules/notifier/scheduler.service.d.ts +9 -0
- package/dist/modules/notifier/scheduler.service.js +40 -0
- package/dist/modules/notifier/scheduler.service.js.map +1 -0
- package/dist/modules/queue/notifier.service.d.ts +1 -2
- package/dist/modules/queue/notifier.service.js +0 -2
- package/dist/modules/queue/notifier.service.js.map +1 -1
- package/dist/modules/queue/notifiers/index.d.ts +0 -1
- package/dist/modules/queue/notifiers/index.js +0 -1
- package/dist/modules/queue/notifiers/index.js.map +1 -1
- package/dist/modules/queue/subservices/calendar.service.d.ts +2 -0
- package/dist/modules/queue/subservices/calendar.service.js +17 -0
- package/dist/modules/queue/subservices/calendar.service.js.map +1 -0
- package/dist/modules/queue/subservices/contact.service.d.ts +7 -0
- package/dist/modules/queue/{notifiers/lead.notifier.js → subservices/contact.service.js} +16 -16
- package/dist/modules/queue/subservices/contact.service.js.map +1 -0
- package/dist/modules/queue/subservices/index.d.ts +3 -0
- package/dist/{common/functions → modules/queue/subservices}/index.js +3 -2
- package/dist/modules/queue/subservices/index.js.map +1 -0
- package/dist/modules/queue/subservices/task.service.d.ts +12 -0
- package/dist/modules/queue/subservices/task.service.js +173 -0
- package/dist/modules/queue/subservices/task.service.js.map +1 -0
- package/package.json +42 -42
- package/scripts/bump.sh +5 -5
- package/test.bat +15 -15
- package/tsconfig.build.json +4 -4
- package/tsconfig.json +26 -26
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/common/functions/cripto.d.ts +0 -1
- package/dist/common/functions/cripto.js +0 -9
- package/dist/common/functions/cripto.js.map +0 -1
- package/dist/common/functions/image.d.ts +0 -3
- package/dist/common/functions/image.js +0 -15
- package/dist/common/functions/image.js.map +0 -1
- package/dist/common/functions/index.d.ts +0 -2
- package/dist/common/functions/index.js.map +0 -1
- package/dist/entities/easyapp/index.d.ts +0 -1
- package/dist/entities/easyapp/index.js +0 -18
- package/dist/entities/easyapp/index.js.map +0 -1
- package/dist/entities/helpers/sales/lead/lead_cancel_reazon.entity.d.ts +0 -4
- package/dist/entities/helpers/sales/lead/lead_cancel_reazon.entity.js +0 -29
- package/dist/entities/helpers/sales/lead/lead_cancel_reazon.entity.js.map +0 -1
- package/dist/entities/sales/receipt-sub-agente.entity.d.ts +0 -5
- package/dist/entities/sales/receipt-sub-agente.entity.js +0 -35
- package/dist/entities/sales/receipt-sub-agente.entity.js.map +0 -1
- package/dist/entities/thirdparty/email-config.d.ts +0 -1
- package/dist/entities/thirdparty/email-config.js +0 -3
- package/dist/entities/thirdparty/email-config.js.map +0 -1
- package/dist/entities/thirdparty/oauth.entity.d.ts +0 -17
- package/dist/entities/thirdparty/oauth.entity.js +0 -88
- package/dist/entities/thirdparty/oauth.entity.js.map +0 -1
- package/dist/modules/queue/notifiers/lead.notifier.d.ts +0 -7
- package/dist/modules/queue/notifiers/lead.notifier.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
|
+
}
|