@bprotsyk/aso-core 1.2.116 → 1.2.117
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/flash/flash-app.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export interface IAppGenerationOptions {
|
|
|
47
47
|
webViewName: string;
|
|
48
48
|
linkName: string;
|
|
49
49
|
savedName: string;
|
|
50
|
+
paranoidSeed: number;
|
|
50
51
|
}
|
|
51
52
|
export interface IAppKeitaroData {
|
|
52
53
|
redirectCampaignId: number;
|
|
@@ -89,6 +90,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
89
90
|
webViewName: string;
|
|
90
91
|
linkName: string;
|
|
91
92
|
savedName: string;
|
|
93
|
+
paranoidSeed: number;
|
|
92
94
|
} | undefined;
|
|
93
95
|
keitaroData?: {
|
|
94
96
|
redirectCampaignId: number;
|
package/lib/flash/flash-app.js
CHANGED
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -56,6 +56,7 @@ export interface IAppGenerationOptions {
|
|
|
56
56
|
webViewName: string
|
|
57
57
|
linkName:string,
|
|
58
58
|
savedName: string,
|
|
59
|
+
paranoidSeed: number
|
|
59
60
|
}
|
|
60
61
|
|
|
61
62
|
export interface IAppKeitaroData {
|
|
@@ -159,6 +160,11 @@ export const FlashAppSchema = new Schema({
|
|
|
159
160
|
type: String,
|
|
160
161
|
required: true
|
|
161
162
|
},
|
|
163
|
+
paranoidSeed: {
|
|
164
|
+
type: Number,
|
|
165
|
+
unique: true,
|
|
166
|
+
required: true
|
|
167
|
+
},
|
|
162
168
|
},
|
|
163
169
|
|
|
164
170
|
keitaroData: {
|