@nvisy/sdk 0.52.0 → 0.53.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 +23 -1
- package/dist/{client-CSxuXX5e.d.ts → client-DywPcOzJ.d.ts} +104 -21
- package/dist/client-DywPcOzJ.d.ts.map +1 -0
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{error-Bc6Sg_y-.js → error-D_h2zq6T.js} +2 -2
- package/dist/{error-Bc6Sg_y-.js.map → error-D_h2zq6T.js.map} +1 -1
- package/dist/{errors-CcTfWeEE.d.ts → errors-aOivXE8A.d.ts} +2 -2
- package/dist/{errors-CcTfWeEE.d.ts.map → errors-aOivXE8A.d.ts.map} +1 -1
- package/dist/{index-DmLbi0Gi.d.ts → index-rc5Y8RNG.d.ts} +1772 -755
- package/dist/index-rc5Y8RNG.d.ts.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +8 -2
- 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-DFJfjW1b.js} +173 -35
- package/dist/services-DFJfjW1b.js.map +1 -0
- package/dist/standalone/index.d.ts +1 -1
- package/dist/standalone/index.js +1 -1
- package/dist/webhooks/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/client-CSxuXX5e.d.ts.map +0 -1
- package/dist/index-DmLbi0Gi.d.ts.map +0 -1
- package/dist/services-Bt15MerP.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,1242 @@ 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 an optional
|
|
3825
|
+
* `assignee`.
|
|
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 an optional
|
|
3968
|
+
* `assignee`.
|
|
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 an optional
|
|
4199
|
+
* `assignee`.
|
|
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 an optional
|
|
4326
|
+
* `assignee`.
|
|
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}/assign": {
|
|
4402
|
+
parameters: {
|
|
4403
|
+
query?: never;
|
|
4404
|
+
header?: never;
|
|
4405
|
+
path?: never;
|
|
4406
|
+
cookie?: never;
|
|
4407
|
+
};
|
|
4408
|
+
get?: never;
|
|
4409
|
+
/**
|
|
4410
|
+
* Assign a review
|
|
4411
|
+
* @description Assigns a review to a workspace member, or clears the assignee with a null `assignee`. Requires AssignReviews.
|
|
4412
|
+
*/
|
|
4413
|
+
put: {
|
|
4414
|
+
parameters: {
|
|
4415
|
+
query?: never;
|
|
4416
|
+
header?: never;
|
|
4417
|
+
path: {
|
|
4418
|
+
/** @description Workspace identifier. */
|
|
4419
|
+
workspaceId: string;
|
|
4420
|
+
/** @description Unique identifier of the review. */
|
|
4421
|
+
reviewId: string;
|
|
4422
|
+
};
|
|
4423
|
+
cookie?: never;
|
|
4424
|
+
};
|
|
4425
|
+
/** @description Request payload to assign or unassign a review. */
|
|
4426
|
+
requestBody: {
|
|
4427
|
+
content: {
|
|
4428
|
+
"application/json": components["schemas"]["AssignWorkspaceReview"];
|
|
4429
|
+
};
|
|
4430
|
+
};
|
|
4431
|
+
responses: {
|
|
4432
|
+
/**
|
|
4433
|
+
* @description Response type for a document's review.
|
|
4434
|
+
*
|
|
4435
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4436
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4437
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and an optional
|
|
4438
|
+
* `assignee`.
|
|
4439
|
+
*/
|
|
4440
|
+
200: {
|
|
4441
|
+
headers: {
|
|
4442
|
+
[name: string]: unknown;
|
|
4443
|
+
};
|
|
4444
|
+
content: {
|
|
4445
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
4446
|
+
};
|
|
4447
|
+
};
|
|
4448
|
+
/**
|
|
4449
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4450
|
+
* that [`Error`] renders to at the response boundary.
|
|
4451
|
+
*
|
|
4452
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4453
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4454
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4455
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4456
|
+
*
|
|
4457
|
+
* [`Error`]: crate::response::Error
|
|
4458
|
+
*/
|
|
4459
|
+
400: {
|
|
4460
|
+
headers: {
|
|
4461
|
+
[name: string]: unknown;
|
|
4462
|
+
};
|
|
4463
|
+
content: {
|
|
4464
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4465
|
+
};
|
|
4466
|
+
};
|
|
4467
|
+
/**
|
|
4468
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4469
|
+
* that [`Error`] renders to at the response boundary.
|
|
4470
|
+
*
|
|
4471
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4472
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4473
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4474
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4475
|
+
*
|
|
4476
|
+
* [`Error`]: crate::response::Error
|
|
4477
|
+
*/
|
|
4478
|
+
401: {
|
|
4479
|
+
headers: {
|
|
4480
|
+
[name: string]: unknown;
|
|
4481
|
+
};
|
|
4482
|
+
content: {
|
|
4483
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4484
|
+
};
|
|
4485
|
+
};
|
|
4486
|
+
/**
|
|
4487
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4488
|
+
* that [`Error`] renders to at the response boundary.
|
|
4489
|
+
*
|
|
4490
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4491
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4492
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4493
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4494
|
+
*
|
|
4495
|
+
* [`Error`]: crate::response::Error
|
|
4496
|
+
*/
|
|
4497
|
+
403: {
|
|
4498
|
+
headers: {
|
|
4499
|
+
[name: string]: unknown;
|
|
4500
|
+
};
|
|
4501
|
+
content: {
|
|
4502
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4503
|
+
};
|
|
4504
|
+
};
|
|
4505
|
+
/**
|
|
4506
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4507
|
+
* that [`Error`] renders to at the response boundary.
|
|
4508
|
+
*
|
|
4509
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4510
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4511
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4512
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4513
|
+
*
|
|
4514
|
+
* [`Error`]: crate::response::Error
|
|
4515
|
+
*/
|
|
4516
|
+
404: {
|
|
4517
|
+
headers: {
|
|
4518
|
+
[name: string]: unknown;
|
|
4519
|
+
};
|
|
4520
|
+
content: {
|
|
4521
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4522
|
+
};
|
|
4523
|
+
};
|
|
4524
|
+
/** @description Expected request with `Content-Type: application/json` */
|
|
4525
|
+
415: {
|
|
4526
|
+
headers: {
|
|
4527
|
+
[name: string]: unknown;
|
|
4528
|
+
};
|
|
4529
|
+
content: {
|
|
4530
|
+
"text/plain": string;
|
|
4531
|
+
};
|
|
4532
|
+
};
|
|
4533
|
+
/** @description Failed to deserialize the JSON body into the target type */
|
|
4534
|
+
422: {
|
|
4535
|
+
headers: {
|
|
4536
|
+
[name: string]: unknown;
|
|
4537
|
+
};
|
|
4538
|
+
content: {
|
|
4539
|
+
"text/plain": string;
|
|
4540
|
+
};
|
|
4541
|
+
};
|
|
4542
|
+
};
|
|
4543
|
+
};
|
|
4544
|
+
post?: never;
|
|
4545
|
+
delete?: never;
|
|
4546
|
+
options?: never;
|
|
4547
|
+
head?: never;
|
|
4548
|
+
patch?: never;
|
|
4549
|
+
trace?: never;
|
|
4550
|
+
};
|
|
4551
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}/detections/{detectionId}": {
|
|
4552
|
+
parameters: {
|
|
4553
|
+
query?: never;
|
|
4554
|
+
header?: never;
|
|
4555
|
+
path?: never;
|
|
4556
|
+
cookie?: never;
|
|
4557
|
+
};
|
|
4558
|
+
get?: never;
|
|
4559
|
+
put?: never;
|
|
4560
|
+
/**
|
|
4561
|
+
* Reference a detection from a review
|
|
4562
|
+
* @description Links a detection to a review (idempotent). Requires Review.
|
|
4563
|
+
*/
|
|
4564
|
+
post: {
|
|
4565
|
+
parameters: {
|
|
4566
|
+
query?: never;
|
|
4567
|
+
header?: never;
|
|
4568
|
+
path: {
|
|
4569
|
+
/** @description Workspace identifier. */
|
|
4570
|
+
workspaceId: string;
|
|
4571
|
+
/** @description Unique identifier of the detection to reference. */
|
|
4572
|
+
detectionId: string;
|
|
4573
|
+
/** @description Unique identifier of the review. */
|
|
4574
|
+
reviewId: string;
|
|
4575
|
+
};
|
|
4576
|
+
cookie?: never;
|
|
4577
|
+
};
|
|
4578
|
+
requestBody?: never;
|
|
4579
|
+
responses: {
|
|
4580
|
+
/**
|
|
4581
|
+
* @description Response type for a document's review.
|
|
4582
|
+
*
|
|
4583
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4584
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4585
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and an optional
|
|
4586
|
+
* `assignee`.
|
|
4587
|
+
*/
|
|
4588
|
+
200: {
|
|
4589
|
+
headers: {
|
|
4590
|
+
[name: string]: unknown;
|
|
4591
|
+
};
|
|
4592
|
+
content: {
|
|
4593
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
4594
|
+
};
|
|
4595
|
+
};
|
|
4596
|
+
/**
|
|
4597
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4598
|
+
* that [`Error`] renders to at the response boundary.
|
|
4599
|
+
*
|
|
4600
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4601
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4602
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4603
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4604
|
+
*
|
|
4605
|
+
* [`Error`]: crate::response::Error
|
|
4606
|
+
*/
|
|
4607
|
+
401: {
|
|
4608
|
+
headers: {
|
|
4609
|
+
[name: string]: unknown;
|
|
4610
|
+
};
|
|
4611
|
+
content: {
|
|
4612
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4613
|
+
};
|
|
4614
|
+
};
|
|
4615
|
+
/**
|
|
4616
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4617
|
+
* that [`Error`] renders to at the response boundary.
|
|
4618
|
+
*
|
|
4619
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4620
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4621
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4622
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4623
|
+
*
|
|
4624
|
+
* [`Error`]: crate::response::Error
|
|
4625
|
+
*/
|
|
4626
|
+
403: {
|
|
4627
|
+
headers: {
|
|
4628
|
+
[name: string]: unknown;
|
|
4629
|
+
};
|
|
4630
|
+
content: {
|
|
4631
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4632
|
+
};
|
|
4633
|
+
};
|
|
4634
|
+
/**
|
|
4635
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
4636
|
+
* that [`Error`] renders to at the response boundary.
|
|
4637
|
+
*
|
|
4638
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
4639
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
4640
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
4641
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
4642
|
+
*
|
|
4643
|
+
* [`Error`]: crate::response::Error
|
|
4644
|
+
*/
|
|
4645
|
+
404: {
|
|
4646
|
+
headers: {
|
|
4647
|
+
[name: string]: unknown;
|
|
4648
|
+
};
|
|
4649
|
+
content: {
|
|
4650
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4651
|
+
};
|
|
4652
|
+
};
|
|
4653
|
+
};
|
|
4654
|
+
};
|
|
4655
|
+
delete?: never;
|
|
4656
|
+
options?: never;
|
|
4657
|
+
head?: never;
|
|
4658
|
+
patch?: never;
|
|
4659
|
+
trace?: never;
|
|
4660
|
+
};
|
|
4661
|
+
"/workspaces/{workspaceId}/reviews/{reviewId}/redactions/{redactionId}": {
|
|
4662
|
+
parameters: {
|
|
4663
|
+
query?: never;
|
|
4664
|
+
header?: never;
|
|
4665
|
+
path?: never;
|
|
4666
|
+
cookie?: never;
|
|
4667
|
+
};
|
|
4668
|
+
get?: never;
|
|
4669
|
+
put?: never;
|
|
4670
|
+
/**
|
|
4671
|
+
* Reference a redaction from a review
|
|
4672
|
+
* @description Links a redaction to a review (idempotent). Requires Review.
|
|
3752
4673
|
*/
|
|
3753
|
-
|
|
4674
|
+
post: {
|
|
3754
4675
|
parameters: {
|
|
3755
4676
|
query?: never;
|
|
3756
4677
|
header?: never;
|
|
3757
4678
|
path: {
|
|
3758
4679
|
/** @description Workspace identifier. */
|
|
3759
4680
|
workspaceId: string;
|
|
3760
|
-
/** @description Unique identifier of the
|
|
3761
|
-
|
|
4681
|
+
/** @description Unique identifier of the redaction to reference. */
|
|
4682
|
+
redactionId: string;
|
|
4683
|
+
/** @description Unique identifier of the review. */
|
|
4684
|
+
reviewId: string;
|
|
3762
4685
|
};
|
|
3763
4686
|
cookie?: never;
|
|
3764
4687
|
};
|
|
3765
|
-
|
|
3766
|
-
requestBody: {
|
|
3767
|
-
content: {
|
|
3768
|
-
"application/json": components["schemas"]["UpdateWorkspaceComment"];
|
|
3769
|
-
};
|
|
3770
|
-
};
|
|
4688
|
+
requestBody?: never;
|
|
3771
4689
|
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
4690
|
/**
|
|
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).
|
|
4691
|
+
* @description Response type for a document's review.
|
|
3789
4692
|
*
|
|
3790
|
-
*
|
|
4693
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
4694
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
4695
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and an optional
|
|
4696
|
+
* `assignee`.
|
|
3791
4697
|
*/
|
|
3792
|
-
|
|
4698
|
+
200: {
|
|
3793
4699
|
headers: {
|
|
3794
4700
|
[name: string]: unknown;
|
|
3795
4701
|
};
|
|
3796
4702
|
content: {
|
|
3797
|
-
"application/json": components["schemas"]["
|
|
4703
|
+
"application/json": components["schemas"]["WorkspaceReview"];
|
|
3798
4704
|
};
|
|
3799
4705
|
};
|
|
3800
4706
|
/**
|
|
@@ -3854,26 +4760,12 @@ interface paths {
|
|
|
3854
4760
|
"application/json": components["schemas"]["ErrorResponse"];
|
|
3855
4761
|
};
|
|
3856
4762
|
};
|
|
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
4763
|
};
|
|
3876
4764
|
};
|
|
4765
|
+
delete?: never;
|
|
4766
|
+
options?: never;
|
|
4767
|
+
head?: never;
|
|
4768
|
+
patch?: never;
|
|
3877
4769
|
trace?: never;
|
|
3878
4770
|
};
|
|
3879
4771
|
"/workspaces/{workspaceId}/connections": {
|
|
@@ -14061,7 +14953,7 @@ interface components {
|
|
|
14061
14953
|
modality: "tabular";
|
|
14062
14954
|
})[];
|
|
14063
14955
|
};
|
|
14064
|
-
/** @description Request payload to assign or unassign a
|
|
14956
|
+
/** @description Request payload to assign or unassign a review. */
|
|
14065
14957
|
AssignWorkspaceReview: {
|
|
14066
14958
|
/**
|
|
14067
14959
|
* Format: uuid
|
|
@@ -14955,12 +15847,6 @@ interface components {
|
|
|
14955
15847
|
* @description Id of the comment the account was mentioned in.
|
|
14956
15848
|
*/
|
|
14957
15849
|
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
15850
|
/**
|
|
14965
15851
|
* Format: uuid
|
|
14966
15852
|
* @description Id of the thread the comment is in.
|
|
@@ -15308,6 +16194,11 @@ interface components {
|
|
|
15308
16194
|
*/
|
|
15309
16195
|
isActive?: boolean;
|
|
15310
16196
|
};
|
|
16197
|
+
/** @description Request payload to open a review on a document. */
|
|
16198
|
+
CreateWorkspaceReview: {
|
|
16199
|
+
/** @description Optional free-text label for the review's purpose/audience (1-255 chars). */
|
|
16200
|
+
purpose?: string;
|
|
16201
|
+
};
|
|
15311
16202
|
/** @description Request payload for creating a new workspace webhook. */
|
|
15312
16203
|
CreateWorkspaceWebhook: {
|
|
15313
16204
|
/** @description Detailed description of the webhook's purpose (max 500 characters). */
|
|
@@ -18017,6 +18908,15 @@ interface components {
|
|
|
18017
18908
|
*/
|
|
18018
18909
|
threadId: string;
|
|
18019
18910
|
};
|
|
18911
|
+
/**
|
|
18912
|
+
* @description The kind of an entry in a document review's activity log.
|
|
18913
|
+
*
|
|
18914
|
+
* Corresponds to the `REVIEW_EVENT_KIND` `PostgreSQL` enum. A review's timeline
|
|
18915
|
+
* records what was done to the review: artifacts referenced, the assignee
|
|
18916
|
+
* changing, and the verification lifecycle. Distinct from a thread's discussion
|
|
18917
|
+
* timeline ([`ThreadEventKind`](super::ThreadEventKind)).
|
|
18918
|
+
*/
|
|
18919
|
+
ReviewEventKind: "detection.linked" | "redaction.linked" | "assigned" | "unassigned" | "verified" | "reopened";
|
|
18020
18920
|
/**
|
|
18021
18921
|
* @description The review state of a file thread (a file thread is the review of its
|
|
18022
18922
|
* file). `None` on the thread means a workspace thread, which has no review.
|
|
@@ -19688,12 +20588,6 @@ interface components {
|
|
|
19688
20588
|
};
|
|
19689
20589
|
/** @description Params of a comment-thread activity (`thread.*`). */
|
|
19690
20590
|
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
20591
|
/**
|
|
19698
20592
|
* Format: uuid
|
|
19699
20593
|
* @description Id of the thread.
|
|
@@ -19707,12 +20601,6 @@ interface components {
|
|
|
19707
20601
|
* @description Id of the comment.
|
|
19708
20602
|
*/
|
|
19709
20603
|
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
20604
|
/**
|
|
19717
20605
|
* Format: uuid
|
|
19718
20606
|
* @description Id of the thread the comment is in.
|
|
@@ -19720,16 +20608,14 @@ interface components {
|
|
|
19720
20608
|
threadId: string;
|
|
19721
20609
|
};
|
|
19722
20610
|
/**
|
|
19723
|
-
* @description The kind of a non-message entry in a
|
|
20611
|
+
* @description The kind of a non-message entry in a discussion thread's timeline.
|
|
19724
20612
|
*
|
|
19725
20613
|
* 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).
|
|
20614
|
+
* interleaves comments (messages) with these events. A thread is a pure
|
|
20615
|
+
* discussion primitive, so this is only the discussion lifecycle; review
|
|
20616
|
+
* activity lives in [`ReviewEventKind`](super::ReviewEventKind).
|
|
19731
20617
|
*/
|
|
19732
|
-
ThreadEventKind: "thread.opened" | "thread.closed" | "thread.reopened" | "thread.renamed"
|
|
20618
|
+
ThreadEventKind: "thread.opened" | "thread.closed" | "thread.reopened" | "thread.renamed";
|
|
19733
20619
|
/**
|
|
19734
20620
|
* @description Half-open `[start, end)` stream interval, measured in microseconds.
|
|
19735
20621
|
*
|
|
@@ -21382,6 +22268,159 @@ interface components {
|
|
|
21382
22268
|
*/
|
|
21383
22269
|
total?: number;
|
|
21384
22270
|
};
|
|
22271
|
+
/**
|
|
22272
|
+
* @description Response type for a document's review.
|
|
22273
|
+
*
|
|
22274
|
+
* A review is an optional, purpose-scoped sign-off effort on a document (0..N per
|
|
22275
|
+
* document), opened explicitly. It owns a discussion thread (referenced by
|
|
22276
|
+
* `threadId`) and carries a `reviewStatus`, an optional `purpose`, and an optional
|
|
22277
|
+
* `assignee`.
|
|
22278
|
+
*/
|
|
22279
|
+
WorkspaceReview: {
|
|
22280
|
+
/** @description Account the review is assigned to; `None` when unassigned. */
|
|
22281
|
+
assignee?: components["schemas"]["AccountRef"];
|
|
22282
|
+
/**
|
|
22283
|
+
* Format: date-time
|
|
22284
|
+
* @description When the review was created.
|
|
22285
|
+
*/
|
|
22286
|
+
createdAt: string;
|
|
22287
|
+
/**
|
|
22288
|
+
* Format: uuid
|
|
22289
|
+
* @description Document under review.
|
|
22290
|
+
*/
|
|
22291
|
+
documentId: string;
|
|
22292
|
+
/**
|
|
22293
|
+
* Format: uuid
|
|
22294
|
+
* @description Unique identifier of the review.
|
|
22295
|
+
*/
|
|
22296
|
+
id: string;
|
|
22297
|
+
/** @description Optional purpose/audience label. */
|
|
22298
|
+
purpose?: string;
|
|
22299
|
+
/** @description The review's current status. */
|
|
22300
|
+
reviewStatus: components["schemas"]["ReviewStatus"];
|
|
22301
|
+
/**
|
|
22302
|
+
* Format: uuid
|
|
22303
|
+
* @description Discussion thread this review owns.
|
|
22304
|
+
*/
|
|
22305
|
+
threadId: string;
|
|
22306
|
+
/**
|
|
22307
|
+
* Format: date-time
|
|
22308
|
+
* @description When the review was last updated.
|
|
22309
|
+
*/
|
|
22310
|
+
updatedAt: string;
|
|
22311
|
+
};
|
|
22312
|
+
/** @description Path parameters addressing a review-to-detection link. */
|
|
22313
|
+
WorkspaceReviewDetectionPathParams: {
|
|
22314
|
+
/**
|
|
22315
|
+
* Format: uuid
|
|
22316
|
+
* @description Unique identifier of the detection to reference.
|
|
22317
|
+
*/
|
|
22318
|
+
detectionId: string;
|
|
22319
|
+
/**
|
|
22320
|
+
* Format: uuid
|
|
22321
|
+
* @description Unique identifier of the review.
|
|
22322
|
+
*/
|
|
22323
|
+
reviewId: string;
|
|
22324
|
+
};
|
|
22325
|
+
/**
|
|
22326
|
+
* @description One entry in a review's activity timeline (a link, assignment, verification,
|
|
22327
|
+
* or reopen).
|
|
22328
|
+
*/
|
|
22329
|
+
WorkspaceReviewEvent: {
|
|
22330
|
+
/** @description Account that performed the action; `None` if that account was removed. */
|
|
22331
|
+
actor?: components["schemas"]["AccountRef"];
|
|
22332
|
+
/**
|
|
22333
|
+
* Format: date-time
|
|
22334
|
+
* @description When the event happened.
|
|
22335
|
+
*/
|
|
22336
|
+
createdAt: string;
|
|
22337
|
+
/**
|
|
22338
|
+
* Format: uuid
|
|
22339
|
+
* @description Unique identifier of the event.
|
|
22340
|
+
*/
|
|
22341
|
+
id: string;
|
|
22342
|
+
/** @description What happened. */
|
|
22343
|
+
kind: components["schemas"]["ReviewEventKind"];
|
|
22344
|
+
/** @description Event-specific detail (the linked id, the assignee); `None` when none. */
|
|
22345
|
+
target?: unknown;
|
|
22346
|
+
};
|
|
22347
|
+
/**
|
|
22348
|
+
* @description Generic paginated response wrapper.
|
|
22349
|
+
*
|
|
22350
|
+
* Provides a consistent structure for all paginated API responses with
|
|
22351
|
+
* cursor-based pagination support. When `next_cursor` is present, there
|
|
22352
|
+
* are more items to fetch.
|
|
22353
|
+
*/
|
|
22354
|
+
WorkspaceReviewEventPage: {
|
|
22355
|
+
/** @description Items in this page. */
|
|
22356
|
+
items: components["schemas"]["WorkspaceReviewEvent"][];
|
|
22357
|
+
/** @description Cursor to fetch the next page. Present only when more items exist. */
|
|
22358
|
+
nextCursor?: string;
|
|
22359
|
+
/**
|
|
22360
|
+
* Format: int64
|
|
22361
|
+
* @description Total count of items matching the query (if requested).
|
|
22362
|
+
*/
|
|
22363
|
+
total?: number;
|
|
22364
|
+
};
|
|
22365
|
+
/**
|
|
22366
|
+
* @description Generic paginated response wrapper.
|
|
22367
|
+
*
|
|
22368
|
+
* Provides a consistent structure for all paginated API responses with
|
|
22369
|
+
* cursor-based pagination support. When `next_cursor` is present, there
|
|
22370
|
+
* are more items to fetch.
|
|
22371
|
+
*/
|
|
22372
|
+
WorkspaceReviewPage: {
|
|
22373
|
+
/** @description Items in this page. */
|
|
22374
|
+
items: components["schemas"]["WorkspaceReview"][];
|
|
22375
|
+
/** @description Cursor to fetch the next page. Present only when more items exist. */
|
|
22376
|
+
nextCursor?: string;
|
|
22377
|
+
/**
|
|
22378
|
+
* Format: int64
|
|
22379
|
+
* @description Total count of items matching the query (if requested).
|
|
22380
|
+
*/
|
|
22381
|
+
total?: number;
|
|
22382
|
+
};
|
|
22383
|
+
/** @description Path parameters addressing one review by its id. */
|
|
22384
|
+
WorkspaceReviewPathParams: {
|
|
22385
|
+
/**
|
|
22386
|
+
* Format: uuid
|
|
22387
|
+
* @description Unique identifier of the review.
|
|
22388
|
+
*/
|
|
22389
|
+
reviewId: string;
|
|
22390
|
+
};
|
|
22391
|
+
/** @description Path parameters addressing a review-to-redaction link. */
|
|
22392
|
+
WorkspaceReviewRedactionPathParams: {
|
|
22393
|
+
/**
|
|
22394
|
+
* Format: uuid
|
|
22395
|
+
* @description Unique identifier of the redaction to reference.
|
|
22396
|
+
*/
|
|
22397
|
+
redactionId: string;
|
|
22398
|
+
/**
|
|
22399
|
+
* Format: uuid
|
|
22400
|
+
* @description Unique identifier of the review.
|
|
22401
|
+
*/
|
|
22402
|
+
reviewId: string;
|
|
22403
|
+
};
|
|
22404
|
+
/**
|
|
22405
|
+
* @description Query parameters for listing a workspace's reviews (the review queue).
|
|
22406
|
+
*
|
|
22407
|
+
* Every field is an optional filter; unset fields impose no constraint. Accounts
|
|
22408
|
+
* are addressed by id.
|
|
22409
|
+
*/
|
|
22410
|
+
WorkspaceReviewsQuery: {
|
|
22411
|
+
/**
|
|
22412
|
+
* Format: uuid
|
|
22413
|
+
* @description Filter by the assigned reviewer (account id).
|
|
22414
|
+
*/
|
|
22415
|
+
assignee?: string;
|
|
22416
|
+
/**
|
|
22417
|
+
* Format: uuid
|
|
22418
|
+
* @description Filter to the reviews of a specific document.
|
|
22419
|
+
*/
|
|
22420
|
+
documentId?: string;
|
|
22421
|
+
/** @description Filter by review status. */
|
|
22422
|
+
reviewStatus?: components["schemas"]["ReviewStatus"];
|
|
22423
|
+
};
|
|
21385
22424
|
/**
|
|
21386
22425
|
* @description The role and permission level of a workspace member.
|
|
21387
22426
|
*
|
|
@@ -21486,20 +22525,11 @@ interface components {
|
|
|
21486
22525
|
status?: components["schemas"]["SyncStatus"];
|
|
21487
22526
|
};
|
|
21488
22527
|
/**
|
|
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.
|
|
22528
|
+
* @description Response type for a thread: a discussion with an author, an optional title, and
|
|
22529
|
+
* an open/closed lifecycle. Its stream is a [`WorkspaceThreadEntry`] timeline. A
|
|
22530
|
+
* document review (see the reviews endpoints) references a thread by its id.
|
|
21496
22531
|
*/
|
|
21497
22532
|
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
22533
|
/** @description Account that opened the thread. */
|
|
21504
22534
|
author: components["schemas"]["AccountRef"];
|
|
21505
22535
|
/** @description Whether the thread is closed. */
|
|
@@ -21516,21 +22546,11 @@ interface components {
|
|
|
21516
22546
|
createdAt: string;
|
|
21517
22547
|
/** @description The thread's title; `None` for an untitled thread. */
|
|
21518
22548
|
displayName?: string;
|
|
21519
|
-
/**
|
|
21520
|
-
* Format: uuid
|
|
21521
|
-
* @description Document this thread reviews; `None` for a workspace-level thread.
|
|
21522
|
-
*/
|
|
21523
|
-
documentId?: string;
|
|
21524
22549
|
/**
|
|
21525
22550
|
* Format: uuid
|
|
21526
22551
|
* @description Unique identifier of the thread.
|
|
21527
22552
|
*/
|
|
21528
22553
|
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
22554
|
/**
|
|
21535
22555
|
* Format: date-time
|
|
21536
22556
|
* @description When the thread was last updated.
|
|
@@ -21568,7 +22588,7 @@ interface components {
|
|
|
21568
22588
|
};
|
|
21569
22589
|
/**
|
|
21570
22590
|
* @description One non-message entry in a thread timeline (opened, closed, reopened,
|
|
21571
|
-
* renamed
|
|
22591
|
+
* renamed).
|
|
21572
22592
|
*/
|
|
21573
22593
|
WorkspaceThreadEvent: {
|
|
21574
22594
|
/** @description Account that performed the action; `None` if that account was removed. */
|
|
@@ -21621,11 +22641,6 @@ interface components {
|
|
|
21621
22641
|
* are addressed by id.
|
|
21622
22642
|
*/
|
|
21623
22643
|
WorkspaceThreadsQuery: {
|
|
21624
|
-
/**
|
|
21625
|
-
* Format: uuid
|
|
21626
|
-
* @description Filter document reviews by their assigned reviewer (account id).
|
|
21627
|
-
*/
|
|
21628
|
-
assignee?: string;
|
|
21629
22644
|
/**
|
|
21630
22645
|
* Format: uuid
|
|
21631
22646
|
* @description Filter by the thread's opening author (account id).
|
|
@@ -21633,13 +22648,6 @@ interface components {
|
|
|
21633
22648
|
author?: string;
|
|
21634
22649
|
/** @description Filter by open/closed state: `true` = closed only, `false` = open only. */
|
|
21635
22650
|
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
22651
|
};
|
|
21644
22652
|
/** @description Inference token usage across a workspace's detections. */
|
|
21645
22653
|
WorkspaceUsageAnalytics: {
|
|
@@ -21826,400 +22834,409 @@ interface components {
|
|
|
21826
22834
|
}
|
|
21827
22835
|
//#endregion
|
|
21828
22836
|
//#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$
|
|
22837
|
+
type Schemas$25 = components["schemas"];
|
|
22838
|
+
type Handle = Schemas$25["Handle"];
|
|
22839
|
+
type Account = Schemas$25["Account"];
|
|
22840
|
+
type PublicAccount = Schemas$25["PublicAccount"];
|
|
22841
|
+
type UpdateAccount = Schemas$25["UpdateAccount"];
|
|
22842
|
+
type AccountRef = Schemas$25["AccountRef"];
|
|
22843
|
+
type AccountIdentities = Schemas$25["AccountIdentities"];
|
|
22844
|
+
type AccountIdentity = Schemas$25["AccountIdentity"];
|
|
22845
|
+
type IdentityProvider = Schemas$25["IdentityProvider"];
|
|
22846
|
+
type SetPassword = Schemas$25["SetPassword"];
|
|
22847
|
+
type OidcStartResponse = Schemas$25["OidcStartResponse"];
|
|
21840
22848
|
//#endregion
|
|
21841
22849
|
//#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$
|
|
22850
|
+
type Schemas$24 = components["schemas"];
|
|
22851
|
+
type WorkspaceActivity = Schemas$24["WorkspaceActivity"];
|
|
22852
|
+
type WorkspaceActivityPage = Schemas$24["WorkspaceActivityPage"];
|
|
22853
|
+
type ActivityType = Schemas$24["ActivityType"];
|
|
22854
|
+
type WorkspaceActivityFilterQuery = Schemas$24["WorkspaceActivityFilterQuery"];
|
|
22855
|
+
type WorkspaceActivityExportOptions = Schemas$24["WorkspaceActivityExportOptions"];
|
|
22856
|
+
type ActivityPayload = Schemas$24["ActivityPayload"];
|
|
22857
|
+
type WorkspaceActivityParams = Schemas$24["WorkspaceActivityParams"];
|
|
22858
|
+
type MemberActivityParams = Schemas$24["MemberActivityParams"];
|
|
22859
|
+
type InviteActivityParams = Schemas$24["InviteActivityParams"];
|
|
22860
|
+
type ConnectionActivityParams = Schemas$24["ConnectionActivityParams"];
|
|
22861
|
+
type PipelineActivityParams = Schemas$24["PipelineActivityParams"];
|
|
22862
|
+
type DetectionActivityParams = Schemas$24["DetectionActivityParams"];
|
|
22863
|
+
type RedactionActivityParams = Schemas$24["RedactionActivityParams"];
|
|
22864
|
+
type PolicyActivityParams = Schemas$24["PolicyActivityParams"];
|
|
22865
|
+
type ProviderActivityParams = Schemas$24["ProviderActivityParams"];
|
|
22866
|
+
type DocumentActivityParams = Schemas$24["DocumentActivityParams"];
|
|
22867
|
+
type WebhookActivityParams = Schemas$24["WebhookActivityParams"];
|
|
22868
|
+
type ReviewActivityParams = Schemas$24["ReviewActivityParams"];
|
|
22869
|
+
type ThreadActivityParams = Schemas$24["ThreadActivityParams"];
|
|
22870
|
+
type ThreadCommentActivityParams = Schemas$24["ThreadCommentActivityParams"];
|
|
21863
22871
|
//#endregion
|
|
21864
22872
|
//#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$
|
|
22873
|
+
type Schemas$23 = components["schemas"];
|
|
22874
|
+
type WorkspaceAnalytics = Schemas$23["WorkspaceAnalytics"];
|
|
22875
|
+
type WorkspaceStorageAnalytics = Schemas$23["WorkspaceStorageAnalytics"];
|
|
22876
|
+
type WorkspaceStorageKindEntry = Schemas$23["WorkspaceStorageKindEntry"];
|
|
22877
|
+
type WorkspaceDetectionAnalytics = Schemas$23["WorkspaceDetectionAnalytics"];
|
|
22878
|
+
type WorkspaceDetectionStatusEntry = Schemas$23["WorkspaceDetectionStatusEntry"];
|
|
22879
|
+
type WorkspaceUsageAnalytics = Schemas$23["WorkspaceUsageAnalytics"];
|
|
22880
|
+
type ModelUsage = Schemas$23["ModelUsage"];
|
|
22881
|
+
type WorkspaceModelUsageEntry = Schemas$23["WorkspaceModelUsageEntry"];
|
|
22882
|
+
type Usage = Schemas$23["Usage"];
|
|
22883
|
+
type UsageReport = Schemas$23["UsageReport"];
|
|
22884
|
+
type TokenCounts = Schemas$23["TokenCounts"];
|
|
22885
|
+
type RecognizerId = Schemas$23["RecognizerId"];
|
|
22886
|
+
type WorkspaceDetectionTimeSeries = Schemas$23["WorkspaceDetectionTimeSeries"];
|
|
22887
|
+
type WorkspaceDetectionDayEntry = Schemas$23["WorkspaceDetectionDayEntry"];
|
|
21880
22888
|
//#endregion
|
|
21881
22889
|
//#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$
|
|
22890
|
+
type Schemas$22 = components["schemas"];
|
|
22891
|
+
type AccountApiToken = Schemas$22["AccountApiToken"];
|
|
22892
|
+
type AccountApiTokenWithJwt = Schemas$22["AccountApiTokenWithJwt"];
|
|
22893
|
+
type ApiTokenType = Schemas$22["ApiTokenType"];
|
|
22894
|
+
type CreateAccountApiToken = Schemas$22["CreateAccountApiToken"];
|
|
22895
|
+
type UpdateAccountApiToken = Schemas$22["UpdateAccountApiToken"];
|
|
22896
|
+
type TokenExpiration = Schemas$22["TokenExpiration"];
|
|
22897
|
+
type AccountApiTokenPage = Schemas$22["AccountApiTokenPage"];
|
|
21890
22898
|
//#endregion
|
|
21891
22899
|
//#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$
|
|
22900
|
+
type Schemas$21 = components["schemas"];
|
|
22901
|
+
type ArtifactSet = Schemas$21["ArtifactSet"];
|
|
22902
|
+
type Layout = Schemas$21["Layout"];
|
|
22903
|
+
type LayoutBlock = Schemas$21["LayoutBlock"];
|
|
22904
|
+
type LayoutWord = Schemas$21["LayoutWord"];
|
|
22905
|
+
type Transcription = Schemas$21["Transcription"];
|
|
22906
|
+
type TranscriptSegment = Schemas$21["TranscriptSegment"];
|
|
22907
|
+
type TranscriptWord = Schemas$21["TranscriptWord"];
|
|
22908
|
+
type Tokens = Schemas$21["Tokens"];
|
|
22909
|
+
type Token = Schemas$21["Token"];
|
|
21902
22910
|
//#endregion
|
|
21903
22911
|
//#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$
|
|
22912
|
+
type Schemas$20 = components["schemas"];
|
|
22913
|
+
type Audit = Schemas$20["Audit"];
|
|
22914
|
+
type DocumentContext = Schemas$20["DocumentContext"];
|
|
22915
|
+
type CodecParams = Schemas$20["CodecParams"];
|
|
22916
|
+
type EntityCoRef = Schemas$20["EntityCoRef"];
|
|
22917
|
+
type Report = Schemas$20["Report"];
|
|
22918
|
+
type Recognition = Schemas$20["Recognition"];
|
|
22919
|
+
type EditSet = Schemas$20["EditSet"];
|
|
22920
|
+
type RasterMode = Schemas$20["RasterMode"];
|
|
22921
|
+
type Dpi = Schemas$20["Dpi"];
|
|
22922
|
+
type Redaction = Schemas$20["Redaction"];
|
|
22923
|
+
type Selection = Schemas$20["Selection"];
|
|
22924
|
+
type Suppress = Schemas$20["Suppress"];
|
|
22925
|
+
type ManualIntent = Schemas$20["ManualIntent"];
|
|
22926
|
+
type LeakProfile = Schemas$20["LeakProfile"];
|
|
22927
|
+
type RuleMatch = Schemas$20["RuleMatch"];
|
|
22928
|
+
type Attribution = Schemas$20["Attribution"];
|
|
22929
|
+
type CitedAttribution = Schemas$20["CitedAttribution"];
|
|
22930
|
+
type FreeformAttribution = Schemas$20["FreeformAttribution"];
|
|
22931
|
+
type ModelEvent = Schemas$20["ModelEvent"];
|
|
22932
|
+
type PatternEvent = Schemas$20["PatternEvent"];
|
|
22933
|
+
type Conflict = Schemas$20["Conflict"];
|
|
22934
|
+
type Contested = Schemas$20["Contested"];
|
|
22935
|
+
type Deduplication = Schemas$20["Deduplication"];
|
|
22936
|
+
type Calibration = Schemas$20["Calibration"];
|
|
22937
|
+
type OperatorId = Schemas$20["OperatorId"];
|
|
22938
|
+
type AuditHash = Schemas$20["AuditHash"];
|
|
22939
|
+
type Category = Schemas$20["Category"];
|
|
21932
22940
|
/** 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$
|
|
22941
|
+
type RangeOfUint = Schemas$20["Range_of_uint"];
|
|
22942
|
+
type SourceRef = Schemas$20["SourceRef"];
|
|
22943
|
+
type BoundingBox = Schemas$20["BoundingBox"];
|
|
22944
|
+
type Point = Schemas$20["Point"];
|
|
22945
|
+
type Polygon = Schemas$20["Polygon"];
|
|
22946
|
+
type Dimensions = Schemas$20["Dimensions"];
|
|
22947
|
+
type TimeSpan = Schemas$20["TimeSpan"];
|
|
22948
|
+
type TextEntity = Schemas$20["TextEntity"];
|
|
22949
|
+
type TextAuditEvent = Schemas$20["TextAuditEvent"];
|
|
22950
|
+
type TextAuditKind = Schemas$20["TextAuditKind"];
|
|
22951
|
+
type TextAuditLog = Schemas$20["TextAuditLog"];
|
|
22952
|
+
type TextHint = Schemas$20["TextHint"];
|
|
22953
|
+
type TextLocation = Schemas$20["TextLocation"];
|
|
22954
|
+
type TextCoord = Schemas$20["TextCoord"];
|
|
22955
|
+
type DecodedSpan = Schemas$20["DecodedSpan"];
|
|
22956
|
+
type SourceSpan = Schemas$20["SourceSpan"];
|
|
22957
|
+
type TextData = Schemas$20["TextData"];
|
|
22958
|
+
type TextModel = Schemas$20["TextModel"];
|
|
22959
|
+
type TextPattern = Schemas$20["TextPattern"];
|
|
22960
|
+
type TextManual = Schemas$20["TextManual"];
|
|
22961
|
+
type TextEdit = Schemas$20["TextEdit"];
|
|
22962
|
+
type TextAdd = Schemas$20["TextAdd"];
|
|
22963
|
+
type TextRefinement = Schemas$20["TextRefinement"];
|
|
22964
|
+
type TextRetag = Schemas$20["TextRetag"];
|
|
22965
|
+
type ImageEntity = Schemas$20["ImageEntity"];
|
|
22966
|
+
type ImageAuditEvent = Schemas$20["ImageAuditEvent"];
|
|
22967
|
+
type ImageAuditKind = Schemas$20["ImageAuditKind"];
|
|
22968
|
+
type ImageAuditLog = Schemas$20["ImageAuditLog"];
|
|
22969
|
+
type ImageHint = Schemas$20["ImageHint"];
|
|
22970
|
+
type ImageLocation = Schemas$20["ImageLocation"];
|
|
22971
|
+
type ImageData = Schemas$20["ImageData"];
|
|
22972
|
+
type ImageModel = Schemas$20["ImageModel"];
|
|
22973
|
+
type ImagePattern = Schemas$20["ImagePattern"];
|
|
22974
|
+
type ImageManual = Schemas$20["ImageManual"];
|
|
22975
|
+
type ImageEdit = Schemas$20["ImageEdit"];
|
|
22976
|
+
type ImageAdd = Schemas$20["ImageAdd"];
|
|
22977
|
+
type ImageRefinement = Schemas$20["ImageRefinement"];
|
|
22978
|
+
type ImageRetag = Schemas$20["ImageRetag"];
|
|
22979
|
+
type AudioEntity = Schemas$20["AudioEntity"];
|
|
22980
|
+
type AudioAuditEvent = Schemas$20["AudioAuditEvent"];
|
|
22981
|
+
type AudioAuditKind = Schemas$20["AudioAuditKind"];
|
|
22982
|
+
type AudioAuditLog = Schemas$20["AudioAuditLog"];
|
|
22983
|
+
type AudioHint = Schemas$20["AudioHint"];
|
|
22984
|
+
type AudioLocation = Schemas$20["AudioLocation"];
|
|
22985
|
+
type AudioData = Schemas$20["AudioData"];
|
|
22986
|
+
type AudioModel = Schemas$20["AudioModel"];
|
|
22987
|
+
type AudioPattern = Schemas$20["AudioPattern"];
|
|
22988
|
+
type AudioManual = Schemas$20["AudioManual"];
|
|
22989
|
+
type AudioEdit = Schemas$20["AudioEdit"];
|
|
22990
|
+
type AudioAdd = Schemas$20["AudioAdd"];
|
|
22991
|
+
type AudioRefinement = Schemas$20["AudioRefinement"];
|
|
22992
|
+
type AudioRetag = Schemas$20["AudioRetag"];
|
|
22993
|
+
type TabularEntity = Schemas$20["TabularEntity"];
|
|
22994
|
+
type TabularAuditEvent = Schemas$20["TabularAuditEvent"];
|
|
22995
|
+
type TabularAuditKind = Schemas$20["TabularAuditKind"];
|
|
22996
|
+
type TabularAuditLog = Schemas$20["TabularAuditLog"];
|
|
22997
|
+
type TabularHint = Schemas$20["TabularHint"];
|
|
22998
|
+
type TabularLocation = Schemas$20["TabularLocation"];
|
|
22999
|
+
type TabularModel = Schemas$20["TabularModel"];
|
|
23000
|
+
type TabularPattern = Schemas$20["TabularPattern"];
|
|
23001
|
+
type TabularManual = Schemas$20["TabularManual"];
|
|
23002
|
+
type TabularEdit = Schemas$20["TabularEdit"];
|
|
23003
|
+
type TabularAdd = Schemas$20["TabularAdd"];
|
|
23004
|
+
type TabularRefinement = Schemas$20["TabularRefinement"];
|
|
23005
|
+
type TabularRetag = Schemas$20["TabularRetag"];
|
|
23006
|
+
type MetadataEvent = Schemas$20["MetadataEvent"];
|
|
23007
|
+
type AudioMetadata = Schemas$20["AudioMetadata"];
|
|
23008
|
+
type ImageMetadata = Schemas$20["ImageMetadata"];
|
|
23009
|
+
type TabularMetadata = Schemas$20["TabularMetadata"];
|
|
23010
|
+
type TextMetadata = Schemas$20["TextMetadata"];
|
|
22003
23011
|
//#endregion
|
|
22004
23012
|
//#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$
|
|
23013
|
+
type Schemas$19 = components["schemas"];
|
|
23014
|
+
type Login = Schemas$19["Login"];
|
|
23015
|
+
type Signup = Schemas$19["Signup"];
|
|
23016
|
+
type DesktopTokenRequest = Schemas$19["DesktopTokenRequest"];
|
|
23017
|
+
type AccountDesktopToken = Schemas$19["AccountDesktopToken"];
|
|
22010
23018
|
//#endregion
|
|
22011
23019
|
//#region src/datatypes/capabilities.d.ts
|
|
22012
|
-
type Schemas$
|
|
23020
|
+
type Schemas$18 = components["schemas"];
|
|
22013
23021
|
/** Registry of the deployment's built-in labels, keyed by id. */
|
|
22014
|
-
type LabelCatalog = Schemas$
|
|
23022
|
+
type LabelCatalog = Schemas$18["LabelCatalog"];
|
|
22015
23023
|
/** The engine's registered recognizers, grouped into NER and LLM. */
|
|
22016
|
-
type RecognizerCatalog = Schemas$
|
|
22017
|
-
type RegisteredRecognizer = Schemas$
|
|
23024
|
+
type RecognizerCatalog = Schemas$18["RecognizerCatalog"];
|
|
23025
|
+
type RegisteredRecognizer = Schemas$18["RegisteredRecognizer"];
|
|
22018
23026
|
/** Which connector families and providers this deployment can create. */
|
|
22019
|
-
type ConnectorCapabilities = Schemas$
|
|
22020
|
-
type FileProviders = Schemas$
|
|
23027
|
+
type ConnectorCapabilities = Schemas$18["ConnectorCapabilities"];
|
|
23028
|
+
type FileProviders = Schemas$18["FileProviders"];
|
|
22021
23029
|
/** Which authentication methods this deployment offers. */
|
|
22022
|
-
type AuthCapabilities = Schemas$
|
|
23030
|
+
type AuthCapabilities = Schemas$18["AuthCapabilities"];
|
|
22023
23031
|
//#endregion
|
|
22024
23032
|
//#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$
|
|
23033
|
+
type Schemas$17 = components["schemas"];
|
|
23034
|
+
type ConnectionId = Schemas$17["ConnectionId"];
|
|
23035
|
+
type WorkspaceConnection = Schemas$17["WorkspaceConnection"];
|
|
23036
|
+
type ConnectionType = Schemas$17["ConnectionType"];
|
|
23037
|
+
type CreateWorkspaceConnection = Schemas$17["CreateWorkspaceConnection"];
|
|
23038
|
+
type UpdateWorkspaceConnection = Schemas$17["UpdateWorkspaceConnection"];
|
|
23039
|
+
type WorkspaceConnectionsQuery = Schemas$17["WorkspaceConnectionsQuery"];
|
|
23040
|
+
type WorkspaceConnectionPage = Schemas$17["WorkspaceConnectionPage"];
|
|
23041
|
+
type WorkspaceConnectionSync = Schemas$17["WorkspaceConnectionSync"];
|
|
23042
|
+
type WorkspaceConnectionSyncPage = Schemas$17["WorkspaceConnectionSyncPage"];
|
|
23043
|
+
type WorkspaceConnectionVerification = Schemas$17["WorkspaceConnectionVerification"];
|
|
23044
|
+
type ImportWorkspaceFiles = Schemas$17["ImportWorkspaceFiles"];
|
|
23045
|
+
type PickedFile = Schemas$17["PickedFile"];
|
|
23046
|
+
type ExportWorkspaceFiles = Schemas$17["ExportWorkspaceFiles"];
|
|
23047
|
+
type WorkspacePickerTokenRequest = Schemas$17["WorkspacePickerTokenRequest"];
|
|
23048
|
+
type WorkspacePickerToken = Schemas$17["WorkspacePickerToken"];
|
|
23049
|
+
type SyncMode = Schemas$17["SyncMode"];
|
|
23050
|
+
type SyncStatus = Schemas$17["SyncStatus"];
|
|
23051
|
+
type SyncTriggerType = Schemas$17["SyncTriggerType"];
|
|
23052
|
+
type SyncDeletionPolicy = Schemas$17["SyncDeletionPolicy"];
|
|
23053
|
+
type ConnectionConfig = Schemas$17["ConnectionConfig"];
|
|
23054
|
+
type StorageConfig = Schemas$17["StorageConfig"];
|
|
23055
|
+
type S3Credentials = Schemas$17["S3Credentials"];
|
|
23056
|
+
type AzureCredentials = Schemas$17["AzureCredentials"];
|
|
23057
|
+
type GcsCredentials = Schemas$17["GcsCredentials"];
|
|
23058
|
+
type LlmConfig = Schemas$17["LlmConfig"];
|
|
23059
|
+
type AuthenticatedProvider = Schemas$17["AuthenticatedProvider"];
|
|
23060
|
+
type UnauthenticatedProvider = Schemas$17["UnauthenticatedProvider"];
|
|
23061
|
+
type FileServiceProvider = Schemas$17["FileServiceProvider"];
|
|
23062
|
+
type FileServiceConfig = Schemas$17["FileServiceConfig"];
|
|
23063
|
+
type OAuthTokens = Schemas$17["OAuthTokens"];
|
|
23064
|
+
type StartFileServiceOAuth = Schemas$17["StartFileServiceOAuth"];
|
|
23065
|
+
type OAuthStartResponse = Schemas$17["OAuthStartResponse"];
|
|
23066
|
+
type WorkspaceSyncSchedule = Schemas$17["WorkspaceSyncSchedule"];
|
|
23067
|
+
type SyncScheduleInput = Schemas$17["SyncScheduleInput"];
|
|
22060
23068
|
//#endregion
|
|
22061
23069
|
//#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$
|
|
23070
|
+
type Schemas$16 = components["schemas"];
|
|
23071
|
+
type DetectionId = Schemas$16["DetectionId"];
|
|
23072
|
+
type WorkspaceDetection = Schemas$16["WorkspaceDetection"];
|
|
23073
|
+
type DetectionMetadata = Schemas$16["DetectionMetadata"];
|
|
23074
|
+
type CreateWorkspaceDetection = Schemas$16["CreateWorkspaceDetection"];
|
|
23075
|
+
type CreateAdhocWorkspaceDetection = Schemas$16["CreateAdhocWorkspaceDetection"];
|
|
23076
|
+
type DetectionStatus = Schemas$16["DetectionStatus"];
|
|
23077
|
+
type WorkspaceDetectionPage = Schemas$16["WorkspaceDetectionPage"];
|
|
23078
|
+
type WorkspaceDetectionsQuery = Schemas$16["WorkspaceDetectionsQuery"];
|
|
23079
|
+
type WorkspacePipelineDetectionsQuery = Schemas$16["WorkspacePipelineDetectionsQuery"];
|
|
23080
|
+
type DetectionStatusEvent = Schemas$16["DetectionStatusEvent"];
|
|
23081
|
+
type RedactionId = Schemas$16["RedactionId"];
|
|
23082
|
+
type RedactWorkspaceDetection = Schemas$16["RedactWorkspaceDetection"];
|
|
23083
|
+
type WorkspaceRedactionResult = Schemas$16["WorkspaceRedactionResult"];
|
|
23084
|
+
type WorkspaceRedactionResultPage = Schemas$16["WorkspaceRedactionResultPage"];
|
|
22077
23085
|
//#endregion
|
|
22078
23086
|
//#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"];
|
|
23087
|
+
type Schemas$15 = components["schemas"];
|
|
23088
|
+
type WorkspaceDocument = Schemas$15["WorkspaceDocument"];
|
|
23089
|
+
type UpdateWorkspaceDocument = Schemas$15["UpdateWorkspaceDocument"];
|
|
23090
|
+
type DocumentKind = Schemas$15["DocumentKind"];
|
|
23091
|
+
type DocumentHash = Schemas$15["DocumentHash"];
|
|
23092
|
+
type FormatToken = Schemas$15["FormatToken"];
|
|
23093
|
+
type ModalityToken = Schemas$15["ModalityToken"];
|
|
23094
|
+
type ListWorkspaceDocuments = Schemas$15["ListWorkspaceDocuments"];
|
|
23095
|
+
type WorkspaceDocumentPage = Schemas$15["WorkspaceDocumentPage"];
|
|
23096
|
+
type DeleteWorkspaceDocuments = Schemas$15["DeleteWorkspaceDocuments"];
|
|
23097
|
+
type WorkspaceDeletedDocuments = Schemas$15["WorkspaceDeletedDocuments"];
|
|
22092
23098
|
//#endregion
|
|
22093
23099
|
//#region src/datatypes/error.d.ts
|
|
22094
|
-
type Schemas$
|
|
22095
|
-
type ErrorResponse = Schemas$
|
|
23100
|
+
type Schemas$14 = components["schemas"];
|
|
23101
|
+
type ErrorResponse = Schemas$14["ErrorResponse"];
|
|
22096
23102
|
//#endregion
|
|
22097
23103
|
//#region src/datatypes/export.d.ts
|
|
22098
|
-
type Schemas$
|
|
22099
|
-
type ExportFormat = Schemas$
|
|
22100
|
-
type ExportQuery = Schemas$
|
|
22101
|
-
type DateWindow = Schemas$
|
|
23104
|
+
type Schemas$13 = components["schemas"];
|
|
23105
|
+
type ExportFormat = Schemas$13["ExportFormat"];
|
|
23106
|
+
type ExportQuery = Schemas$13["ExportQuery"];
|
|
23107
|
+
type DateWindow = Schemas$13["DateWindow"];
|
|
22102
23108
|
//#endregion
|
|
22103
23109
|
//#region src/datatypes/health.d.ts
|
|
22104
|
-
type Schemas$
|
|
22105
|
-
type Health = Schemas$
|
|
22106
|
-
type HealthStatus = Schemas$
|
|
22107
|
-
type ComponentHealth = Schemas$
|
|
23110
|
+
type Schemas$12 = components["schemas"];
|
|
23111
|
+
type Health = Schemas$12["Health"];
|
|
23112
|
+
type HealthStatus = Schemas$12["HealthStatus"];
|
|
23113
|
+
type ComponentHealth = Schemas$12["ComponentHealth"];
|
|
22108
23114
|
//#endregion
|
|
22109
23115
|
//#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$
|
|
23116
|
+
type Schemas$11 = components["schemas"];
|
|
23117
|
+
type WorkspaceInvite = Schemas$11["WorkspaceInvite"];
|
|
23118
|
+
type WorkspaceInviteSent = Schemas$11["WorkspaceInviteSent"];
|
|
23119
|
+
type CreateWorkspaceInvite = Schemas$11["CreateWorkspaceInvite"];
|
|
23120
|
+
type ReplyWorkspaceInvite = Schemas$11["ReplyWorkspaceInvite"];
|
|
23121
|
+
type GenerateWorkspaceInviteCode = Schemas$11["GenerateWorkspaceInviteCode"];
|
|
23122
|
+
type WorkspaceInviteCode = Schemas$11["WorkspaceInviteCode"];
|
|
23123
|
+
type InviteStatus = Schemas$11["InviteStatus"];
|
|
23124
|
+
type InviteExpiration = Schemas$11["InviteExpiration"];
|
|
23125
|
+
type ListWorkspaceInvites = Schemas$11["ListWorkspaceInvites"];
|
|
23126
|
+
type InviteSortField = Schemas$11["InviteSortField"];
|
|
23127
|
+
type Direction = Schemas$11["Direction"];
|
|
23128
|
+
type InvitePreview = Schemas$11["InvitePreview"];
|
|
23129
|
+
type WorkspaceInvitePage = Schemas$11["WorkspaceInvitePage"];
|
|
22124
23130
|
//#endregion
|
|
22125
23131
|
//#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$
|
|
23132
|
+
type Schemas$10 = components["schemas"];
|
|
23133
|
+
type WorkspaceMember = Schemas$10["WorkspaceMember"];
|
|
23134
|
+
type UpdateWorkspaceMember = Schemas$10["UpdateWorkspaceMember"];
|
|
23135
|
+
type ListWorkspaceMembers = Schemas$10["ListWorkspaceMembers"];
|
|
23136
|
+
type MemberSortField = Schemas$10["MemberSortField"];
|
|
23137
|
+
type WorkspaceMemberPage = Schemas$10["WorkspaceMemberPage"];
|
|
22132
23138
|
//#endregion
|
|
22133
23139
|
//#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$
|
|
23140
|
+
type Schemas$9 = components["schemas"];
|
|
23141
|
+
type AccountNotification = Schemas$9["AccountNotification"];
|
|
23142
|
+
type NotificationEvent = Schemas$9["NotificationEvent"];
|
|
23143
|
+
type WorkspaceNotificationSettings = Schemas$9["WorkspaceNotificationSettings"];
|
|
23144
|
+
type UpdateWorkspaceNotificationSettings = Schemas$9["UpdateWorkspaceNotificationSettings"];
|
|
23145
|
+
type AccountUnreadStatus = Schemas$9["AccountUnreadStatus"];
|
|
23146
|
+
type AccountNotificationPage = Schemas$9["AccountNotificationPage"];
|
|
23147
|
+
type AccountMarkedReadStatus = Schemas$9["AccountMarkedReadStatus"];
|
|
23148
|
+
type UnreadCountEvent = Schemas$9["UnreadCountEvent"];
|
|
23149
|
+
type NotificationPayload = Schemas$9["NotificationPayload"];
|
|
23150
|
+
type MemberJoinedParams = Schemas$9["MemberJoinedParams"];
|
|
23151
|
+
type ConnectionSyncCompletedParams = Schemas$9["ConnectionSyncCompletedParams"];
|
|
23152
|
+
type ConnectionSyncFailedParams = Schemas$9["ConnectionSyncFailedParams"];
|
|
23153
|
+
type DetectionCompletedParams = Schemas$9["DetectionCompletedParams"];
|
|
23154
|
+
type DetectionFailedParams = Schemas$9["DetectionFailedParams"];
|
|
23155
|
+
type RedactionCreatedParams = Schemas$9["RedactionCreatedParams"];
|
|
23156
|
+
type ReviewAssignedParams = Schemas$9["ReviewAssignedParams"];
|
|
23157
|
+
type CommentMentionedParams = Schemas$9["CommentMentionedParams"];
|
|
22152
23158
|
//#endregion
|
|
22153
23159
|
//#region src/datatypes/pagination.d.ts
|
|
22154
|
-
type Schemas$
|
|
22155
|
-
type CursorPagination = Schemas$
|
|
23160
|
+
type Schemas$8 = components["schemas"];
|
|
23161
|
+
type CursorPagination = Schemas$8["CursorPagination"];
|
|
22156
23162
|
//#endregion
|
|
22157
23163
|
//#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$
|
|
23164
|
+
type Schemas$7 = components["schemas"];
|
|
23165
|
+
type WorkspacePipeline = Schemas$7["WorkspacePipeline"];
|
|
23166
|
+
type CreateWorkspacePipeline = Schemas$7["CreateWorkspacePipeline"];
|
|
23167
|
+
type UpdateWorkspacePipeline = Schemas$7["UpdateWorkspacePipeline"];
|
|
23168
|
+
type PipelineDefinition = Schemas$7["PipelineDefinition"];
|
|
23169
|
+
type WorkspacePipelineFilter = Schemas$7["WorkspacePipelineFilter"];
|
|
23170
|
+
type PipelineStatus = Schemas$7["PipelineStatus"];
|
|
23171
|
+
type PipelineTriggerType = Schemas$7["PipelineTriggerType"];
|
|
23172
|
+
type WorkspacePipelineSummary = Schemas$7["WorkspacePipelineSummary"];
|
|
23173
|
+
type WorkspacePipelineSummaryPage = Schemas$7["WorkspacePipelineSummaryPage"];
|
|
22168
23174
|
//#endregion
|
|
22169
23175
|
//#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$
|
|
23176
|
+
type Schemas$6 = components["schemas"];
|
|
23177
|
+
type WorkspacePolicy = Schemas$6["WorkspacePolicy"];
|
|
23178
|
+
type Policy = Schemas$6["Policy"];
|
|
23179
|
+
type PolicyKind = Schemas$6["PolicyKind"];
|
|
23180
|
+
type WorkspacePolicySummary = Schemas$6["WorkspacePolicySummary"];
|
|
23181
|
+
type WorkspacePolicySummaryPage = Schemas$6["WorkspacePolicySummaryPage"];
|
|
23182
|
+
type WorkspacePoliciesQuery = Schemas$6["WorkspacePoliciesQuery"];
|
|
23183
|
+
type PolicyDraft = Schemas$6["PolicyDraft"];
|
|
23184
|
+
type CreateWorkspacePolicy = Schemas$6["CreateWorkspacePolicy"];
|
|
23185
|
+
type UpdateWorkspacePolicy = Schemas$6["UpdateWorkspacePolicy"];
|
|
23186
|
+
type PolicyRule = Schemas$6["PolicyRule"];
|
|
23187
|
+
type CustomMatcher = Schemas$6["CustomMatcher"];
|
|
23188
|
+
type PolicyTemplate = Schemas$6["PolicyTemplate"];
|
|
23189
|
+
type TemplateOrigin = Schemas$6["TemplateOrigin"];
|
|
23190
|
+
type HipaaDeidMethod = Schemas$6["HipaaDeidMethod"];
|
|
23191
|
+
type HipaaAccountNumbers = Schemas$6["HipaaAccountNumbers"];
|
|
23192
|
+
type GdprArticle9Treatment = Schemas$6["GdprArticle9Treatment"];
|
|
23193
|
+
type GdprSensitiveScope = Schemas$6["GdprSensitiveScope"];
|
|
23194
|
+
type PciDssPart = Schemas$6["PciDssPart"];
|
|
23195
|
+
type PciPanRender = Schemas$6["PciPanRender"];
|
|
23196
|
+
type Predicate = Schemas$6["Predicate"];
|
|
23197
|
+
type ModalityRedactions = Schemas$6["ModalityRedactions"];
|
|
23198
|
+
type TextRedaction = Schemas$6["TextRedaction"];
|
|
23199
|
+
type ImageRedaction = Schemas$6["ImageRedaction"];
|
|
23200
|
+
type AudioRedaction = Schemas$6["AudioRedaction"];
|
|
23201
|
+
type TabularRedaction = Schemas$6["TabularRedaction"];
|
|
23202
|
+
type LabelScope = Schemas$6["LabelScope"];
|
|
23203
|
+
type LabelEntry = Schemas$6["LabelEntry"];
|
|
23204
|
+
type LabelLocale = Schemas$6["LabelLocale"];
|
|
23205
|
+
type Label = Schemas$6["Label"];
|
|
23206
|
+
type LabelRef = Schemas$6["LabelRef"];
|
|
23207
|
+
type LocalizedText = Schemas$6["LocalizedText"];
|
|
23208
|
+
type Color = Schemas$6["Color"];
|
|
23209
|
+
type Waveform = Schemas$6["Waveform"];
|
|
23210
|
+
type ClampBucket = Schemas$6["ClampBucket"];
|
|
23211
|
+
type ConfidenceThreshold = Schemas$6["ConfidenceThreshold"];
|
|
23212
|
+
type DateStyle = Schemas$6["DateStyle"];
|
|
23213
|
+
type DateGranularity = Schemas$6["DateGranularity"];
|
|
23214
|
+
type LanguageTag = Schemas$6["LanguageTag"];
|
|
23215
|
+
type Sha2Algorithm = Schemas$6["Sha2Algorithm"];
|
|
23216
|
+
type TerminalFallback = Schemas$6["TerminalFallback"];
|
|
22211
23217
|
//#endregion
|
|
22212
23218
|
//#region src/datatypes/provider.d.ts
|
|
23219
|
+
type Schemas$5 = components["schemas"];
|
|
23220
|
+
type ProviderId = Schemas$5["ProviderId"];
|
|
23221
|
+
type WorkspaceProvider = Schemas$5["WorkspaceProvider"];
|
|
23222
|
+
type CreateWorkspaceProvider = Schemas$5["CreateWorkspaceProvider"];
|
|
23223
|
+
type UpdateWorkspaceProvider = Schemas$5["UpdateWorkspaceProvider"];
|
|
23224
|
+
type WorkspaceProvidersQuery = Schemas$5["WorkspaceProvidersQuery"];
|
|
23225
|
+
type WorkspaceProviderPage = Schemas$5["WorkspaceProviderPage"];
|
|
23226
|
+
type ProviderType = Schemas$5["ProviderType"];
|
|
23227
|
+
type ProviderConfig = Schemas$5["ProviderConfig"];
|
|
23228
|
+
type InferenceConfig = Schemas$5["InferenceConfig"];
|
|
23229
|
+
//#endregion
|
|
23230
|
+
//#region src/datatypes/review.d.ts
|
|
22213
23231
|
type Schemas$4 = components["schemas"];
|
|
22214
|
-
type
|
|
22215
|
-
type
|
|
22216
|
-
type
|
|
22217
|
-
type
|
|
22218
|
-
type
|
|
22219
|
-
type
|
|
22220
|
-
type
|
|
22221
|
-
type
|
|
22222
|
-
type InferenceConfig = Schemas$4["InferenceConfig"];
|
|
23232
|
+
type WorkspaceReview = Schemas$4["WorkspaceReview"];
|
|
23233
|
+
type CreateWorkspaceReview = Schemas$4["CreateWorkspaceReview"];
|
|
23234
|
+
type AssignWorkspaceReview = Schemas$4["AssignWorkspaceReview"];
|
|
23235
|
+
type WorkspaceReviewPage = Schemas$4["WorkspaceReviewPage"];
|
|
23236
|
+
type WorkspaceReviewsQuery = Schemas$4["WorkspaceReviewsQuery"];
|
|
23237
|
+
type WorkspaceReviewEvent = Schemas$4["WorkspaceReviewEvent"];
|
|
23238
|
+
type WorkspaceReviewEventPage = Schemas$4["WorkspaceReviewEventPage"];
|
|
23239
|
+
type ReviewStatus = Schemas$4["ReviewStatus"];
|
|
22223
23240
|
//#endregion
|
|
22224
23241
|
//#region src/datatypes/scope.d.ts
|
|
22225
23242
|
type Schemas$3 = components["schemas"];
|
|
@@ -22272,5 +23289,5 @@ type Retention = Schemas["Retention"];
|
|
|
22272
23289
|
type RetentionSettings = Schemas["RetentionSettings"];
|
|
22273
23290
|
type RetentionOverride = Schemas["RetentionOverride"];
|
|
22274
23291
|
//#endregion
|
|
22275
|
-
export {
|
|
22276
|
-
//# sourceMappingURL=index-
|
|
23292
|
+
export { UpdateWorkspaceProvider as $, AccountApiToken as $a, OperatorId as $i, DetectionId as $n, Login as $r, AccountMarkedReadStatus as $t, WorkspaceThreadEvent as A, TextAuditLog as Aa, Dpi as Ai, WorkspaceInvite as An, RedactionActivityParams as Ao, SyncMode as Ar, PolicyTemplate as At, AssignWorkspaceReview as B, TextPattern as Ba, ImageEntity as Bi, ErrorResponse as Bn, Account as Bo, WorkspaceConnectionVerification as Br, WorkspacePolicy as Bt, RenameWorkspaceThread as C, TabularModel as Ca, CodecParams as Ci, GenerateWorkspaceInviteCode as Cn, DetectionActivityParams as Co, OAuthStartResponse as Cr, ModalityRedactions as Ct, WorkspaceThread as D, TextAdd as Da, Deduplication as Di, InviteStatus as Dn, PipelineActivityParams as Do, StartFileServiceOAuth as Dr, PolicyDraft as Dt, WorkspaceComment as E, TabularRetag as Ea, DecodedSpan as Ei, InviteSortField as En, MemberActivityParams as Eo, S3Credentials as Er, Policy as Et, Language as F, TextHint as Fa, ImageAuditEvent as Fi, Health as Fn, WorkspaceActivity as Fo, UpdateWorkspaceConnection as Fr, TerminalFallback as Ft, WorkspaceReviewEventPage as G, Layout as Ga, ImageModel as Gi, ListWorkspaceDocuments as Gn, IdentityProvider as Go, AuthCapabilities as Gr, PipelineStatus as Gt, ReviewStatus as H, TextRetag as Ha, ImageLocation as Hi, DocumentHash as Hn, AccountIdentity as Ho, WorkspacePickerToken as Hr, WorkspacePolicySummaryPage as Ht, LanguageProvenance as I, TextLocation as Ia, ImageAuditKind as Ii, HealthStatus as In, WorkspaceActivityExportOptions as Io, WorkspaceConnection as Ir, TextRedaction as It, CreateWorkspaceProvider as J, Token as Ja, ImageRetag as Ji, WorkspaceDeletedDocuments as Jn, SetPassword as Jo, LabelCatalog as Jr, WorkspacePipeline as Jt, WorkspaceReviewPage as K, LayoutBlock as Ka, ImagePattern as Ki, ModalityToken as Kn, OidcStartResponse as Ko, ConnectorCapabilities as Kr, PipelineTriggerType as Kt, LanguageSpan as L, TextManual as La, ImageAuditLog as Li, DateWindow as Ln, WorkspaceActivityFilterQuery as Lo, WorkspaceConnectionPage as Lr, UpdateWorkspacePolicy as Lt, WorkspaceThreadsQuery as M, TextData as Ma, EntityCoRef as Mi, WorkspaceInvitePage as Mn, ThreadActivityParams as Mo, SyncStatus as Mr, Sha2Algorithm as Mt, Confidence as N, TextEdit as Na, FreeformAttribution as Ni, WorkspaceInviteSent as Nn, ThreadCommentActivityParams as No, SyncTriggerType as Nr, TabularRedaction as Nt, WorkspaceThreadEntry as O, TextAuditEvent as Oa, Dimensions as Oi, ListWorkspaceInvites as On, PolicyActivityParams as Oo, StorageConfig as Or, PolicyKind as Ot, CountryCode as P, TextEntity as Pa, ImageAdd as Pi, ComponentHealth as Pn, WebhookActivityParams as Po, UnauthenticatedProvider as Pr, TemplateOrigin as Pt, ProviderType as Q, Transcription as Qa, ModelEvent as Qi, CreateWorkspaceDetection as Qn, DesktopTokenRequest as Qr, CursorPagination as Qt, Languages as R, TextMetadata as Ra, ImageData as Ri, ExportFormat as Rn, WorkspaceActivityPage as Ro, WorkspaceConnectionSync as Rr, Waveform as Rt, OpenWorkspaceThread as S, TabularMetadata as Sa, CitedAttribution as Si, Direction as Sn, ConnectionActivityParams as So, LlmConfig as Sr, LocalizedText as St, UpdateWorkspaceComment as T, TabularRefinement as Ta, Contested as Ti, InvitePreview as Tn, InviteActivityParams as To, PickedFile as Tr, PciPanRender as Tt, WorkspaceReview as U, TimeSpan as Ua, ImageManual as Ui, DocumentKind as Un, AccountRef as Uo, WorkspacePickerTokenRequest as Ur, CreateWorkspacePipeline as Ut, CreateWorkspaceReview as V, TextRefinement as Va, ImageHint as Vi, DeleteWorkspaceDocuments as Vn, AccountIdentities as Vo, WorkspaceConnectionsQuery as Vr, WorkspacePolicySummary as Vt, WorkspaceReviewEvent as W, ArtifactSet as Wa, ImageMetadata as Wi, FormatToken as Wn, Handle as Wo, WorkspaceSyncSchedule as Wr, PipelineDefinition as Wt, ProviderConfig as X, TranscriptSegment as Xa, ManualIntent as Xi, WorkspaceDocumentPage as Xn, paths as Xo, RegisteredRecognizer as Xr, WorkspacePipelineSummary as Xt, InferenceConfig as Y, Tokens as Ya, LeakProfile as Yi, WorkspaceDocument as Yn, UpdateAccount as Yo, RecognizerCatalog as Yr, WorkspacePipelineFilter as Yt, ProviderId as Z, TranscriptWord as Za, MetadataEvent as Zi, CreateAdhocWorkspaceDetection as Zn, AccountDesktopToken as Zr, WorkspacePipelineSummaryPage as Zt, WorkspaceWebhook as _, TabularEdit as _a, Audit as _i, MemberSortField as _n, WorkspaceStorageAnalytics as _o, ExportWorkspaceFiles as _r, LabelEntry as _t, RetentionSettings as a, Recognition as aa, AudioAuditLog as ai, ConnectionSyncFailedParams as an, UpdateAccountApiToken as ao, WorkspaceDetection as ar, Color as at, WorkspaceWebhookResult as b, TabularLocation as ba, Calibration as bi, WorkspaceMemberPage as bn, ActivityPayload as bo, GcsCredentials as br, LabelScope as bt, WorkspacePage as c, RuleMatch as ca, AudioEntity as ci, MemberJoinedParams as cn, TokenCounts as co, WorkspacePipelineDetectionsQuery as cr, CustomMatcher as ct, CreateWorkspaceWebhook as d, SourceSpan as da, AudioManual as di, RedactionCreatedParams as dn, WorkspaceAnalytics as do, AuthenticatedProvider as dr, GdprArticle9Treatment as dt, PatternEvent as ea, Signup as ei, AccountNotification as en, AccountApiTokenPage as eo, DetectionMetadata as er, WorkspaceProvider as et, TestWorkspaceWebhook as f, Suppress as fa, AudioMetadata as fi, ReviewAssignedParams as fn, WorkspaceDetectionAnalytics as fo, AzureCredentials as fr, GdprSensitiveScope as ft, WebhookStatus as g, TabularAuditLog as ga, AudioRetag as gi, ListWorkspaceMembers as gn, WorkspaceModelUsageEntry as go, CreateWorkspaceConnection as gr, Label as gt, WebhookId as h, TabularAuditKind as ha, AudioRefinement as hi, WorkspaceNotificationSettings as hn, WorkspaceDetectionTimeSeries as ho, ConnectionType as hr, ImageRedaction as ht, RetentionOverride as i, RasterMode as ia, AudioAuditKind as ii, ConnectionSyncCompletedParams as in, TokenExpiration as io, RedactionId as ir, ClampBucket as it, WorkspaceThreadPage as j, TextCoord as ja, EditSet as ji, WorkspaceInviteCode as jn, ReviewActivityParams as jo, SyncScheduleInput as jr, Predicate as jt, WorkspaceThreadEntryPage as k, TextAuditKind as ka, DocumentContext as ki, ReplyWorkspaceInvite as kn, ProviderActivityParams as ko, SyncDeletionPolicy as kr, PolicyRule as kt, WorkspaceRole as l, Selection as la, AudioHint as li, NotificationEvent as ln, Usage as lo, WorkspaceRedactionResult as lr, DateGranularity as lt, WebhookEvent as m, TabularAuditEvent as ma, AudioPattern as mi, UpdateWorkspaceNotificationSettings as mn, WorkspaceDetectionStatusEntry as mo, ConnectionId as mr, HipaaDeidMethod as mt, RasterPolicy as n, Polygon as na, AudioAdd as ni, AccountUnreadStatus as nn, ApiTokenType as no, DetectionStatusEvent as nr, WorkspaceProvidersQuery as nt, UpdateWorkspace as o, Redaction as oa, AudioData as oi, DetectionCompletedParams as on, ModelUsage as oo, WorkspaceDetectionPage as or, ConfidenceThreshold as ot, UpdateWorkspaceWebhook as p, TabularAdd as pa, AudioModel as pi, UnreadCountEvent as pn, WorkspaceDetectionDayEntry as po, ConnectionConfig as pr, HipaaAccountNumbers as pt, WorkspaceReviewsQuery as q, LayoutWord as qa, ImageRefinement as qi, UpdateWorkspaceDocument as qn, PublicAccount as qo, FileProviders as qr, UpdateWorkspacePipeline as qt, Retention as r, RangeOfUint as ra, AudioAuditEvent as ri, CommentMentionedParams as rn, CreateAccountApiToken as ro, RedactWorkspaceDetection as rr, AudioRedaction as rt, Workspace as s, Report as sa, AudioEdit as si, DetectionFailedParams as sn, RecognizerId as so, WorkspaceDetectionsQuery as sr, CreateWorkspacePolicy as st, CreateWorkspace as t, Point as ta, Attribution as ti, AccountNotificationPage as tn, AccountApiTokenWithJwt as to, DetectionStatus as tr, WorkspaceProviderPage as tt, WorkspaceSettings as u, SourceRef as ua, AudioLocation as ui, NotificationPayload as un, UsageReport as uo, WorkspaceRedactionResultPage as ur, DateStyle as ut, WorkspaceWebhookCreated as v, TabularEntity as va, AuditHash as vi, UpdateWorkspaceMember as vn, WorkspaceStorageKindEntry as vo, FileServiceConfig as vr, LabelLocale as vt, ThreadEventKind as w, TabularPattern as wa, Conflict as wi, InviteExpiration as wn, DocumentActivityParams as wo, OAuthTokens as wr, PciDssPart as wt, CreateWorkspaceComment as x, TabularManual as xa, Category as xi, CreateWorkspaceInvite as xn, ActivityType as xo, ImportWorkspaceFiles as xr, LanguageTag as xt, WorkspaceWebhookPage as y, TabularHint as ya, BoundingBox as yi, WorkspaceMember as yn, WorkspaceUsageAnalytics as yo, FileServiceProvider as yr, LabelRef as yt, ScopeMetadata as z, TextModel as za, ImageEdit as zi, ExportQuery as zn, WorkspaceActivityParams as zo, WorkspaceConnectionSyncPage as zr, WorkspacePoliciesQuery as zt };
|
|
23293
|
+
//# sourceMappingURL=index-rc5Y8RNG.d.ts.map
|