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