@simonarcher/fika-types 1.5.0 → 1.5.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.
Files changed (2) hide show
  1. package/dist/shop.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/shop.d.ts CHANGED
@@ -298,6 +298,10 @@ export interface DailyVisitorStats {
298
298
  updatedAt: AdminTimestamp;
299
299
  }
300
300
  export interface ShopInfo {
301
+ /** FIKA-curated public description. Mirrored to top-level `shop.about`. */
302
+ description?: string | null;
303
+ /** Owner-authored public note, edited through the owner portal. */
304
+ ownerDescription?: string | null;
301
305
  features: Partial<Record<ShopFeatureKey, boolean | null>> & Record<string, boolean | null>;
302
306
  wifiDetails?: {
303
307
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simonarcher/fika-types",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Shared TypeScript types for Fika projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",