@namiml/sdk-core 3.4.4-dev.202607072357 → 3.4.4-dev.202607080622

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
@@ -98,7 +98,7 @@ const {
98
98
  // version — stamped by scripts/version.sh
99
99
  NAMI_SDK_VERSION: exports.NAMI_SDK_VERSION = "3.4.4",
100
100
  // full package version including dev suffix — stamped by scripts/version.sh
101
- NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.4-dev.202607072357",
101
+ NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.4-dev.202607080622",
102
102
  // environments
103
103
  PRODUCTION: exports.PRODUCTION = "production", DEVELOPMENT: exports.DEVELOPMENT = "development",
104
104
  // error messages
package/dist/index.d.ts CHANGED
@@ -555,9 +555,11 @@ type NamiPaywallActionHandler = (event: NamiPaywallEvent) => void;
555
555
  *
556
556
  * Values are matched strictly by type: the string "true" and the boolean true are
557
557
  * distinct values that never compare equal. A key present with any non-null value —
558
- * including false or "false" — is considered "set".
558
+ * including false or "false" — is considered "set". Passing `null` (or omitting the
559
+ * key) means the attribute is not set; a null value is treated as unset when evaluating
560
+ * flow conditions.
559
561
  */
560
- type NamiCustomAttributeValue = string | boolean | number;
562
+ type NamiCustomAttributeValue = string | boolean | number | null;
561
563
  /**
562
564
  * @type NamiPaywallLaunchContext
563
565
  * Will be used to pass custom context while launching paywall
package/dist/index.mjs CHANGED
@@ -96,7 +96,7 @@ const {
96
96
  // version — stamped by scripts/version.sh
97
97
  NAMI_SDK_VERSION = "3.4.4",
98
98
  // full package version including dev suffix — stamped by scripts/version.sh
99
- NAMI_SDK_PACKAGE_VERSION = "3.4.4-dev.202607072357",
99
+ NAMI_SDK_PACKAGE_VERSION = "3.4.4-dev.202607080622",
100
100
  // environments
101
101
  PRODUCTION = "production", DEVELOPMENT = "development",
102
102
  // error messages
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@namiml/sdk-core",
3
- "version": "3.4.4-dev.202607072357",
3
+ "version": "3.4.4-dev.202607080622",
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",