qumra-cli 2.4.4 → 2.4.7
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/dist/cli.js +7 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -304366,7 +304366,7 @@ class SectionBuilder {
|
|
|
304366
304366
|
}
|
|
304367
304367
|
}
|
|
304368
304368
|
|
|
304369
|
-
var version$2 = "2.4.
|
|
304369
|
+
var version$2 = "2.4.7";
|
|
304370
304370
|
var pkg = {
|
|
304371
304371
|
version: version$2};
|
|
304372
304372
|
|
|
@@ -360116,6 +360116,9 @@ let ThemeWatcherService = class ThemeWatcherService {
|
|
|
360116
360116
|
variables.input.layout = parsedPage.layout;
|
|
360117
360117
|
variables.input.title = parsedPage.title;
|
|
360118
360118
|
variables.input.widgets = (_a = parsedPage.widgets) !== null && _a !== void 0 ? _a : [];
|
|
360119
|
+
variables.input.allowAdd = parsedPage.allowAdd;
|
|
360120
|
+
variables.input.allowRemove = parsedPage.allowRemove;
|
|
360121
|
+
variables.input.allowReorder = parsedPage.allowReorder;
|
|
360119
360122
|
}
|
|
360120
360123
|
await this.graphql.request(mutation, variables);
|
|
360121
360124
|
}
|
|
@@ -360193,6 +360196,9 @@ let ThemeWatcherService = class ThemeWatcherService {
|
|
|
360193
360196
|
if (parsedSchema.presets)
|
|
360194
360197
|
variables.input.presets = parsedSchema.presets;
|
|
360195
360198
|
variables.input.name = (_b = parsedSchema.name) !== null && _b !== void 0 ? _b : '';
|
|
360199
|
+
variables.input.allowAdd = parsedSchema.allowAdd;
|
|
360200
|
+
variables.input.allowRemove = parsedSchema.allowRemove;
|
|
360201
|
+
variables.input.allowReorder = parsedSchema.allowReorder;
|
|
360196
360202
|
}
|
|
360197
360203
|
await this.graphql.request(mutation, variables);
|
|
360198
360204
|
}
|