@bprotsyk/aso-core 1.2.192 → 1.2.193

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/index.d.ts CHANGED
@@ -23,7 +23,7 @@ export { AlternativeLayoutType, AlternativeSourceType, AlternativeLogicType, Alt
23
23
  export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry";
24
24
  export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user";
25
25
  export { IAuthToken } from "./panel/auth";
26
- export { IUpsertFlashAppRequest, IUpsertFlashAppResponse } from "./panel/flash/create-flash-app-request";
26
+ export { IUpsertFlashAppRequest, IUpsertFlashAppResponse } from "./panel/flash/upsert-flash-app-request";
27
27
  export { IGradient, IStroke, IShape, ShapeDiv } from "./shared/shape";
28
28
  export { ColoredText, IColoredTextProps } from "./shared/colored-text";
29
29
  export { IOfferWallAuthConfig } from "./aso/offerwall/auth/offerwall-auth-config";
@@ -0,0 +1,26 @@
1
+ import { IAppGenerationOptions, IAppKeitaroData, IBannerParams, IDeveloperParams, IDirectParams, IDomainParams, IOffersStubParams, IPrivacyPolicyParams, IRemoveDataParams, IntegrationVersion } from "flash/flash-app";
2
+ export interface IUpsertFlashAppRequest {
3
+ id: number;
4
+ name: string;
5
+ bundle: string;
6
+ sourceUrl?: string;
7
+ enabled: boolean;
8
+ geos: string;
9
+ policyUrl?: string;
10
+ integrationVersion: IntegrationVersion;
11
+ webInterfaceName?: string;
12
+ generationOptions?: Partial<IAppGenerationOptions>;
13
+ keitaroData?: Partial<IAppKeitaroData>;
14
+ removeDataParams?: IRemoveDataParams;
15
+ privacyPolicyParams?: IPrivacyPolicyParams;
16
+ offersStubParams?: IOffersStubParams;
17
+ bannerParams?: IBannerParams;
18
+ developerParams?: IDeveloperParams;
19
+ domainParams: IDomainParams;
20
+ directParams?: IDirectParams;
21
+ }
22
+ export interface IUpsertFlashAppResponse {
23
+ data: IUpsertFlashAppRequest;
24
+ linkName: string;
25
+ archive: string;
26
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.192",
3
+ "version": "1.2.193",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -28,7 +28,7 @@ export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry"
28
28
 
29
29
  export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user"
30
30
  export { IAuthToken } from "./panel/auth"
31
- export { IUpsertFlashAppRequest, IUpsertFlashAppResponse } from "./panel/flash/create-flash-app-request"
31
+ export { IUpsertFlashAppRequest, IUpsertFlashAppResponse } from "./panel/flash/upsert-flash-app-request"
32
32
 
33
33
  export { IGradient, IStroke, IShape, ShapeDiv } from "./shared/shape"
34
34
  export { ColoredText, IColoredTextProps } from "./shared/colored-text"
@@ -9,15 +9,15 @@ export interface IUpsertFlashAppRequest {
9
9
  enabled: boolean,
10
10
  geos: string,
11
11
 
12
- onesignalAppId: string
13
- onesignalRestApiKey: string
14
- webInterfaceName: string,
15
-
16
- policyUrl: string,
17
-
12
+ // onesignalAppId: string
13
+ // onesignalRestApiKey: string
14
+
15
+ policyUrl?: string,
16
+
18
17
  integrationVersion: IntegrationVersion,
19
-
20
- generationOptions: Partial<IAppGenerationOptions>
18
+
19
+ webInterfaceName?: string,
20
+ generationOptions?: Partial<IAppGenerationOptions>
21
21
  keitaroData?: Partial<IAppKeitaroData>,
22
22
  removeDataParams?: IRemoveDataParams,
23
23
  privacyPolicyParams?: IPrivacyPolicyParams,