@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.
package/lib/flash/flash-app.d.ts
CHANGED
|
@@ -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
|
-
|
|
35
|
-
buttonText
|
|
36
|
-
resultText
|
|
37
|
-
|
|
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;
|
package/lib/flash/flash-app.js
CHANGED
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -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
|
-
|
|
42
|
-
buttonText
|
|
43
|
-
resultText
|
|
44
|
-
|
|
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,
|