@norskvideo/ctl-commands 0.1.11 → 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 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";
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 })),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norskvideo/ctl-commands",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {