@mivis/petmart-api 1.2.254 → 1.2.256
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/package.json +1 -1
- package/type.d.ts +11 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -371,6 +371,8 @@ declare namespace Components {
|
|
|
371
371
|
reviewsData?: IReviewsData;
|
|
372
372
|
published_at?: Date;
|
|
373
373
|
entityAnalytics?: IEntityAnalytics;
|
|
374
|
+
low_stock_flag: boolean;
|
|
375
|
+
f_price: number | null;
|
|
374
376
|
}
|
|
375
377
|
|
|
376
378
|
type OptionalDimension = {
|
|
@@ -1639,6 +1641,8 @@ declare namespace Components {
|
|
|
1639
1641
|
photo: string;
|
|
1640
1642
|
position: number;
|
|
1641
1643
|
seller_id: string;
|
|
1644
|
+
navigation_path: string | null; // example: "ProductScreen"
|
|
1645
|
+
navigation_params: Record<string, any> | null; // example: {product_id: "ObjectId"}
|
|
1642
1646
|
createdAt: Date;
|
|
1643
1647
|
updatedAt: Date;
|
|
1644
1648
|
}
|
|
@@ -1949,6 +1953,7 @@ declare namespace Components {
|
|
|
1949
1953
|
status?: string;
|
|
1950
1954
|
position?: number;
|
|
1951
1955
|
all_fields?: string;
|
|
1956
|
+
is_thematic?: 'true' | 'false';
|
|
1952
1957
|
skip: string;
|
|
1953
1958
|
limit: string;
|
|
1954
1959
|
}
|
|
@@ -1961,6 +1966,8 @@ declare namespace Components {
|
|
|
1961
1966
|
products: string[];
|
|
1962
1967
|
status: ECollectionStatus;
|
|
1963
1968
|
position: number;
|
|
1969
|
+
is_thematic?: 'true' | 'false';
|
|
1970
|
+
icon?: File;
|
|
1964
1971
|
}
|
|
1965
1972
|
|
|
1966
1973
|
export interface IUpdateCollection {
|
|
@@ -1971,6 +1978,8 @@ declare namespace Components {
|
|
|
1971
1978
|
products?: string[];
|
|
1972
1979
|
status?: ECollectionStatus;
|
|
1973
1980
|
position?: number;
|
|
1981
|
+
is_thematic?: 'true' | 'false';
|
|
1982
|
+
icon?: File;
|
|
1974
1983
|
}
|
|
1975
1984
|
|
|
1976
1985
|
export interface ICollection {
|
|
@@ -1983,6 +1992,8 @@ declare namespace Components {
|
|
|
1983
1992
|
products: string[];
|
|
1984
1993
|
status: ECollectionStatus;
|
|
1985
1994
|
position: number;
|
|
1995
|
+
is_thematic: boolean;
|
|
1996
|
+
icon: string | null;
|
|
1986
1997
|
}
|
|
1987
1998
|
export interface IPickupPoints {
|
|
1988
1999
|
lat: string;
|