@bprotsyk/aso-core 1.2.29 → 1.2.30

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.
@@ -1,25 +1,25 @@
1
1
  export interface IUpsertFlashAppRequest {
2
2
  id: number;
3
- bundle: string;
4
3
  name: string;
5
- pastebinUrl: string;
4
+ trackingUrl?: string;
5
+ bundle: string;
6
+ pushesEnabled?: boolean;
7
+ plugUrl: string;
8
+ reservePlugUrl?: string;
9
+ policyUrl?: string;
6
10
  onesignalAppId: string;
7
11
  onesignalRestApiKey: string;
12
+ developerName: string;
13
+ developerEmail: string;
14
+ developerOrganization: string;
15
+ generationOptions: IAppGenerationOptions;
16
+ }
17
+ export interface IAppGenerationOptions {
8
18
  splashActivityClassName: string;
9
19
  mainActivityClassName: string;
10
20
  linkName: string;
11
21
  savedName: string;
12
22
  paranoidSeed: number;
13
- keyFileName: string;
14
- keyDeveloperName: string;
15
- keyDeveloperOrganization: string;
16
- keyCountryCode: string;
17
- keyCity: string;
18
- keyAlias: string;
19
- keyPassword: string;
20
- email?: string;
21
- trackingUrl?: string;
22
- pushesEnabled?: boolean;
23
23
  }
24
24
  export interface IUpsertFlashAppResponse {
25
25
  data: IUpsertFlashAppRequest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.29",
3
+ "version": "1.2.30",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -1,28 +1,29 @@
1
1
  export interface IUpsertFlashAppRequest {
2
2
  id: number
3
- bundle: string
4
3
  name: string
5
- pastebinUrl: string
4
+ trackingUrl?: string
5
+ bundle: string
6
+
7
+ pushesEnabled?: boolean
8
+ plugUrl: string
9
+ reservePlugUrl?: string
10
+ policyUrl?: string
11
+
6
12
  onesignalAppId: string
7
13
  onesignalRestApiKey: string
8
14
 
15
+ developerName: string
16
+ developerEmail: string
17
+ developerOrganization: string
18
+ generationOptions: IAppGenerationOptions
19
+ }
20
+
21
+ export interface IAppGenerationOptions {
9
22
  splashActivityClassName: string
10
23
  mainActivityClassName: string
11
- linkName: string,
24
+ linkName: string
12
25
  savedName: string
13
-
14
26
  paranoidSeed: number
15
- keyFileName: string
16
- keyDeveloperName: string
17
- keyDeveloperOrganization: string
18
- keyCountryCode: string
19
- keyCity: string
20
- keyAlias: string
21
- keyPassword: string,
22
-
23
- email?: string,
24
- trackingUrl?: string
25
- pushesEnabled?: boolean
26
27
  }
27
28
 
28
29
  export interface IUpsertFlashAppResponse {