@nvisy/sdk 0.7.0 → 0.9.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 -1
- package/dist/auth/index.d.ts +1 -1
- package/dist/{client-C_-ZV3VC.d.ts → client-Ct4xfgNc.d.ts} +75 -19
- package/dist/client-Ct4xfgNc.d.ts.map +1 -0
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{index-CAJoN0TD.d.ts → index-BHXlYpCf.d.ts} +4176 -3371
- package/dist/index-BHXlYpCf.d.ts.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/services/index.d.ts +2 -2
- package/dist/services/index.js +2 -2
- package/dist/{services-DXP-jsLt.js → services-BL_Ka09L.js} +101 -11
- package/dist/services-BL_Ka09L.js.map +1 -0
- package/package.json +9 -6
- package/dist/client-C_-ZV3VC.d.ts.map +0 -1
- package/dist/index-CAJoN0TD.d.ts.map +0 -1
- package/dist/services-DXP-jsLt.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,60 @@ and this project adheres to
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.9.0] - 2026-08-04
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Regenerated the API schema against the updated platform handlers
|
|
16
|
+
- **BREAKING**: paginated response types renamed from plural to singular
|
|
17
|
+
base (e.g. `FilesPage` → `FilePage`, `ActivitiesPage` → `ActivityPage`,
|
|
18
|
+
`PoliciesPage` → `PolicyPage`, `PipelineSummariesPage` →
|
|
19
|
+
`PipelineSummaryPage`), matching the schema. All list methods return the
|
|
20
|
+
renamed types.
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Connection provider config datatypes: `ConnectionConfig`, `S3Credentials`,
|
|
25
|
+
`AzureCredentials`, `GcsCredentials` (needed to build a connection's
|
|
26
|
+
`config`)
|
|
27
|
+
- Connection sync datatypes: `SyncMode`, `SyncStatus`, `SyncTriggerType`,
|
|
28
|
+
`SyncDeletionPolicy`
|
|
29
|
+
- `Artifact` datatype for pipeline run artifacts
|
|
30
|
+
- `scripts/audit-coverage.mjs` and `audit:coverage` / `audit:coverage:remote`
|
|
31
|
+
scripts to verify the SDK covers every spec operation (1:1)
|
|
32
|
+
|
|
33
|
+
## [0.8.0] - 2026-08-04
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
|
|
37
|
+
- `syncs` service for connection syncs: `startSync`, `listSyncs`, `getSync`,
|
|
38
|
+
`cancelSync`
|
|
39
|
+
- `connections.verifyConnection()` to validate a connection's configuration
|
|
40
|
+
and credentials
|
|
41
|
+
- `ConnectionSync`, `ConnectionSyncsPage`, `SyncConnection`, and
|
|
42
|
+
`ConnectionVerification` datatypes
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Regenerated the API schema against the updated platform handlers
|
|
47
|
+
- **BREAKING**: `connections.updateConnection()`,
|
|
48
|
+
`policies.updatePolicy()`, and `webhooks.updateWebhook()` now issue
|
|
49
|
+
`PATCH` instead of `PUT`
|
|
50
|
+
- **BREAKING**: `invites.replyToInvite()` now resolves to `Member` (the
|
|
51
|
+
created member) instead of `Invite`
|
|
52
|
+
|
|
53
|
+
### Fixed
|
|
54
|
+
|
|
55
|
+
- **BREAKING**: `status.checkHealth()` no longer sends a request body on the
|
|
56
|
+
`GET /health/` request. A GET with a body throws `TypeError: Request with
|
|
57
|
+
GET method cannot have body` in browsers, which made the method unusable
|
|
58
|
+
there. The method now takes no arguments (was `checkHealth(options?)`).
|
|
59
|
+
|
|
60
|
+
### Removed
|
|
61
|
+
|
|
62
|
+
- **BREAKING**: `CheckHealth` datatype (the health endpoint no longer accepts
|
|
63
|
+
a request payload)
|
|
64
|
+
|
|
11
65
|
## [0.7.0] - 2026-08-02
|
|
12
66
|
|
|
13
67
|
### Added
|
|
@@ -192,7 +246,9 @@ and this project adheres to
|
|
|
192
246
|
- Network error handling for timeouts, DNS resolution, and connection issues
|
|
193
247
|
- Configuration validation with detailed error messages
|
|
194
248
|
|
|
195
|
-
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.
|
|
249
|
+
[Unreleased]: https://github.com/nvisycom/sdk-ts/compare/v0.9.0...HEAD
|
|
250
|
+
[0.9.0]: https://github.com/nvisycom/sdk-ts/compare/v0.8.0...v0.9.0
|
|
251
|
+
[0.8.0]: https://github.com/nvisycom/sdk-ts/compare/v0.7.0...v0.8.0
|
|
196
252
|
[0.7.0]: https://github.com/nvisycom/sdk-ts/compare/v0.6.0...v0.7.0
|
|
197
253
|
[0.6.0]: https://github.com/nvisycom/sdk-ts/compare/v0.5.0...v0.6.0
|
|
198
254
|
[0.5.0]: https://github.com/nvisycom/sdk-ts/compare/v0.4.0...v0.5.0
|
package/dist/auth/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as ClientConfig } from "../config-BRQp8Cat.js";
|
|
2
|
-
import {
|
|
2
|
+
import { Lt as AuthToken, Rt as Login, zt as Signup } from "../index-BHXlYpCf.js";
|
|
3
3
|
//#region src/auth/config.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Configuration options for standalone authentication functions.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as ClientConfig } from "./config-BRQp8Cat.js";
|
|
2
|
-
import { $ as
|
|
2
|
+
import { $t as paths, B as NotificationPage, Bt as ApiToken, Ct as ConnectionPage, D as UpdatePolicy, Et as ConnectionVerification, G as Member, H as UnreadStatus, I as UpdatePipeline, It as UpdateConnection, J as UpdateMember, Jt as ActivityPage, K as MemberPage, Kt as UpdateApiToken, L as CursorPagination, Lt as AuthToken, M as PipelineStatus, O as CreatePipeline, Ot as CreateConnection, P as PipelineSummaryPage, Q as InviteCode, Qt as UpdateAccount, Rt as Login, S as Policy, T as PolicyPage, Tt as ConnectionSyncPage, U as UpdateNotificationSettings, Ut as ApiTokenWithJWT, V as NotificationSettings, Vt as ApiTokenPage, W as ListMembers, Wt as CreateApiToken, X as GenerateInviteCode, Xt as Account$1, Y as CreateInvite, Zt as PublicAccount, _ as CreatePipelineRun, _t as UpdateFile, at as ListInvites, b as PipelineRunStatus, c as UpdateWebhook, dt as File, et as InvitePage, f as WebhookPage, ft as FilePage, h as AnalyzedDocument, ht as ListFiles, i as WorkspacePage, jt as SyncConnection, k as Pipeline, l as Webhook, lt as Health, n as UpdateWorkspace, nt as InviteSent, o as CreateWebhook, ot as ReplyInvite, p as WebhookResult, r as Workspace, s as TestWebhook, t as CreateWorkspace, tt as InvitePreview, u as WebhookCreated, v as PipelineRun, wt as ConnectionSync, x as CreatePolicy, xt as Connection, y as PipelineRunPage, zt as Signup } from "./index-BHXlYpCf.js";
|
|
3
3
|
import { Client } from "openapi-fetch";
|
|
4
4
|
//#region src/services/account.d.ts
|
|
5
5
|
/**
|
|
@@ -50,7 +50,7 @@ declare class Activities {
|
|
|
50
50
|
* @returns Promise that resolves with a paginated list of activities
|
|
51
51
|
* @throws {ApiError} if the request fails
|
|
52
52
|
*/
|
|
53
|
-
listActivities(workspaceSlug: string, query?: CursorPagination): Promise<
|
|
53
|
+
listActivities(workspaceSlug: string, query?: CursorPagination): Promise<ActivityPage>;
|
|
54
54
|
}
|
|
55
55
|
//#endregion
|
|
56
56
|
//#region src/services/api-tokens.d.ts
|
|
@@ -66,7 +66,7 @@ declare class ApiTokens {
|
|
|
66
66
|
* @returns Promise that resolves with a paginated list of API tokens
|
|
67
67
|
* @throws {ApiError} if the request fails
|
|
68
68
|
*/
|
|
69
|
-
listApiTokens(query?: CursorPagination): Promise<
|
|
69
|
+
listApiTokens(query?: CursorPagination): Promise<ApiTokenPage>;
|
|
70
70
|
/**
|
|
71
71
|
* Get a specific API token by token ID
|
|
72
72
|
* @param tokenId - The token identifier
|
|
@@ -143,7 +143,7 @@ declare class Connections {
|
|
|
143
143
|
*/
|
|
144
144
|
listConnections(workspaceSlug: string, query?: CursorPagination & {
|
|
145
145
|
provider?: string;
|
|
146
|
-
}): Promise<
|
|
146
|
+
}): Promise<ConnectionPage>;
|
|
147
147
|
/**
|
|
148
148
|
* Create a connection in a workspace
|
|
149
149
|
* @param workspaceSlug - Workspace slug
|
|
@@ -177,6 +177,14 @@ declare class Connections {
|
|
|
177
177
|
* @throws {ApiError} if the request fails
|
|
178
178
|
*/
|
|
179
179
|
deleteConnection(workspaceSlug: string, connectionId: string): Promise<void>;
|
|
180
|
+
/**
|
|
181
|
+
* Verify a connection's configuration and credentials
|
|
182
|
+
* @param workspaceSlug - Workspace slug
|
|
183
|
+
* @param connectionId - Connection ID
|
|
184
|
+
* @returns Promise that resolves with the verification result
|
|
185
|
+
* @throws {ApiError} if the request fails
|
|
186
|
+
*/
|
|
187
|
+
verifyConnection(workspaceSlug: string, connectionId: string): Promise<ConnectionVerification>;
|
|
180
188
|
}
|
|
181
189
|
//#endregion
|
|
182
190
|
//#region src/services/files.d.ts
|
|
@@ -201,7 +209,7 @@ declare class Files {
|
|
|
201
209
|
* @returns Promise that resolves with a paginated list of files
|
|
202
210
|
* @throws {ApiError} if the request fails
|
|
203
211
|
*/
|
|
204
|
-
listFiles(workspaceSlug: string, query?: ListFiles & CursorPagination): Promise<
|
|
212
|
+
listFiles(workspaceSlug: string, query?: ListFiles & CursorPagination): Promise<FilePage>;
|
|
205
213
|
/**
|
|
206
214
|
* Get file metadata by ID
|
|
207
215
|
* @param workspaceSlug - Workspace slug
|
|
@@ -251,7 +259,7 @@ declare class Invites {
|
|
|
251
259
|
* @returns Promise that resolves with a paginated list of invitations
|
|
252
260
|
* @throws {ApiError} if the request fails
|
|
253
261
|
*/
|
|
254
|
-
listInvites(workspaceSlug: string, query?: ListInvites & CursorPagination): Promise<
|
|
262
|
+
listInvites(workspaceSlug: string, query?: ListInvites & CursorPagination): Promise<InvitePage>;
|
|
255
263
|
/**
|
|
256
264
|
* Send an invitation to join a workspace
|
|
257
265
|
* @param workspaceSlug - Workspace slug
|
|
@@ -276,7 +284,7 @@ declare class Invites {
|
|
|
276
284
|
* @returns Promise that resolves with the updated invitation
|
|
277
285
|
* @throws {ApiError} if the request fails
|
|
278
286
|
*/
|
|
279
|
-
replyToInvite(workspaceSlug: string, inviteId: string, reply: ReplyInvite): Promise<
|
|
287
|
+
replyToInvite(workspaceSlug: string, inviteId: string, reply: ReplyInvite): Promise<Member>;
|
|
280
288
|
/**
|
|
281
289
|
* Generate a shareable invite code for a workspace
|
|
282
290
|
* @param workspaceSlug - Workspace slug
|
|
@@ -316,7 +324,7 @@ declare class Members {
|
|
|
316
324
|
* @returns Promise that resolves with a paginated list of members
|
|
317
325
|
* @throws {ApiError} if the request fails
|
|
318
326
|
*/
|
|
319
|
-
listMembers(workspaceSlug: string, query?: ListMembers & CursorPagination): Promise<
|
|
327
|
+
listMembers(workspaceSlug: string, query?: ListMembers & CursorPagination): Promise<MemberPage>;
|
|
320
328
|
/**
|
|
321
329
|
* Get member details by username
|
|
322
330
|
* @param workspaceSlug - Workspace slug
|
|
@@ -364,7 +372,7 @@ declare class Notifications {
|
|
|
364
372
|
* @returns Promise that resolves with a paginated list of notifications
|
|
365
373
|
* @throws {ApiError} if the request fails
|
|
366
374
|
*/
|
|
367
|
-
listNotifications(query?: CursorPagination): Promise<
|
|
375
|
+
listNotifications(query?: CursorPagination): Promise<NotificationPage>;
|
|
368
376
|
/**
|
|
369
377
|
* Get the unread notifications count for the authenticated account
|
|
370
378
|
* @returns Promise that resolves with the unread status
|
|
@@ -390,7 +398,7 @@ declare class Pipelines {
|
|
|
390
398
|
listPipelines(workspaceSlug: string, query?: CursorPagination & {
|
|
391
399
|
search?: string;
|
|
392
400
|
status?: PipelineStatus;
|
|
393
|
-
}): Promise<
|
|
401
|
+
}): Promise<PipelineSummaryPage>;
|
|
394
402
|
/**
|
|
395
403
|
* Create a pipeline in a workspace
|
|
396
404
|
* @param workspaceSlug - Workspace slug
|
|
@@ -440,7 +448,7 @@ declare class Policies {
|
|
|
440
448
|
* @returns Promise that resolves with a paginated list of policies
|
|
441
449
|
* @throws {ApiError} if the request fails
|
|
442
450
|
*/
|
|
443
|
-
listPolicies(workspaceSlug: string, query?: CursorPagination): Promise<
|
|
451
|
+
listPolicies(workspaceSlug: string, query?: CursorPagination): Promise<PolicyPage>;
|
|
444
452
|
/**
|
|
445
453
|
* Create a policy in a workspace
|
|
446
454
|
* @param workspaceSlug - Workspace slug
|
|
@@ -492,7 +500,7 @@ declare class Runs {
|
|
|
492
500
|
*/
|
|
493
501
|
listRuns(workspaceSlug: string, query?: CursorPagination & {
|
|
494
502
|
status?: PipelineRunStatus;
|
|
495
|
-
}): Promise<
|
|
503
|
+
}): Promise<PipelineRunPage>;
|
|
496
504
|
/**
|
|
497
505
|
* List runs for a specific pipeline
|
|
498
506
|
* @param workspaceSlug - Workspace slug
|
|
@@ -501,7 +509,7 @@ declare class Runs {
|
|
|
501
509
|
* @returns Promise that resolves with a paginated list of pipeline runs
|
|
502
510
|
* @throws {ApiError} if the request fails
|
|
503
511
|
*/
|
|
504
|
-
listPipelineRuns(workspaceSlug: string, pipelineSlug: string, query?: CursorPagination): Promise<
|
|
512
|
+
listPipelineRuns(workspaceSlug: string, pipelineSlug: string, query?: CursorPagination): Promise<PipelineRunPage>;
|
|
505
513
|
/**
|
|
506
514
|
* Trigger a new run for a pipeline
|
|
507
515
|
* @param workspaceSlug - Workspace slug
|
|
@@ -546,10 +554,54 @@ declare class Status {
|
|
|
546
554
|
constructor(api: ApiClient);
|
|
547
555
|
/**
|
|
548
556
|
* Check the health status of the API
|
|
549
|
-
* @param options - Health check options
|
|
550
557
|
* @returns Promise that resolves with the API health status
|
|
551
558
|
*/
|
|
552
|
-
checkHealth(
|
|
559
|
+
checkHealth(): Promise<Health>;
|
|
560
|
+
}
|
|
561
|
+
//#endregion
|
|
562
|
+
//#region src/services/syncs.d.ts
|
|
563
|
+
/**
|
|
564
|
+
* Service for handling connection sync operations
|
|
565
|
+
*/
|
|
566
|
+
declare class Syncs {
|
|
567
|
+
#private;
|
|
568
|
+
constructor(api: ApiClient);
|
|
569
|
+
/**
|
|
570
|
+
* Start a sync for a connection
|
|
571
|
+
* @param workspaceSlug - Workspace slug
|
|
572
|
+
* @param connectionId - Connection ID
|
|
573
|
+
* @param sync - Sync request
|
|
574
|
+
* @returns Promise that resolves with the started connection sync
|
|
575
|
+
* @throws {ApiError} if the request fails
|
|
576
|
+
*/
|
|
577
|
+
startSync(workspaceSlug: string, connectionId: string, sync: SyncConnection): Promise<ConnectionSync>;
|
|
578
|
+
/**
|
|
579
|
+
* List syncs for a connection
|
|
580
|
+
* @param workspaceSlug - Workspace slug
|
|
581
|
+
* @param connectionId - Connection ID
|
|
582
|
+
* @param query - Optional pagination parameters (limit, after)
|
|
583
|
+
* @returns Promise that resolves with a paginated list of connection syncs
|
|
584
|
+
* @throws {ApiError} if the request fails
|
|
585
|
+
*/
|
|
586
|
+
listSyncs(workspaceSlug: string, connectionId: string, query?: CursorPagination): Promise<ConnectionSyncPage>;
|
|
587
|
+
/**
|
|
588
|
+
* Get a connection sync by ID
|
|
589
|
+
* @param workspaceSlug - Workspace slug
|
|
590
|
+
* @param connectionId - Connection ID
|
|
591
|
+
* @param syncId - Sync ID
|
|
592
|
+
* @returns Promise that resolves with the connection sync details
|
|
593
|
+
* @throws {ApiError} if the request fails
|
|
594
|
+
*/
|
|
595
|
+
getSync(workspaceSlug: string, connectionId: string, syncId: string): Promise<ConnectionSync>;
|
|
596
|
+
/**
|
|
597
|
+
* Cancel a running connection sync
|
|
598
|
+
* @param workspaceSlug - Workspace slug
|
|
599
|
+
* @param connectionId - Connection ID
|
|
600
|
+
* @param syncId - Sync ID
|
|
601
|
+
* @returns Promise that resolves with the canceled connection sync
|
|
602
|
+
* @throws {ApiError} if the request fails
|
|
603
|
+
*/
|
|
604
|
+
cancelSync(workspaceSlug: string, connectionId: string, syncId: string): Promise<ConnectionSync>;
|
|
553
605
|
}
|
|
554
606
|
//#endregion
|
|
555
607
|
//#region src/services/webhooks.d.ts
|
|
@@ -566,7 +618,7 @@ declare class Webhooks {
|
|
|
566
618
|
* @returns Promise that resolves with a paginated list of webhooks
|
|
567
619
|
* @throws {ApiError} if the request fails
|
|
568
620
|
*/
|
|
569
|
-
listWebhooks(workspaceSlug: string, query?: CursorPagination): Promise<
|
|
621
|
+
listWebhooks(workspaceSlug: string, query?: CursorPagination): Promise<WebhookPage>;
|
|
570
622
|
/**
|
|
571
623
|
* Create a new webhook
|
|
572
624
|
* @param workspaceSlug - Workspace slug
|
|
@@ -624,7 +676,7 @@ declare class Workspaces {
|
|
|
624
676
|
* @returns Promise that resolves with a paginated list of workspaces
|
|
625
677
|
* @throws {ApiError} if the request fails
|
|
626
678
|
*/
|
|
627
|
-
listWorkspaces(query?: CursorPagination): Promise<
|
|
679
|
+
listWorkspaces(query?: CursorPagination): Promise<WorkspacePage>;
|
|
628
680
|
/**
|
|
629
681
|
* Get workspace details by ID
|
|
630
682
|
* @param workspaceSlug - Workspace slug
|
|
@@ -795,6 +847,10 @@ declare class Nvisy {
|
|
|
795
847
|
* Service for managing pipeline runs.
|
|
796
848
|
*/
|
|
797
849
|
get runs(): Runs;
|
|
850
|
+
/**
|
|
851
|
+
* Service for managing connection syncs.
|
|
852
|
+
*/
|
|
853
|
+
get syncs(): Syncs;
|
|
798
854
|
/**
|
|
799
855
|
* Service for managing webhooks.
|
|
800
856
|
*/
|
|
@@ -805,5 +861,5 @@ declare class Nvisy {
|
|
|
805
861
|
get workspaces(): Workspaces;
|
|
806
862
|
}
|
|
807
863
|
//#endregion
|
|
808
|
-
export {
|
|
809
|
-
//# sourceMappingURL=client-
|
|
864
|
+
export { Activities as _, Syncs as a, Policies as c, Members as d, Invites as f, ApiTokens as g, Auth as h, Webhooks as i, Pipelines as l, Connections as m, Nvisy as n, Status as o, Files as p, Workspaces as r, Runs as s, ApiClient as t, Notifications as u, Account as v };
|
|
865
|
+
//# sourceMappingURL=client-Ct4xfgNc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-Ct4xfgNc.d.ts","names":[],"sources":["../src/services/account.ts","../src/services/activities.ts","../src/services/api-tokens.ts","../src/services/auth.ts","../src/services/connections.ts","../src/services/files.ts","../src/services/invites.ts","../src/services/members.ts","../src/services/notifications.ts","../src/services/pipelines.ts","../src/services/policies.ts","../src/services/runs.ts","../src/services/status.ts","../src/services/syncs.ts","../src/services/webhooks.ts","../src/services/workspaces.ts","../src/client.ts"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
export type { Account,
|
|
1
|
+
import { $ as InviteExpiration, A as PipelineDefinition, At as S3Credentials, B as NotificationPage, Bt as ApiToken, C as PolicyAction, Ct as ConnectionPage, D as UpdatePolicy, Dt as ConnectionsQuery, E as PolicyRule, Et as ConnectionVerification, F as PipelineTriggerType, Ft as SyncTriggerType, G as Member, Gt as TokenExpiration, H as UnreadStatus, Ht as ApiTokenType, I as UpdatePipeline, It as UpdateConnection, J as UpdateMember, Jt as ActivityPage, K as MemberPage, Kt as UpdateApiToken, L as CursorPagination, Lt as AuthToken, M as PipelineStatus, Mt as SyncDeletionPolicy, N as PipelineSummary, Nt as SyncMode, O as CreatePipeline, Ot as CreateConnection, P as PipelineSummaryPage, Pt as SyncStatus, Q as InviteCode, Qt as UpdateAccount, R as Notification, Rt as Login, S as Policy, St as ConnectionConfig, T as PolicyPage, Tt as ConnectionSyncPage, U as UpdateNotificationSettings, Ut as ApiTokenWithJWT, V as NotificationSettings, Vt as ApiTokenPage, W as ListMembers, Wt as CreateApiToken, X as GenerateInviteCode, Xt as Account, Y as CreateInvite, Yt as ActivityType, Z as Invite, Zt as PublicAccount, _ as CreatePipelineRun, _t as UpdateFile, a as WorkspaceRole, at as ListInvites, b as PipelineRunStatus, bt as AzureCredentials, c as UpdateWebhook, ct as ComponentHealth, d as WebhookEvent, dt as File, et as InvitePage, f as WebhookPage, ft as FilePage, g as Artifact, gt as ModalityToken, h as AnalyzedDocument, ht as ListFiles, i as WorkspacePage, it as InviteStatus, j as PipelineFilter, jt as SyncConnection, k as Pipeline, kt as GcsCredentials, l as Webhook, lt as Health, m as WebhookStatus, mt as FormatToken, n as UpdateWorkspace, nt as InviteSent, o as CreateWebhook, ot as ReplyInvite, p as WebhookResult, pt as FileSource, q as MemberSortField, qt as Activity, r as Workspace, rt as InviteSortField, s as TestWebhook, st as SortOrder, t as CreateWorkspace, tt as InvitePreview, u as WebhookCreated, ut as HealthStatus, v as PipelineRun, vt as ErrorResponse, w as PolicyDefinition, wt as ConnectionSync, x as CreatePolicy, xt as Connection, y as PipelineRunPage, yt as ValidationErrorDetail, z as NotificationEvent, zt as Signup } from "../index-BHXlYpCf.js";
|
|
2
|
+
export type { Account, Activity, ActivityPage, ActivityType, AnalyzedDocument, ApiToken, ApiTokenPage, ApiTokenType, ApiTokenWithJWT, Artifact, AuthToken, AzureCredentials, ComponentHealth, Connection, ConnectionConfig, ConnectionPage, ConnectionSync, ConnectionSyncPage, ConnectionVerification, ConnectionsQuery, CreateApiToken, CreateConnection, CreateInvite, CreatePipeline, CreatePipelineRun, CreatePolicy, CreateWebhook, CreateWorkspace, CursorPagination, ErrorResponse, File, FilePage, FileSource, FormatToken, GcsCredentials, GenerateInviteCode, Health, HealthStatus, Invite, InviteCode, InviteExpiration, InvitePage, InvitePreview, InviteSent, InviteSortField, InviteStatus, ListFiles, ListInvites, ListMembers, Login, Member, MemberPage, MemberSortField, ModalityToken, Notification, NotificationEvent, NotificationPage, NotificationSettings, Pipeline, PipelineDefinition, PipelineFilter, PipelineRun, PipelineRunPage, PipelineRunStatus, PipelineStatus, PipelineSummary, PipelineSummaryPage, PipelineTriggerType, Policy, PolicyAction, PolicyDefinition, PolicyPage, PolicyRule, PublicAccount, ReplyInvite, S3Credentials, Signup, SortOrder, SyncConnection, SyncDeletionPolicy, SyncMode, SyncStatus, SyncTriggerType, TestWebhook, TokenExpiration, UnreadStatus, UpdateAccount, UpdateApiToken, UpdateConnection, UpdateFile, UpdateMember, UpdateNotificationSettings, UpdatePipeline, UpdatePolicy, UpdateWebhook, UpdateWorkspace, ValidationErrorDetail, Webhook, WebhookCreated, WebhookEvent, WebhookPage, WebhookResult, WebhookStatus, Workspace, WorkspacePage, WorkspaceRole };
|