types-magic-api 0.1.34 → 0.1.41
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/src/common/model/index.model.d.ts +1 -0
- package/dist/src/common/model/index.model.js +1 -0
- package/dist/src/entities/magic/Customer.entity.d.ts +1 -0
- package/dist/src/index.model.d.ts +1 -0
- package/dist/src/index.model.js +1 -0
- package/dist/src/services/app/app.model.d.ts +6 -0
- package/dist/src/services/shopify/shopify.model.d.ts +4 -2
- package/dist/src/services/storeConnect/storeConnect.model.d.ts +6 -0
- package/dist/src/services/storeConnect/storeConnect.model.js +2 -0
- package/package.json +1 -1
|
@@ -25,3 +25,4 @@ export * from './services/saas/saas.model.js';
|
|
|
25
25
|
export * from './services/payment/payment.model.js';
|
|
26
26
|
export * from './services/stripe/stripe.model.js';
|
|
27
27
|
export * from './services/shopifyPayment/shopifyPayment.model.js';
|
|
28
|
+
export * from './services/storeConnect/storeConnect.model.js';
|
package/dist/src/index.model.js
CHANGED
|
@@ -25,4 +25,5 @@ export * from './services/saas/saas.model.js';
|
|
|
25
25
|
export * from './services/payment/payment.model.js';
|
|
26
26
|
export * from './services/stripe/stripe.model.js';
|
|
27
27
|
export * from './services/shopifyPayment/shopifyPayment.model.js';
|
|
28
|
+
export * from './services/storeConnect/storeConnect.model.js';
|
|
28
29
|
//# sourceMappingURL=index.model.js.map
|
|
@@ -355,13 +355,15 @@ export interface cartDeliveryAddressRes {
|
|
|
355
355
|
*/
|
|
356
356
|
export interface CustomerProviderLoginReq {
|
|
357
357
|
email: string;
|
|
358
|
-
password
|
|
358
|
+
password?: string | null;
|
|
359
|
+
otp?: string | null;
|
|
359
360
|
}
|
|
360
361
|
/**
|
|
361
362
|
* API Name: /api/customer/login
|
|
362
363
|
*/
|
|
363
364
|
export interface CustomerProviderLoginRes {
|
|
364
|
-
token
|
|
365
|
+
token?: string;
|
|
366
|
+
isOTPRequired: boolean;
|
|
365
367
|
}
|
|
366
368
|
/**
|
|
367
369
|
* API Name: /api/customer/logout
|