@bprotsyk/aso-core 1.2.118 → 1.2.119
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.
|
@@ -127,6 +127,7 @@ let removeGeosFromAllRedirectCampaigns = async (geoToRemove) => {
|
|
|
127
127
|
exports.removeGeosFromAllRedirectCampaigns = removeGeosFromAllRedirectCampaigns;
|
|
128
128
|
let createOrFindFlashRedirectCampaign = async (app) => {
|
|
129
129
|
if (app.keitaroData && app.keitaroData?.redirectCampaignId != 0) {
|
|
130
|
+
console.log(app.keitaroData?.redirectCampaignId);
|
|
130
131
|
let campaign = await keitaro_service_1.KeitaroService.getCampaignById(app.keitaroData.redirectCampaignId);
|
|
131
132
|
return campaign;
|
|
132
133
|
}
|
package/package.json
CHANGED
|
@@ -138,6 +138,7 @@ export let removeGeosFromAllRedirectCampaigns = async (geoToRemove: string) => {
|
|
|
138
138
|
|
|
139
139
|
export let createOrFindFlashRedirectCampaign = async (app: IFlashApp): Promise<IKeitaroCampaign> => {
|
|
140
140
|
if (app.keitaroData && app.keitaroData?.redirectCampaignId != 0) {
|
|
141
|
+
console.log(app.keitaroData?.redirectCampaignId)
|
|
141
142
|
let campaign = await KeitaroService.getCampaignById(app.keitaroData.redirectCampaignId)
|
|
142
143
|
return campaign
|
|
143
144
|
}
|