@nvisy/sdk 0.55.0 → 0.57.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,7 +2437,7 @@ interface paths {
2437
2437
  };
2438
2438
  trace?: never;
2439
2439
  };
2440
- "/workspaces/{workspaceId}/threads": {
2440
+ "/workspaces/{workspaceId}/reviews": {
2441
2441
  parameters: {
2442
2442
  query?: never;
2443
2443
  header?: never;
@@ -2445,8 +2445,8 @@ interface paths {
2445
2445
  cookie?: never;
2446
2446
  };
2447
2447
  /**
2448
- * List threads
2449
- * @description Returns the workspace's threads, most recent first, with optional author and open/closed filters.
2448
+ * List reviews
2449
+ * @description Returns the workspace's reviews, most recent first, with optional document, author, assignee, and review-status filters (the review queue). Requires ViewReviews.
2450
2450
  */
2451
2451
  get: {
2452
2452
  parameters: {
@@ -2464,10 +2464,14 @@ interface paths {
2464
2464
  includeCount?: boolean;
2465
2465
  /** @description The maximum number of records to return (1-100, default: 20). */
2466
2466
  limit?: number;
2467
- /** @description Filter by the thread's opening author (account id). */
2467
+ /** @description Filter by the assigned reviewer (account id). */
2468
+ assignee?: string;
2469
+ /** @description Filter by the review's opening author (account id). */
2468
2470
  author?: string;
2469
- /** @description Filter by open/closed state: `true` = closed only, `false` = open only. */
2470
- closed?: boolean;
2471
+ /** @description Filter to the reviews of a specific document. */
2472
+ documentId?: string;
2473
+ /** @description Filter by review status. */
2474
+ reviewStatus?: components["schemas"]["ReviewStatus"];
2471
2475
  };
2472
2476
  header?: never;
2473
2477
  path: {
@@ -2490,7 +2494,7 @@ interface paths {
2490
2494
  [name: string]: unknown;
2491
2495
  };
2492
2496
  content: {
2493
- "application/json": components["schemas"]["WorkspaceThreadPage"];
2497
+ "application/json": components["schemas"]["WorkspaceReviewPage"];
2494
2498
  };
2495
2499
  };
2496
2500
  /**
@@ -2534,163 +2538,45 @@ interface paths {
2534
2538
  };
2535
2539
  };
2536
2540
  put?: never;
2537
- /**
2538
- * Open a workspace thread
2539
- * @description Opens a workspace-level discussion thread (not tied to any document) with its first message. @username mentions notify those members. Requires the Review permission.
2540
- */
2541
- post: {
2542
- parameters: {
2543
- query?: never;
2544
- header?: never;
2545
- path: {
2546
- /** @description Workspace identifier. */
2547
- workspaceId: string;
2548
- };
2549
- cookie?: never;
2550
- };
2551
- /**
2552
- * @description Request payload to open a workspace discussion thread with its first message.
2553
- *
2554
- * A workspace thread is free-form discussion pinned to no document; document
2555
- * reviews are auto-created on detection, not opened by hand. `@username`
2556
- * mentions in the opening body notify those members.
2557
- */
2558
- requestBody: {
2559
- content: {
2560
- "application/json": components["schemas"]["OpenWorkspaceThread"];
2561
- };
2562
- };
2563
- responses: {
2564
- /**
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.
2568
- */
2569
- 201: {
2570
- headers: {
2571
- [name: string]: unknown;
2572
- };
2573
- content: {
2574
- "application/json": components["schemas"]["WorkspaceThread"];
2575
- };
2576
- };
2577
- /**
2578
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
2579
- * that [`Error`] renders to at the response boundary.
2580
- *
2581
- * It carries no builder logic — [`Error`] is the type handlers construct and
2582
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
2583
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
2584
- * (`context` is logged, `status` sets the HTTP status line).
2585
- *
2586
- * [`Error`]: crate::response::Error
2587
- */
2588
- 400: {
2589
- headers: {
2590
- [name: string]: unknown;
2591
- };
2592
- content: {
2593
- "application/json": components["schemas"]["ErrorResponse"];
2594
- };
2595
- };
2596
- /**
2597
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
2598
- * that [`Error`] renders to at the response boundary.
2599
- *
2600
- * It carries no builder logic — [`Error`] is the type handlers construct and
2601
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
2602
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
2603
- * (`context` is logged, `status` sets the HTTP status line).
2604
- *
2605
- * [`Error`]: crate::response::Error
2606
- */
2607
- 401: {
2608
- headers: {
2609
- [name: string]: unknown;
2610
- };
2611
- content: {
2612
- "application/json": components["schemas"]["ErrorResponse"];
2613
- };
2614
- };
2615
- /**
2616
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
2617
- * that [`Error`] renders to at the response boundary.
2618
- *
2619
- * It carries no builder logic — [`Error`] is the type handlers construct and
2620
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
2621
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
2622
- * (`context` is logged, `status` sets the HTTP status line).
2623
- *
2624
- * [`Error`]: crate::response::Error
2625
- */
2626
- 403: {
2627
- headers: {
2628
- [name: string]: unknown;
2629
- };
2630
- content: {
2631
- "application/json": components["schemas"]["ErrorResponse"];
2632
- };
2633
- };
2634
- /** @description Expected request with `Content-Type: application/json` */
2635
- 415: {
2636
- headers: {
2637
- [name: string]: unknown;
2638
- };
2639
- content: {
2640
- "text/plain": string;
2641
- };
2642
- };
2643
- /** @description Failed to deserialize the JSON body into the target type */
2644
- 422: {
2645
- headers: {
2646
- [name: string]: unknown;
2647
- };
2648
- content: {
2649
- "text/plain": string;
2650
- };
2651
- };
2652
- };
2653
- };
2541
+ post?: never;
2654
2542
  delete?: never;
2655
2543
  options?: never;
2656
2544
  head?: never;
2657
2545
  patch?: never;
2658
2546
  trace?: never;
2659
2547
  };
2660
- "/workspaces/{workspaceId}/threads/{threadId}": {
2548
+ "/workspaces/{workspaceId}/documents/{documentId}/reviews": {
2661
2549
  parameters: {
2662
2550
  query?: never;
2663
2551
  header?: never;
2664
2552
  path?: never;
2665
2553
  cookie?: never;
2666
2554
  };
2667
- get?: never;
2668
- put?: never;
2669
- post?: never;
2670
2555
  /**
2671
- * Delete a thread
2672
- * @description Soft-deletes a thread and all of its comments. Requires ManageThreads.
2556
+ * List a document's reviews
2557
+ * @description Returns a document's reviews, most recent first. Requires ViewReviews.
2673
2558
  */
2674
- delete: {
2559
+ get: {
2675
2560
  parameters: {
2676
2561
  query?: never;
2677
2562
  header?: never;
2678
2563
  path: {
2679
2564
  /** @description Workspace identifier. */
2680
2565
  workspaceId: string;
2681
- /** @description Unique identifier of the thread. */
2682
- threadId: string;
2566
+ /** @description Unique identifier of the document. */
2567
+ documentId: string;
2683
2568
  };
2684
2569
  cookie?: never;
2685
2570
  };
2686
2571
  requestBody?: never;
2687
2572
  responses: {
2688
- /** @description no content */
2689
2573
  200: {
2690
2574
  headers: {
2691
2575
  [name: string]: unknown;
2692
2576
  };
2693
- content?: never;
2577
+ content: {
2578
+ "application/json": components["schemas"]["WorkspaceReview"][];
2579
+ };
2694
2580
  };
2695
2581
  /**
2696
2582
  * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
@@ -2751,42 +2637,42 @@ interface paths {
2751
2637
  };
2752
2638
  };
2753
2639
  };
2754
- options?: never;
2755
- head?: never;
2640
+ put?: never;
2756
2641
  /**
2757
- * Rename a thread
2758
- * @description Sets or clears a thread's title. Requires ManageThreads.
2642
+ * Open a review
2643
+ * @description Opens a review on a document, with a title. A document may have many reviews. Requires Review.
2759
2644
  */
2760
- patch: {
2645
+ post: {
2761
2646
  parameters: {
2762
2647
  query?: never;
2763
2648
  header?: never;
2764
2649
  path: {
2765
2650
  /** @description Workspace identifier. */
2766
2651
  workspaceId: string;
2767
- /** @description Unique identifier of the thread. */
2768
- threadId: string;
2652
+ /** @description Unique identifier of the document. */
2653
+ documentId: string;
2769
2654
  };
2770
2655
  cookie?: never;
2771
2656
  };
2772
- /** @description Request payload to rename a thread (set or clear its title). */
2657
+ /** @description Request payload to open a review on a document. */
2773
2658
  requestBody: {
2774
2659
  content: {
2775
- "application/json": components["schemas"]["RenameWorkspaceThread"];
2660
+ "application/json": components["schemas"]["CreateWorkspaceReview"];
2776
2661
  };
2777
2662
  };
2778
2663
  responses: {
2779
2664
  /**
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.
2665
+ * @description Response type for a review: a named discussion on a document with a manual
2666
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
2667
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
2668
+ * stream is a [`WorkspaceReviewEntry`] timeline.
2783
2669
  */
2784
- 200: {
2670
+ 201: {
2785
2671
  headers: {
2786
2672
  [name: string]: unknown;
2787
2673
  };
2788
2674
  content: {
2789
- "application/json": components["schemas"]["WorkspaceThread"];
2675
+ "application/json": components["schemas"]["WorkspaceReview"];
2790
2676
  };
2791
2677
  };
2792
2678
  /**
@@ -2885,46 +2771,49 @@ interface paths {
2885
2771
  };
2886
2772
  };
2887
2773
  };
2774
+ delete?: never;
2775
+ options?: never;
2776
+ head?: never;
2777
+ patch?: never;
2888
2778
  trace?: never;
2889
2779
  };
2890
- "/workspaces/{workspaceId}/threads/{threadId}/close": {
2780
+ "/workspaces/{workspaceId}/reviews/{reviewId}": {
2891
2781
  parameters: {
2892
2782
  query?: never;
2893
2783
  header?: never;
2894
2784
  path?: never;
2895
2785
  cookie?: never;
2896
2786
  };
2897
- get?: never;
2898
- put?: never;
2899
2787
  /**
2900
- * Close a thread
2901
- * @description Closes a thread, ending the discussion. Requires ManageThreads.
2788
+ * Get a review
2789
+ * @description Returns a review by id. Requires ViewReviews.
2902
2790
  */
2903
- post: {
2791
+ get: {
2904
2792
  parameters: {
2905
2793
  query?: never;
2906
2794
  header?: never;
2907
2795
  path: {
2908
2796
  /** @description Workspace identifier. */
2909
2797
  workspaceId: string;
2910
- /** @description Unique identifier of the thread. */
2911
- threadId: string;
2798
+ /** @description Unique identifier of the review. */
2799
+ reviewId: string;
2912
2800
  };
2913
2801
  cookie?: never;
2914
2802
  };
2915
2803
  requestBody?: never;
2916
2804
  responses: {
2917
2805
  /**
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.
2806
+ * @description Response type for a review: a named discussion on a document with a manual
2807
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
2808
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
2809
+ * stream is a [`WorkspaceReviewEntry`] timeline.
2921
2810
  */
2922
2811
  200: {
2923
2812
  headers: {
2924
2813
  [name: string]: unknown;
2925
2814
  };
2926
2815
  content: {
2927
- "application/json": components["schemas"]["WorkspaceThread"];
2816
+ "application/json": components["schemas"]["WorkspaceReview"];
2928
2817
  };
2929
2818
  };
2930
2819
  /**
@@ -2986,9 +2875,11 @@ interface paths {
2986
2875
  };
2987
2876
  };
2988
2877
  };
2878
+ put?: never;
2879
+ post?: never;
2989
2880
  /**
2990
- * Reopen a thread
2991
- * @description Reopens a closed thread. Requires ManageThreads.
2881
+ * Delete a review
2882
+ * @description Soft-deletes a review and all of its comments. Requires ManageReviews.
2992
2883
  */
2993
2884
  delete: {
2994
2885
  parameters: {
@@ -2997,25 +2888,19 @@ interface paths {
2997
2888
  path: {
2998
2889
  /** @description Workspace identifier. */
2999
2890
  workspaceId: string;
3000
- /** @description Unique identifier of the thread. */
3001
- threadId: string;
2891
+ /** @description Unique identifier of the review. */
2892
+ reviewId: string;
3002
2893
  };
3003
2894
  cookie?: never;
3004
2895
  };
3005
2896
  requestBody?: never;
3006
2897
  responses: {
3007
- /**
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.
3011
- */
2898
+ /** @description no content */
3012
2899
  200: {
3013
2900
  headers: {
3014
2901
  [name: string]: unknown;
3015
2902
  };
3016
- content: {
3017
- "application/json": components["schemas"]["WorkspaceThread"];
3018
- };
2903
+ content?: never;
3019
2904
  };
3020
2905
  /**
3021
2906
  * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
@@ -3078,61 +2963,60 @@ interface paths {
3078
2963
  };
3079
2964
  options?: never;
3080
2965
  head?: never;
3081
- patch?: never;
3082
- trace?: never;
3083
- };
3084
- "/workspaces/{workspaceId}/threads/{threadId}/timeline": {
3085
- parameters: {
3086
- query?: never;
3087
- header?: never;
3088
- path?: never;
3089
- cookie?: never;
3090
- };
3091
2966
  /**
3092
- * List a thread's timeline
3093
- * @description Returns the thread's timeline comments and lifecycle events (opened, closed, reopened, renamed) interleaved, oldest first, with cursor pagination.
2967
+ * Rename a review
2968
+ * @description Sets a review's title. Requires ManageReviews.
3094
2969
  */
3095
- get: {
2970
+ patch: {
3096
2971
  parameters: {
3097
- query?: {
3098
- /**
3099
- * @description Cursor pointing to the last item of the previous page.
3100
- * Obtain this from the `nextCursor` field in the response.
3101
- */
3102
- after?: string;
3103
- /**
3104
- * @description Whether to include the total item count in the response's `total` field.
3105
- * Defaults to `false`, since counting is an extra query; set it to `true`
3106
- * only when the count is actually needed.
3107
- */
3108
- includeCount?: boolean;
3109
- /** @description The maximum number of records to return (1-100, default: 20). */
3110
- limit?: number;
3111
- };
2972
+ query?: never;
3112
2973
  header?: never;
3113
2974
  path: {
3114
2975
  /** @description Workspace identifier. */
3115
2976
  workspaceId: string;
3116
- /** @description Unique identifier of the thread. */
3117
- threadId: string;
2977
+ /** @description Unique identifier of the review. */
2978
+ reviewId: string;
3118
2979
  };
3119
2980
  cookie?: never;
3120
2981
  };
3121
- requestBody?: never;
2982
+ /** @description Request payload to rename a review (set its title). */
2983
+ requestBody: {
2984
+ content: {
2985
+ "application/json": components["schemas"]["RenameWorkspaceReview"];
2986
+ };
2987
+ };
3122
2988
  responses: {
3123
2989
  /**
3124
- * @description Generic paginated response wrapper.
3125
- *
3126
- * Provides a consistent structure for all paginated API responses with
3127
- * cursor-based pagination support. When `next_cursor` is present, there
3128
- * are more items to fetch.
2990
+ * @description Response type for a review: a named discussion on a document with a manual
2991
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
2992
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
2993
+ * stream is a [`WorkspaceReviewEntry`] timeline.
3129
2994
  */
3130
2995
  200: {
3131
2996
  headers: {
3132
2997
  [name: string]: unknown;
3133
2998
  };
3134
2999
  content: {
3135
- "application/json": components["schemas"]["WorkspaceThreadEntryPage"];
3000
+ "application/json": components["schemas"]["WorkspaceReview"];
3001
+ };
3002
+ };
3003
+ /**
3004
+ * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3005
+ * that [`Error`] renders to at the response boundary.
3006
+ *
3007
+ * It carries no builder logic — [`Error`] is the type handlers construct and
3008
+ * thread through `Result`, and it builds an `ErrorResponse` directly in its
3009
+ * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3010
+ * (`context` is logged, `status` sets the HTTP status line).
3011
+ *
3012
+ * [`Error`]: crate::response::Error
3013
+ */
3014
+ 400: {
3015
+ headers: {
3016
+ [name: string]: unknown;
3017
+ };
3018
+ content: {
3019
+ "application/json": components["schemas"]["ErrorResponse"];
3136
3020
  };
3137
3021
  };
3138
3022
  /**
@@ -3192,17 +3076,29 @@ interface paths {
3192
3076
  "application/json": components["schemas"]["ErrorResponse"];
3193
3077
  };
3194
3078
  };
3079
+ /** @description Expected request with `Content-Type: application/json` */
3080
+ 415: {
3081
+ headers: {
3082
+ [name: string]: unknown;
3083
+ };
3084
+ content: {
3085
+ "text/plain": string;
3086
+ };
3087
+ };
3088
+ /** @description Failed to deserialize the JSON body into the target type */
3089
+ 422: {
3090
+ headers: {
3091
+ [name: string]: unknown;
3092
+ };
3093
+ content: {
3094
+ "text/plain": string;
3095
+ };
3096
+ };
3195
3097
  };
3196
3098
  };
3197
- put?: never;
3198
- post?: never;
3199
- delete?: never;
3200
- options?: never;
3201
- head?: never;
3202
- patch?: never;
3203
3099
  trace?: never;
3204
3100
  };
3205
- "/workspaces/{workspaceId}/threads/{threadId}/comments": {
3101
+ "/workspaces/{workspaceId}/reviews/{reviewId}/comments": {
3206
3102
  parameters: {
3207
3103
  query?: never;
3208
3104
  header?: never;
@@ -3213,7 +3109,7 @@ interface paths {
3213
3109
  put?: never;
3214
3110
  /**
3215
3111
  * Post a comment
3216
- * @description Posts a comment (message) in a thread. @username mentions notify those members. Requires the Review permission. Returns 409 if the thread is closed.
3112
+ * @description Posts a comment (message) in a review. @username mentions notify those members. Requires the Review permission. Returns 409 if the review is resolved.
3217
3113
  */
3218
3114
  post: {
3219
3115
  parameters: {
@@ -3222,13 +3118,13 @@ interface paths {
3222
3118
  path: {
3223
3119
  /** @description Workspace identifier. */
3224
3120
  workspaceId: string;
3225
- /** @description Unique identifier of the thread. */
3226
- threadId: string;
3121
+ /** @description Unique identifier of the review. */
3122
+ reviewId: string;
3227
3123
  };
3228
3124
  cookie?: never;
3229
3125
  };
3230
3126
  /**
3231
- * @description Request payload to post a comment (message) in a thread.
3127
+ * @description Request payload to post a comment (message) in a review.
3232
3128
  *
3233
3129
  * `@username` mentions in the body notify those workspace members.
3234
3130
  */
@@ -3238,7 +3134,7 @@ interface paths {
3238
3134
  };
3239
3135
  };
3240
3136
  responses: {
3241
- /** @description Response type for a comment: one message within a thread. */
3137
+ /** @description Response type for a comment: one message within a review's discussion. */
3242
3138
  201: {
3243
3139
  headers: {
3244
3140
  [name: string]: unknown;
@@ -3399,339 +3295,9 @@ interface paths {
3399
3295
  /** @description no content */
3400
3296
  200: {
3401
3297
  headers: {
3402
- [name: string]: unknown;
3403
- };
3404
- content?: never;
3405
- };
3406
- /**
3407
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3408
- * that [`Error`] renders to at the response boundary.
3409
- *
3410
- * It carries no builder logic — [`Error`] is the type handlers construct and
3411
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3412
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3413
- * (`context` is logged, `status` sets the HTTP status line).
3414
- *
3415
- * [`Error`]: crate::response::Error
3416
- */
3417
- 401: {
3418
- headers: {
3419
- [name: string]: unknown;
3420
- };
3421
- content: {
3422
- "application/json": components["schemas"]["ErrorResponse"];
3423
- };
3424
- };
3425
- /**
3426
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3427
- * that [`Error`] renders to at the response boundary.
3428
- *
3429
- * It carries no builder logic — [`Error`] is the type handlers construct and
3430
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3431
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3432
- * (`context` is logged, `status` sets the HTTP status line).
3433
- *
3434
- * [`Error`]: crate::response::Error
3435
- */
3436
- 403: {
3437
- headers: {
3438
- [name: string]: unknown;
3439
- };
3440
- content: {
3441
- "application/json": components["schemas"]["ErrorResponse"];
3442
- };
3443
- };
3444
- /**
3445
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3446
- * that [`Error`] renders to at the response boundary.
3447
- *
3448
- * It carries no builder logic — [`Error`] is the type handlers construct and
3449
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3450
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3451
- * (`context` is logged, `status` sets the HTTP status line).
3452
- *
3453
- * [`Error`]: crate::response::Error
3454
- */
3455
- 404: {
3456
- headers: {
3457
- [name: string]: unknown;
3458
- };
3459
- content: {
3460
- "application/json": components["schemas"]["ErrorResponse"];
3461
- };
3462
- };
3463
- };
3464
- };
3465
- options?: never;
3466
- head?: never;
3467
- /**
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"][];
3298
+ [name: string]: unknown;
3734
3299
  };
3300
+ content?: never;
3735
3301
  };
3736
3302
  /**
3737
3303
  * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
@@ -3792,44 +3358,38 @@ interface paths {
3792
3358
  };
3793
3359
  };
3794
3360
  };
3795
- put?: never;
3361
+ options?: never;
3362
+ head?: never;
3796
3363
  /**
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.
3364
+ * Edit a comment
3365
+ * @description Edits a comment's body. Only the author may edit their own comment.
3799
3366
  */
3800
- post: {
3367
+ patch: {
3801
3368
  parameters: {
3802
3369
  query?: never;
3803
3370
  header?: never;
3804
3371
  path: {
3805
3372
  /** @description Workspace identifier. */
3806
3373
  workspaceId: string;
3807
- /** @description Unique identifier of the document. */
3808
- documentId: string;
3374
+ /** @description Unique identifier of the comment. */
3375
+ commentId: string;
3809
3376
  };
3810
3377
  cookie?: never;
3811
3378
  };
3812
- /** @description Request payload to open a review on a document. */
3379
+ /** @description Request payload to edit a comment's body. */
3813
3380
  requestBody: {
3814
3381
  content: {
3815
- "application/json": components["schemas"]["CreateWorkspaceReview"];
3382
+ "application/json": components["schemas"]["UpdateWorkspaceComment"];
3816
3383
  };
3817
3384
  };
3818
3385
  responses: {
3819
- /**
3820
- * @description Response type for a document's review.
3821
- *
3822
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
3823
- * document), opened explicitly. It owns a discussion thread (referenced by
3824
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
3825
- * `assignees` (0..N reviewers).
3826
- */
3827
- 201: {
3386
+ /** @description Response type for a comment: one message within a review's discussion. */
3387
+ 200: {
3828
3388
  headers: {
3829
3389
  [name: string]: unknown;
3830
3390
  };
3831
3391
  content: {
3832
- "application/json": components["schemas"]["WorkspaceReview"];
3392
+ "application/json": components["schemas"]["WorkspaceComment"];
3833
3393
  };
3834
3394
  };
3835
3395
  /**
@@ -3928,13 +3488,9 @@ interface paths {
3928
3488
  };
3929
3489
  };
3930
3490
  };
3931
- delete?: never;
3932
- options?: never;
3933
- head?: never;
3934
- patch?: never;
3935
3491
  trace?: never;
3936
3492
  };
3937
- "/workspaces/{workspaceId}/reviews/{reviewId}": {
3493
+ "/workspaces/{workspaceId}/reviews/{reviewId}/timeline": {
3938
3494
  parameters: {
3939
3495
  query?: never;
3940
3496
  header?: never;
@@ -3942,12 +3498,26 @@ interface paths {
3942
3498
  cookie?: never;
3943
3499
  };
3944
3500
  /**
3945
- * Get a review
3946
- * @description Returns a review by id. Requires ViewReviews.
3501
+ * List a review's timeline
3502
+ * @description Returns the review's timeline — comments and lifecycle events (opened, renamed, linked, assigned, verified, reopened) interleaved, oldest first, with cursor pagination. Requires ViewReviews.
3947
3503
  */
3948
3504
  get: {
3949
3505
  parameters: {
3950
- query?: never;
3506
+ query?: {
3507
+ /**
3508
+ * @description Cursor pointing to the last item of the previous page.
3509
+ * Obtain this from the `nextCursor` field in the response.
3510
+ */
3511
+ after?: string;
3512
+ /**
3513
+ * @description Whether to include the total item count in the response's `total` field.
3514
+ * Defaults to `false`, since counting is an extra query; set it to `true`
3515
+ * only when the count is actually needed.
3516
+ */
3517
+ includeCount?: boolean;
3518
+ /** @description The maximum number of records to return (1-100, default: 20). */
3519
+ limit?: number;
3520
+ };
3951
3521
  header?: never;
3952
3522
  path: {
3953
3523
  /** @description Workspace identifier. */
@@ -3960,19 +3530,18 @@ interface paths {
3960
3530
  requestBody?: never;
3961
3531
  responses: {
3962
3532
  /**
3963
- * @description Response type for a document's review.
3533
+ * @description Generic paginated response wrapper.
3964
3534
  *
3965
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
3966
- * document), opened explicitly. It owns a discussion thread (referenced by
3967
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
3968
- * `assignees` (0..N reviewers).
3535
+ * Provides a consistent structure for all paginated API responses with
3536
+ * cursor-based pagination support. When `next_cursor` is present, there
3537
+ * are more items to fetch.
3969
3538
  */
3970
3539
  200: {
3971
3540
  headers: {
3972
3541
  [name: string]: unknown;
3973
3542
  };
3974
3543
  content: {
3975
- "application/json": components["schemas"]["WorkspaceReview"];
3544
+ "application/json": components["schemas"]["WorkspaceReviewEntryPage"];
3976
3545
  };
3977
3546
  };
3978
3547
  /**
@@ -4042,7 +3611,7 @@ interface paths {
4042
3611
  patch?: never;
4043
3612
  trace?: never;
4044
3613
  };
4045
- "/workspaces/{workspaceId}/reviews/{reviewId}/timeline": {
3614
+ "/workspaces/{workspaceId}/reviews/{reviewId}/events": {
4046
3615
  parameters: {
4047
3616
  query?: never;
4048
3617
  header?: never;
@@ -4050,8 +3619,8 @@ interface paths {
4050
3619
  cookie?: never;
4051
3620
  };
4052
3621
  /**
4053
- * List a review's timeline
4054
- * @description Returns a review's activity timeline (links, assignment, verification, reopen), oldest first. Requires ViewReviews.
3622
+ * List a review's events
3623
+ * @description Returns a review's activity events only (links, assignment, verification, reopen), oldest first. Requires ViewReviews.
4055
3624
  */
4056
3625
  get: {
4057
3626
  parameters: {
@@ -4191,12 +3760,10 @@ interface paths {
4191
3760
  requestBody?: never;
4192
3761
  responses: {
4193
3762
  /**
4194
- * @description Response type for a document's review.
4195
- *
4196
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
4197
- * document), opened explicitly. It owns a discussion thread (referenced by
4198
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
4199
- * `assignees` (0..N reviewers).
3763
+ * @description Response type for a review: a named discussion on a document with a manual
3764
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
3765
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
3766
+ * stream is a [`WorkspaceReviewEntry`] timeline.
4200
3767
  */
4201
3768
  200: {
4202
3769
  headers: {
@@ -4318,12 +3885,10 @@ interface paths {
4318
3885
  requestBody?: never;
4319
3886
  responses: {
4320
3887
  /**
4321
- * @description Response type for a document's review.
4322
- *
4323
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
4324
- * document), opened explicitly. It owns a discussion thread (referenced by
4325
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
4326
- * `assignees` (0..N reviewers).
3888
+ * @description Response type for a review: a named discussion on a document with a manual
3889
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
3890
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
3891
+ * stream is a [`WorkspaceReviewEntry`] timeline.
4327
3892
  */
4328
3893
  200: {
4329
3894
  headers: {
@@ -4428,12 +3993,10 @@ interface paths {
4428
3993
  requestBody?: never;
4429
3994
  responses: {
4430
3995
  /**
4431
- * @description Response type for a document's review.
4432
- *
4433
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
4434
- * document), opened explicitly. It owns a discussion thread (referenced by
4435
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
4436
- * `assignees` (0..N reviewers).
3996
+ * @description Response type for a review: a named discussion on a document with a manual
3997
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
3998
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
3999
+ * stream is a [`WorkspaceReviewEntry`] timeline.
4437
4000
  */
4438
4001
  200: {
4439
4002
  headers: {
@@ -4523,12 +4086,10 @@ interface paths {
4523
4086
  requestBody?: never;
4524
4087
  responses: {
4525
4088
  /**
4526
- * @description Response type for a document's review.
4527
- *
4528
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
4529
- * document), opened explicitly. It owns a discussion thread (referenced by
4530
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
4531
- * `assignees` (0..N reviewers).
4089
+ * @description Response type for a review: a named discussion on a document with a manual
4090
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
4091
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
4092
+ * stream is a [`WorkspaceReviewEntry`] timeline.
4532
4093
  */
4533
4094
  200: {
4534
4095
  headers: {
@@ -4632,12 +4193,10 @@ interface paths {
4632
4193
  requestBody?: never;
4633
4194
  responses: {
4634
4195
  /**
4635
- * @description Response type for a document's review.
4636
- *
4637
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
4638
- * document), opened explicitly. It owns a discussion thread (referenced by
4639
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
4640
- * `assignees` (0..N reviewers).
4196
+ * @description Response type for a review: a named discussion on a document with a manual
4197
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
4198
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
4199
+ * stream is a [`WorkspaceReviewEntry`] timeline.
4641
4200
  */
4642
4201
  200: {
4643
4202
  headers: {
@@ -4742,12 +4301,10 @@ interface paths {
4742
4301
  requestBody?: never;
4743
4302
  responses: {
4744
4303
  /**
4745
- * @description Response type for a document's review.
4746
- *
4747
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
4748
- * document), opened explicitly. It owns a discussion thread (referenced by
4749
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
4750
- * `assignees` (0..N reviewers).
4304
+ * @description Response type for a review: a named discussion on a document with a manual
4305
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
4306
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
4307
+ * stream is a [`WorkspaceReviewEntry`] timeline.
4751
4308
  */
4752
4309
  200: {
4753
4310
  headers: {
@@ -8593,7 +8150,7 @@ interface paths {
8593
8150
  };
8594
8151
  trace?: never;
8595
8152
  };
8596
- "/workspaces/{workspaceId}/pipelines/detections": {
8153
+ "/workspaces/{workspaceId}/pipelines/{pipelineId}/detections": {
8597
8154
  parameters: {
8598
8155
  query?: never;
8599
8156
  header?: never;
@@ -8601,8 +8158,8 @@ interface paths {
8601
8158
  cookie?: never;
8602
8159
  };
8603
8160
  /**
8604
- * List workspace detections
8605
- * @description Returns all detections across the workspace, most recent first, with optional status, document, pipeline, trigger-account, and trigger-type filters.
8161
+ * List pipeline detections
8162
+ * @description Returns detections for a specific pipeline, most recent first, with optional status, document, trigger-account, and trigger-type filters.
8606
8163
  */
8607
8164
  get: {
8608
8165
  parameters: {
@@ -8622,8 +8179,6 @@ interface paths {
8622
8179
  limit?: number;
8623
8180
  /** @description Filter by the source document the detection analyzes. */
8624
8181
  documentId?: string;
8625
- /** @description Filter by the owning pipeline. */
8626
- pipelineId?: string;
8627
8182
  /** @description Filter by detection status. */
8628
8183
  status?: components["schemas"]["DetectionStatus"];
8629
8184
  /** @description Filter by how the detection was initiated (user vs system). */
@@ -8635,6 +8190,8 @@ interface paths {
8635
8190
  path: {
8636
8191
  /** @description Workspace identifier. */
8637
8192
  workspaceId: string;
8193
+ /** @description Id of the pipeline. */
8194
+ pipelineId: string;
8638
8195
  };
8639
8196
  cookie?: never;
8640
8197
  };
@@ -8715,49 +8272,13 @@ interface paths {
8715
8272
  };
8716
8273
  };
8717
8274
  put?: never;
8718
- post?: never;
8719
- delete?: never;
8720
- options?: never;
8721
- head?: never;
8722
- patch?: never;
8723
- trace?: never;
8724
- };
8725
- "/workspaces/{workspaceId}/pipelines/{pipelineId}/detections": {
8726
- parameters: {
8727
- query?: never;
8728
- header?: never;
8729
- path?: never;
8730
- cookie?: never;
8731
- };
8732
8275
  /**
8733
- * List pipeline detections
8734
- * @description Returns detections for a specific pipeline, most recent first, with optional status, document, trigger-account, and trigger-type filters.
8276
+ * Start a detection
8277
+ * @description Starts analysis for a document and returns 202 with the detection in the `pending` state; the analysis runs in the background. Watch the detection's status via the SSE stream at `.../detections/{detectionId}/events` (or re-read the detection) and fetch the findings from `.../detections/{detectionId}/analysis/` once it reaches `complete`. A repeated Idempotency-Key returns the existing detection.
8735
8278
  */
8736
- get: {
8279
+ post: {
8737
8280
  parameters: {
8738
- query?: {
8739
- /**
8740
- * @description Cursor pointing to the last item of the previous page.
8741
- * Obtain this from the `nextCursor` field in the response.
8742
- */
8743
- after?: string;
8744
- /**
8745
- * @description Whether to include the total item count in the response's `total` field.
8746
- * Defaults to `false`, since counting is an extra query; set it to `true`
8747
- * only when the count is actually needed.
8748
- */
8749
- includeCount?: boolean;
8750
- /** @description The maximum number of records to return (1-100, default: 20). */
8751
- limit?: number;
8752
- /** @description Filter by the source document the detection analyzes. */
8753
- documentId?: string;
8754
- /** @description Filter by detection status. */
8755
- status?: components["schemas"]["DetectionStatus"];
8756
- /** @description Filter by how the detection was initiated (user vs system). */
8757
- triggerType?: components["schemas"]["PipelineTriggerType"];
8758
- /** @description Filter by the account that triggered the detection. */
8759
- triggeredBy?: string;
8760
- };
8281
+ query?: never;
8761
8282
  header?: never;
8762
8283
  path: {
8763
8284
  /** @description Workspace identifier. */
@@ -8767,21 +8288,67 @@ interface paths {
8767
8288
  };
8768
8289
  cookie?: never;
8769
8290
  };
8770
- requestBody?: never;
8291
+ /**
8292
+ * @description Request payload to start a detection over a document.
8293
+ *
8294
+ * Analyzes the document with the pipeline's configuration and returns the
8295
+ * detection, which holds the findings for review before redaction.
8296
+ */
8297
+ requestBody: {
8298
+ content: {
8299
+ "application/json": components["schemas"]["CreateWorkspaceDetection"];
8300
+ };
8301
+ };
8771
8302
  responses: {
8772
8303
  /**
8773
- * @description Generic paginated response wrapper.
8304
+ * @description Response type for a detection.
8774
8305
  *
8775
- * Provides a consistent structure for all paginated API responses with
8776
- * cursor-based pagination support. When `next_cursor` is present, there
8777
- * are more items to fetch.
8306
+ * A detection is addressed by its own opaque id; the owning pipeline and
8307
+ * workspace handles are carried for context. Redacted outputs are not here — a
8308
+ * detection produces many redactions, each fetched from its `redactions`
8309
+ * endpoint.
8778
8310
  */
8779
8311
  200: {
8780
8312
  headers: {
8781
8313
  [name: string]: unknown;
8782
8314
  };
8783
8315
  content: {
8784
- "application/json": components["schemas"]["WorkspaceDetectionPage"];
8316
+ "application/json": components["schemas"]["WorkspaceDetection"];
8317
+ };
8318
+ };
8319
+ /**
8320
+ * @description Response type for a detection.
8321
+ *
8322
+ * A detection is addressed by its own opaque id; the owning pipeline and
8323
+ * workspace handles are carried for context. Redacted outputs are not here — a
8324
+ * detection produces many redactions, each fetched from its `redactions`
8325
+ * endpoint.
8326
+ */
8327
+ 202: {
8328
+ headers: {
8329
+ [name: string]: unknown;
8330
+ };
8331
+ content: {
8332
+ "application/json": components["schemas"]["WorkspaceDetection"];
8333
+ };
8334
+ };
8335
+ /**
8336
+ * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
8337
+ * that [`Error`] renders to at the response boundary.
8338
+ *
8339
+ * It carries no builder logic — [`Error`] is the type handlers construct and
8340
+ * thread through `Result`, and it builds an `ErrorResponse` directly in its
8341
+ * `IntoResponse` impl. `context` and `status` are not part of the JSON body
8342
+ * (`context` is logged, `status` sets the HTTP status line).
8343
+ *
8344
+ * [`Error`]: crate::response::Error
8345
+ */
8346
+ 400: {
8347
+ headers: {
8348
+ [name: string]: unknown;
8349
+ };
8350
+ content: {
8351
+ "application/json": components["schemas"]["ErrorResponse"];
8785
8352
  };
8786
8353
  };
8787
8354
  /**
@@ -8841,86 +8408,111 @@ interface paths {
8841
8408
  "application/json": components["schemas"]["ErrorResponse"];
8842
8409
  };
8843
8410
  };
8411
+ /**
8412
+ * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
8413
+ * that [`Error`] renders to at the response boundary.
8414
+ *
8415
+ * It carries no builder logic — [`Error`] is the type handlers construct and
8416
+ * thread through `Result`, and it builds an `ErrorResponse` directly in its
8417
+ * `IntoResponse` impl. `context` and `status` are not part of the JSON body
8418
+ * (`context` is logged, `status` sets the HTTP status line).
8419
+ *
8420
+ * [`Error`]: crate::response::Error
8421
+ */
8422
+ 409: {
8423
+ headers: {
8424
+ [name: string]: unknown;
8425
+ };
8426
+ content: {
8427
+ "application/json": components["schemas"]["ErrorResponse"];
8428
+ };
8429
+ };
8430
+ /** @description Expected request with `Content-Type: application/json` */
8431
+ 415: {
8432
+ headers: {
8433
+ [name: string]: unknown;
8434
+ };
8435
+ content: {
8436
+ "text/plain": string;
8437
+ };
8438
+ };
8439
+ /** @description Failed to deserialize the JSON body into the target type */
8440
+ 422: {
8441
+ headers: {
8442
+ [name: string]: unknown;
8443
+ };
8444
+ content: {
8445
+ "text/plain": string;
8446
+ };
8447
+ };
8844
8448
  };
8845
8449
  };
8846
- put?: never;
8450
+ delete?: never;
8451
+ options?: never;
8452
+ head?: never;
8453
+ patch?: never;
8454
+ trace?: never;
8455
+ };
8456
+ "/workspaces/{workspaceId}/detections": {
8457
+ parameters: {
8458
+ query?: never;
8459
+ header?: never;
8460
+ path?: never;
8461
+ cookie?: never;
8462
+ };
8847
8463
  /**
8848
- * Start a detection
8849
- * @description Starts analysis for a document and returns 202 with the detection in the `pending` state; the analysis runs in the background. Watch the detection's status via the SSE stream at `.../detections/{detectionId}/events` (or re-read the detection) and fetch the findings from `.../detections/{detectionId}/analysis/` once it reaches `complete`. A repeated Idempotency-Key returns the existing detection.
8464
+ * List workspace detections
8465
+ * @description Returns all detections across the workspace, most recent first, with optional status, document, pipeline, trigger-account, and trigger-type filters.
8850
8466
  */
8851
- post: {
8467
+ get: {
8852
8468
  parameters: {
8853
- query?: never;
8469
+ query?: {
8470
+ /**
8471
+ * @description Cursor pointing to the last item of the previous page.
8472
+ * Obtain this from the `nextCursor` field in the response.
8473
+ */
8474
+ after?: string;
8475
+ /**
8476
+ * @description Whether to include the total item count in the response's `total` field.
8477
+ * Defaults to `false`, since counting is an extra query; set it to `true`
8478
+ * only when the count is actually needed.
8479
+ */
8480
+ includeCount?: boolean;
8481
+ /** @description The maximum number of records to return (1-100, default: 20). */
8482
+ limit?: number;
8483
+ /** @description Filter by the source document the detection analyzes. */
8484
+ documentId?: string;
8485
+ /** @description Filter by the owning pipeline. */
8486
+ pipelineId?: string;
8487
+ /** @description Filter by detection status. */
8488
+ status?: components["schemas"]["DetectionStatus"];
8489
+ /** @description Filter by how the detection was initiated (user vs system). */
8490
+ triggerType?: components["schemas"]["PipelineTriggerType"];
8491
+ /** @description Filter by the account that triggered the detection. */
8492
+ triggeredBy?: string;
8493
+ };
8854
8494
  header?: never;
8855
8495
  path: {
8856
8496
  /** @description Workspace identifier. */
8857
8497
  workspaceId: string;
8858
- /** @description Id of the pipeline. */
8859
- pipelineId: string;
8860
8498
  };
8861
8499
  cookie?: never;
8862
8500
  };
8863
- /**
8864
- * @description Request payload to start a detection over a document.
8865
- *
8866
- * Analyzes the document with the pipeline's configuration and returns the
8867
- * detection, which holds the findings for review before redaction.
8868
- */
8869
- requestBody: {
8870
- content: {
8871
- "application/json": components["schemas"]["CreateWorkspaceDetection"];
8872
- };
8873
- };
8501
+ requestBody?: never;
8874
8502
  responses: {
8875
8503
  /**
8876
- * @description Response type for a detection.
8504
+ * @description Generic paginated response wrapper.
8877
8505
  *
8878
- * A detection is addressed by its own opaque id; the owning pipeline and
8879
- * workspace handles are carried for context. Redacted outputs are not here — a
8880
- * detection produces many redactions, each fetched from its `redactions`
8881
- * endpoint.
8506
+ * Provides a consistent structure for all paginated API responses with
8507
+ * cursor-based pagination support. When `next_cursor` is present, there
8508
+ * are more items to fetch.
8882
8509
  */
8883
8510
  200: {
8884
8511
  headers: {
8885
8512
  [name: string]: unknown;
8886
8513
  };
8887
8514
  content: {
8888
- "application/json": components["schemas"]["WorkspaceDetection"];
8889
- };
8890
- };
8891
- /**
8892
- * @description Response type for a detection.
8893
- *
8894
- * A detection is addressed by its own opaque id; the owning pipeline and
8895
- * workspace handles are carried for context. Redacted outputs are not here — a
8896
- * detection produces many redactions, each fetched from its `redactions`
8897
- * endpoint.
8898
- */
8899
- 202: {
8900
- headers: {
8901
- [name: string]: unknown;
8902
- };
8903
- content: {
8904
- "application/json": components["schemas"]["WorkspaceDetection"];
8905
- };
8906
- };
8907
- /**
8908
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
8909
- * that [`Error`] renders to at the response boundary.
8910
- *
8911
- * It carries no builder logic — [`Error`] is the type handlers construct and
8912
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
8913
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
8914
- * (`context` is logged, `status` sets the HTTP status line).
8915
- *
8916
- * [`Error`]: crate::response::Error
8917
- */
8918
- 400: {
8919
- headers: {
8920
- [name: string]: unknown;
8921
- };
8922
- content: {
8923
- "application/json": components["schemas"]["ErrorResponse"];
8515
+ "application/json": components["schemas"]["WorkspaceDetectionPage"];
8924
8516
  };
8925
8517
  };
8926
8518
  /**
@@ -8980,59 +8572,8 @@ interface paths {
8980
8572
  "application/json": components["schemas"]["ErrorResponse"];
8981
8573
  };
8982
8574
  };
8983
- /**
8984
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
8985
- * that [`Error`] renders to at the response boundary.
8986
- *
8987
- * It carries no builder logic — [`Error`] is the type handlers construct and
8988
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
8989
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
8990
- * (`context` is logged, `status` sets the HTTP status line).
8991
- *
8992
- * [`Error`]: crate::response::Error
8993
- */
8994
- 409: {
8995
- headers: {
8996
- [name: string]: unknown;
8997
- };
8998
- content: {
8999
- "application/json": components["schemas"]["ErrorResponse"];
9000
- };
9001
- };
9002
- /** @description Expected request with `Content-Type: application/json` */
9003
- 415: {
9004
- headers: {
9005
- [name: string]: unknown;
9006
- };
9007
- content: {
9008
- "text/plain": string;
9009
- };
9010
- };
9011
- /** @description Failed to deserialize the JSON body into the target type */
9012
- 422: {
9013
- headers: {
9014
- [name: string]: unknown;
9015
- };
9016
- content: {
9017
- "text/plain": string;
9018
- };
9019
- };
9020
8575
  };
9021
8576
  };
9022
- delete?: never;
9023
- options?: never;
9024
- head?: never;
9025
- patch?: never;
9026
- trace?: never;
9027
- };
9028
- "/workspaces/{workspaceId}/detections": {
9029
- parameters: {
9030
- query?: never;
9031
- header?: never;
9032
- path?: never;
9033
- cookie?: never;
9034
- };
9035
- get?: never;
9036
8577
  put?: never;
9037
8578
  /**
9038
8579
  * Start an ad-hoc detection
@@ -10066,6 +9607,129 @@ interface paths {
10066
9607
  patch?: never;
10067
9608
  trace?: never;
10068
9609
  };
9610
+ "/workspaces/{workspaceId}/redactions": {
9611
+ parameters: {
9612
+ query?: never;
9613
+ header?: never;
9614
+ path?: never;
9615
+ cookie?: never;
9616
+ };
9617
+ /**
9618
+ * List workspace redactions
9619
+ * @description Returns all redactions across the workspace, most recent first, cursor-paginated, with optional detection and document filters. Each redaction is one redact pass with its own reviewer edits, output document, and review audit.
9620
+ */
9621
+ get: {
9622
+ parameters: {
9623
+ query?: {
9624
+ /**
9625
+ * @description Cursor pointing to the last item of the previous page.
9626
+ * Obtain this from the `nextCursor` field in the response.
9627
+ */
9628
+ after?: string;
9629
+ /**
9630
+ * @description Whether to include the total item count in the response's `total` field.
9631
+ * Defaults to `false`, since counting is an extra query; set it to `true`
9632
+ * only when the count is actually needed.
9633
+ */
9634
+ includeCount?: boolean;
9635
+ /** @description The maximum number of records to return (1-100, default: 20). */
9636
+ limit?: number;
9637
+ /** @description Filter to the redactions produced from a specific detection. */
9638
+ detectionId?: string;
9639
+ /** @description Filter to the redactions of detections analyzing a specific document. */
9640
+ documentId?: string;
9641
+ };
9642
+ header?: never;
9643
+ path: {
9644
+ /** @description Workspace identifier. */
9645
+ workspaceId: string;
9646
+ };
9647
+ cookie?: never;
9648
+ };
9649
+ requestBody?: never;
9650
+ responses: {
9651
+ /**
9652
+ * @description Generic paginated response wrapper.
9653
+ *
9654
+ * Provides a consistent structure for all paginated API responses with
9655
+ * cursor-based pagination support. When `next_cursor` is present, there
9656
+ * are more items to fetch.
9657
+ */
9658
+ 200: {
9659
+ headers: {
9660
+ [name: string]: unknown;
9661
+ };
9662
+ content: {
9663
+ "application/json": components["schemas"]["WorkspaceRedactionResultPage"];
9664
+ };
9665
+ };
9666
+ /**
9667
+ * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
9668
+ * that [`Error`] renders to at the response boundary.
9669
+ *
9670
+ * It carries no builder logic — [`Error`] is the type handlers construct and
9671
+ * thread through `Result`, and it builds an `ErrorResponse` directly in its
9672
+ * `IntoResponse` impl. `context` and `status` are not part of the JSON body
9673
+ * (`context` is logged, `status` sets the HTTP status line).
9674
+ *
9675
+ * [`Error`]: crate::response::Error
9676
+ */
9677
+ 401: {
9678
+ headers: {
9679
+ [name: string]: unknown;
9680
+ };
9681
+ content: {
9682
+ "application/json": components["schemas"]["ErrorResponse"];
9683
+ };
9684
+ };
9685
+ /**
9686
+ * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
9687
+ * that [`Error`] renders to at the response boundary.
9688
+ *
9689
+ * It carries no builder logic — [`Error`] is the type handlers construct and
9690
+ * thread through `Result`, and it builds an `ErrorResponse` directly in its
9691
+ * `IntoResponse` impl. `context` and `status` are not part of the JSON body
9692
+ * (`context` is logged, `status` sets the HTTP status line).
9693
+ *
9694
+ * [`Error`]: crate::response::Error
9695
+ */
9696
+ 403: {
9697
+ headers: {
9698
+ [name: string]: unknown;
9699
+ };
9700
+ content: {
9701
+ "application/json": components["schemas"]["ErrorResponse"];
9702
+ };
9703
+ };
9704
+ /**
9705
+ * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
9706
+ * that [`Error`] renders to at the response boundary.
9707
+ *
9708
+ * It carries no builder logic — [`Error`] is the type handlers construct and
9709
+ * thread through `Result`, and it builds an `ErrorResponse` directly in its
9710
+ * `IntoResponse` impl. `context` and `status` are not part of the JSON body
9711
+ * (`context` is logged, `status` sets the HTTP status line).
9712
+ *
9713
+ * [`Error`]: crate::response::Error
9714
+ */
9715
+ 404: {
9716
+ headers: {
9717
+ [name: string]: unknown;
9718
+ };
9719
+ content: {
9720
+ "application/json": components["schemas"]["ErrorResponse"];
9721
+ };
9722
+ };
9723
+ };
9724
+ };
9725
+ put?: never;
9726
+ post?: never;
9727
+ delete?: never;
9728
+ options?: never;
9729
+ head?: never;
9730
+ patch?: never;
9731
+ trace?: never;
9732
+ };
10069
9733
  "/workspaces/{workspaceId}/redactions/{redactionId}/review": {
10070
9734
  parameters: {
10071
9735
  query?: never;
@@ -14893,6 +14557,26 @@ interface components {
14893
14557
  data: components["schemas"]["DocumentActivityParams"];
14894
14558
  /** @constant */
14895
14559
  type: "document.deleted";
14560
+ } | {
14561
+ data: components["schemas"]["ReviewActivityParams"];
14562
+ /** @constant */
14563
+ type: "review.opened";
14564
+ } | {
14565
+ data: components["schemas"]["ReviewActivityParams"];
14566
+ /** @constant */
14567
+ type: "review.reopened";
14568
+ } | {
14569
+ data: components["schemas"]["ReviewActivityParams"];
14570
+ /** @constant */
14571
+ type: "review.renamed";
14572
+ } | {
14573
+ data: components["schemas"]["ReviewActivityParams"];
14574
+ /** @constant */
14575
+ type: "review.deleted";
14576
+ } | {
14577
+ data: components["schemas"]["ReviewCommentActivityParams"];
14578
+ /** @constant */
14579
+ type: "review.comment.created";
14896
14580
  } | {
14897
14581
  data: components["schemas"]["ReviewActivityParams"];
14898
14582
  /** @constant */
@@ -14942,33 +14626,9 @@ interface components {
14942
14626
  /** @constant */
14943
14627
  type: "policy.updated";
14944
14628
  } | {
14945
- data: components["schemas"]["PolicyActivityParams"];
14946
- /** @constant */
14947
- type: "policy.deleted";
14948
- } | {
14949
- data: components["schemas"]["ThreadActivityParams"];
14950
- /** @constant */
14951
- type: "thread.opened";
14952
- } | {
14953
- data: components["schemas"]["ThreadActivityParams"];
14954
- /** @constant */
14955
- type: "thread.closed";
14956
- } | {
14957
- data: components["schemas"]["ThreadActivityParams"];
14958
- /** @constant */
14959
- type: "thread.reopened";
14960
- } | {
14961
- data: components["schemas"]["ThreadActivityParams"];
14962
- /** @constant */
14963
- type: "thread.renamed";
14964
- } | {
14965
- data: components["schemas"]["ThreadActivityParams"];
14966
- /** @constant */
14967
- type: "thread.deleted";
14968
- } | {
14969
- data: components["schemas"]["ThreadCommentActivityParams"];
14629
+ data: components["schemas"]["PolicyActivityParams"];
14970
14630
  /** @constant */
14971
- type: "thread.comment.created";
14631
+ type: "policy.deleted";
14972
14632
  };
14973
14633
  /**
14974
14634
  * @description The type of activity performed in a workspace, for audit logging.
@@ -14976,7 +14636,7 @@ interface components {
14976
14636
  * Corresponds to the `ACTIVITY_TYPE` `PostgreSQL` enum and categorizes the
14977
14637
  * activities that occur within workspaces for a comprehensive audit trail.
14978
14638
  */
14979
- ActivityType: "workspace.created" | "workspace.updated" | "workspace.deleted" | "member.added" | "member.updated" | "member.deleted" | "invite.created" | "invite.accepted" | "invite.declined" | "invite.canceled" | "connection.created" | "connection.updated" | "connection.deleted" | "connection.sync.started" | "connection.sync.completed" | "connection.sync.failed" | "provider.created" | "provider.updated" | "provider.deleted" | "webhook.created" | "webhook.updated" | "webhook.deleted" | "document.created" | "document.updated" | "document.deleted" | "review.verified" | "review.assigned" | "review.unassigned" | "pipeline.created" | "pipeline.updated" | "pipeline.deleted" | "pipeline.detection.started" | "pipeline.detection.completed" | "pipeline.detection.failed" | "pipeline.redaction.created" | "policy.created" | "policy.updated" | "policy.deleted" | "thread.opened" | "thread.closed" | "thread.reopened" | "thread.renamed" | "thread.deleted" | "thread.comment.created";
14639
+ ActivityType: "workspace.created" | "workspace.updated" | "workspace.deleted" | "member.added" | "member.updated" | "member.deleted" | "invite.created" | "invite.accepted" | "invite.declined" | "invite.canceled" | "connection.created" | "connection.updated" | "connection.deleted" | "connection.sync.started" | "connection.sync.completed" | "connection.sync.failed" | "provider.created" | "provider.updated" | "provider.deleted" | "webhook.created" | "webhook.updated" | "webhook.deleted" | "document.created" | "document.updated" | "document.deleted" | "review.opened" | "review.reopened" | "review.renamed" | "review.deleted" | "review.comment.created" | "review.verified" | "review.assigned" | "review.unassigned" | "pipeline.created" | "pipeline.updated" | "pipeline.deleted" | "pipeline.detection.started" | "pipeline.detection.completed" | "pipeline.detection.failed" | "pipeline.redaction.created" | "policy.created" | "policy.updated" | "policy.deleted";
14980
14640
  /**
14981
14641
  * @description The type of API token, for authentication and tracking.
14982
14642
  *
@@ -15663,6 +15323,17 @@ interface components {
15663
15323
  * [`part_entities`]: elide::Report::part_entities
15664
15324
  */
15665
15325
  report: components["schemas"]["Report"];
15326
+ /**
15327
+ * @description Which recognizers this request selected.
15328
+ *
15329
+ * Carried back for the same reason [`codec`] is. Anonymize
15330
+ * compiles its analyzers afresh, and a lineup narrower than
15331
+ * the one analyze detected with would leave an entity found
15332
+ * and then silently not redacted.
15333
+ *
15334
+ * [`codec`]: Audit::codec
15335
+ */
15336
+ selection?: components["schemas"]["ComponentSelection"];
15666
15337
  /**
15667
15338
  * @description What the analyze pass cost: one entry per recognizer and
15668
15339
  * enricher that ran, each self-identifying by the name the
@@ -15847,6 +15518,44 @@ interface components {
15847
15518
  * opinion passes [`CodecParams::default`].
15848
15519
  */
15849
15520
  CodecParams: {
15521
+ /**
15522
+ * Format: uint8
15523
+ * @description The CSV field separator, or [`None`] to auto-detect it.
15524
+ *
15525
+ * Defaults to [`None`], the codec's own behaviour. Detection
15526
+ * falls back to a comma when nothing stands out, which can
15527
+ * misread a TSV or semicolon-delimited file, so pass the byte
15528
+ * when the format is known.
15529
+ */
15530
+ csvDelimiter?: number;
15531
+ /**
15532
+ * @description Whether a CSV's first row is its header.
15533
+ *
15534
+ * Defaults to `true`, the codec's own behaviour. A header row
15535
+ * gains column-name context hints for the data below it, but
15536
+ * is protected from a row-drop redaction — so a *headerless*
15537
+ * file needs `false`, or its first row of real data cannot be
15538
+ * dropped.
15539
+ * @default true
15540
+ */
15541
+ csvHasHeaders?: boolean;
15542
+ /**
15543
+ * @description What happens to an image's EXIF metadata on re-encode.
15544
+ *
15545
+ * Defaults to [`ExifPolicy::default`], which the codec also
15546
+ * registers — [`Strip`](ExifPolicy::Strip) today: metadata
15547
+ * goes unless a request asks to keep it. Deferring to the
15548
+ * enum rather than naming a variant keeps this from drifting
15549
+ * if the codec's own bias changes again.
15550
+ *
15551
+ * This governs the output only when no metadata pipeline ran:
15552
+ * a wired EXIF recognizer and anonymizer strip through the
15553
+ * `#exif` sub-part and always win. It is the knob for
15554
+ * stripping — or deliberately preserving — *without* wiring
15555
+ * one.
15556
+ * @default strip
15557
+ */
15558
+ exifPolicy?: components["schemas"]["ExifPolicy"];
15850
15559
  /**
15851
15560
  * @description How container formats carrying both a text layer and page
15852
15561
  * images treat OCR.
@@ -15895,9 +15604,9 @@ interface components {
15895
15604
  commentId: string;
15896
15605
  /**
15897
15606
  * Format: uuid
15898
- * @description Id of the thread the comment is in.
15607
+ * @description Id of the review the comment is in.
15899
15608
  */
15900
- threadId: string;
15609
+ reviewId: string;
15901
15610
  };
15902
15611
  /** @description Health of a single service component. */
15903
15612
  ComponentHealth: {
@@ -15906,6 +15615,32 @@ interface components {
15906
15615
  /** @description Status of this component. */
15907
15616
  status: components["schemas"]["HealthStatus"];
15908
15617
  };
15618
+ /**
15619
+ * @description Which of the available components one request wants to run.
15620
+ *
15621
+ * Empty by default, meaning every component the caller has
15622
+ * available. A request that expresses no opinion gets full
15623
+ * detection — the opposite would let an omitted field quietly
15624
+ * disable redaction.
15625
+ */
15626
+ ComponentSelection: {
15627
+ /**
15628
+ * @description Names or tags to run, or [`None`] for all available.
15629
+ *
15630
+ * An empty `Vec` is not the same as [`None`]: it selects
15631
+ * nothing and is refused, because a request that can detect
15632
+ * nothing is a mistake rather than a request for an empty
15633
+ * report.
15634
+ */
15635
+ only?: string[];
15636
+ /**
15637
+ * @description Names or tags to skip, applied after `only`.
15638
+ *
15639
+ * Lets a caller run everything but one component without
15640
+ * enumerating the rest.
15641
+ */
15642
+ skip?: string[];
15643
+ };
15909
15644
  /**
15910
15645
  * Format: float
15911
15646
  * @description Confidence score in the closed range `0.0..=1.0`.
@@ -16097,7 +15832,7 @@ interface components {
16097
15832
  settings?: components["schemas"]["WorkspaceSettings"];
16098
15833
  };
16099
15834
  /**
16100
- * @description Request payload to post a comment (message) in a thread.
15835
+ * @description Request payload to post a comment (message) in a review.
16101
15836
  *
16102
15837
  * `@username` mentions in the body notify those workspace members.
16103
15838
  */
@@ -16242,8 +15977,8 @@ interface components {
16242
15977
  };
16243
15978
  /** @description Request payload to open a review on a document. */
16244
15979
  CreateWorkspaceReview: {
16245
- /** @description Optional free-text label for the review's purpose/audience (1-255 chars). */
16246
- purpose?: string;
15980
+ /** @description The review's title (1-255 characters). */
15981
+ displayName: string;
16247
15982
  };
16248
15983
  /** @description Request payload for creating a new workspace webhook. */
16249
15984
  CreateWorkspaceWebhook: {
@@ -16639,6 +16374,14 @@ interface components {
16639
16374
  /** @description The error name/type identifier. */
16640
16375
  name: string;
16641
16376
  };
16377
+ /**
16378
+ * @description What to do with an image's EXIF metadata when re-encoding it.
16379
+ *
16380
+ * EXIF mixes privacy-sensitive fields (GPS, device serial, capture timestamp)
16381
+ * with benign ones (orientation, colour profile) that a viewer needs to render
16382
+ * the image correctly, so the choice is a policy, not a fixed behaviour.
16383
+ */
16384
+ ExifPolicy: "strip" | "strip_sensitive" | "retain";
16642
16385
  /** @description The file format an export is rendered as. */
16643
16386
  ExportFormat: "csv" | "json";
16644
16387
  /**
@@ -18070,22 +17813,6 @@ interface components {
18070
17813
  /** @description The provider authorize URL the client should redirect the user to. */
18071
17814
  authorizeUrl: string;
18072
17815
  };
18073
- /**
18074
- * @description Request payload to open a workspace discussion thread with its first message.
18075
- *
18076
- * A workspace thread is free-form discussion pinned to no document; document
18077
- * reviews are auto-created on detection, not opened by hand. `@username`
18078
- * mentions in the opening body notify those members.
18079
- */
18080
- OpenWorkspaceThread: {
18081
- /** @description The opening message text (1-10000 characters). */
18082
- body: string;
18083
- /**
18084
- * @description Optional title for the thread (1-255 characters). Omit for an untitled
18085
- * thread.
18086
- */
18087
- displayName?: string;
18088
- };
18089
17816
  /**
18090
17817
  * @description Identifies a redaction operator, for the redaction audit a higher
18091
17818
  * layer assembles.
@@ -18782,8 +18509,6 @@ interface components {
18782
18509
  * header.
18783
18510
  */
18784
18511
  RegisteredRecognizer: {
18785
- /** @description Optional human-readable description. */
18786
- description?: string;
18787
18512
  /**
18788
18513
  * @description Recognizer name: the identifier a request's allowlist
18789
18514
  * picks by.
@@ -18802,14 +18527,21 @@ interface components {
18802
18527
  * engine-side construction stays free.
18803
18528
  */
18804
18529
  provider: string;
18530
+ /**
18531
+ * @description The groupings this component belongs to, as the deployment
18532
+ * tagged it.
18533
+ *
18534
+ * What a request's selection and the engine's availability
18535
+ * match on besides the name, so a caller listing components
18536
+ * can see which families it may ask for.
18537
+ */
18538
+ tags?: string[];
18805
18539
  };
18806
- /** @description Request payload to rename a thread (set or clear its title). */
18807
- RenameWorkspaceThread: {
18540
+ /** @description Request payload to rename a review (set its title). */
18541
+ RenameWorkspaceReview: {
18808
18542
  /**
18809
- * @description The new title (1-255 characters), or `null` to clear it. Omitting the
18810
- * field leaves the current title unchanged; only an explicit `null` clears
18811
- * it. The outer `Option` distinguishes "absent" (`None`) from "explicit
18812
- * null" (`Some(None)`).
18543
+ * @description The new title (1-255 characters). Omitting the field leaves the current
18544
+ * title unchanged.
18813
18545
  */
18814
18546
  displayName?: string;
18815
18547
  };
@@ -18915,14 +18647,15 @@ interface components {
18915
18647
  redactedDocuments?: components["schemas"]["Retention"];
18916
18648
  };
18917
18649
  /**
18918
- * @description Params of a document-review activity (`review.verified`, `review.assigned`,
18919
- * `review.unassigned`), where the review is the document's thread.
18650
+ * @description Params of a review activity (`review.opened`, `review.reopened`,
18651
+ * `review.renamed`, `review.deleted`, `review.verified`, `review.assigned`,
18652
+ * `review.unassigned`).
18920
18653
  */
18921
18654
  ReviewActivityParams: {
18922
18655
  /**
18923
18656
  * Format: uuid
18924
- * @description Id of the reviewer the review is assigned to; omitted for verification or
18925
- * when clearing the assignee.
18657
+ * @description Id of the reviewer assigned or unassigned; omitted for the events that carry
18658
+ * no reviewer.
18926
18659
  */
18927
18660
  assigneeId?: string;
18928
18661
  /**
@@ -18932,13 +18665,13 @@ interface components {
18932
18665
  documentId: string;
18933
18666
  /**
18934
18667
  * Format: uuid
18935
- * @description Id of the document's review thread.
18668
+ * @description Id of the review.
18936
18669
  */
18937
- threadId: string;
18670
+ reviewId: string;
18938
18671
  };
18939
18672
  /**
18940
- * @description Params of a `review.assigned` notification, sent to the reviewer a document's
18941
- * review was assigned to.
18673
+ * @description Params of a `review.assigned` notification, sent to the reviewer a review was
18674
+ * assigned to.
18942
18675
  */
18943
18676
  ReviewAssignedParams: {
18944
18677
  /**
@@ -18950,19 +18683,32 @@ interface components {
18950
18683
  documentName?: string;
18951
18684
  /**
18952
18685
  * Format: uuid
18953
- * @description Id of the document's review thread.
18686
+ * @description Id of the review.
18954
18687
  */
18955
- threadId: string;
18688
+ reviewId: string;
18689
+ };
18690
+ /** @description Params of a review-comment activity (`review.comment.created`). */
18691
+ ReviewCommentActivityParams: {
18692
+ /**
18693
+ * Format: uuid
18694
+ * @description Id of the comment.
18695
+ */
18696
+ commentId: string;
18697
+ /**
18698
+ * Format: uuid
18699
+ * @description Id of the review the comment is in.
18700
+ */
18701
+ reviewId: string;
18956
18702
  };
18957
18703
  /**
18958
- * @description The kind of an entry in a document review's activity log.
18704
+ * @description The kind of a non-message entry in a review's timeline.
18959
18705
  *
18960
- * Corresponds to the `REVIEW_EVENT_KIND` `PostgreSQL` enum. A review's timeline
18961
- * records what was done to the review: artifacts referenced, the assignee
18962
- * changing, and the verification lifecycle. Distinct from a thread's discussion
18963
- * timeline ([`ThreadEventKind`](super::ThreadEventKind)).
18706
+ * Corresponds to the `REVIEW_EVENT_KIND` `PostgreSQL` enum. A review's stream
18707
+ * interleaves comments (messages) with these events: the lifecycle (opened,
18708
+ * renamed, verified, reopened) and the sign-off workflow (detections and
18709
+ * redactions referenced, assignment changes).
18964
18710
  */
18965
- ReviewEventKind: "detection.linked" | "redaction.linked" | "assigned" | "unassigned" | "verified" | "reopened";
18711
+ ReviewEventKind: "review.opened" | "review.renamed" | "detection.linked" | "redaction.linked" | "assigned" | "unassigned" | "verified" | "reopened";
18966
18712
  /**
18967
18713
  * @description The review state of a file thread (a file thread is the review of its
18968
18714
  * file). `None` on the thread means a workspace thread, which has no review.
@@ -20632,36 +20378,6 @@ interface components {
20632
20378
  /** @description The rationale, when one was given. */
20633
20379
  reason?: string;
20634
20380
  };
20635
- /** @description Params of a comment-thread activity (`thread.*`). */
20636
- ThreadActivityParams: {
20637
- /**
20638
- * Format: uuid
20639
- * @description Id of the thread.
20640
- */
20641
- threadId: string;
20642
- };
20643
- /** @description Params of a thread-comment activity (`thread.comment.created`). */
20644
- ThreadCommentActivityParams: {
20645
- /**
20646
- * Format: uuid
20647
- * @description Id of the comment.
20648
- */
20649
- commentId: string;
20650
- /**
20651
- * Format: uuid
20652
- * @description Id of the thread the comment is in.
20653
- */
20654
- threadId: string;
20655
- };
20656
- /**
20657
- * @description The kind of a non-message entry in a discussion thread's timeline.
20658
- *
20659
- * Corresponds to the `THREAD_EVENT_KIND` `PostgreSQL` enum. A thread's stream
20660
- * interleaves comments (messages) with these events. A thread is a pure
20661
- * discussion primitive, so this is only the discussion lifecycle; review
20662
- * activity lives in [`ReviewEventKind`](super::ReviewEventKind).
20663
- */
20664
- ThreadEventKind: "thread.opened" | "thread.closed" | "thread.reopened" | "thread.renamed";
20665
20381
  /**
20666
20382
  * @description Half-open `[start, end)` stream interval, measured in microseconds.
20667
20383
  *
@@ -21048,7 +20764,7 @@ interface components {
21048
20764
  * Corresponds to the `WEBHOOK_EVENT` `PostgreSQL` enum and configures which
21049
20765
  * events a webhook receives.
21050
20766
  */
21051
- WebhookEvent: "document.created" | "document.updated" | "document.deleted" | "member.added" | "member.deleted" | "member.updated" | "connection.created" | "connection.updated" | "connection.deleted" | "connection.sync.started" | "connection.sync.completed" | "connection.sync.failed" | "provider.created" | "provider.updated" | "provider.deleted" | "review.verified" | "review.assigned" | "review.unassigned" | "pipeline.created" | "pipeline.updated" | "pipeline.deleted" | "pipeline.detection.started" | "pipeline.detection.completed" | "pipeline.detection.failed" | "pipeline.redaction.created" | "policy.created" | "policy.updated" | "policy.deleted" | "thread.opened" | "thread.closed" | "thread.reopened" | "thread.renamed";
20767
+ WebhookEvent: "document.created" | "document.updated" | "document.deleted" | "member.added" | "member.deleted" | "member.updated" | "connection.created" | "connection.updated" | "connection.deleted" | "connection.sync.started" | "connection.sync.completed" | "connection.sync.failed" | "provider.created" | "provider.updated" | "provider.deleted" | "review.opened" | "review.renamed" | "review.reopened" | "review.verified" | "review.assigned" | "review.unassigned" | "pipeline.created" | "pipeline.updated" | "pipeline.deleted" | "pipeline.detection.started" | "pipeline.detection.completed" | "pipeline.detection.failed" | "pipeline.redaction.created" | "policy.created" | "policy.updated" | "policy.deleted";
21052
20768
  /** @description Opaque whk identifier (whk_<uuid>). */
21053
20769
  WebhookId: string;
21054
20770
  /**
@@ -21201,7 +20917,7 @@ interface components {
21201
20917
  /** @description Inference token usage: workspace totals and a per-model breakdown. */
21202
20918
  usage: components["schemas"]["WorkspaceUsageAnalytics"];
21203
20919
  };
21204
- /** @description Response type for a comment: one message within a thread. */
20920
+ /** @description Response type for a comment: one message within a review's discussion. */
21205
20921
  WorkspaceComment: {
21206
20922
  /** @description Account that wrote the message. */
21207
20923
  author: components["schemas"]["AccountRef"];
@@ -21219,16 +20935,16 @@ interface components {
21219
20935
  id: string;
21220
20936
  /**
21221
20937
  * Format: uuid
21222
- * @description Thread this message belongs to.
20938
+ * @description Review this message belongs to.
21223
20939
  */
21224
- threadId: string;
20940
+ reviewId: string;
21225
20941
  /**
21226
20942
  * Format: date-time
21227
20943
  * @description When the comment was last updated.
21228
20944
  */
21229
20945
  updatedAt: string;
21230
20946
  };
21231
- /** @description Path parameters addressing one comment by its opaque id. */
20947
+ /** @description Path parameters addressing one comment by its id. */
21232
20948
  WorkspaceCommentPathParams: {
21233
20949
  /**
21234
20950
  * Format: uuid
@@ -22315,21 +22031,42 @@ interface components {
22315
22031
  total?: number;
22316
22032
  };
22317
22033
  /**
22318
- * @description Response type for a document's review.
22034
+ * @description Query parameters for listing a workspace's redactions.
22319
22035
  *
22320
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
22321
- * document), opened explicitly. It owns a discussion thread (referenced by
22322
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
22323
- * `assignees` (0..N reviewers).
22036
+ * Every field is an optional filter; unset fields impose no constraint. A
22037
+ * redaction has no status of its own, so it narrows by its owning detection and
22038
+ * the document that detection analyzed.
22039
+ */
22040
+ WorkspaceRedactionsQuery: {
22041
+ /**
22042
+ * Format: uuid
22043
+ * @description Filter to the redactions produced from a specific detection.
22044
+ */
22045
+ detectionId?: string;
22046
+ /**
22047
+ * Format: uuid
22048
+ * @description Filter to the redactions of detections analyzing a specific document.
22049
+ */
22050
+ documentId?: string;
22051
+ };
22052
+ /**
22053
+ * @description Response type for a review: a named discussion on a document with a manual
22054
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
22055
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
22056
+ * stream is a [`WorkspaceReviewEntry`] timeline.
22324
22057
  */
22325
22058
  WorkspaceReview: {
22326
22059
  /** @description The reviewers assigned to this review (empty when unassigned). */
22327
22060
  assignees: components["schemas"]["AccountRef"][];
22061
+ /** @description Account that opened the review. */
22062
+ author: components["schemas"]["AccountRef"];
22328
22063
  /**
22329
22064
  * Format: date-time
22330
22065
  * @description When the review was created.
22331
22066
  */
22332
22067
  createdAt: string;
22068
+ /** @description The review's title. */
22069
+ displayName: string;
22333
22070
  /**
22334
22071
  * Format: uuid
22335
22072
  * @description Document under review.
@@ -22340,15 +22077,8 @@ interface components {
22340
22077
  * @description Unique identifier of the review.
22341
22078
  */
22342
22079
  id: string;
22343
- /** @description Optional purpose/audience label. */
22344
- purpose?: string;
22345
22080
  /** @description The review's current status. */
22346
22081
  reviewStatus: components["schemas"]["ReviewStatus"];
22347
- /**
22348
- * Format: uuid
22349
- * @description Discussion thread this review owns.
22350
- */
22351
- threadId: string;
22352
22082
  /**
22353
22083
  * Format: date-time
22354
22084
  * @description When the review was last updated.
@@ -22382,8 +22112,37 @@ interface components {
22382
22112
  reviewId: string;
22383
22113
  };
22384
22114
  /**
22385
- * @description One entry in a review's activity timeline (a link, assignment, verification,
22386
- * or reopen).
22115
+ * @description One entry in a review's timeline: either a message or a lifecycle event, tagged
22116
+ * so a client renders them interleaved in order.
22117
+ */
22118
+ WorkspaceReviewEntry: ({
22119
+ /** @constant */
22120
+ type: "comment";
22121
+ } & components["schemas"]["WorkspaceComment"]) | ({
22122
+ /** @constant */
22123
+ type: "event";
22124
+ } & components["schemas"]["WorkspaceReviewEvent"]);
22125
+ /**
22126
+ * @description Generic paginated response wrapper.
22127
+ *
22128
+ * Provides a consistent structure for all paginated API responses with
22129
+ * cursor-based pagination support. When `next_cursor` is present, there
22130
+ * are more items to fetch.
22131
+ */
22132
+ WorkspaceReviewEntryPage: {
22133
+ /** @description Items in this page. */
22134
+ items: components["schemas"]["WorkspaceReviewEntry"][];
22135
+ /** @description Cursor to fetch the next page. Present only when more items exist. */
22136
+ nextCursor?: string;
22137
+ /**
22138
+ * Format: int64
22139
+ * @description Total count of items matching the query (if requested).
22140
+ */
22141
+ total?: number;
22142
+ };
22143
+ /**
22144
+ * @description One non-message entry in a review timeline (opened, renamed, a detection or
22145
+ * redaction linked, an assignment change, verified, or reopened).
22387
22146
  */
22388
22147
  WorkspaceReviewEvent: {
22389
22148
  /** @description Account that performed the action; `None` if that account was removed. */
@@ -22400,7 +22159,10 @@ interface components {
22400
22159
  id: string;
22401
22160
  /** @description What happened. */
22402
22161
  kind: components["schemas"]["ReviewEventKind"];
22403
- /** @description Event-specific detail (the linked id, the assignee); `None` when none. */
22162
+ /**
22163
+ * @description Event-specific detail (the new name, a linked id, an assignee); `None` when
22164
+ * none.
22165
+ */
22404
22166
  target?: unknown;
22405
22167
  };
22406
22168
  /**
@@ -22472,6 +22234,11 @@ interface components {
22472
22234
  * @description Filter by the assigned reviewer (account id).
22473
22235
  */
22474
22236
  assignee?: string;
22237
+ /**
22238
+ * Format: uuid
22239
+ * @description Filter by the review's opening author (account id).
22240
+ */
22241
+ author?: string;
22475
22242
  /**
22476
22243
  * Format: uuid
22477
22244
  * @description Filter to the reviews of a specific document.
@@ -22583,131 +22350,6 @@ interface components {
22583
22350
  /** @description Filter by sync status. */
22584
22351
  status?: components["schemas"]["SyncStatus"];
22585
22352
  };
22586
- /**
22587
- * @description Response type for a thread: a discussion with an author, an optional title, and
22588
- * an open/closed lifecycle. Its stream is a [`WorkspaceThreadEntry`] timeline. A
22589
- * document review (see the reviews endpoints) references a thread by its id.
22590
- */
22591
- WorkspaceThread: {
22592
- /** @description Account that opened the thread. */
22593
- author: components["schemas"]["AccountRef"];
22594
- /** @description Whether the thread is closed. */
22595
- closed: boolean;
22596
- /**
22597
- * Format: date-time
22598
- * @description When the thread was closed, when closed.
22599
- */
22600
- closedAt?: string;
22601
- /**
22602
- * Format: date-time
22603
- * @description When the thread was created.
22604
- */
22605
- createdAt: string;
22606
- /** @description The thread's title; `None` for an untitled thread. */
22607
- displayName?: string;
22608
- /**
22609
- * Format: uuid
22610
- * @description Unique identifier of the thread.
22611
- */
22612
- id: string;
22613
- /**
22614
- * Format: date-time
22615
- * @description When the thread was last updated.
22616
- */
22617
- updatedAt: string;
22618
- };
22619
- /**
22620
- * @description One entry in a thread's timeline: either a message or a lifecycle event,
22621
- * tagged so a client renders them interleaved in order.
22622
- */
22623
- WorkspaceThreadEntry: ({
22624
- /** @constant */
22625
- type: "comment";
22626
- } & components["schemas"]["WorkspaceComment"]) | ({
22627
- /** @constant */
22628
- type: "event";
22629
- } & components["schemas"]["WorkspaceThreadEvent"]);
22630
- /**
22631
- * @description Generic paginated response wrapper.
22632
- *
22633
- * Provides a consistent structure for all paginated API responses with
22634
- * cursor-based pagination support. When `next_cursor` is present, there
22635
- * are more items to fetch.
22636
- */
22637
- WorkspaceThreadEntryPage: {
22638
- /** @description Items in this page. */
22639
- items: components["schemas"]["WorkspaceThreadEntry"][];
22640
- /** @description Cursor to fetch the next page. Present only when more items exist. */
22641
- nextCursor?: string;
22642
- /**
22643
- * Format: int64
22644
- * @description Total count of items matching the query (if requested).
22645
- */
22646
- total?: number;
22647
- };
22648
- /**
22649
- * @description One non-message entry in a thread timeline (opened, closed, reopened,
22650
- * renamed).
22651
- */
22652
- WorkspaceThreadEvent: {
22653
- /** @description Account that performed the action; `None` if that account was removed. */
22654
- actor?: components["schemas"]["AccountRef"];
22655
- /**
22656
- * Format: date-time
22657
- * @description When the event happened.
22658
- */
22659
- createdAt: string;
22660
- /**
22661
- * Format: uuid
22662
- * @description Unique identifier of the event.
22663
- */
22664
- id: string;
22665
- /** @description What happened. */
22666
- kind: components["schemas"]["ThreadEventKind"];
22667
- /** @description Event-specific detail; `None` for events that carry none. */
22668
- target?: unknown;
22669
- };
22670
- /**
22671
- * @description Generic paginated response wrapper.
22672
- *
22673
- * Provides a consistent structure for all paginated API responses with
22674
- * cursor-based pagination support. When `next_cursor` is present, there
22675
- * are more items to fetch.
22676
- */
22677
- WorkspaceThreadPage: {
22678
- /** @description Items in this page. */
22679
- items: components["schemas"]["WorkspaceThread"][];
22680
- /** @description Cursor to fetch the next page. Present only when more items exist. */
22681
- nextCursor?: string;
22682
- /**
22683
- * Format: int64
22684
- * @description Total count of items matching the query (if requested).
22685
- */
22686
- total?: number;
22687
- };
22688
- /** @description Path parameters addressing one thread by its opaque id. */
22689
- WorkspaceThreadPathParams: {
22690
- /**
22691
- * Format: uuid
22692
- * @description Unique identifier of the thread.
22693
- */
22694
- threadId: string;
22695
- };
22696
- /**
22697
- * @description Query parameters for listing a workspace's threads.
22698
- *
22699
- * Every field is an optional filter; unset fields impose no constraint. Accounts
22700
- * are addressed by id.
22701
- */
22702
- WorkspaceThreadsQuery: {
22703
- /**
22704
- * Format: uuid
22705
- * @description Filter by the thread's opening author (account id).
22706
- */
22707
- author?: string;
22708
- /** @description Filter by open/closed state: `true` = closed only, `false` = open only. */
22709
- closed?: boolean;
22710
- };
22711
22353
  /** @description Inference token usage across a workspace's detections. */
22712
22354
  WorkspaceUsageAnalytics: {
22713
22355
  /** @description Per-model breakdown, one entry per model used, in a stable order. */
@@ -22893,433 +22535,426 @@ interface components {
22893
22535
  }
22894
22536
  //#endregion
22895
22537
  //#region src/datatypes/account.d.ts
22896
- type Schemas$25 = components["schemas"];
22897
- type Handle = Schemas$25["Handle"];
22898
- type Account = Schemas$25["Account"];
22899
- type PublicAccount = Schemas$25["PublicAccount"];
22900
- type UpdateAccount = Schemas$25["UpdateAccount"];
22901
- type AccountRef = Schemas$25["AccountRef"];
22902
- type AccountIdentities = Schemas$25["AccountIdentities"];
22903
- type AccountIdentity = Schemas$25["AccountIdentity"];
22904
- type IdentityProvider = Schemas$25["IdentityProvider"];
22905
- type SetPassword = Schemas$25["SetPassword"];
22906
- type OidcStartResponse = Schemas$25["OidcStartResponse"];
22538
+ type Schemas$24 = components["schemas"];
22539
+ type Handle = Schemas$24["Handle"];
22540
+ type Account = Schemas$24["Account"];
22541
+ type PublicAccount = Schemas$24["PublicAccount"];
22542
+ type UpdateAccount = Schemas$24["UpdateAccount"];
22543
+ type AccountRef = Schemas$24["AccountRef"];
22544
+ type AccountIdentities = Schemas$24["AccountIdentities"];
22545
+ type AccountIdentity = Schemas$24["AccountIdentity"];
22546
+ type IdentityProvider = Schemas$24["IdentityProvider"];
22547
+ type SetPassword = Schemas$24["SetPassword"];
22548
+ type OidcStartResponse = Schemas$24["OidcStartResponse"];
22907
22549
  //#endregion
22908
22550
  //#region src/datatypes/activity.d.ts
22909
- type Schemas$24 = components["schemas"];
22910
- type WorkspaceActivity = Schemas$24["WorkspaceActivity"];
22911
- type WorkspaceActivityPage = Schemas$24["WorkspaceActivityPage"];
22912
- type ActivityType = Schemas$24["ActivityType"];
22913
- type WorkspaceActivityFilterQuery = Schemas$24["WorkspaceActivityFilterQuery"];
22914
- type WorkspaceActivityExportOptions = Schemas$24["WorkspaceActivityExportOptions"];
22915
- type ActivityPayload = Schemas$24["ActivityPayload"];
22916
- type WorkspaceActivityParams = Schemas$24["WorkspaceActivityParams"];
22917
- type MemberActivityParams = Schemas$24["MemberActivityParams"];
22918
- type InviteActivityParams = Schemas$24["InviteActivityParams"];
22919
- type ConnectionActivityParams = Schemas$24["ConnectionActivityParams"];
22920
- type PipelineActivityParams = Schemas$24["PipelineActivityParams"];
22921
- type DetectionActivityParams = Schemas$24["DetectionActivityParams"];
22922
- type RedactionActivityParams = Schemas$24["RedactionActivityParams"];
22923
- type PolicyActivityParams = Schemas$24["PolicyActivityParams"];
22924
- type ProviderActivityParams = Schemas$24["ProviderActivityParams"];
22925
- type DocumentActivityParams = Schemas$24["DocumentActivityParams"];
22926
- type WebhookActivityParams = Schemas$24["WebhookActivityParams"];
22927
- type ReviewActivityParams = Schemas$24["ReviewActivityParams"];
22928
- type ThreadActivityParams = Schemas$24["ThreadActivityParams"];
22929
- type ThreadCommentActivityParams = Schemas$24["ThreadCommentActivityParams"];
22551
+ type Schemas$23 = components["schemas"];
22552
+ type WorkspaceActivity = Schemas$23["WorkspaceActivity"];
22553
+ type WorkspaceActivityPage = Schemas$23["WorkspaceActivityPage"];
22554
+ type ActivityType = Schemas$23["ActivityType"];
22555
+ type WorkspaceActivityFilterQuery = Schemas$23["WorkspaceActivityFilterQuery"];
22556
+ type WorkspaceActivityExportOptions = Schemas$23["WorkspaceActivityExportOptions"];
22557
+ type ActivityPayload = Schemas$23["ActivityPayload"];
22558
+ type WorkspaceActivityParams = Schemas$23["WorkspaceActivityParams"];
22559
+ type MemberActivityParams = Schemas$23["MemberActivityParams"];
22560
+ type InviteActivityParams = Schemas$23["InviteActivityParams"];
22561
+ type ConnectionActivityParams = Schemas$23["ConnectionActivityParams"];
22562
+ type PipelineActivityParams = Schemas$23["PipelineActivityParams"];
22563
+ type DetectionActivityParams = Schemas$23["DetectionActivityParams"];
22564
+ type RedactionActivityParams = Schemas$23["RedactionActivityParams"];
22565
+ type PolicyActivityParams = Schemas$23["PolicyActivityParams"];
22566
+ type ProviderActivityParams = Schemas$23["ProviderActivityParams"];
22567
+ type DocumentActivityParams = Schemas$23["DocumentActivityParams"];
22568
+ type WebhookActivityParams = Schemas$23["WebhookActivityParams"];
22569
+ type ReviewActivityParams = Schemas$23["ReviewActivityParams"];
22570
+ type ReviewCommentActivityParams = Schemas$23["ReviewCommentActivityParams"];
22930
22571
  //#endregion
22931
22572
  //#region src/datatypes/analytics.d.ts
22932
- type Schemas$23 = components["schemas"];
22933
- type WorkspaceAnalytics = Schemas$23["WorkspaceAnalytics"];
22934
- type WorkspaceStorageAnalytics = Schemas$23["WorkspaceStorageAnalytics"];
22935
- type WorkspaceStorageKindEntry = Schemas$23["WorkspaceStorageKindEntry"];
22936
- type WorkspaceDetectionAnalytics = Schemas$23["WorkspaceDetectionAnalytics"];
22937
- type WorkspaceDetectionStatusEntry = Schemas$23["WorkspaceDetectionStatusEntry"];
22938
- type WorkspaceUsageAnalytics = Schemas$23["WorkspaceUsageAnalytics"];
22939
- type ModelUsage = Schemas$23["ModelUsage"];
22940
- type WorkspaceModelUsageEntry = Schemas$23["WorkspaceModelUsageEntry"];
22941
- type Usage = Schemas$23["Usage"];
22942
- type UsageReport = Schemas$23["UsageReport"];
22943
- type TokenCounts = Schemas$23["TokenCounts"];
22944
- type RecognizerId = Schemas$23["RecognizerId"];
22945
- type WorkspaceDetectionTimeSeries = Schemas$23["WorkspaceDetectionTimeSeries"];
22946
- type WorkspaceDetectionDayEntry = Schemas$23["WorkspaceDetectionDayEntry"];
22573
+ type Schemas$22 = components["schemas"];
22574
+ type WorkspaceAnalytics = Schemas$22["WorkspaceAnalytics"];
22575
+ type WorkspaceStorageAnalytics = Schemas$22["WorkspaceStorageAnalytics"];
22576
+ type WorkspaceStorageKindEntry = Schemas$22["WorkspaceStorageKindEntry"];
22577
+ type WorkspaceDetectionAnalytics = Schemas$22["WorkspaceDetectionAnalytics"];
22578
+ type WorkspaceDetectionStatusEntry = Schemas$22["WorkspaceDetectionStatusEntry"];
22579
+ type WorkspaceUsageAnalytics = Schemas$22["WorkspaceUsageAnalytics"];
22580
+ type ModelUsage = Schemas$22["ModelUsage"];
22581
+ type WorkspaceModelUsageEntry = Schemas$22["WorkspaceModelUsageEntry"];
22582
+ type Usage = Schemas$22["Usage"];
22583
+ type UsageReport = Schemas$22["UsageReport"];
22584
+ type TokenCounts = Schemas$22["TokenCounts"];
22585
+ type RecognizerId = Schemas$22["RecognizerId"];
22586
+ type WorkspaceDetectionTimeSeries = Schemas$22["WorkspaceDetectionTimeSeries"];
22587
+ type WorkspaceDetectionDayEntry = Schemas$22["WorkspaceDetectionDayEntry"];
22947
22588
  //#endregion
22948
22589
  //#region src/datatypes/api-token.d.ts
22949
- type Schemas$22 = components["schemas"];
22950
- type AccountApiToken = Schemas$22["AccountApiToken"];
22951
- type AccountApiTokenWithJwt = Schemas$22["AccountApiTokenWithJwt"];
22952
- type ApiTokenType = Schemas$22["ApiTokenType"];
22953
- type CreateAccountApiToken = Schemas$22["CreateAccountApiToken"];
22954
- type UpdateAccountApiToken = Schemas$22["UpdateAccountApiToken"];
22955
- type TokenExpiration = Schemas$22["TokenExpiration"];
22956
- type AccountApiTokenPage = Schemas$22["AccountApiTokenPage"];
22590
+ type Schemas$21 = components["schemas"];
22591
+ type AccountApiToken = Schemas$21["AccountApiToken"];
22592
+ type AccountApiTokenWithJwt = Schemas$21["AccountApiTokenWithJwt"];
22593
+ type ApiTokenType = Schemas$21["ApiTokenType"];
22594
+ type CreateAccountApiToken = Schemas$21["CreateAccountApiToken"];
22595
+ type UpdateAccountApiToken = Schemas$21["UpdateAccountApiToken"];
22596
+ type TokenExpiration = Schemas$21["TokenExpiration"];
22597
+ type AccountApiTokenPage = Schemas$21["AccountApiTokenPage"];
22957
22598
  //#endregion
22958
22599
  //#region src/datatypes/artifact.d.ts
22959
- type Schemas$21 = components["schemas"];
22960
- type ArtifactSet = Schemas$21["ArtifactSet"];
22961
- type Layout = Schemas$21["Layout"];
22962
- type LayoutBlock = Schemas$21["LayoutBlock"];
22963
- type LayoutWord = Schemas$21["LayoutWord"];
22964
- type Transcription = Schemas$21["Transcription"];
22965
- type TranscriptSegment = Schemas$21["TranscriptSegment"];
22966
- type TranscriptWord = Schemas$21["TranscriptWord"];
22967
- type Tokens = Schemas$21["Tokens"];
22968
- type Token = Schemas$21["Token"];
22600
+ type Schemas$20 = components["schemas"];
22601
+ type ArtifactSet = Schemas$20["ArtifactSet"];
22602
+ type Layout = Schemas$20["Layout"];
22603
+ type LayoutBlock = Schemas$20["LayoutBlock"];
22604
+ type LayoutWord = Schemas$20["LayoutWord"];
22605
+ type Transcription = Schemas$20["Transcription"];
22606
+ type TranscriptSegment = Schemas$20["TranscriptSegment"];
22607
+ type TranscriptWord = Schemas$20["TranscriptWord"];
22608
+ type Tokens = Schemas$20["Tokens"];
22609
+ type Token = Schemas$20["Token"];
22969
22610
  //#endregion
22970
22611
  //#region src/datatypes/audit.d.ts
22971
- type Schemas$20 = components["schemas"];
22972
- type Audit = Schemas$20["Audit"];
22973
- type DocumentContext = Schemas$20["DocumentContext"];
22974
- type CodecParams = Schemas$20["CodecParams"];
22975
- type EntityCoRef = Schemas$20["EntityCoRef"];
22976
- type Report = Schemas$20["Report"];
22977
- type Recognition = Schemas$20["Recognition"];
22978
- type EditSet = Schemas$20["EditSet"];
22979
- type RasterMode = Schemas$20["RasterMode"];
22980
- type Dpi = Schemas$20["Dpi"];
22981
- type Redaction = Schemas$20["Redaction"];
22982
- type Selection = Schemas$20["Selection"];
22983
- type Suppress = Schemas$20["Suppress"];
22984
- type ManualIntent = Schemas$20["ManualIntent"];
22985
- type LeakProfile = Schemas$20["LeakProfile"];
22986
- type RuleMatch = Schemas$20["RuleMatch"];
22987
- type Attribution = Schemas$20["Attribution"];
22988
- type CitedAttribution = Schemas$20["CitedAttribution"];
22989
- type FreeformAttribution = Schemas$20["FreeformAttribution"];
22990
- type ModelEvent = Schemas$20["ModelEvent"];
22991
- type PatternEvent = Schemas$20["PatternEvent"];
22992
- type Conflict = Schemas$20["Conflict"];
22993
- type Contested = Schemas$20["Contested"];
22994
- type Deduplication = Schemas$20["Deduplication"];
22995
- type Calibration = Schemas$20["Calibration"];
22996
- type OperatorId = Schemas$20["OperatorId"];
22997
- type AuditHash = Schemas$20["AuditHash"];
22998
- type Category = Schemas$20["Category"];
22612
+ type Schemas$19 = components["schemas"];
22613
+ type Audit = Schemas$19["Audit"];
22614
+ type DocumentContext = Schemas$19["DocumentContext"];
22615
+ type CodecParams = Schemas$19["CodecParams"];
22616
+ type ExifPolicy = Schemas$19["ExifPolicy"];
22617
+ type EntityCoRef = Schemas$19["EntityCoRef"];
22618
+ type Report = Schemas$19["Report"];
22619
+ type Recognition = Schemas$19["Recognition"];
22620
+ type ComponentSelection = Schemas$19["ComponentSelection"];
22621
+ type EditSet = Schemas$19["EditSet"];
22622
+ type RasterMode = Schemas$19["RasterMode"];
22623
+ type Dpi = Schemas$19["Dpi"];
22624
+ type Redaction = Schemas$19["Redaction"];
22625
+ type Selection = Schemas$19["Selection"];
22626
+ type Suppress = Schemas$19["Suppress"];
22627
+ type ManualIntent = Schemas$19["ManualIntent"];
22628
+ type LeakProfile = Schemas$19["LeakProfile"];
22629
+ type RuleMatch = Schemas$19["RuleMatch"];
22630
+ type Attribution = Schemas$19["Attribution"];
22631
+ type CitedAttribution = Schemas$19["CitedAttribution"];
22632
+ type FreeformAttribution = Schemas$19["FreeformAttribution"];
22633
+ type ModelEvent = Schemas$19["ModelEvent"];
22634
+ type PatternEvent = Schemas$19["PatternEvent"];
22635
+ type Conflict = Schemas$19["Conflict"];
22636
+ type Contested = Schemas$19["Contested"];
22637
+ type Deduplication = Schemas$19["Deduplication"];
22638
+ type Calibration = Schemas$19["Calibration"];
22639
+ type OperatorId = Schemas$19["OperatorId"];
22640
+ type AuditHash = Schemas$19["AuditHash"];
22641
+ type Category = Schemas$19["Category"];
22999
22642
  /** Half-open `[start, end)` index range. Generated name; a plain uint range. */
23000
- type RangeOfUint = Schemas$20["Range_of_uint"];
23001
- type SourceRef = Schemas$20["SourceRef"];
23002
- type BoundingBox = Schemas$20["BoundingBox"];
23003
- type Point = Schemas$20["Point"];
23004
- type Polygon = Schemas$20["Polygon"];
23005
- type Dimensions = Schemas$20["Dimensions"];
23006
- type TimeSpan = Schemas$20["TimeSpan"];
23007
- type TextEntity = Schemas$20["TextEntity"];
23008
- type TextAuditEvent = Schemas$20["TextAuditEvent"];
23009
- type TextAuditKind = Schemas$20["TextAuditKind"];
23010
- type TextAuditLog = Schemas$20["TextAuditLog"];
23011
- type TextHint = Schemas$20["TextHint"];
23012
- type TextLocation = Schemas$20["TextLocation"];
23013
- type TextCoord = Schemas$20["TextCoord"];
23014
- type DecodedSpan = Schemas$20["DecodedSpan"];
23015
- type SourceSpan = Schemas$20["SourceSpan"];
23016
- type TextData = Schemas$20["TextData"];
23017
- type TextModel = Schemas$20["TextModel"];
23018
- type TextPattern = Schemas$20["TextPattern"];
23019
- type TextManual = Schemas$20["TextManual"];
23020
- type TextEdit = Schemas$20["TextEdit"];
23021
- type TextAdd = Schemas$20["TextAdd"];
23022
- type TextRefinement = Schemas$20["TextRefinement"];
23023
- type TextRetag = Schemas$20["TextRetag"];
23024
- type ImageEntity = Schemas$20["ImageEntity"];
23025
- type ImageAuditEvent = Schemas$20["ImageAuditEvent"];
23026
- type ImageAuditKind = Schemas$20["ImageAuditKind"];
23027
- type ImageAuditLog = Schemas$20["ImageAuditLog"];
23028
- type ImageHint = Schemas$20["ImageHint"];
23029
- type ImageLocation = Schemas$20["ImageLocation"];
23030
- type ImageData = Schemas$20["ImageData"];
23031
- type ImageModel = Schemas$20["ImageModel"];
23032
- type ImagePattern = Schemas$20["ImagePattern"];
23033
- type ImageManual = Schemas$20["ImageManual"];
23034
- type ImageEdit = Schemas$20["ImageEdit"];
23035
- type ImageAdd = Schemas$20["ImageAdd"];
23036
- type ImageRefinement = Schemas$20["ImageRefinement"];
23037
- type ImageRetag = Schemas$20["ImageRetag"];
23038
- type AudioEntity = Schemas$20["AudioEntity"];
23039
- type AudioAuditEvent = Schemas$20["AudioAuditEvent"];
23040
- type AudioAuditKind = Schemas$20["AudioAuditKind"];
23041
- type AudioAuditLog = Schemas$20["AudioAuditLog"];
23042
- type AudioHint = Schemas$20["AudioHint"];
23043
- type AudioLocation = Schemas$20["AudioLocation"];
23044
- type AudioData = Schemas$20["AudioData"];
23045
- type AudioModel = Schemas$20["AudioModel"];
23046
- type AudioPattern = Schemas$20["AudioPattern"];
23047
- type AudioManual = Schemas$20["AudioManual"];
23048
- type AudioEdit = Schemas$20["AudioEdit"];
23049
- type AudioAdd = Schemas$20["AudioAdd"];
23050
- type AudioRefinement = Schemas$20["AudioRefinement"];
23051
- type AudioRetag = Schemas$20["AudioRetag"];
23052
- type TabularEntity = Schemas$20["TabularEntity"];
23053
- type TabularAuditEvent = Schemas$20["TabularAuditEvent"];
23054
- type TabularAuditKind = Schemas$20["TabularAuditKind"];
23055
- type TabularAuditLog = Schemas$20["TabularAuditLog"];
23056
- type TabularHint = Schemas$20["TabularHint"];
23057
- type TabularLocation = Schemas$20["TabularLocation"];
23058
- type TabularModel = Schemas$20["TabularModel"];
23059
- type TabularPattern = Schemas$20["TabularPattern"];
23060
- type TabularManual = Schemas$20["TabularManual"];
23061
- type TabularEdit = Schemas$20["TabularEdit"];
23062
- type TabularAdd = Schemas$20["TabularAdd"];
23063
- type TabularRefinement = Schemas$20["TabularRefinement"];
23064
- type TabularRetag = Schemas$20["TabularRetag"];
23065
- type MetadataEvent = Schemas$20["MetadataEvent"];
23066
- type AudioMetadata = Schemas$20["AudioMetadata"];
23067
- type ImageMetadata = Schemas$20["ImageMetadata"];
23068
- type TabularMetadata = Schemas$20["TabularMetadata"];
23069
- type TextMetadata = Schemas$20["TextMetadata"];
22643
+ type RangeOfUint = Schemas$19["Range_of_uint"];
22644
+ type SourceRef = Schemas$19["SourceRef"];
22645
+ type BoundingBox = Schemas$19["BoundingBox"];
22646
+ type Point = Schemas$19["Point"];
22647
+ type Polygon = Schemas$19["Polygon"];
22648
+ type Dimensions = Schemas$19["Dimensions"];
22649
+ type TimeSpan = Schemas$19["TimeSpan"];
22650
+ type TextEntity = Schemas$19["TextEntity"];
22651
+ type TextAuditEvent = Schemas$19["TextAuditEvent"];
22652
+ type TextAuditKind = Schemas$19["TextAuditKind"];
22653
+ type TextAuditLog = Schemas$19["TextAuditLog"];
22654
+ type TextHint = Schemas$19["TextHint"];
22655
+ type TextLocation = Schemas$19["TextLocation"];
22656
+ type TextCoord = Schemas$19["TextCoord"];
22657
+ type DecodedSpan = Schemas$19["DecodedSpan"];
22658
+ type SourceSpan = Schemas$19["SourceSpan"];
22659
+ type TextData = Schemas$19["TextData"];
22660
+ type TextModel = Schemas$19["TextModel"];
22661
+ type TextPattern = Schemas$19["TextPattern"];
22662
+ type TextManual = Schemas$19["TextManual"];
22663
+ type TextEdit = Schemas$19["TextEdit"];
22664
+ type TextAdd = Schemas$19["TextAdd"];
22665
+ type TextRefinement = Schemas$19["TextRefinement"];
22666
+ type TextRetag = Schemas$19["TextRetag"];
22667
+ type ImageEntity = Schemas$19["ImageEntity"];
22668
+ type ImageAuditEvent = Schemas$19["ImageAuditEvent"];
22669
+ type ImageAuditKind = Schemas$19["ImageAuditKind"];
22670
+ type ImageAuditLog = Schemas$19["ImageAuditLog"];
22671
+ type ImageHint = Schemas$19["ImageHint"];
22672
+ type ImageLocation = Schemas$19["ImageLocation"];
22673
+ type ImageData = Schemas$19["ImageData"];
22674
+ type ImageModel = Schemas$19["ImageModel"];
22675
+ type ImagePattern = Schemas$19["ImagePattern"];
22676
+ type ImageManual = Schemas$19["ImageManual"];
22677
+ type ImageEdit = Schemas$19["ImageEdit"];
22678
+ type ImageAdd = Schemas$19["ImageAdd"];
22679
+ type ImageRefinement = Schemas$19["ImageRefinement"];
22680
+ type ImageRetag = Schemas$19["ImageRetag"];
22681
+ type AudioEntity = Schemas$19["AudioEntity"];
22682
+ type AudioAuditEvent = Schemas$19["AudioAuditEvent"];
22683
+ type AudioAuditKind = Schemas$19["AudioAuditKind"];
22684
+ type AudioAuditLog = Schemas$19["AudioAuditLog"];
22685
+ type AudioHint = Schemas$19["AudioHint"];
22686
+ type AudioLocation = Schemas$19["AudioLocation"];
22687
+ type AudioData = Schemas$19["AudioData"];
22688
+ type AudioModel = Schemas$19["AudioModel"];
22689
+ type AudioPattern = Schemas$19["AudioPattern"];
22690
+ type AudioManual = Schemas$19["AudioManual"];
22691
+ type AudioEdit = Schemas$19["AudioEdit"];
22692
+ type AudioAdd = Schemas$19["AudioAdd"];
22693
+ type AudioRefinement = Schemas$19["AudioRefinement"];
22694
+ type AudioRetag = Schemas$19["AudioRetag"];
22695
+ type TabularEntity = Schemas$19["TabularEntity"];
22696
+ type TabularAuditEvent = Schemas$19["TabularAuditEvent"];
22697
+ type TabularAuditKind = Schemas$19["TabularAuditKind"];
22698
+ type TabularAuditLog = Schemas$19["TabularAuditLog"];
22699
+ type TabularHint = Schemas$19["TabularHint"];
22700
+ type TabularLocation = Schemas$19["TabularLocation"];
22701
+ type TabularModel = Schemas$19["TabularModel"];
22702
+ type TabularPattern = Schemas$19["TabularPattern"];
22703
+ type TabularManual = Schemas$19["TabularManual"];
22704
+ type TabularEdit = Schemas$19["TabularEdit"];
22705
+ type TabularAdd = Schemas$19["TabularAdd"];
22706
+ type TabularRefinement = Schemas$19["TabularRefinement"];
22707
+ type TabularRetag = Schemas$19["TabularRetag"];
22708
+ type MetadataEvent = Schemas$19["MetadataEvent"];
22709
+ type AudioMetadata = Schemas$19["AudioMetadata"];
22710
+ type ImageMetadata = Schemas$19["ImageMetadata"];
22711
+ type TabularMetadata = Schemas$19["TabularMetadata"];
22712
+ type TextMetadata = Schemas$19["TextMetadata"];
23070
22713
  //#endregion
23071
22714
  //#region src/datatypes/auth.d.ts
23072
- type Schemas$19 = components["schemas"];
23073
- type Login = Schemas$19["Login"];
23074
- type Signup = Schemas$19["Signup"];
23075
- type DesktopTokenRequest = Schemas$19["DesktopTokenRequest"];
23076
- type AccountDesktopToken = Schemas$19["AccountDesktopToken"];
22715
+ type Schemas$18 = components["schemas"];
22716
+ type Login = Schemas$18["Login"];
22717
+ type Signup = Schemas$18["Signup"];
22718
+ type DesktopTokenRequest = Schemas$18["DesktopTokenRequest"];
22719
+ type AccountDesktopToken = Schemas$18["AccountDesktopToken"];
23077
22720
  //#endregion
23078
22721
  //#region src/datatypes/capabilities.d.ts
23079
- type Schemas$18 = components["schemas"];
22722
+ type Schemas$17 = components["schemas"];
23080
22723
  /** Registry of the deployment's built-in labels, keyed by id. */
23081
- type LabelCatalog = Schemas$18["LabelCatalog"];
22724
+ type LabelCatalog = Schemas$17["LabelCatalog"];
23082
22725
  /** The engine's registered recognizers, grouped into NER and LLM. */
23083
- type RecognizerCatalog = Schemas$18["RecognizerCatalog"];
23084
- type RegisteredRecognizer = Schemas$18["RegisteredRecognizer"];
22726
+ type RecognizerCatalog = Schemas$17["RecognizerCatalog"];
22727
+ type RegisteredRecognizer = Schemas$17["RegisteredRecognizer"];
23085
22728
  /** Which connector families and providers this deployment can create. */
23086
- type ConnectorCapabilities = Schemas$18["ConnectorCapabilities"];
23087
- type FileProviders = Schemas$18["FileProviders"];
22729
+ type ConnectorCapabilities = Schemas$17["ConnectorCapabilities"];
22730
+ type FileProviders = Schemas$17["FileProviders"];
23088
22731
  /** Which authentication methods this deployment offers. */
23089
- type AuthCapabilities = Schemas$18["AuthCapabilities"];
22732
+ type AuthCapabilities = Schemas$17["AuthCapabilities"];
23090
22733
  //#endregion
23091
22734
  //#region src/datatypes/connection.d.ts
23092
- type Schemas$17 = components["schemas"];
23093
- type ConnectionId = Schemas$17["ConnectionId"];
23094
- type WorkspaceConnection = Schemas$17["WorkspaceConnection"];
23095
- type ConnectionType = Schemas$17["ConnectionType"];
23096
- type CreateWorkspaceConnection = Schemas$17["CreateWorkspaceConnection"];
23097
- type UpdateWorkspaceConnection = Schemas$17["UpdateWorkspaceConnection"];
23098
- type WorkspaceConnectionsQuery = Schemas$17["WorkspaceConnectionsQuery"];
23099
- type WorkspaceConnectionPage = Schemas$17["WorkspaceConnectionPage"];
23100
- type WorkspaceConnectionSync = Schemas$17["WorkspaceConnectionSync"];
23101
- type WorkspaceConnectionSyncPage = Schemas$17["WorkspaceConnectionSyncPage"];
23102
- type WorkspaceConnectionVerification = Schemas$17["WorkspaceConnectionVerification"];
23103
- type ImportWorkspaceFiles = Schemas$17["ImportWorkspaceFiles"];
23104
- type PickedFile = Schemas$17["PickedFile"];
23105
- type ExportWorkspaceFiles = Schemas$17["ExportWorkspaceFiles"];
23106
- type WorkspacePickerTokenRequest = Schemas$17["WorkspacePickerTokenRequest"];
23107
- type WorkspacePickerToken = Schemas$17["WorkspacePickerToken"];
23108
- type SyncMode = Schemas$17["SyncMode"];
23109
- type SyncStatus = Schemas$17["SyncStatus"];
23110
- type SyncTriggerType = Schemas$17["SyncTriggerType"];
23111
- type SyncDeletionPolicy = Schemas$17["SyncDeletionPolicy"];
23112
- type ConnectionConfig = Schemas$17["ConnectionConfig"];
23113
- type StorageConfig = Schemas$17["StorageConfig"];
23114
- type S3Credentials = Schemas$17["S3Credentials"];
23115
- type AzureCredentials = Schemas$17["AzureCredentials"];
23116
- type GcsCredentials = Schemas$17["GcsCredentials"];
23117
- type LlmConfig = Schemas$17["LlmConfig"];
23118
- type AuthenticatedProvider = Schemas$17["AuthenticatedProvider"];
23119
- type UnauthenticatedProvider = Schemas$17["UnauthenticatedProvider"];
23120
- type FileServiceProvider = Schemas$17["FileServiceProvider"];
23121
- type FileServiceConfig = Schemas$17["FileServiceConfig"];
23122
- type OAuthTokens = Schemas$17["OAuthTokens"];
23123
- type StartFileServiceOAuth = Schemas$17["StartFileServiceOAuth"];
23124
- type OAuthStartResponse = Schemas$17["OAuthStartResponse"];
23125
- type WorkspaceSyncSchedule = Schemas$17["WorkspaceSyncSchedule"];
23126
- type SyncScheduleInput = Schemas$17["SyncScheduleInput"];
23127
- //#endregion
23128
- //#region src/datatypes/detection.d.ts
23129
22735
  type Schemas$16 = components["schemas"];
23130
- type DetectionId = Schemas$16["DetectionId"];
23131
- type WorkspaceDetection = Schemas$16["WorkspaceDetection"];
23132
- type DetectionMetadata = Schemas$16["DetectionMetadata"];
23133
- type CreateWorkspaceDetection = Schemas$16["CreateWorkspaceDetection"];
23134
- type CreateAdhocWorkspaceDetection = Schemas$16["CreateAdhocWorkspaceDetection"];
23135
- type DetectionStatus = Schemas$16["DetectionStatus"];
23136
- type WorkspaceDetectionPage = Schemas$16["WorkspaceDetectionPage"];
23137
- type WorkspaceDetectionsQuery = Schemas$16["WorkspaceDetectionsQuery"];
23138
- type WorkspacePipelineDetectionsQuery = Schemas$16["WorkspacePipelineDetectionsQuery"];
23139
- type DetectionStatusEvent = Schemas$16["DetectionStatusEvent"];
23140
- type RedactionId = Schemas$16["RedactionId"];
23141
- type RedactWorkspaceDetection = Schemas$16["RedactWorkspaceDetection"];
23142
- type WorkspaceRedactionResult = Schemas$16["WorkspaceRedactionResult"];
23143
- type WorkspaceRedactionResultPage = Schemas$16["WorkspaceRedactionResultPage"];
22736
+ type ConnectionId = Schemas$16["ConnectionId"];
22737
+ type WorkspaceConnection = Schemas$16["WorkspaceConnection"];
22738
+ type ConnectionType = Schemas$16["ConnectionType"];
22739
+ type CreateWorkspaceConnection = Schemas$16["CreateWorkspaceConnection"];
22740
+ type UpdateWorkspaceConnection = Schemas$16["UpdateWorkspaceConnection"];
22741
+ type WorkspaceConnectionsQuery = Schemas$16["WorkspaceConnectionsQuery"];
22742
+ type WorkspaceConnectionPage = Schemas$16["WorkspaceConnectionPage"];
22743
+ type WorkspaceConnectionSync = Schemas$16["WorkspaceConnectionSync"];
22744
+ type WorkspaceConnectionSyncPage = Schemas$16["WorkspaceConnectionSyncPage"];
22745
+ type WorkspaceConnectionVerification = Schemas$16["WorkspaceConnectionVerification"];
22746
+ type ImportWorkspaceFiles = Schemas$16["ImportWorkspaceFiles"];
22747
+ type PickedFile = Schemas$16["PickedFile"];
22748
+ type ExportWorkspaceFiles = Schemas$16["ExportWorkspaceFiles"];
22749
+ type WorkspacePickerTokenRequest = Schemas$16["WorkspacePickerTokenRequest"];
22750
+ type WorkspacePickerToken = Schemas$16["WorkspacePickerToken"];
22751
+ type SyncMode = Schemas$16["SyncMode"];
22752
+ type SyncStatus = Schemas$16["SyncStatus"];
22753
+ type SyncTriggerType = Schemas$16["SyncTriggerType"];
22754
+ type SyncDeletionPolicy = Schemas$16["SyncDeletionPolicy"];
22755
+ type ConnectionConfig = Schemas$16["ConnectionConfig"];
22756
+ type StorageConfig = Schemas$16["StorageConfig"];
22757
+ type S3Credentials = Schemas$16["S3Credentials"];
22758
+ type AzureCredentials = Schemas$16["AzureCredentials"];
22759
+ type GcsCredentials = Schemas$16["GcsCredentials"];
22760
+ type LlmConfig = Schemas$16["LlmConfig"];
22761
+ type AuthenticatedProvider = Schemas$16["AuthenticatedProvider"];
22762
+ type UnauthenticatedProvider = Schemas$16["UnauthenticatedProvider"];
22763
+ type FileServiceProvider = Schemas$16["FileServiceProvider"];
22764
+ type FileServiceConfig = Schemas$16["FileServiceConfig"];
22765
+ type OAuthTokens = Schemas$16["OAuthTokens"];
22766
+ type StartFileServiceOAuth = Schemas$16["StartFileServiceOAuth"];
22767
+ type OAuthStartResponse = Schemas$16["OAuthStartResponse"];
22768
+ type WorkspaceSyncSchedule = Schemas$16["WorkspaceSyncSchedule"];
22769
+ type SyncScheduleInput = Schemas$16["SyncScheduleInput"];
23144
22770
  //#endregion
23145
- //#region src/datatypes/document.d.ts
22771
+ //#region src/datatypes/detection.d.ts
23146
22772
  type Schemas$15 = components["schemas"];
23147
- type WorkspaceDocument = Schemas$15["WorkspaceDocument"];
23148
- type UpdateWorkspaceDocument = Schemas$15["UpdateWorkspaceDocument"];
23149
- type DocumentKind = Schemas$15["DocumentKind"];
23150
- type DocumentHash = Schemas$15["DocumentHash"];
23151
- type FormatToken = Schemas$15["FormatToken"];
23152
- type ModalityToken = Schemas$15["ModalityToken"];
23153
- type ListWorkspaceDocuments = Schemas$15["ListWorkspaceDocuments"];
23154
- type WorkspaceDocumentPage = Schemas$15["WorkspaceDocumentPage"];
23155
- type DeleteWorkspaceDocuments = Schemas$15["DeleteWorkspaceDocuments"];
23156
- type WorkspaceDeletedDocuments = Schemas$15["WorkspaceDeletedDocuments"];
22773
+ type DetectionId = Schemas$15["DetectionId"];
22774
+ type WorkspaceDetection = Schemas$15["WorkspaceDetection"];
22775
+ type DetectionMetadata = Schemas$15["DetectionMetadata"];
22776
+ type CreateWorkspaceDetection = Schemas$15["CreateWorkspaceDetection"];
22777
+ type CreateAdhocWorkspaceDetection = Schemas$15["CreateAdhocWorkspaceDetection"];
22778
+ type DetectionStatus = Schemas$15["DetectionStatus"];
22779
+ type WorkspaceDetectionPage = Schemas$15["WorkspaceDetectionPage"];
22780
+ type WorkspaceDetectionsQuery = Schemas$15["WorkspaceDetectionsQuery"];
22781
+ type WorkspacePipelineDetectionsQuery = Schemas$15["WorkspacePipelineDetectionsQuery"];
22782
+ type DetectionStatusEvent = Schemas$15["DetectionStatusEvent"];
22783
+ type RedactionId = Schemas$15["RedactionId"];
22784
+ type RedactWorkspaceDetection = Schemas$15["RedactWorkspaceDetection"];
22785
+ type WorkspaceRedactionResult = Schemas$15["WorkspaceRedactionResult"];
22786
+ type WorkspaceRedactionResultPage = Schemas$15["WorkspaceRedactionResultPage"];
22787
+ type WorkspaceRedactionsQuery = Schemas$15["WorkspaceRedactionsQuery"];
23157
22788
  //#endregion
23158
- //#region src/datatypes/error.d.ts
22789
+ //#region src/datatypes/document.d.ts
23159
22790
  type Schemas$14 = components["schemas"];
23160
- type ErrorResponse = Schemas$14["ErrorResponse"];
22791
+ type WorkspaceDocument = Schemas$14["WorkspaceDocument"];
22792
+ type UpdateWorkspaceDocument = Schemas$14["UpdateWorkspaceDocument"];
22793
+ type DocumentKind = Schemas$14["DocumentKind"];
22794
+ type DocumentHash = Schemas$14["DocumentHash"];
22795
+ type FormatToken = Schemas$14["FormatToken"];
22796
+ type ModalityToken = Schemas$14["ModalityToken"];
22797
+ type ListWorkspaceDocuments = Schemas$14["ListWorkspaceDocuments"];
22798
+ type WorkspaceDocumentPage = Schemas$14["WorkspaceDocumentPage"];
22799
+ type DeleteWorkspaceDocuments = Schemas$14["DeleteWorkspaceDocuments"];
22800
+ type WorkspaceDeletedDocuments = Schemas$14["WorkspaceDeletedDocuments"];
23161
22801
  //#endregion
23162
- //#region src/datatypes/export.d.ts
22802
+ //#region src/datatypes/error.d.ts
23163
22803
  type Schemas$13 = components["schemas"];
23164
- type ExportFormat = Schemas$13["ExportFormat"];
23165
- type ExportQuery = Schemas$13["ExportQuery"];
23166
- type DateWindow = Schemas$13["DateWindow"];
22804
+ type ErrorResponse = Schemas$13["ErrorResponse"];
23167
22805
  //#endregion
23168
- //#region src/datatypes/health.d.ts
22806
+ //#region src/datatypes/export.d.ts
23169
22807
  type Schemas$12 = components["schemas"];
23170
- type Health = Schemas$12["Health"];
23171
- type HealthStatus = Schemas$12["HealthStatus"];
23172
- type ComponentHealth = Schemas$12["ComponentHealth"];
22808
+ type ExportFormat = Schemas$12["ExportFormat"];
22809
+ type ExportQuery = Schemas$12["ExportQuery"];
22810
+ type DateWindow = Schemas$12["DateWindow"];
23173
22811
  //#endregion
23174
- //#region src/datatypes/invite.d.ts
22812
+ //#region src/datatypes/health.d.ts
23175
22813
  type Schemas$11 = components["schemas"];
23176
- type WorkspaceInvite = Schemas$11["WorkspaceInvite"];
23177
- type WorkspaceInviteSent = Schemas$11["WorkspaceInviteSent"];
23178
- type CreateWorkspaceInvite = Schemas$11["CreateWorkspaceInvite"];
23179
- type ReplyWorkspaceInvite = Schemas$11["ReplyWorkspaceInvite"];
23180
- type GenerateWorkspaceInviteCode = Schemas$11["GenerateWorkspaceInviteCode"];
23181
- type WorkspaceInviteCode = Schemas$11["WorkspaceInviteCode"];
23182
- type InviteStatus = Schemas$11["InviteStatus"];
23183
- type InviteExpiration = Schemas$11["InviteExpiration"];
23184
- type ListWorkspaceInvites = Schemas$11["ListWorkspaceInvites"];
23185
- type InviteSortField = Schemas$11["InviteSortField"];
23186
- type Direction = Schemas$11["Direction"];
23187
- type InvitePreview = Schemas$11["InvitePreview"];
23188
- type WorkspaceInvitePage = Schemas$11["WorkspaceInvitePage"];
22814
+ type Health = Schemas$11["Health"];
22815
+ type HealthStatus = Schemas$11["HealthStatus"];
22816
+ type ComponentHealth = Schemas$11["ComponentHealth"];
23189
22817
  //#endregion
23190
- //#region src/datatypes/member.d.ts
22818
+ //#region src/datatypes/invite.d.ts
23191
22819
  type Schemas$10 = components["schemas"];
23192
- type WorkspaceMember = Schemas$10["WorkspaceMember"];
23193
- type UpdateWorkspaceMember = Schemas$10["UpdateWorkspaceMember"];
23194
- type ListWorkspaceMembers = Schemas$10["ListWorkspaceMembers"];
23195
- type MemberSortField = Schemas$10["MemberSortField"];
23196
- type WorkspaceMemberPage = Schemas$10["WorkspaceMemberPage"];
22820
+ type WorkspaceInvite = Schemas$10["WorkspaceInvite"];
22821
+ type WorkspaceInviteSent = Schemas$10["WorkspaceInviteSent"];
22822
+ type CreateWorkspaceInvite = Schemas$10["CreateWorkspaceInvite"];
22823
+ type ReplyWorkspaceInvite = Schemas$10["ReplyWorkspaceInvite"];
22824
+ type GenerateWorkspaceInviteCode = Schemas$10["GenerateWorkspaceInviteCode"];
22825
+ type WorkspaceInviteCode = Schemas$10["WorkspaceInviteCode"];
22826
+ type InviteStatus = Schemas$10["InviteStatus"];
22827
+ type InviteExpiration = Schemas$10["InviteExpiration"];
22828
+ type ListWorkspaceInvites = Schemas$10["ListWorkspaceInvites"];
22829
+ type InviteSortField = Schemas$10["InviteSortField"];
22830
+ type Direction = Schemas$10["Direction"];
22831
+ type InvitePreview = Schemas$10["InvitePreview"];
22832
+ type WorkspaceInvitePage = Schemas$10["WorkspaceInvitePage"];
23197
22833
  //#endregion
23198
- //#region src/datatypes/notification.d.ts
22834
+ //#region src/datatypes/member.d.ts
23199
22835
  type Schemas$9 = components["schemas"];
23200
- type AccountNotification = Schemas$9["AccountNotification"];
23201
- type NotificationEvent = Schemas$9["NotificationEvent"];
23202
- type WorkspaceNotificationSettings = Schemas$9["WorkspaceNotificationSettings"];
23203
- type UpdateWorkspaceNotificationSettings = Schemas$9["UpdateWorkspaceNotificationSettings"];
23204
- type AccountUnreadStatus = Schemas$9["AccountUnreadStatus"];
23205
- type AccountNotificationPage = Schemas$9["AccountNotificationPage"];
23206
- type AccountMarkedReadStatus = Schemas$9["AccountMarkedReadStatus"];
23207
- type UnreadCountEvent = Schemas$9["UnreadCountEvent"];
23208
- type NotificationPayload = Schemas$9["NotificationPayload"];
23209
- type MemberJoinedParams = Schemas$9["MemberJoinedParams"];
23210
- type ConnectionSyncCompletedParams = Schemas$9["ConnectionSyncCompletedParams"];
23211
- type ConnectionSyncFailedParams = Schemas$9["ConnectionSyncFailedParams"];
23212
- type DetectionCompletedParams = Schemas$9["DetectionCompletedParams"];
23213
- type DetectionFailedParams = Schemas$9["DetectionFailedParams"];
23214
- type RedactionCreatedParams = Schemas$9["RedactionCreatedParams"];
23215
- type ReviewAssignedParams = Schemas$9["ReviewAssignedParams"];
23216
- type CommentMentionedParams = Schemas$9["CommentMentionedParams"];
22836
+ type WorkspaceMember = Schemas$9["WorkspaceMember"];
22837
+ type UpdateWorkspaceMember = Schemas$9["UpdateWorkspaceMember"];
22838
+ type ListWorkspaceMembers = Schemas$9["ListWorkspaceMembers"];
22839
+ type MemberSortField = Schemas$9["MemberSortField"];
22840
+ type WorkspaceMemberPage = Schemas$9["WorkspaceMemberPage"];
23217
22841
  //#endregion
23218
- //#region src/datatypes/pagination.d.ts
22842
+ //#region src/datatypes/notification.d.ts
23219
22843
  type Schemas$8 = components["schemas"];
23220
- type CursorPagination = Schemas$8["CursorPagination"];
22844
+ type AccountNotification = Schemas$8["AccountNotification"];
22845
+ type NotificationEvent = Schemas$8["NotificationEvent"];
22846
+ type WorkspaceNotificationSettings = Schemas$8["WorkspaceNotificationSettings"];
22847
+ type UpdateWorkspaceNotificationSettings = Schemas$8["UpdateWorkspaceNotificationSettings"];
22848
+ type AccountUnreadStatus = Schemas$8["AccountUnreadStatus"];
22849
+ type AccountNotificationPage = Schemas$8["AccountNotificationPage"];
22850
+ type AccountMarkedReadStatus = Schemas$8["AccountMarkedReadStatus"];
22851
+ type UnreadCountEvent = Schemas$8["UnreadCountEvent"];
22852
+ type NotificationPayload = Schemas$8["NotificationPayload"];
22853
+ type MemberJoinedParams = Schemas$8["MemberJoinedParams"];
22854
+ type ConnectionSyncCompletedParams = Schemas$8["ConnectionSyncCompletedParams"];
22855
+ type ConnectionSyncFailedParams = Schemas$8["ConnectionSyncFailedParams"];
22856
+ type DetectionCompletedParams = Schemas$8["DetectionCompletedParams"];
22857
+ type DetectionFailedParams = Schemas$8["DetectionFailedParams"];
22858
+ type RedactionCreatedParams = Schemas$8["RedactionCreatedParams"];
22859
+ type ReviewAssignedParams = Schemas$8["ReviewAssignedParams"];
22860
+ type CommentMentionedParams = Schemas$8["CommentMentionedParams"];
23221
22861
  //#endregion
23222
- //#region src/datatypes/pipeline.d.ts
22862
+ //#region src/datatypes/pagination.d.ts
23223
22863
  type Schemas$7 = components["schemas"];
23224
- type WorkspacePipeline = Schemas$7["WorkspacePipeline"];
23225
- type CreateWorkspacePipeline = Schemas$7["CreateWorkspacePipeline"];
23226
- type UpdateWorkspacePipeline = Schemas$7["UpdateWorkspacePipeline"];
23227
- type PipelineDefinition = Schemas$7["PipelineDefinition"];
23228
- type WorkspacePipelineFilter = Schemas$7["WorkspacePipelineFilter"];
23229
- type PipelineStatus = Schemas$7["PipelineStatus"];
23230
- type PipelineTriggerType = Schemas$7["PipelineTriggerType"];
23231
- type WorkspacePipelineSummary = Schemas$7["WorkspacePipelineSummary"];
23232
- type WorkspacePipelineSummaryPage = Schemas$7["WorkspacePipelineSummaryPage"];
22864
+ type CursorPagination = Schemas$7["CursorPagination"];
23233
22865
  //#endregion
23234
- //#region src/datatypes/policy.d.ts
22866
+ //#region src/datatypes/pipeline.d.ts
23235
22867
  type Schemas$6 = components["schemas"];
23236
- type WorkspacePolicy = Schemas$6["WorkspacePolicy"];
23237
- type Policy = Schemas$6["Policy"];
23238
- type PolicyKind = Schemas$6["PolicyKind"];
23239
- type WorkspacePolicySummary = Schemas$6["WorkspacePolicySummary"];
23240
- type WorkspacePolicySummaryPage = Schemas$6["WorkspacePolicySummaryPage"];
23241
- type WorkspacePoliciesQuery = Schemas$6["WorkspacePoliciesQuery"];
23242
- type PolicyDraft = Schemas$6["PolicyDraft"];
23243
- type CreateWorkspacePolicy = Schemas$6["CreateWorkspacePolicy"];
23244
- type UpdateWorkspacePolicy = Schemas$6["UpdateWorkspacePolicy"];
23245
- type PolicyRule = Schemas$6["PolicyRule"];
23246
- type CustomMatcher = Schemas$6["CustomMatcher"];
23247
- type PolicyTemplate = Schemas$6["PolicyTemplate"];
23248
- type TemplateOrigin = Schemas$6["TemplateOrigin"];
23249
- type HipaaDeidMethod = Schemas$6["HipaaDeidMethod"];
23250
- type HipaaAccountNumbers = Schemas$6["HipaaAccountNumbers"];
23251
- type GdprArticle9Treatment = Schemas$6["GdprArticle9Treatment"];
23252
- type GdprSensitiveScope = Schemas$6["GdprSensitiveScope"];
23253
- type PciDssPart = Schemas$6["PciDssPart"];
23254
- type PciPanRender = Schemas$6["PciPanRender"];
23255
- type Predicate = Schemas$6["Predicate"];
23256
- type ModalityRedactions = Schemas$6["ModalityRedactions"];
23257
- type TextRedaction = Schemas$6["TextRedaction"];
23258
- type ImageRedaction = Schemas$6["ImageRedaction"];
23259
- type AudioRedaction = Schemas$6["AudioRedaction"];
23260
- type TabularRedaction = Schemas$6["TabularRedaction"];
23261
- type LabelScope = Schemas$6["LabelScope"];
23262
- type LabelEntry = Schemas$6["LabelEntry"];
23263
- type LabelLocale = Schemas$6["LabelLocale"];
23264
- type Label = Schemas$6["Label"];
23265
- type LabelRef = Schemas$6["LabelRef"];
23266
- type LocalizedText = Schemas$6["LocalizedText"];
23267
- type Color = Schemas$6["Color"];
23268
- type Waveform = Schemas$6["Waveform"];
23269
- type ClampBucket = Schemas$6["ClampBucket"];
23270
- type ConfidenceThreshold = Schemas$6["ConfidenceThreshold"];
23271
- type DateStyle = Schemas$6["DateStyle"];
23272
- type DateGranularity = Schemas$6["DateGranularity"];
23273
- type LanguageTag = Schemas$6["LanguageTag"];
23274
- type Sha2Algorithm = Schemas$6["Sha2Algorithm"];
23275
- type TerminalFallback = Schemas$6["TerminalFallback"];
22868
+ type WorkspacePipeline = Schemas$6["WorkspacePipeline"];
22869
+ type CreateWorkspacePipeline = Schemas$6["CreateWorkspacePipeline"];
22870
+ type UpdateWorkspacePipeline = Schemas$6["UpdateWorkspacePipeline"];
22871
+ type PipelineDefinition = Schemas$6["PipelineDefinition"];
22872
+ type WorkspacePipelineFilter = Schemas$6["WorkspacePipelineFilter"];
22873
+ type PipelineStatus = Schemas$6["PipelineStatus"];
22874
+ type PipelineTriggerType = Schemas$6["PipelineTriggerType"];
22875
+ type WorkspacePipelineSummary = Schemas$6["WorkspacePipelineSummary"];
22876
+ type WorkspacePipelineSummaryPage = Schemas$6["WorkspacePipelineSummaryPage"];
23276
22877
  //#endregion
23277
- //#region src/datatypes/provider.d.ts
22878
+ //#region src/datatypes/policy.d.ts
23278
22879
  type Schemas$5 = components["schemas"];
23279
- type ProviderId = Schemas$5["ProviderId"];
23280
- type WorkspaceProvider = Schemas$5["WorkspaceProvider"];
23281
- type CreateWorkspaceProvider = Schemas$5["CreateWorkspaceProvider"];
23282
- type UpdateWorkspaceProvider = Schemas$5["UpdateWorkspaceProvider"];
23283
- type WorkspaceProvidersQuery = Schemas$5["WorkspaceProvidersQuery"];
23284
- type WorkspaceProviderPage = Schemas$5["WorkspaceProviderPage"];
23285
- type ProviderType = Schemas$5["ProviderType"];
23286
- type ProviderConfig = Schemas$5["ProviderConfig"];
23287
- type InferenceConfig = Schemas$5["InferenceConfig"];
22880
+ type WorkspacePolicy = Schemas$5["WorkspacePolicy"];
22881
+ type Policy = Schemas$5["Policy"];
22882
+ type PolicyKind = Schemas$5["PolicyKind"];
22883
+ type WorkspacePolicySummary = Schemas$5["WorkspacePolicySummary"];
22884
+ type WorkspacePolicySummaryPage = Schemas$5["WorkspacePolicySummaryPage"];
22885
+ type WorkspacePoliciesQuery = Schemas$5["WorkspacePoliciesQuery"];
22886
+ type PolicyDraft = Schemas$5["PolicyDraft"];
22887
+ type CreateWorkspacePolicy = Schemas$5["CreateWorkspacePolicy"];
22888
+ type UpdateWorkspacePolicy = Schemas$5["UpdateWorkspacePolicy"];
22889
+ type PolicyRule = Schemas$5["PolicyRule"];
22890
+ type CustomMatcher = Schemas$5["CustomMatcher"];
22891
+ type PolicyTemplate = Schemas$5["PolicyTemplate"];
22892
+ type TemplateOrigin = Schemas$5["TemplateOrigin"];
22893
+ type HipaaDeidMethod = Schemas$5["HipaaDeidMethod"];
22894
+ type HipaaAccountNumbers = Schemas$5["HipaaAccountNumbers"];
22895
+ type GdprArticle9Treatment = Schemas$5["GdprArticle9Treatment"];
22896
+ type GdprSensitiveScope = Schemas$5["GdprSensitiveScope"];
22897
+ type PciDssPart = Schemas$5["PciDssPart"];
22898
+ type PciPanRender = Schemas$5["PciPanRender"];
22899
+ type Predicate = Schemas$5["Predicate"];
22900
+ type ModalityRedactions = Schemas$5["ModalityRedactions"];
22901
+ type TextRedaction = Schemas$5["TextRedaction"];
22902
+ type ImageRedaction = Schemas$5["ImageRedaction"];
22903
+ type AudioRedaction = Schemas$5["AudioRedaction"];
22904
+ type TabularRedaction = Schemas$5["TabularRedaction"];
22905
+ type LabelScope = Schemas$5["LabelScope"];
22906
+ type LabelEntry = Schemas$5["LabelEntry"];
22907
+ type LabelLocale = Schemas$5["LabelLocale"];
22908
+ type Label = Schemas$5["Label"];
22909
+ type LabelRef = Schemas$5["LabelRef"];
22910
+ type LocalizedText = Schemas$5["LocalizedText"];
22911
+ type Color = Schemas$5["Color"];
22912
+ type Waveform = Schemas$5["Waveform"];
22913
+ type ClampBucket = Schemas$5["ClampBucket"];
22914
+ type ConfidenceThreshold = Schemas$5["ConfidenceThreshold"];
22915
+ type DateStyle = Schemas$5["DateStyle"];
22916
+ type DateGranularity = Schemas$5["DateGranularity"];
22917
+ type LanguageTag = Schemas$5["LanguageTag"];
22918
+ type Sha2Algorithm = Schemas$5["Sha2Algorithm"];
22919
+ type TerminalFallback = Schemas$5["TerminalFallback"];
23288
22920
  //#endregion
23289
- //#region src/datatypes/review.d.ts
22921
+ //#region src/datatypes/provider.d.ts
23290
22922
  type Schemas$4 = components["schemas"];
23291
- type WorkspaceReview = Schemas$4["WorkspaceReview"];
23292
- type CreateWorkspaceReview = Schemas$4["CreateWorkspaceReview"];
23293
- type WorkspaceReviewPage = Schemas$4["WorkspaceReviewPage"];
23294
- type WorkspaceReviewsQuery = Schemas$4["WorkspaceReviewsQuery"];
23295
- type WorkspaceReviewEvent = Schemas$4["WorkspaceReviewEvent"];
23296
- type WorkspaceReviewEventPage = Schemas$4["WorkspaceReviewEventPage"];
23297
- type ReviewStatus = Schemas$4["ReviewStatus"];
22923
+ type ProviderId = Schemas$4["ProviderId"];
22924
+ type WorkspaceProvider = Schemas$4["WorkspaceProvider"];
22925
+ type CreateWorkspaceProvider = Schemas$4["CreateWorkspaceProvider"];
22926
+ type UpdateWorkspaceProvider = Schemas$4["UpdateWorkspaceProvider"];
22927
+ type WorkspaceProvidersQuery = Schemas$4["WorkspaceProvidersQuery"];
22928
+ type WorkspaceProviderPage = Schemas$4["WorkspaceProviderPage"];
22929
+ type ProviderType = Schemas$4["ProviderType"];
22930
+ type ProviderConfig = Schemas$4["ProviderConfig"];
22931
+ type InferenceConfig = Schemas$4["InferenceConfig"];
23298
22932
  //#endregion
23299
- //#region src/datatypes/scope.d.ts
22933
+ //#region src/datatypes/review.d.ts
23300
22934
  type Schemas$3 = components["schemas"];
23301
- type ScopeMetadata = Schemas$3["ScopeMetadata"];
23302
- type CountryCode = Schemas$3["CountryCode"];
23303
- type Language = Schemas$3["Language"];
23304
- type Languages = Schemas$3["Languages"];
23305
- type LanguageSpan = Schemas$3["LanguageSpan"];
23306
- type LanguageProvenance = Schemas$3["LanguageProvenance"];
23307
- type Confidence = Schemas$3["Confidence"];
22935
+ type WorkspaceReview = Schemas$3["WorkspaceReview"];
22936
+ type CreateWorkspaceReview = Schemas$3["CreateWorkspaceReview"];
22937
+ type RenameWorkspaceReview = Schemas$3["RenameWorkspaceReview"];
22938
+ type WorkspaceReviewPage = Schemas$3["WorkspaceReviewPage"];
22939
+ type WorkspaceReviewsQuery = Schemas$3["WorkspaceReviewsQuery"];
22940
+ type WorkspaceReviewEvent = Schemas$3["WorkspaceReviewEvent"];
22941
+ type WorkspaceReviewEventPage = Schemas$3["WorkspaceReviewEventPage"];
22942
+ type WorkspaceReviewEntry = Schemas$3["WorkspaceReviewEntry"];
22943
+ type WorkspaceReviewEntryPage = Schemas$3["WorkspaceReviewEntryPage"];
22944
+ type ReviewStatus = Schemas$3["ReviewStatus"];
22945
+ type WorkspaceComment = Schemas$3["WorkspaceComment"];
22946
+ type CreateWorkspaceComment = Schemas$3["CreateWorkspaceComment"];
22947
+ type UpdateWorkspaceComment = Schemas$3["UpdateWorkspaceComment"];
23308
22948
  //#endregion
23309
- //#region src/datatypes/thread.d.ts
22949
+ //#region src/datatypes/scope.d.ts
23310
22950
  type Schemas$2 = components["schemas"];
23311
- type WorkspaceThread = Schemas$2["WorkspaceThread"];
23312
- type WorkspaceThreadPage = Schemas$2["WorkspaceThreadPage"];
23313
- type WorkspaceThreadsQuery = Schemas$2["WorkspaceThreadsQuery"];
23314
- type OpenWorkspaceThread = Schemas$2["OpenWorkspaceThread"];
23315
- type RenameWorkspaceThread = Schemas$2["RenameWorkspaceThread"];
23316
- type WorkspaceThreadEntry = Schemas$2["WorkspaceThreadEntry"];
23317
- type WorkspaceThreadEntryPage = Schemas$2["WorkspaceThreadEntryPage"];
23318
- type WorkspaceThreadEvent = Schemas$2["WorkspaceThreadEvent"];
23319
- type ThreadEventKind = Schemas$2["ThreadEventKind"];
23320
- type WorkspaceComment = Schemas$2["WorkspaceComment"];
23321
- type CreateWorkspaceComment = Schemas$2["CreateWorkspaceComment"];
23322
- type UpdateWorkspaceComment = Schemas$2["UpdateWorkspaceComment"];
22951
+ type ScopeMetadata = Schemas$2["ScopeMetadata"];
22952
+ type CountryCode = Schemas$2["CountryCode"];
22953
+ type Language = Schemas$2["Language"];
22954
+ type Languages = Schemas$2["Languages"];
22955
+ type LanguageSpan = Schemas$2["LanguageSpan"];
22956
+ type LanguageProvenance = Schemas$2["LanguageProvenance"];
22957
+ type Confidence = Schemas$2["Confidence"];
23323
22958
  //#endregion
23324
22959
  //#region src/datatypes/webhook.d.ts
23325
22960
  type Schemas$1 = components["schemas"];
@@ -23347,5 +22982,5 @@ type Retention = Schemas["Retention"];
23347
22982
  type RetentionSettings = Schemas["RetentionSettings"];
23348
22983
  type RetentionOverride = Schemas["RetentionOverride"];
23349
22984
  //#endregion
23350
- export { WorkspaceProvider as $, AccountApiTokenPage as $a, PatternEvent as $i, DetectionMetadata as $n, Signup as $r, AccountNotification as $t, WorkspaceThreadEvent as A, TextCoord as Aa, EditSet as Ai, WorkspaceInviteCode as An, ReviewActivityParams as Ao, SyncScheduleInput as Ar, Predicate as At, CreateWorkspaceReview as B, TextRefinement as Ba, ImageHint as Bi, DeleteWorkspaceDocuments as Bn, AccountIdentities as Bo, WorkspaceConnectionsQuery as Br, WorkspacePolicySummary as Bt, RenameWorkspaceThread as C, TabularPattern as Ca, Conflict as Ci, InviteExpiration as Cn, DocumentActivityParams as Co, OAuthTokens as Cr, PciDssPart as Ct, WorkspaceThread as D, TextAuditEvent as Da, Dimensions as Di, ListWorkspaceInvites as Dn, PolicyActivityParams as Do, StorageConfig as Dr, PolicyKind as Dt, WorkspaceComment as E, TextAdd as Ea, Deduplication as Ei, InviteStatus as En, PipelineActivityParams as Eo, StartFileServiceOAuth as Er, PolicyDraft as Et, Language as F, TextLocation as Fa, ImageAuditKind as Fi, HealthStatus as Fn, WorkspaceActivityExportOptions as Fo, WorkspaceConnection as Fr, TextRedaction as Ft, WorkspaceReviewPage as G, LayoutBlock as Ga, ImagePattern as Gi, ModalityToken as Gn, OidcStartResponse as Go, ConnectorCapabilities as Gr, PipelineTriggerType as Gt, WorkspaceReview as H, TimeSpan as Ha, ImageManual as Hi, DocumentKind as Hn, AccountRef as Ho, WorkspacePickerTokenRequest as Hr, CreateWorkspacePipeline as Ht, LanguageProvenance as I, TextManual as Ia, ImageAuditLog as Ii, DateWindow as In, WorkspaceActivityFilterQuery as Io, WorkspaceConnectionPage as Ir, UpdateWorkspacePolicy as It, InferenceConfig as J, Tokens as Ja, LeakProfile as Ji, WorkspaceDocument as Jn, UpdateAccount as Jo, RecognizerCatalog as Jr, WorkspacePipelineFilter as Jt, WorkspaceReviewsQuery as K, LayoutWord as Ka, ImageRefinement as Ki, UpdateWorkspaceDocument as Kn, PublicAccount as Ko, FileProviders as Kr, UpdateWorkspacePipeline as Kt, LanguageSpan as L, TextMetadata as La, ImageData as Li, ExportFormat as Ln, WorkspaceActivityPage as Lo, WorkspaceConnectionSync as Lr, Waveform as Lt, WorkspaceThreadsQuery as M, TextEdit as Ma, FreeformAttribution as Mi, WorkspaceInviteSent as Mn, ThreadCommentActivityParams as Mo, SyncTriggerType as Mr, TabularRedaction as Mt, Confidence as N, TextEntity as Na, ImageAdd as Ni, ComponentHealth as Nn, WebhookActivityParams as No, UnauthenticatedProvider as Nr, TemplateOrigin as Nt, WorkspaceThreadEntry as O, TextAuditKind as Oa, DocumentContext as Oi, ReplyWorkspaceInvite as On, ProviderActivityParams as Oo, SyncDeletionPolicy as Or, PolicyRule as Ot, CountryCode as P, TextHint as Pa, ImageAuditEvent as Pi, Health as Pn, WorkspaceActivity as Po, UpdateWorkspaceConnection as Pr, TerminalFallback as Pt, UpdateWorkspaceProvider as Q, AccountApiToken as Qa, OperatorId as Qi, DetectionId as Qn, Login as Qr, AccountMarkedReadStatus as Qt, Languages as R, TextModel as Ra, ImageEdit as Ri, ExportQuery as Rn, WorkspaceActivityParams as Ro, WorkspaceConnectionSyncPage as Rr, WorkspacePoliciesQuery as Rt, OpenWorkspaceThread as S, TabularModel as Sa, CodecParams as Si, GenerateWorkspaceInviteCode as Sn, DetectionActivityParams as So, OAuthStartResponse as Sr, ModalityRedactions as St, UpdateWorkspaceComment as T, TabularRetag as Ta, DecodedSpan as Ti, InviteSortField as Tn, MemberActivityParams as To, S3Credentials as Tr, Policy as Tt, WorkspaceReviewEvent as U, ArtifactSet as Ua, ImageMetadata as Ui, FormatToken as Un, Handle as Uo, WorkspaceSyncSchedule as Ur, PipelineDefinition as Ut, ReviewStatus as V, TextRetag as Va, ImageLocation as Vi, DocumentHash as Vn, AccountIdentity as Vo, WorkspacePickerToken as Vr, WorkspacePolicySummaryPage as Vt, WorkspaceReviewEventPage as W, Layout as Wa, ImageModel as Wi, ListWorkspaceDocuments as Wn, IdentityProvider as Wo, AuthCapabilities as Wr, PipelineStatus as Wt, ProviderId as X, TranscriptWord as Xa, MetadataEvent as Xi, CreateAdhocWorkspaceDetection as Xn, AccountDesktopToken as Xr, WorkspacePipelineSummaryPage as Xt, ProviderConfig as Y, TranscriptSegment as Ya, ManualIntent as Yi, WorkspaceDocumentPage as Yn, paths as Yo, RegisteredRecognizer as Yr, WorkspacePipelineSummary as Yt, ProviderType as Z, Transcription as Za, ModelEvent as Zi, CreateWorkspaceDetection as Zn, DesktopTokenRequest as Zr, CursorPagination as Zt, WorkspaceWebhook as _, TabularEntity as _a, AuditHash as _i, UpdateWorkspaceMember as _n, WorkspaceStorageKindEntry as _o, FileServiceConfig as _r, LabelLocale as _t, RetentionSettings as a, Redaction as aa, AudioData as ai, DetectionCompletedParams as an, ModelUsage as ao, WorkspaceDetectionPage as ar, ConfidenceThreshold as at, WorkspaceWebhookResult as b, TabularManual as ba, Category as bi, CreateWorkspaceInvite as bn, ActivityType as bo, ImportWorkspaceFiles as br, LanguageTag as bt, WorkspacePage as c, Selection as ca, AudioHint as ci, NotificationEvent as cn, Usage as co, WorkspaceRedactionResult as cr, DateGranularity as ct, CreateWorkspaceWebhook as d, Suppress as da, AudioMetadata as di, ReviewAssignedParams as dn, WorkspaceDetectionAnalytics as do, AzureCredentials as dr, GdprSensitiveScope as dt, Point as ea, Attribution as ei, AccountNotificationPage as en, AccountApiTokenWithJwt as eo, DetectionStatus as er, WorkspaceProviderPage as et, TestWorkspaceWebhook as f, TabularAdd as fa, AudioModel as fi, UnreadCountEvent as fn, WorkspaceDetectionDayEntry as fo, ConnectionConfig as fr, HipaaAccountNumbers as ft, WebhookStatus as g, TabularEdit as ga, Audit as gi, MemberSortField as gn, WorkspaceStorageAnalytics as go, ExportWorkspaceFiles as gr, LabelEntry as gt, WebhookId as h, TabularAuditLog as ha, AudioRetag as hi, ListWorkspaceMembers as hn, WorkspaceModelUsageEntry as ho, CreateWorkspaceConnection as hr, Label as ht, RetentionOverride as i, Recognition as ia, AudioAuditLog as ii, ConnectionSyncFailedParams as in, UpdateAccountApiToken as io, WorkspaceDetection as ir, Color as it, WorkspaceThreadPage as j, TextData as ja, EntityCoRef as ji, WorkspaceInvitePage as jn, ThreadActivityParams as jo, SyncStatus as jr, Sha2Algorithm as jt, WorkspaceThreadEntryPage as k, TextAuditLog as ka, Dpi as ki, WorkspaceInvite as kn, RedactionActivityParams as ko, SyncMode as kr, PolicyTemplate as kt, WorkspaceRole as l, SourceRef as la, AudioLocation as li, NotificationPayload as ln, UsageReport as lo, WorkspaceRedactionResultPage as lr, DateStyle as lt, WebhookEvent as m, TabularAuditKind as ma, AudioRefinement as mi, WorkspaceNotificationSettings as mn, WorkspaceDetectionTimeSeries as mo, ConnectionType as mr, ImageRedaction as mt, RasterPolicy as n, RangeOfUint as na, AudioAuditEvent as ni, CommentMentionedParams as nn, CreateAccountApiToken as no, RedactWorkspaceDetection as nr, AudioRedaction as nt, UpdateWorkspace as o, Report as oa, AudioEdit as oi, DetectionFailedParams as on, RecognizerId as oo, WorkspaceDetectionsQuery as or, CreateWorkspacePolicy as ot, UpdateWorkspaceWebhook as p, TabularAuditEvent as pa, AudioPattern as pi, UpdateWorkspaceNotificationSettings as pn, WorkspaceDetectionStatusEntry as po, ConnectionId as pr, HipaaDeidMethod as pt, CreateWorkspaceProvider as q, Token as qa, ImageRetag as qi, WorkspaceDeletedDocuments as qn, SetPassword as qo, LabelCatalog as qr, WorkspacePipeline as qt, Retention as r, RasterMode as ra, AudioAuditKind as ri, ConnectionSyncCompletedParams as rn, TokenExpiration as ro, RedactionId as rr, ClampBucket as rt, Workspace as s, RuleMatch as sa, AudioEntity as si, MemberJoinedParams as sn, TokenCounts as so, WorkspacePipelineDetectionsQuery as sr, CustomMatcher as st, CreateWorkspace as t, Polygon as ta, AudioAdd as ti, AccountUnreadStatus as tn, ApiTokenType as to, DetectionStatusEvent as tr, WorkspaceProvidersQuery as tt, WorkspaceSettings as u, SourceSpan as ua, AudioManual as ui, RedactionCreatedParams as un, WorkspaceAnalytics as uo, AuthenticatedProvider as ur, GdprArticle9Treatment as ut, WorkspaceWebhookCreated as v, TabularHint as va, BoundingBox as vi, WorkspaceMember as vn, WorkspaceUsageAnalytics as vo, FileServiceProvider as vr, LabelRef as vt, ThreadEventKind as w, TabularRefinement as wa, Contested as wi, InvitePreview as wn, InviteActivityParams as wo, PickedFile as wr, PciPanRender as wt, CreateWorkspaceComment as x, TabularMetadata as xa, CitedAttribution as xi, Direction as xn, ConnectionActivityParams as xo, LlmConfig as xr, LocalizedText as xt, WorkspaceWebhookPage as y, TabularLocation as ya, Calibration as yi, WorkspaceMemberPage as yn, ActivityPayload as yo, GcsCredentials as yr, LabelScope as yt, ScopeMetadata as z, TextPattern as za, ImageEntity as zi, ErrorResponse as zn, Account as zo, WorkspaceConnectionVerification as zr, WorkspacePolicy as zt };
23351
- //# sourceMappingURL=index-DzEtj1r2.d.ts.map
22985
+ export { ConfidenceThreshold as $, CreateAccountApiToken as $a, RangeOfUint as $i, WorkspaceDetectionPage as $n, AudioAuditLog as $r, DetectionCompletedParams as $t, RenameWorkspaceReview as A, TextEntity as Aa, ImageAdd as Ai, DateWindow as An, WorkspaceActivity as Ao, WorkspaceConnection as Ar, UpdateWorkspacePolicy as At, WorkspaceReviewsQuery as B, ArtifactSet as Ba, ImageMetadata as Bi, UpdateWorkspaceDocument as Bn, IdentityProvider as Bo, ConnectorCapabilities as Br, UpdateWorkspacePipeline as Bt, Language as C, TextAdd as Ca, Dimensions as Ci, WorkspaceInvite as Cn, PipelineActivityParams as Co, SyncDeletionPolicy as Cr, PolicyTemplate as Ct, ScopeMetadata as D, TextCoord as Da, EntityCoRef as Di, ComponentHealth as Dn, ReviewActivityParams as Do, SyncTriggerType as Dr, TemplateOrigin as Dt, Languages as E, TextAuditLog as Ea, EditSet as Ei, WorkspaceInviteSent as En, RedactionActivityParams as Eo, SyncStatus as Er, TabularRedaction as Et, WorkspaceReviewEntry as F, TextModel as Fa, ImageEdit as Fi, DocumentHash as Fn, Account as Fo, WorkspaceConnectionsQuery as Fr, WorkspacePolicySummaryPage as Ft, ProviderType as G, Tokens as Ga, LeakProfile as Gi, CreateWorkspaceDetection as Gn, paths as Go, AccountDesktopToken as Gr, CursorPagination as Gt, InferenceConfig as H, LayoutBlock as Ha, ImagePattern as Hi, WorkspaceDocument as Hn, PublicAccount as Ho, LabelCatalog as Hr, WorkspacePipelineFilter as Ht, WorkspaceReviewEntryPage as I, TextPattern as Ia, ImageEntity as Ii, DocumentKind as In, AccountIdentities as Io, WorkspacePickerToken as Ir, CreateWorkspacePipeline as It, WorkspaceProviderPage as J, Transcription as Ja, ModelEvent as Ji, DetectionStatus as Jn, Signup as Jr, AccountNotificationPage as Jt, UpdateWorkspaceProvider as K, TranscriptSegment as Ka, ManualIntent as Ki, DetectionId as Kn, DesktopTokenRequest as Kr, AccountMarkedReadStatus as Kt, WorkspaceReviewEvent as L, TextRefinement as La, ImageHint as Li, FormatToken as Ln, AccountIdentity as Lo, WorkspacePickerTokenRequest as Lr, PipelineDefinition as Lt, UpdateWorkspaceComment as M, TextLocation as Ma, ImageAuditKind as Mi, ExportQuery as Mn, WorkspaceActivityFilterQuery as Mo, WorkspaceConnectionSync as Mr, WorkspacePoliciesQuery as Mt, WorkspaceComment as N, TextManual as Na, ImageAuditLog as Ni, ErrorResponse as Nn, WorkspaceActivityPage as No, WorkspaceConnectionSyncPage as Nr, WorkspacePolicy as Nt, CreateWorkspaceComment as O, TextData as Oa, ExifPolicy as Oi, Health as On, ReviewCommentActivityParams as Oo, UnauthenticatedProvider as Or, TerminalFallback as Ot, WorkspaceReview as P, TextMetadata as Pa, ImageData as Pi, DeleteWorkspaceDocuments as Pn, WorkspaceActivityParams as Po, WorkspaceConnectionVerification as Pr, WorkspacePolicySummary as Pt, Color as Q, ApiTokenType as Qa, Polygon as Qi, WorkspaceDetection as Qn, AudioAuditKind as Qr, ConnectionSyncFailedParams as Qt, WorkspaceReviewEventPage as R, TextRetag as Ra, ImageLocation as Ri, ListWorkspaceDocuments as Rn, AccountRef as Ro, WorkspaceSyncSchedule as Rr, PipelineStatus as Rt, CountryCode as S, TabularRetag as Sa, Deduplication as Si, ReplyWorkspaceInvite as Sn, MemberActivityParams as So, StorageConfig as Sr, PolicyRule as St, LanguageSpan as T, TextAuditKind as Ta, Dpi as Ti, WorkspaceInvitePage as Tn, ProviderActivityParams as To, SyncScheduleInput as Tr, Sha2Algorithm as Tt, ProviderConfig as U, LayoutWord as Ua, ImageRefinement as Ui, WorkspaceDocumentPage as Un, SetPassword as Uo, RecognizerCatalog as Ur, WorkspacePipelineSummary as Ut, CreateWorkspaceProvider as V, Layout as Va, ImageModel as Vi, WorkspaceDeletedDocuments as Vn, OidcStartResponse as Vo, FileProviders as Vr, WorkspacePipeline as Vt, ProviderId as W, Token as Wa, ImageRetag as Wi, CreateAdhocWorkspaceDetection as Wn, UpdateAccount as Wo, RegisteredRecognizer as Wr, WorkspacePipelineSummaryPage as Wt, AudioRedaction as X, AccountApiTokenPage as Xa, PatternEvent as Xi, RedactWorkspaceDetection as Xn, AudioAdd as Xr, CommentMentionedParams as Xt, WorkspaceProvidersQuery as Y, AccountApiToken as Ya, OperatorId as Yi, DetectionStatusEvent as Yn, Attribution as Yr, AccountUnreadStatus as Yt, ClampBucket as Z, AccountApiTokenWithJwt as Za, Point as Zi, RedactionId as Zn, AudioAuditEvent as Zr, ConnectionSyncCompletedParams as Zt, WorkspaceWebhook as _, TabularManual as _a, CodecParams as _i, InviteExpiration as _n, ActivityType as _o, OAuthStartResponse as _r, PciDssPart as _t, RetentionSettings as a, Selection as aa, AudioManual as ai, ReviewAssignedParams as an, Usage as ao, AuthenticatedProvider as ar, GdprSensitiveScope as at, WorkspaceWebhookResult as b, TabularPattern as ba, Contested as bi, InviteStatus as bn, DocumentActivityParams as bo, S3Credentials as br, PolicyDraft as bt, WorkspacePage as c, Suppress as ca, AudioPattern as ci, WorkspaceNotificationSettings as cn, WorkspaceDetectionAnalytics as co, ConnectionId as cr, ImageRedaction as ct, CreateWorkspaceWebhook as d, TabularAuditKind as da, Audit as di, UpdateWorkspaceMember as dn, WorkspaceDetectionTimeSeries as do, ExportWorkspaceFiles as dr, LabelLocale as dt, RasterMode as ea, AudioData as ei, DetectionFailedParams as en, TokenExpiration as eo, WorkspaceDetectionsQuery as er, CreateWorkspacePolicy as et, TestWorkspaceWebhook as f, TabularAuditLog as fa, AuditHash as fi, WorkspaceMember as fn, WorkspaceModelUsageEntry as fo, FileServiceConfig as fr, LabelRef as ft, WebhookStatus as g, TabularLocation as ga, CitedAttribution as gi, GenerateWorkspaceInviteCode as gn, ActivityPayload as go, LlmConfig as gr, ModalityRedactions as gt, WebhookId as h, TabularHint as ha, Category as hi, Direction as hn, WorkspaceUsageAnalytics as ho, ImportWorkspaceFiles as hr, LocalizedText as ht, RetentionOverride as i, RuleMatch as ia, AudioLocation as ii, RedactionCreatedParams as in, TokenCounts as io, WorkspaceRedactionsQuery as ir, GdprArticle9Treatment as it, ReviewStatus as j, TextHint as ja, ImageAuditEvent as ji, ExportFormat as jn, WorkspaceActivityExportOptions as jo, WorkspaceConnectionPage as jr, Waveform as jt, CreateWorkspaceReview as k, TextEdit as ka, FreeformAttribution as ki, HealthStatus as kn, WebhookActivityParams as ko, UpdateWorkspaceConnection as kr, TextRedaction as kt, WorkspaceRole as l, TabularAdd as la, AudioRefinement as li, ListWorkspaceMembers as ln, WorkspaceDetectionDayEntry as lo, ConnectionType as lr, Label as lt, WebhookEvent as m, TabularEntity as ma, Calibration as mi, CreateWorkspaceInvite as mn, WorkspaceStorageKindEntry as mo, GcsCredentials as mr, LanguageTag as mt, RasterPolicy as n, Redaction as na, AudioEntity as ni, NotificationEvent as nn, ModelUsage as no, WorkspaceRedactionResult as nr, DateGranularity as nt, UpdateWorkspace as o, SourceRef as oa, AudioMetadata as oi, UnreadCountEvent as on, UsageReport as oo, AzureCredentials as or, HipaaAccountNumbers as ot, UpdateWorkspaceWebhook as p, TabularEdit as pa, BoundingBox as pi, WorkspaceMemberPage as pn, WorkspaceStorageAnalytics as po, FileServiceProvider as pr, LabelScope as pt, WorkspaceProvider as q, TranscriptWord as qa, MetadataEvent as qi, DetectionMetadata as qn, Login as qr, AccountNotification as qt, Retention as r, Report as ra, AudioHint as ri, NotificationPayload as rn, RecognizerId as ro, WorkspaceRedactionResultPage as rr, DateStyle as rt, Workspace as s, SourceSpan as sa, AudioModel as si, UpdateWorkspaceNotificationSettings as sn, WorkspaceAnalytics as so, ConnectionConfig as sr, HipaaDeidMethod as st, CreateWorkspace as t, Recognition as ta, AudioEdit as ti, MemberJoinedParams as tn, UpdateAccountApiToken as to, WorkspacePipelineDetectionsQuery as tr, CustomMatcher as tt, WorkspaceSettings as u, TabularAuditEvent as ua, AudioRetag as ui, MemberSortField as un, WorkspaceDetectionStatusEntry as uo, CreateWorkspaceConnection as ur, LabelEntry as ut, WorkspaceWebhookCreated as v, TabularMetadata as va, ComponentSelection as vi, InvitePreview as vn, ConnectionActivityParams as vo, OAuthTokens as vr, PciPanRender as vt, LanguageProvenance as w, TextAuditEvent as wa, DocumentContext as wi, WorkspaceInviteCode as wn, PolicyActivityParams as wo, SyncMode as wr, Predicate as wt, Confidence as x, TabularRefinement as xa, DecodedSpan as xi, ListWorkspaceInvites as xn, InviteActivityParams as xo, StartFileServiceOAuth as xr, PolicyKind as xt, WorkspaceWebhookPage as y, TabularModel as ya, Conflict as yi, InviteSortField as yn, DetectionActivityParams as yo, PickedFile as yr, Policy as yt, WorkspaceReviewPage as z, TimeSpan as za, ImageManual as zi, ModalityToken as zn, Handle as zo, AuthCapabilities as zr, PipelineTriggerType as zt };
22986
+ //# sourceMappingURL=index-Cf0KFY6M.d.ts.map