@bprotsyk/aso-core 2.0.46 → 2.0.47

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
@@ -35,7 +35,6 @@ export interface IExternalParams {
35
35
  showButton: boolean;
36
36
  schema: string;
37
37
  autoRedirect: boolean;
38
- repeatAutoRedirect: boolean;
39
38
  }
40
39
  export interface IRemoteServerParams {
41
40
  ip: string;
@@ -161,7 +160,6 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
161
160
  schema?: string | undefined;
162
161
  showButton?: boolean | undefined;
163
162
  autoRedirect?: boolean | undefined;
164
- repeatAutoRedirect?: boolean | undefined;
165
163
  } | undefined;
166
164
  generationOptions?: {
167
165
  splashName?: string | undefined;
package/lib/app/app.js CHANGED
@@ -74,7 +74,6 @@ exports.AppSchema = new mongoose_1.Schema({
74
74
  showButton: Boolean,
75
75
  schema: String,
76
76
  autoRedirect: Boolean,
77
- repeatAutoRedirect: Boolean
78
77
  },
79
78
  integrationVersion: {
80
79
  type: String,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.0.46",
3
+ "version": "2.0.47",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -44,7 +44,6 @@ export interface IExternalParams {
44
44
  showButton: boolean;
45
45
  schema: string;
46
46
  autoRedirect: boolean;
47
- repeatAutoRedirect:boolean;
48
47
  }
49
48
 
50
49
  export interface IRemoteServerParams {
@@ -218,7 +217,6 @@ export const AppSchema = new Schema({
218
217
  showButton: Boolean,
219
218
  schema: String,
220
219
  autoRedirect: Boolean,
221
- repeatAutoRedirect:Boolean
222
220
  },
223
221
 
224
222
  integrationVersion: {