@smartsoft001-mobilems/articles-domain 1.0.62 → 2.8.0

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 (33) hide show
  1. package/SMART.md +7 -0
  2. package/package.json +4 -25
  3. package/src/index.d.ts +2 -2
  4. package/src/index.js.map +1 -1
  5. package/src/lib/entities/article.entity.d.ts +8 -8
  6. package/src/lib/entities/article.entity.js +2 -2
  7. package/src/lib/entities/article.entity.js.map +1 -1
  8. package/src/lib/entities/author.entity.d.ts +1 -1
  9. package/src/lib/entities/author.entity.js +2 -2
  10. package/src/lib/entities/author.entity.js.map +1 -1
  11. package/src/lib/entities/copyrights.entity.d.ts +1 -1
  12. package/src/lib/entities/copyrights.entity.js +2 -2
  13. package/src/lib/entities/copyrights.entity.js.map +1 -1
  14. package/src/lib/entities/creator.entity.d.ts +1 -1
  15. package/src/lib/entities/creator.entity.js +2 -2
  16. package/src/lib/entities/creator.entity.js.map +1 -1
  17. package/src/lib/entities/cycle.entity.d.ts +1 -1
  18. package/src/lib/entities/cycle.entity.js +2 -2
  19. package/src/lib/entities/cycle.entity.js.map +1 -1
  20. package/src/lib/entities/index.d.ts +6 -6
  21. package/src/lib/entities/index.js.map +1 -1
  22. package/src/lib/entities/keyword.entity.d.ts +1 -1
  23. package/src/lib/entities/keyword.entity.js +2 -2
  24. package/src/lib/entities/keyword.entity.js.map +1 -1
  25. package/src/lib/value-objects/index.d.ts +1 -1
  26. package/src/lib/value-objects/index.js.map +1 -1
  27. package/src/lib/value-objects/widget.value-object.js.map +1 -1
  28. package/src/test-setup.d.ts +1 -0
  29. package/src/test-setup.js +3 -0
  30. package/src/test-setup.js.map +1 -1
  31. package/src/features.d.ts +0 -1
  32. package/src/features.js +0 -5
  33. package/src/features.js.map +0 -1
