@bprotsyk/aso-core 2.1.70 → 2.1.72

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;
@@ -154,6 +157,7 @@ export interface IAppKeitaroData {
154
157
  trackingCampaignAlias: string;
155
158
  trackingDomainId: number;
156
159
  trackingDomainName: string;
160
+ campingToken?: string;
157
161
  }
158
162
  export declare enum PlugType {
159
163
  PASTEBIN = "PASTEBIN",
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.72",
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 {
@@ -206,6 +209,7 @@ export interface IAppKeitaroData {
206
209
  trackingCampaignAlias: string
207
210
  trackingDomainId: number
208
211
  trackingDomainName: string
212
+ campingToken?: string
209
213
  }
210
214
 
211
215
  export enum PlugType {