@namiml/sdk-core 3.4.0-dev.202604011456 → 3.4.0-dev.202604012247

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.cjs CHANGED
@@ -123,7 +123,7 @@ const {
123
123
  // version — stamped by scripts/version.sh
124
124
  NAMI_SDK_VERSION: exports.NAMI_SDK_VERSION = "3.4.0",
125
125
  // full package version including dev suffix — stamped by scripts/version.sh
126
- NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.0-dev.202604011456",
126
+ NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.0-dev.202604012247",
127
127
  // environments
128
128
  PRODUCTION: exports.PRODUCTION = "production", DEVELOPMENT: exports.DEVELOPMENT = "development",
129
129
  // error messages
@@ -200,7 +200,7 @@ const logger = new Logger();
200
200
 
201
201
  /**
202
202
  * Creates an array with all falsey values removed. The values `false`, `null`,
203
- * `0`, `""`, `undefined`, and `NaN` are falsey.
203
+ * `0`, `-0`, `0n`, `""`, `undefined`, and `NaN` are falsy.
204
204
  *
205
205
  * @static
206
206
  * @memberOf _
@@ -1060,7 +1060,7 @@ function setCacheAdd(value) {
1060
1060
  * @name has
1061
1061
  * @memberOf SetCache
1062
1062
  * @param {*} value The value to search for.
1063
- * @returns {number} Returns `true` if `value` is found, else `false`.
1063
+ * @returns {boolean} Returns `true` if `value` is found, else `false`.
1064
1064
  */
1065
1065
  function setCacheHas(value) {
1066
1066
  return this.__data__.has(value);
package/dist/index.mjs CHANGED
@@ -121,7 +121,7 @@ const {
121
121
  // version — stamped by scripts/version.sh
122
122
  NAMI_SDK_VERSION = "3.4.0",
123
123
  // full package version including dev suffix — stamped by scripts/version.sh
124
- NAMI_SDK_PACKAGE_VERSION = "3.4.0-dev.202604011456",
124
+ NAMI_SDK_PACKAGE_VERSION = "3.4.0-dev.202604012247",
125
125
  // environments
126
126
  PRODUCTION = "production", DEVELOPMENT = "development",
127
127
  // error messages
@@ -198,7 +198,7 @@ const logger = new Logger();
198
198
 
199
199
  /**
200
200
  * Creates an array with all falsey values removed. The values `false`, `null`,
201
- * `0`, `""`, `undefined`, and `NaN` are falsey.
201
+ * `0`, `-0`, `0n`, `""`, `undefined`, and `NaN` are falsy.
202
202
  *
203
203
  * @static
204
204
  * @memberOf _
@@ -1058,7 +1058,7 @@ function setCacheAdd(value) {
1058
1058
  * @name has
1059
1059
  * @memberOf SetCache
1060
1060
  * @param {*} value The value to search for.
1061
- * @returns {number} Returns `true` if `value` is found, else `false`.
1061
+ * @returns {boolean} Returns `true` if `value` is found, else `false`.
1062
1062
  */
1063
1063
  function setCacheHas(value) {
1064
1064
  return this.__data__.has(value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@namiml/sdk-core",
3
- "version": "3.4.0-dev.202604011456",
3
+ "version": "3.4.0-dev.202604012247",
4
4
  "description": "Platform-agnostic core for the Nami SDK — business logic, API, types, and state management",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",