merchi_sdk_ts 1.0.14 → 1.0.16
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/domain.js
CHANGED
|
@@ -197,6 +197,10 @@ var Domain = /** @class */ (function (_super) {
|
|
|
197
197
|
Domain.property({ type: String }),
|
|
198
198
|
__metadata("design:type", String)
|
|
199
199
|
], Domain.prototype, "unltdAiApiSecretKey", void 0);
|
|
200
|
+
__decorate([
|
|
201
|
+
Domain.property({ type: String }),
|
|
202
|
+
__metadata("design:type", String)
|
|
203
|
+
], Domain.prototype, "scalablePressApiKey", void 0);
|
|
200
204
|
__decorate([
|
|
201
205
|
Domain.property({ type: String }),
|
|
202
206
|
__metadata("design:type", Object)
|
package/dist/entities/product.js
CHANGED
|
@@ -286,6 +286,10 @@ var Product = /** @class */ (function (_super) {
|
|
|
286
286
|
Product.property({ type: String }),
|
|
287
287
|
__metadata("design:type", Object)
|
|
288
288
|
], Product.prototype, "shopifyProductId", void 0);
|
|
289
|
+
__decorate([
|
|
290
|
+
Product.property({ type: String }),
|
|
291
|
+
__metadata("design:type", Object)
|
|
292
|
+
], Product.prototype, "spProductId", void 0);
|
|
289
293
|
__decorate([
|
|
290
294
|
Product.property(),
|
|
291
295
|
__metadata("design:type", Boolean)
|
package/package.json
CHANGED
package/src/entities/domain.ts
CHANGED
|
@@ -132,6 +132,9 @@ export class Domain extends Entity {
|
|
|
132
132
|
@Domain.property({type: String})
|
|
133
133
|
public unltdAiApiSecretKey?: string;
|
|
134
134
|
|
|
135
|
+
@Domain.property({type: String})
|
|
136
|
+
public scalablePressApiKey?: string;
|
|
137
|
+
|
|
135
138
|
@Domain.property({type: String})
|
|
136
139
|
public socialBitchute?: string | null;
|
|
137
140
|
|
package/src/entities/product.ts
CHANGED
|
@@ -111,6 +111,9 @@ export class Product extends Entity {
|
|
|
111
111
|
@Product.property({type: String})
|
|
112
112
|
public shopifyProductId?: string | null;
|
|
113
113
|
|
|
114
|
+
@Product.property({type: String})
|
|
115
|
+
public spProductId?: string | null;
|
|
116
|
+
|
|
114
117
|
@Product.property()
|
|
115
118
|
public useCompanyShipmentMethods?: boolean;
|
|
116
119
|
|