@betterstore/sdk 0.3.83 → 0.3.85
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 +12 -0
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -280,6 +280,7 @@ interface CustomerSession {
|
|
|
280
280
|
customerId: string;
|
|
281
281
|
expiresAt: Date;
|
|
282
282
|
testmode: boolean;
|
|
283
|
+
token: string;
|
|
283
284
|
customer: {
|
|
284
285
|
createdAt: Date;
|
|
285
286
|
updatedAt: Date;
|
|
@@ -304,7 +305,7 @@ interface OTPSignupParams extends OTPLoginParams {
|
|
|
304
305
|
lastName: string;
|
|
305
306
|
}
|
|
306
307
|
interface OTPVerifyParams {
|
|
307
|
-
|
|
308
|
+
email: string;
|
|
308
309
|
otp: string;
|
|
309
310
|
}
|
|
310
311
|
type OTPLoginResponse = {
|
package/dist/index.d.ts
CHANGED
|
@@ -280,6 +280,7 @@ interface CustomerSession {
|
|
|
280
280
|
customerId: string;
|
|
281
281
|
expiresAt: Date;
|
|
282
282
|
testmode: boolean;
|
|
283
|
+
token: string;
|
|
283
284
|
customer: {
|
|
284
285
|
createdAt: Date;
|
|
285
286
|
updatedAt: Date;
|
|
@@ -304,7 +305,7 @@ interface OTPSignupParams extends OTPLoginParams {
|
|
|
304
305
|
lastName: string;
|
|
305
306
|
}
|
|
306
307
|
interface OTPVerifyParams {
|
|
307
|
-
|
|
308
|
+
email: string;
|
|
308
309
|
otp: string;
|
|
309
310
|
}
|
|
310
311
|
type OTPLoginResponse = {
|