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