@nvisy/sdk 0.45.0 → 0.47.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 +57 -0
- package/dist/{client-BSm-th0-.d.ts → client-pc1XUsBx.d.ts} +129 -17
- package/dist/client-pc1XUsBx.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-BxPIw06n.js → error-CPo0Jl05.js} +2 -2
- package/dist/error-CPo0Jl05.js.map +1 -0
- package/dist/{errors-B0aVjvsp.d.ts → errors-Cht3LbX5.d.ts} +2 -2
- package/dist/{errors-B0aVjvsp.d.ts.map → errors-Cht3LbX5.d.ts.map} +1 -1
- package/dist/{index-kr36ZsdV.d.ts → index-B-oR9rqQ.d.ts} +1033 -165
- package/dist/index-B-oR9rqQ.d.ts.map +1 -0
- 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-Wl_lWB66.js → services-FV0hA89s.js} +140 -10
- package/dist/services-FV0hA89s.js.map +1 -0
- package/dist/standalone/index.d.ts +59 -32
- package/dist/standalone/index.d.ts.map +1 -1
- package/dist/standalone/index.js +63 -33
- package/dist/standalone/index.js.map +1 -1
- package/dist/webhooks/index.d.ts +9 -9
- package/dist/webhooks/index.d.ts.map +1 -1
- package/package.json +7 -7
- package/dist/client-BSm-th0-.d.ts.map +0 -1
- package/dist/config-BhUEqFOg.d.ts.map +0 -1
- package/dist/error-BxPIw06n.js.map +0 -1
- package/dist/index-kr36ZsdV.d.ts.map +0 -1
- package/dist/services-Wl_lWB66.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,61 @@ and this project adheres to
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.47.0] - 2026-09-08
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- The `Nvisy` client supports cookie-based browser sessions: `apiToken` is now
|
|
16
|
+
optional, and a new `credentials` option (e.g. `"include"`) is forwarded to
|
|
17
|
+
`fetch` so the session cookies set by `login` / `signup` are sent. With no
|
|
18
|
+
`apiToken`, no `Authorization` header is sent
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Regenerated the API schema against the updated platform handlers
|
|
23
|
+
- **Breaking:** `auth.loginAccount()` / `auth.signupAccount()` and the standalone
|
|
24
|
+
`login` / `signup` now return `void`. Login and signup start a browser session
|
|
25
|
+
(they set HttpOnly session and CSRF cookies) instead of returning a token.
|
|
26
|
+
Programmatic clients should create an API token (via the api-tokens endpoint)
|
|
27
|
+
and pass it as `apiToken`
|
|
28
|
+
|
|
29
|
+
### Removed
|
|
30
|
+
|
|
31
|
+
- **Breaking:** the `AuthToken` datatype — login and signup no longer return a
|
|
32
|
+
token body
|
|
33
|
+
|
|
34
|
+
## [0.46.0] - 2026-09-08
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
|
|
38
|
+
- Account sign-in management on the account service: `listIdentities()`
|
|
39
|
+
(`AccountIdentities` / `AccountIdentity`), `setPassword(request)`
|
|
40
|
+
(`SetPassword`), `removePassword()`, `linkIdentity(provider, query?)`,
|
|
41
|
+
`unlinkIdentity(provider)`, and `reauth(provider, query?)` — the OIDC step-up
|
|
42
|
+
that mints the proof required to set a first password or link a provider
|
|
43
|
+
- OpenID Connect sign-in: `auth.startOidcSignIn(provider, query?)` and the
|
|
44
|
+
standalone `startOidcSignIn(provider, query?, config?)` (usable without a
|
|
45
|
+
client), both returning the provider authorize URL (`OidcStartResponse`)
|
|
46
|
+
- `connections.getPickerToken(workspaceSlug, connectionId)` mints a short-lived
|
|
47
|
+
provider access token for a browser file picker (`PickerToken`)
|
|
48
|
+
- Identity datatypes (`AccountIdentities`, `AccountIdentity`, `IdentityProvider`,
|
|
49
|
+
`SetPassword`, `OidcStartResponse`), `PickerToken`, and `CustomMatcher` — a
|
|
50
|
+
caller-defined matcher now allowed on `PolicyDefinition` / `PolicyDraft`
|
|
51
|
+
|
|
52
|
+
### Changed
|
|
53
|
+
|
|
54
|
+
- Regenerated the API schema against the updated platform handlers
|
|
55
|
+
|
|
56
|
+
### Removed
|
|
57
|
+
|
|
58
|
+
- **Breaking:** the `PasswordChange` datatype — password changes moved from
|
|
59
|
+
`UpdateAccount` to the dedicated `account.setPassword()` (`SetPassword`)
|
|
60
|
+
|
|
61
|
+
### Internal
|
|
62
|
+
|
|
63
|
+
- The coverage audit now scans `src/standalone` (was a stale `src/auth`), so the
|
|
64
|
+
standalone auth functions are covered by the operation gate
|
|
65
|
+
|
|
11
66
|
## [0.45.0] - 2026-09-07
|
|
12
67
|
|
|
13
68
|
### Added
|
|
@@ -932,6 +987,8 @@ redaction an independent resource. This release renames the SDK to match.
|
|
|
932
987
|
- Configuration validation with detailed error messages
|
|
933
988
|
|
|
934
989
|
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.42.0...HEAD
|
|
990
|
+
[0.47.0]: https://github.com/nvisycom/sdk-ts/compare/v0.46.0...v0.47.0
|
|
991
|
+
[0.46.0]: https://github.com/nvisycom/sdk-ts/compare/v0.45.0...v0.46.0
|
|
935
992
|
[0.45.0]: https://github.com/nvisycom/sdk-ts/compare/v0.44.0...v0.45.0
|
|
936
993
|
[0.44.0]: https://github.com/nvisycom/sdk-ts/compare/v0.43.0...v0.44.0
|
|
937
994
|
[0.43.0]: https://github.com/nvisycom/sdk-ts/compare/v0.42.0...v0.43.0
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { $n as
|
|
2
|
-
import { t as ClientConfig } from "./config-
|
|
1
|
+
import { $n as Provider, $t as ListInvites, An as RedactionResult, Ba as ActivityExportOptions, Bn as ConnectionSyncPage, Br as Audit, Bt as MemberPage, Ca as UpdateApiToken, Cr as Login, Da as DetectionTimeSeries, Dn as PipelineDetectionsQuery, En as DetectionStatusEvent, Et as MarkedReadStatus, Fn as Connection, Ft as UnreadCountEvent, Ha as ActivityPage, 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, Ra as WorkspaceAnalytics, Rn as ConnectionPage, Rt as ListMembers, Un as CreateConnection, Ut as CreateInvite, Va as ActivityFilterQuery, Vn as ConnectionVerification, Wn as ExportFiles, Wt as GenerateInviteCode, Xt as InviteSent, Yn as OAuthStartResponse, Yt as InvitePreview, Z as Policy, _a as ApiToken, _n as ExportQuery, _r as SendChatMessage, ba as ApiTokenWithJWT, bn as CreateDetection, br as LabelCatalog, bt as UpdatePipeline, c as WorkspacePage, ca as ArtifactSet, co as PublicAccount, d as CreateWebhook, do as paths, dr as ChatMessage, en as ReplyInvite, f as TestWebhook, fn as ListFiles, ft as CreatePipeline, gr as CreateChatSession, gt as PipelineStatus, h as WebhookCreated, hn as DateWindow, hr as ChatToken, jn as RedactionResultPage, jt as NotificationPage, lo as SetPassword, m as Webhook, mn as UpdateFile, mr as ChatSessionPage, no as AccountIdentities, nt as PolicySummaryPage, o as UpdateWorkspace, on as DeletedFiles, oo as IdentityProvider, p as UpdateWebhook, pr as ChatSession, pt as Pipeline, qn as ImportFiles, rn as Health, s as Workspace, sn as File, so as OidcStartResponse, sr as SyncStatus, t as CreateWorkspace, to as Account$1, tr as StartFileServiceOAuth, un as FilePage, uo as UpdateAccount, ur as UpdateConnection, ut as UpdatePolicy, v as WebhookPage, va as ApiTokenPage, vr as ConnectorCatalog, vt as PipelineSummaryPage, wn as DetectionPage, wr as Signup, xa as CreateApiToken, xn as Detection, xr as RecognizerCatalog, xt as CursorPagination, y as WebhookResult, zn as ConnectionSync, zt as Member } from "./index-B-oR9rqQ.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
|
/**
|
|
@@ -49,6 +49,74 @@ declare class Account {
|
|
|
49
49
|
* @throws {ApiError} if the request fails
|
|
50
50
|
*/
|
|
51
51
|
deleteAvatar(username: string): Promise<void>;
|
|
52
|
+
/**
|
|
53
|
+
* List the account's sign-in methods: its password and linked providers.
|
|
54
|
+
* @returns Promise that resolves with the account's identities
|
|
55
|
+
* @throws {ApiError} if the request fails
|
|
56
|
+
*/
|
|
57
|
+
listIdentities(): Promise<AccountIdentities>;
|
|
58
|
+
/**
|
|
59
|
+
* Set or change the account's password.
|
|
60
|
+
*
|
|
61
|
+
* Changing an existing password requires the current one; setting a first
|
|
62
|
+
* password on a provider-only account requires a step-up `reauthProof` (see
|
|
63
|
+
* {@link reauth}) instead.
|
|
64
|
+
*
|
|
65
|
+
* @param request - The password change (current/new password or reauth proof)
|
|
66
|
+
* @returns Promise that resolves when the password is set
|
|
67
|
+
* @throws {ApiError} if the request fails
|
|
68
|
+
*/
|
|
69
|
+
setPassword(request: SetPassword): Promise<void>;
|
|
70
|
+
/**
|
|
71
|
+
* Remove the account's password, leaving only its linked providers.
|
|
72
|
+
*
|
|
73
|
+
* Refused if the password is the account's only sign-in method.
|
|
74
|
+
*
|
|
75
|
+
* @returns Promise that resolves when the password is removed
|
|
76
|
+
* @throws {ApiError} if the request fails
|
|
77
|
+
*/
|
|
78
|
+
removePassword(): Promise<void>;
|
|
79
|
+
/**
|
|
80
|
+
* Begin linking an OIDC provider to the account.
|
|
81
|
+
*
|
|
82
|
+
* Requires a step-up `reauthProof` (from {@link reauth}). Returns the
|
|
83
|
+
* provider authorize URL to send the user to; on consent the callback
|
|
84
|
+
* attaches the verified identity to the account.
|
|
85
|
+
*
|
|
86
|
+
* @param provider - The identity provider to link
|
|
87
|
+
* @param query - The reauth proof and optional post-flow redirect URI
|
|
88
|
+
* @returns Promise that resolves with the provider authorize URL
|
|
89
|
+
* @throws {ApiError} if the request fails
|
|
90
|
+
*/
|
|
91
|
+
linkIdentity(provider: IdentityProvider, query?: {
|
|
92
|
+
reauthProof?: string;
|
|
93
|
+
redirectUri?: string;
|
|
94
|
+
}): Promise<OidcStartResponse>;
|
|
95
|
+
/**
|
|
96
|
+
* Unlink an OIDC provider from the account.
|
|
97
|
+
*
|
|
98
|
+
* Refused if the provider is the account's only sign-in method.
|
|
99
|
+
*
|
|
100
|
+
* @param provider - The identity provider to unlink
|
|
101
|
+
* @returns Promise that resolves when the provider is unlinked
|
|
102
|
+
* @throws {ApiError} if the request fails
|
|
103
|
+
*/
|
|
104
|
+
unlinkIdentity(provider: IdentityProvider): Promise<void>;
|
|
105
|
+
/**
|
|
106
|
+
* Begin a step-up re-authentication with an already-linked provider.
|
|
107
|
+
*
|
|
108
|
+
* Returns the provider authorize URL to send the user to; on consent the
|
|
109
|
+
* callback mints a short-lived, single-use proof required to add a credential
|
|
110
|
+
* ({@link setPassword} for a first password, or {@link linkIdentity}).
|
|
111
|
+
*
|
|
112
|
+
* @param provider - The linked identity provider to re-authenticate with
|
|
113
|
+
* @param query - Optional post-flow redirect URI
|
|
114
|
+
* @returns Promise that resolves with the provider authorize URL
|
|
115
|
+
* @throws {ApiError} if the request fails
|
|
116
|
+
*/
|
|
117
|
+
reauth(provider: IdentityProvider, query?: {
|
|
118
|
+
redirectUri?: string;
|
|
119
|
+
}): Promise<OidcStartResponse>;
|
|
52
120
|
}
|
|
53
121
|
//#endregion
|
|
54
122
|
//#region src/services/activities.d.ts
|
|
@@ -155,25 +223,50 @@ declare class Auth {
|
|
|
155
223
|
#private;
|
|
156
224
|
constructor(api: ApiClient);
|
|
157
225
|
/**
|
|
158
|
-
* 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
|
+
*
|
|
159
232
|
* @param credentials - Login credentials
|
|
160
|
-
* @returns Promise that resolves
|
|
233
|
+
* @returns Promise that resolves once the session is started
|
|
161
234
|
* @throws {ApiError} if the request fails
|
|
162
235
|
*/
|
|
163
|
-
loginAccount(credentials: Login): Promise<
|
|
236
|
+
loginAccount(credentials: Login): Promise<void>;
|
|
164
237
|
/**
|
|
165
|
-
* 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
|
+
*
|
|
166
244
|
* @param credentials - Signup details
|
|
167
|
-
* @returns Promise that resolves
|
|
245
|
+
* @returns Promise that resolves once the session is started
|
|
168
246
|
* @throws {ApiError} if the request fails
|
|
169
247
|
*/
|
|
170
|
-
signupAccount(credentials: Signup): Promise<
|
|
248
|
+
signupAccount(credentials: Signup): Promise<void>;
|
|
171
249
|
/**
|
|
172
|
-
* Logout
|
|
250
|
+
* Logout, invalidating the current session and clearing its cookies.
|
|
173
251
|
* @returns Promise that resolves when logout is complete
|
|
174
252
|
* @throws {ApiError} if the request fails
|
|
175
253
|
*/
|
|
176
254
|
logoutAccount(): Promise<void>;
|
|
255
|
+
/**
|
|
256
|
+
* Begin an OpenID Connect sign-in with a provider.
|
|
257
|
+
*
|
|
258
|
+
* Returns the provider authorize URL to redirect the user to; on consent the
|
|
259
|
+
* provider redirects to the callback, which signs the user in. Also available
|
|
260
|
+
* as the standalone `startOidcSignIn` for use without a client.
|
|
261
|
+
*
|
|
262
|
+
* @param provider - The identity provider to sign in with
|
|
263
|
+
* @param query - Optional frontend URL to return to once done
|
|
264
|
+
* @returns Promise that resolves with the provider authorize URL
|
|
265
|
+
* @throws {ApiError} if the request fails
|
|
266
|
+
*/
|
|
267
|
+
startOidcSignIn(provider: IdentityProvider, query?: {
|
|
268
|
+
redirectUri?: string;
|
|
269
|
+
}): Promise<OidcStartResponse>;
|
|
177
270
|
}
|
|
178
271
|
//#endregion
|
|
179
272
|
//#region src/services/catalog.d.ts
|
|
@@ -377,6 +470,19 @@ declare class Connections {
|
|
|
377
470
|
* @throws {ApiError} if the request fails
|
|
378
471
|
*/
|
|
379
472
|
exportFiles(workspaceSlug: string, connectionId: string, request: ExportFiles): Promise<ConnectionSync>;
|
|
473
|
+
/**
|
|
474
|
+
* Mint a short-lived provider access token for a browser file picker.
|
|
475
|
+
*
|
|
476
|
+
* For file-service connections with a token-based picker only. The token is
|
|
477
|
+
* minted from the connection's stored credentials and is short-lived; the
|
|
478
|
+
* refresh token is never returned.
|
|
479
|
+
*
|
|
480
|
+
* @param workspaceSlug - Workspace slug
|
|
481
|
+
* @param connectionId - Connection ID
|
|
482
|
+
* @returns Promise that resolves with the short-lived picker token
|
|
483
|
+
* @throws {ApiError} if the request fails
|
|
484
|
+
*/
|
|
485
|
+
getPickerToken(workspaceSlug: string, connectionId: string): Promise<PickerToken>;
|
|
380
486
|
}
|
|
381
487
|
//#endregion
|
|
382
488
|
//#region src/services/detections.d.ts
|
|
@@ -1103,19 +1209,25 @@ declare class Nvisy {
|
|
|
1103
1209
|
/**
|
|
1104
1210
|
* Creates a new Nvisy client instance.
|
|
1105
1211
|
*
|
|
1106
|
-
*
|
|
1107
|
-
*
|
|
1212
|
+
* Authenticate with an `apiToken` (bearer token) or, for a browser session
|
|
1213
|
+
* started by the standalone `login` / `signup`, with `credentials: "include"`
|
|
1214
|
+
* and no token.
|
|
1215
|
+
*
|
|
1216
|
+
* @param config - Configuration options; omit `apiToken` for a cookie session
|
|
1217
|
+
* @throws {NvisyError} If an `apiToken` is provided but invalid
|
|
1108
1218
|
*
|
|
1109
1219
|
* @example
|
|
1110
1220
|
* ```typescript
|
|
1111
|
-
*
|
|
1112
|
-
*
|
|
1113
|
-
*
|
|
1114
|
-
*
|
|
1221
|
+
* // API token
|
|
1222
|
+
* const nvisy = new Nvisy({ apiToken: "your-api-token" });
|
|
1223
|
+
*
|
|
1224
|
+
* // Browser session
|
|
1225
|
+
* const nvisy = new Nvisy({ credentials: "include" });
|
|
1226
|
+
*
|
|
1115
1227
|
* const account = await nvisy.account.getAccount();
|
|
1116
1228
|
* ```
|
|
1117
1229
|
*/
|
|
1118
|
-
constructor(config
|
|
1230
|
+
constructor(config?: ClientConfig);
|
|
1119
1231
|
/**
|
|
1120
1232
|
* Creates a new client with a different API token.
|
|
1121
1233
|
*
|
|
@@ -1235,4 +1347,4 @@ declare class Nvisy {
|
|
|
1235
1347
|
}
|
|
1236
1348
|
//#endregion
|
|
1237
1349
|
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 };
|
|
1238
|
-
//# sourceMappingURL=client-
|
|
1350
|
+
//# sourceMappingURL=client-pc1XUsBx.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-pc1XUsBx.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
|
|
2
|
-
export type { Account, 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 WebhookActivityParams, $i as TextEntity, $n as Provider, $r as Dpi, $t as ListInvites, A as Color, Aa as ProviderType, Ai as SourceRef, An as RedactionResult, Ar as AudioData, At as NotificationEvent, B as ImageRedaction, Ba as ActivityExportOptions, Bi as TabularLocation, Bn as ConnectionSyncPage, Br as Audit, Bt as MemberPage, C as Language, Ca as UpdateApiToken, Ci as Polygon, Cn as DetectionMetadata, Cr as Login, Ct as ConnectionSyncFailedParams, D as ScopeMetadata, Da as DetectionTimeSeries, Di as Report, Dn as PipelineDetectionsQuery, Dr as AudioAuditEvent, Dt as MemberInvitedParams, E as Languages, Ea as DetectionStatusEntry, Ei as Redaction, En as DetectionStatusEvent, Er as AudioAdd, Et as MarkedReadStatus, F as DateStyle, Fa as Usage, Fi as TabularAuditKind, Fn as Connection, Fr as AudioManual, Ft as UnreadCountEvent, G as LabelScope, Ga as ConnectionActivityParams, Gi as TabularRetag, Gn as FileServiceConfig, Gr as CitedAttribution, Gt as Invite, H as LabelEntry, Ha as ActivityPage, Hi as TabularModel, Hn as ConnectionsQuery, Hr as BoundingBox, Ht as UpdateMember, I as GdprArticle9Treatment, Ia as UsageAnalytics, Ii as TabularAuditLog, In as ConnectionConfig, Ir as AudioModel, It as UnreadStatus, J as ModalityRedactions, Ja as InviteActivityParams, Ji as TextAuditKind, Jn as LlmConfig, Jr as Contested, Jt as InvitePage, K as LanguageTag, Ka as DetectionActivityParams, Ki as TextAdd, Kn as GcsCredentials, Kr as CodecParams, Kt as InviteCode, L as GdprSensitiveScope, La as UsageReport, Li as TabularEdit, Ln as ConnectionId, Lr as AudioPattern, Lt as UpdateNotificationSettings, M as CreatePolicy, Ma as StorageAnalytics, Mi as Suppress, Mn as WorkspaceDetectionsQuery, Mr as AudioEntity, Mt as NotificationPayload, N as CustomMatcher, Na as StorageKindEntry, Ni as TabularAdd, Nn as AuthenticatedProvider, Nr as AudioHint, Nt as NotificationSettings, O as AudioRedaction, Oa as ModelUsage, Oi as RuleMatch, On as RedactDetection, Or as AudioAuditKind, Ot as MemberJoinedParams, P as DateGranularity, Pa as TokenCounts, Pi as TabularAuditEvent, Pn as AzureCredentials, Pr as AudioLocation, Pt as RedactionCreatedParams, Q as PolicyDefinition, Qa as RedactionActivityParams, Qi as TextEdit, Qn as PickerToken, Qr as DocumentContext, Qt as InviteStatus, R as HipaaAccountNumbers, Ra as WorkspaceAnalytics, Ri as TabularEntity, Rn as ConnectionPage, Rr as AudioRefinement, Rt as ListMembers, S as CountryCode, Sa as TokenExpiration, Si as Point, Sn as DetectionId, Sr as RegisteredRecognizer, St as ConnectionSyncCompletedParams, T as LanguageSpan, Ta as DetectionDayEntry, Ti as RasterMode, Tn as DetectionStatus, Tr as Attribution, Tt as DetectionFailedParams, U as LabelLocale, Ua as ActivityPayload, Ui as TabularPattern, Un as CreateConnection, Ur as Calibration, Ut as CreateInvite, V as Label, Va as ActivityFilterQuery, Vi as TabularManual, Vn as ConnectionVerification, Vr as AuditHash, Vt as MemberSortField, W as LabelRef, Wa as ActivityType, Wi as TabularRefinement, Wn as ExportFiles, Wr as Category, Wt as GenerateInviteCode, X as PciPanRender, Xa as PipelineActivityParams, Xi as TextCoord, Xn as OAuthTokens, Xr as Deduplication, Xt as InviteSent, Y as PciDssPart, Ya as MemberActivityParams, Yi as TextAuditLog, Yn as OAuthStartResponse, Yr as DecodedSpan, Yt as InvitePreview, Z as Policy, Za as PolicyActivityParams, Zi as TextData, Zn as PickedFile, Zr as Dimensions, Zt as InviteSortField, _ as WebhookId, _a as ApiToken, _i as LeakProfile, _n as ExportQuery, _r as SendChatMessage, _t as PipelineSummary, a as RetentionSettings, aa as TextRefinement, ai as ImageAuditKind, an as DeleteFiles, ao as Handle, ar as SyncSchedule, at as Sha2Algorithm, b as WebhookStatus, ba as ApiTokenWithJWT, bi as OperatorId, bn as CreateDetection, br as LabelCatalog, bt as UpdatePipeline, c as WorkspacePage, ca as ArtifactSet, ci as ImageEdit, cn as FileHash, co as PublicAccount, cr as SyncTriggerType, ct as TerminalFallback, d as CreateWebhook, da as LayoutWord, di as ImageLocation, dn as FormatToken, dr as ChatMessage, dt as Waveform, ea as TextHint, ei as EditSet, en as ReplyInvite, eo as WorkspaceActivityParams, er as S3Credentials, et as PolicyRule, f as TestWebhook, fa as Token, fi as ImageManual, fn as ListFiles, fr as ChatRole, ft as CreatePipeline, g as WebhookEvent, ga as Transcription, gi as ImageRetag, gn as ExportFormat, gr as CreateChatSession, gt as PipelineStatus, h as WebhookCreated, ha as TranscriptWord, hi as ImageRefinement, hn as DateWindow, hr as ChatToken, ht as PipelineFilter, i as RetentionOverride, ia as TextPattern, ii as ImageAuditEvent, in as HealthStatus, io as AccountRef, ir as SyncMode, it as Predicate, j as ConfidenceThreshold, ja as RecognizerId, ji as SourceSpan, jn as RedactionResultPage, jr as AudioEdit, jt as NotificationPage, k as ClampBucket, ka as ModelUsageEntry, ki as Selection, kn as RedactionId, kr as AudioAuditLog, kt as Notification, l as WorkspaceRole, la as Layout, li as ImageEntity, ln as FileKind, lo as SetPassword, lr as UnauthenticatedProvider, lt as TextRedaction, m as Webhook, ma as TranscriptSegment, mi as ImagePattern, mn as UpdateFile, mr as ChatSessionPage, mt as PipelineDefinition, n as RasterPolicy, na as TextManual, ni as FreeformAttribution, nn as ComponentHealth, no as AccountIdentities, nr as StorageConfig, nt as PolicySummaryPage, o as UpdateWorkspace, oa as TextRetag, oi as ImageAuditLog, on as DeletedFiles, oo as IdentityProvider, or as SyncScheduleInput, ot as TabularRedaction, p as UpdateWebhook, pa as Tokens, pi as ImageModel, pn as ModalityToken, pr as ChatSession, pt as Pipeline, q as LocalizedText, qa as FileActivityParams, qi as TextAuditEvent, qn as ImportFiles, qr as Conflict, qt as InviteExpiration, r as Retention, ra as TextModel, ri as ImageAdd, rn as Health, ro as AccountIdentity, rr as SyncDeletionPolicy, rt as PolicyTemplate, s as Workspace, sa as TimeSpan, si as ImageData, sn as File, so as OidcStartResponse, sr as SyncStatus, st as TemplateOrigin, t as CreateWorkspace, ta as TextLocation, ti as EntityCoRef, tn as SortOrder, to as Account, tr as StartFileServiceOAuth, tt as PolicySummary, u as WorkspaceSettings, ua as LayoutBlock, ui as ImageHint, un as FilePage, uo as UpdateAccount, ur as UpdateConnection, ut as UpdatePolicy, v as WebhookPage, va as ApiTokenPage, vi as ManualIntent, vn as ErrorResponse, vr as ConnectorCatalog, vt as PipelineSummaryPage, w as LanguageProvenance, wa as DetectionAnalytics, wi as RangeOfUint, wn as DetectionPage, wr as Signup, wt as DetectionCompletedParams, x as Confidence, xa as CreateApiToken, xi as PatternEvent, xn as Detection, xr as RecognizerCatalog, xt as CursorPagination, y as WebhookResult, ya as ApiTokenType, yi as ModelEvent, yn as ValidationErrorDetail, yr as FileProviders, yt as PipelineTriggerType, z as HipaaDeidMethod, za as Activity, zi as TabularHint, zn as ConnectionSync, zr as AudioRetag, zt as Member } from "../index-B-oR9rqQ.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, 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.47.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-CPo0Jl05.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error-CPo0Jl05.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 {
|
|
1
|
+
import { vn as ErrorResponse } from "./index-B-oR9rqQ.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-Cht3LbX5.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors-
|
|
1
|
+
{"version":3,"file":"errors-Cht3LbX5.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"}
|