@verifiquemos/sdk 0.1.6 → 0.1.8
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 +37 -0
- package/dist/index.d.mts +464 -316
- package/dist/index.d.ts +464 -316
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,43 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@verifiquemos/sdk` will be documented here.
|
|
4
4
|
|
|
5
|
+
## [0.1.8] - 2026-05-31
|
|
6
|
+
|
|
7
|
+
Generated-types release — no functional changes.
|
|
8
|
+
|
|
9
|
+
### Internal
|
|
10
|
+
- `src/generated.ts` regenerated from `verifiquemos-api/openapi.json`
|
|
11
|
+
(api 0.35.2). Cumulative refresh after ~13 api releases — the
|
|
12
|
+
previous regen was against api 0.22.4 — net +684/-21 lines. New
|
|
13
|
+
paths and component schemas land for OAuth flows
|
|
14
|
+
(`/auth/oauth/{provider}/start`, `/callback`, `/bridge-claim`,
|
|
15
|
+
`/link-confirm`, `/signup-complete`), identity management
|
|
16
|
+
(`/auth/identities`, `/auth/identities/{id}`), invitations
|
|
17
|
+
(`/invites/{token}`, `/invites/{token}/accept`,
|
|
18
|
+
`/tenants/{tenant_id}/invites`), CSP reports
|
|
19
|
+
(`/security/csp-report`, `/security/csp-reports`), admin user
|
|
20
|
+
unlock (`/admin/users/{user_id}/unlock`), password policy + history
|
|
21
|
+
(`ChangePasswordRequest`, `PasswordPolicySettings`), IP allowlist
|
|
22
|
+
(`IpEnforcementMode` literal union, `IpAllowlistSettings`), special
|
|
23
|
+
conditions (`SpecialConditionFlagOut`, `ConsolidatedConditionsOut`,
|
|
24
|
+
`ListMatchSummaryOut` — M23), and countries / sanctions endpoints.
|
|
25
|
+
Convenience aliases in `src/types.ts` unchanged — no new endpoints
|
|
26
|
+
were wrapped, so SDK callers see the same public surface as 0.1.7;
|
|
27
|
+
the new types become reachable via the `components["schemas"][…]`
|
|
28
|
+
and `paths[…]` accessors on the `generated.ts` re-export.
|
|
29
|
+
|
|
30
|
+
## [0.1.7] - 2026-05-28
|
|
31
|
+
|
|
32
|
+
Generated-types release — no functional changes.
|
|
33
|
+
|
|
34
|
+
### Internal
|
|
35
|
+
- `src/generated.ts` regenerated from `verifiquemos-api/openapi.json`
|
|
36
|
+
(api 0.22.4). The api cycle 0.22.0 → 0.22.4 made no endpoint
|
|
37
|
+
signature or response-shape changes; the +1031/-1031 diff is fully
|
|
38
|
+
symmetric — `openapi-typescript` re-emits types in source order after
|
|
39
|
+
the OpenAPI top-level keys were reordered upstream. No consumer
|
|
40
|
+
should see a behavior change.
|
|
41
|
+
|
|
5
42
|
## [0.1.6] - 2026-05-26
|
|
6
43
|
|
|
7
44
|
Documentation release — no functional changes.
|