@simonarcher/fika-types 1.0.5 → 1.0.7

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 +2 -0
  2. package/package.json +1 -1
package/dist/shop.d.ts CHANGED
@@ -89,6 +89,7 @@ export type ShopOpeningTimes = {
89
89
  };
90
90
  export type ShopData = {
91
91
  id: string;
92
+ active: boolean;
92
93
  name: string;
93
94
  about?: string;
94
95
  city: string;
@@ -128,6 +129,7 @@ export type ShopData = {
128
129
  general?: string[];
129
130
  menu?: string[];
130
131
  };
132
+ placeId?: string;
131
133
  };
132
134
  export interface ShopInfo {
133
135
  features: Partial<Record<ShopFeatureKey, boolean>> & Record<string, boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simonarcher/fika-types",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Shared TypeScript types for Fika projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",