contensis-cli 1.6.1-beta.13 → 1.6.1-beta.14
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/index.js +17 -2
- package/dist/index.js.map +2 -2
- package/dist/shell.js +17 -2
- package/dist/shell.js.map +2 -2
- package/package.json +1 -1
- package/src/commands/set.ts +19 -1
- package/src/version.ts +1 -1
package/dist/shell.js
CHANGED
|
@@ -46465,7 +46465,7 @@ var progress = {
|
|
|
46465
46465
|
};
|
|
46466
46466
|
|
|
46467
46467
|
// src/version.ts
|
|
46468
|
-
var LIB_VERSION = "1.6.1-beta.
|
|
46468
|
+
var LIB_VERSION = "1.6.1-beta.14";
|
|
46469
46469
|
|
|
46470
46470
|
// src/commands/connect.ts
|
|
46471
46471
|
var import_commander2 = require("commander");
|
|
@@ -57661,6 +57661,20 @@ Example call:
|
|
|
57661
57661
|
).option(
|
|
57662
57662
|
"--entry-languages [entry-languages...]",
|
|
57663
57663
|
"the entry languages to add to the role permissions"
|
|
57664
|
+
).addOption(
|
|
57665
|
+
new import_commander14.Option(
|
|
57666
|
+
"--block-actions [block-actions...]",
|
|
57667
|
+
"the block actions to add to the role permissions"
|
|
57668
|
+
).choices([
|
|
57669
|
+
"push",
|
|
57670
|
+
"release",
|
|
57671
|
+
"manageLive",
|
|
57672
|
+
"manualStartStop",
|
|
57673
|
+
"markAsBroken",
|
|
57674
|
+
"delete",
|
|
57675
|
+
"view",
|
|
57676
|
+
"*"
|
|
57677
|
+
])
|
|
57664
57678
|
).addHelpText(
|
|
57665
57679
|
"after",
|
|
57666
57680
|
`
|
|
@@ -57677,7 +57691,8 @@ Example call:
|
|
|
57677
57691
|
id,
|
|
57678
57692
|
actions: opts.entryActions || [],
|
|
57679
57693
|
languages: opts.entryLanguages || []
|
|
57680
|
-
}))
|
|
57694
|
+
})),
|
|
57695
|
+
blocks: opts.blockActions ? { actions: opts.blockActions } : void 0
|
|
57681
57696
|
}
|
|
57682
57697
|
}
|
|
57683
57698
|
);
|