package/SMART.md ADDED
@@ -0,0 +1,7 @@
1
+ # shared-<%= projectName %>
2
+
3
+ This library was generated with Smartsoft Framework (smartsoft.biz.pl).
4
+
5
+ ## Running unit tests
6
+
7
+ Run `nx test shared-<%= projectName %>` to execute the unit tests via [Jest](https://jestjs.io).
package/package.json CHANGED
@@ -1,28 +1,7 @@
1
1
  {
2
2
  "name": "@smartsoft001-mobilems/articles-domain",
3
- "version": "1.0.62",
4
- "dependencies": {
5
- "@angular/animations": "15.1.1",
6
- "@angular/common": "15.1.1",
7
- "@angular/compiler": "15.1.1",
8
- "@angular/core": "15.1.1",
9
- "@angular/platform-browser": "15.1.1",
10
- "@angular/platform-browser-dynamic": "15.1.1",
11
- "@smartsoft001/domain-core": "1.1.55",
12
- "@smartsoft001/models": "1.1.55",
13
- "@smartsoft001/users": "1.1.55",
14
- "@smartsoft001/utils": "1.1.55",
15
- "rxjs": "7.5.6",
16
- "tslib": "2.4.1",
17
- "zone.js": "0.11.5"
18
- },
19
- "peerDependencies": {
20
- "@angular-devkit/build-angular": "15.1.2",
21
- "@angular/compiler-cli": "15.1.1",
22
- "jest": "28.1.3",
23
- "typescript": "4.8.4",
24
- "@smartsoft001-mobilems/models": "1.0.62"
25
- },
3
+ "version": "2.8.0",
4
+ "types": "./src/index.d.ts",
26
5
  "main": "./src/index.js",
27
- "types": "./src/index.d.ts"
28
- }
6
+ "type": "commonjs"
7
+ }
package/src/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./lib/entities";
2
- export * from "./lib/value-objects";
1
+ export * from './lib/entities';
2
+ export * from './lib/value-objects';
package/src/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/articles/domain/src/index.ts"],"names":[],"mappings":";;;AAAA,yDAA+B;AAC/B,8DAAoC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/articles/domain/src/index.ts"],"names":[],"mappings":";;;AAAA,yDAA+B;AAC/B,8DAAoC"}
@@ -1,11 +1,11 @@
1
- import { IEntity } from "@smartsoft001/domain-core";
2
- import { MsFile } from "@smartsoft001-mobilems/models";
3
- import { ArticleAuthor } from "./author.entity";
4
- import { ArticleCreator } from "./creator.entity";
5
- import { ArticleKeyword } from "./keyword.entity";
6
- import { ArticleCycle } from "./cycle.entity";
7
- import { ArticleCopyrights } from "./copyrights.entity";
8
- import { ArticleWidget } from "../value-objects";
1
+ import { IEntity } from '@smartsoft001/domain-core';
2
+ import { MsFile } from '@smartsoft001-mobilems/models';
3
+ import { ArticleAuthor } from './author.entity';
4
+ import { ArticleCopyrights } from './copyrights.entity';
5
+ import { ArticleCreator } from './creator.entity';
6
+ import { ArticleCycle } from './cycle.entity';
7
+ import { ArticleKeyword } from './keyword.entity';
8
+ import { ArticleWidget } from '../value-objects';
9
9
  export declare class Article implements IEntity<string> {
10
10
  id: string;
11
11
  title?: string;
@@ -10,6 +10,7 @@ let Article = class Article {
10
10
  this.id = '';
11
11
  }
12
12
  };
