@mivis/petmart-api 1.2.255 → 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 +9 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1641,6 +1641,8 @@ declare namespace Components {
|
|
|
1641
1641
|
photo: string;
|
|
1642
1642
|
position: number;
|
|
1643
1643
|
seller_id: string;
|
|
1644
|
+
navigation_path: string | null; // example: "ProductScreen"
|
|
1645
|
+
navigation_params: Record<string, any> | null; // example: {product_id: "ObjectId"}
|
|
1644
1646
|
createdAt: Date;
|
|
1645
1647
|
updatedAt: Date;
|
|
1646
1648
|
}
|
|
@@ -1951,6 +1953,7 @@ declare namespace Components {
|
|
|
1951
1953
|
status?: string;
|
|
1952
1954
|
position?: number;
|
|
1953
1955
|
all_fields?: string;
|
|
1956
|
+
is_thematic?: 'true' | 'false';
|
|
1954
1957
|
skip: string;
|
|
1955
1958
|
limit: string;
|
|
1956
1959
|
}
|
|
@@ -1963,6 +1966,8 @@ declare namespace Components {
|
|
|
1963
1966
|
products: string[];
|
|
1964
1967
|
status: ECollectionStatus;
|
|
1965
1968
|
position: number;
|
|
1969
|
+
is_thematic?: 'true' | 'false';
|
|
1970
|
+
icon?: File;
|
|
1966
1971
|
}
|
|
1967
1972
|
|
|
1968
1973
|
export interface IUpdateCollection {
|
|
@@ -1973,6 +1978,8 @@ declare namespace Components {
|
|
|
1973
1978
|
products?: string[];
|
|
1974
1979
|
status?: ECollectionStatus;
|
|
1975
1980
|
position?: number;
|
|
1981
|
+
is_thematic?: 'true' | 'false';
|
|
1982
|
+
icon?: File;
|
|
1976
1983
|
}
|
|
1977
1984
|
|
|
1978
1985
|
export interface ICollection {
|
|
@@ -1985,6 +1992,8 @@ declare namespace Components {
|
|
|
1985
1992
|
products: string[];
|
|
1986
1993
|
status: ECollectionStatus;
|
|
1987
1994
|
position: number;
|
|
1995
|
+
is_thematic: boolean;
|
|
1996
|
+
icon: string | null;
|
|
1988
1997
|
}
|
|
1989
1998
|
export interface IPickupPoints {
|
|
1990
1999
|
lat: string;
|