repzo 1.0.68 → 1.0.69
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/lib/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/types/index.ts +1 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -1736,6 +1736,7 @@ export declare namespace Service {
|
|
|
1736
1736
|
export type MslProductWithPopulatedKeysSchema = MslProductSchema & {
|
|
1737
1737
|
product_id: string | Product.ProductSchema;
|
|
1738
1738
|
variant_id: string | Variant.VariantSchema;
|
|
1739
|
+
msl_id: string | Msl.MslSchema;
|
|
1739
1740
|
};
|
|
1740
1741
|
export namespace Find {
|
|
1741
1742
|
type Params = DefaultPaginationQueryParams & {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -1767,6 +1767,7 @@ export namespace Service {
|
|
|
1767
1767
|
export type MslProductWithPopulatedKeysSchema = MslProductSchema & {
|
|
1768
1768
|
product_id: string | Product.ProductSchema;
|
|
1769
1769
|
variant_id: string | Variant.VariantSchema;
|
|
1770
|
+
msl_id: string | Msl.MslSchema;
|
|
1770
1771
|
};
|
|
1771
1772
|
export namespace Find {
|
|
1772
1773
|
export type Params = DefaultPaginationQueryParams & {
|