@bprotsyk/aso-core 2.1.110 → 2.1.111
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
|
@@ -286,7 +286,7 @@ async function cloneTraffleCampaign(app, platform, addDefaultStreams) {
|
|
|
286
286
|
}
|
|
287
287
|
const maxGroupId = Math.max(...allCampaigns.map(c => c.group_id || 0));
|
|
288
288
|
const originalStreams = await getStreamsByCampaignId(ORIGINAL_CLONE_CAMPAIGN_ID);
|
|
289
|
-
let parameters = await TrafleKeitaroParameters({ bundle: app.bundle, appsflyerDevKey: app.platforms[platform].appsflyerParams?.
|
|
289
|
+
let parameters = await TrafleKeitaroParameters({ bundle: app.bundle, appsflyerDevKey: app.platforms[platform].appsflyerParams?.devKey, name: name, originalParameters: originalCampaign.parameters });
|
|
290
290
|
const createStreamWithoutIds = async (stream, campaignId) => {
|
|
291
291
|
// Створюємо базовий об'єкт потоку без ID
|
|
292
292
|
const newStream = {
|
package/package.json
CHANGED
package/src/app/app.ts
CHANGED
|
@@ -381,7 +381,7 @@ async function cloneTraffleCampaign(app: IApp, platform: EPlatform, addDefaultSt
|
|
|
381
381
|
const originalStreams = await getStreamsByCampaignId(ORIGINAL_CLONE_CAMPAIGN_ID);
|
|
382
382
|
|
|
383
383
|
|
|
384
|
-
let parameters = await TrafleKeitaroParameters({bundle: app.bundle, appsflyerDevKey: app.platforms[platform].appsflyerParams?.
|
|
384
|
+
let parameters = await TrafleKeitaroParameters({bundle: app.bundle, appsflyerDevKey: app.platforms[platform].appsflyerParams?.devKey, name: name, originalParameters: originalCampaign.parameters})
|
|
385
385
|
|
|
386
386
|
const createStreamWithoutIds = async (stream: IKeitaroStream, campaignId: number) => {
|
|
387
387
|
// Створюємо базовий об'єкт потоку без ID
|