@lacspace/idempotency 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -97,7 +97,7 @@ Across processes/instances (shared store), a second call finds an in-progress re
97
97
 
98
98
  ## Licensing
99
99
 
100
- This package is **free** under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; just keep the notice.
100
+ This package is **free** under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; just keep the notice.
101
101
 
102
102
  Not every Lacspace package is free. We also offer **Commercial** (paid), **Client-specific**, and **Private** (proprietary) packages under separate terms. See the full **[Lacspace Licence Centre](https://lacspace.com/licenses)**.
103
103
 
@@ -107,14 +107,14 @@ Not every Lacspace package is free. We also offer **Commercial** (paid), **Clien
107
107
 
108
108
  ## The Lacspace Developer Platform
109
109
 
110
- `@lacspace/idempotency` is part of **63 zero-dependency, isomorphic TypeScript packages** — one standard library for the modern web. Explore the ecosystem:
110
+ `@lacspace/idempotency` is part of **80+ zero-dependency, isomorphic TypeScript packages** — one standard library for the modern web. Explore the ecosystem:
111
111
 
112
112
  - 📦 **This package, documented** — https://developer.lacspace.com/packages/idempotency
113
- - 🗂️ **All 63 packages** — https://developer.lacspace.com/packages
113
+ - 🗂️ **All 80+ packages** — https://developer.lacspace.com/packages
114
114
  - 🧭 **Developer handbook** — guides & runnable recipes — https://developer.lacspace.com/handbook
115
115
  - 🧪 **Live playground** — run any package in your browser — https://developer.lacspace.com/playground
116
116
  - 🖥️ **Finished app templates** — https://templates.lacspace.com
117
117
  - 🚀 **Scaffold a full app** — `npm create lacspace-app@latest`
118
118
 
119
- Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
119
+ Free under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
120
120
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lacspace/idempotency",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Make any operation exactly-once with an idempotency key — replay stored results on retries, safe under concurrency, with optional request fingerprinting. Framework-agnostic, pluggable store, zero-dependency, isomorphic.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",