@salesgenterp/ui-components 0.4.281 → 0.4.283
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.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2164,7 +2164,9 @@ var MyProfile = function MyProfile(_ref) {
|
|
|
2164
2164
|
token: token,
|
|
2165
2165
|
method: 'put',
|
|
2166
2166
|
url: "/ecommerce/customer",
|
|
2167
|
-
body:
|
|
2167
|
+
body: {
|
|
2168
|
+
customerDto: _extends({}, userDetails, formData)
|
|
2169
|
+
},
|
|
2168
2170
|
errorMessage: 'Error in updating the profile.',
|
|
2169
2171
|
successMessage: 'Profile updated successfully.'
|
|
2170
2172
|
})).then(function () {});
|
|
@@ -10017,7 +10019,7 @@ var CheckoutPageComponent = function CheckoutPageComponent(_ref) {
|
|
|
10017
10019
|
firstName: card === null || card === void 0 ? void 0 : card.firstName,
|
|
10018
10020
|
lastName: card === null || card === void 0 ? void 0 : card.lastName
|
|
10019
10021
|
} : {
|
|
10020
|
-
cardName: (card === null || card === void 0 ? void 0 : card.firstName) + (card === null || card === void 0 ? void 0 : card.
|
|
10022
|
+
cardName: (card === null || card === void 0 ? void 0 : card.firstName) + (card !== null && card !== void 0 && card.firstName ? ' ' + (card === null || card === void 0 ? void 0 : card.lastName) : card === null || card === void 0 ? void 0 : card.lastName)
|
|
10021
10023
|
};
|
|
10022
10024
|
ecommerceCustomPaymentDto = _extends({}, cardData, {
|
|
10023
10025
|
cardNumber: card === null || card === void 0 ? void 0 : card.cardNumber,
|