@norskvideo/ctl-commands 0.1.10 → 0.1.12
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/commands.d.ts +3 -5
- package/commands.js +1 -3
- package/package.json +1 -1
package/commands.d.ts
CHANGED
|
@@ -230,11 +230,6 @@ export declare const commands: {
|
|
|
230
230
|
readonly opts: ProductPullOpts;
|
|
231
231
|
}>;
|
|
232
232
|
};
|
|
233
|
-
readonly shm: {
|
|
234
|
-
readonly list: LeafCmd<() => {
|
|
235
|
-
readonly kind: "shm.list";
|
|
236
|
-
}>;
|
|
237
|
-
};
|
|
238
233
|
readonly sideload: {
|
|
239
234
|
readonly status: LeafCmd<() => {
|
|
240
235
|
readonly kind: "sideload.status";
|
|
@@ -346,6 +341,9 @@ export declare const commands: {
|
|
|
346
341
|
readonly kind: "user.delete";
|
|
347
342
|
readonly name: string;
|
|
348
343
|
}>;
|
|
344
|
+
readonly list: LeafCmd<() => {
|
|
345
|
+
readonly kind: "user.list";
|
|
346
|
+
}>;
|
|
349
347
|
};
|
|
350
348
|
};
|
|
351
349
|
/** Every leaf in a factory subtree, as a union of its `LeafCmd` types. */
|
package/commands.js
CHANGED
|
@@ -71,9 +71,6 @@ export const commands = {
|
|
|
71
71
|
reload: leaf("product.reload", (name) => ({ kind: "product.reload", name }), "name"),
|
|
72
72
|
pull: leaf("product.pull", (name, opts = {}) => ({ kind: "product.pull", name, opts }), "name"),
|
|
73
73
|
},
|
|
74
|
-
shm: {
|
|
75
|
-
list: leaf("shm.list", () => ({ kind: "shm.list" })),
|
|
76
|
-
},
|
|
77
74
|
sideload: {
|
|
78
75
|
status: leaf("sideload.status", () => ({ kind: "sideload.status" })),
|
|
79
76
|
fetch: leaf("sideload.fetch", (opts = {}) => ({ kind: "sideload.fetch", opts })),
|
|
@@ -110,5 +107,6 @@ export const commands = {
|
|
|
110
107
|
user: {
|
|
111
108
|
set: leaf("user.set", (name, opts) => ({ kind: "user.set", name, opts }), "name"),
|
|
112
109
|
delete: leaf("user.delete", (name) => ({ kind: "user.delete", name }), "name"),
|
|
110
|
+
list: leaf("user.list", () => ({ kind: "user.list" })),
|
|
113
111
|
},
|
|
114
112
|
};
|