@cycleplatform/api-client-typescript 0.3.14 → 0.3.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cycleplatform/api-client-typescript",
3
- "version": "0.3.14",
3
+ "version": "0.3.15",
4
4
  "description": "A Cycle API client for the web/nodejs with type safety.",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.js",
@@ -15115,13 +15115,11 @@ export interface components {
15115
15115
  * @enum {string}
15116
15116
  */
15117
15117
  action: "volumes.reconfigure";
15118
- /** @description An array of volume objects to be reconfigured. */
15118
+ /** @description A map of volume objects where the key is the id and the value is the volume's config.
15119
+ * */
15119
15120
  contents: {
15120
- id: components["schemas"]["ID"];
15121
- /** @description A unique hash for the given volume. */
15122
- hash: string;
15123
- config: components["schemas"]["VirtualMachineVolumeConfig"];
15124
- }[];
15121
+ [key: string]: components["schemas"]["VirtualMachineVolumeConfig"];
15122
+ };
15125
15123
  };
15126
15124
  /** VirtualMachineTask.yml */
15127
15125
  VirtualMachineTask: components["schemas"]["VirtualMachineStartAction"] | components["schemas"]["VirtualMachineStopAction"] | components["schemas"]["VirtualMachineRestartAction"] | components["schemas"]["VirtualMachineReconfigureAction"] | components["schemas"]["VirtualMachineRootPwChangeAction"] | components["schemas"]["VirtualMachineIpAllocateAction"] | components["schemas"]["VirtualMachineIpUnallocateAction"] | components["schemas"]["VirtualMachineReconfigureVolumesAction"];