merchi_sdk_js 0.0.7 → 0.0.8-t

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.7",
3
+ "version": "0.0.8t",
4
4
  "type": "module",
5
5
  "main": "src/merchi.js",
6
6
  "module": "src/merchi.js",
package/src/domain.js CHANGED
@@ -79,11 +79,14 @@ export function Domain() {
79
79
  addPropertyTo(this, 'tags', DomainTag);
80
80
  addPropertyTo(this, 'internalTags', InternalTag);
81
81
 
82
+ addPropertyTo(this, 'deploymentOnline');
82
83
  addPropertyTo(this, 'deploymentInProgress');
83
84
  addPropertyTo(this, 'deploymentSucceeded');
84
85
  addPropertyTo(this, 'deploymentMessage');
85
86
  addPropertyTo(this, 'deploymentKey');
86
87
 
88
+ addPropertyTo(this, 'scalablePressApiKey');
89
+
87
90
  this.create = function (success, error, embed, as_domain) {
88
91
  var data = serialise(this),
89
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');