@marvalt/digivalt-core 0.2.1 → 0.2.3

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/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.3] - 2026-04-03
9
+
10
+ ### Changed
11
+ - Dependencies: `@marvalt/wadapter` ^2.3.57 (aligned with npm publish). `@marvalt/madapter` remains `^2.3.7` (includes **2.3.8** once that patch is published).
12
+
13
+ ## [0.2.2] - 2026-04-03
14
+
15
+ ### Changed
16
+ - `useStaticDataInfo` default `frontend_id` / `frontend_name` when env vars are unset: use `default` and `DigiValt` instead of the removed legacy app id (aligns with WordPress “Default Frontend” slug and current repo layout).
17
+
8
18
  ## [0.2.1] - 2026-03-30
9
19
 
10
20
  ### Changed
@@ -34,7 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
44
 
35
45
  ### Added
36
46
  - Initial scaffolding of `@marvalt/digivalt-core` NPM package
37
- - Ported static data generation and environment configuration from `digivalt-core-v1`
47
+ - Ported static data generation and environment configuration from the former monolithic DigiValt app (legacy `digivalt-core-v1`)
38
48
  - Integrated runtime logic and service adapters (`suitecrm`, `mautic`, `wordpress`, `gravityForms`)
39
49
  - Consolidated dynamic hooks (`useCaseStudies`, `useMautic`, `useSuiteCRM`, `useWordPressData`, etc.)
40
50
  - Exported base UI organisms and molecule components configured to work with the overarching app Shadcn UI elements
package/README.md CHANGED
@@ -8,6 +8,8 @@ Core DigiVAlt package for static data generation, runtime service wiring, and Cl
8
8
  npm install @marvalt/digivalt-core
9
9
  ```
10
10
 
11
+ In the **DigiValt monorepo**, **`digivalt-landing`** is the reference Vite app used to test this package with WordPress plugins and Cloudflare Pages.
12
+
11
13
  ## Entry Points
12
14
 
13
15
  Prefer explicit subpath imports so Node/build-time code does not pull browser runtime modules:
package/dist/index.cjs CHANGED
@@ -2487,7 +2487,7 @@ var index = /*#__PURE__*/Object.freeze({
2487
2487
  * Core integration library for DigiVAlt React apps
2488
2488
  */
2489
2489
  const getDigiValtVersion = () => {
2490
- return "0.2.0";
2490
+ return "0.2.3";
2491
2491
  };
2492
2492
 
2493
2493
  exports.generateAllData = generateAllData;
package/dist/index.esm.js CHANGED
@@ -2485,7 +2485,7 @@ var index = /*#__PURE__*/Object.freeze({
2485
2485
  * Core integration library for DigiVAlt React apps
2486
2486
  */
2487
2487
  const getDigiValtVersion = () => {
2488
- return "0.2.0";
2488
+ return "0.2.3";
2489
2489
  };
2490
2490
 
2491
2491
  export { generateAllData, generateGravityFormsData, generateMauticData, generateSuiteCRMData, generateWordPressData, index as generators, getDigiValtVersion };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marvalt/digivalt-core",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Core glue logic and shared context for DigiVAlt frontend applications",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "main": "dist/index.cjs",
@@ -90,7 +90,7 @@
90
90
  "@marvalt/sadapter": "^0.1.5",
91
91
  "@marvalt/shcoder": "^0.1.35",
92
92
  "@marvalt/tadapter": "^1.0.12",
93
- "@marvalt/wadapter": "^2.3.56",
93
+ "@marvalt/wadapter": "^2.3.57",
94
94
  "@marvalt/wparser": "^0.1.79",
95
95
  "@radix-ui/react-toast": "^1.2.15",
96
96
  "class-variance-authority": "^0.7.1",