merchi_sdk_ts 1.7.2 → 1.7.4
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/dist/entities/company.js
CHANGED
|
@@ -142,6 +142,14 @@ var Company = /** @class */ (function (_super) {
|
|
|
142
142
|
Company.property({ type: String }),
|
|
143
143
|
__metadata("design:type", String)
|
|
144
144
|
], Company.prototype, "dhlApiSecret", void 0);
|
|
145
|
+
__decorate([
|
|
146
|
+
Company.property(),
|
|
147
|
+
__metadata("design:type", Boolean)
|
|
148
|
+
], Company.prototype, "dhlTrackingSandbox", void 0);
|
|
149
|
+
__decorate([
|
|
150
|
+
Company.property(),
|
|
151
|
+
__metadata("design:type", Boolean)
|
|
152
|
+
], Company.prototype, "dhlTrackingExpress", void 0);
|
|
145
153
|
__decorate([
|
|
146
154
|
Company.property({ type: String }),
|
|
147
155
|
__metadata("design:type", String)
|
|
@@ -107,11 +107,11 @@ var DraftTemplate = /** @class */ (function (_super) {
|
|
|
107
107
|
__metadata("design:type", Object)
|
|
108
108
|
], DraftTemplate.prototype, "customisationMap", void 0);
|
|
109
109
|
__decorate([
|
|
110
|
-
DraftTemplate.property(),
|
|
110
|
+
DraftTemplate.property({ type: String }),
|
|
111
111
|
__metadata("design:type", Object)
|
|
112
112
|
], DraftTemplate.prototype, "customisationMapSource", void 0);
|
|
113
113
|
__decorate([
|
|
114
|
-
DraftTemplate.property(),
|
|
114
|
+
DraftTemplate.property({ type: String }),
|
|
115
115
|
__metadata("design:type", Object)
|
|
116
116
|
], DraftTemplate.prototype, "customisationMapFileId", void 0);
|
|
117
117
|
return DraftTemplate;
|
package/package.json
CHANGED
package/src/entities/company.ts
CHANGED
|
@@ -106,6 +106,12 @@ export class Company extends Entity {
|
|
|
106
106
|
@Company.property({type: String})
|
|
107
107
|
public dhlApiSecret?: string;
|
|
108
108
|
|
|
109
|
+
@Company.property()
|
|
110
|
+
public dhlTrackingSandbox?: boolean;
|
|
111
|
+
|
|
112
|
+
@Company.property()
|
|
113
|
+
public dhlTrackingExpress?: boolean;
|
|
114
|
+
|
|
109
115
|
@Company.property({type: String})
|
|
110
116
|
public fedexApiKey?: string;
|
|
111
117
|
|
|
@@ -73,9 +73,9 @@ export class DraftTemplate extends Entity {
|
|
|
73
73
|
@DraftTemplate.property({type: customisationMapPropertyType})
|
|
74
74
|
public customisationMap?: Record<string, unknown> | null;
|
|
75
75
|
|
|
76
|
-
@DraftTemplate.property()
|
|
76
|
+
@DraftTemplate.property({type: String})
|
|
77
77
|
public customisationMapSource?: string | null;
|
|
78
78
|
|
|
79
|
-
@DraftTemplate.property()
|
|
79
|
+
@DraftTemplate.property({type: String})
|
|
80
80
|
public customisationMapFileId?: string | null;
|
|
81
81
|
}
|