@smartsoft001-mobilems/public-collections-domain 1.0.62 → 2.9.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.
- package/SMART.md +7 -0
- package/package.json +4 -27
- package/src/index.d.ts +2 -2
- package/src/index.js.map +1 -1
- package/src/lib/entities/index.js.map +1 -1
- package/src/lib/entities/public-collection.entity.d.ts +1 -1
- package/src/lib/entities/public-collection.entity.js +2 -2
- package/src/lib/entities/public-collection.entity.js.map +1 -1
- package/src/lib/enums/index.js.map +1 -1
- package/src/lib/enums/item-type.enum.js +1 -1
- package/src/lib/enums/item-type.enum.js.map +1 -1
- package/src/test-setup.d.ts +1 -0
- package/src/test-setup.js +3 -0
- package/src/test-setup.js.map +1 -1
- package/src/features.d.ts +0 -1
- package/src/features.js +0 -5
- package/src/features.js.map +0 -1
package/SMART.md
ADDED
package/package.json
CHANGED
|
@@ -1,30 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartsoft001-mobilems/public-collections-domain",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
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
|
-
"@smartsoft001-mobilems/articles-domain": "1.0.62",
|
|
26
|
-
"@smartsoft001-mobilems/objects-domain": "1.0.62"
|
|
27
|
-
},
|
|
3
|
+
"version": "2.9.0",
|
|
4
|
+
"types": "./src/index.d.ts",
|
|
28
5
|
"main": "./src/index.js",
|
|
29
|
-
"
|
|
30
|
-
}
|
|
6
|
+
"type": "commonjs"
|
|
7
|
+
}
|
package/src/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from './lib/entities';
|
|
2
|
+
export * from './lib/enums';
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/public-collections/domain/src/index.ts"],"names":[],"mappings":";;;AAAA,yDAA+B;AAC/B,sDAA4B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/public-collections/domain/src/lib/entities/index.ts"],"names":[],"mappings":";;;AAAA,qEAA2C"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IEntity } from "@smartsoft001/domain-core";
|
|
2
|
-
import { MsFile } from "@smartsoft001-mobilems/models";
|
|
3
2
|
import { Article } from "@smartsoft001-mobilems/articles-domain";
|
|
3
|
+
import { MsFile } from "@smartsoft001-mobilems/models";
|
|
4
4
|
import { MsObject } from "@smartsoft001-mobilems/objects-domain";
|
|
5
5
|
import { PublicCollectionItemType } from "../enums";
|
|
6
6
|
export declare class PublicCollection implements IEntity<string> {
|
|
@@ -9,6 +9,7 @@ let PublicCollection = class PublicCollection {
|
|
|
9
9
|
this.id = "";
|
|
10
10
|
}
|
|
11
11
|
};
|
|
12
|
+
exports.PublicCollection = PublicCollection;
|
|
12
13
|
tslib_1.__decorate([
|
|
13
14
|
(0, models_1.Field)(),
|
|
14
15
|
tslib_1.__metadata("design:type", String)
|
|
@@ -41,8 +42,7 @@ tslib_1.__decorate([
|
|
|
41
42
|
(0, models_1.Field)(),
|
|
42
43
|
tslib_1.__metadata("design:type", String)
|
|
43
44
|
], PublicCollection.prototype, "fileName", void 0);
|
|
44
|
-
PublicCollection = tslib_1.__decorate([
|
|
45
|
+
exports.PublicCollection = PublicCollection = tslib_1.__decorate([
|
|
45
46
|
(0, models_1.Model)({})
|
|
46
47
|
], PublicCollection);
|
|
47
|
-
exports.PublicCollection = PublicCollection;
|
|
48
48
|
//# sourceMappingURL=public-collection.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-collection.entity.js","sourceRoot":"","sources":["../../../../../../../
|
|
1
|
+
{"version":3,"file":"public-collection.entity.js","sourceRoot":"","sources":["../../../../../../../packages/public-collections/domain/src/lib/entities/public-collection.entity.ts"],"names":[],"mappings":";;;;AACA,iDAAoD;AAGpD,0DAAuD;AAMhD,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;IAAtB;QACL,OAAE,GAAG,EAAE,CAAC;IA4BV,CAAC;CAAA,CAAA;AA7BY,4CAAgB;AAI3B;IADC,IAAA,cAAK,GAAE;;+CACO;AAGf;IADC,IAAA,cAAK,GAAE;;8CACM;AAGd;IADC,IAAA,cAAK,GAAE;;qDACa;AAGrB;IADC,IAAA,cAAK,GAAE;;gDACQ;AAGhB;IADC,IAAA,cAAK,GAAE;;gDACQ;AAGhB;IADC,IAAA,cAAK,GAAE;sCACA,eAAM;+CAAC;AAGf;IADC,IAAA,cAAK,GAAE;sCACA,KAAK;+CAGX;AAGF;IADC,IAAA,cAAK,GAAE;;kDACU;2BA5BP,gBAAgB;IAD5B,IAAA,cAAK,EAAC,EAAE,CAAC;GACG,gBAAgB,CA6B5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/public-collections/domain/src/lib/enums/index.ts"],"names":[],"mappings":";;;AAAA,2DAAiC"}
|
|
@@ -5,5 +5,5 @@ var PublicCollectionItemType;
|
|
|
5
5
|
(function (PublicCollectionItemType) {
|
|
6
6
|
PublicCollectionItemType[PublicCollectionItemType["object"] = 1] = "object";
|
|
7
7
|
PublicCollectionItemType[PublicCollectionItemType["article"] = 2] = "article";
|
|
8
|
-
})(PublicCollectionItemType
|
|
8
|
+
})(PublicCollectionItemType || (exports.PublicCollectionItemType = PublicCollectionItemType = {}));
|
|
9
9
|
//# sourceMappingURL=item-type.enum.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"item-type.enum.js","sourceRoot":"","sources":["../../../../../../../
|
|
1
|
+
{"version":3,"file":"item-type.enum.js","sourceRoot":"","sources":["../../../../../../../packages/public-collections/domain/src/lib/enums/item-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAChC,2EAAU,CAAA;IACV,6EAAW,CAAA;AACf,CAAC,EAHW,wBAAwB,wCAAxB,wBAAwB,QAGnC"}
|
package/src/test-setup.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import 'jest-preset-angular';
|
package/src/test-setup.js
CHANGED
package/src/test-setup.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-setup.js","sourceRoot":"","sources":["../../../../../
|
|
1
|
+
{"version":3,"file":"test-setup.js","sourceRoot":"","sources":["../../../../../packages/public-collections/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
package/src/features.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"features.js","sourceRoot":"","sources":["../../../../../libs/public-collections/domain/src/features.ts"],"names":[],"mappings":";;;AAAa,QAAA,eAAe,GAAG,EAAE,CAAC"}
|