@possibl/rcrt-sdk 0.1.0 → 0.1.1
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 +20 -0
- package/package.json +2 -2
- package/src/cards.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/);
|
|
|
5
5
|
this package follows [SemVer](https://semver.org/spec/v2.0.0.html) once
|
|
6
6
|
published.
|
|
7
7
|
|
|
8
|
+
## [0.1.1] — 2026-04-30
|
|
9
|
+
|
|
10
|
+
Patch release. The SDK ships TypeScript source directly (`main:
|
|
11
|
+
./src/index.ts`), which means consumer tsconfigs compile it. Stricter
|
|
12
|
+
consumer settings (e.g. `noUnusedLocals: true` in
|
|
13
|
+
`possibl-ai/ritual-app`) caught a stray unused import in `cards.ts`
|
|
14
|
+
that the SDK's own tsconfig let pass.
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Removed unused `ApiError` import in `src/cards.ts`. Consumers with
|
|
19
|
+
`noUnusedLocals: true` no longer fail the type-check on the SDK's
|
|
20
|
+
source.
|
|
21
|
+
|
|
22
|
+
### Internal
|
|
23
|
+
|
|
24
|
+
- Added `noUnusedLocals: true` + `noUnusedParameters: true` to the
|
|
25
|
+
SDK's own `tsconfig.json` so future bumps can't ship the same class
|
|
26
|
+
of issue. CI catches it before publish.
|
|
27
|
+
|
|
8
28
|
## [0.1.0] — 2026-04-30
|
|
9
29
|
|
|
10
30
|
First public release. Drops the `-alpha.1` suffix; signals the SDK is
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@possibl/rcrt-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeScript SDK for the RCRT multi-tenant AI BaaS — isomorphic (web + node + React Native)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
36
|
-
"url": "https://github.com/possibl-ai/rcrt-v2",
|
|
36
|
+
"url": "git+https://github.com/possibl-ai/rcrt-v2.git",
|
|
37
37
|
"directory": "packages/rcrt-sdk"
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://github.com/possibl-ai/rcrt-v2/tree/development/packages/docs",
|
package/src/cards.ts
CHANGED
|
@@ -10,7 +10,6 @@ import type { FetchContext } from './internal/fetch.js';
|
|
|
10
10
|
import { request } from './internal/fetch.js';
|
|
11
11
|
import type { Breadcrumb } from './types/breadcrumb.js';
|
|
12
12
|
import type { Card, ResolveRequest } from './types/card.js';
|
|
13
|
-
import { ApiError } from './errors.js';
|
|
14
13
|
|
|
15
14
|
export class CardsModule {
|
|
16
15
|
constructor(private readonly ctx: FetchContext) {}
|