@bprotsyk/aso-core 2.1.120 → 2.1.121

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.
@@ -453,7 +453,8 @@ async function updateAppWithCampaignParams(existingCampaign, app, platform) {
453
453
  async function cloneTraffleCampaign(app, platform, addDefaultStreams) {
454
454
  const ORIGINAL_CLONE_CAMPAIGN_ID = 1925;
455
455
  const appsflyerAvailability = app.platforms[platform].appsflyerParams?.apiToken ? "[AF]" : "";
456
- let name = `[${app.id}] ${app.name} ET [${app.bundle}] [Android] ${appsflyerAvailability} ${app.domainParams.name}`;
456
+ // traffle template [app_id] [app_bundle] app_name [app_lead_developer] domain
457
+ let name = `[${app.id}] [${app.bundle}] ET [${app.name}] [Volodymyr Vinnik] [Android] ${appsflyerAvailability} ${app.domainParams.name}`;
457
458
  let platformName = platform ? (0, app_1.getPlatformName)(platform) : null;
458
459
  const platformCampaignName = `#${app.id} [➥] (${platformName})`;
459
460
  const generateAlias = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.120",
3
+ "version": "2.1.121",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -555,9 +555,12 @@ async function updateAppWithCampaignParams(existingCampaign: IKeitaroCampaign, a
555
555
 
556
556
  async function cloneTraffleCampaign(app: IApp, platform: EPlatform, addDefaultStreams?: boolean): Promise<IKeitaroCampaign | any> {
557
557
 
558
+
559
+
558
560
  const ORIGINAL_CLONE_CAMPAIGN_ID = 1925;
559
561
  const appsflyerAvailability = app.platforms[platform].appsflyerParams?.apiToken ? "[AF]" : "";
560
- let name = `[${app.id}] ${app.name} ET [${app.bundle}] [Android] ${appsflyerAvailability} ${app.domainParams.name}`
562
+ // traffle template [app_id] [app_bundle] app_name [app_lead_developer] domain
563
+ let name = `[${app.id}] [${app.bundle}] ET [${app.name}] [Volodymyr Vinnik] [Android] ${appsflyerAvailability} ${app.domainParams.name}`
561
564
  let platformName = platform ? getPlatformName(platform) : null;
562
565
  const platformCampaignName = `#${app.id} [➥] (${platformName})`;
563
566
  const generateAlias = () => {