@betterstore/sdk 0.3.105 → 0.3.106
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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -259,6 +259,11 @@ interface CustomerCreateParams {
|
|
|
259
259
|
email: string;
|
|
260
260
|
phone?: string;
|
|
261
261
|
address?: Address;
|
|
262
|
+
image?: string;
|
|
263
|
+
password?: string;
|
|
264
|
+
metadata?: Record<string, any>;
|
|
265
|
+
tags?: string[];
|
|
266
|
+
notes?: string;
|
|
262
267
|
isSubscribedEmail?: boolean;
|
|
263
268
|
isSubscribedSMS?: boolean;
|
|
264
269
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -259,6 +259,11 @@ interface CustomerCreateParams {
|
|
|
259
259
|
email: string;
|
|
260
260
|
phone?: string;
|
|
261
261
|
address?: Address;
|
|
262
|
+
image?: string;
|
|
263
|
+
password?: string;
|
|
264
|
+
metadata?: Record<string, any>;
|
|
265
|
+
tags?: string[];
|
|
266
|
+
notes?: string;
|
|
262
267
|
isSubscribedEmail?: boolean;
|
|
263
268
|
isSubscribedSMS?: boolean;
|
|
264
269
|
}
|