@bprotsyk/aso-core 1.2.136 → 1.2.137

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,4 +1,4 @@
1
- import { IAppGenerationOptions, IAppKeitaroData, IPrivacyPolicyParams, IRemoveDataParams } from "flash/flash-app";
1
+ import { IAppGenerationOptions, IAppKeitaroData, IDomainParams, IPrivacyPolicyParams, IRemoveDataParams } from "flash/flash-app";
2
2
  export interface IUpsertFlashAppRequest {
3
3
  id: number;
4
4
  name: string;
@@ -6,7 +6,6 @@ export interface IUpsertFlashAppRequest {
6
6
  sourceUrl?: string;
7
7
  onesignalAppId: string;
8
8
  onesignalRestApiKey: string;
9
- domain: string;
10
9
  linkPath: string;
11
10
  policyUrl: string;
12
11
  developerName: string;
@@ -16,6 +15,7 @@ export interface IUpsertFlashAppRequest {
16
15
  keitaroData?: Partial<IAppKeitaroData>;
17
16
  removeDataParams?: IRemoveDataParams;
18
17
  privacyPolicyParams?: IPrivacyPolicyParams;
18
+ domainParams: IDomainParams;
19
19
  }
20
20
  export interface IUpsertFlashAppResponse {
21
21
  data: IUpsertFlashAppRequest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.136",
3
+ "version": "1.2.137",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -1,4 +1,4 @@
1
- import { IAppGenerationOptions, IAppKeitaroData, IPrivacyPolicyParams, IRemoveDataParams } from "flash/flash-app"
1
+ import { IAppGenerationOptions, IAppKeitaroData, IDomainParams, IPrivacyPolicyParams, IRemoveDataParams } from "flash/flash-app"
2
2
  import { PlugType } from "index"
3
3
 
4
4
  export interface IUpsertFlashAppRequest {
@@ -10,7 +10,6 @@ export interface IUpsertFlashAppRequest {
10
10
  onesignalAppId: string
11
11
  onesignalRestApiKey: string
12
12
 
13
- domain: string,
14
13
  linkPath: string,
15
14
  policyUrl: string,
16
15
 
@@ -20,7 +19,8 @@ export interface IUpsertFlashAppRequest {
20
19
  generationOptions: Partial<IAppGenerationOptions>
21
20
  keitaroData?: Partial<IAppKeitaroData>,
22
21
  removeDataParams?: IRemoveDataParams,
23
- privacyPolicyParams?: IPrivacyPolicyParams
22
+ privacyPolicyParams?: IPrivacyPolicyParams,
23
+ domainParams: IDomainParams
24
24
  }
25
25
 
26
26
  export interface IUpsertFlashAppResponse {