@tuwaio/pulsar-react 0.4.2 → 0.4.4

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -4,15 +4,15 @@
4
4
  [![License](https://img.shields.io/npm/l/@tuwaio/pulsar-react.svg)](./LICENSE)
5
5
  [![Build Status](https://img.shields.io/github/actions/workflow/status/TuwaIO/pulsar-core/release.yml?branch=main)](https://github.com/TuwaIO/pulsar-core/actions)
6
6
 
7
- Official React bindings for the Pulsar Engine. This package provides the essential **`useInitializeTransactionsPool`** hook to seamlessly integrate Pulsar's state with your application's lifecycle.
7
+ Global React context bindings, hooks, and transaction pool initializers for orchestrating framework-agnostic Pulsar stores.
8
8
 
9
9
  ---
10
10
 
11
11
  ## 🏛️ What is `@tuwaio/pulsar-react`?
12
12
 
13
- This package is the official bridge between the framework-agnostic `@tuwaio/pulsar-core` and a React application. It provides hooks and utilities that simplify the process of connecting Pulsar's state management to the React component lifecycle.
13
+ This package serves as the integration layer between the framework-agnostic `@tuwaio/pulsar-core` headless state machine and React. It provides global bindings, hooks, and transaction pool initializers to orchestrate Pulsar stores within the React component lifecycle.
14
14
 
15
- Its primary role is to ensure that transaction tracking can resume reliably after a page reload.
15
+ Its primary role is to execute `useInitializeTransactionsPool` to resume pending transaction tracking automatically across client-side refreshes.
16
16
 
17
17
  ---
18
18
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@tuwaio/pulsar-react",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
7
- "description": "Provides React bindings for the Pulsar Engine, including the essential `useInitializeTransactionsPool` hook to resume tracking pending transactions after a page reload.",
7
+ "description": "Global React context bindings, hooks, and transaction pool initializers for orchestrating framework-agnostic Pulsar stores.",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",
10
10
  "types": "./dist/index.d.ts",
@@ -41,8 +41,8 @@
41
41
  "react": ">=19.2.3"
42
42
  },
43
43
  "devDependencies": {
44
- "@types/react": "^19.2.14",
45
- "react": "^19.2.6",
44
+ "@types/react": "^19.2.17",
45
+ "react": "^19.2.7",
46
46
  "tsup": "^8.5.1",
47
47
  "typescript": "^6.0.3"
48
48
  },