@nuskin/ns-shop 7.8.1-mdigi-198.1 → 7.8.1-pa-895.1
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/package.json
CHANGED
|
@@ -166,7 +166,6 @@ const createDataFromSkuSearch = async (searchData, options) => {
|
|
|
166
166
|
product.benefits = searchData.benefits;
|
|
167
167
|
product.usage = searchData.usage;
|
|
168
168
|
product.resources = searchData.resources;
|
|
169
|
-
product.backOrderDate = searchData.backorderedAvailableDate;
|
|
170
169
|
// product.videos = searchData.???;
|
|
171
170
|
// product.contentSection =searchData.???;
|
|
172
171
|
// product.sizeWeight = ???;
|
|
@@ -189,7 +189,9 @@ let PickupUtil = function() {
|
|
|
189
189
|
shipData.country === storedShipData.country &&
|
|
190
190
|
shipData.postalCode === storedShipData.postalCode &&
|
|
191
191
|
shipData.line1 === storedShipData.line1 &&
|
|
192
|
-
shipData.
|
|
192
|
+
shipData.line2 === storedShipData.line2 &&
|
|
193
|
+
shipData.city === storedShipData.city &&
|
|
194
|
+
shipData.weight === storedShipData.weight
|
|
193
195
|
}
|
|
194
196
|
return same
|
|
195
197
|
}
|