orderiom-api-package 0.3.48 → 0.3.49

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/index.d.ts +16 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -30,4 +30,20 @@ export interface AuthState<SignedIn extends boolean> {
30
30
  email: string | null
31
31
  fullAddress: Record<string, any>
32
32
  userAddress: Record<string, any>[]
33
+ }
34
+
35
+ export interface ManagerState {
36
+ [key: string]: any
37
+ }
38
+
39
+ export interface ProductState {
40
+ [key: string]: any
41
+ }
42
+
43
+ export interface OrderState {
44
+ [key: string]: any
45
+ }
46
+
47
+ export interface RestaurantState {
48
+ [key: string]: any
33
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orderiom-api-package",
3
- "version": "0.3.48",
3
+ "version": "0.3.49",
4
4
  "description": "This package will install all necessary API calls for every orderiom restaurant",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",