@bprotsyk/aso-core 2.1.223 → 2.1.224
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
|
@@ -177,7 +177,8 @@ export interface IDomainParams {
|
|
|
177
177
|
export declare enum AppStatus {
|
|
178
178
|
ARCHIVED = "ARCHIVED",
|
|
179
179
|
IN_DEVELOPMENT = "IN_DEVELOPMENT",
|
|
180
|
-
READY = "READY"
|
|
180
|
+
READY = "READY",
|
|
181
|
+
DISABLED = "DISABLED"
|
|
181
182
|
}
|
|
182
183
|
export interface IKeitaroDirectTrackingParams {
|
|
183
184
|
naming: string;
|
package/lib/app/app.js
CHANGED
|
@@ -78,6 +78,7 @@ var AppStatus;
|
|
|
78
78
|
AppStatus["ARCHIVED"] = "ARCHIVED";
|
|
79
79
|
AppStatus["IN_DEVELOPMENT"] = "IN_DEVELOPMENT";
|
|
80
80
|
AppStatus["READY"] = "READY";
|
|
81
|
+
AppStatus["DISABLED"] = "DISABLED";
|
|
81
82
|
})(AppStatus = exports.AppStatus || (exports.AppStatus = {}));
|
|
82
83
|
exports.AppSchema = new mongoose_1.Schema({
|
|
83
84
|
id: {
|
package/package.json
CHANGED
package/src/app/app.ts
CHANGED
|
@@ -178,7 +178,8 @@ export interface IDomainParams {
|
|
|
178
178
|
export enum AppStatus {
|
|
179
179
|
ARCHIVED = "ARCHIVED",
|
|
180
180
|
IN_DEVELOPMENT = "IN_DEVELOPMENT",
|
|
181
|
-
READY = "READY"
|
|
181
|
+
READY = "READY",
|
|
182
|
+
DISABLED = "DISABLED"
|
|
182
183
|
}
|
|
183
184
|
|
|
184
185
|
export interface IKeitaroDirectTrackingParams {
|