merchi_sdk_js 0.0.7 → 0.0.8-s
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/domain.js +3 -0
package/package.json
CHANGED
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;
|