@webiny/app-utils 5.43.3 → 6.0.0-alpha.1
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/fta/Domain/Models/Meta/Meta.js +13 -28
- package/fta/Domain/Models/Meta/Meta.js.map +1 -1
- package/fta/Domain/Models/Meta/MetaMapper.d.ts +1 -1
- package/fta/Domain/Models/Meta/MetaMapper.js +8 -23
- package/fta/Domain/Models/Meta/MetaMapper.js.map +1 -1
- package/fta/Domain/Models/Meta/index.js +2 -27
- package/fta/Domain/Models/Meta/index.js.map +1 -1
- package/fta/Domain/Models/Sorting/Sorting.js +6 -19
- package/fta/Domain/Models/Sorting/Sorting.js.map +1 -1
- package/fta/Domain/Models/Sorting/SortingMapper.d.ts +1 -1
- package/fta/Domain/Models/Sorting/SortingMapper.js +40 -53
- package/fta/Domain/Models/Sorting/SortingMapper.js.map +1 -1
- package/fta/Domain/Models/Sorting/index.js +2 -27
- package/fta/Domain/Models/Sorting/index.js.map +1 -1
- package/fta/Domain/Models/index.js +2 -27
- package/fta/Domain/Models/index.js.map +1 -1
- package/fta/Domain/Repositories/Loading/ILoadingRepository.d.ts +1 -0
- package/fta/Domain/Repositories/Loading/ILoadingRepository.js +1 -5
- package/fta/Domain/Repositories/Loading/ILoadingRepository.js.map +1 -1
- package/fta/Domain/Repositories/Loading/LoadingRepository.d.ts +3 -1
- package/fta/Domain/Repositories/Loading/LoadingRepository.js +30 -47
- package/fta/Domain/Repositories/Loading/LoadingRepository.js.map +1 -1
- package/fta/Domain/Repositories/Loading/LoadingRepositoryFactory.js +14 -32
- package/fta/Domain/Repositories/Loading/LoadingRepositoryFactory.js.map +1 -1
- package/fta/Domain/Repositories/Loading/index.js +3 -38
- package/fta/Domain/Repositories/Loading/index.js.map +1 -1
- package/fta/Domain/Repositories/Meta/IMetaRepository.d.ts +1 -1
- package/fta/Domain/Repositories/Meta/IMetaRepository.js +1 -5
- package/fta/Domain/Repositories/Meta/IMetaRepository.js.map +1 -1
- package/fta/Domain/Repositories/Meta/MetaRepository.d.ts +2 -2
- package/fta/Domain/Repositories/Meta/MetaRepository.js +38 -59
- package/fta/Domain/Repositories/Meta/MetaRepository.js.map +1 -1
- package/fta/Domain/Repositories/Meta/MetaRepositoryFactory.d.ts +1 -1
- package/fta/Domain/Repositories/Meta/MetaRepositoryFactory.js +14 -32
- package/fta/Domain/Repositories/Meta/MetaRepositoryFactory.js.map +1 -1
- package/fta/Domain/Repositories/Meta/index.js +3 -38
- package/fta/Domain/Repositories/Meta/index.js.map +1 -1
- package/fta/Domain/Repositories/Sorting/ISortingRepository.d.ts +2 -2
- package/fta/Domain/Repositories/Sorting/ISortingRepository.js +1 -5
- package/fta/Domain/Repositories/Sorting/ISortingRepository.js.map +1 -1
- package/fta/Domain/Repositories/Sorting/SortingRepository.d.ts +3 -3
- package/fta/Domain/Repositories/Sorting/SortingRepository.js +12 -28
- package/fta/Domain/Repositories/Sorting/SortingRepository.js.map +1 -1
- package/fta/Domain/Repositories/Sorting/SortingRepositoryFactory.d.ts +2 -2
- package/fta/Domain/Repositories/Sorting/SortingRepositoryFactory.js +14 -32
- package/fta/Domain/Repositories/Sorting/SortingRepositoryFactory.js.map +1 -1
- package/fta/Domain/Repositories/Sorting/index.js +3 -38
- package/fta/Domain/Repositories/Sorting/index.js.map +1 -1
- package/fta/Domain/Repositories/index.js +3 -38
- package/fta/Domain/Repositories/index.js.map +1 -1
- package/fta/Domain/index.js +2 -27
- package/fta/Domain/index.js.map +1 -1
- package/fta/index.js +1 -16
- package/fta/index.js.map +1 -1
- package/index.js +1 -16
- package/index.js.map +1 -1
- package/package.json +4 -4
package/fta/Domain/index.js
CHANGED
|
@@ -1,29 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
var _Models = require("./Models");
|
|
7
|
-
Object.keys(_Models).forEach(function (key) {
|
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
|
9
|
-
if (key in exports && exports[key] === _Models[key]) return;
|
|
10
|
-
Object.defineProperty(exports, key, {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function get() {
|
|
13
|
-
return _Models[key];
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
});
|
|
17
|
-
var _Repositories = require("./Repositories");
|
|
18
|
-
Object.keys(_Repositories).forEach(function (key) {
|
|
19
|
-
if (key === "default" || key === "__esModule") return;
|
|
20
|
-
if (key in exports && exports[key] === _Repositories[key]) return;
|
|
21
|
-
Object.defineProperty(exports, key, {
|
|
22
|
-
enumerable: true,
|
|
23
|
-
get: function get() {
|
|
24
|
-
return _Repositories[key];
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
});
|
|
1
|
+
export * from "./Models";
|
|
2
|
+
export * from "./Repositories";
|
|
28
3
|
|
|
29
4
|
//# sourceMappingURL=index.js.map
|
package/fta/Domain/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./Models\";\nexport * from \"./Repositories\";\n"],"mappings":"AAAA;AACA","ignoreList":[]}
|
package/fta/index.js
CHANGED
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
var _Domain = require("./Domain");
|
|
7
|
-
Object.keys(_Domain).forEach(function (key) {
|
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
|
9
|
-
if (key in exports && exports[key] === _Domain[key]) return;
|
|
10
|
-
Object.defineProperty(exports, key, {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function get() {
|
|
13
|
-
return _Domain[key];
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
});
|
|
1
|
+
export * from "./Domain";
|
|
17
2
|
|
|
18
3
|
//# sourceMappingURL=index.js.map
|
package/fta/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./Domain\";\n"],"mappings":"AAAA","ignoreList":[]}
|
package/index.js
CHANGED
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
var _fta = require("./fta");
|
|
7
|
-
Object.keys(_fta).forEach(function (key) {
|
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
|
9
|
-
if (key in exports && exports[key] === _fta[key]) return;
|
|
10
|
-
Object.defineProperty(exports, key, {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function get() {
|
|
13
|
-
return _fta[key];
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
});
|
|
1
|
+
export * from "./fta";
|
|
17
2
|
|
|
18
3
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./fta\";\n"],"mappings":"AAAA","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-utils",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0-alpha.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"author": "Webiny Ltd.",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@webiny/utils": "
|
|
13
|
+
"@webiny/utils": "6.0.0-alpha.1",
|
|
14
14
|
"mobx": "6.9.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@webiny/project-utils": "
|
|
17
|
+
"@webiny/project-utils": "6.0.0-alpha.1",
|
|
18
18
|
"typescript": "5.3.3"
|
|
19
19
|
},
|
|
20
20
|
"publishConfig": {
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"build": "node ../cli/bin.js run build",
|
|
26
26
|
"watch": "node ../cli/bin.js run watch"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "9bd236cf5e689f209a11bec089207dcc2d41a53c"
|
|
29
29
|
}
|