merchi_sdk_ts 1.7.3 → 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)
|
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
|
|