@nvisy/sdk 0.15.0 → 0.16.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 +35 -1
- package/dist/auth/index.d.ts +1 -1
- package/dist/{client-C5Jt7cZW.d.ts → client-DhSBnaim.d.ts} +27 -3
- package/dist/client-DhSBnaim.d.ts.map +1 -0
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{errors-BjF5Dbju.d.ts → errors-CgzTgbga.d.ts} +2 -2
- package/dist/{errors-BjF5Dbju.d.ts.map → errors-CgzTgbga.d.ts.map} +1 -1
- package/dist/{index-BCjrTe_H.d.ts → index-Cd74EvDw.d.ts} +1920 -1754
- package/dist/index-Cd74EvDw.d.ts.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/services/index.d.ts +2 -2
- package/dist/services/index.js +2 -2
- package/dist/{services-Dhtn3sVT.js → services-BFK0sD1B.js} +31 -2
- package/dist/services-BFK0sD1B.js.map +1 -0
- package/dist/webhooks/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/client-C5Jt7cZW.d.ts.map +0 -1
- package/dist/index-BCjrTe_H.d.ts.map +0 -1
- package/dist/services-Dhtn3sVT.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,39 @@ and this project adheres to
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.16.0] - 2026-08-10
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- `catalog` service for reading the deployment's built-in catalogs:
|
|
16
|
+
`catalog.listLabels()` (`GET /catalog/labels/`) returns the label taxonomy,
|
|
17
|
+
and `catalog.listRecognizers()` (`GET /catalog/recognizers/`) returns the
|
|
18
|
+
engine's registered recognizers grouped into NER and LLM
|
|
19
|
+
- Catalog datatypes: `LabelCatalog`, `RecognizerCatalog`,
|
|
20
|
+
`RegisteredRecognizer`
|
|
21
|
+
- Detection-result datatypes (`src/datatypes/audit.ts`), the model
|
|
22
|
+
`runs.getDetections()` returns via `Audit`: the entity container
|
|
23
|
+
(`EntityGroup`, `AuditContext`, `EntityCoRef`), redaction rationale
|
|
24
|
+
(`Review`, `Attribution`, `LeakProfile`, `RuleMatch`), recognition detail
|
|
25
|
+
(`ModelEvent`, `PatternEvent`, `OperatorId`, `RangeOfUint`), geometry and
|
|
26
|
+
spans (`BoundingBox`, `Point`, `Polygon`, `Dimensions`, `TimeSpan`), and the
|
|
27
|
+
per-modality entity/event/hint/location/provenance/data types for text,
|
|
28
|
+
image, audio, and tabular content
|
|
29
|
+
- `ArtifactType` datatype, reachable from `Artifact`
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- Regenerated the API schema against the updated platform handlers
|
|
34
|
+
- The coverage audit now also flags schema types reachable from response
|
|
35
|
+
bodies the SDK returns (`Audit`, `Artifact`), not only request bodies
|
|
36
|
+
|
|
37
|
+
### Removed
|
|
38
|
+
|
|
39
|
+
- **Breaking:** `PredicatedRule`, `TableRule`, and `DocumentPredicate`
|
|
40
|
+
datatypes. The predicate grammar is now unified into the single `Predicate`
|
|
41
|
+
union, and the two rule shapes are inlined variants of `PolicyRule`
|
|
42
|
+
(`kind: "predicated"` / `kind: "table"`)
|
|
43
|
+
|
|
11
44
|
## [0.15.0] - 2026-08-09
|
|
12
45
|
|
|
13
46
|
### Added
|
|
@@ -357,7 +390,8 @@ and this project adheres to
|
|
|
357
390
|
- Network error handling for timeouts, DNS resolution, and connection issues
|
|
358
391
|
- Configuration validation with detailed error messages
|
|
359
392
|
|
|
360
|
-
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.
|
|
393
|
+
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.16.0...HEAD
|
|
394
|
+
[0.16.0]: https://github.com/nvisycom/sdk-ts/compare/v0.15.0...v0.16.0
|
|
361
395
|
[0.15.0]: https://github.com/nvisycom/sdk-ts/compare/v0.14.0...v0.15.0
|
|
362
396
|
[0.14.0]: https://github.com/nvisycom/sdk-ts/compare/v0.13.0...v0.14.0
|
|
363
397
|
[0.13.0]: https://github.com/nvisycom/sdk-ts/compare/v0.12.0...v0.13.0
|
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 { Hn as Login, Un as Signup, Vn as AuthToken } from "../index-Cd74EvDw.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 {
|
|
2
|
+
import { An as SyncConnection, Br as ApiTokenWithJWT, Bt as Member, Ct as CreatePipeline, Dt as PipelineStatus, Fn as SyncStatus, Ft as NotificationPage, G as CreatePolicy, Gr as ActivityPage, Gt as GenerateInviteCode, Hn as Login, It as NotificationSettings, Ln as UpdateConnection, Lr as ApiToken, Lt as UnreadStatus, Mt as CursorPagination, Rn as LabelCatalog, Rr as ApiTokenPage, Rt as UpdateNotificationSettings, Sn as ConnectionVerification, Un as Signup, Ur as UpdateApiToken, Ut as UpdateMember, Vn as AuthToken, Vr as CreateApiToken, Vt as MemberPage, Wt as CreateInvite, Xr as UpdateAccount, Xt as InvitePreview, Yr as PublicAccount, Yt as InvitePage, Zr as paths, Zt as InviteSent, _ as Audit, _n as Connection, b as PipelineRunPage, bn as ConnectionSync, c as UpdateWebhook, dt as PolicySummaryPage, en as ListInvites, f as WebhookPage, fn as UpdateFile, i as WorkspacePage, in as Health, jt as UpdatePipeline, kt as PipelineSummaryPage, l as Webhook, n as UpdateWorkspace, o as CreateWebhook, on as File, p as WebhookResult, qr as Account$1, qt as InviteCode, r as Workspace, s as TestWebhook, sn as FilePage, st as Policy, t as CreateWorkspace, tn as ReplyInvite, u as WebhookCreated, un as ListFiles, v as CreatePipelineRun, wn as CreateConnection, wt as Pipeline, x as PipelineRunStatus, xn as ConnectionSyncPage, xt as UpdatePolicy, y as PipelineRun, yn as ConnectionPage, zn as RecognizerCatalog, zt as ListMembers } from "./index-Cd74EvDw.js";
|
|
3
3
|
import { Client } from "openapi-fetch";
|
|
4
4
|
//#region src/services/account.d.ts
|
|
5
5
|
/**
|
|
@@ -142,6 +142,26 @@ declare class Auth {
|
|
|
142
142
|
logoutAccount(): Promise<void>;
|
|
143
143
|
}
|
|
144
144
|
//#endregion
|
|
145
|
+
//#region src/services/catalog.d.ts
|
|
146
|
+
/**
|
|
147
|
+
* Service for reading the deployment's built-in catalogs: the label taxonomy
|
|
148
|
+
* and the registered recognizers that policies and pipelines can target.
|
|
149
|
+
*/
|
|
150
|
+
declare class Catalog {
|
|
151
|
+
#private;
|
|
152
|
+
constructor(api: ApiClient);
|
|
153
|
+
/**
|
|
154
|
+
* List the deployment's built-in label taxonomy.
|
|
155
|
+
* @returns Promise that resolves with the label catalog.
|
|
156
|
+
*/
|
|
157
|
+
listLabels(): Promise<LabelCatalog>;
|
|
158
|
+
/**
|
|
159
|
+
* List the engine's registered recognizers, grouped into NER and LLM.
|
|
160
|
+
* @returns Promise that resolves with the recognizer catalog.
|
|
161
|
+
*/
|
|
162
|
+
listRecognizers(): Promise<RecognizerCatalog>;
|
|
163
|
+
}
|
|
164
|
+
//#endregion
|
|
145
165
|
//#region src/services/connections.d.ts
|
|
146
166
|
/**
|
|
147
167
|
* Service for handling connection operations
|
|
@@ -872,6 +892,10 @@ declare class Nvisy {
|
|
|
872
892
|
* Service for managing policies.
|
|
873
893
|
*/
|
|
874
894
|
get policies(): Policies;
|
|
895
|
+
/**
|
|
896
|
+
* Service for reading the deployment's label and recognizer catalogs.
|
|
897
|
+
*/
|
|
898
|
+
get catalog(): Catalog;
|
|
875
899
|
/**
|
|
876
900
|
* Service for managing workspace invitations.
|
|
877
901
|
*/
|
|
@@ -902,5 +926,5 @@ declare class Nvisy {
|
|
|
902
926
|
get workspaces(): Workspaces;
|
|
903
927
|
}
|
|
904
928
|
//#endregion
|
|
905
|
-
export {
|
|
906
|
-
//# sourceMappingURL=client-
|
|
929
|
+
export { ApiTokens as _, Syncs as a, Policies as c, Members as d, Invites as f, Auth as g, Catalog 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, Activities as v, Account as y };
|
|
930
|
+
//# sourceMappingURL=client-DhSBnaim.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-DhSBnaim.d.ts","names":[],"sources":["../src/services/account.ts","../src/services/activities.ts","../src/services/api-tokens.ts","../src/services/auth.ts","../src/services/catalog.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 LabelGroup, $n as
|
|
2
|
-
export type { Account, AccountRef, Activity, ActivityPage, ActivityType, AnthropicCredentials, ApiToken, ApiTokenPage, ApiTokenType, ApiTokenWithJWT, Artifact, AudioRedaction, Audit, AuthToken, AzureCredentials, ClampBucket, Color, ComponentHealth, Confidence, ConfidenceThreshold, Connection, ConnectionConfig, ConnectionPage, ConnectionSync, ConnectionSyncPage, ConnectionVerification, ConnectionsQuery, CountryCode, CreateApiToken, CreateConnection, CreateInvite, CreatePipeline, CreatePipelineRun, CreatePolicy, CreateWebhook, CreateWorkspace, CursorPagination, CustomDictionary, CustomDictionaryTerm, CustomPatternContext, CustomPatternRule, CustomPatternVariant, DateGranularity, DateStyle,
|
|
1
|
+
import { $ as LabelGroup, $n as AuditContext, $t as InviteStatus, A as LanguageProvenance, An as SyncConnection, Ar as TextEntityRecord, At as PipelineTriggerType, B as TiebreakerParams, Bn as RegisteredRecognizer, Br as ApiTokenWithJWT, Bt as Member, C as CountryCode, Cn as ConnectionsQuery, Cr as TabularEvent, Ct as CreatePipeline, D as CustomPatternRule, Dn as OpenAiCredentials, Dr as TabularProvenance, Dt as PipelineStatus, E as CustomPatternContext, En as LlmConfig, Er as TabularLocation, Et as PipelineFilter, F as PipelineDeduplication, Fn as SyncStatus, Fr as TextProvenance, Ft as NotificationPage, G as CreatePolicy, Gn as AudioData, Gr as ActivityPage, Gt as GenerateInviteCode, H as ClampBucket, Hn as Login, Hr as TokenExpiration, Ht as MemberSortField, I as ProviderSelection, In as SyncTriggerType, Ir as TimeSpan, It as NotificationSettings, J as GdprArticle9Treatment, Jn as AudioEvent, Jr as AccountRef, Jt as InviteExpiration, K as DateGranularity, Kn as AudioEntity, Kr as ActivityType, Kt as Invite, L as RecognizerParams, Ln as UpdateConnection, Lr as ApiToken, Lt as UnreadStatus, M as Languages, Mn as SyncMode, Mr as TextEventKind, Mt as CursorPagination, N as MergingStrategyParams, Nn as SyncSchedule, Nr as TextHint, Nt as Notification, O as CustomPatternVariant, On as S3Credentials, Or as TextData, Ot as PipelineSummary, P as PatternRecognizerParams, Pn as SyncScheduleInput, Pr as TextLocation, Pt as NotificationEvent, Q as LabelEntry, Qn as AudioProvenance, Qt as InviteSortField, R as ScopeMetadata, Rn as LabelCatalog, Rr as ApiTokenPage, Rt as UpdateNotificationSettings, S as Confidence, Sn as ConnectionVerification, Sr as TabularEntityRecord, St as Waveform, T as CustomDictionaryTerm, Tn as GcsCredentials, Tr as TabularHint, Tt as PipelineDefinition, U as Color, Un as Signup, Ur as UpdateApiToken, Ut as UpdateMember, V as AudioRedaction, Vn as AuthToken, Vr as CreateApiToken, Vt as MemberPage, W as ConfidenceThreshold, Wn as Attribution, Wr as Activity, Wt as CreateInvite, X as ImageRedaction, Xn as AudioHint, Xr as UpdateAccount, Xt as InvitePreview, Y as HipaaDeidMethod, Yn as AudioEventKind, Yr as PublicAccount, Yt as InvitePage, Z as Label, Zn as AudioLocation, Zt as InviteSent, _ as Audit, _n as Connection, _r as Polygon, _t as Sha2Algorithm, a as WorkspaceRole, an as HealthStatus, ar as ImageEntity, at as PciDssPart, b as PipelineRunPage, bn as ConnectionSync, br as RuleMatch, bt as TextRedaction, c as UpdateWebhook, cn as FileSource, cr as ImageEventKind, ct as PolicyDefinition, d as WebhookEvent, dn as ModalityToken, dr as ImageProvenance, dt as PolicySummaryPage, en as ListInvites, er as BoundingBox, et as LabelLocale, f as WebhookPage, fn as UpdateFile, fr as LeakProfile, ft as PolicyTemplate, g as ArtifactType, gn as AzureCredentials, gr as Point, gt as RetentionScope, h as Artifact, hn as AnthropicCredentials, hr as PatternEvent, ht as RetentionPolicy, i as WorkspacePage, in as Health, ir as ImageData, it as ModalityRedactions, j as LanguageSpan, jn as SyncDeletionPolicy, jr as TextEvent, jt as UpdatePipeline, k as Language, kn as StorageConfig, kr as TextEntity, kt as PipelineSummaryPage, l as Webhook, ln as FormatToken, lr as ImageHint, lt as PolicyRule, m as WebhookStatus, mn as ValidationErrorDetail, mr as OperatorId, mt as Retention, n as UpdateWorkspace, nn as SortOrder, nr as EntityCoRef, nt as LanguageTag, o as CreateWebhook, on as File, or as ImageEntityRecord, ot as PciPanRender, p as WebhookResult, pn as ErrorResponse, pr as ModelEvent, pt as Predicate, q as DateStyle, qn as AudioEntityRecord, qr as Account, qt as InviteCode, r as Workspace, rn as ComponentHealth, rr as EntityGroup, rt as LocalizedText, s as TestWebhook, sn as FilePage, sr as ImageEvent, st as Policy, t as CreateWorkspace, tn as ReplyInvite, tr as Dimensions, tt as Labels, u as WebhookCreated, un as ListFiles, ur as ImageLocation, ut as PolicySummary, v as CreatePipelineRun, vn as ConnectionConfig, vr as RangeOfUint, vt as TabularRedaction, w as CustomDictionary, wn as CreateConnection, wr as TabularEventKind, wt as Pipeline, x as PipelineRunStatus, xn as ConnectionSyncPage, xr as TabularEntity, xt as UpdatePolicy, y as PipelineRun, yn as ConnectionPage, yr as Review, yt as TerminalFallback, z as ScopeParams, zn as RecognizerCatalog, zr as ApiTokenType, zt as ListMembers } from "../index-Cd74EvDw.js";
|
|
2
|
+
export type { Account, AccountRef, Activity, ActivityPage, ActivityType, AnthropicCredentials, ApiToken, ApiTokenPage, ApiTokenType, ApiTokenWithJWT, Artifact, ArtifactType, Attribution, AudioData, AudioEntity, AudioEntityRecord, AudioEvent, AudioEventKind, AudioHint, AudioLocation, AudioProvenance, AudioRedaction, Audit, AuditContext, AuthToken, AzureCredentials, BoundingBox, ClampBucket, Color, ComponentHealth, Confidence, ConfidenceThreshold, Connection, ConnectionConfig, ConnectionPage, ConnectionSync, ConnectionSyncPage, ConnectionVerification, ConnectionsQuery, CountryCode, CreateApiToken, CreateConnection, CreateInvite, CreatePipeline, CreatePipelineRun, CreatePolicy, CreateWebhook, CreateWorkspace, CursorPagination, CustomDictionary, CustomDictionaryTerm, CustomPatternContext, CustomPatternRule, CustomPatternVariant, DateGranularity, DateStyle, Dimensions, EntityCoRef, EntityGroup, ErrorResponse, File, FilePage, FileSource, FormatToken, GcsCredentials, GdprArticle9Treatment, GenerateInviteCode, Health, HealthStatus, HipaaDeidMethod, ImageData, ImageEntity, ImageEntityRecord, ImageEvent, ImageEventKind, ImageHint, ImageLocation, ImageProvenance, ImageRedaction, Invite, InviteCode, InviteExpiration, InvitePage, InvitePreview, InviteSent, InviteSortField, InviteStatus, Label, LabelCatalog, LabelEntry, LabelGroup, LabelLocale, Labels, Language, LanguageProvenance, LanguageSpan, LanguageTag, Languages, LeakProfile, ListFiles, ListInvites, ListMembers, LlmConfig, LocalizedText, Login, Member, MemberPage, MemberSortField, MergingStrategyParams, ModalityRedactions, ModalityToken, ModelEvent, Notification, NotificationEvent, NotificationPage, NotificationSettings, OpenAiCredentials, OperatorId, PatternEvent, PatternRecognizerParams, PciDssPart, PciPanRender, Pipeline, PipelineDeduplication, PipelineDefinition, PipelineFilter, PipelineRun, PipelineRunPage, PipelineRunStatus, PipelineStatus, PipelineSummary, PipelineSummaryPage, PipelineTriggerType, Point, Policy, PolicyDefinition, PolicyRule, PolicySummary, PolicySummaryPage, PolicyTemplate, Polygon, Predicate, ProviderSelection, PublicAccount, RangeOfUint, RecognizerCatalog, RecognizerParams, RegisteredRecognizer, ReplyInvite, Retention, RetentionPolicy, RetentionScope, Review, RuleMatch, S3Credentials, ScopeMetadata, ScopeParams, Sha2Algorithm, Signup, SortOrder, StorageConfig, SyncConnection, SyncDeletionPolicy, SyncMode, SyncSchedule, SyncScheduleInput, SyncStatus, SyncTriggerType, TabularEntity, TabularEntityRecord, TabularEvent, TabularEventKind, TabularHint, TabularLocation, TabularProvenance, TabularRedaction, TerminalFallback, TestWebhook, TextData, TextEntity, TextEntityRecord, TextEvent, TextEventKind, TextHint, TextLocation, TextProvenance, TextRedaction, TiebreakerParams, TimeSpan, 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 { pn as ErrorResponse } from "./index-Cd74EvDw.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-CgzTgbga.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors-
|
|
1
|
+
{"version":3,"file":"errors-CgzTgbga.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"}
|