@nvisy/sdk 0.13.0 → 0.15.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 +48 -1
- package/README.md +3 -1
- package/dist/auth/index.d.ts +1 -1
- package/dist/{client-DN7ckSJH.d.ts → client-C5Jt7cZW.d.ts} +5 -5
- package/dist/{client-DN7ckSJH.d.ts.map → client-C5Jt7cZW.d.ts.map} +1 -1
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{errors-BfCfSpmA.d.ts → errors-BjF5Dbju.d.ts} +2 -2
- package/dist/{errors-BfCfSpmA.d.ts.map → errors-BjF5Dbju.d.ts.map} +1 -1
- package/dist/{index-HUG77R_t.d.ts → index-BCjrTe_H.d.ts} +1165 -485
- package/dist/index-BCjrTe_H.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-DjORFrh_.js → services-Dhtn3sVT.js} +3 -3
- package/dist/{services-DjORFrh_.js.map → services-Dhtn3sVT.js.map} +1 -1
- package/dist/webhooks/index.d.ts +2 -2
- package/package.json +2 -2
- package/dist/index-HUG77R_t.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,51 @@ and this project adheres to
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.15.0] - 2026-08-09
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Connection config datatypes: `StorageConfig`, `LlmConfig` (LLM inference
|
|
16
|
+
connections), `AnthropicCredentials`, `OpenAiCredentials`, and sync
|
|
17
|
+
scheduling (`SyncSchedule`, `SyncScheduleInput`)
|
|
18
|
+
- Policy template treatment enums: `HipaaDeidMethod`, `GdprArticle9Treatment`,
|
|
19
|
+
`PciDssPart`, `PciPanRender`
|
|
20
|
+
- Recognizer/detection config datatypes (`src/datatypes/recognizer.ts`):
|
|
21
|
+
`RecognizerParams`, `PatternRecognizerParams`, `ProviderSelection`, custom
|
|
22
|
+
rules/dictionaries (`CustomPatternRule`, `CustomPatternVariant`,
|
|
23
|
+
`CustomPatternContext`, `CustomDictionary`, `CustomDictionaryTerm`),
|
|
24
|
+
deduplication (`PipelineDeduplication`, `MergingStrategyParams`,
|
|
25
|
+
`TiebreakerParams`), scope/localization (`ScopeParams`, `ScopeMetadata`,
|
|
26
|
+
`CountryCode`, `Language`, `Languages`, `LanguageSpan`,
|
|
27
|
+
`LanguageProvenance`), and `Confidence`
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- Regenerated the API schema against the updated platform handlers
|
|
32
|
+
|
|
33
|
+
## [0.14.0] - 2026-08-09
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
|
|
37
|
+
- `PolicyTemplate` datatype, the built-in template a new policy can be based
|
|
38
|
+
on via `CreatePolicy.template` (`"hipaa_safe_harbor"`, `"gdpr_article9"`,
|
|
39
|
+
`"pci_dss_pan_truncate"`, `"pci_dss_pan_hmac"`, `"ccpa"`)
|
|
40
|
+
- Policy-construction datatypes for building `CreatePolicy` / `UpdatePolicy`
|
|
41
|
+
bodies: rules (`PredicatedRule`, `TableRule`, `Predicate`,
|
|
42
|
+
`DocumentPredicate`), redactions (`ModalityRedactions`, `TextRedaction`,
|
|
43
|
+
`ImageRedaction`, `AudioRedaction`, `TabularRedaction`), retention
|
|
44
|
+
(`RetentionPolicy`, `Retention`, `RetentionScope`), the label vocabulary
|
|
45
|
+
(`Labels`, `LabelGroup`, `LabelEntry`, `LabelLocale`, `Label`,
|
|
46
|
+
`LocalizedText`), and detail types (`Color`, `Waveform`, `ClampBucket`,
|
|
47
|
+
`ConfidenceThreshold`, `DateStyle`, `DateGranularity`, `LanguageTag`,
|
|
48
|
+
`Sha2Algorithm`, `TerminalFallback`)
|
|
49
|
+
|
|
50
|
+
### Changed
|
|
51
|
+
|
|
52
|
+
- Regenerated the API schema against the updated platform handlers
|
|
53
|
+
- **BREAKING**: the detections result type is renamed `AnalyzedDocument` to
|
|
54
|
+
`Audit`. `runs.getDetections()` now resolves to `Audit`.
|
|
55
|
+
|
|
11
56
|
## [0.13.0] - 2026-08-05
|
|
12
57
|
|
|
13
58
|
### Changed
|
|
@@ -312,7 +357,9 @@ and this project adheres to
|
|
|
312
357
|
- Network error handling for timeouts, DNS resolution, and connection issues
|
|
313
358
|
- Configuration validation with detailed error messages
|
|
314
359
|
|
|
315
|
-
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.
|
|
360
|
+
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.15.0...HEAD
|
|
361
|
+
[0.15.0]: https://github.com/nvisycom/sdk-ts/compare/v0.14.0...v0.15.0
|
|
362
|
+
[0.14.0]: https://github.com/nvisycom/sdk-ts/compare/v0.13.0...v0.14.0
|
|
316
363
|
[0.13.0]: https://github.com/nvisycom/sdk-ts/compare/v0.12.0...v0.13.0
|
|
317
364
|
[0.12.0]: https://github.com/nvisycom/sdk-ts/compare/v0.11.0...v0.12.0
|
|
318
365
|
[0.11.0]: https://github.com/nvisycom/sdk-ts/compare/v0.10.0...v0.11.0
|
package/README.md
CHANGED
|
@@ -51,7 +51,9 @@ const client = new Nvisy({
|
|
|
51
51
|
|
|
52
52
|
The fastest way to get started is with [Nvisy Cloud](https://nvisy.com).
|
|
53
53
|
|
|
54
|
-
To run locally, see the [nvisycom/
|
|
54
|
+
To run locally, see the [nvisycom/server](https://github.com/nvisycom/server) (self-hosted backend) and [nvisycom/studio](https://github.com/nvisycom/studio) (web and desktop app) repositories.
|
|
55
|
+
|
|
56
|
+
If you only need redaction and not the full platform, [nvisycom/elide](https://github.com/nvisycom/elide) is a standalone framework for building PII detection and removal pipelines over multimodal documents.
|
|
55
57
|
|
|
56
58
|
## Contributing
|
|
57
59
|
|
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 { Bn as AuthToken, Hn as Signup, Vn as Login } from "../index-BCjrTe_H.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 { $n as Account$1, $t as InviteSent, Bn as AuthToken, Bt as UpdateNotificationSettings, Cn as ConnectionSyncPage, Ct as UpdatePolicy, En as CreateConnection, Et as Pipeline, Gt as UpdateMember, Hn as Signup, Ht as Member, Kn as ApiTokenWithJWT, Kt as CreateInvite, Ln as SyncStatus, Lt as NotificationPage, Mn as SyncConnection, Nt as UpdatePipeline, Pt as CursorPagination, Qt as InvitePreview, Rt as NotificationSettings, Sn as ConnectionSync, Tt as CreatePipeline, Un as ApiToken, Ut as MemberPage, Vn as Login, Vt as ListMembers, W as CreatePolicy, Wn as ApiTokenPage, Yn as UpdateApiToken, Yt as InviteCode, Zn as ActivityPage, Zt as InvitePage, _ as CreatePipelineRun, b as PipelineRunStatus, c as UpdateWebhook, cn as File, dt as PolicySummaryPage, f as WebhookPage, fn as ListFiles, g as Audit, i as WorkspacePage, jt as PipelineSummaryPage, kt as PipelineStatus, l as Webhook, ln as FilePage, mn as UpdateFile, n as UpdateWorkspace, nn as ListInvites, nr as UpdateAccount, o as CreateWebhook, on as Health, p as WebhookResult, qn as CreateApiToken, qt as GenerateInviteCode, r as Workspace, rn as ReplyInvite, rr as paths, s as TestWebhook, st as Policy, t as CreateWorkspace, tr as PublicAccount, u as WebhookCreated, v as PipelineRun, wn as ConnectionVerification, xn as ConnectionPage, y as PipelineRunPage, yn as Connection, zn as UpdateConnection, zt as UnreadStatus } from "./index-BCjrTe_H.js";
|
|
3
3
|
import { Client } from "openapi-fetch";
|
|
4
4
|
//#region src/services/account.d.ts
|
|
5
5
|
/**
|
|
@@ -543,13 +543,13 @@ declare class Runs {
|
|
|
543
543
|
*/
|
|
544
544
|
getRun(workspaceSlug: string, runId: string): Promise<PipelineRun>;
|
|
545
545
|
/**
|
|
546
|
-
* Get the detections (
|
|
546
|
+
* Get the detections (audit) for a pipeline run
|
|
547
547
|
* @param workspaceSlug - Workspace slug
|
|
548
548
|
* @param runId - Run ID
|
|
549
|
-
* @returns Promise that resolves with the
|
|
549
|
+
* @returns Promise that resolves with the audit
|
|
550
550
|
* @throws {ApiError} if the request fails
|
|
551
551
|
*/
|
|
552
|
-
getDetections(workspaceSlug: string, runId: string): Promise<
|
|
552
|
+
getDetections(workspaceSlug: string, runId: string): Promise<Audit>;
|
|
553
553
|
/**
|
|
554
554
|
* Apply redactions to a pipeline run
|
|
555
555
|
* @param workspaceSlug - Workspace slug
|
|
@@ -903,4 +903,4 @@ declare class Nvisy {
|
|
|
903
903
|
}
|
|
904
904
|
//#endregion
|
|
905
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 };
|
|
906
|
-
//# sourceMappingURL=client-
|
|
906
|
+
//# sourceMappingURL=client-C5Jt7cZW.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-
|
|
1
|
+
{"version":3,"file":"client-C5Jt7cZW.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":";;;;;;;cAUa;;EAGA,YAAA,KAAK;;;;;;EASX,cAAc,QAAQ;;;;;;;EAWtB,cAAc,SAAS,gBAAgB,QAAQ;;;;;;EAY/C,iBAAiB;;;;;;;EAUjB,iBAAiB,mBAAmB,QAAQ;;;;;;;;EAc5C,aAAa,kBAAkB,QAAQ,OAAO,QAAQ;;;;;;;EAsBtD,aAAa,mBAAmB;;;;;;;cCrF1B;;EAGA,YAAA,KAAK;;;;;;;;EAWX,eACL,uBACA,QAAQ,mBACN,QAAQ;;;;;;;cCVC;;EAGA,YAAA,KAAK;;;;;;;EAUX,cAAc,QAAQ,mBAAmB,QAAQ;;;;;;;EAajD,YAAY,kBAAkB,QAAQ;;;;;;;EAatC,eAAe,OAAO,iBAAiB,QAAQ;;;;;;;;EAc/C,eACL,iBACA,SAAS,iBACP,QAAQ;;;;;;;EAcL,eAAe,kBAAkB;;;;;;;cC7E3B;;EAGA,YAAA,KAAK;;;;;;;EAUX,aAAa,aAAa,QAAQ,QAAQ;;;;;;;EAa1C,cAAc,aAAa,SAAS,QAAQ;;;;;;EAY5C,iBAAiB;;;;;;;cC/BX;;EAGA,YAAA,KAAK;;;;;;;;EAWX,gBACL,uBACA,QAAQ;IAAqB;MAC3B,QAAQ;;;;;;;;EAiBL,iBACL,uBACA,YAAY,mBACV,QAAQ;;;;;;;;EAkBL,cACL,uBACA,uBACE,QAAQ;;;;;;;;;EAkBL,iBACL,uBACA,sBACA,SAAS,mBACP,QAAQ;;;;;;;;EAkBL,iBACL,uBACA,uBACE;;;;;;;;EAgBG,iBACL,uBACA,uBACE,QAAQ;;;;;;;cCzHC;;EAGA,YAAA,KAAK;;;;;;;;EAWX,YACL,uBACA,OAAO,OAAO,SACZ,QAAQ;;;;;;;;EA+BL,UACL,uBACA,QAAQ,YAAY,mBAClB,QAAQ;;;;;;;;EAcL,QAAQ,uBAAuB,iBAAiB,QAAQ;;;;;;;;EAiBxD,aAAa,uBAAuB,iBAAiB,QAAQ;;;;;;;;;EAmB7D,WACL,uBACA,gBACA,SAAS,aACP,QAAQ;;;;;;;;EAkBL,WAAW,uBAAuB,iBAAiB;;;;;;;cCtH7C;;EAGA,YAAA,KAAK;;;;;;;;EAWX,YACL,uBACA,QAAQ,cAAc,mBACpB,QAAQ;;;;;;;;EAiBL,WACL,uBACA,QAAQ,eACN,QAAQ;;;;;;;;EAkBL,aAAa,uBAAuB,mBAAmB;;;;;;;;;EAcvD,cACL,uBACA,kBACA,OAAO,cACL,QAAQ;;;;;;;;EAkBL,mBACL,uBACA,SAAS,qBACP,QAAQ;;;;;;;;EAkBL,kBACL,oBACA,QAAQ,qBACN,QAAQ;;;;;;;EAcL,cAAc,qBAAqB,QAAQ;;;;;;;cCtIrC;;EAGA,YAAA,KAAK;;;;;;;;EAWX,YACL,uBACA,QAAQ,cAAc,mBACpB,QAAQ;;;;;;;;EAiBL,UAAU,uBAAuB,mBAAmB,QAAQ;;;;;;;;;EAoB5D,aACL,uBACA,kBACA,SAAS,eACP,QAAQ;;;;;;;;EAoBL,aAAa,uBAAuB,mBAAmB;;;;;;;EAYvD,eAAe,wBAAwB;;;;;;;cC5FjC;;EAGA,YAAA,KAAK;;;;;;;EAUX,kBAAkB,QAAQ,mBAAmB,QAAQ;;;;;;EAYrD,gCAAgC,QAAQ;;;;;;;cCtBlC;;EAGA,YAAA,KAAK;;;;;;;;EAWX,cACL,uBACA,QAAQ;IAAqB;IAAiB,SAAS;MACrD,QAAQ;;;;;;;;EAiBL,eACL,uBACA,UAAU,iBACR,QAAQ;;;;;;;;EAkBL,YACL,uBACA,uBACE,QAAQ;;;;;;;;;EAkBL,eACL,uBACA,sBACA,SAAS,iBACP,QAAQ;;;;;;;;EAkBL,eACL,uBACA,uBACE;;;;;;;cCtGS;;EAGA,YAAA,KAAK;;;;;;;;EAWX,aACL,uBACA,QAAQ,mBACN,QAAQ;;;;;;;;EAiBL,aACL,uBACA,QAAQ,eACN,QAAQ;;;;;;;;EAkBL,UAAU,uBAAuB,qBAAqB,QAAQ;;;;;;;;;EAkB9D,aACL,uBACA,oBACA,SAAS,eACP,QAAQ;;;;;;;;EAkBL,aAAa,uBAAuB,qBAAqB;;;;;;;cC9FnD;;EAGA,YAAA,KAAK;;;;;;;;EAWX,SACL,uBACA,QAAQ;IAAqB,SAAS;MACpC,QAAQ;;;;;;;;;EAkBL,iBACL,uBACA,sBACA,QAAQ,mBACN,QAAQ;;;;;;;;;EAkBL,UACL,uBACA,sBACA,KAAK,oBACH,QAAQ;;;;;;;;EAkBL,OAAO,uBAAuB,gBAAgB,QAAQ;;;;;;;;EAiBtD,cAAc,uBAAuB,gBAAgB,QAAQ;;;;;;;;EAiB7D,OAAO,uBAAuB,gBAAgB,QAAQ;;;;;;;cCxHhD;;EAGA,YAAA,KAAK;;;;;EAQX,eAAe,QAAQ;;;;;;;cCLjB;;EAGA,YAAA,KAAK;;;;;;;;EAWX,mBACL,uBACA,QAAQ;IAAqB;IAAqB,SAAS;MACzD,QAAQ;;;;;;;;;EAeL,UACL,uBACA,sBACA,MAAM,iBACJ,QAAQ;;;;;;;;;EAmBL,UACL,uBACA,sBACA,QAAQ,mBACN,QAAQ;;;;;;;;;EAkBL,QACL,uBACA,sBACA,iBACE,QAAQ;;;;;;;;;EAkBL,WACL,uBACA,sBACA,iBACE,QAAQ;;;;;;;cCpGC;;EAGA,YAAA,KAAK;;;;;;;;EAWX,aACL,uBACA,QAAQ,mBACN,QAAQ;;;;;;;;EAiBL,cACL,uBACA,SAAS,gBACP,QAAQ;;;;;;;;EAkBL,WAAW,uBAAuB,oBAAoB,QAAQ;;;;;;;;;EAkB9D,cACL,uBACA,mBACA,SAAS,gBACP,QAAQ;;;;;;;;EAkBL,cAAc,uBAAuB,oBAAoB;;;;;;;;;EAiBzD,YACL,uBACA,mBACA,UAAU,cACR,QAAQ;;;;;;;cCrHC;;EAGA,YAAA,KAAK;;;;;;;EAUX,eAAe,QAAQ,mBAAmB,QAAQ;;;;;;;EAalD,aAAa,wBAAwB,QAAQ;;;;;;;EAa7C,gBAAgB,WAAW,kBAAkB,QAAQ;;;;;;;;EAcrD,gBACL,uBACA,SAAS,kBACP,QAAQ;;;;;;;EAcL,gBAAgB,wBAAwB;;;;;;;EAYxC,wBACL,wBACE,QAAQ;;;;;;;;EAiBL,2BACL,uBACA,UAAU,6BACR,QAAQ;;;;;;;;EAkBL,aAAa,uBAAuB,QAAQ,OAAO;;;;;;;EAqBnD,aAAa,wBAAwB;;;;;;;;;;KC7GhC,YAAY,OAAc;;;;;;;;;;;cAmBzB;;;;;;;;;;;;;;;;;EA4BA,YAAA,QAAQ;;;;;;;;;;;;;;;;;;;;;EAsFpB,aAAa,mBAAmB;;;;;;MAS5B;;;;;;;;;MAYA,OAAO;;;;MAOP,QAAQ;;;;MAOR,UAAU;;;;MAOV,WAAW;;;;MAOX,cAAc;;;;MAOd,aAAa;;;;MAOb,eAAe;;;;MAOf,SAAS;;;;MAOT,aAAa;;;;MAOb,YAAY;;;;MAOZ,WAAW;;;;MAOX,WAAW;;;;MAOX,iBAAiB;;;;MAOjB,QAAQ;;;;MAOR,SAAS;;;;MAOT,YAAY;;;;MAOZ,cAAc"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
export type { Account, AccountRef, Activity, ActivityPage, ActivityType,
|
|
1
|
+
import { $ as LabelGroup, $n as Account, $t as InviteSent, A as LanguageSpan, An as S3Credentials, At as PipelineSummary, B as AudioRedaction, Bn as AuthToken, Bt as UpdateNotificationSettings, C as CustomDictionary, Cn as ConnectionSyncPage, Ct as UpdatePolicy, D as CustomPatternVariant, Dn as GcsCredentials, Dt as PipelineDefinition, E as CustomPatternRule, En as CreateConnection, Et as Pipeline, F as ProviderSelection, Fn as SyncSchedule, Ft as Notification, G as DateGranularity, Gn as ApiTokenType, Gt as UpdateMember, H as Color, Hn as Signup, Ht as Member, I as RecognizerParams, In as SyncScheduleInput, It as NotificationEvent, J as GdprArticle9Treatment, Jn as TokenExpiration, Jt as Invite, K as DateStyle, Kn as ApiTokenWithJWT, Kt as CreateInvite, L as ScopeMetadata, Ln as SyncStatus, Lt as NotificationPage, M as MergingStrategyParams, Mn as SyncConnection, Mt as PipelineTriggerType, N as PatternRecognizerParams, Nn as SyncDeletionPolicy, Nt as UpdatePipeline, O as Language, On as LlmConfig, Ot as PipelineFilter, P as PipelineDeduplication, Pn as SyncMode, Pt as CursorPagination, Q as LabelEntry, Qn as ActivityType, Qt as InvitePreview, R as ScopeParams, Rn as SyncTriggerType, Rt as NotificationSettings, S as CountryCode, Sn as ConnectionSync, St as TextRedaction, T as CustomPatternContext, Tn as ConnectionsQuery, Tt as CreatePipeline, U as ConfidenceThreshold, Un as ApiToken, Ut as MemberPage, V as ClampBucket, Vn as Login, Vt as ListMembers, W as CreatePolicy, Wn as ApiTokenPage, Wt as MemberSortField, X as ImageRedaction, Xn as Activity, Xt as InviteExpiration, Y as HipaaDeidMethod, Yn as UpdateApiToken, Yt as InviteCode, Z as Label, Zn as ActivityPage, Zt as InvitePage, _ as CreatePipelineRun, _n as AnthropicCredentials, _t as RetentionScope, a as WorkspaceRole, an as ComponentHealth, at as PciDssPart, b as PipelineRunStatus, bn as ConnectionConfig, bt as TabularRedaction, c as UpdateWebhook, cn as File, ct as PolicyDefinition, d as WebhookEvent, dn as FormatToken, dt as PolicySummaryPage, en as InviteSortField, er as AccountRef, et as LabelLocale, f as WebhookPage, fn as ListFiles, ft as PolicyTemplate, g as Audit, gn as ValidationErrorDetail, gt as RetentionPolicy, h as Artifact, hn as ErrorResponse, ht as Retention, i as WorkspacePage, in as SortOrder, it as ModalityRedactions, j as Languages, jn as StorageConfig, jt as PipelineSummaryPage, k as LanguageProvenance, kn as OpenAiCredentials, kt as PipelineStatus, l as Webhook, ln as FilePage, lt as PolicyRule, m as WebhookStatus, mn as UpdateFile, mt as PredicatedRule, n as UpdateWorkspace, nn as ListInvites, nr as UpdateAccount, nt as LanguageTag, o as CreateWebhook, on as Health, ot as PciPanRender, p as WebhookResult, pn as ModalityToken, pt as Predicate, q as DocumentPredicate, qn as CreateApiToken, qt as GenerateInviteCode, r as Workspace, rn as ReplyInvite, rt as LocalizedText, s as TestWebhook, sn as HealthStatus, st as Policy, t as CreateWorkspace, tn as InviteStatus, tr as PublicAccount, tt as Labels, u as WebhookCreated, un as FileSource, ut as PolicySummary, v as PipelineRun, vn as AzureCredentials, vt as Sha2Algorithm, w as CustomDictionaryTerm, wn as ConnectionVerification, wt as Waveform, x as Confidence, xn as ConnectionPage, xt as TerminalFallback, y as PipelineRunPage, yn as Connection, yt as TableRule, z as TiebreakerParams, zn as UpdateConnection, zt as UnreadStatus } from "../index-BCjrTe_H.js";
|
|
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, DocumentPredicate, ErrorResponse, File, FilePage, FileSource, FormatToken, GcsCredentials, GdprArticle9Treatment, GenerateInviteCode, Health, HealthStatus, HipaaDeidMethod, ImageRedaction, Invite, InviteCode, InviteExpiration, InvitePage, InvitePreview, InviteSent, InviteSortField, InviteStatus, Label, LabelEntry, LabelGroup, LabelLocale, Labels, Language, LanguageProvenance, LanguageSpan, LanguageTag, Languages, ListFiles, ListInvites, ListMembers, LlmConfig, LocalizedText, Login, Member, MemberPage, MemberSortField, MergingStrategyParams, ModalityRedactions, ModalityToken, Notification, NotificationEvent, NotificationPage, NotificationSettings, OpenAiCredentials, PatternRecognizerParams, PciDssPart, PciPanRender, Pipeline, PipelineDeduplication, PipelineDefinition, PipelineFilter, PipelineRun, PipelineRunPage, PipelineRunStatus, PipelineStatus, PipelineSummary, PipelineSummaryPage, PipelineTriggerType, Policy, PolicyDefinition, PolicyRule, PolicySummary, PolicySummaryPage, PolicyTemplate, Predicate, PredicatedRule, ProviderSelection, PublicAccount, RecognizerParams, ReplyInvite, Retention, RetentionPolicy, RetentionScope, S3Credentials, ScopeMetadata, ScopeParams, Sha2Algorithm, Signup, SortOrder, StorageConfig, SyncConnection, SyncDeletionPolicy, SyncMode, SyncSchedule, SyncScheduleInput, SyncStatus, SyncTriggerType, TableRule, TabularRedaction, TerminalFallback, TestWebhook, TextRedaction, TiebreakerParams, 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 { hn as ErrorResponse } from "./index-BCjrTe_H.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-BjF5Dbju.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors-
|
|
1
|
+
{"version":3,"file":"errors-BjF5Dbju.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"}
|