@contrail/flexplm 1.1.10 → 1.1.11

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,7 @@ class BaseProcessPublishAssortment {
453
453
  data: seasonalData
454
454
  };
455
455
  if ('ASSORTMENT' === projectItem.addedFromSource && projectItem.addedFromAssortment) {
456
- const carriedFromSeason = this.getCarriedFromSeason(projectItem);
456
+ const carriedFromSeason = await this.getCarriedFromSeason(projectItem);
457
457
  if (carriedFromSeason) {
458
458
  psUpsert['carriedFromSeason'] = carriedFromSeason;
459
459
  }
@@ -482,7 +482,7 @@ class BaseProcessPublishAssortment {
482
482
  data: seasonalData
483
483
  };
484
484
  if ('ASSORTMENT' === projectItem.addedFromSource && projectItem.addedFromAssortment) {
485
- const carriedFromSeason = this.getCarriedFromSeason(projectItem);
485
+ const carriedFromSeason = await this.getCarriedFromSeason(projectItem);
486
486
  if (carriedFromSeason) {
487
487
  csUpsert['carriedFromSeason'] = carriedFromSeason;
488
488
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/flexplm",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "Library used for integration with flexplm.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",