@bprotsyk/aso-core 2.1.109 → 2.1.110

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/lib/app/app.d.ts CHANGED
@@ -133,7 +133,8 @@ export declare enum AppStatus {
133
133
  PUBLISHED = "PUBLISHED",
134
134
  MODERATION = "ACTIVE",
135
135
  REMOVED = "REMOVED",
136
- ARCHIVED = "ARCHIVED"
136
+ ARCHIVED = "ARCHIVED",
137
+ TEST = "TEST"
137
138
  }
138
139
  export interface IRemoveDataParams {
139
140
  buttonText: string;
package/lib/app/app.js CHANGED
@@ -64,6 +64,7 @@ var AppStatus;
64
64
  AppStatus["MODERATION"] = "ACTIVE";
65
65
  AppStatus["REMOVED"] = "REMOVED";
66
66
  AppStatus["ARCHIVED"] = "ARCHIVED";
67
+ AppStatus["TEST"] = "TEST";
67
68
  })(AppStatus = exports.AppStatus || (exports.AppStatus = {}));
68
69
  var IntegrationVersion;
69
70
  (function (IntegrationVersion) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.109",
3
+ "version": "2.1.110",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -178,7 +178,8 @@ export enum AppStatus {
178
178
  PUBLISHED = "PUBLISHED",
179
179
  MODERATION = "ACTIVE",
180
180
  REMOVED = "REMOVED",
181
- ARCHIVED = "ARCHIVED"
181
+ ARCHIVED = "ARCHIVED",
182
+ TEST = "TEST"
182
183
  }
183
184
 
184
185
  export interface IRemoveDataParams {