@moonbase.sh/vue 0.4.15 → 0.4.17

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.
package/dist/index.d.cts CHANGED
@@ -66,7 +66,7 @@ declare function useAuth(context?: StorefrontContext): {
66
66
  streetAddress2: string | null;
67
67
  locality: string | null;
68
68
  region: string | null;
69
- postCode: string;
69
+ postCode: string | null;
70
70
  } | undefined;
71
71
  ownedProducts?: string[] | undefined;
72
72
  subscribedProducts?: string[] | undefined;
@@ -86,7 +86,7 @@ declare function useAuth(context?: StorefrontContext): {
86
86
  streetAddress2: string | null;
87
87
  locality: string | null;
88
88
  region: string | null;
89
- postCode: string;
89
+ postCode: string | null;
90
90
  } | undefined;
91
91
  ownedProducts?: string[] | undefined;
92
92
  subscribedProducts?: string[] | undefined;
@@ -109,7 +109,7 @@ declare function useAuth(context?: StorefrontContext): {
109
109
  streetAddress2: string | null;
110
110
  locality: string | null;
111
111
  region: string | null;
112
- postCode: string;
112
+ postCode: string | null;
113
113
  } | undefined;
114
114
  ownedProducts?: string[] | undefined;
115
115
  subscribedProducts?: string[] | undefined;
@@ -130,7 +130,7 @@ declare function useAuth(context?: StorefrontContext): {
130
130
  streetAddress2: string | null;
131
131
  locality: string | null;
132
132
  region: string | null;
133
- postCode: string;
133
+ postCode: string | null;
134
134
  } | undefined;
135
135
  ownedProducts?: string[] | undefined;
136
136
  subscribedProducts?: string[] | undefined;
@@ -154,7 +154,7 @@ declare function useAuth(context?: StorefrontContext): {
154
154
  streetAddress2: string | null;
155
155
  locality: string | null;
156
156
  region: string | null;
157
- postCode: string;
157
+ postCode: string | null;
158
158
  } | undefined;
159
159
  ownedProducts?: string[] | undefined;
160
160
  subscribedProducts?: string[] | undefined;
@@ -186,7 +186,7 @@ declare function useAuth(context?: StorefrontContext): {
186
186
  streetAddress2: string | null;
187
187
  locality: string | null;
188
188
  region: string | null;
189
- postCode: string;
189
+ postCode: string | null;
190
190
  } | undefined;
191
191
  ownedProducts?: string[] | undefined;
192
192
  subscribedProducts?: string[] | undefined;
package/dist/index.d.ts CHANGED
@@ -66,7 +66,7 @@ declare function useAuth(context?: StorefrontContext): {
66
66
  streetAddress2: string | null;
67
67
  locality: string | null;
68
68
  region: string | null;
69
- postCode: string;
69
+ postCode: string | null;
70
70
  } | undefined;
71
71
  ownedProducts?: string[] | undefined;
72
72
  subscribedProducts?: string[] | undefined;
@@ -86,7 +86,7 @@ declare function useAuth(context?: StorefrontContext): {
86
86
  streetAddress2: string | null;
87
87
  locality: string | null;
88
88
  region: string | null;
89
- postCode: string;
89
+ postCode: string | null;
90
90
  } | undefined;
91
91
  ownedProducts?: string[] | undefined;
92
92
  subscribedProducts?: string[] | undefined;
@@ -109,7 +109,7 @@ declare function useAuth(context?: StorefrontContext): {
109
109
  streetAddress2: string | null;
110
110
  locality: string | null;
111
111
  region: string | null;
112
- postCode: string;
112
+ postCode: string | null;
113
113
  } | undefined;
114
114
  ownedProducts?: string[] | undefined;
115
115
  subscribedProducts?: string[] | undefined;
@@ -130,7 +130,7 @@ declare function useAuth(context?: StorefrontContext): {
130
130
  streetAddress2: string | null;
131
131
  locality: string | null;
132
132
  region: string | null;
133
- postCode: string;
133
+ postCode: string | null;
134
134
  } | undefined;
135
135
  ownedProducts?: string[] | undefined;
136
136
  subscribedProducts?: string[] | undefined;
@@ -154,7 +154,7 @@ declare function useAuth(context?: StorefrontContext): {
154
154
  streetAddress2: string | null;
155
155
  locality: string | null;
156
156
  region: string | null;
157
- postCode: string;
157
+ postCode: string | null;
158
158
  } | undefined;
159
159
  ownedProducts?: string[] | undefined;
160
160
  subscribedProducts?: string[] | undefined;
@@ -186,7 +186,7 @@ declare function useAuth(context?: StorefrontContext): {
186
186
  streetAddress2: string | null;
187
187
  locality: string | null;
188
188
  region: string | null;
189
- postCode: string;
189
+ postCode: string | null;
190
190
  } | undefined;
191
191
  ownedProducts?: string[] | undefined;
192
192
  subscribedProducts?: string[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@moonbase.sh/vue",
3
3
  "type": "module",
4
- "version": "0.4.15",
4
+ "version": "0.4.17",
5
5
  "description": "Package to let you build vue.js storefronts with Moonbase.sh as payment and delivery provider",
6
6
  "author": "Tobias Lønnerød Madsen <m@dsen.tv>",
7
7
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  "@vue/devtools-api": "^6.6.3",
20
20
  "uuid": "^9.0.1",
21
21
  "zod": "^3.23.8",
22
- "@moonbase.sh/storefront-api": "0.4.15"
22
+ "@moonbase.sh/storefront-api": "0.4.17"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/uuid": "^9.0.8",