@norskvideo/ctl-commands 0.1.17 → 0.1.18
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 +4 -0
- package/package.json +1 -1
package/commands.d.ts
CHANGED
|
@@ -73,6 +73,10 @@ export interface ProductAddOpts {
|
|
|
73
73
|
/** BYOL license file path — required unless marketplaceProvider is given. */
|
|
74
74
|
licenseFile?: string;
|
|
75
75
|
marketplaceProvider?: string;
|
|
76
|
+
/** Deploy-time environment for a container product's control plane, each
|
|
77
|
+
* entry a `"KEY=VALUE"` string. Repeatable: renders as `--env A=1 --env B=2`
|
|
78
|
+
* and lands on the persisted container spec. */
|
|
79
|
+
env?: string[];
|
|
76
80
|
}
|
|
77
81
|
export interface ProductPullOpts {
|
|
78
82
|
/** Also fetch the product's CUDA sideload bundles. Opt-in: a host having a GPU
|