merchi_sdk_js 0.0.53 → 0.0.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/draft_template.js +1 -0
- package/src/merchi.js +2 -0
package/package.json
CHANGED
package/src/draft_template.js
CHANGED
@@ -19,6 +19,7 @@ export function DraftTemplate() {
|
|
19
19
|
addPropertyTo(this, 'editedByVariationFields', VariationField);
|
20
20
|
addPropertyTo(this, 'date');
|
21
21
|
addPropertyTo(this, 'name');
|
22
|
+
addPropertyTo(this, 'layerName');
|
22
23
|
addPropertyTo(this, 'description');
|
23
24
|
addPropertyTo(this, 'height');
|
24
25
|
addPropertyTo(this, 'width');
|
package/src/merchi.js
CHANGED
@@ -37,6 +37,7 @@ import { Domain, Domains } from './domain.js';
|
|
37
37
|
import { DomainTag, DomainTags } from './domain_tag.js';
|
38
38
|
import { DomainInvitation } from './domain_invitation.js';
|
39
39
|
import { Draft, Drafts } from './draft.js';
|
40
|
+
import { DraftPreview } from './draft_preview.js';
|
40
41
|
import { DraftTemplate } from './draft_template.js';
|
41
42
|
import { DraftComment } from './draft_comment.js';
|
42
43
|
import { EnrolledDomain, EnrolledDomains } from './enrolled_domain.js';
|
@@ -913,6 +914,7 @@ export function merchi(backendUri, websocketUri) {
|
|
913
914
|
'Draft': Draft,
|
914
915
|
'drafts': new Drafts(),
|
915
916
|
'DraftComment': DraftComment,
|
917
|
+
'DraftPreview': DraftPreview,
|
916
918
|
'DraftTemplate': DraftTemplate,
|
917
919
|
'ExchangeRate': ExchangeRate,
|
918
920
|
'exchangeRates': new ExchangeRates(),
|