@chopkola/common 1.0.160 → 1.0.162
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/types/global.d.ts
CHANGED
|
@@ -55,3 +55,20 @@ export type PermissionCollectionType = "*" | PermissionEnum;
|
|
|
55
55
|
export declare const filterTabs: readonly FilterTab[];
|
|
56
56
|
export declare const businessFilterTabs: readonly BusinessTypeFilterTab[];
|
|
57
57
|
export declare const PermissionCollection: readonly PermissionCollectionType[];
|
|
58
|
+
export interface AddressPayloadType {
|
|
59
|
+
address: {
|
|
60
|
+
city?: string;
|
|
61
|
+
country?: string;
|
|
62
|
+
county?: string;
|
|
63
|
+
postalCode?: string;
|
|
64
|
+
stateOrProvince?: string;
|
|
65
|
+
streetName?: string;
|
|
66
|
+
streetNumber?: string;
|
|
67
|
+
subLocality?: string;
|
|
68
|
+
};
|
|
69
|
+
coordinates: {
|
|
70
|
+
lat?: string;
|
|
71
|
+
lng?: string;
|
|
72
|
+
};
|
|
73
|
+
formattedAddress?: string;
|
|
74
|
+
}
|