@namiml/sdk-core 3.4.8-dev.202608051437 → 3.4.8-dev.202608070246

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
@@ -106,7 +106,7 @@ const {
106
106
  // version — stamped by scripts/version.sh
107
107
  NAMI_SDK_VERSION: exports.NAMI_SDK_VERSION = "3.4.8",
108
108
  // full package version including dev suffix — stamped by scripts/version.sh
109
- NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.8-dev.202608051437",
109
+ NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.8-dev.202608070246",
110
110
  // environments
111
111
  PRODUCTION: exports.PRODUCTION = "production", DEVELOPMENT: exports.DEVELOPMENT = "development",
112
112
  // error messages
@@ -61464,7 +61464,7 @@ class NamiRefs {
61464
61464
  const rawCampaigns = await campaignRepo.fetchCampaignRulesRaw();
61465
61465
  const campaignRulesDuration = Date.now() - campaignRulesStartTime;
61466
61466
  // Hydrate flow objects: fetch flow JSON from flow.url for campaigns that
61467
- // use the new URL-based format (3.4.0+) instead of inline flow.object
61467
+ // use the URL-based format (4.0.0+ since NAM-3493) instead of inline flow.object
61468
61468
  await Promise.all(rawCampaigns
61469
61469
  .filter((c) => c.flow?.url && !c.flow.object)
61470
61470
  .map(async (c) => {
package/dist/index.mjs CHANGED
@@ -104,7 +104,7 @@ const {
104
104
  // version — stamped by scripts/version.sh
105
105
  NAMI_SDK_VERSION = "3.4.8",
106
106
  // full package version including dev suffix — stamped by scripts/version.sh
107
- NAMI_SDK_PACKAGE_VERSION = "3.4.8-dev.202608051437",
107
+ NAMI_SDK_PACKAGE_VERSION = "3.4.8-dev.202608070246",
108
108
  // environments
109
109
  PRODUCTION = "production", DEVELOPMENT = "development",
110
110
  // error messages
@@ -61462,7 +61462,7 @@ class NamiRefs {
61462
61462
  const rawCampaigns = await campaignRepo.fetchCampaignRulesRaw();
61463
61463
  const campaignRulesDuration = Date.now() - campaignRulesStartTime;
61464
61464
  // Hydrate flow objects: fetch flow JSON from flow.url for campaigns that
61465
- // use the new URL-based format (3.4.0+) instead of inline flow.object
61465
+ // use the URL-based format (4.0.0+ since NAM-3493) instead of inline flow.object
61466
61466
  await Promise.all(rawCampaigns
61467
61467
  .filter((c) => c.flow?.url && !c.flow.object)
61468
61468
  .map(async (c) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@namiml/sdk-core",
3
- "version": "3.4.8-dev.202608051437",
3
+ "version": "3.4.8-dev.202608070246",
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",