@natch-the-storage/heathershaw-platform-types 1.14.0 → 1.14.1
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/build/validators.d.ts +1 -1
- package/build/validators.js +24 -4
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ export type AuStates = (typeof auStatesValues)[number];
|
|
|
32
32
|
export type DiscountTiers = (typeof discountTierValues)[number];
|
|
33
33
|
export type Pharmacy = {
|
|
34
34
|
name: string;
|
|
35
|
-
address:
|
|
35
|
+
address: Address;
|
|
36
36
|
openingHours: string;
|
|
37
37
|
tag: string;
|
|
38
38
|
color: 'default' | 'secondary' | 'alert' | 'warning';
|
package/build/validators.js
CHANGED
|
@@ -68,7 +68,12 @@ export const discountTierValues = [0.9, 0.88, 0.875, 0.85, 0.8, 0.75, 0.7];
|
|
|
68
68
|
export const PHARMACIES = [
|
|
69
69
|
{
|
|
70
70
|
name: 'Malvern Road',
|
|
71
|
-
address:
|
|
71
|
+
address: {
|
|
72
|
+
street: '1402 Malvern Road',
|
|
73
|
+
suburb: 'Glen Iris',
|
|
74
|
+
state: 'VIC',
|
|
75
|
+
postcode: '3146',
|
|
76
|
+
},
|
|
72
77
|
openingHours: 'Mon - Fri 8:30am - 7pm · Sat 9am - 4pm',
|
|
73
78
|
tag: 'Compounding',
|
|
74
79
|
color: 'secondary',
|
|
@@ -77,7 +82,12 @@ export const PHARMACIES = [
|
|
|
77
82
|
},
|
|
78
83
|
{
|
|
79
84
|
name: 'Burke Road',
|
|
80
|
-
address:
|
|
85
|
+
address: {
|
|
86
|
+
street: '153 Burke Road',
|
|
87
|
+
suburb: 'Glen Iris',
|
|
88
|
+
state: 'VIC',
|
|
89
|
+
postcode: '3146',
|
|
90
|
+
},
|
|
81
91
|
openingHours: 'Mon - Fri 8:30am - 7pm · Sat 9am - 4pm',
|
|
82
92
|
tag: 'Since 1926',
|
|
83
93
|
color: 'default',
|
|
@@ -86,7 +96,12 @@ export const PHARMACIES = [
|
|
|
86
96
|
},
|
|
87
97
|
{
|
|
88
98
|
name: 'High Street',
|
|
89
|
-
address:
|
|
99
|
+
address: {
|
|
100
|
+
street: '123 High Street',
|
|
101
|
+
suburb: 'Malvern',
|
|
102
|
+
state: 'VIC',
|
|
103
|
+
postcode: '3144',
|
|
104
|
+
},
|
|
90
105
|
openingHours: 'Mon - Fri 8:30am - 7pm · Sat 9am - 4pm',
|
|
91
106
|
tag: 'Alt. therapies',
|
|
92
107
|
color: 'secondary',
|
|
@@ -95,7 +110,12 @@ export const PHARMACIES = [
|
|
|
95
110
|
},
|
|
96
111
|
{
|
|
97
112
|
name: 'Wattletree Road',
|
|
98
|
-
address:
|
|
113
|
+
address: {
|
|
114
|
+
street: '284 Wattletree Road',
|
|
115
|
+
suburb: 'Glen Iris',
|
|
116
|
+
state: 'VIC',
|
|
117
|
+
postcode: '3146',
|
|
118
|
+
},
|
|
99
119
|
openingHours: 'Mon - Fri 8:30am - 7pm · Sat 9am - 4pm',
|
|
100
120
|
tag: 'Newest',
|
|
101
121
|
color: 'alert',
|