@simonarcher/fika-types 2.0.0-rc.2 → 2.0.0-rc.3

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
@@ -284,6 +284,10 @@ export interface DailyVisitorStats {
284
284
  updatedAt: AdminTimestamp;
285
285
  }
286
286
  export interface ShopInfo {
287
+ /** Editorial description of the shop, written by FIKA curators. */
288
+ description?: string | null;
289
+ /** Owner-authored public note, edited through the owner portal. */
290
+ ownerDescription?: string | null;
287
291
  features: Partial<Record<ShopFeatureKey, boolean | null>> & Record<string, boolean | null>;
288
292
  wifiDetails?: {
289
293
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simonarcher/fika-types",
3
- "version": "2.0.0-rc.2",
3
+ "version": "2.0.0-rc.3",
4
4
  "description": "Shared TypeScript types for Fika projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",