@mivis/petmart-api 1.2.202 → 1.2.204
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 +8 -2
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1653,7 +1653,7 @@ declare namespace Components {
|
|
|
1653
1653
|
name: string;
|
|
1654
1654
|
lat: number;
|
|
1655
1655
|
lng: number;
|
|
1656
|
-
coordinates
|
|
1656
|
+
coordinates?: number[];
|
|
1657
1657
|
}
|
|
1658
1658
|
|
|
1659
1659
|
export interface IPreferredCommunication {
|
|
@@ -1695,10 +1695,16 @@ declare namespace Components {
|
|
|
1695
1695
|
toRemoveDocuments?: string[];
|
|
1696
1696
|
}
|
|
1697
1697
|
|
|
1698
|
+
export enum EHorseStatus {
|
|
1699
|
+
MODERATION = 'MODERATION',
|
|
1700
|
+
PUBLISHED = 'PUBLISHED',
|
|
1701
|
+
REJECTED = 'REJECTED',
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1698
1704
|
export interface IHorse {
|
|
1699
1705
|
_id: string;
|
|
1700
1706
|
user_id: string;
|
|
1701
|
-
status:
|
|
1707
|
+
status: EHorseStatus;
|
|
1702
1708
|
name: string;
|
|
1703
1709
|
sex: ESex;
|
|
1704
1710
|
breed: string;
|