pi-free 2.2.2 → 2.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 +12 -0
- package/config.ts +702 -702
- package/index.ts +418 -419
- package/package.json +1 -1
- package/providers/bai/bai.ts +237 -237
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.2.3] - 2026-06-19
|
|
11
|
+
|
|
12
|
+
### Refactored
|
|
13
|
+
|
|
14
|
+
- `index.ts`: Introduce a `UNIQUE_PROVIDERS` array as the single source
|
|
15
|
+
of truth for the provider list. `Promise.allSettled` now maps over
|
|
16
|
+
it instead of a hardcoded 14-element literal, so adding a new
|
|
17
|
+
provider is a one-line change in the array (DRYKISS DRY finding).
|
|
18
|
+
- `index.ts`: Trim the outdated top-level docstring; point to
|
|
19
|
+
`UNIQUE_PROVIDERS` and `README.md` for the full provider catalog
|
|
20
|
+
(DRYKISS Documentation finding).
|
|
21
|
+
|
|
10
22
|
## [2.2.2] - 2026-06-19
|
|
11
23
|
|
|
12
24
|
### Refactored
|