@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 +2 -1
- package/lib/app/app.js +1 -0
- package/package.json +1 -1
- package/src/app/app.ts +2 -1
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
package/src/app/app.ts
CHANGED