@infrab4a/connect 5.4.0-beta.4 → 5.4.0-beta.5
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 -0
- package/index.esm.js +2 -0
- package/package.json +1 -1
- package/src/domain/catalog/models/variant.d.ts +1 -0
package/index.cjs.js
CHANGED
|
@@ -7905,6 +7905,7 @@ const fieldsConfiguration$2 = [
|
|
|
7905
7905
|
},
|
|
7906
7906
|
{ tagsProfile: { columnName: 'tags_profile' } },
|
|
7907
7907
|
{ tagsCollection: { columnName: 'tags_collection' } },
|
|
7908
|
+
{ variantSlug: { columnName: 'variant_slug' } },
|
|
7908
7909
|
],
|
|
7909
7910
|
},
|
|
7910
7911
|
},
|
|
@@ -8689,6 +8690,7 @@ const fieldsConfiguration$1 = [
|
|
|
8689
8690
|
}),
|
|
8690
8691
|
},
|
|
8691
8692
|
},
|
|
8693
|
+
{ variantSlug: { columnName: 'variant_slug' } },
|
|
8692
8694
|
{ createdAt: { columnName: 'created_at' } },
|
|
8693
8695
|
{ updatedAt: { columnName: 'updated_at' } },
|
|
8694
8696
|
];
|
package/index.esm.js
CHANGED
|
@@ -7881,6 +7881,7 @@ const fieldsConfiguration$2 = [
|
|
|
7881
7881
|
},
|
|
7882
7882
|
{ tagsProfile: { columnName: 'tags_profile' } },
|
|
7883
7883
|
{ tagsCollection: { columnName: 'tags_collection' } },
|
|
7884
|
+
{ variantSlug: { columnName: 'variant_slug' } },
|
|
7884
7885
|
],
|
|
7885
7886
|
},
|
|
7886
7887
|
},
|
|
@@ -8665,6 +8666,7 @@ const fieldsConfiguration$1 = [
|
|
|
8665
8666
|
}),
|
|
8666
8667
|
},
|
|
8667
8668
|
},
|
|
8669
|
+
{ variantSlug: { columnName: 'variant_slug' } },
|
|
8668
8670
|
{ createdAt: { columnName: 'created_at' } },
|
|
8669
8671
|
{ updatedAt: { columnName: 'updated_at' } },
|
|
8670
8672
|
];
|
package/package.json
CHANGED
|
@@ -4,5 +4,6 @@ export type ProductVariantIdentifiers = 'id' | 'productId';
|
|
|
4
4
|
export declare class Variant extends ProductBase<Variant, ProductVariantIdentifiers> {
|
|
5
5
|
productId: string;
|
|
6
6
|
grade?: VariantGrade[];
|
|
7
|
+
variantSlug?: string;
|
|
7
8
|
static get identifiersFields(): ProductVariantIdentifiers[];
|
|
8
9
|
}
|