@cycleplatform/api-client-typescript 0.3.5 → 0.3.7

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.5",
3
+ "version": "0.3.7",
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",
@@ -12487,7 +12487,7 @@ export interface components {
12487
12487
  * @description The current state of the pipeline run.
12488
12488
  * @enum {string}
12489
12489
  */
12490
- current: "new" | "queued" | "running" | "deleting" | "deleted";
12490
+ current: "queued" | "acquiring" | "running" | "complete" | "deleting" | "deleted";
12491
12491
  } & components["schemas"]["State"];
12492
12492
  /**
12493
12493
  * PipelineRunEvents
@@ -21037,7 +21037,7 @@ export interface operations {
21037
21037
  };
21038
21038
  };
21039
21039
  responses: {
21040
- /** @description Returns a Job Descriptor. */
21040
+ /** @description Returns a job descriptor. */
21041
21041
  202: {
21042
21042
  headers: {
21043
21043
  [name: string]: unknown;
@@ -21116,14 +21116,14 @@ export interface operations {
21116
21116
  };
21117
21117
  };
21118
21118
  responses: {
21119
- /** @description Returns a Pipeline. */
21120
- 201: {
21119
+ /** @description Returns a job descriptor. */
21120
+ 202: {
21121
21121
  headers: {
21122
21122
  [name: string]: unknown;
21123
21123
  };
21124
21124
  content: {
21125
21125
  "application/json": {
21126
- data: components["schemas"]["Pipeline"];
21126
+ data: components["schemas"]["JobDescriptor"];
21127
21127
  };
21128
21128
  };
21129
21129
  };