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/index.js
CHANGED
|
@@ -46454,7 +46454,7 @@ var progress = {
|
|
|
46454
46454
|
};
|
|
46455
46455
|
|
|
46456
46456
|
// src/version.ts
|
|
46457
|
-
var LIB_VERSION = "1.6.1-beta.
|
|
46457
|
+
var LIB_VERSION = "1.6.1-beta.14";
|
|
46458
46458
|
|
|
46459
46459
|
// src/commands/connect.ts
|
|
46460
46460
|
var import_commander2 = require("commander");
|
|
@@ -57945,6 +57945,20 @@ Example call:
|
|
|
57945
57945
|
).option(
|
|
57946
57946
|
"--entry-languages [entry-languages...]",
|
|
57947
57947
|
"the entry languages to add to the role permissions"
|
|
57948
|
+
).addOption(
|
|
57949
|
+
new import_commander14.Option(
|
|
57950
|
+
"--block-actions [block-actions...]",
|
|
57951
|
+
"the block actions to add to the role permissions"
|
|
57952
|
+
).choices([
|
|
57953
|
+
"push",
|
|
57954
|
+
"release",
|
|
57955
|
+
"manageLive",
|
|
57956
|
+
"manualStartStop",
|
|
57957
|
+
"markAsBroken",
|
|
57958
|
+
"delete",
|
|
57959
|
+
"view",
|
|
57960
|
+
"*"
|
|
57961
|
+
])
|
|
57948
57962
|
).addHelpText(
|
|
57949
57963
|
"after",
|
|
57950
57964
|
`
|
|
@@ -57961,7 +57975,8 @@ Example call:
|
|
|
57961
57975
|
id,
|
|
57962
57976
|
actions: opts.entryActions || [],
|
|
57963
57977
|
languages: opts.entryLanguages || []
|
|
57964
|
-
}))
|
|
57978
|
+
})),
|
|
57979
|
+
blocks: opts.blockActions ? { actions: opts.blockActions } : void 0
|
|
57965
57980
|
}
|
|
57966
57981
|
}
|
|
57967
57982
|
);
|