@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.
@@ -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: string;
35
+ address: Address;
36
36
  openingHours: string;
37
37
  tag: string;
38
38
  color: 'default' | 'secondary' | 'alert' | 'warning';
@@ -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: '1402 Malvern Road, Glen Iris VIC 3146',
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: '153 Burke Road, Glen Iris VIC 3146',
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: '123 High Street, Malvern VIC 3144',
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: '284 Wattletree Road, Glen Iris VIC 3146',
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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natch-the-storage/heathershaw-platform-types",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "Interfaces and routes to use on the client",
5
5
  "license": "ISC",
6
6
  "author": "Natch Surana",