Skip to content

Commit 8efa5c3

Browse files
author
Automated Version Bump
committed
ci: version bump to v0.3.18
1 parent 8f0ef17 commit 8efa5c3

4 files changed

Lines changed: 54 additions & 25 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cycleplatform/api-client-typescript",
3-
"version": "0.3.17",
3+
"version": "0.3.18",
44
"description": "A Cycle API client for the web/nodejs with type safety.",
55
"main": "./dist/index.umd.cjs",
66
"module": "./dist/index.js",

src/generated/types.ts

Lines changed: 50 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14188,30 +14188,32 @@ export interface components {
1418814188
price: components["schemas"]["BillingAmount"];
1418914189
};
1419014190
/**
14191-
* ExternalVolumeAttachAction
14192-
* @description A task to attach an external volume.
14191+
* ExternalVolumeIncludes
14192+
* @description All includable resources linked to the given external volume.
1419314193
*/
14194-
ExternalVolumeAttachAction: {
14195-
/**
14196-
* @description The name of the action to perform (attach). (enum property replaced by openapi-typescript)
14197-
* @enum {string}
14198-
*/
14199-
action: "attach";
14200-
contents: components["schemas"]["ExternalVolumeAttachment"];
14194+
ExternalVolumeIncludes: {
14195+
servers?: {
14196+
[key: string]: components["schemas"]["Server"];
14197+
};
14198+
locations?: {
14199+
[key: string]: components["schemas"]["ProviderLocation"];
14200+
};
1420114201
};
1420214202
/**
14203-
* ExternalVolumeDetachAction
14204-
* @description A task to detach an external volume from an instance.
14203+
* ExternalVolumeServersReconfigureAction
14204+
* @description A task to reconfigure mountable destination servers for external volume.
1420514205
*/
14206-
ExternalVolumeDetachAction: {
14206+
ExternalVolumeServersReconfigureAction: {
1420714207
/**
14208-
* @description The name of the action to perform (detach). (enum property replaced by openapi-typescript)
14208+
* @description The name of the action to perform (servers.reconfigure). (enum property replaced by openapi-typescript)
1420914209
* @enum {string}
1421014210
*/
14211-
action: "detach";
14211+
action: "servers.reconfigure";
14212+
/** @description Contents contains an array of server ids to set as mountable destinations for the external volume. */
14213+
contents?: components["schemas"]["ID"][];
1421214214
};
1421314215
/** ExternalVolumeTask */
14214-
ExternalVolumeTasks: components["schemas"]["ExternalVolumeAttachAction"] | components["schemas"]["ExternalVolumeDetachAction"];
14216+
ExternalVolumeTask: components["schemas"]["ExternalVolumeServersReconfigureAction"];
1421514217
/**
1421614218
* ServerModelsIncludes
1421714219
* @description A resource associated with a server models.
@@ -20994,6 +20996,11 @@ export interface operations {
2099420996
query?: {
2099520997
/** @description A comma separated list of meta values. Meta values will show up under a resource's `meta` field. In the case of applying a meta to a collection of resources, each resource will have it's own relevant meta data. In some rare cases, meta may not apply to individual resources, and may appear in the root document. These will be clearly labeled. */
2099620998
meta?: "containers"[];
20999+
/**
21000+
* @description A comma-separated list of include values. Included resources will show up under the root document's `include` field.
21001+
* In the case of applying an include to a collection of resources, if multiple resources share the same include, it will only appear once in the return.
21002+
*/
21003+
include?: ("servers" | "locations")[];
2099721004
/**
2099821005
* @description ## Filter Field
2099921006
* The filter field is a key-value object, where the key is what you would like to filter, and the value is the value you're filtering for.
@@ -21027,9 +21034,7 @@ export interface operations {
2102721034
content: {
2102821035
"application/json": {
2102921036
data: components["schemas"]["ExternalVolume"][];
21030-
includes?: {
21031-
creators?: components["schemas"]["CreatorInclude"];
21032-
};
21037+
includes?: components["schemas"]["ExternalVolumeIncludes"];
2103321038
};
2103421039
};
2103521040
};
@@ -21038,7 +21043,15 @@ export interface operations {
2103821043
};
2103921044
createExternalVolume: {
2104021045
parameters: {
21041-
query?: never;
21046+
query?: {
21047+
/** @description A comma separated list of meta values. Meta values will show up under a resource's `meta` field. In the case of applying a meta to a collection of resources, each resource will have it's own relevant meta data. In some rare cases, meta may not apply to individual resources, and may appear in the root document. These will be clearly labeled. */
21048+
meta?: "containers"[];
21049+
/**
21050+
* @description A comma-separated list of include values. Included resources will show up under the root document's `include` field.
21051+
* In the case of applying an include to a collection of resources, if multiple resources share the same include, it will only appear once in the return.
21052+
*/
21053+
include?: ("servers" | "locations")[];
21054+
};
2104221055
header?: never;
2104321056
path?: never;
2104421057
cookie?: never;
@@ -21074,6 +21087,7 @@ export interface operations {
2107421087
content: {
2107521088
"application/json": {
2107621089
data: components["schemas"]["ExternalVolume"];
21090+
includes?: components["schemas"]["ExternalVolumeIncludes"];
2107721091
};
2107821092
};
2107921093
};
@@ -21089,6 +21103,11 @@ export interface operations {
2108921103
* In some rare cases, meta may not apply to individual resources, and may appear in the root document. These will be clearly labeled.
2109021104
*/
2109121105
meta?: "containers"[];
21106+
/**
21107+
* @description A comma-separated list of include values. Included resources will show up under the root document's `include` field.
21108+
* In the case of applying an include to a collection of resources, if multiple resources share the same include, it will only appear once in the return.
21109+
*/
21110+
include?: ("servers" | "locations")[];
2109221111
};
2109321112
header?: never;
2109421113
path: {
@@ -21107,6 +21126,7 @@ export interface operations {
2110721126
content: {
2110821127
"application/json": {
2110921128
data: components["schemas"]["ExternalVolume"];
21129+
includes?: components["schemas"]["ExternalVolumeIncludes"];
2111021130
};
2111121131
};
2111221132
};
@@ -21151,7 +21171,15 @@ export interface operations {
2115121171
};
2115221172
updateExternalVolume: {
2115321173
parameters: {
21154-
query?: never;
21174+
query?: {
21175+
/** @description A comma separated list of meta values. Meta values will show up under a resource's `meta` field. In the case of applying a meta to a collection of resources, each resource will have it's own relevant meta data. In some rare cases, meta may not apply to individual resources, and may appear in the root document. These will be clearly labeled. */
21176+
meta?: "containers"[];
21177+
/**
21178+
* @description A comma-separated list of include values. Included resources will show up under the root document's `include` field.
21179+
* In the case of applying an include to a collection of resources, if multiple resources share the same include, it will only appear once in the return.
21180+
*/
21181+
include?: ("servers" | "locations")[];
21182+
};
2115521183
header?: never;
2115621184
path: {
2115721185
/** @description The ID of the external volume. */
@@ -21184,6 +21212,7 @@ export interface operations {
2118421212
content: {
2118521213
"application/json": {
2118621214
data: components["schemas"]["ExternalVolume"];
21215+
includes?: components["schemas"]["ExternalVolumeIncludes"];
2118721216
};
2118821217
};
2118921218
};
@@ -21268,7 +21297,7 @@ export interface operations {
2126821297
/** @description Parameters for creating a new attached volume job. */
2126921298
requestBody?: {
2127021299
content: {
21271-
"application/json": components["schemas"]["ExternalVolumeTasks"];
21300+
"application/json": components["schemas"]["ExternalVolumeTask"];
2127221301
};
2127321302
};
2127421303
responses: {

0 commit comments

Comments
 (0)