@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.
@@ -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 document, author, assignee, review-status, and open/closed filters.
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
- * A thread is either a free-form workspace discussion (no `documentId`, opened
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
- * A thread is either a free-form workspace discussion (no `documentId`, opened
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
- * A thread is either a free-form workspace discussion (no `documentId`, opened
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
- * A thread is either a free-form workspace discussion (no `documentId`, opened
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, and review transitions) interleaved, oldest first, with cursor pagination.
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
- patch: {
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 comment. */
3761
- commentId: string;
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
- /** @description Request payload to edit a comment's body. */
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 The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
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
- * [`Error`]: crate::response::Error
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
- 400: {
4698
+ 200: {
3793
4699
  headers: {
3794
4700
  [name: string]: unknown;
3795
4701
  };
3796
4702
  content: {
3797
- "application/json": components["schemas"]["ErrorResponse"];
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 document review. */
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 comment thread's timeline.
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 workspace thread uses
19727
- * only the discussion lifecycle (opened/closed/reopened/renamed); a file
19728
- * thread is the review of its file and also records its review transitions
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" | "review.detection.created" | "review.redaction.created" | "review.verified" | "review.reopened" | "review.assigned" | "review.unassigned";
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
- * A thread is either a free-form workspace discussion (no `documentId`, opened
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, or a review transition).
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$24 = components["schemas"];
21830
- type Handle = Schemas$24["Handle"];
21831
- type Account = Schemas$24["Account"];
21832
- type PublicAccount = Schemas$24["PublicAccount"];
21833
- type UpdateAccount = Schemas$24["UpdateAccount"];
21834
- type AccountRef = Schemas$24["AccountRef"];
21835
- type AccountIdentities = Schemas$24["AccountIdentities"];
21836
- type AccountIdentity = Schemas$24["AccountIdentity"];
21837
- type IdentityProvider = Schemas$24["IdentityProvider"];
21838
- type SetPassword = Schemas$24["SetPassword"];
21839
- type OidcStartResponse = Schemas$24["OidcStartResponse"];
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$23 = components["schemas"];
21843
- type WorkspaceActivity = Schemas$23["WorkspaceActivity"];
21844
- type WorkspaceActivityPage = Schemas$23["WorkspaceActivityPage"];
21845
- type ActivityType = Schemas$23["ActivityType"];
21846
- type WorkspaceActivityFilterQuery = Schemas$23["WorkspaceActivityFilterQuery"];
21847
- type WorkspaceActivityExportOptions = Schemas$23["WorkspaceActivityExportOptions"];
21848
- type ActivityPayload = Schemas$23["ActivityPayload"];
21849
- type WorkspaceActivityParams = Schemas$23["WorkspaceActivityParams"];
21850
- type MemberActivityParams = Schemas$23["MemberActivityParams"];
21851
- type InviteActivityParams = Schemas$23["InviteActivityParams"];
21852
- type ConnectionActivityParams = Schemas$23["ConnectionActivityParams"];
21853
- type PipelineActivityParams = Schemas$23["PipelineActivityParams"];
21854
- type DetectionActivityParams = Schemas$23["DetectionActivityParams"];
21855
- type RedactionActivityParams = Schemas$23["RedactionActivityParams"];
21856
- type PolicyActivityParams = Schemas$23["PolicyActivityParams"];
21857
- type ProviderActivityParams = Schemas$23["ProviderActivityParams"];
21858
- type DocumentActivityParams = Schemas$23["DocumentActivityParams"];
21859
- type WebhookActivityParams = Schemas$23["WebhookActivityParams"];
21860
- type ReviewActivityParams = Schemas$23["ReviewActivityParams"];
21861
- type ThreadActivityParams = Schemas$23["ThreadActivityParams"];
21862
- type ThreadCommentActivityParams = Schemas$23["ThreadCommentActivityParams"];
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$22 = components["schemas"];
21866
- type WorkspaceAnalytics = Schemas$22["WorkspaceAnalytics"];
21867
- type WorkspaceStorageAnalytics = Schemas$22["WorkspaceStorageAnalytics"];
21868
- type WorkspaceStorageKindEntry = Schemas$22["WorkspaceStorageKindEntry"];
21869
- type WorkspaceDetectionAnalytics = Schemas$22["WorkspaceDetectionAnalytics"];
21870
- type WorkspaceDetectionStatusEntry = Schemas$22["WorkspaceDetectionStatusEntry"];
21871
- type WorkspaceUsageAnalytics = Schemas$22["WorkspaceUsageAnalytics"];
21872
- type ModelUsage = Schemas$22["ModelUsage"];
21873
- type WorkspaceModelUsageEntry = Schemas$22["WorkspaceModelUsageEntry"];
21874
- type Usage = Schemas$22["Usage"];
21875
- type UsageReport = Schemas$22["UsageReport"];
21876
- type TokenCounts = Schemas$22["TokenCounts"];
21877
- type RecognizerId = Schemas$22["RecognizerId"];
21878
- type WorkspaceDetectionTimeSeries = Schemas$22["WorkspaceDetectionTimeSeries"];
21879
- type WorkspaceDetectionDayEntry = Schemas$22["WorkspaceDetectionDayEntry"];
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$21 = components["schemas"];
21883
- type AccountApiToken = Schemas$21["AccountApiToken"];
21884
- type AccountApiTokenWithJwt = Schemas$21["AccountApiTokenWithJwt"];
21885
- type ApiTokenType = Schemas$21["ApiTokenType"];
21886
- type CreateAccountApiToken = Schemas$21["CreateAccountApiToken"];
21887
- type UpdateAccountApiToken = Schemas$21["UpdateAccountApiToken"];
21888
- type TokenExpiration = Schemas$21["TokenExpiration"];
21889
- type AccountApiTokenPage = Schemas$21["AccountApiTokenPage"];
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$20 = components["schemas"];
21893
- type ArtifactSet = Schemas$20["ArtifactSet"];
21894
- type Layout = Schemas$20["Layout"];
21895
- type LayoutBlock = Schemas$20["LayoutBlock"];
21896
- type LayoutWord = Schemas$20["LayoutWord"];
21897
- type Transcription = Schemas$20["Transcription"];
21898
- type TranscriptSegment = Schemas$20["TranscriptSegment"];
21899
- type TranscriptWord = Schemas$20["TranscriptWord"];
21900
- type Tokens = Schemas$20["Tokens"];
21901
- type Token = Schemas$20["Token"];
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$19 = components["schemas"];
21905
- type Audit = Schemas$19["Audit"];
21906
- type DocumentContext = Schemas$19["DocumentContext"];
21907
- type CodecParams = Schemas$19["CodecParams"];
21908
- type EntityCoRef = Schemas$19["EntityCoRef"];
21909
- type Report = Schemas$19["Report"];
21910
- type Recognition = Schemas$19["Recognition"];
21911
- type EditSet = Schemas$19["EditSet"];
21912
- type RasterMode = Schemas$19["RasterMode"];
21913
- type Dpi = Schemas$19["Dpi"];
21914
- type Redaction = Schemas$19["Redaction"];
21915
- type Selection = Schemas$19["Selection"];
21916
- type Suppress = Schemas$19["Suppress"];
21917
- type ManualIntent = Schemas$19["ManualIntent"];
21918
- type LeakProfile = Schemas$19["LeakProfile"];
21919
- type RuleMatch = Schemas$19["RuleMatch"];
21920
- type Attribution = Schemas$19["Attribution"];
21921
- type CitedAttribution = Schemas$19["CitedAttribution"];
21922
- type FreeformAttribution = Schemas$19["FreeformAttribution"];
21923
- type ModelEvent = Schemas$19["ModelEvent"];
21924
- type PatternEvent = Schemas$19["PatternEvent"];
21925
- type Conflict = Schemas$19["Conflict"];
21926
- type Contested = Schemas$19["Contested"];
21927
- type Deduplication = Schemas$19["Deduplication"];
21928
- type Calibration = Schemas$19["Calibration"];
21929
- type OperatorId = Schemas$19["OperatorId"];
21930
- type AuditHash = Schemas$19["AuditHash"];
21931
- type Category = Schemas$19["Category"];
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$19["Range_of_uint"];
21934
- type SourceRef = Schemas$19["SourceRef"];
21935
- type BoundingBox = Schemas$19["BoundingBox"];
21936
- type Point = Schemas$19["Point"];
21937
- type Polygon = Schemas$19["Polygon"];
21938
- type Dimensions = Schemas$19["Dimensions"];
21939
- type TimeSpan = Schemas$19["TimeSpan"];
21940
- type TextEntity = Schemas$19["TextEntity"];
21941
- type TextAuditEvent = Schemas$19["TextAuditEvent"];
21942
- type TextAuditKind = Schemas$19["TextAuditKind"];
21943
- type TextAuditLog = Schemas$19["TextAuditLog"];
21944
- type TextHint = Schemas$19["TextHint"];
21945
- type TextLocation = Schemas$19["TextLocation"];
21946
- type TextCoord = Schemas$19["TextCoord"];
21947
- type DecodedSpan = Schemas$19["DecodedSpan"];
21948
- type SourceSpan = Schemas$19["SourceSpan"];
21949
- type TextData = Schemas$19["TextData"];
21950
- type TextModel = Schemas$19["TextModel"];
21951
- type TextPattern = Schemas$19["TextPattern"];
21952
- type TextManual = Schemas$19["TextManual"];
21953
- type TextEdit = Schemas$19["TextEdit"];
21954
- type TextAdd = Schemas$19["TextAdd"];
21955
- type TextRefinement = Schemas$19["TextRefinement"];
21956
- type TextRetag = Schemas$19["TextRetag"];
21957
- type ImageEntity = Schemas$19["ImageEntity"];
21958
- type ImageAuditEvent = Schemas$19["ImageAuditEvent"];
21959
- type ImageAuditKind = Schemas$19["ImageAuditKind"];
21960
- type ImageAuditLog = Schemas$19["ImageAuditLog"];
21961
- type ImageHint = Schemas$19["ImageHint"];
21962
- type ImageLocation = Schemas$19["ImageLocation"];
21963
- type ImageData = Schemas$19["ImageData"];
21964
- type ImageModel = Schemas$19["ImageModel"];
21965
- type ImagePattern = Schemas$19["ImagePattern"];
21966
- type ImageManual = Schemas$19["ImageManual"];
21967
- type ImageEdit = Schemas$19["ImageEdit"];
21968
- type ImageAdd = Schemas$19["ImageAdd"];
21969
- type ImageRefinement = Schemas$19["ImageRefinement"];
21970
- type ImageRetag = Schemas$19["ImageRetag"];
21971
- type AudioEntity = Schemas$19["AudioEntity"];
21972
- type AudioAuditEvent = Schemas$19["AudioAuditEvent"];
21973
- type AudioAuditKind = Schemas$19["AudioAuditKind"];
21974
- type AudioAuditLog = Schemas$19["AudioAuditLog"];
21975
- type AudioHint = Schemas$19["AudioHint"];
21976
- type AudioLocation = Schemas$19["AudioLocation"];
21977
- type AudioData = Schemas$19["AudioData"];
21978
- type AudioModel = Schemas$19["AudioModel"];
21979
- type AudioPattern = Schemas$19["AudioPattern"];
21980
- type AudioManual = Schemas$19["AudioManual"];
21981
- type AudioEdit = Schemas$19["AudioEdit"];
21982
- type AudioAdd = Schemas$19["AudioAdd"];
21983
- type AudioRefinement = Schemas$19["AudioRefinement"];
21984
- type AudioRetag = Schemas$19["AudioRetag"];
21985
- type TabularEntity = Schemas$19["TabularEntity"];
21986
- type TabularAuditEvent = Schemas$19["TabularAuditEvent"];
21987
- type TabularAuditKind = Schemas$19["TabularAuditKind"];
21988
- type TabularAuditLog = Schemas$19["TabularAuditLog"];
21989
- type TabularHint = Schemas$19["TabularHint"];
21990
- type TabularLocation = Schemas$19["TabularLocation"];
21991
- type TabularModel = Schemas$19["TabularModel"];
21992
- type TabularPattern = Schemas$19["TabularPattern"];
21993
- type TabularManual = Schemas$19["TabularManual"];
21994
- type TabularEdit = Schemas$19["TabularEdit"];
21995
- type TabularAdd = Schemas$19["TabularAdd"];
21996
- type TabularRefinement = Schemas$19["TabularRefinement"];
21997
- type TabularRetag = Schemas$19["TabularRetag"];
21998
- type MetadataEvent = Schemas$19["MetadataEvent"];
21999
- type AudioMetadata = Schemas$19["AudioMetadata"];
22000
- type ImageMetadata = Schemas$19["ImageMetadata"];
22001
- type TabularMetadata = Schemas$19["TabularMetadata"];
22002
- type TextMetadata = Schemas$19["TextMetadata"];
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$18 = components["schemas"];
22006
- type Login = Schemas$18["Login"];
22007
- type Signup = Schemas$18["Signup"];
22008
- type DesktopTokenRequest = Schemas$18["DesktopTokenRequest"];
22009
- type AccountDesktopToken = Schemas$18["AccountDesktopToken"];
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$17 = components["schemas"];
23020
+ type Schemas$18 = components["schemas"];
22013
23021
  /** Registry of the deployment's built-in labels, keyed by id. */
22014
- type LabelCatalog = Schemas$17["LabelCatalog"];
23022
+ type LabelCatalog = Schemas$18["LabelCatalog"];
22015
23023
  /** The engine's registered recognizers, grouped into NER and LLM. */
22016
- type RecognizerCatalog = Schemas$17["RecognizerCatalog"];
22017
- type RegisteredRecognizer = Schemas$17["RegisteredRecognizer"];
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$17["ConnectorCapabilities"];
22020
- type FileProviders = Schemas$17["FileProviders"];
23027
+ type ConnectorCapabilities = Schemas$18["ConnectorCapabilities"];
23028
+ type FileProviders = Schemas$18["FileProviders"];
22021
23029
  /** Which authentication methods this deployment offers. */
22022
- type AuthCapabilities = Schemas$17["AuthCapabilities"];
23030
+ type AuthCapabilities = Schemas$18["AuthCapabilities"];
22023
23031
  //#endregion
22024
23032
  //#region src/datatypes/connection.d.ts
22025
- type Schemas$16 = components["schemas"];
22026
- type ConnectionId = Schemas$16["ConnectionId"];
22027
- type WorkspaceConnection = Schemas$16["WorkspaceConnection"];
22028
- type ConnectionType = Schemas$16["ConnectionType"];
22029
- type CreateWorkspaceConnection = Schemas$16["CreateWorkspaceConnection"];
22030
- type UpdateWorkspaceConnection = Schemas$16["UpdateWorkspaceConnection"];
22031
- type WorkspaceConnectionsQuery = Schemas$16["WorkspaceConnectionsQuery"];
22032
- type WorkspaceConnectionPage = Schemas$16["WorkspaceConnectionPage"];
22033
- type WorkspaceConnectionSync = Schemas$16["WorkspaceConnectionSync"];
22034
- type WorkspaceConnectionSyncPage = Schemas$16["WorkspaceConnectionSyncPage"];
22035
- type WorkspaceConnectionVerification = Schemas$16["WorkspaceConnectionVerification"];
22036
- type ImportWorkspaceFiles = Schemas$16["ImportWorkspaceFiles"];
22037
- type PickedFile = Schemas$16["PickedFile"];
22038
- type ExportWorkspaceFiles = Schemas$16["ExportWorkspaceFiles"];
22039
- type WorkspacePickerTokenRequest = Schemas$16["WorkspacePickerTokenRequest"];
22040
- type WorkspacePickerToken = Schemas$16["WorkspacePickerToken"];
22041
- type SyncMode = Schemas$16["SyncMode"];
22042
- type SyncStatus = Schemas$16["SyncStatus"];
22043
- type SyncTriggerType = Schemas$16["SyncTriggerType"];
22044
- type SyncDeletionPolicy = Schemas$16["SyncDeletionPolicy"];
22045
- type ConnectionConfig = Schemas$16["ConnectionConfig"];
22046
- type StorageConfig = Schemas$16["StorageConfig"];
22047
- type S3Credentials = Schemas$16["S3Credentials"];
22048
- type AzureCredentials = Schemas$16["AzureCredentials"];
22049
- type GcsCredentials = Schemas$16["GcsCredentials"];
22050
- type LlmConfig = Schemas$16["LlmConfig"];
22051
- type AuthenticatedProvider = Schemas$16["AuthenticatedProvider"];
22052
- type UnauthenticatedProvider = Schemas$16["UnauthenticatedProvider"];
22053
- type FileServiceProvider = Schemas$16["FileServiceProvider"];
22054
- type FileServiceConfig = Schemas$16["FileServiceConfig"];
22055
- type OAuthTokens = Schemas$16["OAuthTokens"];
22056
- type StartFileServiceOAuth = Schemas$16["StartFileServiceOAuth"];
22057
- type OAuthStartResponse = Schemas$16["OAuthStartResponse"];
22058
- type WorkspaceSyncSchedule = Schemas$16["WorkspaceSyncSchedule"];
22059
- type SyncScheduleInput = Schemas$16["SyncScheduleInput"];
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$15 = components["schemas"];
22063
- type DetectionId = Schemas$15["DetectionId"];
22064
- type WorkspaceDetection = Schemas$15["WorkspaceDetection"];
22065
- type DetectionMetadata = Schemas$15["DetectionMetadata"];
22066
- type CreateWorkspaceDetection = Schemas$15["CreateWorkspaceDetection"];
22067
- type CreateAdhocWorkspaceDetection = Schemas$15["CreateAdhocWorkspaceDetection"];
22068
- type DetectionStatus = Schemas$15["DetectionStatus"];
22069
- type WorkspaceDetectionPage = Schemas$15["WorkspaceDetectionPage"];
22070
- type WorkspaceDetectionsQuery = Schemas$15["WorkspaceDetectionsQuery"];
22071
- type WorkspacePipelineDetectionsQuery = Schemas$15["WorkspacePipelineDetectionsQuery"];
22072
- type DetectionStatusEvent = Schemas$15["DetectionStatusEvent"];
22073
- type RedactionId = Schemas$15["RedactionId"];
22074
- type RedactWorkspaceDetection = Schemas$15["RedactWorkspaceDetection"];
22075
- type WorkspaceRedactionResult = Schemas$15["WorkspaceRedactionResult"];
22076
- type WorkspaceRedactionResultPage = Schemas$15["WorkspaceRedactionResultPage"];
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$14 = components["schemas"];
22080
- type WorkspaceDocument = Schemas$14["WorkspaceDocument"];
22081
- type UpdateWorkspaceDocument = Schemas$14["UpdateWorkspaceDocument"];
22082
- type DocumentKind = Schemas$14["DocumentKind"];
22083
- type DocumentHash = Schemas$14["DocumentHash"];
22084
- type FormatToken = Schemas$14["FormatToken"];
22085
- type ModalityToken = Schemas$14["ModalityToken"];
22086
- type ListWorkspaceDocuments = Schemas$14["ListWorkspaceDocuments"];
22087
- type WorkspaceDocumentPage = Schemas$14["WorkspaceDocumentPage"];
22088
- type DeleteWorkspaceDocuments = Schemas$14["DeleteWorkspaceDocuments"];
22089
- type WorkspaceDeletedDocuments = Schemas$14["WorkspaceDeletedDocuments"];
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$13 = components["schemas"];
22095
- type ErrorResponse = Schemas$13["ErrorResponse"];
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$12 = components["schemas"];
22099
- type ExportFormat = Schemas$12["ExportFormat"];
22100
- type ExportQuery = Schemas$12["ExportQuery"];
22101
- type DateWindow = Schemas$12["DateWindow"];
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$11 = components["schemas"];
22105
- type Health = Schemas$11["Health"];
22106
- type HealthStatus = Schemas$11["HealthStatus"];
22107
- type ComponentHealth = Schemas$11["ComponentHealth"];
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$10 = components["schemas"];
22111
- type WorkspaceInvite = Schemas$10["WorkspaceInvite"];
22112
- type WorkspaceInviteSent = Schemas$10["WorkspaceInviteSent"];
22113
- type CreateWorkspaceInvite = Schemas$10["CreateWorkspaceInvite"];
22114
- type ReplyWorkspaceInvite = Schemas$10["ReplyWorkspaceInvite"];
22115
- type GenerateWorkspaceInviteCode = Schemas$10["GenerateWorkspaceInviteCode"];
22116
- type WorkspaceInviteCode = Schemas$10["WorkspaceInviteCode"];
22117
- type InviteStatus = Schemas$10["InviteStatus"];
22118
- type InviteExpiration = Schemas$10["InviteExpiration"];
22119
- type ListWorkspaceInvites = Schemas$10["ListWorkspaceInvites"];
22120
- type InviteSortField = Schemas$10["InviteSortField"];
22121
- type Direction = Schemas$10["Direction"];
22122
- type InvitePreview = Schemas$10["InvitePreview"];
22123
- type WorkspaceInvitePage = Schemas$10["WorkspaceInvitePage"];
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$9 = components["schemas"];
22127
- type WorkspaceMember = Schemas$9["WorkspaceMember"];
22128
- type UpdateWorkspaceMember = Schemas$9["UpdateWorkspaceMember"];
22129
- type ListWorkspaceMembers = Schemas$9["ListWorkspaceMembers"];
22130
- type MemberSortField = Schemas$9["MemberSortField"];
22131
- type WorkspaceMemberPage = Schemas$9["WorkspaceMemberPage"];
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$8 = components["schemas"];
22135
- type AccountNotification = Schemas$8["AccountNotification"];
22136
- type NotificationEvent = Schemas$8["NotificationEvent"];
22137
- type WorkspaceNotificationSettings = Schemas$8["WorkspaceNotificationSettings"];
22138
- type UpdateWorkspaceNotificationSettings = Schemas$8["UpdateWorkspaceNotificationSettings"];
22139
- type AccountUnreadStatus = Schemas$8["AccountUnreadStatus"];
22140
- type AccountNotificationPage = Schemas$8["AccountNotificationPage"];
22141
- type AccountMarkedReadStatus = Schemas$8["AccountMarkedReadStatus"];
22142
- type UnreadCountEvent = Schemas$8["UnreadCountEvent"];
22143
- type NotificationPayload = Schemas$8["NotificationPayload"];
22144
- type MemberJoinedParams = Schemas$8["MemberJoinedParams"];
22145
- type ConnectionSyncCompletedParams = Schemas$8["ConnectionSyncCompletedParams"];
22146
- type ConnectionSyncFailedParams = Schemas$8["ConnectionSyncFailedParams"];
22147
- type DetectionCompletedParams = Schemas$8["DetectionCompletedParams"];
22148
- type DetectionFailedParams = Schemas$8["DetectionFailedParams"];
22149
- type RedactionCreatedParams = Schemas$8["RedactionCreatedParams"];
22150
- type ReviewAssignedParams = Schemas$8["ReviewAssignedParams"];
22151
- type CommentMentionedParams = Schemas$8["CommentMentionedParams"];
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$7 = components["schemas"];
22155
- type CursorPagination = Schemas$7["CursorPagination"];
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$6 = components["schemas"];
22159
- type WorkspacePipeline = Schemas$6["WorkspacePipeline"];
22160
- type CreateWorkspacePipeline = Schemas$6["CreateWorkspacePipeline"];
22161
- type UpdateWorkspacePipeline = Schemas$6["UpdateWorkspacePipeline"];
22162
- type PipelineDefinition = Schemas$6["PipelineDefinition"];
22163
- type WorkspacePipelineFilter = Schemas$6["WorkspacePipelineFilter"];
22164
- type PipelineStatus = Schemas$6["PipelineStatus"];
22165
- type PipelineTriggerType = Schemas$6["PipelineTriggerType"];
22166
- type WorkspacePipelineSummary = Schemas$6["WorkspacePipelineSummary"];
22167
- type WorkspacePipelineSummaryPage = Schemas$6["WorkspacePipelineSummaryPage"];
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$5 = components["schemas"];
22171
- type WorkspacePolicy = Schemas$5["WorkspacePolicy"];
22172
- type Policy = Schemas$5["Policy"];
22173
- type PolicyKind = Schemas$5["PolicyKind"];
22174
- type WorkspacePolicySummary = Schemas$5["WorkspacePolicySummary"];
22175
- type WorkspacePolicySummaryPage = Schemas$5["WorkspacePolicySummaryPage"];
22176
- type WorkspacePoliciesQuery = Schemas$5["WorkspacePoliciesQuery"];
22177
- type PolicyDraft = Schemas$5["PolicyDraft"];
22178
- type CreateWorkspacePolicy = Schemas$5["CreateWorkspacePolicy"];
22179
- type UpdateWorkspacePolicy = Schemas$5["UpdateWorkspacePolicy"];
22180
- type PolicyRule = Schemas$5["PolicyRule"];
22181
- type CustomMatcher = Schemas$5["CustomMatcher"];
22182
- type PolicyTemplate = Schemas$5["PolicyTemplate"];
22183
- type TemplateOrigin = Schemas$5["TemplateOrigin"];
22184
- type HipaaDeidMethod = Schemas$5["HipaaDeidMethod"];
22185
- type HipaaAccountNumbers = Schemas$5["HipaaAccountNumbers"];
22186
- type GdprArticle9Treatment = Schemas$5["GdprArticle9Treatment"];
22187
- type GdprSensitiveScope = Schemas$5["GdprSensitiveScope"];
22188
- type PciDssPart = Schemas$5["PciDssPart"];
22189
- type PciPanRender = Schemas$5["PciPanRender"];
22190
- type Predicate = Schemas$5["Predicate"];
22191
- type ModalityRedactions = Schemas$5["ModalityRedactions"];
22192
- type TextRedaction = Schemas$5["TextRedaction"];
22193
- type ImageRedaction = Schemas$5["ImageRedaction"];
22194
- type AudioRedaction = Schemas$5["AudioRedaction"];
22195
- type TabularRedaction = Schemas$5["TabularRedaction"];
22196
- type LabelScope = Schemas$5["LabelScope"];
22197
- type LabelEntry = Schemas$5["LabelEntry"];
22198
- type LabelLocale = Schemas$5["LabelLocale"];
22199
- type Label = Schemas$5["Label"];
22200
- type LabelRef = Schemas$5["LabelRef"];
22201
- type LocalizedText = Schemas$5["LocalizedText"];
22202
- type Color = Schemas$5["Color"];
22203
- type Waveform = Schemas$5["Waveform"];
22204
- type ClampBucket = Schemas$5["ClampBucket"];
22205
- type ConfidenceThreshold = Schemas$5["ConfidenceThreshold"];
22206
- type DateStyle = Schemas$5["DateStyle"];
22207
- type DateGranularity = Schemas$5["DateGranularity"];
22208
- type LanguageTag = Schemas$5["LanguageTag"];
22209
- type Sha2Algorithm = Schemas$5["Sha2Algorithm"];
22210
- type TerminalFallback = Schemas$5["TerminalFallback"];
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 ProviderId = Schemas$4["ProviderId"];
22215
- type WorkspaceProvider = Schemas$4["WorkspaceProvider"];
22216
- type CreateWorkspaceProvider = Schemas$4["CreateWorkspaceProvider"];
22217
- type UpdateWorkspaceProvider = Schemas$4["UpdateWorkspaceProvider"];
22218
- type WorkspaceProvidersQuery = Schemas$4["WorkspaceProvidersQuery"];
22219
- type WorkspaceProviderPage = Schemas$4["WorkspaceProviderPage"];
22220
- type ProviderType = Schemas$4["ProviderType"];
22221
- type ProviderConfig = Schemas$4["ProviderConfig"];
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 { CreateWorkspacePolicy as $, UpdateAccountApiToken as $a, Recognition as $i, WorkspaceDetection as $n, AudioAuditLog as $r, DetectionFailedParams as $t, WorkspaceThreadEvent as A, TextLocation as Aa, ImageAuditKind as Ai, ExportFormat as An, WorkspaceActivityExportOptions as Ao, WorkspaceConnection as Ar, Waveform as At, CreateWorkspaceProvider as B, LayoutBlock as Ba, ImagePattern as Bi, ReviewStatus as Bn, OidcStartResponse as Bo, ConnectorCapabilities as Br, WorkspacePipeline as Bt, RenameWorkspaceThread as C, TextAuditKind as Ca, DocumentContext as Ci, WorkspaceInviteCode as Cn, ProviderActivityParams as Co, SyncDeletionPolicy as Cr, Predicate as Ct, WorkspaceThread as D, TextEdit as Da, FreeformAttribution as Di, Health as Dn, ThreadCommentActivityParams as Do, SyncTriggerType as Dr, TerminalFallback as Dt, WorkspaceComment as E, TextData as Ea, EntityCoRef as Ei, ComponentHealth as En, ThreadActivityParams as Eo, SyncStatus as Er, TemplateOrigin as Et, Language as F, TextRefinement as Fa, ImageHint as Fi, DocumentHash as Fn, AccountIdentities as Fo, WorkspaceConnectionsQuery as Fr, CreateWorkspacePipeline as Ft, UpdateWorkspaceProvider as G, TranscriptWord as Ga, MetadataEvent as Gi, CreateAdhocWorkspaceDetection as Gn, AccountDesktopToken as Gr, AccountMarkedReadStatus as Gt, ProviderConfig as H, Token as Ha, ImageRetag as Hi, WorkspaceDeletedDocuments as Hn, SetPassword as Ho, LabelCatalog as Hr, WorkspacePipelineSummary as Ht, LanguageProvenance as I, TextRetag as Ia, ImageLocation as Ii, DocumentKind as In, AccountIdentity as Io, WorkspacePickerToken as Ir, PipelineDefinition as It, WorkspaceProvidersQuery as J, AccountApiTokenPage as Ja, PatternEvent as Ji, DetectionMetadata as Jn, Signup as Jr, AccountUnreadStatus as Jt, WorkspaceProvider as K, Transcription as Ka, ModelEvent as Ki, CreateWorkspaceDetection as Kn, DesktopTokenRequest as Kr, AccountNotification as Kt, LanguageSpan as L, TimeSpan as La, ImageManual as Li, FormatToken as Ln, AccountRef as Lo, WorkspacePickerTokenRequest as Lr, PipelineStatus as Lt, WorkspaceThreadsQuery as M, TextMetadata as Ma, ImageData as Mi, ErrorResponse as Mn, WorkspaceActivityPage as Mo, WorkspaceConnectionSync as Mr, WorkspacePolicy as Mt, Confidence as N, TextModel as Na, ImageEdit as Ni, AssignWorkspaceReview as Nn, WorkspaceActivityParams as No, WorkspaceConnectionSyncPage as Nr, WorkspacePolicySummary as Nt, WorkspaceThreadEntry as O, TextEntity as Oa, ImageAdd as Oi, HealthStatus as On, WebhookActivityParams as Oo, UnauthenticatedProvider as Or, TextRedaction as Ot, CountryCode as P, TextPattern as Pa, ImageEntity as Pi, DeleteWorkspaceDocuments as Pn, Account as Po, WorkspaceConnectionVerification as Pr, WorkspacePolicySummaryPage as Pt, ConfidenceThreshold as Q, TokenExpiration as Qa, RasterMode as Qi, RedactionId as Qn, AudioAuditKind as Qr, DetectionCompletedParams as Qt, Languages as R, ArtifactSet as Ra, ImageMetadata as Ri, ListWorkspaceDocuments as Rn, Handle as Ro, WorkspaceSyncSchedule as Rr, PipelineTriggerType as Rt, OpenWorkspaceThread as S, TextAuditEvent as Sa, Dimensions as Si, WorkspaceInvite as Sn, PolicyActivityParams as So, StorageConfig as Sr, PolicyTemplate as St, UpdateWorkspaceComment as T, TextCoord as Ta, EditSet as Ti, WorkspaceInviteSent as Tn, ReviewActivityParams as To, SyncScheduleInput as Tr, TabularRedaction as Tt, ProviderId as U, Tokens as Ua, LeakProfile as Ui, WorkspaceDocument as Un, UpdateAccount as Uo, RecognizerCatalog as Ur, WorkspacePipelineSummaryPage as Ut, InferenceConfig as V, LayoutWord as Va, ImageRefinement as Vi, UpdateWorkspaceDocument as Vn, PublicAccount as Vo, FileProviders as Vr, WorkspacePipelineFilter as Vt, ProviderType as W, TranscriptSegment as Wa, ManualIntent as Wi, WorkspaceDocumentPage as Wn, paths as Wo, RegisteredRecognizer as Wr, CursorPagination as Wt, ClampBucket as X, ApiTokenType as Xa, Polygon as Xi, DetectionStatusEvent as Xn, AudioAdd as Xr, ConnectionSyncCompletedParams as Xt, AudioRedaction as Y, AccountApiTokenWithJwt as Ya, Point as Yi, DetectionStatus as Yn, Attribution as Yr, CommentMentionedParams as Yt, Color as Z, CreateAccountApiToken as Za, RangeOfUint as Zi, RedactWorkspaceDetection as Zn, AudioAuditEvent as Zr, ConnectionSyncFailedParams as Zt, WorkspaceWebhook as _, TabularModel as _a, CodecParams as _i, InvitePreview as _n, DetectionActivityParams as _o, OAuthStartResponse as _r, PciPanRender as _t, RetentionSettings as a, SourceSpan as aa, AudioManual as ai, UnreadCountEvent as an, WorkspaceAnalytics as ao, AuthenticatedProvider as ar, HipaaAccountNumbers as at, WorkspaceWebhookResult as b, TabularRetag as ba, DecodedSpan as bi, ListWorkspaceInvites as bn, MemberActivityParams as bo, S3Credentials as br, PolicyKind as bt, WorkspacePage as c, TabularAuditEvent as ca, AudioPattern as ci, ListWorkspaceMembers as cn, WorkspaceDetectionStatusEntry as co, ConnectionId as cr, Label as ct, CreateWorkspaceWebhook as d, TabularEdit as da, Audit as di, WorkspaceMember as dn, WorkspaceStorageAnalytics as do, ExportWorkspaceFiles as dr, LabelRef as dt, Redaction as ea, AudioData as ei, MemberJoinedParams as en, ModelUsage as eo, WorkspaceDetectionPage as er, CustomMatcher as et, TestWorkspaceWebhook as f, TabularEntity as fa, AuditHash as fi, WorkspaceMemberPage as fn, WorkspaceStorageKindEntry as fo, FileServiceConfig as fr, LabelScope as ft, WebhookStatus as g, TabularMetadata as ga, CitedAttribution as gi, InviteExpiration as gn, ConnectionActivityParams as go, LlmConfig as gr, PciDssPart as gt, WebhookId as h, TabularManual as ha, Category as hi, GenerateWorkspaceInviteCode as hn, ActivityType as ho, ImportWorkspaceFiles as hr, ModalityRedactions as ht, RetentionOverride as i, SourceRef as ia, AudioLocation as ii, ReviewAssignedParams as in, UsageReport as io, WorkspaceRedactionResultPage as ir, GdprSensitiveScope as it, WorkspaceThreadPage as j, TextManual as ja, ImageAuditLog as ji, ExportQuery as jn, WorkspaceActivityFilterQuery as jo, WorkspaceConnectionPage as jr, WorkspacePoliciesQuery as jt, WorkspaceThreadEntryPage as k, TextHint as ka, ImageAuditEvent as ki, DateWindow as kn, WorkspaceActivity as ko, UpdateWorkspaceConnection as kr, UpdateWorkspacePolicy as kt, WorkspaceRole as l, TabularAuditKind as la, AudioRefinement as li, MemberSortField as ln, WorkspaceDetectionTimeSeries as lo, ConnectionType as lr, LabelEntry as lt, WebhookEvent as m, TabularLocation as ma, Calibration as mi, Direction as mn, ActivityPayload as mo, GcsCredentials as mr, LocalizedText as mt, RasterPolicy as n, RuleMatch as na, AudioEntity as ni, NotificationPayload as nn, TokenCounts as no, WorkspacePipelineDetectionsQuery as nr, DateStyle as nt, UpdateWorkspace as o, Suppress as oa, AudioMetadata as oi, UpdateWorkspaceNotificationSettings as on, WorkspaceDetectionAnalytics as oo, AzureCredentials as or, HipaaDeidMethod as ot, UpdateWorkspaceWebhook as p, TabularHint as pa, BoundingBox as pi, CreateWorkspaceInvite as pn, WorkspaceUsageAnalytics as po, FileServiceProvider as pr, LanguageTag as pt, WorkspaceProviderPage as q, AccountApiToken as qa, OperatorId as qi, DetectionId as qn, Login as qr, AccountNotificationPage as qt, Retention as r, Selection as ra, AudioHint as ri, RedactionCreatedParams as rn, Usage as ro, WorkspaceRedactionResult as rr, GdprArticle9Treatment as rt, Workspace as s, TabularAdd as sa, AudioModel as si, WorkspaceNotificationSettings as sn, WorkspaceDetectionDayEntry as so, ConnectionConfig as sr, ImageRedaction as st, CreateWorkspace as t, Report as ta, AudioEdit as ti, NotificationEvent as tn, RecognizerId as to, WorkspaceDetectionsQuery as tr, DateGranularity as tt, WorkspaceSettings as u, TabularAuditLog as ua, AudioRetag as ui, UpdateWorkspaceMember as un, WorkspaceModelUsageEntry as uo, CreateWorkspaceConnection as ur, LabelLocale as ut, WorkspaceWebhookCreated as v, TabularPattern as va, Conflict as vi, InviteSortField as vn, DocumentActivityParams as vo, OAuthTokens as vr, Policy as vt, ThreadEventKind as w, TextAuditLog as wa, Dpi as wi, WorkspaceInvitePage as wn, RedactionActivityParams as wo, SyncMode as wr, Sha2Algorithm as wt, CreateWorkspaceComment as x, TextAdd as xa, Deduplication as xi, ReplyWorkspaceInvite as xn, PipelineActivityParams as xo, StartFileServiceOAuth as xr, PolicyRule as xt, WorkspaceWebhookPage as y, TabularRefinement as ya, Contested as yi, InviteStatus as yn, InviteActivityParams as yo, PickedFile as yr, PolicyDraft as yt, ScopeMetadata as z, Layout as za, ImageModel as zi, ModalityToken as zn, IdentityProvider as zo, AuthCapabilities as zr, UpdateWorkspacePipeline as zt };
22276
- //# sourceMappingURL=index-DmLbi0Gi.d.ts.map
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