merchi_sdk_js 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_js",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "main": "src/merchi.js",
6
6
  "module": "src/merchi.js",
package/src/domain.js CHANGED
@@ -85,6 +85,8 @@ export function Domain() {
85
85
  addPropertyTo(this, 'deploymentMessage');
86
86
  addPropertyTo(this, 'deploymentKey');
87
87
 
88
+ addPropertyTo(this, 'scalablePressApiKey');
89
+
88
90
  this.create = function (success, error, embed, as_domain) {
89
91
  var data = serialise(this),
90
92
  self = this;
@@ -3,6 +3,7 @@ import { addPropertyTo, serialise, create, enumerateFiles,
3
3
  import { Job } from './job.js';
4
4
  import { Product } from './product.js';
5
5
  import { MerchiFile } from './merchi_file.js';
6
+ import { VariationFieldsOption } from './variation_fields_option.js';
6
7
 
7
8
  export function DraftTemplate() {
8
9
  this.resource = '/draft_comments';
@@ -12,6 +13,7 @@ export function DraftTemplate() {
12
13
  addPropertyTo(this, 'product', Product);
13
14
  addPropertyTo(this, 'file', MerchiFile);
14
15
  addPropertyTo(this, 'job', Job);
16
+ addPropertyTo(this, 'variationFieldOption', VariationFieldsOption);
15
17
  addPropertyTo(this, 'date');
16
18
  addPropertyTo(this, 'name');
17
19
  addPropertyTo(this, 'description');
package/src/product.js CHANGED
@@ -40,6 +40,7 @@ export function Product() {
40
40
  addPropertyTo(this, 'productType');
41
41
  addPropertyTo(this, 'description');
42
42
  addPropertyTo(this, 'notes');
43
+ addPropertyTo(this, 'spProductId');
43
44
  addPropertyTo(this, 'shopifyProductId');
44
45
  addPropertyTo(this, 'minimum');
45
46
  addPropertyTo(this, 'minimumPerGroup');