@nvisy/sdk 0.46.0 → 0.48.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 +38 -0
- package/dist/{client-0oq7sASN.d.ts → client-BMQhkLaC.d.ts} +46 -17
- package/dist/client-BMQhkLaC.d.ts.map +1 -0
- package/dist/{config-BhUEqFOg.d.ts → config-BdAgnJlh.d.ts} +22 -12
- package/dist/config-BdAgnJlh.d.ts.map +1 -0
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{error-BeVSNpDg.js → error-DZ3l15-g.js} +2 -2
- package/dist/error-DZ3l15-g.js.map +1 -0
- package/dist/{errors-BLX8SuEm.d.ts → errors-DILJOdod.d.ts} +2 -2
- package/dist/{errors-BLX8SuEm.d.ts.map → errors-DILJOdod.d.ts.map} +1 -1
- package/dist/{index-uEHkixjD.d.ts → index-BtQASJ4U.d.ts} +151 -34
- package/dist/{index-uEHkixjD.d.ts.map → index-BtQASJ4U.d.ts.map} +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +32 -13
- package/dist/index.js.map +1 -1
- package/dist/services/index.d.ts +1 -1
- package/dist/services/index.js +1 -1
- package/dist/{services-BZFiiCXu.js → services-CG0FEolQ.js} +34 -10
- package/dist/services-CG0FEolQ.js.map +1 -0
- package/dist/standalone/index.d.ts +32 -31
- package/dist/standalone/index.d.ts.map +1 -1
- package/dist/standalone/index.js +33 -33
- package/dist/standalone/index.js.map +1 -1
- package/dist/webhooks/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/client-0oq7sASN.d.ts.map +0 -1
- package/dist/config-BhUEqFOg.d.ts.map +0 -1
- package/dist/error-BeVSNpDg.js.map +0 -1
- package/dist/services-BZFiiCXu.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.48.0] - 2026-09-08
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- `auth.mintDesktopToken(request)` mints a long-lived native-app token from an
|
|
16
|
+
active browser session for a desktop app, delivered via a deep-link
|
|
17
|
+
`redirectUri` (`DesktopTokenRequest` / `DesktopToken`)
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Regenerated the API schema against the updated platform handlers
|
|
22
|
+
- **Breaking:** the `ApiTokenType` value `cli` was renamed to `app`
|
|
23
|
+
|
|
24
|
+
## [0.47.0] - 2026-09-08
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- The `Nvisy` client supports cookie-based browser sessions: `apiToken` is now
|
|
29
|
+
optional, and a new `credentials` option (e.g. `"include"`) is forwarded to
|
|
30
|
+
`fetch` so the session cookies set by `login` / `signup` are sent. With no
|
|
31
|
+
`apiToken`, no `Authorization` header is sent
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- Regenerated the API schema against the updated platform handlers
|
|
36
|
+
- **Breaking:** `auth.loginAccount()` / `auth.signupAccount()` and the standalone
|
|
37
|
+
`login` / `signup` now return `void`. Login and signup start a browser session
|
|
38
|
+
(they set HttpOnly session and CSRF cookies) instead of returning a token.
|
|
39
|
+
Programmatic clients should create an API token (via the api-tokens endpoint)
|
|
40
|
+
and pass it as `apiToken`
|
|
41
|
+
|
|
42
|
+
### Removed
|
|
43
|
+
|
|
44
|
+
- **Breaking:** the `AuthToken` datatype — login and signup no longer return a
|
|
45
|
+
token body
|
|
46
|
+
|
|
11
47
|
## [0.46.0] - 2026-09-08
|
|
12
48
|
|
|
13
49
|
### Added
|
|
@@ -964,6 +1000,8 @@ redaction an independent resource. This release renames the SDK to match.
|
|
|
964
1000
|
- Configuration validation with detailed error messages
|
|
965
1001
|
|
|
966
1002
|
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.42.0...HEAD
|
|
1003
|
+
[0.48.0]: https://github.com/nvisycom/sdk-ts/compare/v0.47.0...v0.48.0
|
|
1004
|
+
[0.47.0]: https://github.com/nvisycom/sdk-ts/compare/v0.46.0...v0.47.0
|
|
967
1005
|
[0.46.0]: https://github.com/nvisycom/sdk-ts/compare/v0.45.0...v0.46.0
|
|
968
1006
|
[0.45.0]: https://github.com/nvisycom/sdk-ts/compare/v0.44.0...v0.45.0
|
|
969
1007
|
[0.44.0]: https://github.com/nvisycom/sdk-ts/compare/v0.43.0...v0.44.0
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { $n as Provider, $t as ListInvites, An as RedactionResult, Bn as ConnectionSyncPage, Bt as MemberPage, Cr as
|
|
2
|
-
import { t as ClientConfig } from "./config-
|
|
1
|
+
import { $n as Provider, $t as ListInvites, An as RedactionResult, Ba as WorkspaceAnalytics, Bn as ConnectionSyncPage, Bt as MemberPage, Ca as CreateApiToken, Cr as DesktopToken, Dn as PipelineDetectionsQuery, En as DetectionStatusEvent, Er as Signup, Et as MarkedReadStatus, Fn as Connection, Ft as UnreadCountEvent, Ha as ActivityExportOptions, Hr as Audit, Ht as UpdateMember, It as UnreadStatus, Jt as InvitePage, Kt as InviteCode, Lt as UpdateNotificationSettings, M as CreatePolicy, Mn as WorkspaceDetectionsQuery, Nt as NotificationSettings, On as RedactDetection, Qn as PickerToken, Rn as ConnectionPage, Rt as ListMembers, Sa as ApiTokenWithJWT, Ta as UpdateApiToken, Tr as Login, Ua as ActivityFilterQuery, Un as CreateConnection, Ut as CreateInvite, Vn as ConnectionVerification, Wa as ActivityPage, Wn as ExportFiles, Wt as GenerateInviteCode, Xt as InviteSent, Yn as OAuthStartResponse, Yt as InvitePreview, Z as Policy, _n as ExportQuery, _r as SendChatMessage, ba as ApiTokenPage, bn as CreateDetection, br as LabelCatalog, bt as UpdatePipeline, c as WorkspacePage, co as IdentityProvider, d as CreateWebhook, do as SetPassword, dr as ChatMessage, en as ReplyInvite, f as TestWebhook, fn as ListFiles, fo as UpdateAccount, ft as CreatePipeline, gr as CreateChatSession, gt as PipelineStatus, h as WebhookCreated, hn as DateWindow, hr as ChatToken, io as AccountIdentities, jn as RedactionResultPage, jt as NotificationPage, ka as DetectionTimeSeries, lo as OidcStartResponse, m as Webhook, mn as UpdateFile, mr as ChatSessionPage, nt as PolicySummaryPage, o as UpdateWorkspace, on as DeletedFiles, p as UpdateWebhook, po as paths, pr as ChatSession, pt as Pipeline, qn as ImportFiles, rn as Health, ro as Account$1, s as Workspace, sn as File, sr as SyncStatus, t as CreateWorkspace, tr as StartFileServiceOAuth, ua as ArtifactSet, un as FilePage, uo as PublicAccount, ur as UpdateConnection, ut as UpdatePolicy, v as WebhookPage, vr as ConnectorCatalog, vt as PipelineSummaryPage, wn as DetectionPage, wr as DesktopTokenRequest, xn as Detection, xr as RecognizerCatalog, xt as CursorPagination, y as WebhookResult, ya as ApiToken, zn as ConnectionSync, zt as Member } from "./index-BtQASJ4U.js";
|
|
2
|
+
import { t as ClientConfig } from "./config-BdAgnJlh.js";
|
|
3
3
|
import { Client } from "openapi-fetch";
|
|
4
4
|
//#region src/services/account.d.ts
|
|
5
5
|
/**
|
|
@@ -223,21 +223,31 @@ declare class Auth {
|
|
|
223
223
|
#private;
|
|
224
224
|
constructor(api: ApiClient);
|
|
225
225
|
/**
|
|
226
|
-
* Login with email and password
|
|
226
|
+
* Login with email and password, starting a browser session.
|
|
227
|
+
*
|
|
228
|
+
* Sets HttpOnly session and CSRF cookies; returns no body. Programmatic
|
|
229
|
+
* clients should instead create an API token via {@link ApiTokens} and pass
|
|
230
|
+
* it as `apiToken` when constructing the client.
|
|
231
|
+
*
|
|
227
232
|
* @param credentials - Login credentials
|
|
228
|
-
* @returns Promise that resolves
|
|
233
|
+
* @returns Promise that resolves once the session is started
|
|
229
234
|
* @throws {ApiError} if the request fails
|
|
230
235
|
*/
|
|
231
|
-
loginAccount(credentials: Login): Promise<
|
|
236
|
+
loginAccount(credentials: Login): Promise<void>;
|
|
232
237
|
/**
|
|
233
|
-
* Sign up a new account
|
|
238
|
+
* Sign up a new account, starting a browser session.
|
|
239
|
+
*
|
|
240
|
+
* Sets HttpOnly session and CSRF cookies; returns no body. Programmatic
|
|
241
|
+
* clients should instead create an API token via {@link ApiTokens} and pass
|
|
242
|
+
* it as `apiToken` when constructing the client.
|
|
243
|
+
*
|
|
234
244
|
* @param credentials - Signup details
|
|
235
|
-
* @returns Promise that resolves
|
|
245
|
+
* @returns Promise that resolves once the session is started
|
|
236
246
|
* @throws {ApiError} if the request fails
|
|
237
247
|
*/
|
|
238
|
-
signupAccount(credentials: Signup): Promise<
|
|
248
|
+
signupAccount(credentials: Signup): Promise<void>;
|
|
239
249
|
/**
|
|
240
|
-
* Logout
|
|
250
|
+
* Logout, invalidating the current session and clearing its cookies.
|
|
241
251
|
* @returns Promise that resolves when logout is complete
|
|
242
252
|
* @throws {ApiError} if the request fails
|
|
243
253
|
*/
|
|
@@ -257,6 +267,19 @@ declare class Auth {
|
|
|
257
267
|
startOidcSignIn(provider: IdentityProvider, query?: {
|
|
258
268
|
redirectUri?: string;
|
|
259
269
|
}): Promise<OidcStartResponse>;
|
|
270
|
+
/**
|
|
271
|
+
* Mint a long-lived native-app token for a desktop app.
|
|
272
|
+
*
|
|
273
|
+
* Requires an active browser session (the desktop login completes in the
|
|
274
|
+
* browser first). Exchanges that session for an `app` token to hand to the
|
|
275
|
+
* desktop app via the given deep-link `redirectUri`, which must be a
|
|
276
|
+
* configured desktop scheme; it is echoed back in the response.
|
|
277
|
+
*
|
|
278
|
+
* @param request - The desktop deep-link to deliver the token on
|
|
279
|
+
* @returns Promise that resolves with the minted token and redirect URI
|
|
280
|
+
* @throws {ApiError} if the request fails
|
|
281
|
+
*/
|
|
282
|
+
mintDesktopToken(request: DesktopTokenRequest): Promise<DesktopToken>;
|
|
260
283
|
}
|
|
261
284
|
//#endregion
|
|
262
285
|
//#region src/services/catalog.d.ts
|
|
@@ -1199,19 +1222,25 @@ declare class Nvisy {
|
|
|
1199
1222
|
/**
|
|
1200
1223
|
* Creates a new Nvisy client instance.
|
|
1201
1224
|
*
|
|
1202
|
-
*
|
|
1203
|
-
*
|
|
1225
|
+
* Authenticate with an `apiToken` (bearer token) or, for a browser session
|
|
1226
|
+
* started by the standalone `login` / `signup`, with `credentials: "include"`
|
|
1227
|
+
* and no token.
|
|
1228
|
+
*
|
|
1229
|
+
* @param config - Configuration options; omit `apiToken` for a cookie session
|
|
1230
|
+
* @throws {NvisyError} If an `apiToken` is provided but invalid
|
|
1204
1231
|
*
|
|
1205
1232
|
* @example
|
|
1206
1233
|
* ```typescript
|
|
1207
|
-
*
|
|
1208
|
-
*
|
|
1209
|
-
*
|
|
1210
|
-
*
|
|
1234
|
+
* // API token
|
|
1235
|
+
* const nvisy = new Nvisy({ apiToken: "your-api-token" });
|
|
1236
|
+
*
|
|
1237
|
+
* // Browser session
|
|
1238
|
+
* const nvisy = new Nvisy({ credentials: "include" });
|
|
1239
|
+
*
|
|
1211
1240
|
* const account = await nvisy.account.getAccount();
|
|
1212
1241
|
* ```
|
|
1213
1242
|
*/
|
|
1214
|
-
constructor(config
|
|
1243
|
+
constructor(config?: ClientConfig);
|
|
1215
1244
|
/**
|
|
1216
1245
|
* Creates a new client with a different API token.
|
|
1217
1246
|
*
|
|
@@ -1331,4 +1360,4 @@ declare class Nvisy {
|
|
|
1331
1360
|
}
|
|
1332
1361
|
//#endregion
|
|
1333
1362
|
export { Account as S, Catalog as _, Syncs as a, Analytics as b, Policies as c, Members as d, Invites as f, Chat as g, Connections as h, Webhooks as i, Pipelines as l, Detections as m, Nvisy as n, Status as o, Files as p, Workspaces as r, Redactions as s, ApiClient as t, Notifications as u, Auth as v, Activities as x, ApiTokens as y };
|
|
1334
|
-
//# sourceMappingURL=client-
|
|
1363
|
+
//# sourceMappingURL=client-BMQhkLaC.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-BMQhkLaC.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/detections.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/redactions.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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"}
|
|
@@ -17,26 +17,36 @@ declare const VERSION: string;
|
|
|
17
17
|
/**
|
|
18
18
|
* Configuration options for creating a Nvisy client.
|
|
19
19
|
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
20
|
+
* Authenticate one of two ways: pass an `apiToken` (sent as a bearer token on
|
|
21
|
+
* every request), or use a browser session — sign in with the standalone
|
|
22
|
+
* `login` / `signup`, then set `credentials: "include"` so the session cookies
|
|
23
|
+
* are sent. All other fields are optional and use sensible defaults.
|
|
22
24
|
*
|
|
23
25
|
* @example
|
|
24
26
|
* ```typescript
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
* };
|
|
30
|
-
* const client = new Client(config);
|
|
27
|
+
* // API token
|
|
28
|
+
* const client = new Client({ apiToken: "your-api-token" });
|
|
29
|
+
*
|
|
30
|
+
* // Browser session (after `login()` set the cookies)
|
|
31
|
+
* const client = new Client({ credentials: "include" });
|
|
31
32
|
* ```
|
|
32
33
|
*/
|
|
33
34
|
interface ClientConfig {
|
|
34
35
|
/**
|
|
35
|
-
* API token for authentication
|
|
36
|
+
* API token for authentication, sent as `Authorization: Bearer <token>`.
|
|
37
|
+
*
|
|
38
|
+
* Tokens can be obtained from the Nvisy dashboard or the api-tokens endpoint.
|
|
39
|
+
* Omit it to authenticate with a browser session instead (see `credentials`).
|
|
40
|
+
*/
|
|
41
|
+
apiToken?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Credentials mode for every request, forwarded to `fetch`.
|
|
36
44
|
*
|
|
37
|
-
*
|
|
45
|
+
* Set to `"include"` to send the session cookies established by the
|
|
46
|
+
* standalone `login` / `signup` (needed for cross-origin browser sessions).
|
|
47
|
+
* Defaults to the platform's `fetch` default when omitted.
|
|
38
48
|
*/
|
|
39
|
-
|
|
49
|
+
credentials?: RequestCredentials;
|
|
40
50
|
/**
|
|
41
51
|
* Base URL for the Nvisy API.
|
|
42
52
|
*
|
|
@@ -90,4 +100,4 @@ declare const DEFAULTS: {
|
|
|
90
100
|
};
|
|
91
101
|
//#endregion
|
|
92
102
|
export { DEFAULTS as n, VERSION as r, ClientConfig as t };
|
|
93
|
-
//# sourceMappingURL=config-
|
|
103
|
+
//# sourceMappingURL=config-BdAgnJlh.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config-BdAgnJlh.d.ts","names":[],"sources":["../src/config.ts"],"mappings":";;;;;;;;;;;;;;;cAsBa;;;;;;;;;;;;;;;;;;UAoBI;;;;;;;EAOhB;;;;;;;;EASA,cAAc;;;;;;EAOd;;;;;;;;EASA,UAAU;;;;;;EAOV;;;;;;;;EASA;;;;;;;;;EAUA,eAAe,WAAW;;;;;cAMd;;;;WAAA;;;;WAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as PolicyDraft, $a as
|
|
2
|
-
export type { Account, AccountIdentities, AccountIdentity, AccountRef, Activity, ActivityExportOptions, ActivityFilterQuery, ActivityPage, ActivityPayload, ActivityType, ApiToken, ApiTokenPage, ApiTokenType, ApiTokenWithJWT, ArtifactSet, Attribution, AudioAdd, AudioAuditEvent, AudioAuditKind, AudioAuditLog, AudioData, AudioEdit, AudioEntity, AudioHint, AudioLocation, AudioManual, AudioModel, AudioPattern, AudioRedaction, AudioRefinement, AudioRetag, Audit, AuditHash,
|
|
1
|
+
import { $ as PolicyDraft, $a as PolicyActivityParams, $i as TextData, $n as Provider, $r as Dimensions, $t as ListInvites, A as Color, Aa as ModelUsage, Ai as RuleMatch, An as RedactionResult, Ar as AudioAuditKind, At as NotificationEvent, B as ImageRedaction, Ba as WorkspaceAnalytics, Bi as TabularEntity, Bn as ConnectionSyncPage, Br as AudioRefinement, Bt as MemberPage, C as Language, Ca as CreateApiToken, Ci as PatternEvent, Cn as DetectionMetadata, Cr as DesktopToken, Ct as ConnectionSyncFailedParams, D as ScopeMetadata, Da as DetectionDayEntry, Di as RasterMode, Dn as PipelineDetectionsQuery, Dr as Attribution, Dt as MemberInvitedParams, E as Languages, Ea as DetectionAnalytics, Ei as RangeOfUint, En as DetectionStatusEvent, Er as Signup, Et as MarkedReadStatus, F as DateStyle, Fa as StorageKindEntry, Fi as TabularAdd, Fn as Connection, Fr as AudioHint, Ft as UnreadCountEvent, G as LabelScope, Ga as ActivityPayload, Gi as TabularPattern, Gn as FileServiceConfig, Gr as Calibration, Gt as Invite, H as LabelEntry, Ha as ActivityExportOptions, Hi as TabularLocation, Hn as ConnectionsQuery, Hr as Audit, Ht as UpdateMember, I as GdprArticle9Treatment, Ia as TokenCounts, Ii as TabularAuditEvent, In as ConnectionConfig, Ir as AudioLocation, It as UnreadStatus, J as ModalityRedactions, Ja as DetectionActivityParams, Ji as TextAdd, Jn as LlmConfig, Jr as CodecParams, Jt as InvitePage, K as LanguageTag, Ka as ActivityType, Ki as TabularRefinement, Kn as GcsCredentials, Kr as Category, Kt as InviteCode, L as GdprSensitiveScope, La as Usage, Li as TabularAuditKind, Ln as ConnectionId, Lr as AudioManual, Lt as UpdateNotificationSettings, M as CreatePolicy, Ma as ProviderType, Mi as SourceRef, Mn as WorkspaceDetectionsQuery, Mr as AudioData, Mt as NotificationPayload, N as CustomMatcher, Na as RecognizerId, Ni as SourceSpan, Nn as AuthenticatedProvider, Nr as AudioEdit, Nt as NotificationSettings, O as AudioRedaction, Oa as DetectionStatusEntry, Oi as Redaction, On as RedactDetection, Or as AudioAdd, Ot as MemberJoinedParams, P as DateGranularity, Pa as StorageAnalytics, Pi as Suppress, Pn as AzureCredentials, Pr as AudioEntity, Pt as RedactionCreatedParams, Q as PolicyDefinition, Qa as PipelineActivityParams, Qi as TextCoord, Qn as PickerToken, Qr as Deduplication, Qt as InviteStatus, R as HipaaAccountNumbers, Ra as UsageAnalytics, Ri as TabularAuditLog, Rn as ConnectionPage, Rr as AudioModel, Rt as ListMembers, S as CountryCode, Sa as ApiTokenWithJWT, Si as OperatorId, Sn as DetectionId, Sr as RegisteredRecognizer, St as ConnectionSyncCompletedParams, T as LanguageSpan, Ta as UpdateApiToken, Ti as Polygon, Tn as DetectionStatus, Tr as Login, Tt as DetectionFailedParams, U as LabelLocale, Ua as ActivityFilterQuery, Ui as TabularManual, Un as CreateConnection, Ur as AuditHash, Ut as CreateInvite, V as Label, Va as Activity, Vi as TabularHint, Vn as ConnectionVerification, Vr as AudioRetag, Vt as MemberSortField, W as LabelRef, Wa as ActivityPage, Wi as TabularModel, Wn as ExportFiles, Wr as BoundingBox, Wt as GenerateInviteCode, X as PciPanRender, Xa as InviteActivityParams, Xi as TextAuditKind, Xn as OAuthTokens, Xr as Contested, Xt as InviteSent, Y as PciDssPart, Ya as FileActivityParams, Yi as TextAuditEvent, Yn as OAuthStartResponse, Yr as Conflict, Yt as InvitePreview, Z as Policy, Za as MemberActivityParams, Zi as TextAuditLog, Zn as PickedFile, Zr as DecodedSpan, Zt as InviteSortField, _ as WebhookId, _a as TranscriptWord, _i as ImageRefinement, _n as ExportQuery, _r as SendChatMessage, _t as PipelineSummary, a as RetentionSettings, aa as TextModel, ai as ImageAdd, an as DeleteFiles, ao as AccountIdentity, ar as SyncSchedule, at as Sha2Algorithm, b as WebhookStatus, ba as ApiTokenPage, bi as ManualIntent, bn as CreateDetection, br as LabelCatalog, bt as UpdatePipeline, c as WorkspacePage, ca as TextRetag, ci as ImageAuditLog, cn as FileHash, co as IdentityProvider, cr as SyncTriggerType, ct as TerminalFallback, d as CreateWebhook, da as Layout, di as ImageEntity, dn as FormatToken, do as SetPassword, dr as ChatMessage, dt as Waveform, ea as TextEdit, ei as DocumentContext, en as ReplyInvite, eo as RedactionActivityParams, er as S3Credentials, et as PolicyRule, f as TestWebhook, fa as LayoutBlock, fi as ImageHint, fn as ListFiles, fo as UpdateAccount, fr as ChatRole, ft as CreatePipeline, g as WebhookEvent, ga as TranscriptSegment, gi as ImagePattern, gn as ExportFormat, gr as CreateChatSession, gt as PipelineStatus, h as WebhookCreated, ha as Tokens, hi as ImageModel, hn as DateWindow, hr as ChatToken, ht as PipelineFilter, i as RetentionOverride, ia as TextManual, ii as FreeformAttribution, in as HealthStatus, io as AccountIdentities, ir as SyncMode, it as Predicate, j as ConfidenceThreshold, ja as ModelUsageEntry, ji as Selection, jn as RedactionResultPage, jr as AudioAuditLog, jt as NotificationPage, k as ClampBucket, ka as DetectionTimeSeries, ki as Report, kn as RedactionId, kr as AudioAuditEvent, kt as Notification, l as WorkspaceRole, la as TimeSpan, li as ImageData, ln as FileKind, lo as OidcStartResponse, lr as UnauthenticatedProvider, lt as TextRedaction, m as Webhook, ma as Token, mi as ImageManual, mn as UpdateFile, mr as ChatSessionPage, mt as PipelineDefinition, n as RasterPolicy, na as TextHint, ni as EditSet, nn as ComponentHealth, no as WorkspaceActivityParams, nr as StorageConfig, nt as PolicySummaryPage, o as UpdateWorkspace, oa as TextPattern, oi as ImageAuditEvent, on as DeletedFiles, oo as AccountRef, or as SyncScheduleInput, ot as TabularRedaction, p as UpdateWebhook, pa as LayoutWord, pi as ImageLocation, pn as ModalityToken, pr as ChatSession, pt as Pipeline, q as LocalizedText, qa as ConnectionActivityParams, qi as TabularRetag, qn as ImportFiles, qr as CitedAttribution, qt as InviteExpiration, r as Retention, ra as TextLocation, ri as EntityCoRef, rn as Health, ro as Account, rr as SyncDeletionPolicy, rt as PolicyTemplate, s as Workspace, sa as TextRefinement, si as ImageAuditKind, sn as File, so as Handle, sr as SyncStatus, st as TemplateOrigin, t as CreateWorkspace, ta as TextEntity, ti as Dpi, tn as SortOrder, to as WebhookActivityParams, tr as StartFileServiceOAuth, tt as PolicySummary, u as WorkspaceSettings, ua as ArtifactSet, ui as ImageEdit, un as FilePage, uo as PublicAccount, ur as UpdateConnection, ut as UpdatePolicy, v as WebhookPage, va as Transcription, vi as ImageRetag, vn as ErrorResponse, vr as ConnectorCatalog, vt as PipelineSummaryPage, w as LanguageProvenance, wa as TokenExpiration, wi as Point, wn as DetectionPage, wr as DesktopTokenRequest, wt as DetectionCompletedParams, x as Confidence, xa as ApiTokenType, xi as ModelEvent, xn as Detection, xr as RecognizerCatalog, xt as CursorPagination, y as WebhookResult, ya as ApiToken, yi as LeakProfile, yn as ValidationErrorDetail, yr as FileProviders, yt as PipelineTriggerType, z as HipaaDeidMethod, za as UsageReport, zi as TabularEdit, zn as ConnectionSync, zr as AudioPattern, zt as Member } from "../index-BtQASJ4U.js";
|
|
2
|
+
export type { Account, AccountIdentities, AccountIdentity, AccountRef, Activity, ActivityExportOptions, ActivityFilterQuery, ActivityPage, ActivityPayload, ActivityType, ApiToken, ApiTokenPage, ApiTokenType, ApiTokenWithJWT, ArtifactSet, Attribution, AudioAdd, AudioAuditEvent, AudioAuditKind, AudioAuditLog, AudioData, AudioEdit, AudioEntity, AudioHint, AudioLocation, AudioManual, AudioModel, AudioPattern, AudioRedaction, AudioRefinement, AudioRetag, Audit, AuditHash, AuthenticatedProvider, AzureCredentials, BoundingBox, Calibration, Category, ChatMessage, ChatRole, ChatSession, ChatSessionPage, ChatToken, CitedAttribution, ClampBucket, CodecParams, Color, ComponentHealth, Confidence, ConfidenceThreshold, Conflict, Connection, ConnectionActivityParams, ConnectionConfig, ConnectionId, ConnectionPage, ConnectionSync, ConnectionSyncCompletedParams, ConnectionSyncFailedParams, ConnectionSyncPage, ConnectionVerification, ConnectionsQuery, ConnectorCatalog, Contested, CountryCode, CreateApiToken, CreateChatSession, CreateConnection, CreateDetection, CreateInvite, CreatePipeline, CreatePolicy, CreateWebhook, CreateWorkspace, CursorPagination, CustomMatcher, DateGranularity, DateStyle, DateWindow, DecodedSpan, Deduplication, DeleteFiles, DeletedFiles, DesktopToken, DesktopTokenRequest, Detection, DetectionActivityParams, DetectionAnalytics, DetectionCompletedParams, DetectionDayEntry, DetectionFailedParams, DetectionId, DetectionMetadata, DetectionPage, DetectionStatus, DetectionStatusEntry, DetectionStatusEvent, DetectionTimeSeries, Dimensions, DocumentContext, Dpi, EditSet, EntityCoRef, ErrorResponse, ExportFiles, ExportFormat, ExportQuery, File, FileActivityParams, FileHash, FileKind, FilePage, FileProviders, FileServiceConfig, FormatToken, FreeformAttribution, GcsCredentials, GdprArticle9Treatment, GdprSensitiveScope, GenerateInviteCode, Handle, Health, HealthStatus, HipaaAccountNumbers, HipaaDeidMethod, IdentityProvider, ImageAdd, ImageAuditEvent, ImageAuditKind, ImageAuditLog, ImageData, ImageEdit, ImageEntity, ImageHint, ImageLocation, ImageManual, ImageModel, ImagePattern, ImageRedaction, ImageRefinement, ImageRetag, ImportFiles, Invite, InviteActivityParams, InviteCode, InviteExpiration, InvitePage, InvitePreview, InviteSent, InviteSortField, InviteStatus, Label, LabelCatalog, LabelEntry, LabelLocale, LabelRef, LabelScope, Language, LanguageProvenance, LanguageSpan, LanguageTag, Languages, Layout, LayoutBlock, LayoutWord, LeakProfile, ListFiles, ListInvites, ListMembers, LlmConfig, LocalizedText, Login, ManualIntent, MarkedReadStatus, Member, MemberActivityParams, MemberInvitedParams, MemberJoinedParams, MemberPage, MemberSortField, ModalityRedactions, ModalityToken, ModelEvent, ModelUsage, ModelUsageEntry, Notification, NotificationEvent, NotificationPage, NotificationPayload, NotificationSettings, OAuthStartResponse, OAuthTokens, OidcStartResponse, OperatorId, PatternEvent, PciDssPart, PciPanRender, PickedFile, PickerToken, Pipeline, PipelineActivityParams, PipelineDefinition, PipelineDetectionsQuery, PipelineFilter, PipelineStatus, PipelineSummary, PipelineSummaryPage, PipelineTriggerType, Point, Policy, PolicyActivityParams, PolicyDefinition, PolicyDraft, PolicyRule, PolicySummary, PolicySummaryPage, PolicyTemplate, Polygon, Predicate, Provider, ProviderType, PublicAccount, RangeOfUint, RasterMode, RasterPolicy, RecognizerCatalog, RecognizerId, RedactDetection, Redaction, RedactionActivityParams, RedactionCreatedParams, RedactionId, RedactionResult, RedactionResultPage, RegisteredRecognizer, ReplyInvite, Report, Retention, RetentionOverride, RetentionSettings, RuleMatch, S3Credentials, ScopeMetadata, Selection, SendChatMessage, SetPassword, Sha2Algorithm, Signup, SortOrder, SourceRef, SourceSpan, StartFileServiceOAuth, StorageAnalytics, StorageConfig, StorageKindEntry, Suppress, SyncDeletionPolicy, SyncMode, SyncSchedule, SyncScheduleInput, SyncStatus, SyncTriggerType, TabularAdd, TabularAuditEvent, TabularAuditKind, TabularAuditLog, TabularEdit, TabularEntity, TabularHint, TabularLocation, TabularManual, TabularModel, TabularPattern, TabularRedaction, TabularRefinement, TabularRetag, TemplateOrigin, TerminalFallback, TestWebhook, TextAdd, TextAuditEvent, TextAuditKind, TextAuditLog, TextCoord, TextData, TextEdit, TextEntity, TextHint, TextLocation, TextManual, TextModel, TextPattern, TextRedaction, TextRefinement, TextRetag, TimeSpan, Token, TokenCounts, TokenExpiration, Tokens, TranscriptSegment, TranscriptWord, Transcription, UnauthenticatedProvider, 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, WorkspaceDetectionsQuery, WorkspacePage, WorkspaceRole, WorkspaceSettings };
|
|
@@ -7,7 +7,7 @@ import { n as NvisyError, t as NvisyApiError } from "./errors-BOLD8iC1.js";
|
|
|
7
7
|
* Injected from `package.json` at build time, so it always matches the
|
|
8
8
|
* published version. Used in the default user agent string.
|
|
9
9
|
*/
|
|
10
|
-
const VERSION = "0.
|
|
10
|
+
const VERSION = "0.48.0";
|
|
11
11
|
/**
|
|
12
12
|
* Default configuration values used when options are not explicitly provided.
|
|
13
13
|
*/
|
|
@@ -44,4 +44,4 @@ const errorMiddleware = {
|
|
|
44
44
|
|
|
45
45
|
//#endregion
|
|
46
46
|
export { DEFAULTS as n, VERSION as r, errorMiddleware as t };
|
|
47
|
-
//# sourceMappingURL=error-
|
|
47
|
+
//# sourceMappingURL=error-DZ3l15-g.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error-DZ3l15-g.js","names":[],"sources":["../src/config.ts","../src/middleware/error.ts"],"sourcesContent":["/**\n * @fileoverview Configuration types and constants for the Nvisy SDK.\n *\n * This module provides configuration interfaces, default values, and environment\n * variable names used throughout the SDK.\n *\n * @module config\n */\n\n/**\n * Compile-time version token, replaced with the `package.json` version by the\n * build (see `tsdown.config.ts`). Declared so it type-checks; the `typeof`\n * guard below keeps it safe when the define isn't applied (tests, direct `tsc`).\n */\ndeclare const __SDK_VERSION__: string | undefined;\n\n/**\n * Current SDK version.\n *\n * Injected from `package.json` at build time, so it always matches the\n * published version. Used in the default user agent string.\n */\nexport const VERSION =\n\ttypeof __SDK_VERSION__ === \"string\" ? __SDK_VERSION__ : \"0.0.0-dev\";\n\n/**\n * Configuration options for creating a Nvisy client.\n *\n * Authenticate one of two ways: pass an `apiToken` (sent as a bearer token on\n * every request), or use a browser session — sign in with the standalone\n * `login` / `signup`, then set `credentials: \"include\"` so the session cookies\n * are sent. All other fields are optional and use sensible defaults.\n *\n * @example\n * ```typescript\n * // API token\n * const client = new Client({ apiToken: \"your-api-token\" });\n *\n * // Browser session (after `login()` set the cookies)\n * const client = new Client({ credentials: \"include\" });\n * ```\n */\nexport interface ClientConfig {\n\t/**\n\t * API token for authentication, sent as `Authorization: Bearer <token>`.\n\t *\n\t * Tokens can be obtained from the Nvisy dashboard or the api-tokens endpoint.\n\t * Omit it to authenticate with a browser session instead (see `credentials`).\n\t */\n\tapiToken?: string;\n\n\t/**\n\t * Credentials mode for every request, forwarded to `fetch`.\n\t *\n\t * Set to `\"include\"` to send the session cookies established by the\n\t * standalone `login` / `signup` (needed for cross-origin browser sessions).\n\t * Defaults to the platform's `fetch` default when omitted.\n\t */\n\tcredentials?: RequestCredentials;\n\n\t/**\n\t * Base URL for the Nvisy API.\n\t *\n\t * @default \"https://api.nvisy.com\"\n\t */\n\tbaseUrl?: string;\n\n\t/**\n\t * Custom headers to include with every request.\n\t *\n\t * These headers are merged with the default headers (Content-Type, User-Agent,\n\t * and Authorization). Custom headers take precedence over defaults if there\n\t * are conflicts.\n\t */\n\theaders?: Record<string, string>;\n\n\t/**\n\t * Custom user agent string to identify your application.\n\t *\n\t * @default \"@nvisy/sdk v.{version}\"\n\t */\n\tuserAgent?: string;\n\n\t/**\n\t * Enable logging for requests and responses.\n\t *\n\t * When enabled, logs request method, URL, status, and timing to console.\n\t *\n\t * @default false\n\t */\n\twithLogging?: boolean;\n\n\t/**\n\t * Custom fetch implementation used for every request. Must match the WHATWG\n\t * `fetch` signature. Defaults to the global `fetch`.\n\t *\n\t * Lets a host swap in a non-browser transport — e.g. a desktop (Tauri) app\n\t * passing `@tauri-apps/plugin-http`'s `fetch`, which performs the request in\n\t * the native process and so is not subject to browser CORS.\n\t */\n\tfetch?: typeof globalThis.fetch;\n}\n\n/**\n * Default configuration values used when options are not explicitly provided.\n */\nexport const DEFAULTS = {\n\t/**\n\t * Default base URL for the Nvisy API.\n\t */\n\tBASE_URL: \"https://api.nvisy.com\",\n\n\t/**\n\t * Default user agent string.\n\t */\n\tUSER_AGENT: `@nvisy/sdk v.${VERSION}`,\n} as const;\n","import type { Middleware } from \"openapi-fetch\";\nimport type { ErrorResponse } from \"@/datatypes/index.js\";\nimport { NvisyApiError, NvisyError } from \"@/errors.js\";\n\n/**\n * Middleware that automatically throws NvisyApiError for error responses.\n * This replaces the need for manual checks in services.\n */\nexport const errorMiddleware: Middleware = {\n\tasync onResponse({ response }) {\n\t\tif (!response.ok) {\n\t\t\tconst error = (await response.clone().json()) as ErrorResponse;\n\t\t\tthrow new NvisyApiError(error, response.status);\n\t\t}\n\t\treturn response;\n\t},\n\n\tonError({ error }) {\n\t\t// Wrap fetch errors (network failures, CORS, etc.) in NvisyError\n\t\tif (error instanceof Error) {\n\t\t\tthrow new NvisyError(error.message);\n\t\t}\n\t\tthrow new NvisyError(\"An unknown network error occurred\");\n\t},\n};\n"],"mappings":";;;;;;;;;AAsBA,MAAa;;;;AAoFb,MAAa,WAAW;;;;CAIvB,UAAU;;;;CAKV,YAAY,gBAAgB;AAC7B;;;;;;;;AC5GA,MAAa,kBAA8B;CAC1C,MAAM,WAAW,EAAE,YAAY;EAC9B,IAAI,CAAC,SAAS,IAAI;GACjB,MAAM,QAAS,MAAM,SAAS,MAAM,CAAC,CAAC,KAAK;GAC3C,MAAM,IAAI,cAAc,OAAO,SAAS,MAAM;EAC/C;EACA,OAAO;CACR;CAEA,QAAQ,EAAE,SAAS;EAElB,IAAI,iBAAiB,OACpB,MAAM,IAAI,WAAW,MAAM,OAAO;EAEnC,MAAM,IAAI,WAAW,mCAAmC;CACzD;AACD"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { vn as ErrorResponse } from "./index-
|
|
1
|
+
import { vn as ErrorResponse } from "./index-BtQASJ4U.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-DILJOdod.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors-
|
|
1
|
+
{"version":3,"file":"errors-DILJOdod.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"}
|