@appsemble/node-utils 0.32.1-test.15 → 0.32.1-test.16
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/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
#  Appsemble Node Utilities
|
|
2
2
|
|
|
3
3
|
> NodeJS utilities used by Appsemble internally.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@appsemble/node-utils)
|
|
6
|
-
[](https://gitlab.com/appsemble/appsemble/-/releases/0.32.1-test.16)
|
|
7
7
|
[](https://prettier.io)
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
@@ -26,5 +26,5 @@ compatibility is not guaranteed.
|
|
|
26
26
|
|
|
27
27
|
## License
|
|
28
28
|
|
|
29
|
-
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.32.1-test.
|
|
29
|
+
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.32.1-test.16/LICENSE.md) ©
|
|
30
30
|
[Appsemble](https://appsemble.com)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appsemble/node-utils",
|
|
3
|
-
"version": "0.32.1-test.
|
|
3
|
+
"version": "0.32.1-test.16",
|
|
4
4
|
"description": "NodeJS utilities used by Appsemble internally.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"test": "vitest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@appsemble/types": "0.32.1-test.
|
|
44
|
-
"@appsemble/utils": "0.32.1-test.
|
|
43
|
+
"@appsemble/types": "0.32.1-test.16",
|
|
44
|
+
"@appsemble/utils": "0.32.1-test.16",
|
|
45
45
|
"@formatjs/fast-memoize": "^2.0.0",
|
|
46
46
|
"@fortawesome/fontawesome-free": "^6.0.0",
|
|
47
47
|
"@kubernetes/client-node": "^0.22.2",
|
|
@@ -72,7 +72,6 @@ export function createCreateAppResourceController(options) {
|
|
|
72
72
|
preparedAssets: preparedSeedAssets,
|
|
73
73
|
resourceType,
|
|
74
74
|
options,
|
|
75
|
-
positioning: resourceDefinition.positioning,
|
|
76
75
|
});
|
|
77
76
|
if (!app.demoMode) {
|
|
78
77
|
ctx.body = Array.isArray(processedBody) ? createdSeedResources : createdSeedResources[0];
|
package/server/types.d.ts
CHANGED
|
@@ -269,7 +269,6 @@ export interface CreateAppResourcesWithAssetsParams extends GetAppSubEntityParam
|
|
|
269
269
|
resourceType: string;
|
|
270
270
|
options: Options;
|
|
271
271
|
groupId?: number;
|
|
272
|
-
positioning?: boolean;
|
|
273
272
|
}
|
|
274
273
|
export interface UpdateAppResourceParams extends GetAppSubEntityParams {
|
|
275
274
|
id: number | string;
|