@nvisy/sdk 0.30.0 → 0.32.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 +45 -1
- package/dist/auth/index.d.ts +1 -1
- package/dist/{client-Cf7RgQwY.d.ts → client-CfC5wM9f.d.ts} +121 -15
- package/dist/client-CfC5wM9f.d.ts.map +1 -0
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{errors-ztO85t_k.d.ts → errors-CrAVfGv9.d.ts} +2 -2
- package/dist/{errors-ztO85t_k.d.ts.map → errors-CrAVfGv9.d.ts.map} +1 -1
- package/dist/{index-4U5Gmd2p.d.ts → index-CiQYVPsR.d.ts} +1797 -548
- package/dist/index-CiQYVPsR.d.ts.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +13 -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-CcdXk5hx.js → services-CA6ZPOfu.js} +236 -82
- package/dist/services-CA6ZPOfu.js.map +1 -0
- package/dist/webhooks/index.d.ts +2 -2
- package/package.json +3 -3
- package/dist/client-Cf7RgQwY.d.ts.map +0 -1
- package/dist/index-4U5Gmd2p.d.ts.map +0 -1
- package/dist/services-CcdXk5hx.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,48 @@ and this project adheres to
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.32.0] - 2026-08-18
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- `chat` service for the workspace assistant: `listSessions`, `createSession`,
|
|
16
|
+
`deleteSession`, `listMessages`, `streamMessage` (streams the reply as typed
|
|
17
|
+
`ChatToken` deltas over SSE), and `sendMessage` for the raw response
|
|
18
|
+
- `analytics` service: `getAnalytics` (`WorkspaceAnalytics`) and
|
|
19
|
+
`getRunTimeSeries` (`RunTimeSeries`)
|
|
20
|
+
- `activities.exportActivities()` to export the activity log over a date window
|
|
21
|
+
as a downloadable file
|
|
22
|
+
- Chat datatypes (`ChatSession`, `ChatSessionPage`, `CreateChatSession`,
|
|
23
|
+
`ChatMessage`, `ChatRole`, `SendChatMessage`, `ChatToken`), analytics
|
|
24
|
+
datatypes (`WorkspaceAnalytics`, `StorageAnalytics`, `RunAnalytics`,
|
|
25
|
+
`UsageAnalytics`, `RunTimeSeries`, and their entries plus `Usage`,
|
|
26
|
+
`UsageReport`, `TokenCounts`, `ModelUsage`, `ProviderType`, `RecognizerId`),
|
|
27
|
+
export datatypes (`ExportFormat`, `ExportQuery`, `DateWindow`,
|
|
28
|
+
`ActivityExportQuery`)
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- Regenerated the API schema against the updated platform handlers
|
|
33
|
+
- Schema generation now passes `--default-non-nullable false`, so a schema
|
|
34
|
+
field that carries a `default` (e.g. `CursorPagination.includeCount`,
|
|
35
|
+
`Login.rememberMe`) is typed as optional instead of required. Callers can
|
|
36
|
+
omit these fields, e.g. `listPolicies(slug, { limit: 20 })`
|
|
37
|
+
- **Breaking:** `runs.downloadAuditJson()` and `runs.downloadAuditCsv()` are
|
|
38
|
+
replaced by a single `runs.downloadAudit(workspaceSlug, runId, { format })`,
|
|
39
|
+
where `format` is `csv` (default) or `json`, matching the merged
|
|
40
|
+
`GET /runs/{runId}/audit` endpoint
|
|
41
|
+
|
|
42
|
+
## [0.31.0] - 2026-08-18
|
|
43
|
+
|
|
44
|
+
### Added
|
|
45
|
+
|
|
46
|
+
- `PasswordChange` datatype, a re-authenticated password change (current plus
|
|
47
|
+
new password) now accepted on `UpdateAccount.password`
|
|
48
|
+
|
|
49
|
+
### Changed
|
|
50
|
+
|
|
51
|
+
- Regenerated the API schema against the updated platform handlers
|
|
52
|
+
|
|
11
53
|
## [0.30.0] - 2026-08-18
|
|
12
54
|
|
|
13
55
|
### Added
|
|
@@ -624,7 +666,9 @@ and this project adheres to
|
|
|
624
666
|
- Network error handling for timeouts, DNS resolution, and connection issues
|
|
625
667
|
- Configuration validation with detailed error messages
|
|
626
668
|
|
|
627
|
-
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.
|
|
669
|
+
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.32.0...HEAD
|
|
670
|
+
[0.32.0]: https://github.com/nvisycom/sdk-ts/compare/v0.31.0...v0.32.0
|
|
671
|
+
[0.31.0]: https://github.com/nvisycom/sdk-ts/compare/v0.30.0...v0.31.0
|
|
628
672
|
[0.30.0]: https://github.com/nvisycom/sdk-ts/compare/v0.29.0...v0.30.0
|
|
629
673
|
[0.29.0]: https://github.com/nvisycom/sdk-ts/compare/v0.28.0...v0.29.0
|
|
630
674
|
[0.28.0]: https://github.com/nvisycom/sdk-ts/compare/v0.27.0...v0.28.0
|
package/dist/auth/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as ClientConfig } from "../config-BwallLvT.js";
|
|
2
|
-
import {
|
|
2
|
+
import { cr as AuthToken, lr as Login, ur as Signup } from "../index-CiQYVPsR.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-BwallLvT.js";
|
|
2
|
-
import { $
|
|
2
|
+
import { $t as UpdateMember, A as CreatePipelineRun, An as Connection, At as CursorPagination, Bt as NotificationSettings, Cn as DateWindow, Dt as PipelineSummaryPage, Fn as ConnectionSyncPage, Gi as Account$1, H as CreatePolicy, In as ConnectionVerification, Jt as UpdateNotificationSettings, Kt as UnreadCountEvent, L as RunStatusEvent, M as PipelineRunPage, Ni as ActivityExportQuery, Nn as ConnectionPage, Nt as MarkedReadStatus, P as PipelineRunsQuery, Pi as ActivityPage, Pn as ConnectionSync, Qn as ChatMessage, Rn as CreateConnection, Rt as NotificationPage, Sn as UpdateFile, St as Pipeline, Tn as ExportQuery, Tt as PipelineStatus, Wn as SyncConnection, Xi as UpdateAccount, Xt as Member, Yi as PublicAccount, Yn as SyncStatus, Yt as ListMembers, Zi as paths, Zn as UpdateConnection, Zt as MemberPage, an as InvitePage, ar as LabelCatalog, bn as ListFiles, c as WorkspacePage, cr as AuthToken, d as CreateWebhook, di as ApiTokenPage, dn as ReplyInvite, dt as PolicySummaryPage, en as CreateInvite, er as ChatSession, f as TestWebhook, gi as UpdateApiToken, gn as File, h as WebhookCreated, ir as SendChatMessage, j as PipelineRun, ji as WorkspaceAnalytics, k as Audit, kt as UpdatePipeline, lr as Login, m as Webhook, mi as CreateApiToken, mn as Health, nr as ChatToken, o as UpdateWorkspace, on as InvitePreview, or as RecognizerCatalog, ot as Policy, p as UpdateWebhook, pi as ApiTokenWithJWT, qt as UnreadStatus, rn as InviteCode, rr as CreateChatSession, s as Workspace, sn as InviteSent, t as CreateWorkspace, tn as GenerateInviteCode, tr as ChatSessionPage, ui as ApiToken, un as ListInvites, ur as Signup, v as WebhookPage, vn as FilePage, wi as RunTimeSeries, xt as CreatePipeline, y as WebhookResult, yt as UpdatePolicy } from "./index-CiQYVPsR.js";
|
|
3
3
|
import { Client } from "openapi-fetch";
|
|
4
4
|
//#region src/services/account.d.ts
|
|
5
5
|
/**
|
|
@@ -61,11 +61,43 @@ declare class Activities {
|
|
|
61
61
|
/**
|
|
62
62
|
* List activities for a workspace
|
|
63
63
|
* @param workspaceSlug - Workspace slug
|
|
64
|
-
* @param query - Optional pagination
|
|
64
|
+
* @param query - Optional pagination (limit, after)
|
|
65
65
|
* @returns Promise that resolves with a paginated list of activities
|
|
66
66
|
* @throws {ApiError} if the request fails
|
|
67
67
|
*/
|
|
68
68
|
listActivities(workspaceSlug: string, query?: CursorPagination): Promise<ActivityPage>;
|
|
69
|
+
/**
|
|
70
|
+
* Export the workspace's activity log over a date window as a file.
|
|
71
|
+
* @param workspaceSlug - Workspace slug
|
|
72
|
+
* @param query - Optional date window and output format (`csv` default, or `json`)
|
|
73
|
+
* @returns Promise that resolves with the file response
|
|
74
|
+
* @throws {ApiError} if the request fails
|
|
75
|
+
*/
|
|
76
|
+
exportActivities(workspaceSlug: string, query?: ActivityExportQuery): Promise<Response>;
|
|
77
|
+
}
|
|
78
|
+
//#endregion
|
|
79
|
+
//#region src/services/analytics.d.ts
|
|
80
|
+
/**
|
|
81
|
+
* Service for workspace analytics: aggregate totals and run time series.
|
|
82
|
+
*/
|
|
83
|
+
declare class Analytics {
|
|
84
|
+
#private;
|
|
85
|
+
constructor(api: ApiClient);
|
|
86
|
+
/**
|
|
87
|
+
* Get aggregate analytics for a workspace: storage, run health, and usage.
|
|
88
|
+
* @param workspaceSlug - Workspace slug
|
|
89
|
+
* @returns Promise that resolves with the workspace analytics
|
|
90
|
+
* @throws {ApiError} if the request fails
|
|
91
|
+
*/
|
|
92
|
+
getAnalytics(workspaceSlug: string): Promise<WorkspaceAnalytics>;
|
|
93
|
+
/**
|
|
94
|
+
* Get a workspace's daily pipeline-run activity over a date window.
|
|
95
|
+
* @param workspaceSlug - Workspace slug
|
|
96
|
+
* @param query - Optional date window (`from` / `to`, YYYY-MM-DD)
|
|
97
|
+
* @returns Promise that resolves with the run time series
|
|
98
|
+
* @throws {ApiError} if the request fails
|
|
99
|
+
*/
|
|
100
|
+
getRunTimeSeries(workspaceSlug: string, query?: DateWindow): Promise<RunTimeSeries>;
|
|
69
101
|
}
|
|
70
102
|
//#endregion
|
|
71
103
|
//#region src/services/api-tokens.d.ts
|
|
@@ -162,6 +194,76 @@ declare class Catalog {
|
|
|
162
194
|
listRecognizers(): Promise<RecognizerCatalog>;
|
|
163
195
|
}
|
|
164
196
|
//#endregion
|
|
197
|
+
//#region src/services/chat.d.ts
|
|
198
|
+
/**
|
|
199
|
+
* Service for the workspace assistant chat: sessions and streamed messages.
|
|
200
|
+
*/
|
|
201
|
+
declare class Chat {
|
|
202
|
+
#private;
|
|
203
|
+
constructor(api: ApiClient);
|
|
204
|
+
/**
|
|
205
|
+
* List the workspace's chat sessions, most recently active first.
|
|
206
|
+
* @param workspaceSlug - Workspace slug
|
|
207
|
+
* @param query - Optional pagination (limit, after)
|
|
208
|
+
* @returns Promise that resolves with a paginated list of chat sessions
|
|
209
|
+
* @throws {ApiError} if the request fails
|
|
210
|
+
*/
|
|
211
|
+
listSessions(workspaceSlug: string, query?: CursorPagination): Promise<ChatSessionPage>;
|
|
212
|
+
/**
|
|
213
|
+
* Open a new assistant chat session in the workspace.
|
|
214
|
+
* @param workspaceSlug - Workspace slug
|
|
215
|
+
* @param session - Session creation request
|
|
216
|
+
* @returns Promise that resolves with the created chat session
|
|
217
|
+
* @throws {ApiError} if the request fails
|
|
218
|
+
*/
|
|
219
|
+
createSession(workspaceSlug: string, session: CreateChatSession): Promise<ChatSession>;
|
|
220
|
+
/**
|
|
221
|
+
* Soft-delete a chat session.
|
|
222
|
+
* @param workspaceSlug - Workspace slug
|
|
223
|
+
* @param sessionId - Session ID
|
|
224
|
+
* @throws {ApiError} if the request fails
|
|
225
|
+
*/
|
|
226
|
+
deleteSession(workspaceSlug: string, sessionId: string): Promise<void>;
|
|
227
|
+
/**
|
|
228
|
+
* List a session's messages in chronological order.
|
|
229
|
+
* @param workspaceSlug - Workspace slug
|
|
230
|
+
* @param sessionId - Session ID
|
|
231
|
+
* @returns Promise that resolves with the session's messages
|
|
232
|
+
* @throws {ApiError} if the request fails
|
|
233
|
+
*/
|
|
234
|
+
listMessages(workspaceSlug: string, sessionId: string): Promise<ChatMessage[]>;
|
|
235
|
+
/**
|
|
236
|
+
* Open the raw Server-Sent Events stream of the assistant's reply.
|
|
237
|
+
*
|
|
238
|
+
* Returns the underlying `Response` so callers can handle the
|
|
239
|
+
* `text/event-stream` body themselves. Most callers want
|
|
240
|
+
* {@link streamMessage}, which parses each frame into a typed
|
|
241
|
+
* {@link ChatToken}.
|
|
242
|
+
*
|
|
243
|
+
* @param workspaceSlug - Workspace slug
|
|
244
|
+
* @param sessionId - Session ID
|
|
245
|
+
* @param message - The message to send
|
|
246
|
+
* @returns Promise that resolves with the event-stream response
|
|
247
|
+
* @throws {ApiError} if the request fails
|
|
248
|
+
*/
|
|
249
|
+
sendMessage(workspaceSlug: string, sessionId: string, message: SendChatMessage): Promise<Response>;
|
|
250
|
+
/**
|
|
251
|
+
* Send a message and stream the assistant's reply as Server-Sent Events.
|
|
252
|
+
*
|
|
253
|
+
* Yields each {@link ChatToken} delta as it arrives, until the reply ends.
|
|
254
|
+
* Break out of the loop to stop reading. For the raw response, use
|
|
255
|
+
* {@link sendMessage}.
|
|
256
|
+
*
|
|
257
|
+
* @param workspaceSlug - Workspace slug
|
|
258
|
+
* @param sessionId - Session ID
|
|
259
|
+
* @param message - The message to send
|
|
260
|
+
* @yields each {@link ChatToken} delta as it arrives
|
|
261
|
+
* @throws {ApiError} if the request fails to open
|
|
262
|
+
* @throws {NvisyError} if the response has no readable body
|
|
263
|
+
*/
|
|
264
|
+
streamMessage(workspaceSlug: string, sessionId: string, message: SendChatMessage): AsyncGenerator<ChatToken>;
|
|
265
|
+
}
|
|
266
|
+
//#endregion
|
|
165
267
|
//#region src/services/connections.d.ts
|
|
166
268
|
/**
|
|
167
269
|
* Service for handling connection operations
|
|
@@ -609,22 +711,18 @@ declare class Runs {
|
|
|
609
711
|
*/
|
|
610
712
|
getDetections(workspaceSlug: string, runId: string): Promise<Audit>;
|
|
611
713
|
/**
|
|
612
|
-
* Download a run's audit as a
|
|
613
|
-
*
|
|
614
|
-
*
|
|
615
|
-
*
|
|
616
|
-
*
|
|
617
|
-
*/
|
|
618
|
-
downloadAuditJson(workspaceSlug: string, runId: string): Promise<Response>;
|
|
619
|
-
/**
|
|
620
|
-
* Download a run's audit as a zip of entities.csv, provenance.csv, and
|
|
621
|
-
* reviews.csv
|
|
714
|
+
* Download a run's audit as a file.
|
|
715
|
+
*
|
|
716
|
+
* `format` is `csv` (default) — a zip of entities.csv, provenance.csv, and
|
|
717
|
+
* reviews.csv — or `json`, a pretty-printed JSON file.
|
|
718
|
+
*
|
|
622
719
|
* @param workspaceSlug - Workspace slug
|
|
623
720
|
* @param runId - Run ID
|
|
721
|
+
* @param query - Optional output format (`csv` default, or `json`)
|
|
624
722
|
* @returns Promise that resolves with the file response
|
|
625
723
|
* @throws {ApiError} if the request fails
|
|
626
724
|
*/
|
|
627
|
-
|
|
725
|
+
downloadAudit(workspaceSlug: string, runId: string, query?: ExportQuery): Promise<Response>;
|
|
628
726
|
/**
|
|
629
727
|
* Open the raw Server-Sent Events stream of a run's status changes.
|
|
630
728
|
*
|
|
@@ -956,6 +1054,14 @@ declare class Nvisy {
|
|
|
956
1054
|
* Service for viewing workspace activities.
|
|
957
1055
|
*/
|
|
958
1056
|
get activities(): Activities;
|
|
1057
|
+
/**
|
|
1058
|
+
* Service for workspace analytics.
|
|
1059
|
+
*/
|
|
1060
|
+
get analytics(): Analytics;
|
|
1061
|
+
/**
|
|
1062
|
+
* Service for the workspace assistant chat.
|
|
1063
|
+
*/
|
|
1064
|
+
get chat(): Chat;
|
|
959
1065
|
/**
|
|
960
1066
|
* Service for managing API tokens.
|
|
961
1067
|
*/
|
|
@@ -1010,5 +1116,5 @@ declare class Nvisy {
|
|
|
1010
1116
|
get workspaces(): Workspaces;
|
|
1011
1117
|
}
|
|
1012
1118
|
//#endregion
|
|
1013
|
-
export {
|
|
1014
|
-
//# sourceMappingURL=client-
|
|
1119
|
+
export { Auth as _, Syncs as a, Activities as b, Policies as c, Members as d, Invites as f, Catalog as g, Chat 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, ApiTokens as v, Account as x, Analytics as y };
|
|
1120
|
+
//# sourceMappingURL=client-CfC5wM9f.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-CfC5wM9f.d.ts","names":[],"sources":["../src/services/account.ts","../src/services/activities.ts","../src/services/analytics.ts","../src/services/api-tokens.ts","../src/services/auth.ts","../src/services/catalog.ts","../src/services/chat.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 LabelRef, $n as
|
|
2
|
-
export type { Account, AccountRef, Activity, ActivityPage, ActivityPayload, AnthropicCredentials, ApiToken, ApiTokenPage, ApiTokenType, ApiTokenWithJWT, Attribution, AttributionKind, AudioAuditEvent, AudioAuditKind, AudioAuditLog, AudioData, AudioEntity, AudioEntityRecord, AudioHint, AudioLocation, AudioRedaction, Audit, AuditContext, AuditHash, AuthToken, AzureCredentials, BoundingBox, Category, ClampBucket, Color, ComponentHealth, Confidence, ConfidenceThreshold, Connection, ConnectionActivityParams, ConnectionConfig, ConnectionId, ConnectionPage, ConnectionSync, ConnectionSyncCompletedParams, ConnectionSyncFailedParams, ConnectionSyncPage, ConnectionVerification, ConnectionsQuery, CountryCode, CreateApiToken, CreateConnection, CreateInvite, CreatePipeline, CreatePipelineRun, CreatePolicy, CreateWebhook, CreateWorkspace, CursorPagination, DateGranularity, DateStyle, Dimensions, Dpi, EntityCoRef, EntityGroup, ErrorResponse, File, FileActivityParams, FileKind, FilePage, FormatToken, GcsCredentials, GdprArticle9Treatment, GdprSensitiveScope, GenerateInviteCode, Handle, Health, HealthStatus, HipaaAccountNumbers, HipaaDeidMethod, ImageAuditEvent, ImageAuditKind, ImageAuditLog, ImageData, ImageEntity, ImageEntityRecord, ImageHint, ImageLocation, ImageRedaction, Invite, InviteActivityParams, InviteCode, InviteExpiration, InvitePage, InvitePreview, InviteSent, InviteSortField, InviteStatus, Label, LabelCatalog, LabelEntry, LabelLocale, LabelRef, LabelScope, Language, LanguageProvenance, LanguageSpan, LanguageTag, Languages, LeakProfile, ListFiles, ListInvites, ListMembers, LlmConfig, LocalizedText, Login, MarkedReadStatus, Member, MemberActivityParams, MemberInvitedParams, MemberJoinedParams, MemberPage, MemberSortField, ModalityRedactions, ModalityToken, ModelEvent, Notification, NotificationEvent, NotificationPage, NotificationPayload, NotificationSettings, OcrPolicy, OpenAiCredentials, OperatorId, PatternEvent, PciDssPart, PciPanRender, Pipeline, PipelineActivityParams, PipelineDefinition, PipelineFilter, PipelineRun, PipelineRunActivityParams, PipelineRunAnalyzedParams, PipelineRunCompletedParams, PipelineRunFailedParams, PipelineRunPage, PipelineRunStatus, PipelineRunsQuery, PipelineStatus, PipelineSummary, PipelineSummaryPage, PipelineTriggerType, Point, Policy, PolicyActivityParams, PolicyDefinition, PolicyDraft, PolicyRule, PolicySummary, PolicySummaryPage, PolicyTemplate, Polygon, Predicate, PublicAccount, RangeOfUint, RasterMode, RecognizerCatalog, RegisteredRecognizer, ReplyInvite, Retention, RetentionOverride, RetentionSettings, Review, RuleMatch, RunId, RunMetadata, RunStatusEvent, S3Credentials, ScopeMetadata, ScopeParams, Sha2Algorithm, Signup, SortOrder, SourceRef, StorageConfig, SyncConnection, SyncDeletionPolicy, SyncMode, SyncSchedule, SyncScheduleInput, SyncStatus, SyncTriggerType, SystemAnnouncementParams, SystemReportParams, TabularAuditEvent, TabularAuditKind, TabularAuditLog, TabularEntity, TabularEntityRecord, TabularHint, TabularLocation, TabularRedaction, TemplateOrigin, TerminalFallback, TestWebhook, TextAuditEvent, TextAuditKind, TextAuditLog, TextData, TextEntity, TextEntityRecord, TextHint, TextLocation, TextRedaction, TimeSpan, TokenExpiration, UnreadCountEvent, UnreadStatus, UpdateAccount, UpdateApiToken, UpdateConnection, UpdateFile, UpdateMember, UpdateNotificationSettings, UpdatePipeline, UpdatePolicy, UpdateWebhook, UpdateWorkspace, ValidationErrorDetail, Waveform, Webhook, WebhookActivityParams, WebhookCreated, WebhookEvent, WebhookId, WebhookPage, WebhookResult, WebhookStatus, Workspace, WorkspaceActivityParams, WorkspacePage, WorkspaceRole, WorkspaceSettings };
|
|
1
|
+
import { $ as LabelRef, $n as ChatRole, $r as TabularHint, $t as UpdateMember, A as CreatePipelineRun, Ai as UsageReport, An as Connection, Ar as ImageAuditKind, At as CursorPagination, B as Color, Bi as PipelineActivityParams, Bn as LlmConfig, Br as PatternEvent, Bt as NotificationSettings, C as Language, Ci as RunStatusEntry, Cn as DateWindow, Cr as BoundingBox, Ct as PipelineDefinition, D as ScopeMetadata, Di as TokenCounts, Dn as ValidationErrorDetail, Dr as EntityCoRef, Dt as PipelineSummaryPage, E as Languages, Ei as StorageKindEntry, En as ErrorResponse, Er as Dpi, Et as PipelineSummary, F as RunId, Fi as ActivityPayload, Fn as ConnectionSyncPage, Fr as ImageHint, Ft as MemberJoinedParams, G as GdprArticle9Treatment, Gi as Account, Gn as SyncDeletionPolicy, Gr as Review, Gt as SystemReportParams, H as CreatePolicy, Hi as PolicyActivityParams, Hn as S3Credentials, Hr as Polygon, Ht as PipelineRunCompletedParams, I as RunMetadata, Ii as ConnectionActivityParams, In as ConnectionVerification, Ir as ImageLocation, It as Notification, J as HipaaDeidMethod, Ji as PasswordChange, Jn as SyncScheduleInput, Jr as TabularAuditEvent, Jt as UpdateNotificationSettings, K as GdprSensitiveScope, Ki as AccountRef, Kn as SyncMode, Kr as RuleMatch, Kt as UnreadCountEvent, L as RunStatusEvent, Li as FileActivityParams, Ln as ConnectionsQuery, Lr as LeakProfile, Lt as NotificationEvent, M as PipelineRunPage, Mi as Activity, Mn as ConnectionId, Mr as ImageData, Mt as ConnectionSyncFailedParams, N as PipelineRunStatus, Ni as ActivityExportQuery, Nn as ConnectionPage, Nr as ImageEntity, Nt as MarkedReadStatus, O as ScopeParams, Oi as Usage, On as AnthropicCredentials, Or as EntityGroup, Ot as PipelineTriggerType, P as PipelineRunsQuery, Pi as ActivityPage, Pn as ConnectionSync, Pr as ImageEntityRecord, Pt as MemberInvitedParams, Q as LabelLocale, Qn as ChatMessage, Qr as TabularEntityRecord, Qt as MemberSortField, R as AudioRedaction, Ri as InviteActivityParams, Rn as CreateConnection, Rr as ModelEvent, Rt as NotificationPage, S as CountryCode, Si as RunDayEntry, Sn as UpdateFile, Sr as AuditHash, St as Pipeline, T as LanguageSpan, Ti as StorageAnalytics, Tn as ExportQuery, Tr as Dimensions, Tt as PipelineStatus, U as DateGranularity, Ui as WebhookActivityParams, Un as StorageConfig, Ur as RangeOfUint, Ut as PipelineRunFailedParams, V as ConfidenceThreshold, Vi as PipelineRunActivityParams, Vn as OpenAiCredentials, Vr as Point, Vt as PipelineRunAnalyzedParams, W as DateStyle, Wi as WorkspaceActivityParams, Wn as SyncConnection, Wr as RasterMode, Wt as SystemAnnouncementParams, X as Label, Xi as UpdateAccount, Xn as SyncTriggerType, Xr as TabularAuditLog, Xt as Member, Y as ImageRedaction, Yi as PublicAccount, Yn as SyncStatus, Yr as TabularAuditKind, Yt as ListMembers, Z as LabelEntry, Zn as UpdateConnection, Zr as TabularEntity, Zt as MemberPage, _ as WebhookId, _i as ModelUsage, _n as FileKind, _r as AudioEntity, _t as TerminalFallback, a as RetentionSettings, ai as TextEntity, an as InvitePage, ar as LabelCatalog, at as PciPanRender, b as WebhookStatus, bi as RecognizerId, bn as ListFiles, br as AudioLocation, bt as Waveform, c as WorkspacePage, ci as TextLocation, cn as InviteSortField, cr as AuthToken, ct as PolicyDraft, d as CreateWebhook, di as ApiTokenPage, dn as ReplyInvite, dr as Attribution, dt as PolicySummaryPage, ei as TabularLocation, en as CreateInvite, er as ChatSession, et as LabelScope, f as TestWebhook, fi as ApiTokenType, fn as SortOrder, fr as AttributionKind, ft as PolicyTemplate, g as WebhookEvent, gi as UpdateApiToken, gn as File, gr as AudioData, gt as TemplateOrigin, h as WebhookCreated, hi as TokenExpiration, hn as HealthStatus, hr as AudioAuditLog, ht as TabularRedaction, i as RetentionOverride, ii as TextData, in as InviteExpiration, ir as SendChatMessage, it as PciDssPart, j as PipelineRun, ji as WorkspaceAnalytics, jn as ConnectionConfig, jr as ImageAuditLog, jt as ConnectionSyncCompletedParams, k as Audit, ki as UsageAnalytics, kn as AzureCredentials, kr as ImageAuditEvent, kt as UpdatePipeline, l as WorkspaceRole, li as TimeSpan, ln as InviteStatus, lr as Login, lt as PolicyRule, m as Webhook, mi as CreateApiToken, mn as Health, mr as AudioAuditKind, mt as Sha2Algorithm, n as OcrPolicy, ni as TextAuditKind, nn as Invite, nr as ChatToken, nt as LocalizedText, o as UpdateWorkspace, oi as TextEntityRecord, on as InvitePreview, or as RecognizerCatalog, ot as Policy, p as UpdateWebhook, pi as ApiTokenWithJWT, pn as ComponentHealth, pr as AudioAuditEvent, pt as Predicate, q as HipaaAccountNumbers, qi as Handle, qn as SyncSchedule, qr as SourceRef, qt as UnreadStatus, r as Retention, ri as TextAuditLog, rn as InviteCode, rr as CreateChatSession, rt as ModalityRedactions, s as Workspace, si as TextHint, sn as InviteSent, sr as RegisteredRecognizer, st as PolicyDefinition, t as CreateWorkspace, ti as TextAuditEvent, tn as GenerateInviteCode, tr as ChatSessionPage, tt as LanguageTag, u as WorkspaceSettings, ui as ApiToken, un as ListInvites, ur as Signup, ut as PolicySummary, v as WebhookPage, vi as ModelUsageEntry, vn as FilePage, vr as AudioEntityRecord, vt as TextRedaction, w as LanguageProvenance, wi as RunTimeSeries, wn as ExportFormat, wr as Category, wt as PipelineFilter, x as Confidence, xi as RunAnalytics, xn as ModalityToken, xr as AuditContext, xt as CreatePipeline, y as WebhookResult, yi as ProviderType, yn as FormatToken, yr as AudioHint, yt as UpdatePolicy, z as ClampBucket, zi as MemberActivityParams, zn as GcsCredentials, zr as OperatorId, zt as NotificationPayload } from "../index-CiQYVPsR.js";
|
|
2
|
+
export type { Account, AccountRef, Activity, ActivityExportQuery, ActivityPage, ActivityPayload, AnthropicCredentials, ApiToken, ApiTokenPage, ApiTokenType, ApiTokenWithJWT, Attribution, AttributionKind, AudioAuditEvent, AudioAuditKind, AudioAuditLog, AudioData, AudioEntity, AudioEntityRecord, AudioHint, AudioLocation, AudioRedaction, Audit, AuditContext, AuditHash, AuthToken, AzureCredentials, BoundingBox, Category, ChatMessage, ChatRole, ChatSession, ChatSessionPage, ChatToken, ClampBucket, Color, ComponentHealth, Confidence, ConfidenceThreshold, Connection, ConnectionActivityParams, ConnectionConfig, ConnectionId, ConnectionPage, ConnectionSync, ConnectionSyncCompletedParams, ConnectionSyncFailedParams, ConnectionSyncPage, ConnectionVerification, ConnectionsQuery, CountryCode, CreateApiToken, CreateChatSession, CreateConnection, CreateInvite, CreatePipeline, CreatePipelineRun, CreatePolicy, CreateWebhook, CreateWorkspace, CursorPagination, DateGranularity, DateStyle, DateWindow, Dimensions, Dpi, EntityCoRef, EntityGroup, ErrorResponse, ExportFormat, ExportQuery, File, FileActivityParams, FileKind, FilePage, FormatToken, GcsCredentials, GdprArticle9Treatment, GdprSensitiveScope, GenerateInviteCode, Handle, Health, HealthStatus, HipaaAccountNumbers, HipaaDeidMethod, ImageAuditEvent, ImageAuditKind, ImageAuditLog, ImageData, ImageEntity, ImageEntityRecord, ImageHint, ImageLocation, ImageRedaction, Invite, InviteActivityParams, InviteCode, InviteExpiration, InvitePage, InvitePreview, InviteSent, InviteSortField, InviteStatus, Label, LabelCatalog, LabelEntry, LabelLocale, LabelRef, LabelScope, Language, LanguageProvenance, LanguageSpan, LanguageTag, Languages, LeakProfile, ListFiles, ListInvites, ListMembers, LlmConfig, LocalizedText, Login, MarkedReadStatus, Member, MemberActivityParams, MemberInvitedParams, MemberJoinedParams, MemberPage, MemberSortField, ModalityRedactions, ModalityToken, ModelEvent, ModelUsage, ModelUsageEntry, Notification, NotificationEvent, NotificationPage, NotificationPayload, NotificationSettings, OcrPolicy, OpenAiCredentials, OperatorId, PasswordChange, PatternEvent, PciDssPart, PciPanRender, Pipeline, PipelineActivityParams, PipelineDefinition, PipelineFilter, PipelineRun, PipelineRunActivityParams, PipelineRunAnalyzedParams, PipelineRunCompletedParams, PipelineRunFailedParams, PipelineRunPage, PipelineRunStatus, PipelineRunsQuery, PipelineStatus, PipelineSummary, PipelineSummaryPage, PipelineTriggerType, Point, Policy, PolicyActivityParams, PolicyDefinition, PolicyDraft, PolicyRule, PolicySummary, PolicySummaryPage, PolicyTemplate, Polygon, Predicate, ProviderType, PublicAccount, RangeOfUint, RasterMode, RecognizerCatalog, RecognizerId, RegisteredRecognizer, ReplyInvite, Retention, RetentionOverride, RetentionSettings, Review, RuleMatch, RunAnalytics, RunDayEntry, RunId, RunMetadata, RunStatusEntry, RunStatusEvent, RunTimeSeries, S3Credentials, ScopeMetadata, ScopeParams, SendChatMessage, Sha2Algorithm, Signup, SortOrder, SourceRef, StorageAnalytics, StorageConfig, StorageKindEntry, SyncConnection, SyncDeletionPolicy, SyncMode, SyncSchedule, SyncScheduleInput, SyncStatus, SyncTriggerType, SystemAnnouncementParams, SystemReportParams, TabularAuditEvent, TabularAuditKind, TabularAuditLog, TabularEntity, TabularEntityRecord, TabularHint, TabularLocation, TabularRedaction, TemplateOrigin, TerminalFallback, TestWebhook, TextAuditEvent, TextAuditKind, TextAuditLog, TextData, TextEntity, TextEntityRecord, TextHint, TextLocation, TextRedaction, TimeSpan, TokenCounts, TokenExpiration, UnreadCountEvent, UnreadStatus, UpdateAccount, UpdateApiToken, UpdateConnection, UpdateFile, UpdateMember, UpdateNotificationSettings, UpdatePipeline, UpdatePolicy, UpdateWebhook, UpdateWorkspace, Usage, UsageAnalytics, UsageReport, ValidationErrorDetail, Waveform, Webhook, WebhookActivityParams, WebhookCreated, WebhookEvent, WebhookId, WebhookPage, WebhookResult, WebhookStatus, Workspace, WorkspaceActivityParams, WorkspaceAnalytics, WorkspacePage, WorkspaceRole, WorkspaceSettings };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { En as ErrorResponse } from "./index-CiQYVPsR.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-CrAVfGv9.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors-
|
|
1
|
+
{"version":3,"file":"errors-CrAVfGv9.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"}
|