@dotcms/client 0.0.1-alpha.60 → 0.0.1-alpha.61

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/index.cjs.js CHANGED
@@ -1932,6 +1932,7 @@ exports.UVE_MODE = void 0;
1932
1932
  (function (UVE_MODE) {
1933
1933
  UVE_MODE["EDIT"] = "edit";
1934
1934
  UVE_MODE["PREVIEW"] = "preview";
1935
+ UVE_MODE["LIVE"] = "live";
1935
1936
  })(exports.UVE_MODE || (exports.UVE_MODE = {}));
1936
1937
 
1937
1938
  /**
package/index.esm.js CHANGED
@@ -1930,6 +1930,7 @@ var UVE_MODE;
1930
1930
  (function (UVE_MODE) {
1931
1931
  UVE_MODE["EDIT"] = "edit";
1932
1932
  UVE_MODE["PREVIEW"] = "preview";
1933
+ UVE_MODE["LIVE"] = "live";
1933
1934
  })(UVE_MODE || (UVE_MODE = {}));
1934
1935
 
1935
1936
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcms/client",
3
- "version": "0.0.1-alpha.60",
3
+ "version": "0.0.1-alpha.61",
4
4
  "description": "Official JavaScript library for interacting with DotCMS REST APIs.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -62,5 +62,6 @@ export interface ReorderMenuConfig {
62
62
  }
63
63
  export declare enum UVE_MODE {
64
64
  EDIT = "edit",
65
- PREVIEW = "preview"
65
+ PREVIEW = "preview",
66
+ LIVE = "live"
66
67
  }