13
+ exports.Article = Article;
13
14
  tslib_1.__decorate([
14
15
  (0, models_1.Field)(),
15
16
  tslib_1.__metadata("design:type", String)
@@ -106,8 +107,7 @@ tslib_1.__decorate([
106
107
  (0, models_1.Field)(),
107
108
  tslib_1.__metadata("design:type", models_2.MsFile)
108
109
  ], Article.prototype, "imageMobile", void 0);
109
- Article = tslib_1.__decorate([
110
+ exports.Article = Article = tslib_1.__decorate([
110
111
  (0, models_1.Model)({})
111
112
  ], Article);
112
- exports.Article = Article;
113
113
  //# sourceMappingURL=article.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"article.entity.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/entities/article.entity.ts"],"names":[],"mappings":";;;;AACA,iDAAkD;AAElD,0DAAqD;AAMrD,2DAAsD;AAI/C,IAAM,OAAO,GAAb,MAAM,OAAO;IAAb;QACH,OAAE,GAAG,EAAE,CAAC;IAyEZ,CAAC;CAAA,CAAA;AAvEG;IAAC,IAAA,cAAK,GAAE;;sCACO;AAEf;IAAC,IAAA,cAAK,GAAE;;yCACU;AAElB;IAAC,IAAA,cAAK,GAAE;sCACE,KAAK;wCAAgB;AAE/B;IAAC,IAAA,cAAK,GAAE;sCACG,KAAK;yCAAiB;AAEjC;IAAC,IAAA,cAAK,GAAE;;sCACO;AAEf;IAAC,IAAA,cAAK,GAAE;;6CACe;AAEvB;IAAC,IAAA,cAAK,GAAE;;iDACkB;AAE1B;IAAC,IAAA,cAAK,GAAE;;gDACiB;AAEzB;IAAC,IAAA,cAAK,GAAE;;yCACU;AAElB;IAAC,IAAA,cAAK,GAAE;;6CACc;AAEtB;IAAC,IAAA,cAAK,GAAE;;sCACO;AAEf;IAAC,IAAA,cAAK,GAAE;;2CACY;AAEpB;IAAC,IAAA,cAAK,GAAE;sCACA,eAAM;sCAAC;AAEf;IAAC,IAAA,cAAK,GAAE;;wCACS;AAEjB;IAAC,IAAA,cAAK,GAAE;sCACG,KAAK;yCAAiB;AAEjC;IAAC,IAAA,cAAK,GAAE;sCACC,KAAK;uCAAe;AAE7B;IAAC,IAAA,cAAK,GAAE;sCACK,qCAAiB;2CAAC;AAE/B;IAAC,IAAA,cAAK,GAAE;sCACM,KAAK;4CAAgB;AAEnC;IAAC,IAAA,cAAK,GAAE;sCACO,KAAK;6CAAgB;AAEpC;IAAC,IAAA,cAAK,GAAE;sCACQ,KAAK;8CAAgB;AAErC;IAAC,IAAA,cAAK,GAAE;;yCACU;AAElB;IAAC,IAAA,cAAK,GAAE;sCACO,eAAM;6CAAC;AAEtB;IAAC,IAAA,cAAK,GAAE;sCACM,eAAM;4CAAC;AAErB;IAAC,IAAA,cAAK,GAAE;sCACM,eAAM;4CAAC;AAzEZ,OAAO;IADnB,IAAA,cAAK,EAAC,EAAE,CAAC;GACG,OAAO,CA0EnB;AA1EY,0BAAO"}
1
+ {"version":3,"file":"article.entity.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/entities/article.entity.ts"],"names":[],"mappings":";;;;AACA,iDAAoD;AAEpD,0DAAuD;AAGvD,2DAAwD;AAOjD,IAAM,OAAO,GAAb,MAAM,OAAO;IAAb;QACL,OAAE,GAAG,EAAE,CAAC;IAyEV,CAAC;CAAA,CAAA;AA1EY,0BAAO;AAIlB;IADC,IAAA,cAAK,GAAE;;sCACO;AAGf;IADC,IAAA,cAAK,GAAE;;yCACU;AAGlB;IADC,IAAA,cAAK,GAAE;sCACE,KAAK;wCAAgB;AAG/B;IADC,IAAA,cAAK,GAAE;sCACG,KAAK;yCAAiB;AAGjC;IADC,IAAA,cAAK,GAAE;;sCACO;AAGf;IADC,IAAA,cAAK,GAAE;;6CACe;AAGvB;IADC,IAAA,cAAK,GAAE;;iDACkB;AAG1B;IADC,IAAA,cAAK,GAAE;;gDACiB;AAGzB;IADC,IAAA,cAAK,GAAE;;yCACU;AAGlB;IADC,IAAA,cAAK,GAAE;;6CACc;AAGtB;IADC,IAAA,cAAK,GAAE;;sCACO;AAGf;IADC,IAAA,cAAK,GAAE;;2CACY;AAGpB;IADC,IAAA,cAAK,GAAE;sCACA,eAAM;sCAAC;AAGf;IADC,IAAA,cAAK,GAAE;;wCACS;AAGjB;IADC,IAAA,cAAK,GAAE;sCACG,KAAK;yCAAiB;AAGjC;IADC,IAAA,cAAK,GAAE;sCACC,KAAK;uCAAe;AAG7B;IADC,IAAA,cAAK,GAAE;sCACK,qCAAiB;2CAAC;AAG/B;IADC,IAAA,cAAK,GAAE;sCACM,KAAK;4CAAgB;AAGnC;IADC,IAAA,cAAK,GAAE;sCACO,KAAK;6CAAgB;AAGpC;IADC,IAAA,cAAK,GAAE;sCACQ,KAAK;8CAAgB;AAGrC;IADC,IAAA,cAAK,GAAE;;yCACU;AAGlB;IADC,IAAA,cAAK,GAAE;sCACO,eAAM;6CAAC;AAGtB;IADC,IAAA,cAAK,GAAE;sCACM,eAAM;4CAAC;AAGrB;IADC,IAAA,cAAK,GAAE;sCACM,eAAM;4CAAC;kBAzEV,OAAO;IADnB,IAAA,cAAK,EAAC,EAAE,CAAC;GACG,OAAO,CA0EnB"}
@@ -1,4 +1,4 @@
1
- import { IEntity } from "@smartsoft001/domain-core";
1
+ import { IEntity } from '@smartsoft001/domain-core';
2
2
  export declare class ArticleAuthor implements IEntity<number> {
3
3
  id: number;
4
4
  name?: string;
@@ -8,12 +8,12 @@ let ArticleAuthor = class ArticleAuthor {
8
8
  this.id = 0;
9
9
  }
10
10
  };
11
+ exports.ArticleAuthor = ArticleAuthor;
11
12
  tslib_1.__decorate([
12
13
  (0, models_1.Field)(),
13
14
  tslib_1.__metadata("design:type", String)
14
15
  ], ArticleAuthor.prototype, "name", void 0);
15
- ArticleAuthor = tslib_1.__decorate([
16
+ exports.ArticleAuthor = ArticleAuthor = tslib_1.__decorate([
16
17
  (0, models_1.Model)()
17
18
  ], ArticleAuthor);
18
- exports.ArticleAuthor = ArticleAuthor;
19
19
  //# sourceMappingURL=author.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"author.entity.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/entities/author.entity.ts"],"names":[],"mappings":";;;;AAAA,iDAAkD;AAI3C,IAAM,aAAa,GAAnB,MAAM,aAAa;IAAnB;QACH,OAAE,GAAG,CAAC,CAAC;IAIX,CAAC;CAAA,CAAA;AAFG;IAAC,IAAA,cAAK,GAAE;;2CACM;AAJL,aAAa;IADzB,IAAA,cAAK,GAAE;GACK,aAAa,CAKzB;AALY,sCAAa"}
1
+ {"version":3,"file":"author.entity.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/entities/author.entity.ts"],"names":[],"mappings":";;;;AACA,iDAAoD;AAG7C,IAAM,aAAa,GAAnB,MAAM,aAAa;IAAnB;QACL,OAAE,GAAG,CAAC,CAAC;IAIT,CAAC;CAAA,CAAA;AALY,sCAAa;AAIxB;IADC,IAAA,cAAK,GAAE;;2CACM;wBAJH,aAAa;IADzB,IAAA,cAAK,GAAE;GACK,aAAa,CAKzB"}
@@ -1,4 +1,4 @@
1
- import { IEntity } from "@smartsoft001/domain-core";
1
+ import { IEntity } from '@smartsoft001/domain-core';
2
2
  export declare class ArticleCopyrights implements IEntity<number> {
3
3
  id: number;
4
4
  name?: string;
@@ -8,6 +8,7 @@ let ArticleCopyrights = class ArticleCopyrights {
8
8
  this.id = 0;
9
9
  }
10
10
  };
11
+ exports.ArticleCopyrights = ArticleCopyrights;
11
12
  tslib_1.__decorate([
12
13
  (0, models_1.Field)(),
13
14
  tslib_1.__metadata("design:type", String)
@@ -28,8 +29,7 @@ tslib_1.__decorate([
28
29
  (0, models_1.Field)(),
29
30
  tslib_1.__metadata("design:type", String)
30
31
  ], ArticleCopyrights.prototype, "description", void 0);
31
- ArticleCopyrights = tslib_1.__decorate([
32
+ exports.ArticleCopyrights = ArticleCopyrights = tslib_1.__decorate([
32
33
  (0, models_1.Model)()
33
34
  ], ArticleCopyrights);
34
- exports.ArticleCopyrights = ArticleCopyrights;
35
35
  //# sourceMappingURL=copyrights.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"copyrights.entity.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/entities/copyrights.entity.ts"],"names":[],"mappings":";;;;AAAA,iDAAkD;AAI3C,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;IAAvB;QACH,OAAE,GAAG,CAAC,CAAC;IAgBX,CAAC;CAAA,CAAA;AAdG;IAAC,IAAA,cAAK,GAAE;;+CACM;AAEd;IAAC,IAAA,cAAK,GAAE;;gDACO;AAEf;IAAC,IAAA,cAAK,GAAE;;+CACM;AAEd;IAAC,IAAA,cAAK,GAAE;;qDACa;AAErB;IAAC,IAAA,cAAK,GAAE;;sDACa;AAhBZ,iBAAiB;IAD7B,IAAA,cAAK,GAAE;GACK,iBAAiB,CAiB7B;AAjBY,8CAAiB"}
1
+ {"version":3,"file":"copyrights.entity.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/entities/copyrights.entity.ts"],"names":[],"mappings":";;;;AACA,iDAAoD;AAG7C,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;IAAvB;QACL,OAAE,GAAG,CAAC,CAAC;IAgBT,CAAC;CAAA,CAAA;AAjBY,8CAAiB;AAI5B;IADC,IAAA,cAAK,GAAE;;+CACM;AAGd;IADC,IAAA,cAAK,GAAE;;gDACO;AAGf;IADC,IAAA,cAAK,GAAE;;+CACM;AAGd;IADC,IAAA,cAAK,GAAE;;qDACa;AAGrB;IADC,IAAA,cAAK,GAAE;;sDACa;4BAhBV,iBAAiB;IAD7B,IAAA,cAAK,GAAE;GACK,iBAAiB,CAiB7B"}
@@ -1,4 +1,4 @@
1
- import { IEntity } from "@smartsoft001/domain-core";
1
+ import { IEntity } from '@smartsoft001/domain-core';
2
2
  export declare class ArticleCreator implements IEntity<number> {
3
3
  id: number;
4
4
  name?: string;
@@ -8,12 +8,12 @@ let ArticleCreator = class ArticleCreator {
8
8
  this.id = 0;
9
9
  }
10
10
  };
11
+ exports.ArticleCreator = ArticleCreator;
11
12
  tslib_1.__decorate([
12
13
  (0, models_1.Field)(),
13
14
  tslib_1.__metadata("design:type", String)
14
15
  ], ArticleCreator.prototype, "name", void 0);
15
- ArticleCreator = tslib_1.__decorate([
16
+ exports.ArticleCreator = ArticleCreator = tslib_1.__decorate([
16
17
  (0, models_1.Model)()
17
18
  ], ArticleCreator);
18
- exports.ArticleCreator = ArticleCreator;
19
19
  //# sourceMappingURL=creator.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"creator.entity.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/entities/creator.entity.ts"],"names":[],"mappings":";;;;AAAA,iDAAkD;AAI3C,IAAM,cAAc,GAApB,MAAM,cAAc;IAApB;QACH,OAAE,GAAG,CAAC,CAAC;IAIX,CAAC;CAAA,CAAA;AAFG;IAAC,IAAA,cAAK,GAAE;;4CACM;AAJL,cAAc;IAD1B,IAAA,cAAK,GAAE;GACK,cAAc,CAK1B;AALY,wCAAc"}
1
+ {"version":3,"file":"creator.entity.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/entities/creator.entity.ts"],"names":[],"mappings":";;;;AACA,iDAAoD;AAG7C,IAAM,cAAc,GAApB,MAAM,cAAc;IAApB;QACL,OAAE,GAAG,CAAC,CAAC;IAIT,CAAC;CAAA,CAAA;AALY,wCAAc;AAIzB;IADC,IAAA,cAAK,GAAE;;4CACM;yBAJH,cAAc;IAD1B,IAAA,cAAK,GAAE;GACK,cAAc,CAK1B"}
@@ -1,4 +1,4 @@
1
- import { IEntity } from "@smartsoft001/domain-core";
1
+ import { IEntity } from '@smartsoft001/domain-core';
2
2
  export declare class ArticleCycle implements IEntity<number> {
3
3
  id: number;
4
4
  name?: string;
@@ -8,12 +8,12 @@ let ArticleCycle = class ArticleCycle {
8
8
  this.id = 0;
9
9
  }
10
10
  };
11
+ exports.ArticleCycle = ArticleCycle;
11
12
  tslib_1.__decorate([
12
13
  (0, models_1.Field)(),
13
14
  tslib_1.__metadata("design:type", String)
14
15
  ], ArticleCycle.prototype, "name", void 0);
15
- ArticleCycle = tslib_1.__decorate([
16
+ exports.ArticleCycle = ArticleCycle = tslib_1.__decorate([
16
17
  (0, models_1.Model)()
17
18
  ], ArticleCycle);
18
- exports.ArticleCycle = ArticleCycle;
19
19
  //# sourceMappingURL=cycle.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"cycle.entity.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/entities/cycle.entity.ts"],"names":[],"mappings":";;;;AAAA,iDAAkD;AAI3C,IAAM,YAAY,GAAlB,MAAM,YAAY;IAAlB;QACH,OAAE,GAAG,CAAC,CAAC;IAIX,CAAC;CAAA,CAAA;AAFG;IAAC,IAAA,cAAK,GAAE;;0CACM;AAJL,YAAY;IADxB,IAAA,cAAK,GAAE;GACK,YAAY,CAKxB;AALY,oCAAY"}
1
+ {"version":3,"file":"cycle.entity.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/entities/cycle.entity.ts"],"names":[],"mappings":";;;;AACA,iDAAoD;AAG7C,IAAM,YAAY,GAAlB,MAAM,YAAY;IAAlB;QACL,OAAE,GAAG,CAAC,CAAC;IAIT,CAAC;CAAA,CAAA;AALY,oCAAY;AAIvB;IADC,IAAA,cAAK,GAAE;;0CACM;uBAJH,YAAY;IADxB,IAAA,cAAK,GAAE;GACK,YAAY,CAKxB"}
@@ -1,6 +1,6 @@
1
- export * from "./article.entity";
2
- export * from "./author.entity";
3
- export * from "./creator.entity";
4
- export * from "./keyword.entity";
5
- export * from "./cycle.entity";
6
- export * from "./copyrights.entity";
1
+ export * from './article.entity';
2
+ export * from './author.entity';
3
+ export * from './creator.entity';
4
+ export * from './keyword.entity';
5
+ export * from './cycle.entity';
6
+ export * from './copyrights.entity';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/entities/index.ts"],"names":[],"mappings":";;;AAAA,2DAAiC;AACjC,0DAAgC;AAChC,2DAAiC;AACjC,2DAAiC;AACjC,yDAA+B;AAC/B,8DAAoC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/entities/index.ts"],"names":[],"mappings":";;;AAAA,2DAAiC;AACjC,0DAAgC;AAChC,2DAAiC;AACjC,2DAAiC;AACjC,yDAA+B;AAC/B,8DAAoC"}
@@ -1,4 +1,4 @@
1
- import { IEntity } from "@smartsoft001/domain-core";
1
+ import { IEntity } from '@smartsoft001/domain-core';
2
2
  export declare class ArticleKeyword implements IEntity<number> {
3
3
  id: number;
4
4
  name?: string;
@@ -8,12 +8,12 @@ let ArticleKeyword = class ArticleKeyword {
8
8
  this.id = 0;
9
9
  }
10
10
  };
11
+ exports.ArticleKeyword = ArticleKeyword;
11
12
  tslib_1.__decorate([
12
13
  (0, models_1.Field)(),
13
14
  tslib_1.__metadata("design:type", String)
14
15
  ], ArticleKeyword.prototype, "name", void 0);
15
- ArticleKeyword = tslib_1.__decorate([
16
+ exports.ArticleKeyword = ArticleKeyword = tslib_1.__decorate([
16
17
  (0, models_1.Model)()
17
18
  ], ArticleKeyword);
18
- exports.ArticleKeyword = ArticleKeyword;
19
19
  //# sourceMappingURL=keyword.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"keyword.entity.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/entities/keyword.entity.ts"],"names":[],"mappings":";;;;AAAA,iDAAkD;AAI3C,IAAM,cAAc,GAApB,MAAM,cAAc;IAApB;QACH,OAAE,GAAG,CAAC,CAAC;IAIX,CAAC;CAAA,CAAA;AAFG;IAAC,IAAA,cAAK,GAAE;;4CACM;AAJL,cAAc;IAD1B,IAAA,cAAK,GAAE;GACK,cAAc,CAK1B;AALY,wCAAc"}
1
+ {"version":3,"file":"keyword.entity.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/entities/keyword.entity.ts"],"names":[],"mappings":";;;;AACA,iDAAoD;AAG7C,IAAM,cAAc,GAApB,MAAM,cAAc;IAApB;QACL,OAAE,GAAG,CAAC,CAAC;IAIT,CAAC;CAAA,CAAA;AALY,wCAAc;AAIzB;IADC,IAAA,cAAK,GAAE;;4CACM;yBAJH,cAAc;IAD1B,IAAA,cAAK,GAAE;GACK,cAAc,CAK1B"}
@@ -1 +1 @@
1
- export * from "./widget.value-object";
1
+ export * from './widget.value-object';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/value-objects/index.ts"],"names":[],"mappings":";;;AAAA,gEAAsC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/value-objects/index.ts"],"names":[],"mappings":";;;AAAA,gEAAsC"}
@@ -1 +1 @@
1
- {"version":3,"file":"widget.value-object.js","sourceRoot":"","sources":["../../../../../../../libs/articles/domain/src/lib/value-objects/widget.value-object.ts"],"names":[],"mappings":";;;AAAA,MAAa,aAAa;IACtB,YACoB,QAAgB,EAChB,IAAY,EACZ,IAAS;QAFT,aAAQ,GAAR,QAAQ,CAAQ;QAChB,SAAI,GAAJ,IAAI,CAAQ;QACZ,SAAI,GAAJ,IAAI,CAAK;IACzB,CAAC;CACR;AAND,sCAMC"}
1
+ {"version":3,"file":"widget.value-object.js","sourceRoot":"","sources":["../../../../../../../packages/articles/domain/src/lib/value-objects/widget.value-object.ts"],"names":[],"mappings":";;;AAAA,MAAa,aAAa;IACxB,YACkB,QAAgB,EAChB,IAAY,EACZ,IAAS;QAFT,aAAQ,GAAR,QAAQ,CAAQ;QAChB,SAAI,GAAJ,IAAI,CAAQ;QACZ,SAAI,GAAJ,IAAI,CAAK;IACxB,CAAC;CACL;AAND,sCAMC"}
@@ -0,0 +1 @@
1
+ import 'jest-preset-angular';
package/src/test-setup.js CHANGED
@@ -1 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ require("jest-preset-angular");
1
4
  //# sourceMappingURL=test-setup.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"test-setup.js","sourceRoot":"","sources":["../../../../../libs/articles/domain/src/test-setup.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"test-setup.js","sourceRoot":"","sources":["../../../../../packages/articles/domain/src/test-setup.ts"],"names":[],"mappings":";;AAAA,+BAA6B"}
package/src/features.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare const DOMAIN_SERVICES: any[];
package/src/features.js DELETED
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DOMAIN_SERVICES = void 0;
4
- exports.DOMAIN_SERVICES = [];
5
- //# sourceMappingURL=features.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"features.js","sourceRoot":"","sources":["../../../../../libs/articles/domain/src/features.ts"],"names":[],"mappings":";;;AAAa,QAAA,eAAe,GAAG,EAAE,CAAC"}