@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.
Files changed (2) hide show
  1. package/dist/shop.d.ts +11 -0
  2. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simonarcher/fika-types",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Shared TypeScript types for Fika projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",