@infrab4a/connect 5.4.0-beta.1 → 5.4.0-beta.2
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/index.cjs.js +2 -1
- package/index.esm.js +2 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -875,7 +875,8 @@ class Variant extends ProductBase {
|
|
|
875
875
|
tslib.__decorate([
|
|
876
876
|
classTransformer.Type(() => Product),
|
|
877
877
|
tslib.__metadata("design:type", Product)
|
|
878
|
-
], Variant.prototype, "product", void 0);
|
|
878
|
+
], Variant.prototype, "product", void 0);
|
|
879
|
+
registerClass('Product', Product);
|
|
879
880
|
|
|
880
881
|
class Product extends ProductBase {
|
|
881
882
|
}
|
package/index.esm.js
CHANGED
|
@@ -851,7 +851,8 @@ class Variant extends ProductBase {
|
|
|
851
851
|
__decorate([
|
|
852
852
|
Type(() => Product),
|
|
853
853
|
__metadata("design:type", Product)
|
|
854
|
-
], Variant.prototype, "product", void 0);
|
|
854
|
+
], Variant.prototype, "product", void 0);
|
|
855
|
+
registerClass('Product', Product);
|
|
855
856
|
|
|
856
857
|
class Product extends ProductBase {
|
|
857
858
|
}
|