@uniformdev/canvas 20.55.2 → 20.56.1-alpha.5

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/dist/index.d.mts CHANGED
@@ -1539,6 +1539,8 @@ interface components$q {
1539
1539
  };
1540
1540
  /** @enum {string} */
1541
1541
  ReleaseState: "open" | "locked" | "queued" | "launching" | "launched" | "deleting";
1542
+ /** @enum {string} */
1543
+ ReleaseScheduleState: "scheduled" | "unscheduled";
1542
1544
  ProjectMapNodeAllowedQueryString: {
1543
1545
  /** @description The name of the query string parameter */
1544
1546
  name: string;
@@ -11602,6 +11604,9 @@ interface paths$4 {
11602
11604
  /** @description Matches releases where their state is one of a list
11603
11605
  * */
11604
11606
  states?: components$4["schemas"]["ReleaseState"][];
11607
+ /** @description Matches releases by whether an auto-launch schedule is set
11608
+ * */
11609
+ scheduleStates?: components$4["schemas"]["ReleaseScheduleState"][];
11605
11610
  /** @description Matches releases where their ID is one of a list
11606
11611
  * */
11607
11612
  releaseIDs?: string[];
@@ -11739,6 +11744,8 @@ interface components$4 {
11739
11744
  id: string;
11740
11745
  /** @description The release's display name in the UI */
11741
11746
  name: string;
11747
+ /** @description Optional release description shown in the UI */
11748
+ description?: string;
11742
11749
  state: components$4["schemas"]["ReleaseState"];
11743
11750
  autoLaunchSchedule?: components$4["schemas"]["autoLaunchSchedule"];
11744
11751
  autoLaunchScheduleTimeZone?: components$4["schemas"]["autoLaunchScheduleTimeZone"];
@@ -11753,6 +11760,8 @@ interface components$4 {
11753
11760
  releaseId: string;
11754
11761
  /** @description The release's display name in the UI */
11755
11762
  name: string;
11763
+ /** @description Optional release description shown in the UI */
11764
+ description?: string;
11756
11765
  /**
11757
11766
  * Format: uuid
11758
11767
  * @description The project ID
@@ -11802,6 +11811,8 @@ interface components$4 {
11802
11811
  autoLaunchScheduleTimeZone: string;
11803
11812
  /** @enum {string} */
11804
11813
  ReleaseState: "open" | "locked" | "queued" | "launching" | "launched" | "deleting";
11814
+ /** @enum {string} */
11815
+ ReleaseScheduleState: "scheduled" | "unscheduled";
11805
11816
  Error: {
11806
11817
  /** @description Error message(s) that occurred while processing the request */
11807
11818
  errorMessage?: string[] | string;
@@ -14143,7 +14154,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
14143
14154
  */
14144
14155
  declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
14145
14156
 
14146
- declare const version = "20.55.2";
14157
+ declare const version = "20.56.0";
14147
14158
 
14148
14159
  /** API client to enable managing workflow definitions */
14149
14160
  declare class WorkflowClient extends ApiClient {
package/dist/index.d.ts CHANGED
@@ -1539,6 +1539,8 @@ interface components$q {
1539
1539
  };
1540
1540
  /** @enum {string} */
1541
1541
  ReleaseState: "open" | "locked" | "queued" | "launching" | "launched" | "deleting";
1542
+ /** @enum {string} */
1543
+ ReleaseScheduleState: "scheduled" | "unscheduled";
1542
1544
  ProjectMapNodeAllowedQueryString: {
1543
1545
  /** @description The name of the query string parameter */
1544
1546
  name: string;
@@ -11602,6 +11604,9 @@ interface paths$4 {
11602
11604
  /** @description Matches releases where their state is one of a list
11603
11605
  * */
11604
11606
  states?: components$4["schemas"]["ReleaseState"][];
11607
+ /** @description Matches releases by whether an auto-launch schedule is set
11608
+ * */
11609
+ scheduleStates?: components$4["schemas"]["ReleaseScheduleState"][];
11605
11610
  /** @description Matches releases where their ID is one of a list
11606
11611
  * */
11607
11612
  releaseIDs?: string[];
@@ -11739,6 +11744,8 @@ interface components$4 {
11739
11744
  id: string;
11740
11745
  /** @description The release's display name in the UI */
11741
11746
  name: string;
11747
+ /** @description Optional release description shown in the UI */
11748
+ description?: string;
11742
11749
  state: components$4["schemas"]["ReleaseState"];
11743
11750
  autoLaunchSchedule?: components$4["schemas"]["autoLaunchSchedule"];
11744
11751
  autoLaunchScheduleTimeZone?: components$4["schemas"]["autoLaunchScheduleTimeZone"];
@@ -11753,6 +11760,8 @@ interface components$4 {
11753
11760
  releaseId: string;
11754
11761
  /** @description The release's display name in the UI */
11755
11762
  name: string;
11763
+ /** @description Optional release description shown in the UI */
11764
+ description?: string;
11756
11765
  /**
11757
11766
  * Format: uuid
11758
11767
  * @description The project ID
@@ -11802,6 +11811,8 @@ interface components$4 {
11802
11811
  autoLaunchScheduleTimeZone: string;
11803
11812
  /** @enum {string} */
11804
11813
  ReleaseState: "open" | "locked" | "queued" | "launching" | "launched" | "deleting";
11814
+ /** @enum {string} */
11815
+ ReleaseScheduleState: "scheduled" | "unscheduled";
11805
11816
  Error: {
11806
11817
  /** @description Error message(s) that occurred while processing the request */
11807
11818
  errorMessage?: string[] | string;
@@ -14143,7 +14154,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
14143
14154
  */
14144
14155
  declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
14145
14156
 
14146
- declare const version = "20.55.2";
14157
+ declare const version = "20.56.0";
14147
14158
 
14148
14159
  /** API client to enable managing workflow definitions */
14149
14160
  declare class WorkflowClient extends ApiClient {
package/dist/index.esm.js CHANGED
@@ -3638,7 +3638,7 @@ function handleRichTextNodeBinding(object, options) {
3638
3638
  import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
3639
3639
 
3640
3640
  // src/.version.ts
3641
- var version = "20.55.2";
3641
+ var version = "20.56.0";
3642
3642
 
3643
3643
  // src/WorkflowClient.ts
3644
3644
  import { ApiClient as ApiClient17 } from "@uniformdev/context/api";
package/dist/index.js CHANGED
@@ -3818,7 +3818,7 @@ function handleRichTextNodeBinding(object, options) {
3818
3818
  var import_api19 = require("@uniformdev/context/api");
3819
3819
 
3820
3820
  // src/.version.ts
3821
- var version = "20.55.2";
3821
+ var version = "20.56.0";
3822
3822
 
3823
3823
  // src/WorkflowClient.ts
3824
3824
  var import_api18 = require("@uniformdev/context/api");
package/dist/index.mjs CHANGED
@@ -3638,7 +3638,7 @@ function handleRichTextNodeBinding(object, options) {
3638
3638
  import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
3639
3639
 
3640
3640
  // src/.version.ts
3641
- var version = "20.55.2";
3641
+ var version = "20.56.0";
3642
3642
 
3643
3643
  // src/WorkflowClient.ts
3644
3644
  import { ApiClient as ApiClient17 } from "@uniformdev/context/api";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas",
3
- "version": "20.55.2",
3
+ "version": "20.56.1-alpha.5+1bce2eca70",
4
4
  "description": "Common functionality and types for Uniform Canvas",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -41,9 +41,9 @@
41
41
  "svix": "1.71.0"
42
42
  },
43
43
  "dependencies": {
44
- "@uniformdev/assets": "20.55.2",
45
- "@uniformdev/context": "20.55.2",
46
- "@uniformdev/richtext": "20.55.2",
44
+ "@uniformdev/assets": "20.56.1-alpha.5+1bce2eca70",
45
+ "@uniformdev/context": "20.56.1-alpha.5+1bce2eca70",
46
+ "@uniformdev/richtext": "20.56.1-alpha.5+1bce2eca70",
47
47
  "immer": "10.1.3"
48
48
  },
49
49
  "files": [
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "89324ab1962ec6d849b47d2823f214098cc68a28"
55
+ "gitHead": "1bce2eca70191de304d93909e5cf08740b01fb5a"
56
56
  }