@possibl/rcrt-sdk 0.1.0 → 0.1.2

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,32 @@ 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.2] — 2026-04-30
9
+
10
+ Docs-only patch. Removes a customer reference from the README that
11
+ shouldn't have been published — content of the package itself is
12
+ unchanged from 0.1.1.
13
+
14
+ ## [0.1.1] — 2026-04-30
15
+
16
+ Patch release. The SDK ships TypeScript source directly (`main:
17
+ ./src/index.ts`), which means consumer tsconfigs compile it. Stricter
18
+ consumer settings (e.g. `noUnusedLocals: true` in
19
+ `possibl-ai/ritual-app`) caught a stray unused import in `cards.ts`
20
+ that the SDK's own tsconfig let pass.
21
+
22
+ ### Fixed
23
+
24
+ - Removed unused `ApiError` import in `src/cards.ts`. Consumers with
25
+ `noUnusedLocals: true` no longer fail the type-check on the SDK's
26
+ source.
27
+
28
+ ### Internal
29
+
30
+ - Added `noUnusedLocals: true` + `noUnusedParameters: true` to the
31
+ SDK's own `tsconfig.json` so future bumps can't ship the same class
32
+ of issue. CI catches it before publish.
33
+
8
34
  ## [0.1.0] — 2026-04-30
9
35
 
10
36
  First public release. Drops the `-alpha.1` suffix; signals the SDK is
package/README.md CHANGED
@@ -143,9 +143,8 @@ Full narrative + concepts + operations playbook in
143
143
  ## Status
144
144
 
145
145
  **0.1.0** — first public release. Used by `possibl-ai/rcrt-template-mobile`
146
- and downstream apps (e.g. `possibl-ai/ritual-app`, `possibl-ai/properlii-mobile`)
147
- as their canonical RCRT client. Surface stable; minor adjustments
148
- possible before 1.0.
146
+ and downstream apps (e.g. `possibl-ai/ritual-app`) as their canonical
147
+ RCRT client. Surface stable; minor adjustments possible before 1.0.
149
148
 
150
149
  See [`CHANGELOG.md`](./CHANGELOG.md) for what's new in this release.
151
150
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@possibl/rcrt-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
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) {}