@mivis/petmart-api 1.2.194 → 1.2.195
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 -8
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1643,13 +1643,6 @@ declare namespace Components {
|
|
|
1643
1643
|
FEMALE = 'female',
|
|
1644
1644
|
}
|
|
1645
1645
|
|
|
1646
|
-
export enum EPrefferedCommunication {
|
|
1647
|
-
TELEGRAM = 'Telegram',
|
|
1648
|
-
WHATSAPP = 'WhatsApp',
|
|
1649
|
-
CALLS = 'Звонки',
|
|
1650
|
-
SMS = 'СМС',
|
|
1651
|
-
}
|
|
1652
|
-
|
|
1653
1646
|
export interface ICompetitionHistory {
|
|
1654
1647
|
name: string;
|
|
1655
1648
|
place: string;
|
|
@@ -1661,9 +1654,16 @@ declare namespace Components {
|
|
|
1661
1654
|
lng: number;
|
|
1662
1655
|
}
|
|
1663
1656
|
|
|
1657
|
+
export interface IPreferredCommunication {
|
|
1658
|
+
telegram: boolean;
|
|
1659
|
+
whatsapp: boolean;
|
|
1660
|
+
calls: boolean;
|
|
1661
|
+
sms: boolean;
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
1664
|
export interface ICommunication {
|
|
1665
1665
|
tel: number;
|
|
1666
|
-
preferredCommunication:
|
|
1666
|
+
preferredCommunication: IPreferredCommunication;
|
|
1667
1667
|
}
|
|
1668
1668
|
|
|
1669
1669
|
export interface ICreateHorse {
|