@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.
@@ -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;
@@ -95,6 +95,11 @@ exports.FlashAppSchema = new mongoose_1.Schema({
95
95
  type: String,
96
96
  required: true
97
97
  },
98
+ paranoidSeed: {
99
+ type: Number,
100
+ unique: true,
101
+ required: true
102
+ },
98
103
  },
99
104
  keitaroData: {
100
105
  redirectCampaignId: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.116",
3
+ "version": "1.2.117",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -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: {