easywork-common-lib 1.0.188 → 1.0.190

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 CHANGED
@@ -1,2 +1,2 @@
1
- # Auto detect text files and perform LF normalization
2
- * text=auto
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
@@ -1,13 +1,13 @@
1
- {
2
- "autoBarrel.language.defaultLanguage": "TypeScript",
3
- "autoBarrel.files.disableRecursiveBarrelling": false,
4
- "autoBarrel.files.includeExtensionOnExport": ["ts", "tsx", "vue"],
5
- "autoBarrel.files.ignoreFilePathPatternOnExport": ["**/*.spec.*", "**/*.test.*"],
6
- "autoBarrel.files.keepExtensionOnExport": false,
7
- "autoBarrel.files.detectExportsInFiles": false,
8
- "autoBarrel.files.exportDefaultFilename": "filename",
9
- "autoBarrel.formatting.excludeSemiColonAtEndOfLine": false,
10
- "autoBarrel.formatting.useSingleQuotes": true,
11
- "autoBarrel.formatting.endOfLine": "lf",
12
- "autoBarrel.formatting.insertFinalNewline": true,
1
+ {
2
+ "autoBarrel.language.defaultLanguage": "TypeScript",
3
+ "autoBarrel.files.disableRecursiveBarrelling": false,
4
+ "autoBarrel.files.includeExtensionOnExport": ["ts", "tsx", "vue"],
5
+ "autoBarrel.files.ignoreFilePathPatternOnExport": ["**/*.spec.*", "**/*.test.*"],
6
+ "autoBarrel.files.keepExtensionOnExport": false,
7
+ "autoBarrel.files.detectExportsInFiles": false,
8
+ "autoBarrel.files.exportDefaultFilename": "filename",
9
+ "autoBarrel.formatting.excludeSemiColonAtEndOfLine": false,
10
+ "autoBarrel.formatting.useSingleQuotes": true,
11
+ "autoBarrel.formatting.endOfLine": "lf",
12
+ "autoBarrel.formatting.insertFinalNewline": true,
13
13
  }
@@ -20,3 +20,5 @@ export * from "./drive";
20
20
  export * from "./helpers";
21
21
  export * from "./notifications";
22
22
  export * from "./easyapp/filter-view.entity";
23
+ export * from "./thirdparty/service.entity";
24
+ export * from "./thirdparty/email.entity";
@@ -36,4 +36,6 @@ __exportStar(require("./drive"), exports);
36
36
  __exportStar(require("./helpers"), exports);
37
37
  __exportStar(require("./notifications"), exports);
38
38
  __exportStar(require("./easyapp/filter-view.entity"), exports);
39
+ __exportStar(require("./thirdparty/service.entity"), exports);
40
+ __exportStar(require("./thirdparty/email.entity"), exports);
39
41
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,oDAAkC;AAClC,mDAAiC;AACjC,yDAAuC;AACvC,mDAAiC;AACjC,gDAA8B;AAC9B,sDAAoC;AACpC,yDAAuC;AACvC,sDAAoC;AACpC,wDAAsC;AACtC,iDAA+B;AAC/B,iDAA+B;AAC/B,iEAA+C;AAC/C,uDAAqC;AACrC,uDAAqC;AACrC,+CAA6B;AAC7B,iDAA+B;AAC/B,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,kDAAgC;AAChC,+DAA6C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,oDAAkC;AAClC,mDAAiC;AACjC,yDAAuC;AACvC,mDAAiC;AACjC,gDAA8B;AAC9B,sDAAoC;AACpC,yDAAuC;AACvC,sDAAoC;AACpC,wDAAsC;AACtC,iDAA+B;AAC/B,iDAA+B;AAC/B,iEAA+C;AAC/C,uDAAqC;AACrC,uDAAqC;AACrC,+CAA6B;AAC7B,iDAA+B;AAC/B,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,kDAAgC;AAChC,+DAA6C;AAC7C,8DAA4C;AAC5C,4DAA0C"}
@@ -0,0 +1,12 @@
1
+ import { BaseEntity } from "../../common/database";
2
+ import { ServiceThirdparty } from "./service.entity";
3
+ import { User } from "../user.entity";
4
+ export declare class EmailThirdparty extends BaseEntity {
5
+ subject: string;
6
+ from: string;
7
+ date: Date;
8
+ to: string[];
9
+ body: string;
10
+ service: ServiceThirdparty;
11
+ user?: User[];
12
+ }
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.EmailThirdparty = void 0;
13
+ const database_1 = require("../../common/database");
14
+ const typeorm_1 = require("typeorm");
15
+ const service_entity_1 = require("./service.entity");
16
+ const user_entity_1 = require("../user.entity");
17
+ let EmailThirdparty = class EmailThirdparty extends database_1.BaseEntity {
18
+ subject;
19
+ from;
20
+ date;
21
+ to;
22
+ body;
23
+ service;
24
+ user;
25
+ };
26
+ exports.EmailThirdparty = EmailThirdparty;
27
+ __decorate([
28
+ (0, typeorm_1.Column)(),
29
+ __metadata("design:type", String)
30
+ ], EmailThirdparty.prototype, "subject", void 0);
31
+ __decorate([
32
+ (0, typeorm_1.Column)(),
33
+ __metadata("design:type", String)
34
+ ], EmailThirdparty.prototype, "from", void 0);
35
+ __decorate([
36
+ (0, typeorm_1.Column)(),
37
+ __metadata("design:type", Date)
38
+ ], EmailThirdparty.prototype, "date", void 0);
39
+ __decorate([
40
+ (0, typeorm_1.Column)("text", { array: true }),
41
+ __metadata("design:type", Array)
42
+ ], EmailThirdparty.prototype, "to", void 0);
43
+ __decorate([
44
+ (0, typeorm_1.Column)(),
45
+ __metadata("design:type", String)
46
+ ], EmailThirdparty.prototype, "body", void 0);
47
+ __decorate([
48
+ (0, typeorm_1.ManyToOne)(() => service_entity_1.ServiceThirdparty, (service) => service.emails),
49
+ __metadata("design:type", service_entity_1.ServiceThirdparty)
50
+ ], EmailThirdparty.prototype, "service", void 0);
51
+ __decorate([
52
+ (0, typeorm_1.ManyToMany)(() => user_entity_1.User, {
53
+ onDelete: "CASCADE",
54
+ onUpdate: "CASCADE",
55
+ }),
56
+ (0, typeorm_1.JoinTable)(),
57
+ __metadata("design:type", Array)
58
+ ], EmailThirdparty.prototype, "user", void 0);
59
+ exports.EmailThirdparty = EmailThirdparty = __decorate([
60
+ (0, typeorm_1.Entity)()
61
+ ], EmailThirdparty);
62
+ //# sourceMappingURL=email.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"email.entity.js","sourceRoot":"","sources":["../../../src/entities/thirdparty/email.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAAmD;AACnD,qCAA2E;AAC3E,qDAAqD;AACrD,gDAAsC;AAG/B,IAAM,eAAe,GAArB,MAAM,eAAgB,SAAQ,qBAAU;IAE7C,OAAO,CAAS;IAGhB,IAAI,CAAS;IAGb,IAAI,CAAO;IAGX,EAAE,CAAW;IAGb,IAAI,CAAS;IAGb,OAAO,CAAoB;IAO3B,IAAI,CAAU;CACf,CAAA;AAzBY,0CAAe;AAE1B;IADC,IAAA,gBAAM,GAAE;;gDACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;6CACI;AAGb;IADC,IAAA,gBAAM,GAAE;8BACH,IAAI;6CAAC;AAGX;IADC,IAAA,gBAAM,EAAC,MAAM,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;;2CACnB;AAGb;IADC,IAAA,gBAAM,GAAE;;6CACI;AAGb;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kCAAiB,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC;8BACvD,kCAAiB;gDAAC;AAO3B;IALC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACtB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACpB,CAAC;IACD,IAAA,mBAAS,GAAE;;6CACE;0BAxBH,eAAe;IAD3B,IAAA,gBAAM,GAAE;GACI,eAAe,CAyB3B"}
@@ -0,0 +1,6 @@
1
+ import { BaseEntity } from "../../common/database";
2
+ import { EmailThirdparty } from "./email.entity";
3
+ export declare class ServiceThirdparty extends BaseEntity {
4
+ name: string;
5
+ emails: EmailThirdparty[];
6
+ }
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ServiceThirdparty = void 0;
13
+ const database_1 = require("../../common/database");
14
+ const typeorm_1 = require("typeorm");
15
+ const email_entity_1 = require("./email.entity");
16
+ let ServiceThirdparty = class ServiceThirdparty extends database_1.BaseEntity {
17
+ name;
18
+ emails;
19
+ };
20
+ exports.ServiceThirdparty = ServiceThirdparty;
21
+ __decorate([
22
+ (0, typeorm_1.Column)(),
23
+ __metadata("design:type", String)
24
+ ], ServiceThirdparty.prototype, "name", void 0);
25
+ __decorate([
26
+ (0, typeorm_1.OneToMany)(() => email_entity_1.EmailThirdparty, email => email.service),
27
+ __metadata("design:type", Array)
28
+ ], ServiceThirdparty.prototype, "emails", void 0);
29
+ exports.ServiceThirdparty = ServiceThirdparty = __decorate([
30
+ (0, typeorm_1.Entity)()
31
+ ], ServiceThirdparty);
32
+ //# sourceMappingURL=service.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service.entity.js","sourceRoot":"","sources":["../../../src/entities/thirdparty/service.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oDAAmD;AACnD,qCAAoD;AACpD,iDAAgD;AAGzC,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,qBAAU;IAE/C,IAAI,CAAS;IAGb,MAAM,CAAoB;CAC3B,CAAA;AANY,8CAAiB;AAE5B;IADC,IAAA,gBAAM,GAAE;;+CACI;AAGb;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,8BAAe,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC;;iDAC/B;4BALf,iBAAiB;IAD7B,IAAA,gBAAM,GAAE;GACI,iBAAiB,CAM7B"}
@@ -7,6 +7,7 @@ import { TaskListField } from "./task-list-field";
7
7
  import { TaskCRM } from "../../entities/helpers";
8
8
  export declare class Task extends BaseEntity {
9
9
  name: string;
10
+ number: number;
10
11
  description: string;
11
12
  deadline: Date;
12
13
  startTime: Date;
@@ -20,6 +20,7 @@ const enums_1 = require("../../common/enums");
20
20
  const helpers_1 = require("../../entities/helpers");
21
21
  let Task = class Task extends common_1.BaseEntity {
22
22
  name;
23
+ number;
23
24
  description;
24
25
  deadline;
25
26
  startTime;
@@ -47,6 +48,11 @@ __decorate([
47
48
  (0, typeorm_1.Column)({ unique: false, nullable: false }),
48
49
  __metadata("design:type", String)
49
50
  ], Task.prototype, "name", void 0);
51
+ __decorate([
52
+ (0, typeorm_1.Column)(),
53
+ (0, typeorm_1.Generated)("increment"),
54
+ __metadata("design:type", Number)
55
+ ], Task.prototype, "number", void 0);
50
56
  __decorate([
51
57
  (0, typeorm_1.Column)({ type: "text" }),
52
58
  __metadata("design:type", String)
@@ -1 +1 @@
1
- {"version":3,"file":"task.entity.js","sourceRoot":"","sources":["../../../src/entities/tools/task.entity.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"task.entity.js","sourceRoot":"","sources":["../../../src/entities/tools/task.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA4C;AAC5C,gDAAsC;AACtC,qCAA6G;AAC7G,+DAAoD;AACpD,8CAAoC;AACpC,yCAA0C;AAC1C,8CAAgD;AAEhD,oDAAiD;AAG1C,IAAM,IAAI,GAAV,MAAM,IAAK,SAAQ,mBAAU;IAGhC,IAAI,CAAS;IAIb,MAAM,CAAS;IAGf,WAAW,CAAS;IAGpB,QAAQ,CAAO;IAGf,SAAS,CAAO;IAGhB,aAAa,CAAO;IAGpB,eAAe,CAAU;IAGzB,cAAc,CAAU;IAGxB,wBAAwB,CAAU;IAOlC,MAAM,CAAa;IAGnB,WAAW,CAAU;IAGrB,QAAQ,CAAU;IAOlB,SAAS,CAAO;IAOhB,UAAU,CAAO;IAOjB,YAAY,CAAU;IAOtB,WAAW,CAAU;IAOrB,SAAS,CAAU;IAQnB,IAAI,CAAQ;IAGZ,SAAS,CAAkB;IAI3B,QAAQ,CAAc;IAMtB,GAAG,CAAa;IAQhB,UAAU,CAAO;CACpB,CAAA;AA1GY,oBAAI;AAGb;IAFC,IAAA,2BAAS,EAAC,CAAC,CAAC;IACZ,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;kCAC9B;AAIb;IAFC,IAAA,gBAAM,GAAE;IACR,IAAA,mBAAS,EAAC,WAAW,CAAC;;oCACR;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;yCACL;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACjB,IAAI;sCAAC;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAChB,IAAI;uCAAC;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACZ,IAAI;2CAAC;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;6CACF;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;4CACH;AAGxB;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;sDACO;AAOlC;IALC,IAAA,gBAAM,EAAC;QACJ,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,kBAAU;QAChB,OAAO,EAAE,kBAAU,CAAC,OAAO;KAC9B,CAAC;;oCACiB;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;yCACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;sCACT;AAOlB;IALC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACnB,QAAQ,EAAE,UAAU;QACpB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,IAAI;KACjB,CAAC;8BACS,kBAAI;uCAAC;AAOhB;IALC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACnB,QAAQ,EAAE,UAAU;QACpB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,IAAI;KACjB,CAAC;8BACU,kBAAI;wCAAC;AAOjB;IALC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACpB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACtB,CAAC;IACD,IAAA,mBAAS,GAAE;;0CACU;AAOtB;IALC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACpB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACtB,CAAC;IACD,IAAA,mBAAS,GAAE;;yCACS;AAOrB;IALC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACpB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACtB,CAAC;IACD,IAAA,mBAAS,GAAE;;uCACO;AAQnB;IALC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,gBAAG,EAAE,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,KAAK,EAAE;QACrC,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACtB,CAAC;IACD,IAAA,mBAAS,GAAE;;kCACA;AAGZ;IADC,IAAA,gBAAM,EAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uCACR;AAI3B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,iCAAW,EAAE,WAAW,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC;IAC7D,IAAA,oBAAU,GAAE;8BACH,iCAAW;sCAAC;AAMtB;IAJC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,iBAAO,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE;QACjD,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACtB,CAAC;;iCACc;AAQhB;IANC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,IAAI,EAAE;QACnB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,IAAI;KACjB,CAAC;IACD,IAAA,oBAAU,GAAE;8BACA,IAAI;wCAAA;eAzGR,IAAI;IADhB,IAAA,gBAAM,GAAE;GACI,IAAI,CA0GhB"}
package/package.json CHANGED
@@ -1,37 +1,37 @@
1
- {
2
- "name": "easywork-common-lib",
3
- "version": "1.0.188",
4
- "description": "Librería común de Easywork",
5
- "main": "dist/index.js",
6
- "scripts": {
7
- "build": "tsc",
8
- "bump": "./scripts/bump.sh"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/criptopreto/easywork-common-lib.git"
13
- },
14
- "keywords": [
15
- "nodejs"
16
- ],
17
- "author": "Rosmer Campos",
18
- "license": "MIT",
19
- "bugs": {
20
- "url": "https://github.com/criptopreto/easywork-common-lib/issues"
21
- },
22
- "homepage": "https://github.com/criptopreto/easywork-common-lib#readme",
23
- "dependencies": {
24
- "@nestjs/common": "^10.3.8",
25
- "@nestjs/typeorm": "^10.0.2",
26
- "class-transformer": "^0.5.1",
27
- "class-validator": "^0.14.1",
28
- "rxjs": "^7.8.1",
29
- "typeorm": "^0.3.20"
30
- },
31
- "devDependencies": {
32
- "@rubiin/tsconfig": "^1.1.2",
33
- "@types/node": "^20.12.12",
34
- "ts-loader": "^9.5.1",
35
- "typescript": "^5.4.5"
36
- }
37
- }
1
+ {
2
+ "name": "easywork-common-lib",
3
+ "version": "1.0.190",
4
+ "description": "Librería común de Easywork",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "build": "tsc",
8
+ "bump": "./scripts/bump.sh"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/criptopreto/easywork-common-lib.git"
13
+ },
14
+ "keywords": [
15
+ "nodejs"
16
+ ],
17
+ "author": "Rosmer Campos",
18
+ "license": "MIT",
19
+ "bugs": {
20
+ "url": "https://github.com/criptopreto/easywork-common-lib/issues"
21
+ },
22
+ "homepage": "https://github.com/criptopreto/easywork-common-lib#readme",
23
+ "dependencies": {
24
+ "@nestjs/common": "^10.3.8",
25
+ "@nestjs/typeorm": "^10.0.2",
26
+ "class-transformer": "^0.5.1",
27
+ "class-validator": "^0.14.1",
28
+ "rxjs": "^7.8.1",
29
+ "typeorm": "^0.3.20"
30
+ },
31
+ "devDependencies": {
32
+ "@rubiin/tsconfig": "^1.1.2",
33
+ "@types/node": "^20.12.12",
34
+ "ts-loader": "^9.5.1",
35
+ "typescript": "^5.4.5"
36
+ }
37
+ }
package/scripts/bump.sh CHANGED
@@ -1,6 +1,6 @@
1
- git add .
2
- git commit -m "bump version"
3
- git push
4
- npm version patch
5
- yarn build
1
+ git add .
2
+ git commit -m "bump version"
3
+ git push
4
+ npm version patch
5
+ yarn build
6
6
  npm publish
package/test.bat CHANGED
@@ -1,16 +1,16 @@
1
- @echo off
2
- setlocal enabledelayedexpansion
3
-
4
- rem Define the root directory
5
- set "root=C:\Users\ROSME\Documents\GitHub\easywork-common-lib"
6
-
7
- rem Iterate through all directories and subdirectories
8
- for /f "delims=" %%d in ('dir "%root%" /ad /b /s') do (
9
- rem Check if the directory name contains node_modules
10
- echo %%d | findstr /i /c:"\node_modules" >nul
11
- echo %%d | findstr /i /c:"\.git" >nul
12
- if errorlevel 1 (
13
- rem If not, list the directory contents
14
- dir "%%d"
15
- )
1
+ @echo off
2
+ setlocal enabledelayedexpansion
3
+
4
+ rem Define the root directory
5
+ set "root=C:\Users\ROSME\Documents\GitHub\easywork-common-lib"
6
+
7
+ rem Iterate through all directories and subdirectories
8
+ for /f "delims=" %%d in ('dir "%root%" /ad /b /s') do (
9
+ rem Check if the directory name contains node_modules
10
+ echo %%d | findstr /i /c:"\node_modules" >nul
11
+ echo %%d | findstr /i /c:"\.git" >nul
12
+ if errorlevel 1 (
13
+ rem If not, list the directory contents
14
+ dir "%%d"
15
+ )
16
16
  )
@@ -1,4 +1,4 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "exclude": ["node_modules", "test", "dist", "**/*spec.ts", "eslint.config.js"]
4
- }
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "exclude": ["node_modules", "test", "dist", "**/*spec.ts", "eslint.config.js"]
4
+ }
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
+ }