@fileverse-dev/formulajs 4.4.11-mod-89-patch-3 → 4.4.11-mod-90

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/lib/cjs/index.cjs CHANGED
@@ -18487,7 +18487,7 @@ async function GNOSISPAY() {
18487
18487
  const GNOSIS_PAY_ACCESS = window.localStorage.getItem('GNOSIS_PAY_ACCESS');
18488
18488
 
18489
18489
  if(!GNOSIS_PAY_ACCESS){
18490
- throw new MissingApiKeyError('GNOSIS_PAY_ACCESS')
18490
+ throw new ValidationError('Gnosispay access is required. Grant access to query your account')
18491
18491
  }
18492
18492
  const access = JSON.parse(GNOSIS_PAY_ACCESS);
18493
18493
  if(!access?.token || isExpired(access?.createdAt)){
package/lib/esm/index.mjs CHANGED
@@ -18485,7 +18485,7 @@ async function GNOSISPAY() {
18485
18485
  const GNOSIS_PAY_ACCESS = window.localStorage.getItem('GNOSIS_PAY_ACCESS');
18486
18486
 
18487
18487
  if(!GNOSIS_PAY_ACCESS){
18488
- throw new MissingApiKeyError('GNOSIS_PAY_ACCESS')
18488
+ throw new ValidationError('Gnosispay access is required. Grant access to query your account')
18489
18489
  }
18490
18490
  const access = JSON.parse(GNOSIS_PAY_ACCESS);
18491
18491
  if(!access?.token || isExpired(access?.createdAt)){
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.11-mod-89-patch-3",
3
+ "version": "4.4.11-mod-90",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {