@pixwel/pixwel-sdk 2.1.35 → 2.1.36

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.
@@ -660,6 +660,10 @@ var Ingest = function (_Model) {
660
660
  ingest.selected.download.tags.Extra = [original.context.tag];
661
661
  }
662
662
 
663
+ if (original.context.revision) {
664
+ ingest.selected.download.version = original.context.revision === 1 ? 'REV' : 'REV' + String(original.context.revision);
665
+ }
666
+
663
667
  if (order.territory) {
664
668
  ingest.selected.download.country = order.territory;
665
669
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixwel/pixwel-sdk",
3
3
  "description": "",
4
- "version": "2.1.35",
4
+ "version": "2.1.36",
5
5
  "author": "Pixwel",
6
6
  "license": "UNLICENSED",
7
7
  "main": "./dist/index.js",
package/src/Ingest.js CHANGED
@@ -599,6 +599,10 @@ export default class Ingest extends Model {
599
599
  ingest.selected.download.tags.Extra = [original.context.tag];
600
600
  }
601
601
 
602
+ if (original.context.revision) {
603
+ ingest.selected.download.version = original.context.revision === 1 ? 'REV' : 'REV' + String(original.context.revision);
604
+ }
605
+
602
606
  if (order.territory) {
603
607
  ingest.selected.download.country = order.territory;
604
608
  }