@nvisy/sdk 0.52.0 → 0.54.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 +56 -1
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{errors-CcTfWeEE.d.ts → errors-DShmkdjS.d.ts} +2 -2
- package/dist/{errors-CcTfWeEE.d.ts.map → errors-DShmkdjS.d.ts.map} +1 -1
- package/dist/guest/index.d.ts +38 -0
- package/dist/guest/index.d.ts.map +1 -0
- package/dist/guest/index.js +56 -0
- package/dist/guest/index.js.map +1 -0
- package/dist/http-BexRclA5.js +128 -0
- package/dist/http-BexRclA5.js.map +1 -0
- package/dist/{client-CSxuXX5e.d.ts → index-DFbHT_eq.d.ts} +443 -221
- package/dist/index-DFbHT_eq.d.ts.map +1 -0
- package/dist/{index-DmLbi0Gi.d.ts → index-DzEtj1r2.d.ts} +1837 -762
- package/dist/index-DzEtj1r2.d.ts.map +1 -0
- package/dist/index.d.ts +3 -4
- package/dist/index.js +28 -117
- 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-Bt15MerP.js → services-BMmcawiT.js} +268 -73
- package/dist/services-BMmcawiT.js.map +1 -0
- package/dist/webhooks/index.d.ts +2 -2
- package/package.json +4 -4
- package/dist/client-CSxuXX5e.d.ts.map +0 -1
- package/dist/config-BdAgnJlh.d.ts +0 -103
- package/dist/config-BdAgnJlh.d.ts.map +0 -1
- package/dist/error-Bc6Sg_y-.js +0 -47
- package/dist/error-Bc6Sg_y-.js.map +0 -1
- package/dist/index-DmLbi0Gi.d.ts.map +0 -1
- package/dist/services-Bt15MerP.js.map +0 -1
- package/dist/standalone/index.d.ts +0 -117
- package/dist/standalone/index.d.ts.map +0 -1
- package/dist/standalone/index.js +0 -153
- package/dist/standalone/index.js.map +0 -1
|
@@ -2437,266 +2437,6 @@ interface paths {
|
|
|
2437
2437
|
};
|
|
2438
2438
|
trace?: never;
|
|
2439
2439
|
};
|
|
2440
|
-
"/workspaces/{workspaceId}/documents/{documentId}/review/verify": {
|
|
2441
|
-
parameters: {
|
|
2442
|
-
query?: never;
|
|
2443
|
-
header?: never;
|
|
2444
|
-
path?: never;
|
|
2445
|
-
cookie?: never;
|
|
2446
|
-
};
|
|
2447
|
-
get?: never;
|
|
2448
|
-
put?: never;
|
|
2449
|
-
/**
|
|
2450
|
-
* Verify a document review
|
|
2451
|
-
* @description Verifies a document's review as a whole, moving it to `resolved`. Requires Review.
|
|
2452
|
-
*/
|
|
2453
|
-
post: {
|
|
2454
|
-
parameters: {
|
|
2455
|
-
query?: never;
|
|
2456
|
-
header?: never;
|
|
2457
|
-
path: {
|
|
2458
|
-
/** @description Workspace identifier. */
|
|
2459
|
-
workspaceId: string;
|
|
2460
|
-
/** @description Unique identifier of the document. */
|
|
2461
|
-
documentId: string;
|
|
2462
|
-
};
|
|
2463
|
-
cookie?: never;
|
|
2464
|
-
};
|
|
2465
|
-
requestBody?: never;
|
|
2466
|
-
responses: {
|
|
2467
|
-
/**
|
|
2468
|
-
* @description Response type for a thread.
|
|
2469
|
-
*
|
|
2470
|
-
* A thread is either a free-form workspace discussion (no `documentId`, opened
|
|
2471
|
-
* and closed by members) or a document's review (`documentId` set, one live
|
|
2472
|
-
* thread per document, auto-created on the document's first detection). A
|
|
2473
|
-
* document thread carries a derived `reviewStatus` and an optional `assignee`; a
|
|
2474
|
-
* workspace thread carries neither. Its stream is a [`WorkspaceThreadEntry`] timeline.
|
|
2475
|
-
*/
|
|
2476
|
-
200: {
|
|
2477
|
-
headers: {
|
|
2478
|
-
[name: string]: unknown;
|
|
2479
|
-
};
|
|
2480
|
-
content: {
|
|
2481
|
-
"application/json": components["schemas"]["WorkspaceThread"];
|
|
2482
|
-
};
|
|
2483
|
-
};
|
|
2484
|
-
/**
|
|
2485
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
2486
|
-
* that [`Error`] renders to at the response boundary.
|
|
2487
|
-
*
|
|
2488
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
2489
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
2490
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
2491
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
2492
|
-
*
|
|
2493
|
-
* [`Error`]: crate::response::Error
|
|
2494
|
-
*/
|
|
2495
|
-
401: {
|
|
2496
|
-
headers: {
|
|
2497
|
-
[name: string]: unknown;
|
|
2498
|
-
};
|
|
2499
|
-
content: {
|
|
2500
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
2501
|
-
};
|
|
2502
|
-
};
|
|
2503
|
-
/**
|
|
2504
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
2505
|
-
* that [`Error`] renders to at the response boundary.
|
|
2506
|
-
*
|
|
2507
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
2508
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
2509
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
2510
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
2511
|
-
*
|
|
2512
|
-
* [`Error`]: crate::response::Error
|
|
2513
|
-
*/
|
|
2514
|
-
403: {
|
|
2515
|
-
headers: {
|
|
2516
|
-
[name: string]: unknown;
|
|
2517
|
-
};
|
|
2518
|
-
content: {
|
|
2519
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
2520
|
-
};
|
|
2521
|
-
};
|
|
2522
|
-
/**
|
|
2523
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
2524
|
-
* that [`Error`] renders to at the response boundary.
|
|
2525
|
-
*
|
|
2526
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
2527
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
2528
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
2529
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
2530
|
-
*
|
|
2531
|
-
* [`Error`]: crate::response::Error
|
|
2532
|
-
*/
|
|
2533
|
-
404: {
|
|
2534
|
-
headers: {
|
|
2535
|
-
[name: string]: unknown;
|
|
2536
|
-
};
|
|
2537
|
-
content: {
|
|
2538
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
2539
|
-
};
|
|
2540
|
-
};
|
|
2541
|
-
};
|
|
2542
|
-
};
|
|
2543
|
-
delete?: never;
|
|
2544
|
-
options?: never;
|
|
2545
|
-
head?: never;
|
|
2546
|
-
patch?: never;
|
|
2547
|
-
trace?: never;
|
|
2548
|
-
};
|
|
2549
|
-
"/workspaces/{workspaceId}/documents/{documentId}/review/assign": {
|
|
2550
|
-
parameters: {
|
|
2551
|
-
query?: never;
|
|
2552
|
-
header?: never;
|
|
2553
|
-
path?: never;
|
|
2554
|
-
cookie?: never;
|
|
2555
|
-
};
|
|
2556
|
-
get?: never;
|
|
2557
|
-
/**
|
|
2558
|
-
* Assign a document review
|
|
2559
|
-
* @description Assigns a document's review to a workspace member, or clears the assignee with a null `assignee`. Requires AssignReviews.
|
|
2560
|
-
*/
|
|
2561
|
-
put: {
|
|
2562
|
-
parameters: {
|
|
2563
|
-
query?: never;
|
|
2564
|
-
header?: never;
|
|
2565
|
-
path: {
|
|
2566
|
-
/** @description Workspace identifier. */
|
|
2567
|
-
workspaceId: string;
|
|
2568
|
-
/** @description Unique identifier of the document. */
|
|
2569
|
-
documentId: string;
|
|
2570
|
-
};
|
|
2571
|
-
cookie?: never;
|
|
2572
|
-
};
|
|
2573
|
-
/** @description Request payload to assign or unassign a document review. */
|
|
2574
|
-
requestBody: {
|
|
2575
|
-
content: {
|
|
2576
|
-
"application/json": components["schemas"]["AssignWorkspaceReview"];
|
|
2577
|
-
};
|
|
2578
|
-
};
|
|
2579
|
-
responses: {
|
|
2580
|
-
/**
|
|
2581
|
-
* @description Response type for a thread.
|
|
2582
|
-
*
|
|
2583
|
-
* A thread is either a free-form workspace discussion (no `documentId`, opened
|
|
2584
|
-
* and closed by members) or a document's review (`documentId` set, one live
|
|
2585
|
-
* thread per document, auto-created on the document's first detection). A
|
|
2586
|
-
* document thread carries a derived `reviewStatus` and an optional `assignee`; a
|
|
2587
|
-
* workspace thread carries neither. Its stream is a [`WorkspaceThreadEntry`] timeline.
|
|
2588
|
-
*/
|
|
2589
|
-
200: {
|
|
2590
|
-
headers: {
|
|
2591
|
-
[name: string]: unknown;
|
|
2592
|
-
};
|
|
2593
|
-
content: {
|
|
2594
|
-
"application/json": components["schemas"]["WorkspaceThread"];
|
|
2595
|
-
};
|
|
2596
|
-
};
|
|
2597
|
-
/**
|
|
2598
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
2599
|
-
* that [`Error`] renders to at the response boundary.
|
|
2600
|
-
*
|
|
2601
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
2602
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
2603
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
2604
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
2605
|
-
*
|
|
2606
|
-
* [`Error`]: crate::response::Error
|
|
2607
|
-
*/
|
|
2608
|
-
400: {
|
|
2609
|
-
headers: {
|
|
2610
|
-
[name: string]: unknown;
|
|
2611
|
-
};
|
|
2612
|
-
content: {
|
|
2613
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
2614
|
-
};
|
|
2615
|
-
};
|
|
2616
|
-
/**
|
|
2617
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
2618
|
-
* that [`Error`] renders to at the response boundary.
|
|
2619
|
-
*
|
|
2620
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
2621
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
2622
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
2623
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
2624
|
-
*
|
|
2625
|
-
* [`Error`]: crate::response::Error
|
|
2626
|
-
*/
|
|
2627
|
-
401: {
|
|
2628
|
-
headers: {
|
|
2629
|
-
[name: string]: unknown;
|
|
2630
|
-
};
|
|
2631
|
-
content: {
|
|
2632
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
2633
|
-
};
|
|
2634
|
-
};
|
|
2635
|
-
/**
|
|
2636
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
2637
|
-
* that [`Error`] renders to at the response boundary.
|
|
2638
|
-
*
|
|
2639
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
2640
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
2641
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
2642
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
2643
|
-
*
|
|
2644
|
-
* [`Error`]: crate::response::Error
|
|
2645
|
-
*/
|
|
2646
|
-
403: {
|
|
2647
|
-
headers: {
|
|
2648
|
-
[name: string]: unknown;
|
|
2649
|
-
};
|
|
2650
|
-
content: {
|
|
2651
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
2652
|
-
};
|
|
2653
|
-
};
|
|
2654
|
-
/**
|
|
2655
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
2656
|
-
* that [`Error`] renders to at the response boundary.
|
|
2657
|
-
*
|
|
2658
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
2659
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
2660
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
2661
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
2662
|
-
*
|
|
2663
|
-
* [`Error`]: crate::response::Error
|
|
2664
|
-
*/
|
|
2665
|
-
404: {
|
|
2666
|
-
headers: {
|
|
2667
|
-
[name: string]: unknown;
|
|
2668
|
-
};
|
|
2669
|
-
content: {
|
|
2670
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
2671
|
-
};
|
|
2672
|
-
};
|
|
2673
|
-
/** @description Expected request with `Content-Type: application/json` */
|
|
2674
|
-
415: {
|
|
2675
|
-
headers: {
|
|
2676
|
-
[name: string]: unknown;
|
|
2677
|
-
};
|
|
2678
|
-
content: {
|
|
2679
|
-
"text/plain": string;
|
|
2680
|
-
};
|
|
2681
|
-
};
|
|
2682
|
-
/** @description Failed to deserialize the JSON body into the target type */
|
|
2683
|
-
422: {
|
|
2684
|
-
headers: {
|
|
2685
|
-
[name: string]: unknown;
|
|
2686
|
-
};
|
|
2687
|
-
content: {
|
|
2688
|
-
"text/plain": string;
|
|
2689
|
-
};
|
|
2690
|
-
};
|
|
2691
|
-
};
|
|
2692
|
-
};
|
|
2693
|
-
post?: never;
|
|
2694
|
-
delete?: never;
|
|
2695
|
-
options?: never;
|
|
2696
|
-
head?: never;
|
|
2697
|
-
patch?: never;
|
|
2698
|
-
trace?: never;
|
|
2699
|
-
};
|
|
2700
2440
|
"/workspaces/{workspaceId}/threads": {
|
|
2701
2441
|
parameters: {
|
|
2702
2442
|
query?: never;
|
|
@@ -2706,7 +2446,7 @@ interface paths {
|
|
|
2706
2446
|
};
|
|
2707
2447
|
/**
|
|
2708
2448
|
* List threads
|
|
2709
|
-
* @description Returns the workspace's threads, most recent first, with optional
|
|
2449
|
+
* @description Returns the workspace's threads, most recent first, with optional author and open/closed filters.
|
|
2710
2450
|
*/
|
|
2711
2451
|
get: {
|
|
2712
2452
|
parameters: {
|
|
@@ -2724,16 +2464,10 @@ interface paths {
|
|
|
2724
2464
|
includeCount?: boolean;
|
|
2725
2465
|
/** @description The maximum number of records to return (1-100, default: 20). */
|
|
2726
2466
|
limit?: number;
|
|
2727
|
-
/** @description Filter document reviews by their assigned reviewer (account id). */
|
|
2728
|
-
assignee?: string;
|
|
2729
2467
|
/** @description Filter by the thread's opening author (account id). */
|
|
2730
2468
|
author?: string;
|
|
2731
2469
|
/** @description Filter by open/closed state: `true` = closed only, `false` = open only. */
|
|
2732
2470
|
closed?: boolean;
|
|
2733
|
-
/** @description Filter by the document the thread reviews. */
|
|
2734
|
-
documentId?: string;
|
|
2735
|
-
/** @description Filter document reviews by their derived review status. */
|
|
2736
|
-
reviewStatus?: components["schemas"]["ReviewStatus"];
|
|
2737
2471
|
};
|
|
2738
2472
|
header?: never;
|
|
2739
2473
|
path: {
|
|
@@ -2828,13 +2562,9 @@ interface paths {
|
|
|
2828
2562
|
};
|
|
2829
2563
|
responses: {
|
|
2830
2564
|
/**
|
|
2831
|
-
* @description Response type for a thread
|
|
2832
|
-
*
|
|
2833
|
-
*
|
|
2834
|
-
* and closed by members) or a document's review (`documentId` set, one live
|
|
2835
|
-
* thread per document, auto-created on the document's first detection). A
|
|
2836
|
-
* document thread carries a derived `reviewStatus` and an optional `assignee`; a
|
|
2837
|
-
* workspace thread carries neither. Its stream is a [`WorkspaceThreadEntry`] timeline.
|
|
2565
|
+
* @description Response type for a thread: a discussion with an author, an optional title, and
|
|
2566
|
+
* an open/closed lifecycle. Its stream is a [`WorkspaceThreadEntry`] timeline. A
|
|
2567
|
+
* document review (see the reviews endpoints) references a thread by its id.
|
|
2838
2568
|
*/
|
|
2839
2569
|
201: {
|
|
2840
2570
|
headers: {
|
|
@@ -3047,13 +2777,9 @@ interface paths {
|
|
|
3047
2777
|
};
|
|
3048
2778
|
responses: {
|
|
3049
2779
|
/**
|
|
3050
|
-
* @description Response type for a thread
|
|
3051
|
-
*
|
|
3052
|
-
*
|
|
3053
|
-
* and closed by members) or a document's review (`documentId` set, one live
|
|
3054
|
-
* thread per document, auto-created on the document's first detection). A
|
|
3055
|
-
* document thread carries a derived `reviewStatus` and an optional `assignee`; a
|
|
3056
|
-
* workspace thread carries neither. Its stream is a [`WorkspaceThreadEntry`] timeline.
|
|
2780
|
+
* @description Response type for a thread: a discussion with an author, an optional title, and
|
|
2781
|
+
* an open/closed lifecycle. Its stream is a [`WorkspaceThreadEntry`] timeline. A
|
|
2782
|
+
* document review (see the reviews endpoints) references a thread by its id.
|
|
3057
2783
|
*/
|
|
3058
2784
|
200: {
|
|
3059
2785
|
headers: {
|
|
@@ -3189,13 +2915,9 @@ interface paths {
|
|
|
3189
2915
|
requestBody?: never;
|
|
3190
2916
|
responses: {
|
|
3191
2917
|
/**
|
|
3192
|
-
* @description Response type for a thread
|
|
3193
|
-
*
|
|
3194
|
-
*
|
|
3195
|
-
* and closed by members) or a document's review (`documentId` set, one live
|
|
3196
|
-
* thread per document, auto-created on the document's first detection). A
|
|
3197
|
-
* document thread carries a derived `reviewStatus` and an optional `assignee`; a
|
|
3198
|
-
* workspace thread carries neither. Its stream is a [`WorkspaceThreadEntry`] timeline.
|
|
2918
|
+
* @description Response type for a thread: a discussion with an author, an optional title, and
|
|
2919
|
+
* an open/closed lifecycle. Its stream is a [`WorkspaceThreadEntry`] timeline. A
|
|
2920
|
+
* document review (see the reviews endpoints) references a thread by its id.
|
|
3199
2921
|
*/
|
|
3200
2922
|
200: {
|
|
3201
2923
|
headers: {
|
|
@@ -3283,13 +3005,9 @@ interface paths {
|
|
|
3283
3005
|
requestBody?: never;
|
|
3284
3006
|
responses: {
|
|
3285
3007
|
/**
|
|
3286
|
-
* @description Response type for a thread
|
|
3287
|
-
*
|
|
3288
|
-
*
|
|
3289
|
-
* and closed by members) or a document's review (`documentId` set, one live
|
|
3290
|
-
* thread per document, auto-created on the document's first detection). A
|
|
3291
|
-
* document thread carries a derived `reviewStatus` and an optional `assignee`; a
|
|
3292
|
-
* workspace thread carries neither. Its stream is a [`WorkspaceThreadEntry`] timeline.
|
|
3008
|
+
* @description Response type for a thread: a discussion with an author, an optional title, and
|
|
3009
|
+
* an open/closed lifecycle. Its stream is a [`WorkspaceThreadEntry`] timeline. A
|
|
3010
|
+
* document review (see the reviews endpoints) references a thread by its id.
|
|
3293
3011
|
*/
|
|
3294
3012
|
200: {
|
|
3295
3013
|
headers: {
|
|
@@ -3372,7 +3090,7 @@ interface paths {
|
|
|
3372
3090
|
};
|
|
3373
3091
|
/**
|
|
3374
3092
|
* List a thread's timeline
|
|
3375
|
-
* @description Returns the thread's timeline — comments and lifecycle events (opened, closed, reopened, renamed
|
|
3093
|
+
* @description Returns the thread's timeline — comments and lifecycle events (opened, closed, reopened, renamed) interleaved, oldest first, with cursor pagination.
|
|
3376
3094
|
*/
|
|
3377
3095
|
get: {
|
|
3378
3096
|
parameters: {
|
|
@@ -3747,54 +3465,1296 @@ interface paths {
|
|
|
3747
3465
|
options?: never;
|
|
3748
3466
|
head?: never;
|
|
3749
3467
|
/**
|
|
3750
|
-
* Edit a comment
|
|
3751
|
-
* @description Edits a comment's body. Only the author may edit their own comment.
|
|
3468
|
+
* Edit a comment
|
|
3469
|
+
* @description Edits a comment's body. Only the author may edit their own comment.
|
|
3470
|
+
*/
|
|
3471
|
+
patch: {
|
|
3472
|
+
parameters: {
|
|
3473
|
+
query?: never;
|
|
3474
|
+
header?: never;
|
|
3475
|
+
path: {
|
|
3476
|
+
/** @description Workspace identifier. */
|
|
3477
|
+
workspaceId: string;
|
|
3478
|
+
/** @description Unique identifier of the comment. */
|
|
3479
|
+
commentId: string;
|
|
3480
|
+
};
|
|
3481
|
+
cookie?: never;
|
|
3482
|
+
};
|
|
3483
|
+
/** @description Request payload to edit a comment's body. */
|
|
3484
|
+
requestBody: {
|
|
3485
|
+
content: {
|
|
3486
|
+
"application/json": components["schemas"]["UpdateWorkspaceComment"];
|
|
3487
|
+
};
|
|
3488
|
+
};
|
|
3489
|
+
responses: {
|
|
3490
|
+
/** @description Response type for a comment: one message within a thread. */
|
|
3491
|
+
200: {
|
|
3492
|
+
headers: {
|
|
3493
|
+
[name: string]: unknown;
|
|
3494
|
+
};
|
|
3495
|
+
content: {
|
|
3496
|
+
"application/json": components["schemas"]["WorkspaceComment"];
|
|
3497
|
+
};
|
|
3498
|
+
};
|
|
3499
|
+
/**
|
|
3500
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3501
|
+
* that [`Error`] renders to at the response boundary.
|
|
3502
|
+
*
|
|
3503
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3504
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3505
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3506
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3507
|
+
*
|
|
3508
|
+
* [`Error`]: crate::response::Error
|
|
3509
|
+
*/
|
|
3510
|
+
400: {
|
|
3511
|
+
headers: {
|
|
3512
|
+
[name: string]: unknown;
|
|
3513
|
+
};
|
|
3514
|
+
content: {
|
|
3515
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3516
|
+
};
|
|
3517
|
+
};
|
|
3518
|
+
/**
|
|
3519
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3520
|
+
* that [`Error`] renders to at the response boundary.
|
|
3521
|
+
*
|
|
3522
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3523
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3524
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3525
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3526
|
+
*
|
|
3527
|
+
* [`Error`]: crate::response::Error
|
|
3528
|
+
*/
|
|
3529
|
+
401: {
|
|
3530
|
+
headers: {
|
|
3531
|
+
[name: string]: unknown;
|
|
3532
|
+
};
|
|
3533
|
+
content: {
|
|
3534
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3535
|
+
};
|
|
3536
|
+
};
|
|
3537
|
+
/**
|
|
3538
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3539
|
+
* that [`Error`] renders to at the response boundary.
|
|
3540
|
+
*
|
|
3541
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3542
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3543
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3544
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3545
|
+
*
|
|
3546
|
+
* [`Error`]: crate::response::Error
|
|
3547
|
+
*/
|
|
3548
|
+
403: {
|
|
3549
|
+
headers: {
|
|
3550
|
+
[name: string]: unknown;
|
|
3551
|
+
};
|
|
3552
|
+
content: {
|
|
3553
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3554
|
+
};
|
|
3555
|
+
};
|
|
3556
|
+
/**
|
|
3557
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3558
|
+
* that [`Error`] renders to at the response boundary.
|
|
3559
|
+
*
|
|
3560
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3561
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3562
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3563
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3564
|
+
*
|
|
3565
|
+
* [`Error`]: crate::response::Error
|
|
3566
|
+
*/
|
|
3567
|
+
404: {
|
|
3568
|
+
headers: {
|
|
3569
|
+
[name: string]: unknown;
|
|
3570
|
+
};
|
|
3571
|
+
content: {
|
|
3572
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3573
|
+
};
|
|
3574
|
+
};
|
|
3575
|
+
/** @description Expected request with `Content-Type: application/json` */
|
|
3576
|
+
415: {
|
|
3577
|
+
headers: {
|
|
3578
|
+
[name: string]: unknown;
|
|
3579
|
+
};
|
|
3580
|
+
content: {
|
|
3581
|
+
"text/plain": string;
|
|
3582
|
+
};
|
|
3583
|
+
};
|
|
3584
|
+
/** @description Failed to deserialize the JSON body into the target type */
|
|
3585
|
+
422: {
|
|
3586
|
+
headers: {
|
|
3587
|
+
[name: string]: unknown;
|
|
3588
|
+
};
|
|
3589
|
+
content: {
|
|
3590
|
+
"text/plain": string;
|
|
3591
|
+
};
|
|
3592
|
+
};
|
|
3593
|
+
};
|
|
3594
|
+
};
|
|
3595
|
+
trace?: never;
|
|
3596
|
+
};
|
|
3597
|
+
"/workspaces/{workspaceId}/reviews": {
|
|
3598
|
+
parameters: {
|
|
3599
|
+
query?: never;
|
|
3600
|
+
header?: never;
|
|
3601
|
+
path?: never;
|
|
3602
|
+
cookie?: never;
|
|
3603
|
+
};
|
|
3604
|
+
/**
|
|
3605
|
+
* List reviews
|
|
3606
|
+
* @description Returns the workspace's reviews, most recent first, with optional document, assignee, and review-status filters (the review queue). Requires ViewReviews.
|
|
3607
|
+
*/
|
|
3608
|
+
get: {
|
|
3609
|
+
parameters: {
|
|
3610
|
+
query?: {
|
|
3611
|
+
/**
|
|
3612
|
+
* @description Cursor pointing to the last item of the previous page.
|
|
3613
|
+
* Obtain this from the `nextCursor` field in the response.
|
|
3614
|
+
*/
|
|
3615
|
+
after?: string;
|
|
3616
|
+
/**
|
|
3617
|
+
* @description Whether to include the total item count in the response's `total` field.
|
|
3618
|
+
* Defaults to `false`, since counting is an extra query; set it to `true`
|
|
3619
|
+
* only when the count is actually needed.
|
|
3620
|
+
*/
|
|
3621
|
+
includeCount?: boolean;
|
|
3622
|
+
/** @description The maximum number of records to return (1-100, default: 20). */
|
|
3623
|
+
limit?: number;
|
|
3624
|
+
/** @description Filter by the assigned reviewer (account id). */
|
|
3625
|
+
assignee?: string;
|
|
3626
|
+
/** @description Filter to the reviews of a specific document. */
|
|
3627
|
+
documentId?: string;
|
|
3628
|
+
/** @description Filter by review status. */
|
|
3629
|
+
reviewStatus?: components["schemas"]["ReviewStatus"];
|
|
3630
|
+
};
|
|
3631
|
+
header?: never;
|
|
3632
|
+
path: {
|
|
3633
|
+
/** @description Workspace identifier. */
|
|
3634
|
+
workspaceId: string;
|
|
3635
|
+
};
|
|
3636
|
+
cookie?: never;
|
|
3637
|
+
};
|
|
3638
|
+
requestBody?: never;
|
|
3639
|
+
responses: {
|
|
3640
|
+
/**
|
|
3641
|
+
* @description Generic paginated response wrapper.
|
|
3642
|
+
*
|
|
3643
|
+
* Provides a consistent structure for all paginated API responses with
|
|
3644
|
+
* cursor-based pagination support. When `next_cursor` is present, there
|
|
3645
|
+
* are more items to fetch.
|
|
3646
|
+
*/
|
|
3647
|
+
200: {
|
|
3648
|
+
headers: {
|
|
3649
|
+
[name: string]: unknown;
|
|
3650
|
+
};
|
|
3651
|
+
content: {
|
|
3652
|
+
"application/json": components["schemas"]["WorkspaceReviewPage"];
|
|
3653
|
+
};
|
|
3654
|
+
};
|
|
3655
|
+
/**
|
|
3656
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3657
|
+
* that [`Error`] renders to at the response boundary.
|
|
3658
|
+
*
|
|
3659
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3660
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3661
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3662
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3663
|
+
*
|
|
3664
|
+
* [`Error`]: crate::response::Error
|
|
3665
|
+
*/
|
|
3666
|
+
401: {
|
|
3667
|
+
headers: {
|
|
3668
|
+
[name: string]: unknown;
|
|
3669
|
+
};
|
|
3670
|
+
content: {
|
|
3671
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3672
|
+
};
|
|
3673
|
+
};
|
|
3674
|
+
/**
|
|
3675
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3676
|
+
* that [`Error`] renders to at the response boundary.
|
|
3677
|
+
*
|
|
3678
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3679
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3680
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3681
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3682
|
+
*
|
|
3683
|
+
* [`Error`]: crate::response::Error
|
|
3684
|
+
*/
|
|
3685
|
+
403: {
|
|
3686
|
+
headers: {
|
|
3687
|
+
[name: string]: unknown;
|
|
3688
|
+
};
|
|
3689
|
+
content: {
|
|
3690
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3691
|
+
};
|
|
3692
|
+
};
|
|
3693
|
+
};
|
|
3694
|
+
};
|
|
3695
|
+
put?: never;
|
|
3696
|
+
post?: never;
|
|
3697
|
+
delete?: never;
|
|
3698
|
+
options?: never;
|
|
3699
|
+
head?: never;
|
|
3700
|
+
patch?: never;
|
|
3701
|
+
trace?: never;
|
|
3702
|
+
};
|
|
3703
|
+
"/workspaces/{workspaceId}/documents/{documentId}/reviews": {
|
|
3704
|
+
parameters: {
|
|
3705
|
+
query?: never;
|
|
3706
|
+
header?: never;
|
|
3707
|
+
path?: never;
|
|
3708
|
+
cookie?: never;
|
|
3709
|
+
};
|
|
3710
|
+
/**
|
|
3711
|
+
* List a document's reviews
|
|
3712
|
+
* @description Returns a document's reviews, most recent first. Requires ViewReviews.
|
|
3713
|
+
*/
|
|
3714
|
+
get: {
|
|
3715
|
+
parameters: {
|
|
3716
|
+
query?: never;
|
|
3717
|
+
header?: never;
|
|
3718
|
+
path: {
|
|
3719
|
+
/** @description Workspace identifier. */
|
|
3720
|
+
workspaceId: string;
|
|
3721
|
+
/** @description Unique identifier of the document. */
|
|
3722
|
+
documentId: string;
|
|
3723
|
+
};
|
|
3724
|
+
cookie?: never;
|
|
3725
|
+
};
|
|
3726
|
+
requestBody?: never;
|
|
3727
|
+
responses: {
|
|
3728
|
+
200: {
|
|
3729
|
+
headers: {
|
|
3730
|
+
[name: string]: unknown;
|
|
3731
|
+
};
|
|
3732
|
+
content: {
|
|
3733
|
+
"application/json": components["schemas"]["WorkspaceReview"][];
|
|
3734
|
+
};
|
|
3735
|
+
};
|
|
3736
|
+
/**
|
|
3737
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3738
|
+
* that [`Error`] renders to at the response boundary.
|
|
3739
|
+
*
|
|
3740
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3741
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3742
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3743
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3744
|
+
*
|
|
3745
|
+
* [`Error`]: crate::response::Error
|
|
3746
|
+
*/
|
|
3747
|
+
401: {
|
|
3748
|
+
headers: {
|
|
3749
|
+
[name: string]: unknown;
|
|
3750
|
+
};
|
|
3751
|
+
content: {
|
|
3752
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3753
|
+
};
|
|
3754
|
+
};
|
|
3755
|
+
/**
|
|
3756
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3757
|
+
* that [`Error`] renders to at the response boundary.
|
|
3758
|
+
*
|
|
3759
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3760
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3761
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3762
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3763
|
+
*
|
|
3764
|
+
* [`Error`]: crate::response::Error
|
|
3765
|
+
*/
|
|
3766
|
+
403: {
|
|
3767
|
+
headers: {
|
|
3768
|
+
[name: string]: unknown;
|
|
3769
|
+
};
|
|
3770
|
+
content: {
|
|
3771
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3772
|
+
};
|
|
3773
|
+
};
|
|
3774
|
+
/**
|
|
3775
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3776
|
+
* that [`Error`] renders to at the response boundary.
|
|
3777
|
+
*
|
|
3778
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3779
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3780
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3781
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3782
|
+
*
|
|
3783
|
+
* [`Error`]: crate::response::Error
|
|
3784
|
+
*/
|
|
3785
|
+
404: {
|
|
3786
|
+
headers: {
|
|
3787
|
+
[name: string]: unknown;
|
|
3788
|
+
};
|
|
3789
|
+
content: {
|
|
3790
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3791
|
+
};
|
|
3792
|
+
};
|
|
3793
|
+
};
|
|
3794
|
+
};
|
|
3795
|
+
put?: never;
|
|
3796
|
+
/**
|
|
3797
|
+
* Open a document review
|
|
3798
|
+
* @description Opens a review on a document, with an optional purpose label. A document may have many reviews (one per purpose). Requires Review.
|
|
3799
|
+
*/
|
|
3800
|
+
post: {
|
|
3801
|
+
parameters: {
|
|
3802
|
+
query?: never;
|
|
3803
|
+
header?: never;
|
|
3804
|
+
path: {
|
|
3805
|
+
/** @description Workspace identifier. */
|
|
3806
|
+
workspaceId: string;
|
|
3807
|
+
/** @description Unique identifier of the document. */
|
|
3808
|
+
documentId: string;
|
|
3809
|
+
};
|
|
3810
|
+
cookie?: never;
|
|
3811
|
+
};
|
|
3812
|
+
/** @description Request payload to open a review on a document. */
|
|
3813
|
+
requestBody: {
|
|
3814
|
+
content: {
|
|
3815
|
+
"application/json": components["schemas"]["CreateWorkspaceReview"];
|
|
3816
|
+
};
|
|
3817
|
+
};
|
|
3818
|
+
responses: {
|
|
3819
|
+
/**
|
|
3820
|
+
* @description Response type for a document's review.
|
|
3821
|
+
*
|
|
3822
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
3823
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
3824
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
3825
|
+
* `assignees` (0..N reviewers).
|
|
3826
|
+
*/
|
|
3827
|
+
201: {
|
|
3828
|
+
headers: {
|
|
3829
|
+
[name: string]: unknown;
|
|
3830
|
+
};
|
|
3831
|
+
content: {
|
|
3832
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
3833
|
+
};
|
|
3834
|
+
};
|
|
3835
|
+
/**
|
|
3836
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3837
|
+
* that [`Error`] renders to at the response boundary.
|
|
3838
|
+
*
|
|
3839
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3840
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3841
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3842
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3843
|
+
*
|
|
3844
|
+
* [`Error`]: crate::response::Error
|
|
3845
|
+
*/
|
|
3846
|
+
400: {
|
|
3847
|
+
headers: {
|
|
3848
|
+
[name: string]: unknown;
|
|
3849
|
+
};
|
|
3850
|
+
content: {
|
|
3851
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3852
|
+
};
|
|
3853
|
+
};
|
|
3854
|
+
/**
|
|
3855
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3856
|
+
* that [`Error`] renders to at the response boundary.
|
|
3857
|
+
*
|
|
3858
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3859
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3860
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3861
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3862
|
+
*
|
|
3863
|
+
* [`Error`]: crate::response::Error
|
|
3864
|
+
*/
|
|
3865
|
+
401: {
|
|
3866
|
+
headers: {
|
|
3867
|
+
[name: string]: unknown;
|
|
3868
|
+
};
|
|
3869
|
+
content: {
|
|
3870
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3871
|
+
};
|
|
3872
|
+
};
|
|
3873
|
+
/**
|
|
3874
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3875
|
+
* that [`Error`] renders to at the response boundary.
|
|
3876
|
+
*
|
|
3877
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3878
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3879
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3880
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3881
|
+
*
|
|
3882
|
+
* [`Error`]: crate::response::Error
|
|
3883
|
+
*/
|
|
3884
|
+
403: {
|
|
3885
|
+
headers: {
|
|
3886
|
+
[name: string]: unknown;
|
|
3887
|
+
};
|
|
3888
|
+
content: {
|
|
3889
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3890
|
+
};
|
|
3891
|
+
};
|
|
3892
|
+
/**
|
|
3893
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3894
|
+
* that [`Error`] renders to at the response boundary.
|
|
3895
|
+
*
|
|
3896
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3897
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3898
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3899
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3900
|
+
*
|
|
3901
|
+
* [`Error`]: crate::response::Error
|
|
3902
|
+
*/
|
|
3903
|
+
404: {
|
|
3904
|
+
headers: {
|
|
3905
|
+
[name: string]: unknown;
|
|
3906
|
+
};
|
|
3907
|
+
content: {
|
|
3908
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3909
|
+
};
|
|
3910
|
+
};
|
|
3911
|
+
/** @description Expected request with `Content-Type: application/json` */
|
|
3912
|
+
415: {
|
|
3913
|
+
headers: {
|
|
3914
|
+
[name: string]: unknown;
|
|
3915
|
+
};
|
|
3916
|
+
content: {
|
|
3917
|
+
"text/plain": string;
|
|
3918
|
+
};
|
|
3919
|
+
};
|
|
3920
|
+
/** @description Failed to deserialize the JSON body into the target type */
|
|
3921
|
+
422: {
|
|
3922
|
+
headers: {
|
|
3923
|
+
[name: string]: unknown;
|
|
3924
|
+
};
|
|
3925
|
+
content: {
|
|
3926
|
+
"text/plain": string;
|
|
3927
|
+
};
|
|
3928
|
+
};
|
|
3929
|
+
};
|
|
3930
|
+
};
|
|
3931
|
+
delete?: never;
|
|
3932
|
+
options?: never;
|
|
3933
|
+
head?: never;
|
|
3934
|
+
patch?: never;
|
|
3935
|
+
trace?: never;
|
|
3936
|
+
};
|
|
3937
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}": {
|
|
3938
|
+
parameters: {
|
|
3939
|
+
query?: never;
|
|
3940
|
+
header?: never;
|
|
3941
|
+
path?: never;
|
|
3942
|
+
cookie?: never;
|
|
3943
|
+
};
|
|
3944
|
+
/**
|
|
3945
|
+
* Get a review
|
|
3946
|
+
* @description Returns a review by id. Requires ViewReviews.
|
|
3947
|
+
*/
|
|
3948
|
+
get: {
|
|
3949
|
+
parameters: {
|
|
3950
|
+
query?: never;
|
|
3951
|
+
header?: never;
|
|
3952
|
+
path: {
|
|
3953
|
+
/** @description Workspace identifier. */
|
|
3954
|
+
workspaceId: string;
|
|
3955
|
+
/** @description Unique identifier of the review. */
|
|
3956
|
+
reviewId: string;
|
|
3957
|
+
};
|
|
3958
|
+
cookie?: never;
|
|
3959
|
+
};
|
|
3960
|
+
requestBody?: never;
|
|
3961
|
+
responses: {
|
|
3962
|
+
/**
|
|
3963
|
+
* @description Response type for a document's review.
|
|
3964
|
+
*
|
|
3965
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
3966
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
3967
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
3968
|
+
* `assignees` (0..N reviewers).
|
|
3969
|
+
*/
|
|
3970
|
+
200: {
|
|
3971
|
+
headers: {
|
|
3972
|
+
[name: string]: unknown;
|
|
3973
|
+
};
|
|
3974
|
+
content: {
|
|
3975
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
3976
|
+
};
|
|
3977
|
+
};
|
|
3978
|
+
/**
|
|
3979
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3980
|
+
* that [`Error`] renders to at the response boundary.
|
|
3981
|
+
*
|
|
3982
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3983
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3984
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3985
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
3986
|
+
*
|
|
3987
|
+
* [`Error`]: crate::response::Error
|
|
3988
|
+
*/
|
|
3989
|
+
401: {
|
|
3990
|
+
headers: {
|
|
3991
|
+
[name: string]: unknown;
|
|
3992
|
+
};
|
|
3993
|
+
content: {
|
|
3994
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3995
|
+
};
|
|
3996
|
+
};
|
|
3997
|
+
/**
|
|
3998
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
3999
|
+
* that [`Error`] renders to at the response boundary.
|
|
4000
|
+
*
|
|
4001
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4002
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4003
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4004
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4005
|
+
*
|
|
4006
|
+
* [`Error`]: crate::response::Error
|
|
4007
|
+
*/
|
|
4008
|
+
403: {
|
|
4009
|
+
headers: {
|
|
4010
|
+
[name: string]: unknown;
|
|
4011
|
+
};
|
|
4012
|
+
content: {
|
|
4013
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4014
|
+
};
|
|
4015
|
+
};
|
|
4016
|
+
/**
|
|
4017
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4018
|
+
* that [`Error`] renders to at the response boundary.
|
|
4019
|
+
*
|
|
4020
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4021
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4022
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4023
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4024
|
+
*
|
|
4025
|
+
* [`Error`]: crate::response::Error
|
|
4026
|
+
*/
|
|
4027
|
+
404: {
|
|
4028
|
+
headers: {
|
|
4029
|
+
[name: string]: unknown;
|
|
4030
|
+
};
|
|
4031
|
+
content: {
|
|
4032
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4033
|
+
};
|
|
4034
|
+
};
|
|
4035
|
+
};
|
|
4036
|
+
};
|
|
4037
|
+
put?: never;
|
|
4038
|
+
post?: never;
|
|
4039
|
+
delete?: never;
|
|
4040
|
+
options?: never;
|
|
4041
|
+
head?: never;
|
|
4042
|
+
patch?: never;
|
|
4043
|
+
trace?: never;
|
|
4044
|
+
};
|
|
4045
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}/timeline": {
|
|
4046
|
+
parameters: {
|
|
4047
|
+
query?: never;
|
|
4048
|
+
header?: never;
|
|
4049
|
+
path?: never;
|
|
4050
|
+
cookie?: never;
|
|
4051
|
+
};
|
|
4052
|
+
/**
|
|
4053
|
+
* List a review's timeline
|
|
4054
|
+
* @description Returns a review's activity timeline (links, assignment, verification, reopen), oldest first. Requires ViewReviews.
|
|
4055
|
+
*/
|
|
4056
|
+
get: {
|
|
4057
|
+
parameters: {
|
|
4058
|
+
query?: {
|
|
4059
|
+
/**
|
|
4060
|
+
* @description Cursor pointing to the last item of the previous page.
|
|
4061
|
+
* Obtain this from the `nextCursor` field in the response.
|
|
4062
|
+
*/
|
|
4063
|
+
after?: string;
|
|
4064
|
+
/**
|
|
4065
|
+
* @description Whether to include the total item count in the response's `total` field.
|
|
4066
|
+
* Defaults to `false`, since counting is an extra query; set it to `true`
|
|
4067
|
+
* only when the count is actually needed.
|
|
4068
|
+
*/
|
|
4069
|
+
includeCount?: boolean;
|
|
4070
|
+
/** @description The maximum number of records to return (1-100, default: 20). */
|
|
4071
|
+
limit?: number;
|
|
4072
|
+
};
|
|
4073
|
+
header?: never;
|
|
4074
|
+
path: {
|
|
4075
|
+
/** @description Workspace identifier. */
|
|
4076
|
+
workspaceId: string;
|
|
4077
|
+
/** @description Unique identifier of the review. */
|
|
4078
|
+
reviewId: string;
|
|
4079
|
+
};
|
|
4080
|
+
cookie?: never;
|
|
4081
|
+
};
|
|
4082
|
+
requestBody?: never;
|
|
4083
|
+
responses: {
|
|
4084
|
+
/**
|
|
4085
|
+
* @description Generic paginated response wrapper.
|
|
4086
|
+
*
|
|
4087
|
+
* Provides a consistent structure for all paginated API responses with
|
|
4088
|
+
* cursor-based pagination support. When `next_cursor` is present, there
|
|
4089
|
+
* are more items to fetch.
|
|
4090
|
+
*/
|
|
4091
|
+
200: {
|
|
4092
|
+
headers: {
|
|
4093
|
+
[name: string]: unknown;
|
|
4094
|
+
};
|
|
4095
|
+
content: {
|
|
4096
|
+
"application/json": components["schemas"]["WorkspaceReviewEventPage"];
|
|
4097
|
+
};
|
|
4098
|
+
};
|
|
4099
|
+
/**
|
|
4100
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4101
|
+
* that [`Error`] renders to at the response boundary.
|
|
4102
|
+
*
|
|
4103
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4104
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4105
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4106
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4107
|
+
*
|
|
4108
|
+
* [`Error`]: crate::response::Error
|
|
4109
|
+
*/
|
|
4110
|
+
401: {
|
|
4111
|
+
headers: {
|
|
4112
|
+
[name: string]: unknown;
|
|
4113
|
+
};
|
|
4114
|
+
content: {
|
|
4115
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4116
|
+
};
|
|
4117
|
+
};
|
|
4118
|
+
/**
|
|
4119
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4120
|
+
* that [`Error`] renders to at the response boundary.
|
|
4121
|
+
*
|
|
4122
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4123
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4124
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4125
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4126
|
+
*
|
|
4127
|
+
* [`Error`]: crate::response::Error
|
|
4128
|
+
*/
|
|
4129
|
+
403: {
|
|
4130
|
+
headers: {
|
|
4131
|
+
[name: string]: unknown;
|
|
4132
|
+
};
|
|
4133
|
+
content: {
|
|
4134
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4135
|
+
};
|
|
4136
|
+
};
|
|
4137
|
+
/**
|
|
4138
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4139
|
+
* that [`Error`] renders to at the response boundary.
|
|
4140
|
+
*
|
|
4141
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4142
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4143
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4144
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4145
|
+
*
|
|
4146
|
+
* [`Error`]: crate::response::Error
|
|
4147
|
+
*/
|
|
4148
|
+
404: {
|
|
4149
|
+
headers: {
|
|
4150
|
+
[name: string]: unknown;
|
|
4151
|
+
};
|
|
4152
|
+
content: {
|
|
4153
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4154
|
+
};
|
|
4155
|
+
};
|
|
4156
|
+
};
|
|
4157
|
+
};
|
|
4158
|
+
put?: never;
|
|
4159
|
+
post?: never;
|
|
4160
|
+
delete?: never;
|
|
4161
|
+
options?: never;
|
|
4162
|
+
head?: never;
|
|
4163
|
+
patch?: never;
|
|
4164
|
+
trace?: never;
|
|
4165
|
+
};
|
|
4166
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}/verify": {
|
|
4167
|
+
parameters: {
|
|
4168
|
+
query?: never;
|
|
4169
|
+
header?: never;
|
|
4170
|
+
path?: never;
|
|
4171
|
+
cookie?: never;
|
|
4172
|
+
};
|
|
4173
|
+
get?: never;
|
|
4174
|
+
put?: never;
|
|
4175
|
+
/**
|
|
4176
|
+
* Verify a review
|
|
4177
|
+
* @description Verifies a review, moving it to `resolved`. 409 if already resolved. Requires Review.
|
|
4178
|
+
*/
|
|
4179
|
+
post: {
|
|
4180
|
+
parameters: {
|
|
4181
|
+
query?: never;
|
|
4182
|
+
header?: never;
|
|
4183
|
+
path: {
|
|
4184
|
+
/** @description Workspace identifier. */
|
|
4185
|
+
workspaceId: string;
|
|
4186
|
+
/** @description Unique identifier of the review. */
|
|
4187
|
+
reviewId: string;
|
|
4188
|
+
};
|
|
4189
|
+
cookie?: never;
|
|
4190
|
+
};
|
|
4191
|
+
requestBody?: never;
|
|
4192
|
+
responses: {
|
|
4193
|
+
/**
|
|
4194
|
+
* @description Response type for a document's review.
|
|
4195
|
+
*
|
|
4196
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4197
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4198
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
4199
|
+
* `assignees` (0..N reviewers).
|
|
4200
|
+
*/
|
|
4201
|
+
200: {
|
|
4202
|
+
headers: {
|
|
4203
|
+
[name: string]: unknown;
|
|
4204
|
+
};
|
|
4205
|
+
content: {
|
|
4206
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
4207
|
+
};
|
|
4208
|
+
};
|
|
4209
|
+
/**
|
|
4210
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4211
|
+
* that [`Error`] renders to at the response boundary.
|
|
4212
|
+
*
|
|
4213
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4214
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4215
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4216
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4217
|
+
*
|
|
4218
|
+
* [`Error`]: crate::response::Error
|
|
4219
|
+
*/
|
|
4220
|
+
401: {
|
|
4221
|
+
headers: {
|
|
4222
|
+
[name: string]: unknown;
|
|
4223
|
+
};
|
|
4224
|
+
content: {
|
|
4225
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4226
|
+
};
|
|
4227
|
+
};
|
|
4228
|
+
/**
|
|
4229
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4230
|
+
* that [`Error`] renders to at the response boundary.
|
|
4231
|
+
*
|
|
4232
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4233
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4234
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4235
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4236
|
+
*
|
|
4237
|
+
* [`Error`]: crate::response::Error
|
|
4238
|
+
*/
|
|
4239
|
+
403: {
|
|
4240
|
+
headers: {
|
|
4241
|
+
[name: string]: unknown;
|
|
4242
|
+
};
|
|
4243
|
+
content: {
|
|
4244
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4245
|
+
};
|
|
4246
|
+
};
|
|
4247
|
+
/**
|
|
4248
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4249
|
+
* that [`Error`] renders to at the response boundary.
|
|
4250
|
+
*
|
|
4251
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4252
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4253
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4254
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4255
|
+
*
|
|
4256
|
+
* [`Error`]: crate::response::Error
|
|
4257
|
+
*/
|
|
4258
|
+
404: {
|
|
4259
|
+
headers: {
|
|
4260
|
+
[name: string]: unknown;
|
|
4261
|
+
};
|
|
4262
|
+
content: {
|
|
4263
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4264
|
+
};
|
|
4265
|
+
};
|
|
4266
|
+
/**
|
|
4267
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4268
|
+
* that [`Error`] renders to at the response boundary.
|
|
4269
|
+
*
|
|
4270
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4271
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4272
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4273
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4274
|
+
*
|
|
4275
|
+
* [`Error`]: crate::response::Error
|
|
4276
|
+
*/
|
|
4277
|
+
409: {
|
|
4278
|
+
headers: {
|
|
4279
|
+
[name: string]: unknown;
|
|
4280
|
+
};
|
|
4281
|
+
content: {
|
|
4282
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4283
|
+
};
|
|
4284
|
+
};
|
|
4285
|
+
};
|
|
4286
|
+
};
|
|
4287
|
+
delete?: never;
|
|
4288
|
+
options?: never;
|
|
4289
|
+
head?: never;
|
|
4290
|
+
patch?: never;
|
|
4291
|
+
trace?: never;
|
|
4292
|
+
};
|
|
4293
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}/reopen": {
|
|
4294
|
+
parameters: {
|
|
4295
|
+
query?: never;
|
|
4296
|
+
header?: never;
|
|
4297
|
+
path?: never;
|
|
4298
|
+
cookie?: never;
|
|
4299
|
+
};
|
|
4300
|
+
get?: never;
|
|
4301
|
+
put?: never;
|
|
4302
|
+
/**
|
|
4303
|
+
* Reopen a review
|
|
4304
|
+
* @description Reopens a resolved review back to `needs_review`. Requires Review.
|
|
4305
|
+
*/
|
|
4306
|
+
post: {
|
|
4307
|
+
parameters: {
|
|
4308
|
+
query?: never;
|
|
4309
|
+
header?: never;
|
|
4310
|
+
path: {
|
|
4311
|
+
/** @description Workspace identifier. */
|
|
4312
|
+
workspaceId: string;
|
|
4313
|
+
/** @description Unique identifier of the review. */
|
|
4314
|
+
reviewId: string;
|
|
4315
|
+
};
|
|
4316
|
+
cookie?: never;
|
|
4317
|
+
};
|
|
4318
|
+
requestBody?: never;
|
|
4319
|
+
responses: {
|
|
4320
|
+
/**
|
|
4321
|
+
* @description Response type for a document's review.
|
|
4322
|
+
*
|
|
4323
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4324
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4325
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
4326
|
+
* `assignees` (0..N reviewers).
|
|
4327
|
+
*/
|
|
4328
|
+
200: {
|
|
4329
|
+
headers: {
|
|
4330
|
+
[name: string]: unknown;
|
|
4331
|
+
};
|
|
4332
|
+
content: {
|
|
4333
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
4334
|
+
};
|
|
4335
|
+
};
|
|
4336
|
+
/**
|
|
4337
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4338
|
+
* that [`Error`] renders to at the response boundary.
|
|
4339
|
+
*
|
|
4340
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4341
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4342
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4343
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4344
|
+
*
|
|
4345
|
+
* [`Error`]: crate::response::Error
|
|
4346
|
+
*/
|
|
4347
|
+
401: {
|
|
4348
|
+
headers: {
|
|
4349
|
+
[name: string]: unknown;
|
|
4350
|
+
};
|
|
4351
|
+
content: {
|
|
4352
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4353
|
+
};
|
|
4354
|
+
};
|
|
4355
|
+
/**
|
|
4356
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4357
|
+
* that [`Error`] renders to at the response boundary.
|
|
4358
|
+
*
|
|
4359
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4360
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4361
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4362
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4363
|
+
*
|
|
4364
|
+
* [`Error`]: crate::response::Error
|
|
4365
|
+
*/
|
|
4366
|
+
403: {
|
|
4367
|
+
headers: {
|
|
4368
|
+
[name: string]: unknown;
|
|
4369
|
+
};
|
|
4370
|
+
content: {
|
|
4371
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4372
|
+
};
|
|
4373
|
+
};
|
|
4374
|
+
/**
|
|
4375
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4376
|
+
* that [`Error`] renders to at the response boundary.
|
|
4377
|
+
*
|
|
4378
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4379
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4380
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4381
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4382
|
+
*
|
|
4383
|
+
* [`Error`]: crate::response::Error
|
|
4384
|
+
*/
|
|
4385
|
+
404: {
|
|
4386
|
+
headers: {
|
|
4387
|
+
[name: string]: unknown;
|
|
4388
|
+
};
|
|
4389
|
+
content: {
|
|
4390
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4391
|
+
};
|
|
4392
|
+
};
|
|
4393
|
+
};
|
|
4394
|
+
};
|
|
4395
|
+
delete?: never;
|
|
4396
|
+
options?: never;
|
|
4397
|
+
head?: never;
|
|
4398
|
+
patch?: never;
|
|
4399
|
+
trace?: never;
|
|
4400
|
+
};
|
|
4401
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}/assignees/{accountId}": {
|
|
4402
|
+
parameters: {
|
|
4403
|
+
query?: never;
|
|
4404
|
+
header?: never;
|
|
4405
|
+
path?: never;
|
|
4406
|
+
cookie?: never;
|
|
4407
|
+
};
|
|
4408
|
+
get?: never;
|
|
4409
|
+
put?: never;
|
|
4410
|
+
/**
|
|
4411
|
+
* Assign a reviewer
|
|
4412
|
+
* @description Assigns a workspace member as a reviewer of a review (idempotent). The first assignee moves a needs-review review to in-review. Requires AssignReviews.
|
|
4413
|
+
*/
|
|
4414
|
+
post: {
|
|
4415
|
+
parameters: {
|
|
4416
|
+
query?: never;
|
|
4417
|
+
header?: never;
|
|
4418
|
+
path: {
|
|
4419
|
+
/** @description Workspace identifier. */
|
|
4420
|
+
workspaceId: string;
|
|
4421
|
+
/** @description Account id of the reviewer to assign or unassign. */
|
|
4422
|
+
accountId: string;
|
|
4423
|
+
/** @description Unique identifier of the review. */
|
|
4424
|
+
reviewId: string;
|
|
4425
|
+
};
|
|
4426
|
+
cookie?: never;
|
|
4427
|
+
};
|
|
4428
|
+
requestBody?: never;
|
|
4429
|
+
responses: {
|
|
4430
|
+
/**
|
|
4431
|
+
* @description Response type for a document's review.
|
|
4432
|
+
*
|
|
4433
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4434
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4435
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
4436
|
+
* `assignees` (0..N reviewers).
|
|
4437
|
+
*/
|
|
4438
|
+
200: {
|
|
4439
|
+
headers: {
|
|
4440
|
+
[name: string]: unknown;
|
|
4441
|
+
};
|
|
4442
|
+
content: {
|
|
4443
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
4444
|
+
};
|
|
4445
|
+
};
|
|
4446
|
+
/**
|
|
4447
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4448
|
+
* that [`Error`] renders to at the response boundary.
|
|
4449
|
+
*
|
|
4450
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4451
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4452
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4453
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4454
|
+
*
|
|
4455
|
+
* [`Error`]: crate::response::Error
|
|
4456
|
+
*/
|
|
4457
|
+
401: {
|
|
4458
|
+
headers: {
|
|
4459
|
+
[name: string]: unknown;
|
|
4460
|
+
};
|
|
4461
|
+
content: {
|
|
4462
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4463
|
+
};
|
|
4464
|
+
};
|
|
4465
|
+
/**
|
|
4466
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4467
|
+
* that [`Error`] renders to at the response boundary.
|
|
4468
|
+
*
|
|
4469
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4470
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4471
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4472
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4473
|
+
*
|
|
4474
|
+
* [`Error`]: crate::response::Error
|
|
4475
|
+
*/
|
|
4476
|
+
403: {
|
|
4477
|
+
headers: {
|
|
4478
|
+
[name: string]: unknown;
|
|
4479
|
+
};
|
|
4480
|
+
content: {
|
|
4481
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4482
|
+
};
|
|
4483
|
+
};
|
|
4484
|
+
/**
|
|
4485
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4486
|
+
* that [`Error`] renders to at the response boundary.
|
|
4487
|
+
*
|
|
4488
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4489
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4490
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4491
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4492
|
+
*
|
|
4493
|
+
* [`Error`]: crate::response::Error
|
|
4494
|
+
*/
|
|
4495
|
+
404: {
|
|
4496
|
+
headers: {
|
|
4497
|
+
[name: string]: unknown;
|
|
4498
|
+
};
|
|
4499
|
+
content: {
|
|
4500
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4501
|
+
};
|
|
4502
|
+
};
|
|
4503
|
+
};
|
|
4504
|
+
};
|
|
4505
|
+
/**
|
|
4506
|
+
* Unassign a reviewer
|
|
4507
|
+
* @description Removes a reviewer from a review. Removing the last assignee returns an in-review review to needs-review. Requires AssignReviews.
|
|
4508
|
+
*/
|
|
4509
|
+
delete: {
|
|
4510
|
+
parameters: {
|
|
4511
|
+
query?: never;
|
|
4512
|
+
header?: never;
|
|
4513
|
+
path: {
|
|
4514
|
+
/** @description Workspace identifier. */
|
|
4515
|
+
workspaceId: string;
|
|
4516
|
+
/** @description Account id of the reviewer to assign or unassign. */
|
|
4517
|
+
accountId: string;
|
|
4518
|
+
/** @description Unique identifier of the review. */
|
|
4519
|
+
reviewId: string;
|
|
4520
|
+
};
|
|
4521
|
+
cookie?: never;
|
|
4522
|
+
};
|
|
4523
|
+
requestBody?: never;
|
|
4524
|
+
responses: {
|
|
4525
|
+
/**
|
|
4526
|
+
* @description Response type for a document's review.
|
|
4527
|
+
*
|
|
4528
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4529
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4530
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
4531
|
+
* `assignees` (0..N reviewers).
|
|
4532
|
+
*/
|
|
4533
|
+
200: {
|
|
4534
|
+
headers: {
|
|
4535
|
+
[name: string]: unknown;
|
|
4536
|
+
};
|
|
4537
|
+
content: {
|
|
4538
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
4539
|
+
};
|
|
4540
|
+
};
|
|
4541
|
+
/**
|
|
4542
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4543
|
+
* that [`Error`] renders to at the response boundary.
|
|
4544
|
+
*
|
|
4545
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4546
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4547
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4548
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4549
|
+
*
|
|
4550
|
+
* [`Error`]: crate::response::Error
|
|
4551
|
+
*/
|
|
4552
|
+
401: {
|
|
4553
|
+
headers: {
|
|
4554
|
+
[name: string]: unknown;
|
|
4555
|
+
};
|
|
4556
|
+
content: {
|
|
4557
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4558
|
+
};
|
|
4559
|
+
};
|
|
4560
|
+
/**
|
|
4561
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4562
|
+
* that [`Error`] renders to at the response boundary.
|
|
4563
|
+
*
|
|
4564
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4565
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4566
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4567
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4568
|
+
*
|
|
4569
|
+
* [`Error`]: crate::response::Error
|
|
4570
|
+
*/
|
|
4571
|
+
403: {
|
|
4572
|
+
headers: {
|
|
4573
|
+
[name: string]: unknown;
|
|
4574
|
+
};
|
|
4575
|
+
content: {
|
|
4576
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4577
|
+
};
|
|
4578
|
+
};
|
|
4579
|
+
/**
|
|
4580
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4581
|
+
* that [`Error`] renders to at the response boundary.
|
|
4582
|
+
*
|
|
4583
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4584
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4585
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4586
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4587
|
+
*
|
|
4588
|
+
* [`Error`]: crate::response::Error
|
|
4589
|
+
*/
|
|
4590
|
+
404: {
|
|
4591
|
+
headers: {
|
|
4592
|
+
[name: string]: unknown;
|
|
4593
|
+
};
|
|
4594
|
+
content: {
|
|
4595
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4596
|
+
};
|
|
4597
|
+
};
|
|
4598
|
+
};
|
|
4599
|
+
};
|
|
4600
|
+
options?: never;
|
|
4601
|
+
head?: never;
|
|
4602
|
+
patch?: never;
|
|
4603
|
+
trace?: never;
|
|
4604
|
+
};
|
|
4605
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}/detections/{detectionId}": {
|
|
4606
|
+
parameters: {
|
|
4607
|
+
query?: never;
|
|
4608
|
+
header?: never;
|
|
4609
|
+
path?: never;
|
|
4610
|
+
cookie?: never;
|
|
4611
|
+
};
|
|
4612
|
+
get?: never;
|
|
4613
|
+
put?: never;
|
|
4614
|
+
/**
|
|
4615
|
+
* Reference a detection from a review
|
|
4616
|
+
* @description Links a detection to a review (idempotent). Requires Review.
|
|
4617
|
+
*/
|
|
4618
|
+
post: {
|
|
4619
|
+
parameters: {
|
|
4620
|
+
query?: never;
|
|
4621
|
+
header?: never;
|
|
4622
|
+
path: {
|
|
4623
|
+
/** @description Workspace identifier. */
|
|
4624
|
+
workspaceId: string;
|
|
4625
|
+
/** @description Unique identifier of the detection to reference. */
|
|
4626
|
+
detectionId: string;
|
|
4627
|
+
/** @description Unique identifier of the review. */
|
|
4628
|
+
reviewId: string;
|
|
4629
|
+
};
|
|
4630
|
+
cookie?: never;
|
|
4631
|
+
};
|
|
4632
|
+
requestBody?: never;
|
|
4633
|
+
responses: {
|
|
4634
|
+
/**
|
|
4635
|
+
* @description Response type for a document's review.
|
|
4636
|
+
*
|
|
4637
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4638
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4639
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
4640
|
+
* `assignees` (0..N reviewers).
|
|
4641
|
+
*/
|
|
4642
|
+
200: {
|
|
4643
|
+
headers: {
|
|
4644
|
+
[name: string]: unknown;
|
|
4645
|
+
};
|
|
4646
|
+
content: {
|
|
4647
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
4648
|
+
};
|
|
4649
|
+
};
|
|
4650
|
+
/**
|
|
4651
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4652
|
+
* that [`Error`] renders to at the response boundary.
|
|
4653
|
+
*
|
|
4654
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4655
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4656
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4657
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4658
|
+
*
|
|
4659
|
+
* [`Error`]: crate::response::Error
|
|
4660
|
+
*/
|
|
4661
|
+
401: {
|
|
4662
|
+
headers: {
|
|
4663
|
+
[name: string]: unknown;
|
|
4664
|
+
};
|
|
4665
|
+
content: {
|
|
4666
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4667
|
+
};
|
|
4668
|
+
};
|
|
4669
|
+
/**
|
|
4670
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4671
|
+
* that [`Error`] renders to at the response boundary.
|
|
4672
|
+
*
|
|
4673
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4674
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4675
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4676
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4677
|
+
*
|
|
4678
|
+
* [`Error`]: crate::response::Error
|
|
4679
|
+
*/
|
|
4680
|
+
403: {
|
|
4681
|
+
headers: {
|
|
4682
|
+
[name: string]: unknown;
|
|
4683
|
+
};
|
|
4684
|
+
content: {
|
|
4685
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4686
|
+
};
|
|
4687
|
+
};
|
|
4688
|
+
/**
|
|
4689
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4690
|
+
* that [`Error`] renders to at the response boundary.
|
|
4691
|
+
*
|
|
4692
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4693
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4694
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4695
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4696
|
+
*
|
|
4697
|
+
* [`Error`]: crate::response::Error
|
|
4698
|
+
*/
|
|
4699
|
+
404: {
|
|
4700
|
+
headers: {
|
|
4701
|
+
[name: string]: unknown;
|
|
4702
|
+
};
|
|
4703
|
+
content: {
|
|
4704
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4705
|
+
};
|
|
4706
|
+
};
|
|
4707
|
+
};
|
|
4708
|
+
};
|
|
4709
|
+
delete?: never;
|
|
4710
|
+
options?: never;
|
|
4711
|
+
head?: never;
|
|
4712
|
+
patch?: never;
|
|
4713
|
+
trace?: never;
|
|
4714
|
+
};
|
|
4715
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}/redactions/{redactionId}": {
|
|
4716
|
+
parameters: {
|
|
4717
|
+
query?: never;
|
|
4718
|
+
header?: never;
|
|
4719
|
+
path?: never;
|
|
4720
|
+
cookie?: never;
|
|
4721
|
+
};
|
|
4722
|
+
get?: never;
|
|
4723
|
+
put?: never;
|
|
4724
|
+
/**
|
|
4725
|
+
* Reference a redaction from a review
|
|
4726
|
+
* @description Links a redaction to a review (idempotent). Requires Review.
|
|
3752
4727
|
*/
|
|
3753
|
-
|
|
4728
|
+
post: {
|
|
3754
4729
|
parameters: {
|
|
3755
4730
|
query?: never;
|
|
3756
4731
|
header?: never;
|
|
3757
4732
|
path: {
|
|
3758
4733
|
/** @description Workspace identifier. */
|
|
3759
4734
|
workspaceId: string;
|
|
3760
|
-
/** @description Unique identifier of the
|
|
3761
|
-
|
|
4735
|
+
/** @description Unique identifier of the redaction to reference. */
|
|
4736
|
+
redactionId: string;
|
|
4737
|
+
/** @description Unique identifier of the review. */
|
|
4738
|
+
reviewId: string;
|
|
3762
4739
|
};
|
|
3763
4740
|
cookie?: never;
|
|
3764
4741
|
};
|
|
3765
|
-
|
|
3766
|
-
requestBody: {
|
|
3767
|
-
content: {
|
|
3768
|
-
"application/json": components["schemas"]["UpdateWorkspaceComment"];
|
|
3769
|
-
};
|
|
3770
|
-
};
|
|
4742
|
+
requestBody?: never;
|
|
3771
4743
|
responses: {
|
|
3772
|
-
/** @description Response type for a comment: one message within a thread. */
|
|
3773
|
-
200: {
|
|
3774
|
-
headers: {
|
|
3775
|
-
[name: string]: unknown;
|
|
3776
|
-
};
|
|
3777
|
-
content: {
|
|
3778
|
-
"application/json": components["schemas"]["WorkspaceComment"];
|
|
3779
|
-
};
|
|
3780
|
-
};
|
|
3781
4744
|
/**
|
|
3782
|
-
* @description
|
|
3783
|
-
* that [`Error`] renders to at the response boundary.
|
|
3784
|
-
*
|
|
3785
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
3786
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
3787
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
3788
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
4745
|
+
* @description Response type for a document's review.
|
|
3789
4746
|
*
|
|
3790
|
-
*
|
|
4747
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4748
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4749
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
4750
|
+
* `assignees` (0..N reviewers).
|
|
3791
4751
|
*/
|
|
3792
|
-
|
|
4752
|
+
200: {
|
|
3793
4753
|
headers: {
|
|
3794
4754
|
[name: string]: unknown;
|
|
3795
4755
|
};
|
|
3796
4756
|
content: {
|
|
3797
|
-
"application/json": components["schemas"]["
|
|
4757
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
3798
4758
|
};
|
|
3799
4759
|
};
|
|
3800
4760
|
/**
|
|
@@ -3854,26 +4814,12 @@ interface paths {
|
|
|
3854
4814
|
"application/json": components["schemas"]["ErrorResponse"];
|
|
3855
4815
|
};
|
|
3856
4816
|
};
|
|
3857
|
-
/** @description Expected request with `Content-Type: application/json` */
|
|
3858
|
-
415: {
|
|
3859
|
-
headers: {
|
|
3860
|
-
[name: string]: unknown;
|
|
3861
|
-
};
|
|
3862
|
-
content: {
|
|
3863
|
-
"text/plain": string;
|
|
3864
|
-
};
|
|
3865
|
-
};
|
|
3866
|
-
/** @description Failed to deserialize the JSON body into the target type */
|
|
3867
|
-
422: {
|
|
3868
|
-
headers: {
|
|
3869
|
-
[name: string]: unknown;
|
|
3870
|
-
};
|
|
3871
|
-
content: {
|
|
3872
|
-
"text/plain": string;
|
|
3873
|
-
};
|
|
3874
|
-
};
|
|
3875
4817
|
};
|
|
3876
4818
|
};
|
|
4819
|
+
delete?: never;
|
|
4820
|
+
options?: never;
|
|
4821
|
+
head?: never;
|
|
4822
|
+
patch?: never;
|
|
3877
4823
|
trace?: never;
|
|
3878
4824
|
};
|
|
3879
4825
|
"/workspaces/{workspaceId}/connections": {
|
|
@@ -14061,14 +15007,6 @@ interface components {
|
|
|
14061
15007
|
modality: "tabular";
|
|
14062
15008
|
})[];
|
|
14063
15009
|
};
|
|
14064
|
-
/** @description Request payload to assign or unassign a document review. */
|
|
14065
|
-
AssignWorkspaceReview: {
|
|
14066
|
-
/**
|
|
14067
|
-
* Format: uuid
|
|
14068
|
-
* @description Account to assign the review to, or `null` to clear the current assignee.
|
|
14069
|
-
*/
|
|
14070
|
-
assignee?: string;
|
|
14071
|
-
};
|
|
14072
15010
|
/**
|
|
14073
15011
|
* @description Author-supplied rationale for a redaction: *under what authority* it was made.
|
|
14074
15012
|
*
|
|
@@ -14955,12 +15893,6 @@ interface components {
|
|
|
14955
15893
|
* @description Id of the comment the account was mentioned in.
|
|
14956
15894
|
*/
|
|
14957
15895
|
commentId: string;
|
|
14958
|
-
/**
|
|
14959
|
-
* Format: uuid
|
|
14960
|
-
* @description Id of the document the thread is on, when it is document-pinned; `None` for
|
|
14961
|
-
* a workspace-level thread.
|
|
14962
|
-
*/
|
|
14963
|
-
documentId?: string;
|
|
14964
15896
|
/**
|
|
14965
15897
|
* Format: uuid
|
|
14966
15898
|
* @description Id of the thread the comment is in.
|
|
@@ -15308,6 +16240,11 @@ interface components {
|
|
|
15308
16240
|
*/
|
|
15309
16241
|
isActive?: boolean;
|
|
15310
16242
|
};
|
|
16243
|
+
/** @description Request payload to open a review on a document. */
|
|
16244
|
+
CreateWorkspaceReview: {
|
|
16245
|
+
/** @description Optional free-text label for the review's purpose/audience (1-255 chars). */
|
|
16246
|
+
purpose?: string;
|
|
16247
|
+
};
|
|
15311
16248
|
/** @description Request payload for creating a new workspace webhook. */
|
|
15312
16249
|
CreateWorkspaceWebhook: {
|
|
15313
16250
|
/** @description Detailed description of the webhook's purpose (max 500 characters). */
|
|
@@ -18017,6 +18954,15 @@ interface components {
|
|
|
18017
18954
|
*/
|
|
18018
18955
|
threadId: string;
|
|
18019
18956
|
};
|
|
18957
|
+
/**
|
|
18958
|
+
* @description The kind of an entry in a document review's activity log.
|
|
18959
|
+
*
|
|
18960
|
+
* Corresponds to the `REVIEW_EVENT_KIND` `PostgreSQL` enum. A review's timeline
|
|
18961
|
+
* records what was done to the review: artifacts referenced, the assignee
|
|
18962
|
+
* changing, and the verification lifecycle. Distinct from a thread's discussion
|
|
18963
|
+
* timeline ([`ThreadEventKind`](super::ThreadEventKind)).
|
|
18964
|
+
*/
|
|
18965
|
+
ReviewEventKind: "detection.linked" | "redaction.linked" | "assigned" | "unassigned" | "verified" | "reopened";
|
|
18020
18966
|
/**
|
|
18021
18967
|
* @description The review state of a file thread (a file thread is the review of its
|
|
18022
18968
|
* file). `None` on the thread means a workspace thread, which has no review.
|
|
@@ -19688,12 +20634,6 @@ interface components {
|
|
|
19688
20634
|
};
|
|
19689
20635
|
/** @description Params of a comment-thread activity (`thread.*`). */
|
|
19690
20636
|
ThreadActivityParams: {
|
|
19691
|
-
/**
|
|
19692
|
-
* Format: uuid
|
|
19693
|
-
* @description Id of the document the thread is pinned to; omitted for a workspace-level
|
|
19694
|
-
* thread.
|
|
19695
|
-
*/
|
|
19696
|
-
documentId?: string;
|
|
19697
20637
|
/**
|
|
19698
20638
|
* Format: uuid
|
|
19699
20639
|
* @description Id of the thread.
|
|
@@ -19707,12 +20647,6 @@ interface components {
|
|
|
19707
20647
|
* @description Id of the comment.
|
|
19708
20648
|
*/
|
|
19709
20649
|
commentId: string;
|
|
19710
|
-
/**
|
|
19711
|
-
* Format: uuid
|
|
19712
|
-
* @description Id of the document the thread is pinned to; omitted for a workspace-level
|
|
19713
|
-
* thread.
|
|
19714
|
-
*/
|
|
19715
|
-
documentId?: string;
|
|
19716
20650
|
/**
|
|
19717
20651
|
* Format: uuid
|
|
19718
20652
|
* @description Id of the thread the comment is in.
|
|
@@ -19720,16 +20654,14 @@ interface components {
|
|
|
19720
20654
|
threadId: string;
|
|
19721
20655
|
};
|
|
19722
20656
|
/**
|
|
19723
|
-
* @description The kind of a non-message entry in a
|
|
20657
|
+
* @description The kind of a non-message entry in a discussion thread's timeline.
|
|
19724
20658
|
*
|
|
19725
20659
|
* Corresponds to the `THREAD_EVENT_KIND` `PostgreSQL` enum. A thread's stream
|
|
19726
|
-
* interleaves comments (messages) with these events. A
|
|
19727
|
-
* only the discussion lifecycle
|
|
19728
|
-
*
|
|
19729
|
-
* (a detection ran, a redaction was made, the review was verified or
|
|
19730
|
-
* reopened, the assignee changed).
|
|
20660
|
+
* interleaves comments (messages) with these events. A thread is a pure
|
|
20661
|
+
* discussion primitive, so this is only the discussion lifecycle; review
|
|
20662
|
+
* activity lives in [`ReviewEventKind`](super::ReviewEventKind).
|
|
19731
20663
|
*/
|
|
19732
|
-
ThreadEventKind: "thread.opened" | "thread.closed" | "thread.reopened" | "thread.renamed"
|
|
20664
|
+
ThreadEventKind: "thread.opened" | "thread.closed" | "thread.reopened" | "thread.renamed";
|
|
19733
20665
|
/**
|
|
19734
20666
|
* @description Half-open `[start, end)` stream interval, measured in microseconds.
|
|
19735
20667
|
*
|
|
@@ -21382,6 +22314,172 @@ interface components {
|
|
|
21382
22314
|
*/
|
|
21383
22315
|
total?: number;
|
|
21384
22316
|
};
|
|
22317
|
+
/**
|
|
22318
|
+
* @description Response type for a document's review.
|
|
22319
|
+
*
|
|
22320
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
22321
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
22322
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
|
|
22323
|
+
* `assignees` (0..N reviewers).
|
|
22324
|
+
*/
|
|
22325
|
+
WorkspaceReview: {
|
|
22326
|
+
/** @description The reviewers assigned to this review (empty when unassigned). */
|
|
22327
|
+
assignees: components["schemas"]["AccountRef"][];
|
|
22328
|
+
/**
|
|
22329
|
+
* Format: date-time
|
|
22330
|
+
* @description When the review was created.
|
|
22331
|
+
*/
|
|
22332
|
+
createdAt: string;
|
|
22333
|
+
/**
|
|
22334
|
+
* Format: uuid
|
|
22335
|
+
* @description Document under review.
|
|
22336
|
+
*/
|
|
22337
|
+
documentId: string;
|
|
22338
|
+
/**
|
|
22339
|
+
* Format: uuid
|
|
22340
|
+
* @description Unique identifier of the review.
|
|
22341
|
+
*/
|
|
22342
|
+
id: string;
|
|
22343
|
+
/** @description Optional purpose/audience label. */
|
|
22344
|
+
purpose?: string;
|
|
22345
|
+
/** @description The review's current status. */
|
|
22346
|
+
reviewStatus: components["schemas"]["ReviewStatus"];
|
|
22347
|
+
/**
|
|
22348
|
+
* Format: uuid
|
|
22349
|
+
* @description Discussion thread this review owns.
|
|
22350
|
+
*/
|
|
22351
|
+
threadId: string;
|
|
22352
|
+
/**
|
|
22353
|
+
* Format: date-time
|
|
22354
|
+
* @description When the review was last updated.
|
|
22355
|
+
*/
|
|
22356
|
+
updatedAt: string;
|
|
22357
|
+
};
|
|
22358
|
+
/** @description Path parameters addressing a reviewer assignment on a review. */
|
|
22359
|
+
WorkspaceReviewAssigneePathParams: {
|
|
22360
|
+
/**
|
|
22361
|
+
* Format: uuid
|
|
22362
|
+
* @description Account id of the reviewer to assign or unassign.
|
|
22363
|
+
*/
|
|
22364
|
+
accountId: string;
|
|
22365
|
+
/**
|
|
22366
|
+
* Format: uuid
|
|
22367
|
+
* @description Unique identifier of the review.
|
|
22368
|
+
*/
|
|
22369
|
+
reviewId: string;
|
|
22370
|
+
};
|
|
22371
|
+
/** @description Path parameters addressing a review-to-detection link. */
|
|
22372
|
+
WorkspaceReviewDetectionPathParams: {
|
|
22373
|
+
/**
|
|
22374
|
+
* Format: uuid
|
|
22375
|
+
* @description Unique identifier of the detection to reference.
|
|
22376
|
+
*/
|
|
22377
|
+
detectionId: string;
|
|
22378
|
+
/**
|
|
22379
|
+
* Format: uuid
|
|
22380
|
+
* @description Unique identifier of the review.
|
|
22381
|
+
*/
|
|
22382
|
+
reviewId: string;
|
|
22383
|
+
};
|
|
22384
|
+
/**
|
|
22385
|
+
* @description One entry in a review's activity timeline (a link, assignment, verification,
|
|
22386
|
+
* or reopen).
|
|
22387
|
+
*/
|
|
22388
|
+
WorkspaceReviewEvent: {
|
|
22389
|
+
/** @description Account that performed the action; `None` if that account was removed. */
|
|
22390
|
+
actor?: components["schemas"]["AccountRef"];
|
|
22391
|
+
/**
|
|
22392
|
+
* Format: date-time
|
|
22393
|
+
* @description When the event happened.
|
|
22394
|
+
*/
|
|
22395
|
+
createdAt: string;
|
|
22396
|
+
/**
|
|
22397
|
+
* Format: uuid
|
|
22398
|
+
* @description Unique identifier of the event.
|
|
22399
|
+
*/
|
|
22400
|
+
id: string;
|
|
22401
|
+
/** @description What happened. */
|
|
22402
|
+
kind: components["schemas"]["ReviewEventKind"];
|
|
22403
|
+
/** @description Event-specific detail (the linked id, the assignee); `None` when none. */
|
|
22404
|
+
target?: unknown;
|
|
22405
|
+
};
|
|
22406
|
+
/**
|
|
22407
|
+
* @description Generic paginated response wrapper.
|
|
22408
|
+
*
|
|
22409
|
+
* Provides a consistent structure for all paginated API responses with
|
|
22410
|
+
* cursor-based pagination support. When `next_cursor` is present, there
|
|
22411
|
+
* are more items to fetch.
|
|
22412
|
+
*/
|
|
22413
|
+
WorkspaceReviewEventPage: {
|
|
22414
|
+
/** @description Items in this page. */
|
|
22415
|
+
items: components["schemas"]["WorkspaceReviewEvent"][];
|
|
22416
|
+
/** @description Cursor to fetch the next page. Present only when more items exist. */
|
|
22417
|
+
nextCursor?: string;
|
|
22418
|
+
/**
|
|
22419
|
+
* Format: int64
|
|
22420
|
+
* @description Total count of items matching the query (if requested).
|
|
22421
|
+
*/
|
|
22422
|
+
total?: number;
|
|
22423
|
+
};
|
|
22424
|
+
/**
|
|
22425
|
+
* @description Generic paginated response wrapper.
|
|
22426
|
+
*
|
|
22427
|
+
* Provides a consistent structure for all paginated API responses with
|
|
22428
|
+
* cursor-based pagination support. When `next_cursor` is present, there
|
|
22429
|
+
* are more items to fetch.
|
|
22430
|
+
*/
|
|
22431
|
+
WorkspaceReviewPage: {
|
|
22432
|
+
/** @description Items in this page. */
|
|
22433
|
+
items: components["schemas"]["WorkspaceReview"][];
|
|
22434
|
+
/** @description Cursor to fetch the next page. Present only when more items exist. */
|
|
22435
|
+
nextCursor?: string;
|
|
22436
|
+
/**
|
|
22437
|
+
* Format: int64
|
|
22438
|
+
* @description Total count of items matching the query (if requested).
|
|
22439
|
+
*/
|
|
22440
|
+
total?: number;
|
|
22441
|
+
};
|
|
22442
|
+
/** @description Path parameters addressing one review by its id. */
|
|
22443
|
+
WorkspaceReviewPathParams: {
|
|
22444
|
+
/**
|
|
22445
|
+
* Format: uuid
|
|
22446
|
+
* @description Unique identifier of the review.
|
|
22447
|
+
*/
|
|
22448
|
+
reviewId: string;
|
|
22449
|
+
};
|
|
22450
|
+
/** @description Path parameters addressing a review-to-redaction link. */
|
|
22451
|
+
WorkspaceReviewRedactionPathParams: {
|
|
22452
|
+
/**
|
|
22453
|
+
* Format: uuid
|
|
22454
|
+
* @description Unique identifier of the redaction to reference.
|
|
22455
|
+
*/
|
|
22456
|
+
redactionId: string;
|
|
22457
|
+
/**
|
|
22458
|
+
* Format: uuid
|
|
22459
|
+
* @description Unique identifier of the review.
|
|
22460
|
+
*/
|
|
22461
|
+
reviewId: string;
|
|
22462
|
+
};
|
|
22463
|
+
/**
|
|
22464
|
+
* @description Query parameters for listing a workspace's reviews (the review queue).
|
|
22465
|
+
*
|
|
22466
|
+
* Every field is an optional filter; unset fields impose no constraint. Accounts
|
|
22467
|
+
* are addressed by id.
|
|
22468
|
+
*/
|
|
22469
|
+
WorkspaceReviewsQuery: {
|
|
22470
|
+
/**
|
|
22471
|
+
* Format: uuid
|
|
22472
|
+
* @description Filter by the assigned reviewer (account id).
|
|
22473
|
+
*/
|
|
22474
|
+
assignee?: string;
|
|
22475
|
+
/**
|
|
22476
|
+
* Format: uuid
|
|
22477
|
+
* @description Filter to the reviews of a specific document.
|
|
22478
|
+
*/
|
|
22479
|
+
documentId?: string;
|
|
22480
|
+
/** @description Filter by review status. */
|
|
22481
|
+
reviewStatus?: components["schemas"]["ReviewStatus"];
|
|
22482
|
+
};
|
|
21385
22483
|
/**
|
|
21386
22484
|
* @description The role and permission level of a workspace member.
|
|
21387
22485
|
*
|
|
@@ -21486,20 +22584,11 @@ interface components {
|
|
|
21486
22584
|
status?: components["schemas"]["SyncStatus"];
|
|
21487
22585
|
};
|
|
21488
22586
|
/**
|
|
21489
|
-
* @description Response type for a thread
|
|
21490
|
-
*
|
|
21491
|
-
*
|
|
21492
|
-
* and closed by members) or a document's review (`documentId` set, one live
|
|
21493
|
-
* thread per document, auto-created on the document's first detection). A
|
|
21494
|
-
* document thread carries a derived `reviewStatus` and an optional `assignee`; a
|
|
21495
|
-
* workspace thread carries neither. Its stream is a [`WorkspaceThreadEntry`] timeline.
|
|
22587
|
+
* @description Response type for a thread: a discussion with an author, an optional title, and
|
|
22588
|
+
* an open/closed lifecycle. Its stream is a [`WorkspaceThreadEntry`] timeline. A
|
|
22589
|
+
* document review (see the reviews endpoints) references a thread by its id.
|
|
21496
22590
|
*/
|
|
21497
22591
|
WorkspaceThread: {
|
|
21498
|
-
/**
|
|
21499
|
-
* @description Account the document review is assigned to; `None` for a workspace thread
|
|
21500
|
-
* or an unassigned document review.
|
|
21501
|
-
*/
|
|
21502
|
-
assignee?: components["schemas"]["AccountRef"];
|
|
21503
22592
|
/** @description Account that opened the thread. */
|
|
21504
22593
|
author: components["schemas"]["AccountRef"];
|
|
21505
22594
|
/** @description Whether the thread is closed. */
|
|
@@ -21516,21 +22605,11 @@ interface components {
|
|
|
21516
22605
|
createdAt: string;
|
|
21517
22606
|
/** @description The thread's title; `None` for an untitled thread. */
|
|
21518
22607
|
displayName?: string;
|
|
21519
|
-
/**
|
|
21520
|
-
* Format: uuid
|
|
21521
|
-
* @description Document this thread reviews; `None` for a workspace-level thread.
|
|
21522
|
-
*/
|
|
21523
|
-
documentId?: string;
|
|
21524
22608
|
/**
|
|
21525
22609
|
* Format: uuid
|
|
21526
22610
|
* @description Unique identifier of the thread.
|
|
21527
22611
|
*/
|
|
21528
22612
|
id: string;
|
|
21529
|
-
/**
|
|
21530
|
-
* @description The document review's current status, derived from the review timeline;
|
|
21531
|
-
* `None` for a workspace thread.
|
|
21532
|
-
*/
|
|
21533
|
-
reviewStatus?: components["schemas"]["ReviewStatus"];
|
|
21534
22613
|
/**
|
|
21535
22614
|
* Format: date-time
|
|
21536
22615
|
* @description When the thread was last updated.
|
|
@@ -21568,7 +22647,7 @@ interface components {
|
|
|
21568
22647
|
};
|
|
21569
22648
|
/**
|
|
21570
22649
|
* @description One non-message entry in a thread timeline (opened, closed, reopened,
|
|
21571
|
-
* renamed
|
|
22650
|
+
* renamed).
|
|
21572
22651
|
*/
|
|
21573
22652
|
WorkspaceThreadEvent: {
|
|
21574
22653
|
/** @description Account that performed the action; `None` if that account was removed. */
|
|
@@ -21621,11 +22700,6 @@ interface components {
|
|
|
21621
22700
|
* are addressed by id.
|
|
21622
22701
|
*/
|
|
21623
22702
|
WorkspaceThreadsQuery: {
|
|
21624
|
-
/**
|
|
21625
|
-
* Format: uuid
|
|
21626
|
-
* @description Filter document reviews by their assigned reviewer (account id).
|
|
21627
|
-
*/
|
|
21628
|
-
assignee?: string;
|
|
21629
22703
|
/**
|
|
21630
22704
|
* Format: uuid
|
|
21631
22705
|
* @description Filter by the thread's opening author (account id).
|
|
@@ -21633,13 +22707,6 @@ interface components {
|
|
|
21633
22707
|
author?: string;
|
|
21634
22708
|
/** @description Filter by open/closed state: `true` = closed only, `false` = open only. */
|
|
21635
22709
|
closed?: boolean;
|
|
21636
|
-
/**
|
|
21637
|
-
* Format: uuid
|
|
21638
|
-
* @description Filter by the document the thread reviews.
|
|
21639
|
-
*/
|
|
21640
|
-
documentId?: string;
|
|
21641
|
-
/** @description Filter document reviews by their derived review status. */
|
|
21642
|
-
reviewStatus?: components["schemas"]["ReviewStatus"];
|
|
21643
22710
|
};
|
|
21644
22711
|
/** @description Inference token usage across a workspace's detections. */
|
|
21645
22712
|
WorkspaceUsageAnalytics: {
|
|
@@ -21826,400 +22893,408 @@ interface components {
|
|
|
21826
22893
|
}
|
|
21827
22894
|
//#endregion
|
|
21828
22895
|
//#region src/datatypes/account.d.ts
|
|
21829
|
-
type Schemas$
|
|
21830
|
-
type Handle = Schemas$
|
|
21831
|
-
type Account = Schemas$
|
|
21832
|
-
type PublicAccount = Schemas$
|
|
21833
|
-
type UpdateAccount = Schemas$
|
|
21834
|
-
type AccountRef = Schemas$
|
|
21835
|
-
type AccountIdentities = Schemas$
|
|
21836
|
-
type AccountIdentity = Schemas$
|
|
21837
|
-
type IdentityProvider = Schemas$
|
|
21838
|
-
type SetPassword = Schemas$
|
|
21839
|
-
type OidcStartResponse = Schemas$
|
|
22896
|
+
type Schemas$25 = components["schemas"];
|
|
22897
|
+
type Handle = Schemas$25["Handle"];
|
|
22898
|
+
type Account = Schemas$25["Account"];
|
|
22899
|
+
type PublicAccount = Schemas$25["PublicAccount"];
|
|
22900
|
+
type UpdateAccount = Schemas$25["UpdateAccount"];
|
|
22901
|
+
type AccountRef = Schemas$25["AccountRef"];
|
|
22902
|
+
type AccountIdentities = Schemas$25["AccountIdentities"];
|
|
22903
|
+
type AccountIdentity = Schemas$25["AccountIdentity"];
|
|
22904
|
+
type IdentityProvider = Schemas$25["IdentityProvider"];
|
|
22905
|
+
type SetPassword = Schemas$25["SetPassword"];
|
|
22906
|
+
type OidcStartResponse = Schemas$25["OidcStartResponse"];
|
|
21840
22907
|
//#endregion
|
|
21841
22908
|
//#region src/datatypes/activity.d.ts
|
|
21842
|
-
type Schemas$
|
|
21843
|
-
type WorkspaceActivity = Schemas$
|
|
21844
|
-
type WorkspaceActivityPage = Schemas$
|
|
21845
|
-
type ActivityType = Schemas$
|
|
21846
|
-
type WorkspaceActivityFilterQuery = Schemas$
|
|
21847
|
-
type WorkspaceActivityExportOptions = Schemas$
|
|
21848
|
-
type ActivityPayload = Schemas$
|
|
21849
|
-
type WorkspaceActivityParams = Schemas$
|
|
21850
|
-
type MemberActivityParams = Schemas$
|
|
21851
|
-
type InviteActivityParams = Schemas$
|
|
21852
|
-
type ConnectionActivityParams = Schemas$
|
|
21853
|
-
type PipelineActivityParams = Schemas$
|
|
21854
|
-
type DetectionActivityParams = Schemas$
|
|
21855
|
-
type RedactionActivityParams = Schemas$
|
|
21856
|
-
type PolicyActivityParams = Schemas$
|
|
21857
|
-
type ProviderActivityParams = Schemas$
|
|
21858
|
-
type DocumentActivityParams = Schemas$
|
|
21859
|
-
type WebhookActivityParams = Schemas$
|
|
21860
|
-
type ReviewActivityParams = Schemas$
|
|
21861
|
-
type ThreadActivityParams = Schemas$
|
|
21862
|
-
type ThreadCommentActivityParams = Schemas$
|
|
22909
|
+
type Schemas$24 = components["schemas"];
|
|
22910
|
+
type WorkspaceActivity = Schemas$24["WorkspaceActivity"];
|
|
22911
|
+
type WorkspaceActivityPage = Schemas$24["WorkspaceActivityPage"];
|
|
22912
|
+
type ActivityType = Schemas$24["ActivityType"];
|
|
22913
|
+
type WorkspaceActivityFilterQuery = Schemas$24["WorkspaceActivityFilterQuery"];
|
|
22914
|
+
type WorkspaceActivityExportOptions = Schemas$24["WorkspaceActivityExportOptions"];
|
|
22915
|
+
type ActivityPayload = Schemas$24["ActivityPayload"];
|
|
22916
|
+
type WorkspaceActivityParams = Schemas$24["WorkspaceActivityParams"];
|
|
22917
|
+
type MemberActivityParams = Schemas$24["MemberActivityParams"];
|
|
22918
|
+
type InviteActivityParams = Schemas$24["InviteActivityParams"];
|
|
22919
|
+
type ConnectionActivityParams = Schemas$24["ConnectionActivityParams"];
|
|
22920
|
+
type PipelineActivityParams = Schemas$24["PipelineActivityParams"];
|
|
22921
|
+
type DetectionActivityParams = Schemas$24["DetectionActivityParams"];
|
|
22922
|
+
type RedactionActivityParams = Schemas$24["RedactionActivityParams"];
|
|
22923
|
+
type PolicyActivityParams = Schemas$24["PolicyActivityParams"];
|
|
22924
|
+
type ProviderActivityParams = Schemas$24["ProviderActivityParams"];
|
|
22925
|
+
type DocumentActivityParams = Schemas$24["DocumentActivityParams"];
|
|
22926
|
+
type WebhookActivityParams = Schemas$24["WebhookActivityParams"];
|
|
22927
|
+
type ReviewActivityParams = Schemas$24["ReviewActivityParams"];
|
|
22928
|
+
type ThreadActivityParams = Schemas$24["ThreadActivityParams"];
|
|
22929
|
+
type ThreadCommentActivityParams = Schemas$24["ThreadCommentActivityParams"];
|
|
21863
22930
|
//#endregion
|
|
21864
22931
|
//#region src/datatypes/analytics.d.ts
|
|
21865
|
-
type Schemas$
|
|
21866
|
-
type WorkspaceAnalytics = Schemas$
|
|
21867
|
-
type WorkspaceStorageAnalytics = Schemas$
|
|
21868
|
-
type WorkspaceStorageKindEntry = Schemas$
|
|
21869
|
-
type WorkspaceDetectionAnalytics = Schemas$
|
|
21870
|
-
type WorkspaceDetectionStatusEntry = Schemas$
|
|
21871
|
-
type WorkspaceUsageAnalytics = Schemas$
|
|
21872
|
-
type ModelUsage = Schemas$
|
|
21873
|
-
type WorkspaceModelUsageEntry = Schemas$
|
|
21874
|
-
type Usage = Schemas$
|
|
21875
|
-
type UsageReport = Schemas$
|
|
21876
|
-
type TokenCounts = Schemas$
|
|
21877
|
-
type RecognizerId = Schemas$
|
|
21878
|
-
type WorkspaceDetectionTimeSeries = Schemas$
|
|
21879
|
-
type WorkspaceDetectionDayEntry = Schemas$
|
|
22932
|
+
type Schemas$23 = components["schemas"];
|
|
22933
|
+
type WorkspaceAnalytics = Schemas$23["WorkspaceAnalytics"];
|
|
22934
|
+
type WorkspaceStorageAnalytics = Schemas$23["WorkspaceStorageAnalytics"];
|
|
22935
|
+
type WorkspaceStorageKindEntry = Schemas$23["WorkspaceStorageKindEntry"];
|
|
22936
|
+
type WorkspaceDetectionAnalytics = Schemas$23["WorkspaceDetectionAnalytics"];
|
|
22937
|
+
type WorkspaceDetectionStatusEntry = Schemas$23["WorkspaceDetectionStatusEntry"];
|
|
22938
|
+
type WorkspaceUsageAnalytics = Schemas$23["WorkspaceUsageAnalytics"];
|
|
22939
|
+
type ModelUsage = Schemas$23["ModelUsage"];
|
|
22940
|
+
type WorkspaceModelUsageEntry = Schemas$23["WorkspaceModelUsageEntry"];
|
|
22941
|
+
type Usage = Schemas$23["Usage"];
|
|
22942
|
+
type UsageReport = Schemas$23["UsageReport"];
|
|
22943
|
+
type TokenCounts = Schemas$23["TokenCounts"];
|
|
22944
|
+
type RecognizerId = Schemas$23["RecognizerId"];
|
|
22945
|
+
type WorkspaceDetectionTimeSeries = Schemas$23["WorkspaceDetectionTimeSeries"];
|
|
22946
|
+
type WorkspaceDetectionDayEntry = Schemas$23["WorkspaceDetectionDayEntry"];
|
|
21880
22947
|
//#endregion
|
|
21881
22948
|
//#region src/datatypes/api-token.d.ts
|
|
21882
|
-
type Schemas$
|
|
21883
|
-
type AccountApiToken = Schemas$
|
|
21884
|
-
type AccountApiTokenWithJwt = Schemas$
|
|
21885
|
-
type ApiTokenType = Schemas$
|
|
21886
|
-
type CreateAccountApiToken = Schemas$
|
|
21887
|
-
type UpdateAccountApiToken = Schemas$
|
|
21888
|
-
type TokenExpiration = Schemas$
|
|
21889
|
-
type AccountApiTokenPage = Schemas$
|
|
22949
|
+
type Schemas$22 = components["schemas"];
|
|
22950
|
+
type AccountApiToken = Schemas$22["AccountApiToken"];
|
|
22951
|
+
type AccountApiTokenWithJwt = Schemas$22["AccountApiTokenWithJwt"];
|
|
22952
|
+
type ApiTokenType = Schemas$22["ApiTokenType"];
|
|
22953
|
+
type CreateAccountApiToken = Schemas$22["CreateAccountApiToken"];
|
|
22954
|
+
type UpdateAccountApiToken = Schemas$22["UpdateAccountApiToken"];
|
|
22955
|
+
type TokenExpiration = Schemas$22["TokenExpiration"];
|
|
22956
|
+
type AccountApiTokenPage = Schemas$22["AccountApiTokenPage"];
|
|
21890
22957
|
//#endregion
|
|
21891
22958
|
//#region src/datatypes/artifact.d.ts
|
|
21892
|
-
type Schemas$
|
|
21893
|
-
type ArtifactSet = Schemas$
|
|
21894
|
-
type Layout = Schemas$
|
|
21895
|
-
type LayoutBlock = Schemas$
|
|
21896
|
-
type LayoutWord = Schemas$
|
|
21897
|
-
type Transcription = Schemas$
|
|
21898
|
-
type TranscriptSegment = Schemas$
|
|
21899
|
-
type TranscriptWord = Schemas$
|
|
21900
|
-
type Tokens = Schemas$
|
|
21901
|
-
type Token = Schemas$
|
|
22959
|
+
type Schemas$21 = components["schemas"];
|
|
22960
|
+
type ArtifactSet = Schemas$21["ArtifactSet"];
|
|
22961
|
+
type Layout = Schemas$21["Layout"];
|
|
22962
|
+
type LayoutBlock = Schemas$21["LayoutBlock"];
|
|
22963
|
+
type LayoutWord = Schemas$21["LayoutWord"];
|
|
22964
|
+
type Transcription = Schemas$21["Transcription"];
|
|
22965
|
+
type TranscriptSegment = Schemas$21["TranscriptSegment"];
|
|
22966
|
+
type TranscriptWord = Schemas$21["TranscriptWord"];
|
|
22967
|
+
type Tokens = Schemas$21["Tokens"];
|
|
22968
|
+
type Token = Schemas$21["Token"];
|
|
21902
22969
|
//#endregion
|
|
21903
22970
|
//#region src/datatypes/audit.d.ts
|
|
21904
|
-
type Schemas$
|
|
21905
|
-
type Audit = Schemas$
|
|
21906
|
-
type DocumentContext = Schemas$
|
|
21907
|
-
type CodecParams = Schemas$
|
|
21908
|
-
type EntityCoRef = Schemas$
|
|
21909
|
-
type Report = Schemas$
|
|
21910
|
-
type Recognition = Schemas$
|
|
21911
|
-
type EditSet = Schemas$
|
|
21912
|
-
type RasterMode = Schemas$
|
|
21913
|
-
type Dpi = Schemas$
|
|
21914
|
-
type Redaction = Schemas$
|
|
21915
|
-
type Selection = Schemas$
|
|
21916
|
-
type Suppress = Schemas$
|
|
21917
|
-
type ManualIntent = Schemas$
|
|
21918
|
-
type LeakProfile = Schemas$
|
|
21919
|
-
type RuleMatch = Schemas$
|
|
21920
|
-
type Attribution = Schemas$
|
|
21921
|
-
type CitedAttribution = Schemas$
|
|
21922
|
-
type FreeformAttribution = Schemas$
|
|
21923
|
-
type ModelEvent = Schemas$
|
|
21924
|
-
type PatternEvent = Schemas$
|
|
21925
|
-
type Conflict = Schemas$
|
|
21926
|
-
type Contested = Schemas$
|
|
21927
|
-
type Deduplication = Schemas$
|
|
21928
|
-
type Calibration = Schemas$
|
|
21929
|
-
type OperatorId = Schemas$
|
|
21930
|
-
type AuditHash = Schemas$
|
|
21931
|
-
type Category = Schemas$
|
|
22971
|
+
type Schemas$20 = components["schemas"];
|
|
22972
|
+
type Audit = Schemas$20["Audit"];
|
|
22973
|
+
type DocumentContext = Schemas$20["DocumentContext"];
|
|
22974
|
+
type CodecParams = Schemas$20["CodecParams"];
|
|
22975
|
+
type EntityCoRef = Schemas$20["EntityCoRef"];
|
|
22976
|
+
type Report = Schemas$20["Report"];
|
|
22977
|
+
type Recognition = Schemas$20["Recognition"];
|
|
22978
|
+
type EditSet = Schemas$20["EditSet"];
|
|
22979
|
+
type RasterMode = Schemas$20["RasterMode"];
|
|
22980
|
+
type Dpi = Schemas$20["Dpi"];
|
|
22981
|
+
type Redaction = Schemas$20["Redaction"];
|
|
22982
|
+
type Selection = Schemas$20["Selection"];
|
|
22983
|
+
type Suppress = Schemas$20["Suppress"];
|
|
22984
|
+
type ManualIntent = Schemas$20["ManualIntent"];
|
|
22985
|
+
type LeakProfile = Schemas$20["LeakProfile"];
|
|
22986
|
+
type RuleMatch = Schemas$20["RuleMatch"];
|
|
22987
|
+
type Attribution = Schemas$20["Attribution"];
|
|
22988
|
+
type CitedAttribution = Schemas$20["CitedAttribution"];
|
|
22989
|
+
type FreeformAttribution = Schemas$20["FreeformAttribution"];
|
|
22990
|
+
type ModelEvent = Schemas$20["ModelEvent"];
|
|
22991
|
+
type PatternEvent = Schemas$20["PatternEvent"];
|
|
22992
|
+
type Conflict = Schemas$20["Conflict"];
|
|
22993
|
+
type Contested = Schemas$20["Contested"];
|
|
22994
|
+
type Deduplication = Schemas$20["Deduplication"];
|
|
22995
|
+
type Calibration = Schemas$20["Calibration"];
|
|
22996
|
+
type OperatorId = Schemas$20["OperatorId"];
|
|
22997
|
+
type AuditHash = Schemas$20["AuditHash"];
|
|
22998
|
+
type Category = Schemas$20["Category"];
|
|
21932
22999
|
/** Half-open `[start, end)` index range. Generated name; a plain uint range. */
|
|
21933
|
-
type RangeOfUint = Schemas$
|
|
21934
|
-
type SourceRef = Schemas$
|
|
21935
|
-
type BoundingBox = Schemas$
|
|
21936
|
-
type Point = Schemas$
|
|
21937
|
-
type Polygon = Schemas$
|
|
21938
|
-
type Dimensions = Schemas$
|
|
21939
|
-
type TimeSpan = Schemas$
|
|
21940
|
-
type TextEntity = Schemas$
|
|
21941
|
-
type TextAuditEvent = Schemas$
|
|
21942
|
-
type TextAuditKind = Schemas$
|
|
21943
|
-
type TextAuditLog = Schemas$
|
|
21944
|
-
type TextHint = Schemas$
|
|
21945
|
-
type TextLocation = Schemas$
|
|
21946
|
-
type TextCoord = Schemas$
|
|
21947
|
-
type DecodedSpan = Schemas$
|
|
21948
|
-
type SourceSpan = Schemas$
|
|
21949
|
-
type TextData = Schemas$
|
|
21950
|
-
type TextModel = Schemas$
|
|
21951
|
-
type TextPattern = Schemas$
|
|
21952
|
-
type TextManual = Schemas$
|
|
21953
|
-
type TextEdit = Schemas$
|
|
21954
|
-
type TextAdd = Schemas$
|
|
21955
|
-
type TextRefinement = Schemas$
|
|
21956
|
-
type TextRetag = Schemas$
|
|
21957
|
-
type ImageEntity = Schemas$
|
|
21958
|
-
type ImageAuditEvent = Schemas$
|
|
21959
|
-
type ImageAuditKind = Schemas$
|
|
21960
|
-
type ImageAuditLog = Schemas$
|
|
21961
|
-
type ImageHint = Schemas$
|
|
21962
|
-
type ImageLocation = Schemas$
|
|
21963
|
-
type ImageData = Schemas$
|
|
21964
|
-
type ImageModel = Schemas$
|
|
21965
|
-
type ImagePattern = Schemas$
|
|
21966
|
-
type ImageManual = Schemas$
|
|
21967
|
-
type ImageEdit = Schemas$
|
|
21968
|
-
type ImageAdd = Schemas$
|
|
21969
|
-
type ImageRefinement = Schemas$
|
|
21970
|
-
type ImageRetag = Schemas$
|
|
21971
|
-
type AudioEntity = Schemas$
|
|
21972
|
-
type AudioAuditEvent = Schemas$
|
|
21973
|
-
type AudioAuditKind = Schemas$
|
|
21974
|
-
type AudioAuditLog = Schemas$
|
|
21975
|
-
type AudioHint = Schemas$
|
|
21976
|
-
type AudioLocation = Schemas$
|
|
21977
|
-
type AudioData = Schemas$
|
|
21978
|
-
type AudioModel = Schemas$
|
|
21979
|
-
type AudioPattern = Schemas$
|
|
21980
|
-
type AudioManual = Schemas$
|
|
21981
|
-
type AudioEdit = Schemas$
|
|
21982
|
-
type AudioAdd = Schemas$
|
|
21983
|
-
type AudioRefinement = Schemas$
|
|
21984
|
-
type AudioRetag = Schemas$
|
|
21985
|
-
type TabularEntity = Schemas$
|
|
21986
|
-
type TabularAuditEvent = Schemas$
|
|
21987
|
-
type TabularAuditKind = Schemas$
|
|
21988
|
-
type TabularAuditLog = Schemas$
|
|
21989
|
-
type TabularHint = Schemas$
|
|
21990
|
-
type TabularLocation = Schemas$
|
|
21991
|
-
type TabularModel = Schemas$
|
|
21992
|
-
type TabularPattern = Schemas$
|
|
21993
|
-
type TabularManual = Schemas$
|
|
21994
|
-
type TabularEdit = Schemas$
|
|
21995
|
-
type TabularAdd = Schemas$
|
|
21996
|
-
type TabularRefinement = Schemas$
|
|
21997
|
-
type TabularRetag = Schemas$
|
|
21998
|
-
type MetadataEvent = Schemas$
|
|
21999
|
-
type AudioMetadata = Schemas$
|
|
22000
|
-
type ImageMetadata = Schemas$
|
|
22001
|
-
type TabularMetadata = Schemas$
|
|
22002
|
-
type TextMetadata = Schemas$
|
|
23000
|
+
type RangeOfUint = Schemas$20["Range_of_uint"];
|
|
23001
|
+
type SourceRef = Schemas$20["SourceRef"];
|
|
23002
|
+
type BoundingBox = Schemas$20["BoundingBox"];
|
|
23003
|
+
type Point = Schemas$20["Point"];
|
|
23004
|
+
type Polygon = Schemas$20["Polygon"];
|
|
23005
|
+
type Dimensions = Schemas$20["Dimensions"];
|
|
23006
|
+
type TimeSpan = Schemas$20["TimeSpan"];
|
|
23007
|
+
type TextEntity = Schemas$20["TextEntity"];
|
|
23008
|
+
type TextAuditEvent = Schemas$20["TextAuditEvent"];
|
|
23009
|
+
type TextAuditKind = Schemas$20["TextAuditKind"];
|
|
23010
|
+
type TextAuditLog = Schemas$20["TextAuditLog"];
|
|
23011
|
+
type TextHint = Schemas$20["TextHint"];
|
|
23012
|
+
type TextLocation = Schemas$20["TextLocation"];
|
|
23013
|
+
type TextCoord = Schemas$20["TextCoord"];
|
|
23014
|
+
type DecodedSpan = Schemas$20["DecodedSpan"];
|
|
23015
|
+
type SourceSpan = Schemas$20["SourceSpan"];
|
|
23016
|
+
type TextData = Schemas$20["TextData"];
|
|
23017
|
+
type TextModel = Schemas$20["TextModel"];
|
|
23018
|
+
type TextPattern = Schemas$20["TextPattern"];
|
|
23019
|
+
type TextManual = Schemas$20["TextManual"];
|
|
23020
|
+
type TextEdit = Schemas$20["TextEdit"];
|
|
23021
|
+
type TextAdd = Schemas$20["TextAdd"];
|
|
23022
|
+
type TextRefinement = Schemas$20["TextRefinement"];
|
|
23023
|
+
type TextRetag = Schemas$20["TextRetag"];
|
|
23024
|
+
type ImageEntity = Schemas$20["ImageEntity"];
|
|
23025
|
+
type ImageAuditEvent = Schemas$20["ImageAuditEvent"];
|
|
23026
|
+
type ImageAuditKind = Schemas$20["ImageAuditKind"];
|
|
23027
|
+
type ImageAuditLog = Schemas$20["ImageAuditLog"];
|
|
23028
|
+
type ImageHint = Schemas$20["ImageHint"];
|
|
23029
|
+
type ImageLocation = Schemas$20["ImageLocation"];
|
|
23030
|
+
type ImageData = Schemas$20["ImageData"];
|
|
23031
|
+
type ImageModel = Schemas$20["ImageModel"];
|
|
23032
|
+
type ImagePattern = Schemas$20["ImagePattern"];
|
|
23033
|
+
type ImageManual = Schemas$20["ImageManual"];
|
|
23034
|
+
type ImageEdit = Schemas$20["ImageEdit"];
|
|
23035
|
+
type ImageAdd = Schemas$20["ImageAdd"];
|
|
23036
|
+
type ImageRefinement = Schemas$20["ImageRefinement"];
|
|
23037
|
+
type ImageRetag = Schemas$20["ImageRetag"];
|
|
23038
|
+
type AudioEntity = Schemas$20["AudioEntity"];
|
|
23039
|
+
type AudioAuditEvent = Schemas$20["AudioAuditEvent"];
|
|
23040
|
+
type AudioAuditKind = Schemas$20["AudioAuditKind"];
|
|
23041
|
+
type AudioAuditLog = Schemas$20["AudioAuditLog"];
|
|
23042
|
+
type AudioHint = Schemas$20["AudioHint"];
|
|
23043
|
+
type AudioLocation = Schemas$20["AudioLocation"];
|
|
23044
|
+
type AudioData = Schemas$20["AudioData"];
|
|
23045
|
+
type AudioModel = Schemas$20["AudioModel"];
|
|
23046
|
+
type AudioPattern = Schemas$20["AudioPattern"];
|
|
23047
|
+
type AudioManual = Schemas$20["AudioManual"];
|
|
23048
|
+
type AudioEdit = Schemas$20["AudioEdit"];
|
|
23049
|
+
type AudioAdd = Schemas$20["AudioAdd"];
|
|
23050
|
+
type AudioRefinement = Schemas$20["AudioRefinement"];
|
|
23051
|
+
type AudioRetag = Schemas$20["AudioRetag"];
|
|
23052
|
+
type TabularEntity = Schemas$20["TabularEntity"];
|
|
23053
|
+
type TabularAuditEvent = Schemas$20["TabularAuditEvent"];
|
|
23054
|
+
type TabularAuditKind = Schemas$20["TabularAuditKind"];
|
|
23055
|
+
type TabularAuditLog = Schemas$20["TabularAuditLog"];
|
|
23056
|
+
type TabularHint = Schemas$20["TabularHint"];
|
|
23057
|
+
type TabularLocation = Schemas$20["TabularLocation"];
|
|
23058
|
+
type TabularModel = Schemas$20["TabularModel"];
|
|
23059
|
+
type TabularPattern = Schemas$20["TabularPattern"];
|
|
23060
|
+
type TabularManual = Schemas$20["TabularManual"];
|
|
23061
|
+
type TabularEdit = Schemas$20["TabularEdit"];
|
|
23062
|
+
type TabularAdd = Schemas$20["TabularAdd"];
|
|
23063
|
+
type TabularRefinement = Schemas$20["TabularRefinement"];
|
|
23064
|
+
type TabularRetag = Schemas$20["TabularRetag"];
|
|
23065
|
+
type MetadataEvent = Schemas$20["MetadataEvent"];
|
|
23066
|
+
type AudioMetadata = Schemas$20["AudioMetadata"];
|
|
23067
|
+
type ImageMetadata = Schemas$20["ImageMetadata"];
|
|
23068
|
+
type TabularMetadata = Schemas$20["TabularMetadata"];
|
|
23069
|
+
type TextMetadata = Schemas$20["TextMetadata"];
|
|
22003
23070
|
//#endregion
|
|
22004
23071
|
//#region src/datatypes/auth.d.ts
|
|
22005
|
-
type Schemas$
|
|
22006
|
-
type Login = Schemas$
|
|
22007
|
-
type Signup = Schemas$
|
|
22008
|
-
type DesktopTokenRequest = Schemas$
|
|
22009
|
-
type AccountDesktopToken = Schemas$
|
|
23072
|
+
type Schemas$19 = components["schemas"];
|
|
23073
|
+
type Login = Schemas$19["Login"];
|
|
23074
|
+
type Signup = Schemas$19["Signup"];
|
|
23075
|
+
type DesktopTokenRequest = Schemas$19["DesktopTokenRequest"];
|
|
23076
|
+
type AccountDesktopToken = Schemas$19["AccountDesktopToken"];
|
|
22010
23077
|
//#endregion
|
|
22011
23078
|
//#region src/datatypes/capabilities.d.ts
|
|
22012
|
-
type Schemas$
|
|
23079
|
+
type Schemas$18 = components["schemas"];
|
|
22013
23080
|
/** Registry of the deployment's built-in labels, keyed by id. */
|
|
22014
|
-
type LabelCatalog = Schemas$
|
|
23081
|
+
type LabelCatalog = Schemas$18["LabelCatalog"];
|
|
22015
23082
|
/** The engine's registered recognizers, grouped into NER and LLM. */
|
|
22016
|
-
type RecognizerCatalog = Schemas$
|
|
22017
|
-
type RegisteredRecognizer = Schemas$
|
|
23083
|
+
type RecognizerCatalog = Schemas$18["RecognizerCatalog"];
|
|
23084
|
+
type RegisteredRecognizer = Schemas$18["RegisteredRecognizer"];
|
|
22018
23085
|
/** Which connector families and providers this deployment can create. */
|
|
22019
|
-
type ConnectorCapabilities = Schemas$
|
|
22020
|
-
type FileProviders = Schemas$
|
|
23086
|
+
type ConnectorCapabilities = Schemas$18["ConnectorCapabilities"];
|
|
23087
|
+
type FileProviders = Schemas$18["FileProviders"];
|
|
22021
23088
|
/** Which authentication methods this deployment offers. */
|
|
22022
|
-
type AuthCapabilities = Schemas$
|
|
23089
|
+
type AuthCapabilities = Schemas$18["AuthCapabilities"];
|
|
22023
23090
|
//#endregion
|
|
22024
23091
|
//#region src/datatypes/connection.d.ts
|
|
22025
|
-
type Schemas$
|
|
22026
|
-
type ConnectionId = Schemas$
|
|
22027
|
-
type WorkspaceConnection = Schemas$
|
|
22028
|
-
type ConnectionType = Schemas$
|
|
22029
|
-
type CreateWorkspaceConnection = Schemas$
|
|
22030
|
-
type UpdateWorkspaceConnection = Schemas$
|
|
22031
|
-
type WorkspaceConnectionsQuery = Schemas$
|
|
22032
|
-
type WorkspaceConnectionPage = Schemas$
|
|
22033
|
-
type WorkspaceConnectionSync = Schemas$
|
|
22034
|
-
type WorkspaceConnectionSyncPage = Schemas$
|
|
22035
|
-
type WorkspaceConnectionVerification = Schemas$
|
|
22036
|
-
type ImportWorkspaceFiles = Schemas$
|
|
22037
|
-
type PickedFile = Schemas$
|
|
22038
|
-
type ExportWorkspaceFiles = Schemas$
|
|
22039
|
-
type WorkspacePickerTokenRequest = Schemas$
|
|
22040
|
-
type WorkspacePickerToken = Schemas$
|
|
22041
|
-
type SyncMode = Schemas$
|
|
22042
|
-
type SyncStatus = Schemas$
|
|
22043
|
-
type SyncTriggerType = Schemas$
|
|
22044
|
-
type SyncDeletionPolicy = Schemas$
|
|
22045
|
-
type ConnectionConfig = Schemas$
|
|
22046
|
-
type StorageConfig = Schemas$
|
|
22047
|
-
type S3Credentials = Schemas$
|
|
22048
|
-
type AzureCredentials = Schemas$
|
|
22049
|
-
type GcsCredentials = Schemas$
|
|
22050
|
-
type LlmConfig = Schemas$
|
|
22051
|
-
type AuthenticatedProvider = Schemas$
|
|
22052
|
-
type UnauthenticatedProvider = Schemas$
|
|
22053
|
-
type FileServiceProvider = Schemas$
|
|
22054
|
-
type FileServiceConfig = Schemas$
|
|
22055
|
-
type OAuthTokens = Schemas$
|
|
22056
|
-
type StartFileServiceOAuth = Schemas$
|
|
22057
|
-
type OAuthStartResponse = Schemas$
|
|
22058
|
-
type WorkspaceSyncSchedule = Schemas$
|
|
22059
|
-
type SyncScheduleInput = Schemas$
|
|
23092
|
+
type Schemas$17 = components["schemas"];
|
|
23093
|
+
type ConnectionId = Schemas$17["ConnectionId"];
|
|
23094
|
+
type WorkspaceConnection = Schemas$17["WorkspaceConnection"];
|
|
23095
|
+
type ConnectionType = Schemas$17["ConnectionType"];
|
|
23096
|
+
type CreateWorkspaceConnection = Schemas$17["CreateWorkspaceConnection"];
|
|
23097
|
+
type UpdateWorkspaceConnection = Schemas$17["UpdateWorkspaceConnection"];
|
|
23098
|
+
type WorkspaceConnectionsQuery = Schemas$17["WorkspaceConnectionsQuery"];
|
|
23099
|
+
type WorkspaceConnectionPage = Schemas$17["WorkspaceConnectionPage"];
|
|
23100
|
+
type WorkspaceConnectionSync = Schemas$17["WorkspaceConnectionSync"];
|
|
23101
|
+
type WorkspaceConnectionSyncPage = Schemas$17["WorkspaceConnectionSyncPage"];
|
|
23102
|
+
type WorkspaceConnectionVerification = Schemas$17["WorkspaceConnectionVerification"];
|
|
23103
|
+
type ImportWorkspaceFiles = Schemas$17["ImportWorkspaceFiles"];
|
|
23104
|
+
type PickedFile = Schemas$17["PickedFile"];
|
|
23105
|
+
type ExportWorkspaceFiles = Schemas$17["ExportWorkspaceFiles"];
|
|
23106
|
+
type WorkspacePickerTokenRequest = Schemas$17["WorkspacePickerTokenRequest"];
|
|
23107
|
+
type WorkspacePickerToken = Schemas$17["WorkspacePickerToken"];
|
|
23108
|
+
type SyncMode = Schemas$17["SyncMode"];
|
|
23109
|
+
type SyncStatus = Schemas$17["SyncStatus"];
|
|
23110
|
+
type SyncTriggerType = Schemas$17["SyncTriggerType"];
|
|
23111
|
+
type SyncDeletionPolicy = Schemas$17["SyncDeletionPolicy"];
|
|
23112
|
+
type ConnectionConfig = Schemas$17["ConnectionConfig"];
|
|
23113
|
+
type StorageConfig = Schemas$17["StorageConfig"];
|
|
23114
|
+
type S3Credentials = Schemas$17["S3Credentials"];
|
|
23115
|
+
type AzureCredentials = Schemas$17["AzureCredentials"];
|
|
23116
|
+
type GcsCredentials = Schemas$17["GcsCredentials"];
|
|
23117
|
+
type LlmConfig = Schemas$17["LlmConfig"];
|
|
23118
|
+
type AuthenticatedProvider = Schemas$17["AuthenticatedProvider"];
|
|
23119
|
+
type UnauthenticatedProvider = Schemas$17["UnauthenticatedProvider"];
|
|
23120
|
+
type FileServiceProvider = Schemas$17["FileServiceProvider"];
|
|
23121
|
+
type FileServiceConfig = Schemas$17["FileServiceConfig"];
|
|
23122
|
+
type OAuthTokens = Schemas$17["OAuthTokens"];
|
|
23123
|
+
type StartFileServiceOAuth = Schemas$17["StartFileServiceOAuth"];
|
|
23124
|
+
type OAuthStartResponse = Schemas$17["OAuthStartResponse"];
|
|
23125
|
+
type WorkspaceSyncSchedule = Schemas$17["WorkspaceSyncSchedule"];
|
|
23126
|
+
type SyncScheduleInput = Schemas$17["SyncScheduleInput"];
|
|
22060
23127
|
//#endregion
|
|
22061
23128
|
//#region src/datatypes/detection.d.ts
|
|
22062
|
-
type Schemas$
|
|
22063
|
-
type DetectionId = Schemas$
|
|
22064
|
-
type WorkspaceDetection = Schemas$
|
|
22065
|
-
type DetectionMetadata = Schemas$
|
|
22066
|
-
type CreateWorkspaceDetection = Schemas$
|
|
22067
|
-
type CreateAdhocWorkspaceDetection = Schemas$
|
|
22068
|
-
type DetectionStatus = Schemas$
|
|
22069
|
-
type WorkspaceDetectionPage = Schemas$
|
|
22070
|
-
type WorkspaceDetectionsQuery = Schemas$
|
|
22071
|
-
type WorkspacePipelineDetectionsQuery = Schemas$
|
|
22072
|
-
type DetectionStatusEvent = Schemas$
|
|
22073
|
-
type RedactionId = Schemas$
|
|
22074
|
-
type RedactWorkspaceDetection = Schemas$
|
|
22075
|
-
type WorkspaceRedactionResult = Schemas$
|
|
22076
|
-
type WorkspaceRedactionResultPage = Schemas$
|
|
23129
|
+
type Schemas$16 = components["schemas"];
|
|
23130
|
+
type DetectionId = Schemas$16["DetectionId"];
|
|
23131
|
+
type WorkspaceDetection = Schemas$16["WorkspaceDetection"];
|
|
23132
|
+
type DetectionMetadata = Schemas$16["DetectionMetadata"];
|
|
23133
|
+
type CreateWorkspaceDetection = Schemas$16["CreateWorkspaceDetection"];
|
|
23134
|
+
type CreateAdhocWorkspaceDetection = Schemas$16["CreateAdhocWorkspaceDetection"];
|
|
23135
|
+
type DetectionStatus = Schemas$16["DetectionStatus"];
|
|
23136
|
+
type WorkspaceDetectionPage = Schemas$16["WorkspaceDetectionPage"];
|
|
23137
|
+
type WorkspaceDetectionsQuery = Schemas$16["WorkspaceDetectionsQuery"];
|
|
23138
|
+
type WorkspacePipelineDetectionsQuery = Schemas$16["WorkspacePipelineDetectionsQuery"];
|
|
23139
|
+
type DetectionStatusEvent = Schemas$16["DetectionStatusEvent"];
|
|
23140
|
+
type RedactionId = Schemas$16["RedactionId"];
|
|
23141
|
+
type RedactWorkspaceDetection = Schemas$16["RedactWorkspaceDetection"];
|
|
23142
|
+
type WorkspaceRedactionResult = Schemas$16["WorkspaceRedactionResult"];
|
|
23143
|
+
type WorkspaceRedactionResultPage = Schemas$16["WorkspaceRedactionResultPage"];
|
|
22077
23144
|
//#endregion
|
|
22078
23145
|
//#region src/datatypes/document.d.ts
|
|
22079
|
-
type Schemas$
|
|
22080
|
-
type WorkspaceDocument = Schemas$
|
|
22081
|
-
type UpdateWorkspaceDocument = Schemas$
|
|
22082
|
-
type DocumentKind = Schemas$
|
|
22083
|
-
type DocumentHash = Schemas$
|
|
22084
|
-
type FormatToken = Schemas$
|
|
22085
|
-
type ModalityToken = Schemas$
|
|
22086
|
-
type ListWorkspaceDocuments = Schemas$
|
|
22087
|
-
type WorkspaceDocumentPage = Schemas$
|
|
22088
|
-
type DeleteWorkspaceDocuments = Schemas$
|
|
22089
|
-
type WorkspaceDeletedDocuments = Schemas$
|
|
22090
|
-
type AssignWorkspaceReview = Schemas$14["AssignWorkspaceReview"];
|
|
22091
|
-
type ReviewStatus = Schemas$14["ReviewStatus"];
|
|
23146
|
+
type Schemas$15 = components["schemas"];
|
|
23147
|
+
type WorkspaceDocument = Schemas$15["WorkspaceDocument"];
|
|
23148
|
+
type UpdateWorkspaceDocument = Schemas$15["UpdateWorkspaceDocument"];
|
|
23149
|
+
type DocumentKind = Schemas$15["DocumentKind"];
|
|
23150
|
+
type DocumentHash = Schemas$15["DocumentHash"];
|
|
23151
|
+
type FormatToken = Schemas$15["FormatToken"];
|
|
23152
|
+
type ModalityToken = Schemas$15["ModalityToken"];
|
|
23153
|
+
type ListWorkspaceDocuments = Schemas$15["ListWorkspaceDocuments"];
|
|
23154
|
+
type WorkspaceDocumentPage = Schemas$15["WorkspaceDocumentPage"];
|
|
23155
|
+
type DeleteWorkspaceDocuments = Schemas$15["DeleteWorkspaceDocuments"];
|
|
23156
|
+
type WorkspaceDeletedDocuments = Schemas$15["WorkspaceDeletedDocuments"];
|
|
22092
23157
|
//#endregion
|
|
22093
23158
|
//#region src/datatypes/error.d.ts
|
|
22094
|
-
type Schemas$
|
|
22095
|
-
type ErrorResponse = Schemas$
|
|
23159
|
+
type Schemas$14 = components["schemas"];
|
|
23160
|
+
type ErrorResponse = Schemas$14["ErrorResponse"];
|
|
22096
23161
|
//#endregion
|
|
22097
23162
|
//#region src/datatypes/export.d.ts
|
|
22098
|
-
type Schemas$
|
|
22099
|
-
type ExportFormat = Schemas$
|
|
22100
|
-
type ExportQuery = Schemas$
|
|
22101
|
-
type DateWindow = Schemas$
|
|
23163
|
+
type Schemas$13 = components["schemas"];
|
|
23164
|
+
type ExportFormat = Schemas$13["ExportFormat"];
|
|
23165
|
+
type ExportQuery = Schemas$13["ExportQuery"];
|
|
23166
|
+
type DateWindow = Schemas$13["DateWindow"];
|
|
22102
23167
|
//#endregion
|
|
22103
23168
|
//#region src/datatypes/health.d.ts
|
|
22104
|
-
type Schemas$
|
|
22105
|
-
type Health = Schemas$
|
|
22106
|
-
type HealthStatus = Schemas$
|
|
22107
|
-
type ComponentHealth = Schemas$
|
|
23169
|
+
type Schemas$12 = components["schemas"];
|
|
23170
|
+
type Health = Schemas$12["Health"];
|
|
23171
|
+
type HealthStatus = Schemas$12["HealthStatus"];
|
|
23172
|
+
type ComponentHealth = Schemas$12["ComponentHealth"];
|
|
22108
23173
|
//#endregion
|
|
22109
23174
|
//#region src/datatypes/invite.d.ts
|
|
22110
|
-
type Schemas$
|
|
22111
|
-
type WorkspaceInvite = Schemas$
|
|
22112
|
-
type WorkspaceInviteSent = Schemas$
|
|
22113
|
-
type CreateWorkspaceInvite = Schemas$
|
|
22114
|
-
type ReplyWorkspaceInvite = Schemas$
|
|
22115
|
-
type GenerateWorkspaceInviteCode = Schemas$
|
|
22116
|
-
type WorkspaceInviteCode = Schemas$
|
|
22117
|
-
type InviteStatus = Schemas$
|
|
22118
|
-
type InviteExpiration = Schemas$
|
|
22119
|
-
type ListWorkspaceInvites = Schemas$
|
|
22120
|
-
type InviteSortField = Schemas$
|
|
22121
|
-
type Direction = Schemas$
|
|
22122
|
-
type InvitePreview = Schemas$
|
|
22123
|
-
type WorkspaceInvitePage = Schemas$
|
|
23175
|
+
type Schemas$11 = components["schemas"];
|
|
23176
|
+
type WorkspaceInvite = Schemas$11["WorkspaceInvite"];
|
|
23177
|
+
type WorkspaceInviteSent = Schemas$11["WorkspaceInviteSent"];
|
|
23178
|
+
type CreateWorkspaceInvite = Schemas$11["CreateWorkspaceInvite"];
|
|
23179
|
+
type ReplyWorkspaceInvite = Schemas$11["ReplyWorkspaceInvite"];
|
|
23180
|
+
type GenerateWorkspaceInviteCode = Schemas$11["GenerateWorkspaceInviteCode"];
|
|
23181
|
+
type WorkspaceInviteCode = Schemas$11["WorkspaceInviteCode"];
|
|
23182
|
+
type InviteStatus = Schemas$11["InviteStatus"];
|
|
23183
|
+
type InviteExpiration = Schemas$11["InviteExpiration"];
|
|
23184
|
+
type ListWorkspaceInvites = Schemas$11["ListWorkspaceInvites"];
|
|
23185
|
+
type InviteSortField = Schemas$11["InviteSortField"];
|
|
23186
|
+
type Direction = Schemas$11["Direction"];
|
|
23187
|
+
type InvitePreview = Schemas$11["InvitePreview"];
|
|
23188
|
+
type WorkspaceInvitePage = Schemas$11["WorkspaceInvitePage"];
|
|
22124
23189
|
//#endregion
|
|
22125
23190
|
//#region src/datatypes/member.d.ts
|
|
22126
|
-
type Schemas$
|
|
22127
|
-
type WorkspaceMember = Schemas$
|
|
22128
|
-
type UpdateWorkspaceMember = Schemas$
|
|
22129
|
-
type ListWorkspaceMembers = Schemas$
|
|
22130
|
-
type MemberSortField = Schemas$
|
|
22131
|
-
type WorkspaceMemberPage = Schemas$
|
|
23191
|
+
type Schemas$10 = components["schemas"];
|
|
23192
|
+
type WorkspaceMember = Schemas$10["WorkspaceMember"];
|
|
23193
|
+
type UpdateWorkspaceMember = Schemas$10["UpdateWorkspaceMember"];
|
|
23194
|
+
type ListWorkspaceMembers = Schemas$10["ListWorkspaceMembers"];
|
|
23195
|
+
type MemberSortField = Schemas$10["MemberSortField"];
|
|
23196
|
+
type WorkspaceMemberPage = Schemas$10["WorkspaceMemberPage"];
|
|
22132
23197
|
//#endregion
|
|
22133
23198
|
//#region src/datatypes/notification.d.ts
|
|
22134
|
-
type Schemas$
|
|
22135
|
-
type AccountNotification = Schemas$
|
|
22136
|
-
type NotificationEvent = Schemas$
|
|
22137
|
-
type WorkspaceNotificationSettings = Schemas$
|
|
22138
|
-
type UpdateWorkspaceNotificationSettings = Schemas$
|
|
22139
|
-
type AccountUnreadStatus = Schemas$
|
|
22140
|
-
type AccountNotificationPage = Schemas$
|
|
22141
|
-
type AccountMarkedReadStatus = Schemas$
|
|
22142
|
-
type UnreadCountEvent = Schemas$
|
|
22143
|
-
type NotificationPayload = Schemas$
|
|
22144
|
-
type MemberJoinedParams = Schemas$
|
|
22145
|
-
type ConnectionSyncCompletedParams = Schemas$
|
|
22146
|
-
type ConnectionSyncFailedParams = Schemas$
|
|
22147
|
-
type DetectionCompletedParams = Schemas$
|
|
22148
|
-
type DetectionFailedParams = Schemas$
|
|
22149
|
-
type RedactionCreatedParams = Schemas$
|
|
22150
|
-
type ReviewAssignedParams = Schemas$
|
|
22151
|
-
type CommentMentionedParams = Schemas$
|
|
23199
|
+
type Schemas$9 = components["schemas"];
|
|
23200
|
+
type AccountNotification = Schemas$9["AccountNotification"];
|
|
23201
|
+
type NotificationEvent = Schemas$9["NotificationEvent"];
|
|
23202
|
+
type WorkspaceNotificationSettings = Schemas$9["WorkspaceNotificationSettings"];
|
|
23203
|
+
type UpdateWorkspaceNotificationSettings = Schemas$9["UpdateWorkspaceNotificationSettings"];
|
|
23204
|
+
type AccountUnreadStatus = Schemas$9["AccountUnreadStatus"];
|
|
23205
|
+
type AccountNotificationPage = Schemas$9["AccountNotificationPage"];
|
|
23206
|
+
type AccountMarkedReadStatus = Schemas$9["AccountMarkedReadStatus"];
|
|
23207
|
+
type UnreadCountEvent = Schemas$9["UnreadCountEvent"];
|
|
23208
|
+
type NotificationPayload = Schemas$9["NotificationPayload"];
|
|
23209
|
+
type MemberJoinedParams = Schemas$9["MemberJoinedParams"];
|
|
23210
|
+
type ConnectionSyncCompletedParams = Schemas$9["ConnectionSyncCompletedParams"];
|
|
23211
|
+
type ConnectionSyncFailedParams = Schemas$9["ConnectionSyncFailedParams"];
|
|
23212
|
+
type DetectionCompletedParams = Schemas$9["DetectionCompletedParams"];
|
|
23213
|
+
type DetectionFailedParams = Schemas$9["DetectionFailedParams"];
|
|
23214
|
+
type RedactionCreatedParams = Schemas$9["RedactionCreatedParams"];
|
|
23215
|
+
type ReviewAssignedParams = Schemas$9["ReviewAssignedParams"];
|
|
23216
|
+
type CommentMentionedParams = Schemas$9["CommentMentionedParams"];
|
|
22152
23217
|
//#endregion
|
|
22153
23218
|
//#region src/datatypes/pagination.d.ts
|
|
22154
|
-
type Schemas$
|
|
22155
|
-
type CursorPagination = Schemas$
|
|
23219
|
+
type Schemas$8 = components["schemas"];
|
|
23220
|
+
type CursorPagination = Schemas$8["CursorPagination"];
|
|
22156
23221
|
//#endregion
|
|
22157
23222
|
//#region src/datatypes/pipeline.d.ts
|
|
22158
|
-
type Schemas$
|
|
22159
|
-
type WorkspacePipeline = Schemas$
|
|
22160
|
-
type CreateWorkspacePipeline = Schemas$
|
|
22161
|
-
type UpdateWorkspacePipeline = Schemas$
|
|
22162
|
-
type PipelineDefinition = Schemas$
|
|
22163
|
-
type WorkspacePipelineFilter = Schemas$
|
|
22164
|
-
type PipelineStatus = Schemas$
|
|
22165
|
-
type PipelineTriggerType = Schemas$
|
|
22166
|
-
type WorkspacePipelineSummary = Schemas$
|
|
22167
|
-
type WorkspacePipelineSummaryPage = Schemas$
|
|
23223
|
+
type Schemas$7 = components["schemas"];
|
|
23224
|
+
type WorkspacePipeline = Schemas$7["WorkspacePipeline"];
|
|
23225
|
+
type CreateWorkspacePipeline = Schemas$7["CreateWorkspacePipeline"];
|
|
23226
|
+
type UpdateWorkspacePipeline = Schemas$7["UpdateWorkspacePipeline"];
|
|
23227
|
+
type PipelineDefinition = Schemas$7["PipelineDefinition"];
|
|
23228
|
+
type WorkspacePipelineFilter = Schemas$7["WorkspacePipelineFilter"];
|
|
23229
|
+
type PipelineStatus = Schemas$7["PipelineStatus"];
|
|
23230
|
+
type PipelineTriggerType = Schemas$7["PipelineTriggerType"];
|
|
23231
|
+
type WorkspacePipelineSummary = Schemas$7["WorkspacePipelineSummary"];
|
|
23232
|
+
type WorkspacePipelineSummaryPage = Schemas$7["WorkspacePipelineSummaryPage"];
|
|
22168
23233
|
//#endregion
|
|
22169
23234
|
//#region src/datatypes/policy.d.ts
|
|
22170
|
-
type Schemas$
|
|
22171
|
-
type WorkspacePolicy = Schemas$
|
|
22172
|
-
type Policy = Schemas$
|
|
22173
|
-
type PolicyKind = Schemas$
|
|
22174
|
-
type WorkspacePolicySummary = Schemas$
|
|
22175
|
-
type WorkspacePolicySummaryPage = Schemas$
|
|
22176
|
-
type WorkspacePoliciesQuery = Schemas$
|
|
22177
|
-
type PolicyDraft = Schemas$
|
|
22178
|
-
type CreateWorkspacePolicy = Schemas$
|
|
22179
|
-
type UpdateWorkspacePolicy = Schemas$
|
|
22180
|
-
type PolicyRule = Schemas$
|
|
22181
|
-
type CustomMatcher = Schemas$
|
|
22182
|
-
type PolicyTemplate = Schemas$
|
|
22183
|
-
type TemplateOrigin = Schemas$
|
|
22184
|
-
type HipaaDeidMethod = Schemas$
|
|
22185
|
-
type HipaaAccountNumbers = Schemas$
|
|
22186
|
-
type GdprArticle9Treatment = Schemas$
|
|
22187
|
-
type GdprSensitiveScope = Schemas$
|
|
22188
|
-
type PciDssPart = Schemas$
|
|
22189
|
-
type PciPanRender = Schemas$
|
|
22190
|
-
type Predicate = Schemas$
|
|
22191
|
-
type ModalityRedactions = Schemas$
|
|
22192
|
-
type TextRedaction = Schemas$
|
|
22193
|
-
type ImageRedaction = Schemas$
|
|
22194
|
-
type AudioRedaction = Schemas$
|
|
22195
|
-
type TabularRedaction = Schemas$
|
|
22196
|
-
type LabelScope = Schemas$
|
|
22197
|
-
type LabelEntry = Schemas$
|
|
22198
|
-
type LabelLocale = Schemas$
|
|
22199
|
-
type Label = Schemas$
|
|
22200
|
-
type LabelRef = Schemas$
|
|
22201
|
-
type LocalizedText = Schemas$
|
|
22202
|
-
type Color = Schemas$
|
|
22203
|
-
type Waveform = Schemas$
|
|
22204
|
-
type ClampBucket = Schemas$
|
|
22205
|
-
type ConfidenceThreshold = Schemas$
|
|
22206
|
-
type DateStyle = Schemas$
|
|
22207
|
-
type DateGranularity = Schemas$
|
|
22208
|
-
type LanguageTag = Schemas$
|
|
22209
|
-
type Sha2Algorithm = Schemas$
|
|
22210
|
-
type TerminalFallback = Schemas$
|
|
23235
|
+
type Schemas$6 = components["schemas"];
|
|
23236
|
+
type WorkspacePolicy = Schemas$6["WorkspacePolicy"];
|
|
23237
|
+
type Policy = Schemas$6["Policy"];
|
|
23238
|
+
type PolicyKind = Schemas$6["PolicyKind"];
|
|
23239
|
+
type WorkspacePolicySummary = Schemas$6["WorkspacePolicySummary"];
|
|
23240
|
+
type WorkspacePolicySummaryPage = Schemas$6["WorkspacePolicySummaryPage"];
|
|
23241
|
+
type WorkspacePoliciesQuery = Schemas$6["WorkspacePoliciesQuery"];
|
|
23242
|
+
type PolicyDraft = Schemas$6["PolicyDraft"];
|
|
23243
|
+
type CreateWorkspacePolicy = Schemas$6["CreateWorkspacePolicy"];
|
|
23244
|
+
type UpdateWorkspacePolicy = Schemas$6["UpdateWorkspacePolicy"];
|
|
23245
|
+
type PolicyRule = Schemas$6["PolicyRule"];
|
|
23246
|
+
type CustomMatcher = Schemas$6["CustomMatcher"];
|
|
23247
|
+
type PolicyTemplate = Schemas$6["PolicyTemplate"];
|
|
23248
|
+
type TemplateOrigin = Schemas$6["TemplateOrigin"];
|
|
23249
|
+
type HipaaDeidMethod = Schemas$6["HipaaDeidMethod"];
|
|
23250
|
+
type HipaaAccountNumbers = Schemas$6["HipaaAccountNumbers"];
|
|
23251
|
+
type GdprArticle9Treatment = Schemas$6["GdprArticle9Treatment"];
|
|
23252
|
+
type GdprSensitiveScope = Schemas$6["GdprSensitiveScope"];
|
|
23253
|
+
type PciDssPart = Schemas$6["PciDssPart"];
|
|
23254
|
+
type PciPanRender = Schemas$6["PciPanRender"];
|
|
23255
|
+
type Predicate = Schemas$6["Predicate"];
|
|
23256
|
+
type ModalityRedactions = Schemas$6["ModalityRedactions"];
|
|
23257
|
+
type TextRedaction = Schemas$6["TextRedaction"];
|
|
23258
|
+
type ImageRedaction = Schemas$6["ImageRedaction"];
|
|
23259
|
+
type AudioRedaction = Schemas$6["AudioRedaction"];
|
|
23260
|
+
type TabularRedaction = Schemas$6["TabularRedaction"];
|
|
23261
|
+
type LabelScope = Schemas$6["LabelScope"];
|
|
23262
|
+
type LabelEntry = Schemas$6["LabelEntry"];
|
|
23263
|
+
type LabelLocale = Schemas$6["LabelLocale"];
|
|
23264
|
+
type Label = Schemas$6["Label"];
|
|
23265
|
+
type LabelRef = Schemas$6["LabelRef"];
|
|
23266
|
+
type LocalizedText = Schemas$6["LocalizedText"];
|
|
23267
|
+
type Color = Schemas$6["Color"];
|
|
23268
|
+
type Waveform = Schemas$6["Waveform"];
|
|
23269
|
+
type ClampBucket = Schemas$6["ClampBucket"];
|
|
23270
|
+
type ConfidenceThreshold = Schemas$6["ConfidenceThreshold"];
|
|
23271
|
+
type DateStyle = Schemas$6["DateStyle"];
|
|
23272
|
+
type DateGranularity = Schemas$6["DateGranularity"];
|
|
23273
|
+
type LanguageTag = Schemas$6["LanguageTag"];
|
|
23274
|
+
type Sha2Algorithm = Schemas$6["Sha2Algorithm"];
|
|
23275
|
+
type TerminalFallback = Schemas$6["TerminalFallback"];
|
|
22211
23276
|
//#endregion
|
|
22212
23277
|
//#region src/datatypes/provider.d.ts
|
|
23278
|
+
type Schemas$5 = components["schemas"];
|
|
23279
|
+
type ProviderId = Schemas$5["ProviderId"];
|
|
23280
|
+
type WorkspaceProvider = Schemas$5["WorkspaceProvider"];
|
|
23281
|
+
type CreateWorkspaceProvider = Schemas$5["CreateWorkspaceProvider"];
|
|
23282
|
+
type UpdateWorkspaceProvider = Schemas$5["UpdateWorkspaceProvider"];
|
|
23283
|
+
type WorkspaceProvidersQuery = Schemas$5["WorkspaceProvidersQuery"];
|
|
23284
|
+
type WorkspaceProviderPage = Schemas$5["WorkspaceProviderPage"];
|
|
23285
|
+
type ProviderType = Schemas$5["ProviderType"];
|
|
23286
|
+
type ProviderConfig = Schemas$5["ProviderConfig"];
|
|
23287
|
+
type InferenceConfig = Schemas$5["InferenceConfig"];
|
|
23288
|
+
//#endregion
|
|
23289
|
+
//#region src/datatypes/review.d.ts
|
|
22213
23290
|
type Schemas$4 = components["schemas"];
|
|
22214
|
-
type
|
|
22215
|
-
type
|
|
22216
|
-
type
|
|
22217
|
-
type
|
|
22218
|
-
type
|
|
22219
|
-
type
|
|
22220
|
-
type
|
|
22221
|
-
type ProviderConfig = Schemas$4["ProviderConfig"];
|
|
22222
|
-
type InferenceConfig = Schemas$4["InferenceConfig"];
|
|
23291
|
+
type WorkspaceReview = Schemas$4["WorkspaceReview"];
|
|
23292
|
+
type CreateWorkspaceReview = Schemas$4["CreateWorkspaceReview"];
|
|
23293
|
+
type WorkspaceReviewPage = Schemas$4["WorkspaceReviewPage"];
|
|
23294
|
+
type WorkspaceReviewsQuery = Schemas$4["WorkspaceReviewsQuery"];
|
|
23295
|
+
type WorkspaceReviewEvent = Schemas$4["WorkspaceReviewEvent"];
|
|
23296
|
+
type WorkspaceReviewEventPage = Schemas$4["WorkspaceReviewEventPage"];
|
|
23297
|
+
type ReviewStatus = Schemas$4["ReviewStatus"];
|
|
22223
23298
|
//#endregion
|
|
22224
23299
|
//#region src/datatypes/scope.d.ts
|
|
22225
23300
|
type Schemas$3 = components["schemas"];
|
|
@@ -22272,5 +23347,5 @@ type Retention = Schemas["Retention"];
|
|
|
22272
23347
|
type RetentionSettings = Schemas["RetentionSettings"];
|
|
22273
23348
|
type RetentionOverride = Schemas["RetentionOverride"];
|
|
22274
23349
|
//#endregion
|
|
22275
|
-
export {
|
|
22276
|
-
//# sourceMappingURL=index-
|
|
23350
|
+
export { WorkspaceProvider as $, AccountApiTokenPage as $a, PatternEvent as $i, DetectionMetadata as $n, Signup as $r, AccountNotification as $t, WorkspaceThreadEvent as A, TextCoord as Aa, EditSet as Ai, WorkspaceInviteCode as An, ReviewActivityParams as Ao, SyncScheduleInput as Ar, Predicate as At, CreateWorkspaceReview as B, TextRefinement as Ba, ImageHint as Bi, DeleteWorkspaceDocuments as Bn, AccountIdentities as Bo, WorkspaceConnectionsQuery as Br, WorkspacePolicySummary as Bt, RenameWorkspaceThread as C, TabularPattern as Ca, Conflict as Ci, InviteExpiration as Cn, DocumentActivityParams as Co, OAuthTokens as Cr, PciDssPart as Ct, WorkspaceThread as D, TextAuditEvent as Da, Dimensions as Di, ListWorkspaceInvites as Dn, PolicyActivityParams as Do, StorageConfig as Dr, PolicyKind as Dt, WorkspaceComment as E, TextAdd as Ea, Deduplication as Ei, InviteStatus as En, PipelineActivityParams as Eo, StartFileServiceOAuth as Er, PolicyDraft as Et, Language as F, TextLocation as Fa, ImageAuditKind as Fi, HealthStatus as Fn, WorkspaceActivityExportOptions as Fo, WorkspaceConnection as Fr, TextRedaction as Ft, WorkspaceReviewPage as G, LayoutBlock as Ga, ImagePattern as Gi, ModalityToken as Gn, OidcStartResponse as Go, ConnectorCapabilities as Gr, PipelineTriggerType as Gt, WorkspaceReview as H, TimeSpan as Ha, ImageManual as Hi, DocumentKind as Hn, AccountRef as Ho, WorkspacePickerTokenRequest as Hr, CreateWorkspacePipeline as Ht, LanguageProvenance as I, TextManual as Ia, ImageAuditLog as Ii, DateWindow as In, WorkspaceActivityFilterQuery as Io, WorkspaceConnectionPage as Ir, UpdateWorkspacePolicy as It, InferenceConfig as J, Tokens as Ja, LeakProfile as Ji, WorkspaceDocument as Jn, UpdateAccount as Jo, RecognizerCatalog as Jr, WorkspacePipelineFilter as Jt, WorkspaceReviewsQuery as K, LayoutWord as Ka, ImageRefinement as Ki, UpdateWorkspaceDocument as Kn, PublicAccount as Ko, FileProviders as Kr, UpdateWorkspacePipeline as Kt, LanguageSpan as L, TextMetadata as La, ImageData as Li, ExportFormat as Ln, WorkspaceActivityPage as Lo, WorkspaceConnectionSync as Lr, Waveform as Lt, WorkspaceThreadsQuery as M, TextEdit as Ma, FreeformAttribution as Mi, WorkspaceInviteSent as Mn, ThreadCommentActivityParams as Mo, SyncTriggerType as Mr, TabularRedaction as Mt, Confidence as N, TextEntity as Na, ImageAdd as Ni, ComponentHealth as Nn, WebhookActivityParams as No, UnauthenticatedProvider as Nr, TemplateOrigin as Nt, WorkspaceThreadEntry as O, TextAuditKind as Oa, DocumentContext as Oi, ReplyWorkspaceInvite as On, ProviderActivityParams as Oo, SyncDeletionPolicy as Or, PolicyRule as Ot, CountryCode as P, TextHint as Pa, ImageAuditEvent as Pi, Health as Pn, WorkspaceActivity as Po, UpdateWorkspaceConnection as Pr, TerminalFallback as Pt, UpdateWorkspaceProvider as Q, AccountApiToken as Qa, OperatorId as Qi, DetectionId as Qn, Login as Qr, AccountMarkedReadStatus as Qt, Languages as R, TextModel as Ra, ImageEdit as Ri, ExportQuery as Rn, WorkspaceActivityParams as Ro, WorkspaceConnectionSyncPage as Rr, WorkspacePoliciesQuery as Rt, OpenWorkspaceThread as S, TabularModel as Sa, CodecParams as Si, GenerateWorkspaceInviteCode as Sn, DetectionActivityParams as So, OAuthStartResponse as Sr, ModalityRedactions as St, UpdateWorkspaceComment as T, TabularRetag as Ta, DecodedSpan as Ti, InviteSortField as Tn, MemberActivityParams as To, S3Credentials as Tr, Policy as Tt, WorkspaceReviewEvent as U, ArtifactSet as Ua, ImageMetadata as Ui, FormatToken as Un, Handle as Uo, WorkspaceSyncSchedule as Ur, PipelineDefinition as Ut, ReviewStatus as V, TextRetag as Va, ImageLocation as Vi, DocumentHash as Vn, AccountIdentity as Vo, WorkspacePickerToken as Vr, WorkspacePolicySummaryPage as Vt, WorkspaceReviewEventPage as W, Layout as Wa, ImageModel as Wi, ListWorkspaceDocuments as Wn, IdentityProvider as Wo, AuthCapabilities as Wr, PipelineStatus as Wt, ProviderId as X, TranscriptWord as Xa, MetadataEvent as Xi, CreateAdhocWorkspaceDetection as Xn, AccountDesktopToken as Xr, WorkspacePipelineSummaryPage as Xt, ProviderConfig as Y, TranscriptSegment as Ya, ManualIntent as Yi, WorkspaceDocumentPage as Yn, paths as Yo, RegisteredRecognizer as Yr, WorkspacePipelineSummary as Yt, ProviderType as Z, Transcription as Za, ModelEvent as Zi, CreateWorkspaceDetection as Zn, DesktopTokenRequest as Zr, CursorPagination as Zt, WorkspaceWebhook as _, TabularEntity as _a, AuditHash as _i, UpdateWorkspaceMember as _n, WorkspaceStorageKindEntry as _o, FileServiceConfig as _r, LabelLocale as _t, RetentionSettings as a, Redaction as aa, AudioData as ai, DetectionCompletedParams as an, ModelUsage as ao, WorkspaceDetectionPage as ar, ConfidenceThreshold as at, WorkspaceWebhookResult as b, TabularManual as ba, Category as bi, CreateWorkspaceInvite as bn, ActivityType as bo, ImportWorkspaceFiles as br, LanguageTag as bt, WorkspacePage as c, Selection as ca, AudioHint as ci, NotificationEvent as cn, Usage as co, WorkspaceRedactionResult as cr, DateGranularity as ct, CreateWorkspaceWebhook as d, Suppress as da, AudioMetadata as di, ReviewAssignedParams as dn, WorkspaceDetectionAnalytics as do, AzureCredentials as dr, GdprSensitiveScope as dt, Point as ea, Attribution as ei, AccountNotificationPage as en, AccountApiTokenWithJwt as eo, DetectionStatus as er, WorkspaceProviderPage as et, TestWorkspaceWebhook as f, TabularAdd as fa, AudioModel as fi, UnreadCountEvent as fn, WorkspaceDetectionDayEntry as fo, ConnectionConfig as fr, HipaaAccountNumbers as ft, WebhookStatus as g, TabularEdit as ga, Audit as gi, MemberSortField as gn, WorkspaceStorageAnalytics as go, ExportWorkspaceFiles as gr, LabelEntry as gt, WebhookId as h, TabularAuditLog as ha, AudioRetag as hi, ListWorkspaceMembers as hn, WorkspaceModelUsageEntry as ho, CreateWorkspaceConnection as hr, Label as ht, RetentionOverride as i, Recognition as ia, AudioAuditLog as ii, ConnectionSyncFailedParams as in, UpdateAccountApiToken as io, WorkspaceDetection as ir, Color as it, WorkspaceThreadPage as j, TextData as ja, EntityCoRef as ji, WorkspaceInvitePage as jn, ThreadActivityParams as jo, SyncStatus as jr, Sha2Algorithm as jt, WorkspaceThreadEntryPage as k, TextAuditLog as ka, Dpi as ki, WorkspaceInvite as kn, RedactionActivityParams as ko, SyncMode as kr, PolicyTemplate as kt, WorkspaceRole as l, SourceRef as la, AudioLocation as li, NotificationPayload as ln, UsageReport as lo, WorkspaceRedactionResultPage as lr, DateStyle as lt, WebhookEvent as m, TabularAuditKind as ma, AudioRefinement as mi, WorkspaceNotificationSettings as mn, WorkspaceDetectionTimeSeries as mo, ConnectionType as mr, ImageRedaction as mt, RasterPolicy as n, RangeOfUint as na, AudioAuditEvent as ni, CommentMentionedParams as nn, CreateAccountApiToken as no, RedactWorkspaceDetection as nr, AudioRedaction as nt, UpdateWorkspace as o, Report as oa, AudioEdit as oi, DetectionFailedParams as on, RecognizerId as oo, WorkspaceDetectionsQuery as or, CreateWorkspacePolicy as ot, UpdateWorkspaceWebhook as p, TabularAuditEvent as pa, AudioPattern as pi, UpdateWorkspaceNotificationSettings as pn, WorkspaceDetectionStatusEntry as po, ConnectionId as pr, HipaaDeidMethod as pt, CreateWorkspaceProvider as q, Token as qa, ImageRetag as qi, WorkspaceDeletedDocuments as qn, SetPassword as qo, LabelCatalog as qr, WorkspacePipeline as qt, Retention as r, RasterMode as ra, AudioAuditKind as ri, ConnectionSyncCompletedParams as rn, TokenExpiration as ro, RedactionId as rr, ClampBucket as rt, Workspace as s, RuleMatch as sa, AudioEntity as si, MemberJoinedParams as sn, TokenCounts as so, WorkspacePipelineDetectionsQuery as sr, CustomMatcher as st, CreateWorkspace as t, Polygon as ta, AudioAdd as ti, AccountUnreadStatus as tn, ApiTokenType as to, DetectionStatusEvent as tr, WorkspaceProvidersQuery as tt, WorkspaceSettings as u, SourceSpan as ua, AudioManual as ui, RedactionCreatedParams as un, WorkspaceAnalytics as uo, AuthenticatedProvider as ur, GdprArticle9Treatment as ut, WorkspaceWebhookCreated as v, TabularHint as va, BoundingBox as vi, WorkspaceMember as vn, WorkspaceUsageAnalytics as vo, FileServiceProvider as vr, LabelRef as vt, ThreadEventKind as w, TabularRefinement as wa, Contested as wi, InvitePreview as wn, InviteActivityParams as wo, PickedFile as wr, PciPanRender as wt, CreateWorkspaceComment as x, TabularMetadata as xa, CitedAttribution as xi, Direction as xn, ConnectionActivityParams as xo, LlmConfig as xr, LocalizedText as xt, WorkspaceWebhookPage as y, TabularLocation as ya, Calibration as yi, WorkspaceMemberPage as yn, ActivityPayload as yo, GcsCredentials as yr, LabelScope as yt, ScopeMetadata as z, TextPattern as za, ImageEntity as zi, ErrorResponse as zn, Account as zo, WorkspaceConnectionVerification as zr, WorkspacePolicy as zt };
|
|
23351
|
+
//# sourceMappingURL=index-DzEtj1r2.d.ts.map
|