@flexbe/sdk 0.2.7 → 0.2.8

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.
@@ -12,5 +12,6 @@ export var PageStatus;
12
12
  (function (PageStatus) {
13
13
  PageStatus["PUBLISHED"] = "published";
14
14
  PageStatus["DRAFTED"] = "drafted";
15
+ PageStatus["REMOVED"] = "removed";
15
16
  PageStatus["DELETED"] = "deleted";
16
17
  })(PageStatus || (PageStatus = {}));
@@ -15,5 +15,6 @@ var PageStatus;
15
15
  (function (PageStatus) {
16
16
  PageStatus["PUBLISHED"] = "published";
17
17
  PageStatus["DRAFTED"] = "drafted";
18
+ PageStatus["REMOVED"] = "removed";
18
19
  PageStatus["DELETED"] = "deleted";
19
20
  })(PageStatus || (exports.PageStatus = PageStatus = {}));
@@ -12,5 +12,6 @@ export var PageStatus;
12
12
  (function (PageStatus) {
13
13
  PageStatus["PUBLISHED"] = "published";
14
14
  PageStatus["DRAFTED"] = "drafted";
15
+ PageStatus["REMOVED"] = "removed";
15
16
  PageStatus["DELETED"] = "deleted";
16
17
  })(PageStatus || (PageStatus = {}));
@@ -60,3 +60,4 @@ export declare class TimeoutException extends Error {
60
60
  readonly statusCode = 408;
61
61
  constructor(message: string | string[]);
62
62
  }
63
+ export type SiteApi = import('../client/site-api').SiteApi;
@@ -40,6 +40,7 @@ export declare enum PageType {
40
40
  export declare enum PageStatus {
41
41
  PUBLISHED = "published",
42
42
  DRAFTED = "drafted",
43
+ REMOVED = "removed",
43
44
  DELETED = "deleted"
44
45
  }
45
46
  export interface Page {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flexbe/sdk",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "TypeScript SDK for Flexbe API",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",