@bprotsyk/aso-core 2.1.63 → 2.1.64

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.
@@ -279,7 +279,7 @@ async function cloneOWCampaign(app, platform) {
279
279
  async function cloneDirectCampaign(app, platform) {
280
280
  let name = `#${app.id} [➥]`;
281
281
  let platformName = platform ? (0, app_1.getPlatformName)(platform) : null;
282
- const platformCampaignName = `#${app.id} [] (${platformName})`;
282
+ const platformCampaignName = `#${app.id} [] (${platformName})`;
283
283
  const generateAlias = () => {
284
284
  const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
285
285
  return Array.from({ length: 8 }, () => chars.charAt(Math.floor(Math.random() * chars.length))).join('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.63",
3
+ "version": "2.1.64",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -344,7 +344,7 @@ async function cloneOWCampaign(app: IApp, platform?: EPlatform): Promise<IKeitar
344
344
  async function cloneDirectCampaign(app: IApp, platform?: EPlatform): Promise<IKeitaroCampaign | any> {
345
345
  let name = `#${app.id} [➥]`
346
346
  let platformName = platform ? getPlatformName(platform) : null;
347
- const platformCampaignName = `#${app.id} [] (${platformName})`;
347
+ const platformCampaignName = `#${app.id} [] (${platformName})`;
348
348
  const generateAlias = () => {
349
349
  const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
350
350
  return Array.from(