@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "branches": [
3
- "master", {"name":"PUR-1420", "channel":"prerelease", "prerelease":"pur-1420"}
3
+ "master"
4
4
  ],
5
5
  "plugins": [
6
6
  "@semantic-release/release-notes-generator",
package/docs/CHANGELOG.md CHANGED
@@ -1 +1 @@
1
- ## [3.17.17-pur-1420.2](https://code.tls.nuskin.io/ns-am/ux/product-components/compare/v3.17.17-pur-1420.1...v3.17.17-pur-1420.2) (2024-11-20)
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:15622d55-dbe4-441f-9bfa-9711f9bfd2aa",
4
+ "serialNumber": "urn:uuid:bba6df65-db95-4cef-a45c-032296bfa4ee",
5
5
  "version": 1,
6
6
  "metadata": {
7
- "timestamp": "2024-11-20T09:22:21Z",
7
+ "timestamp": "2024-11-20T20:44:19Z",
8
8
  "tools": [
9
9
  {
10
10
  "vendor": "GitLab",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/product-components",
3
- "version": "3.17.17-pur-1420.2",
3
+ "version": "3.17.17",
4
4
  "description": "Nu Skin Product Components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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 = getCachedConfiguration("Equinox_Markets");
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) {