@bprotsyk/aso-core 2.1.71 → 2.1.73
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 +1 -4
- package/package.json +1 -1
- package/src/app/app.ts +1 -4
package/lib/app/app.d.ts
CHANGED
|
@@ -114,10 +114,6 @@ export interface IBannerParams {
|
|
|
114
114
|
imageParam: string;
|
|
115
115
|
linkParam: string;
|
|
116
116
|
showStubOnError?: boolean;
|
|
117
|
-
directType?: {
|
|
118
|
-
enabled: boolean;
|
|
119
|
-
type: EBannerDirectType;
|
|
120
|
-
};
|
|
121
117
|
}
|
|
122
118
|
export interface IRemoveDataParams {
|
|
123
119
|
buttonText: string;
|
|
@@ -157,6 +153,7 @@ export interface IAppKeitaroData {
|
|
|
157
153
|
trackingCampaignAlias: string;
|
|
158
154
|
trackingDomainId: number;
|
|
159
155
|
trackingDomainName: string;
|
|
156
|
+
campingToken?: string;
|
|
160
157
|
}
|
|
161
158
|
export declare enum PlugType {
|
|
162
159
|
PASTEBIN = "PASTEBIN",
|
package/package.json
CHANGED
package/src/app/app.ts
CHANGED
|
@@ -158,10 +158,6 @@ export interface IBannerParams {
|
|
|
158
158
|
imageParam: string,
|
|
159
159
|
linkParam: string,
|
|
160
160
|
showStubOnError?: boolean,
|
|
161
|
-
directType?: {
|
|
162
|
-
enabled: boolean,
|
|
163
|
-
type: EBannerDirectType
|
|
164
|
-
}
|
|
165
161
|
}
|
|
166
162
|
|
|
167
163
|
export interface IRemoveDataParams {
|
|
@@ -209,6 +205,7 @@ export interface IAppKeitaroData {
|
|
|
209
205
|
trackingCampaignAlias: string
|
|
210
206
|
trackingDomainId: number
|
|
211
207
|
trackingDomainName: string
|
|
208
|
+
campingToken?: string
|
|
212
209
|
}
|
|
213
210
|
|
|
214
211
|
export enum PlugType {
|