merchi_sdk_js 0.0.6 → 0.0.8
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 +6 -0
package/package.json
CHANGED
package/src/domain.js
CHANGED
@@ -79,6 +79,12 @@ export function Domain() {
|
|
79
79
|
addPropertyTo(this, 'tags', DomainTag);
|
80
80
|
addPropertyTo(this, 'internalTags', InternalTag);
|
81
81
|
|
82
|
+
addPropertyTo(this, 'deploymentOnline');
|
83
|
+
addPropertyTo(this, 'deploymentInProgress');
|
84
|
+
addPropertyTo(this, 'deploymentSucceeded');
|
85
|
+
addPropertyTo(this, 'deploymentMessage');
|
86
|
+
addPropertyTo(this, 'deploymentKey');
|
87
|
+
|
82
88
|
this.create = function (success, error, embed, as_domain) {
|
83
89
|
var data = serialise(this),
|
84
90
|
self = this;
|