@simonarcher/fika-types 1.3.0 → 1.4.0
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/dist/shop.d.ts +11 -0
- package/package.json +1 -1
package/dist/shop.d.ts
CHANGED
|
@@ -301,6 +301,17 @@ export interface ShopContactDetails {
|
|
|
301
301
|
contactNumber: string;
|
|
302
302
|
email: string;
|
|
303
303
|
website: string;
|
|
304
|
+
/**
|
|
305
|
+
* Social media handles. Stored alongside other contact data so a shop has a
|
|
306
|
+
* single source of truth for "how to reach this place". Bare handles only —
|
|
307
|
+
* no `@` prefix, no URL — clients construct platform URLs at render time.
|
|
308
|
+
* Optional/nullable to keep records sparse for shops that don't publish a
|
|
309
|
+
* given platform.
|
|
310
|
+
*/
|
|
311
|
+
instagram?: string | null;
|
|
312
|
+
facebook?: string | null;
|
|
313
|
+
tiktok?: string | null;
|
|
314
|
+
twitter?: string | null;
|
|
304
315
|
address: {
|
|
305
316
|
formattedAddress: string;
|
|
306
317
|
shortFormattedAddress: string;
|