@bprotsyk/aso-core 1.2.126 → 1.2.128

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.
@@ -20,6 +20,7 @@ export interface IFlashApp extends Document {
20
20
  onesignalAppId: string;
21
21
  onesignalRestApiKey: string;
22
22
  domain: string;
23
+ linkPath: string;
23
24
  developerName: string;
24
25
  developerEmail: string;
25
26
  developerOrganization: string;
@@ -31,10 +32,11 @@ export interface IFlashApp extends Document {
31
32
  privacyPolicyParams?: IPrivacyPolicyParams;
32
33
  }
33
34
  export interface IRemoveDataParams {
34
- titleSuffix?: string;
35
- buttonText?: string;
36
- resultText?: string;
37
- inputHint?: string;
35
+ appName: string;
36
+ buttonText: string;
37
+ resultText: string;
38
+ errorText: string;
39
+ inputHint: string;
38
40
  }
39
41
  export interface IPrivacyPolicyParams {
40
42
  callbackMethodName: string;
@@ -104,6 +106,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
104
106
  removeDataParams?: any;
105
107
  policyUrl?: string | undefined;
106
108
  domain?: string | undefined;
109
+ linkPath?: string | undefined;
107
110
  generationOptions?: {
108
111
  splashName: string;
109
112
  webViewName: string;
@@ -64,6 +64,9 @@ exports.FlashAppSchema = new mongoose_1.Schema({
64
64
  domain: {
65
65
  type: String
66
66
  },
67
+ linkPath: {
68
+ type: String
69
+ },
67
70
  developerName: {
68
71
  type: String,
69
72
  // unique: true,
@@ -7,6 +7,7 @@ export interface IUpsertFlashAppRequest {
7
7
  onesignalAppId: string;
8
8
  onesignalRestApiKey: string;
9
9
  domain: string;
10
+ linkPath: string;
10
11
  developerName: string;
11
12
  developerEmail: string;
12
13
  developerOrganization: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.126",
3
+ "version": "1.2.128",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -26,6 +26,8 @@ export interface IFlashApp extends Document {
26
26
  onesignalRestApiKey: string
27
27
 
28
28
  domain: string,
29
+ linkPath: string,
30
+
29
31
  developerName: string
30
32
  developerEmail: string
31
33
  developerOrganization: string
@@ -38,10 +40,11 @@ export interface IFlashApp extends Document {
38
40
  }
39
41
 
40
42
  export interface IRemoveDataParams {
41
- titleSuffix?: string,
42
- buttonText?: string,
43
- resultText?: string,
44
- inputHint?: string,
43
+ appName: string,
44
+ buttonText: string,
45
+ resultText: string,
46
+ errorText: string,
47
+ inputHint: string,
45
48
  }
46
49
 
47
50
  export interface IPrivacyPolicyParams {
@@ -146,6 +149,9 @@ export const FlashAppSchema = new Schema({
146
149
  domain: {
147
150
  type: String
148
151
  },
152
+ linkPath : {
153
+ type: String
154
+ },
149
155
  developerName: {
150
156
  type: String,
151
157
  // unique: true,
@@ -11,6 +11,7 @@ export interface IUpsertFlashAppRequest {
11
11
  onesignalRestApiKey: string
12
12
 
13
13
  domain: string,
14
+ linkPath: string,
14
15
 
15
16
  developerName: string
16
17
  developerEmail: string