@nvisy/sdk 0.12.0 → 0.14.0
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 +39 -1
- package/README.md +1 -7
- package/dist/auth/index.d.ts +1 -1
- package/dist/{client-C70LS0n6.d.ts → client-CosP4Ux4.d.ts} +5 -19
- package/dist/client-CosP4Ux4.d.ts.map +1 -0
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{errors-DEIpR751.d.ts → errors-B8mXPFhV.d.ts} +2 -2
- package/dist/{errors-DEIpR751.d.ts.map → errors-B8mXPFhV.d.ts.map} +1 -1
- package/dist/{index-DJSrXmm0.d.ts → index-DTr3_MW7.d.ts} +1634 -1157
- package/dist/index-DTr3_MW7.d.ts.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/services/index.d.ts +1 -1
- package/dist/services/index.js +1 -1
- package/dist/{services-CL2QOOlO.js → services-Dhtn3sVT.js} +3 -29
- package/dist/services-Dhtn3sVT.js.map +1 -0
- package/dist/webhooks/index.d.ts +2 -2
- package/package.json +11 -5
- package/dist/client-C70LS0n6.d.ts.map +0 -1
- package/dist/index-DJSrXmm0.d.ts.map +0 -1
- package/dist/services-CL2QOOlO.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,42 @@ and this project adheres to
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.14.0] - 2026-08-09
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- `PolicyTemplate` datatype, the built-in template a new policy can be based
|
|
16
|
+
on via `CreatePolicy.template` (`"hipaa_safe_harbor"`, `"gdpr_article9"`,
|
|
17
|
+
`"pci_dss_pan_truncate"`, `"pci_dss_pan_hmac"`, `"ccpa"`)
|
|
18
|
+
- Policy-construction datatypes for building `CreatePolicy` / `UpdatePolicy`
|
|
19
|
+
bodies: rules (`PredicatedRule`, `TableRule`, `Predicate`,
|
|
20
|
+
`DocumentPredicate`), redactions (`ModalityRedactions`, `TextRedaction`,
|
|
21
|
+
`ImageRedaction`, `AudioRedaction`, `TabularRedaction`), retention
|
|
22
|
+
(`RetentionPolicy`, `Retention`, `RetentionScope`), the label vocabulary
|
|
23
|
+
(`Labels`, `LabelGroup`, `LabelEntry`, `LabelLocale`, `Label`,
|
|
24
|
+
`LocalizedText`), and detail types (`Color`, `Waveform`, `ClampBucket`,
|
|
25
|
+
`ConfidenceThreshold`, `DateStyle`, `DateGranularity`, `LanguageTag`,
|
|
26
|
+
`Sha2Algorithm`, `TerminalFallback`)
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- Regenerated the API schema against the updated platform handlers
|
|
31
|
+
- **BREAKING**: the detections result type is renamed `AnalyzedDocument` to
|
|
32
|
+
`Audit`. `runs.getDetections()` now resolves to `Audit`.
|
|
33
|
+
|
|
34
|
+
## [0.13.0] - 2026-08-05
|
|
35
|
+
|
|
36
|
+
### Changed
|
|
37
|
+
|
|
38
|
+
- Regenerated the API schema against the updated platform handlers
|
|
39
|
+
|
|
40
|
+
### Removed
|
|
41
|
+
|
|
42
|
+
- **BREAKING**: `account.getAvatar()` and `workspaces.getAvatar()`. Avatar
|
|
43
|
+
images are now served from a content-addressed path exposed as the
|
|
44
|
+
`avatarUrl` field on the account/workspace; fetch that URL directly.
|
|
45
|
+
Uploading (`uploadAvatar`) and deleting (`deleteAvatar`) are unchanged.
|
|
46
|
+
|
|
11
47
|
## [0.12.0] - 2026-08-05
|
|
12
48
|
|
|
13
49
|
### Added
|
|
@@ -299,7 +335,9 @@ and this project adheres to
|
|
|
299
335
|
- Network error handling for timeouts, DNS resolution, and connection issues
|
|
300
336
|
- Configuration validation with detailed error messages
|
|
301
337
|
|
|
302
|
-
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.
|
|
338
|
+
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.14.0...HEAD
|
|
339
|
+
[0.14.0]: https://github.com/nvisycom/sdk-ts/compare/v0.13.0...v0.14.0
|
|
340
|
+
[0.13.0]: https://github.com/nvisycom/sdk-ts/compare/v0.12.0...v0.13.0
|
|
303
341
|
[0.12.0]: https://github.com/nvisycom/sdk-ts/compare/v0.11.0...v0.12.0
|
|
304
342
|
[0.11.0]: https://github.com/nvisycom/sdk-ts/compare/v0.10.0...v0.11.0
|
|
305
343
|
[0.10.0]: https://github.com/nvisycom/sdk-ts/compare/v0.9.0...v0.10.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @nvisy/sdk
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@nvisy/sdk)
|
|
4
4
|
[](https://github.com/nvisycom/sdk-ts/actions/workflows/build.yml)
|
|
@@ -10,12 +10,6 @@ It combines deterministic patterns, NER, computer vision, and LLM-driven classif
|
|
|
10
10
|
into auditable, policy-driven pipelines built for regulated industries such as
|
|
11
11
|
healthcare, legal, government, and financial services.
|
|
12
12
|
|
|
13
|
-
> [!WARNING]
|
|
14
|
-
> **Active development: API not stable.** This project is under active
|
|
15
|
-
> development. Public APIs, configuration shapes, and on-disk formats may change
|
|
16
|
-
> without notice between releases. Pin a specific version if you depend on this
|
|
17
|
-
> in production.
|
|
18
|
-
|
|
19
13
|
## Installation
|
|
20
14
|
|
|
21
15
|
```bash
|
package/dist/auth/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as ClientConfig } from "../config-BRQp8Cat.js";
|
|
2
|
-
import {
|
|
2
|
+
import { dn as AuthToken, fn as Login, pn as Signup } from "../index-DTr3_MW7.js";
|
|
3
3
|
//#region src/auth/config.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Configuration options for standalone authentication functions.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as ClientConfig } from "./config-BRQp8Cat.js";
|
|
2
|
-
import { $t as
|
|
2
|
+
import { $t as ConnectionSyncPage, At as InviteSent, Bt as FilePage, Ct as CreateInvite, Dn as UpdateAccount, En as PublicAccount, Et as InviteCode, Gt as UpdateFile, H as PolicySummaryPage, Lt as Health, Nt as ListInvites, On as paths, Ot as InvitePage, Pt as ReplyInvite, Qt as ConnectionSync, R as Policy, Sn as ActivityPage, St as UpdateMember, T as CreatePolicy, Ut as ListFiles, Yt as Connection, Zt as ConnectionPage, _ as CreatePipelineRun, _n as ApiTokenWithJWT, _t as UpdateNotificationSettings, an as SyncConnection, b as PipelineRunStatus, bn as UpdateApiToken, bt as MemberPage, c as UpdateWebhook, cn as SyncStatus, ct as PipelineSummaryPage, dn as AuthToken, dt as CursorPagination, en as ConnectionVerification, et as UpdatePolicy, f as WebhookPage, fn as Login, g as Audit, gt as UnreadStatus, hn as ApiTokenPage, ht as NotificationSettings, i as WorkspacePage, kt as InvitePreview, l as Webhook, mn as ApiToken, mt as NotificationPage, n as UpdateWorkspace, nn as CreateConnection, nt as CreatePipeline, o as CreateWebhook, ot as PipelineStatus, p as WebhookResult, pn as Signup, r as Workspace, rt as Pipeline, s as TestWebhook, t as CreateWorkspace, u as WebhookCreated, un as UpdateConnection, ut as UpdatePipeline, v as PipelineRun, vn as CreateApiToken, vt as ListMembers, wn as Account$1, wt as GenerateInviteCode, y as PipelineRunPage, yt as Member, zt as File } from "./index-DTr3_MW7.js";
|
|
3
3
|
import { Client } from "openapi-fetch";
|
|
4
4
|
//#region src/services/account.d.ts
|
|
5
5
|
/**
|
|
@@ -34,13 +34,6 @@ declare class Account {
|
|
|
34
34
|
* @throws {ApiError} if the request fails
|
|
35
35
|
*/
|
|
36
36
|
getPublicAccount(username: string): Promise<PublicAccount>;
|
|
37
|
-
/**
|
|
38
|
-
* Download an account's avatar image
|
|
39
|
-
* @param username - Account username
|
|
40
|
-
* @returns Promise that resolves with the avatar response
|
|
41
|
-
* @throws {ApiError} if the request fails
|
|
42
|
-
*/
|
|
43
|
-
getAvatar(username: string): Promise<Response>;
|
|
44
37
|
/**
|
|
45
38
|
* Upload an account's avatar image
|
|
46
39
|
* @param username - Account username
|
|
@@ -550,13 +543,13 @@ declare class Runs {
|
|
|
550
543
|
*/
|
|
551
544
|
getRun(workspaceSlug: string, runId: string): Promise<PipelineRun>;
|
|
552
545
|
/**
|
|
553
|
-
* Get the detections (
|
|
546
|
+
* Get the detections (audit) for a pipeline run
|
|
554
547
|
* @param workspaceSlug - Workspace slug
|
|
555
548
|
* @param runId - Run ID
|
|
556
|
-
* @returns Promise that resolves with the
|
|
549
|
+
* @returns Promise that resolves with the audit
|
|
557
550
|
* @throws {ApiError} if the request fails
|
|
558
551
|
*/
|
|
559
|
-
getDetections(workspaceSlug: string, runId: string): Promise<
|
|
552
|
+
getDetections(workspaceSlug: string, runId: string): Promise<Audit>;
|
|
560
553
|
/**
|
|
561
554
|
* Apply redactions to a pipeline run
|
|
562
555
|
* @param workspaceSlug - Workspace slug
|
|
@@ -754,13 +747,6 @@ declare class Workspaces {
|
|
|
754
747
|
* @throws {ApiError} if the request fails
|
|
755
748
|
*/
|
|
756
749
|
updateNotificationSettings(workspaceSlug: string, settings: UpdateNotificationSettings): Promise<NotificationSettings>;
|
|
757
|
-
/**
|
|
758
|
-
* Download a workspace's avatar image
|
|
759
|
-
* @param workspaceSlug - Workspace slug
|
|
760
|
-
* @returns Promise that resolves with the avatar response
|
|
761
|
-
* @throws {ApiError} if the request fails
|
|
762
|
-
*/
|
|
763
|
-
getAvatar(workspaceSlug: string): Promise<Response>;
|
|
764
750
|
/**
|
|
765
751
|
* Upload a workspace's avatar image
|
|
766
752
|
* @param workspaceSlug - Workspace slug
|
|
@@ -917,4 +903,4 @@ declare class Nvisy {
|
|
|
917
903
|
}
|
|
918
904
|
//#endregion
|
|
919
905
|
export { Activities as _, Syncs as a, Policies as c, Members as d, Invites as f, ApiTokens as g, Auth as h, Webhooks as i, Pipelines as l, Connections as m, Nvisy as n, Status as o, Files as p, Workspaces as r, Runs as s, ApiClient as t, Notifications as u, Account as v };
|
|
920
|
-
//# sourceMappingURL=client-
|
|
906
|
+
//# sourceMappingURL=client-CosP4Ux4.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-CosP4Ux4.d.ts","names":[],"sources":["../src/services/account.ts","../src/services/activities.ts","../src/services/api-tokens.ts","../src/services/auth.ts","../src/services/connections.ts","../src/services/files.ts","../src/services/invites.ts","../src/services/members.ts","../src/services/notifications.ts","../src/services/pipelines.ts","../src/services/policies.ts","../src/services/runs.ts","../src/services/status.ts","../src/services/syncs.ts","../src/services/webhooks.ts","../src/services/workspaces.ts","../src/client.ts"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
export type { Account, AccountRef, Activity, ActivityPage, ActivityType,
|
|
1
|
+
import { $ as TextRedaction, $t as ConnectionSyncPage, A as Label, At as InviteSent, B as PolicyRule, Bt as FilePage, C as Color, Cn as ActivityType, Ct as CreateInvite, D as DateStyle, Dn as UpdateAccount, Dt as InviteExpiration, E as DateGranularity, En as PublicAccount, Et as InviteCode, F as LanguageTag, Ft as SortOrder, G as PredicatedRule, Gt as UpdateFile, H as PolicySummaryPage, Ht as FormatToken, I as LocalizedText, It as ComponentHealth, J as RetentionScope, Jt as AzureCredentials, K as Retention, Kt as ErrorResponse, L as ModalityRedactions, Lt as Health, M as LabelGroup, Mt as InviteStatus, N as LabelLocale, Nt as ListInvites, O as DocumentPredicate, Ot as InvitePage, P as Labels, Pt as ReplyInvite, Q as TerminalFallback, Qt as ConnectionSync, R as Policy, Rt as HealthStatus, S as ClampBucket, Sn as ActivityPage, St as UpdateMember, T as CreatePolicy, Tn as AccountRef, Tt as Invite, U as PolicyTemplate, Ut as ListFiles, V as PolicySummary, Vt as FileSource, W as Predicate, Wt as ModalityToken, X as TableRule, Xt as ConnectionConfig, Y as Sha2Algorithm, Yt as Connection, Z as TabularRedaction, Zt as ConnectionPage, _ as CreatePipelineRun, _n as ApiTokenWithJWT, _t as UpdateNotificationSettings, a as WorkspaceRole, an as SyncConnection, at as PipelineFilter, b as PipelineRunStatus, bn as UpdateApiToken, bt as MemberPage, c as UpdateWebhook, cn as SyncStatus, ct as PipelineSummaryPage, d as WebhookEvent, dn as AuthToken, dt as CursorPagination, en as ConnectionVerification, et as UpdatePolicy, f as WebhookPage, fn as Login, ft as Notification, g as Audit, gn as ApiTokenType, gt as UnreadStatus, h as Artifact, hn as ApiTokenPage, ht as NotificationSettings, i as WorkspacePage, in as S3Credentials, it as PipelineDefinition, j as LabelEntry, jt as InviteSortField, k as ImageRedaction, kt as InvitePreview, l as Webhook, ln as SyncTriggerType, lt as PipelineTriggerType, m as WebhookStatus, mn as ApiToken, mt as NotificationPage, n as UpdateWorkspace, nn as CreateConnection, nt as CreatePipeline, o as CreateWebhook, on as SyncDeletionPolicy, ot as PipelineStatus, p as WebhookResult, pn as Signup, pt as NotificationEvent, q as RetentionPolicy, qt as ValidationErrorDetail, r as Workspace, rn as GcsCredentials, rt as Pipeline, s as TestWebhook, sn as SyncMode, st as PipelineSummary, t as CreateWorkspace, tn as ConnectionsQuery, tt as Waveform, u as WebhookCreated, un as UpdateConnection, ut as UpdatePipeline, v as PipelineRun, vn as CreateApiToken, vt as ListMembers, w as ConfidenceThreshold, wn as Account, wt as GenerateInviteCode, x as AudioRedaction, xn as Activity, xt as MemberSortField, y as PipelineRunPage, yn as TokenExpiration, yt as Member, z as PolicyDefinition, zt as File } from "../index-DTr3_MW7.js";
|
|
2
|
+
export type { Account, AccountRef, Activity, ActivityPage, ActivityType, ApiToken, ApiTokenPage, ApiTokenType, ApiTokenWithJWT, Artifact, AudioRedaction, Audit, AuthToken, AzureCredentials, ClampBucket, Color, ComponentHealth, ConfidenceThreshold, Connection, ConnectionConfig, ConnectionPage, ConnectionSync, ConnectionSyncPage, ConnectionVerification, ConnectionsQuery, CreateApiToken, CreateConnection, CreateInvite, CreatePipeline, CreatePipelineRun, CreatePolicy, CreateWebhook, CreateWorkspace, CursorPagination, DateGranularity, DateStyle, DocumentPredicate, ErrorResponse, File, FilePage, FileSource, FormatToken, GcsCredentials, GenerateInviteCode, Health, HealthStatus, ImageRedaction, Invite, InviteCode, InviteExpiration, InvitePage, InvitePreview, InviteSent, InviteSortField, InviteStatus, Label, LabelEntry, LabelGroup, LabelLocale, Labels, LanguageTag, ListFiles, ListInvites, ListMembers, LocalizedText, Login, Member, MemberPage, MemberSortField, ModalityRedactions, ModalityToken, Notification, NotificationEvent, NotificationPage, NotificationSettings, Pipeline, PipelineDefinition, PipelineFilter, PipelineRun, PipelineRunPage, PipelineRunStatus, PipelineStatus, PipelineSummary, PipelineSummaryPage, PipelineTriggerType, Policy, PolicyDefinition, PolicyRule, PolicySummary, PolicySummaryPage, PolicyTemplate, Predicate, PredicatedRule, PublicAccount, ReplyInvite, Retention, RetentionPolicy, RetentionScope, S3Credentials, Sha2Algorithm, Signup, SortOrder, SyncConnection, SyncDeletionPolicy, SyncMode, SyncStatus, SyncTriggerType, TableRule, TabularRedaction, TerminalFallback, TestWebhook, TextRedaction, TokenExpiration, UnreadStatus, UpdateAccount, UpdateApiToken, UpdateConnection, UpdateFile, UpdateMember, UpdateNotificationSettings, UpdatePipeline, UpdatePolicy, UpdateWebhook, UpdateWorkspace, ValidationErrorDetail, Waveform, Webhook, WebhookCreated, WebhookEvent, WebhookPage, WebhookResult, WebhookStatus, Workspace, WorkspacePage, WorkspaceRole };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Kt as ErrorResponse } from "./index-DTr3_MW7.js";
|
|
2
2
|
//#region src/errors.d.ts
|
|
3
3
|
/**
|
|
4
4
|
* Base error class for all Nvisy SDK errors.
|
|
@@ -124,4 +124,4 @@ declare class NvisyApiError extends NvisyError implements ErrorResponse {
|
|
|
124
124
|
}
|
|
125
125
|
//#endregion
|
|
126
126
|
export { NvisyError as n, NvisyApiError as t };
|
|
127
|
-
//# sourceMappingURL=errors-
|
|
127
|
+
//# sourceMappingURL=errors-B8mXPFhV.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors-
|
|
1
|
+
{"version":3,"file":"errors-B8mXPFhV.d.ts","names":[],"sources":["../src/errors.ts"],"mappings":";;;;;;;;;;;;;;;;;;;cAgCa,mBAAmB;;;;WAIf;;;;;;EAOJ,YAAA;;;;;;;;;;;;;;;;;;;;;;;;cA4BA,sBAAsB,sBAAsB;;;;WAIxC;;;;WAKA;;;;;WAMA;;;;;WAMA;;;;;WAMA,aAAa;;;;WAKb;;;;;;;EAQJ,YAAA,UAAU,eAAe;;;;;;;;;EAkBrC;;;;;;;;;EAYA;;;;;;;;;EAYA;;;;;;;;EAeA,UAAU"}
|