@nuskin/product-components 3.17.17-pur-1420.2 → 3.17.17
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/.releaserc +1 -1
- package/docs/CHANGELOG.md +1 -1
- package/gl-sbom-npm-yarn.cdx.json +2 -2
- package/package.json +1 -1
- package/services/NsProductDataService.js +3 -5
package/.releaserc
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [3.17.17
|
|
1
|
+
## [3.17.17](https://code.tls.nuskin.io/ns-am/ux/product-components/compare/v3.17.16...v3.17.17) (2024-11-20)
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bomFormat": "CycloneDX",
|
|
3
3
|
"specVersion": "1.4",
|
|
4
|
-
"serialNumber": "urn:uuid:
|
|
4
|
+
"serialNumber": "urn:uuid:bba6df65-db95-4cef-a45c-032296bfa4ee",
|
|
5
5
|
"version": 1,
|
|
6
6
|
"metadata": {
|
|
7
|
-
"timestamp": "2024-11-
|
|
7
|
+
"timestamp": "2024-11-20T20:44:19Z",
|
|
8
8
|
"tools": [
|
|
9
9
|
{
|
|
10
10
|
"vendor": "GitLab",
|
package/package.json
CHANGED
|
@@ -9,10 +9,7 @@ import { isNullOrEmpty } from "@nuskin/ns-common-lib";
|
|
|
9
9
|
import { ProductDataService } from "@nuskin/ns-product";
|
|
10
10
|
import { Product, PriceType } from "@nuskin/ns-product-lib";
|
|
11
11
|
import { equinoxLocalStorage } from "@nuskin/ns-util";
|
|
12
|
-
import {
|
|
13
|
-
getConfiguration,
|
|
14
|
-
getCachedConfiguration
|
|
15
|
-
} from "@nuskin/configuration-sdk";
|
|
12
|
+
import { getConfiguration } from "@nuskin/configuration-sdk";
|
|
16
13
|
|
|
17
14
|
class ProductDataBatch {
|
|
18
15
|
constructor(id, skus) {
|
|
@@ -272,7 +269,8 @@ if (!NsProductDataService) {
|
|
|
272
269
|
return;
|
|
273
270
|
}
|
|
274
271
|
|
|
275
|
-
const equinoxMarketConfig =
|
|
272
|
+
const equinoxMarketConfig = await getConfiguration(["Equinox_Markets"]);
|
|
273
|
+
// const equinoxMarketConfig = getCachedConfiguration("Equinox_Markets");
|
|
276
274
|
|
|
277
275
|
// product data response has products
|
|
278
276
|
if (productData.count && productData.products.length) {
|