@bprotsyk/aso-core 2.1.70 → 2.1.71

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/app/app.d.ts CHANGED
@@ -114,7 +114,10 @@ export interface IBannerParams {
114
114
  imageParam: string;
115
115
  linkParam: string;
116
116
  showStubOnError?: boolean;
117
- directType?: EBannerDirectType;
117
+ directType?: {
118
+ enabled: boolean;
119
+ type: EBannerDirectType;
120
+ };
118
121
  }
119
122
  export interface IRemoveDataParams {
120
123
  buttonText: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.70",
3
+ "version": "2.1.71",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -158,7 +158,10 @@ export interface IBannerParams {
158
158
  imageParam: string,
159
159
  linkParam: string,
160
160
  showStubOnError?: boolean,
161
- directType?: EBannerDirectType
161
+ directType?: {
162
+ enabled: boolean,
163
+ type: EBannerDirectType
164
+ }
162
165
  }
163
166
 
164
167
  export interface IRemoveDataParams {