@bprotsyk/aso-core 2.1.101 → 2.1.103

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
@@ -166,6 +166,12 @@ export declare enum IntegrationVersion {
166
166
  BANNER = "BANNER",
167
167
  PWA = "PWA"
168
168
  }
169
+ export interface IKeitaroDirectTrackingParams {
170
+ naming: string;
171
+ bundle_id: string;
172
+ advertising_id: string;
173
+ appsflyer_device_id: string;
174
+ }
169
175
  export interface IAppKeitaroData {
170
176
  trackingCampaignId: number;
171
177
  trackingCampaignName: string;
@@ -173,6 +179,7 @@ export interface IAppKeitaroData {
173
179
  trackingDomainId: number;
174
180
  trackingDomainName: string;
175
181
  campingToken?: string;
182
+ trackingParams?: IKeitaroDirectTrackingParams;
176
183
  }
177
184
  export declare enum PlugType {
178
185
  PASTEBIN = "PASTEBIN",
package/lib/index.d.ts CHANGED
@@ -24,3 +24,4 @@ export { ICloudflareDomainStatus, ICloudflareDomainType, ICloudflareDomain } fro
24
24
  export { IDomain, IDomainSetupResult, DomainStatus, DomainTarget, CONST_CLOUFLARE_STATUS_READY, IDomainsBuyRequestResponse, getDomainTargetByIp } from "./general/domain";
25
25
  export { INamecheapDomain, INamecheapBuyRequest, INamecheapContactInfo, NamecheapBuyRequestSchema, INamecheapGetDomainsResult, INamecheapBuyResult } from "./general/namecheap-domain";
26
26
  export { NginxTemplate } from "./templates/nginx-template";
27
+ export { TraffleKeitaroService } from "./network/keitaro/traffle/traffle-keitaro-service";
package/lib/index.js CHANGED
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.NginxTemplate = exports.NamecheapBuyRequestSchema = exports.getDomainTargetByIp = exports.CONST_CLOUFLARE_STATUS_READY = exports.DomainTarget = exports.DomainStatus = exports.ICloudflareDomainType = exports.ICloudflareDomainStatus = exports.KeitaroUtils = exports.KeitaroService = exports.ShapeDiv = exports.PanelUserSchema = exports.PanelUserAccessScope = exports.AlternativeOnActivityResult = exports.AlternativeOnBackPressed = exports.AlternativeNavigation = exports.AlternativeStorageType = exports.AlternativeNetworkTool = exports.AlternativeLogicType = exports.AlternativeSourceType = exports.AlternativeLayoutType = exports.AppType = exports.AppStatus = exports.EPlatform = exports.PlugType = exports.AppSchema = exports.IntegrationVersion = exports.SectionsListSchema = exports.DefaultSectionId = exports.OffersSectionSchema = exports.IOfferType = void 0;
26
+ exports.TraffleKeitaroService = exports.NginxTemplate = exports.NamecheapBuyRequestSchema = exports.getDomainTargetByIp = exports.CONST_CLOUFLARE_STATUS_READY = exports.DomainTarget = exports.DomainStatus = exports.ICloudflareDomainType = exports.ICloudflareDomainStatus = exports.KeitaroUtils = exports.KeitaroService = exports.ShapeDiv = exports.PanelUserSchema = exports.PanelUserAccessScope = exports.AlternativeOnActivityResult = exports.AlternativeOnBackPressed = exports.AlternativeNavigation = exports.AlternativeStorageType = exports.AlternativeNetworkTool = exports.AlternativeLogicType = exports.AlternativeSourceType = exports.AlternativeLayoutType = exports.AppType = exports.AppStatus = exports.EPlatform = exports.PlugType = exports.AppSchema = exports.IntegrationVersion = exports.SectionsListSchema = exports.DefaultSectionId = exports.OffersSectionSchema = exports.IOfferType = void 0;
27
27
  var offer_1 = require("./offers/offer");
28
28
  Object.defineProperty(exports, "IOfferType", { enumerable: true, get: function () { return offer_1.IOfferType; } });
29
29
  var section_1 = require("./offers/section");
@@ -68,3 +68,5 @@ var namecheap_domain_1 = require("./general/namecheap-domain");
68
68
  Object.defineProperty(exports, "NamecheapBuyRequestSchema", { enumerable: true, get: function () { return namecheap_domain_1.NamecheapBuyRequestSchema; } });
69
69
  var nginx_template_1 = require("./templates/nginx-template");
70
70
  Object.defineProperty(exports, "NginxTemplate", { enumerable: true, get: function () { return nginx_template_1.NginxTemplate; } });
71
+ var traffle_keitaro_service_1 = require("./network/keitaro/traffle/traffle-keitaro-service");
72
+ Object.defineProperty(exports, "TraffleKeitaroService", { enumerable: true, get: function () { return traffle_keitaro_service_1.TraffleKeitaroService; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.101",
3
+ "version": "2.1.103",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -220,6 +220,14 @@ export enum IntegrationVersion {
220
220
  PWA = "PWA"
221
221
  }
222
222
 
223
+ export interface IKeitaroDirectTrackingParams {
224
+ naming: string,
225
+ bundle_id: string,
226
+ advertising_id: string,
227
+ appsflyer_device_id: string,
228
+
229
+ }
230
+
223
231
  export interface IAppKeitaroData {
224
232
  trackingCampaignId: number
225
233
  trackingCampaignName: string
@@ -227,6 +235,7 @@ export interface IAppKeitaroData {
227
235
  trackingDomainId: number
228
236
  trackingDomainName: string
229
237
  campingToken?: string
238
+ trackingParams?: IKeitaroDirectTrackingParams
230
239
  }
231
240
 
232
241
  export enum PlugType {
package/src/index.ts CHANGED
@@ -30,4 +30,6 @@ export { IKeitaroStream } from "./keitaro/keitaro-stream"
30
30
  export { ICloudflareDomainStatus, ICloudflareDomainType, ICloudflareDomain } from "./general/cloudflare-domain"
31
31
  export { IDomain, IDomainSetupResult, DomainStatus, DomainTarget, CONST_CLOUFLARE_STATUS_READY, IDomainsBuyRequestResponse, getDomainTargetByIp } from "./general/domain"
32
32
  export { INamecheapDomain, INamecheapBuyRequest, INamecheapContactInfo, NamecheapBuyRequestSchema, INamecheapGetDomainsResult, INamecheapBuyResult } from "./general/namecheap-domain"
33
- export { NginxTemplate } from "./templates/nginx-template";
33
+ export { NginxTemplate } from "./templates/nginx-template";
34
+
35
+ export { TraffleKeitaroService } from "./network/keitaro/traffle/traffle-keitaro-service"