@nvisy/sdk 0.55.0 → 0.56.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;
@@ -3487,7 +3383,7 @@ interface paths {
3487
3383
  };
3488
3384
  };
3489
3385
  responses: {
3490
- /** @description Response type for a comment: one message within a thread. */
3386
+ /** @description Response type for a comment: one message within a review's discussion. */
3491
3387
  200: {
3492
3388
  headers: {
3493
3389
  [name: string]: unknown;
@@ -3594,7 +3490,7 @@ interface paths {
3594
3490
  };
3595
3491
  trace?: never;
3596
3492
  };
3597
- "/workspaces/{workspaceId}/reviews": {
3493
+ "/workspaces/{workspaceId}/reviews/{reviewId}/timeline": {
3598
3494
  parameters: {
3599
3495
  query?: never;
3600
3496
  header?: never;
@@ -3602,8 +3498,8 @@ interface paths {
3602
3498
  cookie?: never;
3603
3499
  };
3604
3500
  /**
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.
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.
3607
3503
  */
3608
3504
  get: {
3609
3505
  parameters: {
@@ -3616,338 +3512,12 @@ interface paths {
3616
3512
  /**
3617
3513
  * @description Whether to include the total item count in the response's `total` field.
3618
3514
  * Defaults to `false`, since counting is an extra query; set it to `true`
3619
- * only when the count is actually needed.
3620
- */
3621
- includeCount?: boolean;
3622
- /** @description The maximum number of records to return (1-100, default: 20). */
3623
- limit?: number;
3624
- /** @description Filter by the assigned reviewer (account id). */
3625
- assignee?: string;
3626
- /** @description Filter to the reviews of a specific document. */
3627
- documentId?: string;
3628
- /** @description Filter by review status. */
3629
- reviewStatus?: components["schemas"]["ReviewStatus"];
3630
- };
3631
- header?: never;
3632
- path: {
3633
- /** @description Workspace identifier. */
3634
- workspaceId: string;
3635
- };
3636
- cookie?: never;
3637
- };
3638
- requestBody?: never;
3639
- responses: {
3640
- /**
3641
- * @description Generic paginated response wrapper.
3642
- *
3643
- * Provides a consistent structure for all paginated API responses with
3644
- * cursor-based pagination support. When `next_cursor` is present, there
3645
- * are more items to fetch.
3646
- */
3647
- 200: {
3648
- headers: {
3649
- [name: string]: unknown;
3650
- };
3651
- content: {
3652
- "application/json": components["schemas"]["WorkspaceReviewPage"];
3653
- };
3654
- };
3655
- /**
3656
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3657
- * that [`Error`] renders to at the response boundary.
3658
- *
3659
- * It carries no builder logic — [`Error`] is the type handlers construct and
3660
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3661
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3662
- * (`context` is logged, `status` sets the HTTP status line).
3663
- *
3664
- * [`Error`]: crate::response::Error
3665
- */
3666
- 401: {
3667
- headers: {
3668
- [name: string]: unknown;
3669
- };
3670
- content: {
3671
- "application/json": components["schemas"]["ErrorResponse"];
3672
- };
3673
- };
3674
- /**
3675
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3676
- * that [`Error`] renders to at the response boundary.
3677
- *
3678
- * It carries no builder logic — [`Error`] is the type handlers construct and
3679
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3680
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3681
- * (`context` is logged, `status` sets the HTTP status line).
3682
- *
3683
- * [`Error`]: crate::response::Error
3684
- */
3685
- 403: {
3686
- headers: {
3687
- [name: string]: unknown;
3688
- };
3689
- content: {
3690
- "application/json": components["schemas"]["ErrorResponse"];
3691
- };
3692
- };
3693
- };
3694
- };
3695
- put?: never;
3696
- post?: never;
3697
- delete?: never;
3698
- options?: never;
3699
- head?: never;
3700
- patch?: never;
3701
- trace?: never;
3702
- };
3703
- "/workspaces/{workspaceId}/documents/{documentId}/reviews": {
3704
- parameters: {
3705
- query?: never;
3706
- header?: never;
3707
- path?: never;
3708
- cookie?: never;
3709
- };
3710
- /**
3711
- * List a document's reviews
3712
- * @description Returns a document's reviews, most recent first. Requires ViewReviews.
3713
- */
3714
- get: {
3715
- parameters: {
3716
- query?: never;
3717
- header?: never;
3718
- path: {
3719
- /** @description Workspace identifier. */
3720
- workspaceId: string;
3721
- /** @description Unique identifier of the document. */
3722
- documentId: string;
3723
- };
3724
- cookie?: never;
3725
- };
3726
- requestBody?: never;
3727
- responses: {
3728
- 200: {
3729
- headers: {
3730
- [name: string]: unknown;
3731
- };
3732
- content: {
3733
- "application/json": components["schemas"]["WorkspaceReview"][];
3734
- };
3735
- };
3736
- /**
3737
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3738
- * that [`Error`] renders to at the response boundary.
3739
- *
3740
- * It carries no builder logic — [`Error`] is the type handlers construct and
3741
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3742
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3743
- * (`context` is logged, `status` sets the HTTP status line).
3744
- *
3745
- * [`Error`]: crate::response::Error
3746
- */
3747
- 401: {
3748
- headers: {
3749
- [name: string]: unknown;
3750
- };
3751
- content: {
3752
- "application/json": components["schemas"]["ErrorResponse"];
3753
- };
3754
- };
3755
- /**
3756
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3757
- * that [`Error`] renders to at the response boundary.
3758
- *
3759
- * It carries no builder logic — [`Error`] is the type handlers construct and
3760
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3761
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3762
- * (`context` is logged, `status` sets the HTTP status line).
3763
- *
3764
- * [`Error`]: crate::response::Error
3765
- */
3766
- 403: {
3767
- headers: {
3768
- [name: string]: unknown;
3769
- };
3770
- content: {
3771
- "application/json": components["schemas"]["ErrorResponse"];
3772
- };
3773
- };
3774
- /**
3775
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3776
- * that [`Error`] renders to at the response boundary.
3777
- *
3778
- * It carries no builder logic — [`Error`] is the type handlers construct and
3779
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3780
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3781
- * (`context` is logged, `status` sets the HTTP status line).
3782
- *
3783
- * [`Error`]: crate::response::Error
3784
- */
3785
- 404: {
3786
- headers: {
3787
- [name: string]: unknown;
3788
- };
3789
- content: {
3790
- "application/json": components["schemas"]["ErrorResponse"];
3791
- };
3792
- };
3793
- };
3794
- };
3795
- put?: never;
3796
- /**
3797
- * Open a document review
3798
- * @description Opens a review on a document, with an optional purpose label. A document may have many reviews (one per purpose). Requires Review.
3799
- */
3800
- post: {
3801
- parameters: {
3802
- query?: never;
3803
- header?: never;
3804
- path: {
3805
- /** @description Workspace identifier. */
3806
- workspaceId: string;
3807
- /** @description Unique identifier of the document. */
3808
- documentId: string;
3809
- };
3810
- cookie?: never;
3811
- };
3812
- /** @description Request payload to open a review on a document. */
3813
- requestBody: {
3814
- content: {
3815
- "application/json": components["schemas"]["CreateWorkspaceReview"];
3816
- };
3817
- };
3818
- responses: {
3819
- /**
3820
- * @description Response type for a document's review.
3821
- *
3822
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
3823
- * document), opened explicitly. It owns a discussion thread (referenced by
3824
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
3825
- * `assignees` (0..N reviewers).
3826
- */
3827
- 201: {
3828
- headers: {
3829
- [name: string]: unknown;
3830
- };
3831
- content: {
3832
- "application/json": components["schemas"]["WorkspaceReview"];
3833
- };
3834
- };
3835
- /**
3836
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3837
- * that [`Error`] renders to at the response boundary.
3838
- *
3839
- * It carries no builder logic — [`Error`] is the type handlers construct and
3840
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3841
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3842
- * (`context` is logged, `status` sets the HTTP status line).
3843
- *
3844
- * [`Error`]: crate::response::Error
3845
- */
3846
- 400: {
3847
- headers: {
3848
- [name: string]: unknown;
3849
- };
3850
- content: {
3851
- "application/json": components["schemas"]["ErrorResponse"];
3852
- };
3853
- };
3854
- /**
3855
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3856
- * that [`Error`] renders to at the response boundary.
3857
- *
3858
- * It carries no builder logic — [`Error`] is the type handlers construct and
3859
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3860
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3861
- * (`context` is logged, `status` sets the HTTP status line).
3862
- *
3863
- * [`Error`]: crate::response::Error
3864
- */
3865
- 401: {
3866
- headers: {
3867
- [name: string]: unknown;
3868
- };
3869
- content: {
3870
- "application/json": components["schemas"]["ErrorResponse"];
3871
- };
3872
- };
3873
- /**
3874
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3875
- * that [`Error`] renders to at the response boundary.
3876
- *
3877
- * It carries no builder logic — [`Error`] is the type handlers construct and
3878
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3879
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3880
- * (`context` is logged, `status` sets the HTTP status line).
3881
- *
3882
- * [`Error`]: crate::response::Error
3883
- */
3884
- 403: {
3885
- headers: {
3886
- [name: string]: unknown;
3887
- };
3888
- content: {
3889
- "application/json": components["schemas"]["ErrorResponse"];
3890
- };
3891
- };
3892
- /**
3893
- * @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
3894
- * that [`Error`] renders to at the response boundary.
3895
- *
3896
- * It carries no builder logic — [`Error`] is the type handlers construct and
3897
- * thread through `Result`, and it builds an `ErrorResponse` directly in its
3898
- * `IntoResponse` impl. `context` and `status` are not part of the JSON body
3899
- * (`context` is logged, `status` sets the HTTP status line).
3900
- *
3901
- * [`Error`]: crate::response::Error
3902
- */
3903
- 404: {
3904
- headers: {
3905
- [name: string]: unknown;
3906
- };
3907
- content: {
3908
- "application/json": components["schemas"]["ErrorResponse"];
3909
- };
3910
- };
3911
- /** @description Expected request with `Content-Type: application/json` */
3912
- 415: {
3913
- headers: {
3914
- [name: string]: unknown;
3915
- };
3916
- content: {
3917
- "text/plain": string;
3918
- };
3919
- };
3920
- /** @description Failed to deserialize the JSON body into the target type */
3921
- 422: {
3922
- headers: {
3923
- [name: string]: unknown;
3924
- };
3925
- content: {
3926
- "text/plain": string;
3927
- };
3928
- };
3929
- };
3930
- };
3931
- delete?: never;
3932
- options?: never;
3933
- head?: never;
3934
- patch?: never;
3935
- trace?: never;
3936
- };
3937
- "/workspaces/{workspaceId}/reviews/{reviewId}": {
3938
- parameters: {
3939
- query?: never;
3940
- header?: never;
3941
- path?: never;
3942
- cookie?: never;
3943
- };
3944
- /**
3945
- * Get a review
3946
- * @description Returns a review by id. Requires ViewReviews.
3947
- */
3948
- get: {
3949
- parameters: {
3950
- query?: never;
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: {
@@ -14893,6 +14450,26 @@ interface components {
14893
14450
  data: components["schemas"]["DocumentActivityParams"];
14894
14451
  /** @constant */
14895
14452
  type: "document.deleted";
14453
+ } | {
14454
+ data: components["schemas"]["ReviewActivityParams"];
14455
+ /** @constant */
14456
+ type: "review.opened";
14457
+ } | {
14458
+ data: components["schemas"]["ReviewActivityParams"];
14459
+ /** @constant */
14460
+ type: "review.reopened";
14461
+ } | {
14462
+ data: components["schemas"]["ReviewActivityParams"];
14463
+ /** @constant */
14464
+ type: "review.renamed";
14465
+ } | {
14466
+ data: components["schemas"]["ReviewActivityParams"];
14467
+ /** @constant */
14468
+ type: "review.deleted";
14469
+ } | {
14470
+ data: components["schemas"]["ReviewCommentActivityParams"];
14471
+ /** @constant */
14472
+ type: "review.comment.created";
14896
14473
  } | {
14897
14474
  data: components["schemas"]["ReviewActivityParams"];
14898
14475
  /** @constant */
@@ -14945,30 +14522,6 @@ interface components {
14945
14522
  data: components["schemas"]["PolicyActivityParams"];
14946
14523
  /** @constant */
14947
14524
  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"];
14970
- /** @constant */
14971
- type: "thread.comment.created";
14972
14525
  };
14973
14526
  /**
14974
14527
  * @description The type of activity performed in a workspace, for audit logging.
@@ -14976,7 +14529,7 @@ interface components {
14976
14529
  * Corresponds to the `ACTIVITY_TYPE` `PostgreSQL` enum and categorizes the
14977
14530
  * activities that occur within workspaces for a comprehensive audit trail.
14978
14531
  */
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";
14532
+ 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
14533
  /**
14981
14534
  * @description The type of API token, for authentication and tracking.
14982
14535
  *
@@ -15895,9 +15448,9 @@ interface components {
15895
15448
  commentId: string;
15896
15449
  /**
15897
15450
  * Format: uuid
15898
- * @description Id of the thread the comment is in.
15451
+ * @description Id of the review the comment is in.
15899
15452
  */
15900
- threadId: string;
15453
+ reviewId: string;
15901
15454
  };
15902
15455
  /** @description Health of a single service component. */
15903
15456
  ComponentHealth: {
@@ -16097,7 +15650,7 @@ interface components {
16097
15650
  settings?: components["schemas"]["WorkspaceSettings"];
16098
15651
  };
16099
15652
  /**
16100
- * @description Request payload to post a comment (message) in a thread.
15653
+ * @description Request payload to post a comment (message) in a review.
16101
15654
  *
16102
15655
  * `@username` mentions in the body notify those workspace members.
16103
15656
  */
@@ -16242,8 +15795,8 @@ interface components {
16242
15795
  };
16243
15796
  /** @description Request payload to open a review on a document. */
16244
15797
  CreateWorkspaceReview: {
16245
- /** @description Optional free-text label for the review's purpose/audience (1-255 chars). */
16246
- purpose?: string;
15798
+ /** @description The review's title (1-255 characters). */
15799
+ displayName: string;
16247
15800
  };
16248
15801
  /** @description Request payload for creating a new workspace webhook. */
16249
15802
  CreateWorkspaceWebhook: {
@@ -18070,22 +17623,6 @@ interface components {
18070
17623
  /** @description The provider authorize URL the client should redirect the user to. */
18071
17624
  authorizeUrl: string;
18072
17625
  };
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
17626
  /**
18090
17627
  * @description Identifies a redaction operator, for the redaction audit a higher
18091
17628
  * layer assembles.
@@ -18803,13 +18340,11 @@ interface components {
18803
18340
  */
18804
18341
  provider: string;
18805
18342
  };
18806
- /** @description Request payload to rename a thread (set or clear its title). */
18807
- RenameWorkspaceThread: {
18343
+ /** @description Request payload to rename a review (set its title). */
18344
+ RenameWorkspaceReview: {
18808
18345
  /**
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)`).
18346
+ * @description The new title (1-255 characters). Omitting the field leaves the current
18347
+ * title unchanged.
18813
18348
  */
18814
18349
  displayName?: string;
18815
18350
  };
@@ -18915,14 +18450,15 @@ interface components {
18915
18450
  redactedDocuments?: components["schemas"]["Retention"];
18916
18451
  };
18917
18452
  /**
18918
- * @description Params of a document-review activity (`review.verified`, `review.assigned`,
18919
- * `review.unassigned`), where the review is the document's thread.
18453
+ * @description Params of a review activity (`review.opened`, `review.reopened`,
18454
+ * `review.renamed`, `review.deleted`, `review.verified`, `review.assigned`,
18455
+ * `review.unassigned`).
18920
18456
  */
18921
18457
  ReviewActivityParams: {
18922
18458
  /**
18923
18459
  * Format: uuid
18924
- * @description Id of the reviewer the review is assigned to; omitted for verification or
18925
- * when clearing the assignee.
18460
+ * @description Id of the reviewer assigned or unassigned; omitted for the events that carry
18461
+ * no reviewer.
18926
18462
  */
18927
18463
  assigneeId?: string;
18928
18464
  /**
@@ -18932,13 +18468,13 @@ interface components {
18932
18468
  documentId: string;
18933
18469
  /**
18934
18470
  * Format: uuid
18935
- * @description Id of the document's review thread.
18471
+ * @description Id of the review.
18936
18472
  */
18937
- threadId: string;
18473
+ reviewId: string;
18938
18474
  };
18939
18475
  /**
18940
- * @description Params of a `review.assigned` notification, sent to the reviewer a document's
18941
- * review was assigned to.
18476
+ * @description Params of a `review.assigned` notification, sent to the reviewer a review was
18477
+ * assigned to.
18942
18478
  */
18943
18479
  ReviewAssignedParams: {
18944
18480
  /**
@@ -18950,19 +18486,32 @@ interface components {
18950
18486
  documentName?: string;
18951
18487
  /**
18952
18488
  * Format: uuid
18953
- * @description Id of the document's review thread.
18489
+ * @description Id of the review.
18490
+ */
18491
+ reviewId: string;
18492
+ };
18493
+ /** @description Params of a review-comment activity (`review.comment.created`). */
18494
+ ReviewCommentActivityParams: {
18495
+ /**
18496
+ * Format: uuid
18497
+ * @description Id of the comment.
18498
+ */
18499
+ commentId: string;
18500
+ /**
18501
+ * Format: uuid
18502
+ * @description Id of the review the comment is in.
18954
18503
  */
18955
- threadId: string;
18504
+ reviewId: string;
18956
18505
  };
18957
18506
  /**
18958
- * @description The kind of an entry in a document review's activity log.
18507
+ * @description The kind of a non-message entry in a review's timeline.
18959
18508
  *
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)).
18509
+ * Corresponds to the `REVIEW_EVENT_KIND` `PostgreSQL` enum. A review's stream
18510
+ * interleaves comments (messages) with these events: the lifecycle (opened,
18511
+ * renamed, verified, reopened) and the sign-off workflow (detections and
18512
+ * redactions referenced, assignment changes).
18964
18513
  */
18965
- ReviewEventKind: "detection.linked" | "redaction.linked" | "assigned" | "unassigned" | "verified" | "reopened";
18514
+ ReviewEventKind: "review.opened" | "review.renamed" | "detection.linked" | "redaction.linked" | "assigned" | "unassigned" | "verified" | "reopened";
18966
18515
  /**
18967
18516
  * @description The review state of a file thread (a file thread is the review of its
18968
18517
  * file). `None` on the thread means a workspace thread, which has no review.
@@ -20632,36 +20181,6 @@ interface components {
20632
20181
  /** @description The rationale, when one was given. */
20633
20182
  reason?: string;
20634
20183
  };
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
20184
  /**
20666
20185
  * @description Half-open `[start, end)` stream interval, measured in microseconds.
20667
20186
  *
@@ -21048,7 +20567,7 @@ interface components {
21048
20567
  * Corresponds to the `WEBHOOK_EVENT` `PostgreSQL` enum and configures which
21049
20568
  * events a webhook receives.
21050
20569
  */
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";
20570
+ 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
20571
  /** @description Opaque whk identifier (whk_<uuid>). */
21053
20572
  WebhookId: string;
21054
20573
  /**
@@ -21201,7 +20720,7 @@ interface components {
21201
20720
  /** @description Inference token usage: workspace totals and a per-model breakdown. */
21202
20721
  usage: components["schemas"]["WorkspaceUsageAnalytics"];
21203
20722
  };
21204
- /** @description Response type for a comment: one message within a thread. */
20723
+ /** @description Response type for a comment: one message within a review's discussion. */
21205
20724
  WorkspaceComment: {
21206
20725
  /** @description Account that wrote the message. */
21207
20726
  author: components["schemas"]["AccountRef"];
@@ -21219,16 +20738,16 @@ interface components {
21219
20738
  id: string;
21220
20739
  /**
21221
20740
  * Format: uuid
21222
- * @description Thread this message belongs to.
20741
+ * @description Review this message belongs to.
21223
20742
  */
21224
- threadId: string;
20743
+ reviewId: string;
21225
20744
  /**
21226
20745
  * Format: date-time
21227
20746
  * @description When the comment was last updated.
21228
20747
  */
21229
20748
  updatedAt: string;
21230
20749
  };
21231
- /** @description Path parameters addressing one comment by its opaque id. */
20750
+ /** @description Path parameters addressing one comment by its id. */
21232
20751
  WorkspaceCommentPathParams: {
21233
20752
  /**
21234
20753
  * Format: uuid
@@ -22315,21 +21834,23 @@ interface components {
22315
21834
  total?: number;
22316
21835
  };
22317
21836
  /**
22318
- * @description Response type for a document's review.
22319
- *
22320
- * A review is an optional, purpose-scoped sign-off effort on a document (0..N per
22321
- * document), opened explicitly. It owns a discussion thread (referenced by
22322
- * `threadId`) and carries a `reviewStatus`, an optional `purpose`, and its
22323
- * `assignees` (0..N reviewers).
21837
+ * @description Response type for a review: a named discussion on a document with a manual
21838
+ * sign-off lifecycle (0..N per document), opened explicitly. It carries a
21839
+ * `reviewStatus`, a `displayName`, and its `assignees` (0..N reviewers); its
21840
+ * stream is a [`WorkspaceReviewEntry`] timeline.
22324
21841
  */
22325
21842
  WorkspaceReview: {
22326
21843
  /** @description The reviewers assigned to this review (empty when unassigned). */
22327
21844
  assignees: components["schemas"]["AccountRef"][];
21845
+ /** @description Account that opened the review. */
21846
+ author: components["schemas"]["AccountRef"];
22328
21847
  /**
22329
21848
  * Format: date-time
22330
21849
  * @description When the review was created.
22331
21850
  */
22332
21851
  createdAt: string;
21852
+ /** @description The review's title. */
21853
+ displayName: string;
22333
21854
  /**
22334
21855
  * Format: uuid
22335
21856
  * @description Document under review.
@@ -22340,15 +21861,8 @@ interface components {
22340
21861
  * @description Unique identifier of the review.
22341
21862
  */
22342
21863
  id: string;
22343
- /** @description Optional purpose/audience label. */
22344
- purpose?: string;
22345
21864
  /** @description The review's current status. */
22346
21865
  reviewStatus: components["schemas"]["ReviewStatus"];
22347
- /**
22348
- * Format: uuid
22349
- * @description Discussion thread this review owns.
22350
- */
22351
- threadId: string;
22352
21866
  /**
22353
21867
  * Format: date-time
22354
21868
  * @description When the review was last updated.
@@ -22382,8 +21896,37 @@ interface components {
22382
21896
  reviewId: string;
22383
21897
  };
22384
21898
  /**
22385
- * @description One entry in a review's activity timeline (a link, assignment, verification,
22386
- * or reopen).
21899
+ * @description One entry in a review's timeline: either a message or a lifecycle event, tagged
21900
+ * so a client renders them interleaved in order.
21901
+ */
21902
+ WorkspaceReviewEntry: ({
21903
+ /** @constant */
21904
+ type: "comment";
21905
+ } & components["schemas"]["WorkspaceComment"]) | ({
21906
+ /** @constant */
21907
+ type: "event";
21908
+ } & components["schemas"]["WorkspaceReviewEvent"]);
21909
+ /**
21910
+ * @description Generic paginated response wrapper.
21911
+ *
21912
+ * Provides a consistent structure for all paginated API responses with
21913
+ * cursor-based pagination support. When `next_cursor` is present, there
21914
+ * are more items to fetch.
21915
+ */
21916
+ WorkspaceReviewEntryPage: {
21917
+ /** @description Items in this page. */
21918
+ items: components["schemas"]["WorkspaceReviewEntry"][];
21919
+ /** @description Cursor to fetch the next page. Present only when more items exist. */
21920
+ nextCursor?: string;
21921
+ /**
21922
+ * Format: int64
21923
+ * @description Total count of items matching the query (if requested).
21924
+ */
21925
+ total?: number;
21926
+ };
21927
+ /**
21928
+ * @description One non-message entry in a review timeline (opened, renamed, a detection or
21929
+ * redaction linked, an assignment change, verified, or reopened).
22387
21930
  */
22388
21931
  WorkspaceReviewEvent: {
22389
21932
  /** @description Account that performed the action; `None` if that account was removed. */
@@ -22400,7 +21943,10 @@ interface components {
22400
21943
  id: string;
22401
21944
  /** @description What happened. */
22402
21945
  kind: components["schemas"]["ReviewEventKind"];
22403
- /** @description Event-specific detail (the linked id, the assignee); `None` when none. */
21946
+ /**
21947
+ * @description Event-specific detail (the new name, a linked id, an assignee); `None` when
21948
+ * none.
21949
+ */
22404
21950
  target?: unknown;
22405
21951
  };
22406
21952
  /**
@@ -22472,6 +22018,11 @@ interface components {
22472
22018
  * @description Filter by the assigned reviewer (account id).
22473
22019
  */
22474
22020
  assignee?: string;
22021
+ /**
22022
+ * Format: uuid
22023
+ * @description Filter by the review's opening author (account id).
22024
+ */
22025
+ author?: string;
22475
22026
  /**
22476
22027
  * Format: uuid
22477
22028
  * @description Filter to the reviews of a specific document.
@@ -22583,131 +22134,6 @@ interface components {
22583
22134
  /** @description Filter by sync status. */
22584
22135
  status?: components["schemas"]["SyncStatus"];
22585
22136
  };
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
22137
  /** @description Inference token usage across a workspace's detections. */
22712
22138
  WorkspaceUsageAnalytics: {
22713
22139
  /** @description Per-model breakdown, one entry per model used, in a stable order. */
@@ -22893,433 +22319,423 @@ interface components {
22893
22319
  }
22894
22320
  //#endregion
22895
22321
  //#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"];
22322
+ type Schemas$24 = components["schemas"];
22323
+ type Handle = Schemas$24["Handle"];
22324
+ type Account = Schemas$24["Account"];
22325
+ type PublicAccount = Schemas$24["PublicAccount"];
22326
+ type UpdateAccount = Schemas$24["UpdateAccount"];
22327
+ type AccountRef = Schemas$24["AccountRef"];
22328
+ type AccountIdentities = Schemas$24["AccountIdentities"];
22329
+ type AccountIdentity = Schemas$24["AccountIdentity"];
22330
+ type IdentityProvider = Schemas$24["IdentityProvider"];
22331
+ type SetPassword = Schemas$24["SetPassword"];
22332
+ type OidcStartResponse = Schemas$24["OidcStartResponse"];
22907
22333
  //#endregion
22908
22334
  //#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"];
22335
+ type Schemas$23 = components["schemas"];
22336
+ type WorkspaceActivity = Schemas$23["WorkspaceActivity"];
22337
+ type WorkspaceActivityPage = Schemas$23["WorkspaceActivityPage"];
22338
+ type ActivityType = Schemas$23["ActivityType"];
22339
+ type WorkspaceActivityFilterQuery = Schemas$23["WorkspaceActivityFilterQuery"];
22340
+ type WorkspaceActivityExportOptions = Schemas$23["WorkspaceActivityExportOptions"];
22341
+ type ActivityPayload = Schemas$23["ActivityPayload"];
22342
+ type WorkspaceActivityParams = Schemas$23["WorkspaceActivityParams"];
22343
+ type MemberActivityParams = Schemas$23["MemberActivityParams"];
22344
+ type InviteActivityParams = Schemas$23["InviteActivityParams"];
22345
+ type ConnectionActivityParams = Schemas$23["ConnectionActivityParams"];
22346
+ type PipelineActivityParams = Schemas$23["PipelineActivityParams"];
22347
+ type DetectionActivityParams = Schemas$23["DetectionActivityParams"];
22348
+ type RedactionActivityParams = Schemas$23["RedactionActivityParams"];
22349
+ type PolicyActivityParams = Schemas$23["PolicyActivityParams"];
22350
+ type ProviderActivityParams = Schemas$23["ProviderActivityParams"];
22351
+ type DocumentActivityParams = Schemas$23["DocumentActivityParams"];
22352
+ type WebhookActivityParams = Schemas$23["WebhookActivityParams"];
22353
+ type ReviewActivityParams = Schemas$23["ReviewActivityParams"];
22354
+ type ReviewCommentActivityParams = Schemas$23["ReviewCommentActivityParams"];
22930
22355
  //#endregion
22931
22356
  //#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"];
22357
+ type Schemas$22 = components["schemas"];
22358
+ type WorkspaceAnalytics = Schemas$22["WorkspaceAnalytics"];
22359
+ type WorkspaceStorageAnalytics = Schemas$22["WorkspaceStorageAnalytics"];
22360
+ type WorkspaceStorageKindEntry = Schemas$22["WorkspaceStorageKindEntry"];
22361
+ type WorkspaceDetectionAnalytics = Schemas$22["WorkspaceDetectionAnalytics"];
22362
+ type WorkspaceDetectionStatusEntry = Schemas$22["WorkspaceDetectionStatusEntry"];
22363
+ type WorkspaceUsageAnalytics = Schemas$22["WorkspaceUsageAnalytics"];
22364
+ type ModelUsage = Schemas$22["ModelUsage"];
22365
+ type WorkspaceModelUsageEntry = Schemas$22["WorkspaceModelUsageEntry"];
22366
+ type Usage = Schemas$22["Usage"];
22367
+ type UsageReport = Schemas$22["UsageReport"];
22368
+ type TokenCounts = Schemas$22["TokenCounts"];
22369
+ type RecognizerId = Schemas$22["RecognizerId"];
22370
+ type WorkspaceDetectionTimeSeries = Schemas$22["WorkspaceDetectionTimeSeries"];
22371
+ type WorkspaceDetectionDayEntry = Schemas$22["WorkspaceDetectionDayEntry"];
22947
22372
  //#endregion
22948
22373
  //#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"];
22374
+ type Schemas$21 = components["schemas"];
22375
+ type AccountApiToken = Schemas$21["AccountApiToken"];
22376
+ type AccountApiTokenWithJwt = Schemas$21["AccountApiTokenWithJwt"];
22377
+ type ApiTokenType = Schemas$21["ApiTokenType"];
22378
+ type CreateAccountApiToken = Schemas$21["CreateAccountApiToken"];
22379
+ type UpdateAccountApiToken = Schemas$21["UpdateAccountApiToken"];
22380
+ type TokenExpiration = Schemas$21["TokenExpiration"];
22381
+ type AccountApiTokenPage = Schemas$21["AccountApiTokenPage"];
22957
22382
  //#endregion
22958
22383
  //#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"];
22384
+ type Schemas$20 = components["schemas"];
22385
+ type ArtifactSet = Schemas$20["ArtifactSet"];
22386
+ type Layout = Schemas$20["Layout"];
22387
+ type LayoutBlock = Schemas$20["LayoutBlock"];
22388
+ type LayoutWord = Schemas$20["LayoutWord"];
22389
+ type Transcription = Schemas$20["Transcription"];
22390
+ type TranscriptSegment = Schemas$20["TranscriptSegment"];
22391
+ type TranscriptWord = Schemas$20["TranscriptWord"];
22392
+ type Tokens = Schemas$20["Tokens"];
22393
+ type Token = Schemas$20["Token"];
22969
22394
  //#endregion
22970
22395
  //#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"];
22396
+ type Schemas$19 = components["schemas"];
22397
+ type Audit = Schemas$19["Audit"];
22398
+ type DocumentContext = Schemas$19["DocumentContext"];
22399
+ type CodecParams = Schemas$19["CodecParams"];
22400
+ type EntityCoRef = Schemas$19["EntityCoRef"];
22401
+ type Report = Schemas$19["Report"];
22402
+ type Recognition = Schemas$19["Recognition"];
22403
+ type EditSet = Schemas$19["EditSet"];
22404
+ type RasterMode = Schemas$19["RasterMode"];
22405
+ type Dpi = Schemas$19["Dpi"];
22406
+ type Redaction = Schemas$19["Redaction"];
22407
+ type Selection = Schemas$19["Selection"];
22408
+ type Suppress = Schemas$19["Suppress"];
22409
+ type ManualIntent = Schemas$19["ManualIntent"];
22410
+ type LeakProfile = Schemas$19["LeakProfile"];
22411
+ type RuleMatch = Schemas$19["RuleMatch"];
22412
+ type Attribution = Schemas$19["Attribution"];
22413
+ type CitedAttribution = Schemas$19["CitedAttribution"];
22414
+ type FreeformAttribution = Schemas$19["FreeformAttribution"];
22415
+ type ModelEvent = Schemas$19["ModelEvent"];
22416
+ type PatternEvent = Schemas$19["PatternEvent"];
22417
+ type Conflict = Schemas$19["Conflict"];
22418
+ type Contested = Schemas$19["Contested"];
22419
+ type Deduplication = Schemas$19["Deduplication"];
22420
+ type Calibration = Schemas$19["Calibration"];
22421
+ type OperatorId = Schemas$19["OperatorId"];
22422
+ type AuditHash = Schemas$19["AuditHash"];
22423
+ type Category = Schemas$19["Category"];
22999
22424
  /** 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"];
22425
+ type RangeOfUint = Schemas$19["Range_of_uint"];
22426
+ type SourceRef = Schemas$19["SourceRef"];
22427
+ type BoundingBox = Schemas$19["BoundingBox"];
22428
+ type Point = Schemas$19["Point"];
22429
+ type Polygon = Schemas$19["Polygon"];
22430
+ type Dimensions = Schemas$19["Dimensions"];
22431
+ type TimeSpan = Schemas$19["TimeSpan"];
22432
+ type TextEntity = Schemas$19["TextEntity"];
22433
+ type TextAuditEvent = Schemas$19["TextAuditEvent"];
22434
+ type TextAuditKind = Schemas$19["TextAuditKind"];
22435
+ type TextAuditLog = Schemas$19["TextAuditLog"];
22436
+ type TextHint = Schemas$19["TextHint"];
22437
+ type TextLocation = Schemas$19["TextLocation"];
22438
+ type TextCoord = Schemas$19["TextCoord"];
22439
+ type DecodedSpan = Schemas$19["DecodedSpan"];
22440
+ type SourceSpan = Schemas$19["SourceSpan"];
22441
+ type TextData = Schemas$19["TextData"];
22442
+ type TextModel = Schemas$19["TextModel"];
22443
+ type TextPattern = Schemas$19["TextPattern"];
22444
+ type TextManual = Schemas$19["TextManual"];
22445
+ type TextEdit = Schemas$19["TextEdit"];
22446
+ type TextAdd = Schemas$19["TextAdd"];
22447
+ type TextRefinement = Schemas$19["TextRefinement"];
22448
+ type TextRetag = Schemas$19["TextRetag"];
22449
+ type ImageEntity = Schemas$19["ImageEntity"];
22450
+ type ImageAuditEvent = Schemas$19["ImageAuditEvent"];
22451
+ type ImageAuditKind = Schemas$19["ImageAuditKind"];
22452
+ type ImageAuditLog = Schemas$19["ImageAuditLog"];
22453
+ type ImageHint = Schemas$19["ImageHint"];
22454
+ type ImageLocation = Schemas$19["ImageLocation"];
22455
+ type ImageData = Schemas$19["ImageData"];
22456
+ type ImageModel = Schemas$19["ImageModel"];
22457
+ type ImagePattern = Schemas$19["ImagePattern"];
22458
+ type ImageManual = Schemas$19["ImageManual"];
22459
+ type ImageEdit = Schemas$19["ImageEdit"];
22460
+ type ImageAdd = Schemas$19["ImageAdd"];
22461
+ type ImageRefinement = Schemas$19["ImageRefinement"];
22462
+ type ImageRetag = Schemas$19["ImageRetag"];
22463
+ type AudioEntity = Schemas$19["AudioEntity"];
22464
+ type AudioAuditEvent = Schemas$19["AudioAuditEvent"];
22465
+ type AudioAuditKind = Schemas$19["AudioAuditKind"];
22466
+ type AudioAuditLog = Schemas$19["AudioAuditLog"];
22467
+ type AudioHint = Schemas$19["AudioHint"];
22468
+ type AudioLocation = Schemas$19["AudioLocation"];
22469
+ type AudioData = Schemas$19["AudioData"];
22470
+ type AudioModel = Schemas$19["AudioModel"];
22471
+ type AudioPattern = Schemas$19["AudioPattern"];
22472
+ type AudioManual = Schemas$19["AudioManual"];
22473
+ type AudioEdit = Schemas$19["AudioEdit"];
22474
+ type AudioAdd = Schemas$19["AudioAdd"];
22475
+ type AudioRefinement = Schemas$19["AudioRefinement"];
22476
+ type AudioRetag = Schemas$19["AudioRetag"];
22477
+ type TabularEntity = Schemas$19["TabularEntity"];
22478
+ type TabularAuditEvent = Schemas$19["TabularAuditEvent"];
22479
+ type TabularAuditKind = Schemas$19["TabularAuditKind"];
22480
+ type TabularAuditLog = Schemas$19["TabularAuditLog"];
22481
+ type TabularHint = Schemas$19["TabularHint"];
22482
+ type TabularLocation = Schemas$19["TabularLocation"];
22483
+ type TabularModel = Schemas$19["TabularModel"];
22484
+ type TabularPattern = Schemas$19["TabularPattern"];
22485
+ type TabularManual = Schemas$19["TabularManual"];
22486
+ type TabularEdit = Schemas$19["TabularEdit"];
22487
+ type TabularAdd = Schemas$19["TabularAdd"];
22488
+ type TabularRefinement = Schemas$19["TabularRefinement"];
22489
+ type TabularRetag = Schemas$19["TabularRetag"];
22490
+ type MetadataEvent = Schemas$19["MetadataEvent"];
22491
+ type AudioMetadata = Schemas$19["AudioMetadata"];
22492
+ type ImageMetadata = Schemas$19["ImageMetadata"];
22493
+ type TabularMetadata = Schemas$19["TabularMetadata"];
22494
+ type TextMetadata = Schemas$19["TextMetadata"];
23070
22495
  //#endregion
23071
22496
  //#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"];
22497
+ type Schemas$18 = components["schemas"];
22498
+ type Login = Schemas$18["Login"];
22499
+ type Signup = Schemas$18["Signup"];
22500
+ type DesktopTokenRequest = Schemas$18["DesktopTokenRequest"];
22501
+ type AccountDesktopToken = Schemas$18["AccountDesktopToken"];
23077
22502
  //#endregion
23078
22503
  //#region src/datatypes/capabilities.d.ts
23079
- type Schemas$18 = components["schemas"];
22504
+ type Schemas$17 = components["schemas"];
23080
22505
  /** Registry of the deployment's built-in labels, keyed by id. */
23081
- type LabelCatalog = Schemas$18["LabelCatalog"];
22506
+ type LabelCatalog = Schemas$17["LabelCatalog"];
23082
22507
  /** The engine's registered recognizers, grouped into NER and LLM. */
23083
- type RecognizerCatalog = Schemas$18["RecognizerCatalog"];
23084
- type RegisteredRecognizer = Schemas$18["RegisteredRecognizer"];
22508
+ type RecognizerCatalog = Schemas$17["RecognizerCatalog"];
22509
+ type RegisteredRecognizer = Schemas$17["RegisteredRecognizer"];
23085
22510
  /** Which connector families and providers this deployment can create. */
23086
- type ConnectorCapabilities = Schemas$18["ConnectorCapabilities"];
23087
- type FileProviders = Schemas$18["FileProviders"];
22511
+ type ConnectorCapabilities = Schemas$17["ConnectorCapabilities"];
22512
+ type FileProviders = Schemas$17["FileProviders"];
23088
22513
  /** Which authentication methods this deployment offers. */
23089
- type AuthCapabilities = Schemas$18["AuthCapabilities"];
22514
+ type AuthCapabilities = Schemas$17["AuthCapabilities"];
23090
22515
  //#endregion
23091
22516
  //#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
22517
  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"];
22518
+ type ConnectionId = Schemas$16["ConnectionId"];
22519
+ type WorkspaceConnection = Schemas$16["WorkspaceConnection"];
22520
+ type ConnectionType = Schemas$16["ConnectionType"];
22521
+ type CreateWorkspaceConnection = Schemas$16["CreateWorkspaceConnection"];
22522
+ type UpdateWorkspaceConnection = Schemas$16["UpdateWorkspaceConnection"];
22523
+ type WorkspaceConnectionsQuery = Schemas$16["WorkspaceConnectionsQuery"];
22524
+ type WorkspaceConnectionPage = Schemas$16["WorkspaceConnectionPage"];
22525
+ type WorkspaceConnectionSync = Schemas$16["WorkspaceConnectionSync"];
22526
+ type WorkspaceConnectionSyncPage = Schemas$16["WorkspaceConnectionSyncPage"];
22527
+ type WorkspaceConnectionVerification = Schemas$16["WorkspaceConnectionVerification"];
22528
+ type ImportWorkspaceFiles = Schemas$16["ImportWorkspaceFiles"];
22529
+ type PickedFile = Schemas$16["PickedFile"];
22530
+ type ExportWorkspaceFiles = Schemas$16["ExportWorkspaceFiles"];
22531
+ type WorkspacePickerTokenRequest = Schemas$16["WorkspacePickerTokenRequest"];
22532
+ type WorkspacePickerToken = Schemas$16["WorkspacePickerToken"];
22533
+ type SyncMode = Schemas$16["SyncMode"];
22534
+ type SyncStatus = Schemas$16["SyncStatus"];
22535
+ type SyncTriggerType = Schemas$16["SyncTriggerType"];
22536
+ type SyncDeletionPolicy = Schemas$16["SyncDeletionPolicy"];
22537
+ type ConnectionConfig = Schemas$16["ConnectionConfig"];
22538
+ type StorageConfig = Schemas$16["StorageConfig"];
22539
+ type S3Credentials = Schemas$16["S3Credentials"];
22540
+ type AzureCredentials = Schemas$16["AzureCredentials"];
22541
+ type GcsCredentials = Schemas$16["GcsCredentials"];
22542
+ type LlmConfig = Schemas$16["LlmConfig"];
22543
+ type AuthenticatedProvider = Schemas$16["AuthenticatedProvider"];
22544
+ type UnauthenticatedProvider = Schemas$16["UnauthenticatedProvider"];
22545
+ type FileServiceProvider = Schemas$16["FileServiceProvider"];
22546
+ type FileServiceConfig = Schemas$16["FileServiceConfig"];
22547
+ type OAuthTokens = Schemas$16["OAuthTokens"];
22548
+ type StartFileServiceOAuth = Schemas$16["StartFileServiceOAuth"];
22549
+ type OAuthStartResponse = Schemas$16["OAuthStartResponse"];
22550
+ type WorkspaceSyncSchedule = Schemas$16["WorkspaceSyncSchedule"];
22551
+ type SyncScheduleInput = Schemas$16["SyncScheduleInput"];
23144
22552
  //#endregion
23145
- //#region src/datatypes/document.d.ts
22553
+ //#region src/datatypes/detection.d.ts
23146
22554
  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"];
22555
+ type DetectionId = Schemas$15["DetectionId"];
22556
+ type WorkspaceDetection = Schemas$15["WorkspaceDetection"];
22557
+ type DetectionMetadata = Schemas$15["DetectionMetadata"];
22558
+ type CreateWorkspaceDetection = Schemas$15["CreateWorkspaceDetection"];
22559
+ type CreateAdhocWorkspaceDetection = Schemas$15["CreateAdhocWorkspaceDetection"];
22560
+ type DetectionStatus = Schemas$15["DetectionStatus"];
22561
+ type WorkspaceDetectionPage = Schemas$15["WorkspaceDetectionPage"];
22562
+ type WorkspaceDetectionsQuery = Schemas$15["WorkspaceDetectionsQuery"];
22563
+ type WorkspacePipelineDetectionsQuery = Schemas$15["WorkspacePipelineDetectionsQuery"];
22564
+ type DetectionStatusEvent = Schemas$15["DetectionStatusEvent"];
22565
+ type RedactionId = Schemas$15["RedactionId"];
22566
+ type RedactWorkspaceDetection = Schemas$15["RedactWorkspaceDetection"];
22567
+ type WorkspaceRedactionResult = Schemas$15["WorkspaceRedactionResult"];
22568
+ type WorkspaceRedactionResultPage = Schemas$15["WorkspaceRedactionResultPage"];
23157
22569
  //#endregion
23158
- //#region src/datatypes/error.d.ts
22570
+ //#region src/datatypes/document.d.ts
23159
22571
  type Schemas$14 = components["schemas"];
23160
- type ErrorResponse = Schemas$14["ErrorResponse"];
22572
+ type WorkspaceDocument = Schemas$14["WorkspaceDocument"];
22573
+ type UpdateWorkspaceDocument = Schemas$14["UpdateWorkspaceDocument"];
22574
+ type DocumentKind = Schemas$14["DocumentKind"];
22575
+ type DocumentHash = Schemas$14["DocumentHash"];
22576
+ type FormatToken = Schemas$14["FormatToken"];
22577
+ type ModalityToken = Schemas$14["ModalityToken"];
22578
+ type ListWorkspaceDocuments = Schemas$14["ListWorkspaceDocuments"];
22579
+ type WorkspaceDocumentPage = Schemas$14["WorkspaceDocumentPage"];
22580
+ type DeleteWorkspaceDocuments = Schemas$14["DeleteWorkspaceDocuments"];
22581
+ type WorkspaceDeletedDocuments = Schemas$14["WorkspaceDeletedDocuments"];
23161
22582
  //#endregion
23162
- //#region src/datatypes/export.d.ts
22583
+ //#region src/datatypes/error.d.ts
23163
22584
  type Schemas$13 = components["schemas"];
23164
- type ExportFormat = Schemas$13["ExportFormat"];
23165
- type ExportQuery = Schemas$13["ExportQuery"];
23166
- type DateWindow = Schemas$13["DateWindow"];
22585
+ type ErrorResponse = Schemas$13["ErrorResponse"];
23167
22586
  //#endregion
23168
- //#region src/datatypes/health.d.ts
22587
+ //#region src/datatypes/export.d.ts
23169
22588
  type Schemas$12 = components["schemas"];
23170
- type Health = Schemas$12["Health"];
23171
- type HealthStatus = Schemas$12["HealthStatus"];
23172
- type ComponentHealth = Schemas$12["ComponentHealth"];
22589
+ type ExportFormat = Schemas$12["ExportFormat"];
22590
+ type ExportQuery = Schemas$12["ExportQuery"];
22591
+ type DateWindow = Schemas$12["DateWindow"];
23173
22592
  //#endregion
23174
- //#region src/datatypes/invite.d.ts
22593
+ //#region src/datatypes/health.d.ts
23175
22594
  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"];
22595
+ type Health = Schemas$11["Health"];
22596
+ type HealthStatus = Schemas$11["HealthStatus"];
22597
+ type ComponentHealth = Schemas$11["ComponentHealth"];
23189
22598
  //#endregion
23190
- //#region src/datatypes/member.d.ts
22599
+ //#region src/datatypes/invite.d.ts
23191
22600
  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"];
22601
+ type WorkspaceInvite = Schemas$10["WorkspaceInvite"];
22602
+ type WorkspaceInviteSent = Schemas$10["WorkspaceInviteSent"];
22603
+ type CreateWorkspaceInvite = Schemas$10["CreateWorkspaceInvite"];
22604
+ type ReplyWorkspaceInvite = Schemas$10["ReplyWorkspaceInvite"];
22605
+ type GenerateWorkspaceInviteCode = Schemas$10["GenerateWorkspaceInviteCode"];
22606
+ type WorkspaceInviteCode = Schemas$10["WorkspaceInviteCode"];
22607
+ type InviteStatus = Schemas$10["InviteStatus"];
22608
+ type InviteExpiration = Schemas$10["InviteExpiration"];
22609
+ type ListWorkspaceInvites = Schemas$10["ListWorkspaceInvites"];
22610
+ type InviteSortField = Schemas$10["InviteSortField"];
22611
+ type Direction = Schemas$10["Direction"];
22612
+ type InvitePreview = Schemas$10["InvitePreview"];
22613
+ type WorkspaceInvitePage = Schemas$10["WorkspaceInvitePage"];
23197
22614
  //#endregion
23198
- //#region src/datatypes/notification.d.ts
22615
+ //#region src/datatypes/member.d.ts
23199
22616
  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"];
22617
+ type WorkspaceMember = Schemas$9["WorkspaceMember"];
22618
+ type UpdateWorkspaceMember = Schemas$9["UpdateWorkspaceMember"];
22619
+ type ListWorkspaceMembers = Schemas$9["ListWorkspaceMembers"];
22620
+ type MemberSortField = Schemas$9["MemberSortField"];
22621
+ type WorkspaceMemberPage = Schemas$9["WorkspaceMemberPage"];
23217
22622
  //#endregion
23218
- //#region src/datatypes/pagination.d.ts
22623
+ //#region src/datatypes/notification.d.ts
23219
22624
  type Schemas$8 = components["schemas"];
23220
- type CursorPagination = Schemas$8["CursorPagination"];
22625
+ type AccountNotification = Schemas$8["AccountNotification"];
22626
+ type NotificationEvent = Schemas$8["NotificationEvent"];
22627
+ type WorkspaceNotificationSettings = Schemas$8["WorkspaceNotificationSettings"];
22628
+ type UpdateWorkspaceNotificationSettings = Schemas$8["UpdateWorkspaceNotificationSettings"];
22629
+ type AccountUnreadStatus = Schemas$8["AccountUnreadStatus"];
22630
+ type AccountNotificationPage = Schemas$8["AccountNotificationPage"];
22631
+ type AccountMarkedReadStatus = Schemas$8["AccountMarkedReadStatus"];
22632
+ type UnreadCountEvent = Schemas$8["UnreadCountEvent"];
22633
+ type NotificationPayload = Schemas$8["NotificationPayload"];
22634
+ type MemberJoinedParams = Schemas$8["MemberJoinedParams"];
22635
+ type ConnectionSyncCompletedParams = Schemas$8["ConnectionSyncCompletedParams"];
22636
+ type ConnectionSyncFailedParams = Schemas$8["ConnectionSyncFailedParams"];
22637
+ type DetectionCompletedParams = Schemas$8["DetectionCompletedParams"];
22638
+ type DetectionFailedParams = Schemas$8["DetectionFailedParams"];
22639
+ type RedactionCreatedParams = Schemas$8["RedactionCreatedParams"];
22640
+ type ReviewAssignedParams = Schemas$8["ReviewAssignedParams"];
22641
+ type CommentMentionedParams = Schemas$8["CommentMentionedParams"];
23221
22642
  //#endregion
23222
- //#region src/datatypes/pipeline.d.ts
22643
+ //#region src/datatypes/pagination.d.ts
23223
22644
  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"];
22645
+ type CursorPagination = Schemas$7["CursorPagination"];
23233
22646
  //#endregion
23234
- //#region src/datatypes/policy.d.ts
22647
+ //#region src/datatypes/pipeline.d.ts
23235
22648
  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"];
22649
+ type WorkspacePipeline = Schemas$6["WorkspacePipeline"];
22650
+ type CreateWorkspacePipeline = Schemas$6["CreateWorkspacePipeline"];
22651
+ type UpdateWorkspacePipeline = Schemas$6["UpdateWorkspacePipeline"];
22652
+ type PipelineDefinition = Schemas$6["PipelineDefinition"];
22653
+ type WorkspacePipelineFilter = Schemas$6["WorkspacePipelineFilter"];
22654
+ type PipelineStatus = Schemas$6["PipelineStatus"];
22655
+ type PipelineTriggerType = Schemas$6["PipelineTriggerType"];
22656
+ type WorkspacePipelineSummary = Schemas$6["WorkspacePipelineSummary"];
22657
+ type WorkspacePipelineSummaryPage = Schemas$6["WorkspacePipelineSummaryPage"];
23276
22658
  //#endregion
23277
- //#region src/datatypes/provider.d.ts
22659
+ //#region src/datatypes/policy.d.ts
23278
22660
  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"];
22661
+ type WorkspacePolicy = Schemas$5["WorkspacePolicy"];
22662
+ type Policy = Schemas$5["Policy"];
22663
+ type PolicyKind = Schemas$5["PolicyKind"];
22664
+ type WorkspacePolicySummary = Schemas$5["WorkspacePolicySummary"];
22665
+ type WorkspacePolicySummaryPage = Schemas$5["WorkspacePolicySummaryPage"];
22666
+ type WorkspacePoliciesQuery = Schemas$5["WorkspacePoliciesQuery"];
22667
+ type PolicyDraft = Schemas$5["PolicyDraft"];
22668
+ type CreateWorkspacePolicy = Schemas$5["CreateWorkspacePolicy"];
22669
+ type UpdateWorkspacePolicy = Schemas$5["UpdateWorkspacePolicy"];
22670
+ type PolicyRule = Schemas$5["PolicyRule"];
22671
+ type CustomMatcher = Schemas$5["CustomMatcher"];
22672
+ type PolicyTemplate = Schemas$5["PolicyTemplate"];
22673
+ type TemplateOrigin = Schemas$5["TemplateOrigin"];
22674
+ type HipaaDeidMethod = Schemas$5["HipaaDeidMethod"];
22675
+ type HipaaAccountNumbers = Schemas$5["HipaaAccountNumbers"];
22676
+ type GdprArticle9Treatment = Schemas$5["GdprArticle9Treatment"];
22677
+ type GdprSensitiveScope = Schemas$5["GdprSensitiveScope"];
22678
+ type PciDssPart = Schemas$5["PciDssPart"];
22679
+ type PciPanRender = Schemas$5["PciPanRender"];
22680
+ type Predicate = Schemas$5["Predicate"];
22681
+ type ModalityRedactions = Schemas$5["ModalityRedactions"];
22682
+ type TextRedaction = Schemas$5["TextRedaction"];
22683
+ type ImageRedaction = Schemas$5["ImageRedaction"];
22684
+ type AudioRedaction = Schemas$5["AudioRedaction"];
22685
+ type TabularRedaction = Schemas$5["TabularRedaction"];
22686
+ type LabelScope = Schemas$5["LabelScope"];
22687
+ type LabelEntry = Schemas$5["LabelEntry"];
22688
+ type LabelLocale = Schemas$5["LabelLocale"];
22689
+ type Label = Schemas$5["Label"];
22690
+ type LabelRef = Schemas$5["LabelRef"];
22691
+ type LocalizedText = Schemas$5["LocalizedText"];
22692
+ type Color = Schemas$5["Color"];
22693
+ type Waveform = Schemas$5["Waveform"];
22694
+ type ClampBucket = Schemas$5["ClampBucket"];
22695
+ type ConfidenceThreshold = Schemas$5["ConfidenceThreshold"];
22696
+ type DateStyle = Schemas$5["DateStyle"];
22697
+ type DateGranularity = Schemas$5["DateGranularity"];
22698
+ type LanguageTag = Schemas$5["LanguageTag"];
22699
+ type Sha2Algorithm = Schemas$5["Sha2Algorithm"];
22700
+ type TerminalFallback = Schemas$5["TerminalFallback"];
23288
22701
  //#endregion
23289
- //#region src/datatypes/review.d.ts
22702
+ //#region src/datatypes/provider.d.ts
23290
22703
  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"];
22704
+ type ProviderId = Schemas$4["ProviderId"];
22705
+ type WorkspaceProvider = Schemas$4["WorkspaceProvider"];
22706
+ type CreateWorkspaceProvider = Schemas$4["CreateWorkspaceProvider"];
22707
+ type UpdateWorkspaceProvider = Schemas$4["UpdateWorkspaceProvider"];
22708
+ type WorkspaceProvidersQuery = Schemas$4["WorkspaceProvidersQuery"];
22709
+ type WorkspaceProviderPage = Schemas$4["WorkspaceProviderPage"];
22710
+ type ProviderType = Schemas$4["ProviderType"];
22711
+ type ProviderConfig = Schemas$4["ProviderConfig"];
22712
+ type InferenceConfig = Schemas$4["InferenceConfig"];
23298
22713
  //#endregion
23299
- //#region src/datatypes/scope.d.ts
22714
+ //#region src/datatypes/review.d.ts
23300
22715
  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"];
22716
+ type WorkspaceReview = Schemas$3["WorkspaceReview"];
22717
+ type CreateWorkspaceReview = Schemas$3["CreateWorkspaceReview"];
22718
+ type RenameWorkspaceReview = Schemas$3["RenameWorkspaceReview"];
22719
+ type WorkspaceReviewPage = Schemas$3["WorkspaceReviewPage"];
22720
+ type WorkspaceReviewsQuery = Schemas$3["WorkspaceReviewsQuery"];
22721
+ type WorkspaceReviewEvent = Schemas$3["WorkspaceReviewEvent"];
22722
+ type WorkspaceReviewEventPage = Schemas$3["WorkspaceReviewEventPage"];
22723
+ type WorkspaceReviewEntry = Schemas$3["WorkspaceReviewEntry"];
22724
+ type WorkspaceReviewEntryPage = Schemas$3["WorkspaceReviewEntryPage"];
22725
+ type ReviewStatus = Schemas$3["ReviewStatus"];
22726
+ type WorkspaceComment = Schemas$3["WorkspaceComment"];
22727
+ type CreateWorkspaceComment = Schemas$3["CreateWorkspaceComment"];
22728
+ type UpdateWorkspaceComment = Schemas$3["UpdateWorkspaceComment"];
23308
22729
  //#endregion
23309
- //#region src/datatypes/thread.d.ts
22730
+ //#region src/datatypes/scope.d.ts
23310
22731
  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"];
22732
+ type ScopeMetadata = Schemas$2["ScopeMetadata"];
22733
+ type CountryCode = Schemas$2["CountryCode"];
22734
+ type Language = Schemas$2["Language"];
22735
+ type Languages = Schemas$2["Languages"];
22736
+ type LanguageSpan = Schemas$2["LanguageSpan"];
22737
+ type LanguageProvenance = Schemas$2["LanguageProvenance"];
22738
+ type Confidence = Schemas$2["Confidence"];
23323
22739
  //#endregion
23324
22740
  //#region src/datatypes/webhook.d.ts
23325
22741
  type Schemas$1 = components["schemas"];
@@ -23347,5 +22763,5 @@ type Retention = Schemas["Retention"];
23347
22763
  type RetentionSettings = Schemas["RetentionSettings"];
23348
22764
  type RetentionOverride = Schemas["RetentionOverride"];
23349
22765
  //#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
22766
+ export { ConfidenceThreshold as $, ModelUsage as $a, Redaction as $i, WorkspaceDetectionPage as $n, AudioData as $r, DetectionCompletedParams as $t, RenameWorkspaceReview as A, TextManual as Aa, ImageAuditLog as Ai, DateWindow as An, WorkspaceActivityPage as Ao, WorkspaceConnectionPage as Ar, UpdateWorkspacePolicy as At, WorkspaceReviewsQuery as B, LayoutWord as Ba, ImageRefinement as Bi, UpdateWorkspaceDocument as Bn, SetPassword as Bo, FileProviders as Br, UpdateWorkspacePipeline as Bt, Language as C, TextAuditLog as Ca, Dpi as Ci, WorkspaceInvite as Cn, RedactionActivityParams as Co, SyncMode as Cr, PolicyTemplate as Ct, ScopeMetadata as D, TextEntity as Da, ImageAdd as Di, ComponentHealth as Dn, WorkspaceActivity as Do, UnauthenticatedProvider as Dr, TemplateOrigin as Dt, Languages as E, TextEdit as Ea, FreeformAttribution as Ei, WorkspaceInviteSent as En, WebhookActivityParams as Eo, SyncTriggerType as Er, TabularRedaction as Et, WorkspaceReviewEntry as F, TextRetag as Fa, ImageLocation as Fi, DocumentHash as Fn, AccountRef as Fo, WorkspacePickerToken as Fr, WorkspacePolicySummaryPage as Ft, ProviderType as G, Transcription as Ga, ModelEvent as Gi, CreateWorkspaceDetection as Gn, DesktopTokenRequest as Gr, CursorPagination as Gt, InferenceConfig as H, Tokens as Ha, LeakProfile as Hi, WorkspaceDocument as Hn, paths as Ho, RecognizerCatalog as Hr, WorkspacePipelineFilter as Ht, WorkspaceReviewEntryPage as I, TimeSpan as Ia, ImageManual as Ii, DocumentKind as In, Handle as Io, WorkspacePickerTokenRequest as Ir, CreateWorkspacePipeline as It, WorkspaceProviderPage as J, AccountApiTokenWithJwt as Ja, Point as Ji, DetectionStatus as Jn, Attribution as Jr, AccountNotificationPage as Jt, UpdateWorkspaceProvider as K, AccountApiToken as Ka, OperatorId as Ki, DetectionId as Kn, Login as Kr, AccountMarkedReadStatus as Kt, WorkspaceReviewEvent as L, ArtifactSet as La, ImageMetadata as Li, FormatToken as Ln, IdentityProvider as Lo, WorkspaceSyncSchedule as Lr, PipelineDefinition as Lt, UpdateWorkspaceComment as M, TextModel as Ma, ImageEdit as Mi, ExportQuery as Mn, Account as Mo, WorkspaceConnectionSyncPage as Mr, WorkspacePoliciesQuery as Mt, WorkspaceComment as N, TextPattern as Na, ImageEntity as Ni, ErrorResponse as Nn, AccountIdentities as No, WorkspaceConnectionVerification as Nr, WorkspacePolicy as Nt, CreateWorkspaceComment as O, TextHint as Oa, ImageAuditEvent as Oi, Health as On, WorkspaceActivityExportOptions as Oo, UpdateWorkspaceConnection as Or, TerminalFallback as Ot, WorkspaceReview as P, TextRefinement as Pa, ImageHint as Pi, DeleteWorkspaceDocuments as Pn, AccountIdentity as Po, WorkspaceConnectionsQuery as Pr, WorkspacePolicySummary as Pt, Color as Q, UpdateAccountApiToken as Qa, Recognition as Qi, WorkspaceDetection as Qn, AudioAuditLog as Qr, ConnectionSyncFailedParams as Qt, WorkspaceReviewEventPage as R, Layout as Ra, ImageModel as Ri, ListWorkspaceDocuments as Rn, OidcStartResponse as Ro, AuthCapabilities as Rr, PipelineStatus as Rt, CountryCode as S, TextAuditKind as Sa, DocumentContext as Si, ReplyWorkspaceInvite as Sn, ProviderActivityParams as So, SyncDeletionPolicy as Sr, PolicyRule as St, LanguageSpan as T, TextData as Ta, EntityCoRef as Ti, WorkspaceInvitePage as Tn, ReviewCommentActivityParams as To, SyncStatus as Tr, Sha2Algorithm as Tt, ProviderConfig as U, TranscriptSegment as Ua, ManualIntent as Ui, WorkspaceDocumentPage as Un, RegisteredRecognizer as Ur, WorkspacePipelineSummary as Ut, CreateWorkspaceProvider as V, Token as Va, ImageRetag as Vi, WorkspaceDeletedDocuments as Vn, UpdateAccount as Vo, LabelCatalog as Vr, WorkspacePipeline as Vt, ProviderId as W, TranscriptWord as Wa, MetadataEvent as Wi, CreateAdhocWorkspaceDetection as Wn, AccountDesktopToken as Wr, WorkspacePipelineSummaryPage as Wt, AudioRedaction as X, CreateAccountApiToken as Xa, RangeOfUint as Xi, RedactWorkspaceDetection as Xn, AudioAuditEvent as Xr, CommentMentionedParams as Xt, WorkspaceProvidersQuery as Y, ApiTokenType as Ya, Polygon as Yi, DetectionStatusEvent as Yn, AudioAdd as Yr, AccountUnreadStatus as Yt, ClampBucket as Z, TokenExpiration as Za, RasterMode as Zi, RedactionId as Zn, AudioAuditKind as Zr, ConnectionSyncCompletedParams as Zt, WorkspaceWebhook as _, TabularPattern as _a, Conflict as _i, InviteExpiration as _n, DocumentActivityParams as _o, OAuthTokens as _r, PciDssPart as _t, RetentionSettings as a, Suppress as aa, AudioMetadata as ai, ReviewAssignedParams as an, WorkspaceDetectionAnalytics as ao, AzureCredentials as ar, GdprSensitiveScope as at, WorkspaceWebhookResult as b, TextAdd as ba, Deduplication as bi, InviteStatus as bn, PipelineActivityParams as bo, StartFileServiceOAuth as br, PolicyDraft as bt, WorkspacePage as c, TabularAuditKind as ca, AudioRefinement as ci, WorkspaceNotificationSettings as cn, WorkspaceDetectionTimeSeries as co, ConnectionType as cr, ImageRedaction as ct, CreateWorkspaceWebhook as d, TabularEntity as da, AuditHash as di, UpdateWorkspaceMember as dn, WorkspaceStorageKindEntry as do, FileServiceConfig as dr, LabelLocale as dt, Report as ea, AudioEdit as ei, DetectionFailedParams as en, RecognizerId as eo, WorkspaceDetectionsQuery as er, CreateWorkspacePolicy as et, TestWorkspaceWebhook as f, TabularHint as fa, BoundingBox as fi, WorkspaceMember as fn, WorkspaceUsageAnalytics as fo, FileServiceProvider as fr, LabelRef as ft, WebhookStatus as g, TabularModel as ga, CodecParams as gi, GenerateWorkspaceInviteCode as gn, DetectionActivityParams as go, OAuthStartResponse as gr, ModalityRedactions as gt, WebhookId as h, TabularMetadata as ha, CitedAttribution as hi, Direction as hn, ConnectionActivityParams as ho, LlmConfig as hr, LocalizedText as ht, RetentionOverride as i, SourceSpan as ia, AudioManual as ii, RedactionCreatedParams as in, WorkspaceAnalytics as io, AuthenticatedProvider as ir, GdprArticle9Treatment as it, ReviewStatus as j, TextMetadata as ja, ImageData as ji, ExportFormat as jn, WorkspaceActivityParams as jo, WorkspaceConnectionSync as jr, Waveform as jt, CreateWorkspaceReview as k, TextLocation as ka, ImageAuditKind as ki, HealthStatus as kn, WorkspaceActivityFilterQuery as ko, WorkspaceConnection as kr, TextRedaction as kt, WorkspaceRole as l, TabularAuditLog as la, AudioRetag as li, ListWorkspaceMembers as ln, WorkspaceModelUsageEntry as lo, CreateWorkspaceConnection as lr, Label as lt, WebhookEvent as m, TabularManual as ma, Category as mi, CreateWorkspaceInvite as mn, ActivityType as mo, ImportWorkspaceFiles as mr, LanguageTag as mt, RasterPolicy as n, Selection as na, AudioHint as ni, NotificationEvent as nn, Usage as no, WorkspaceRedactionResult as nr, DateGranularity as nt, UpdateWorkspace as o, TabularAdd as oa, AudioModel as oi, UnreadCountEvent as on, WorkspaceDetectionDayEntry as oo, ConnectionConfig as or, HipaaAccountNumbers as ot, UpdateWorkspaceWebhook as p, TabularLocation as pa, Calibration as pi, WorkspaceMemberPage as pn, ActivityPayload as po, GcsCredentials as pr, LabelScope as pt, WorkspaceProvider as q, AccountApiTokenPage as qa, PatternEvent as qi, DetectionMetadata as qn, Signup as qr, AccountNotification as qt, Retention as r, SourceRef as ra, AudioLocation as ri, NotificationPayload as rn, UsageReport as ro, WorkspaceRedactionResultPage as rr, DateStyle as rt, Workspace as s, TabularAuditEvent as sa, AudioPattern as si, UpdateWorkspaceNotificationSettings as sn, WorkspaceDetectionStatusEntry as so, ConnectionId as sr, HipaaDeidMethod as st, CreateWorkspace as t, RuleMatch as ta, AudioEntity as ti, MemberJoinedParams as tn, TokenCounts as to, WorkspacePipelineDetectionsQuery as tr, CustomMatcher as tt, WorkspaceSettings as u, TabularEdit as ua, Audit as ui, MemberSortField as un, WorkspaceStorageAnalytics as uo, ExportWorkspaceFiles as ur, LabelEntry as ut, WorkspaceWebhookCreated as v, TabularRefinement as va, Contested as vi, InvitePreview as vn, InviteActivityParams as vo, PickedFile as vr, PciPanRender as vt, LanguageProvenance as w, TextCoord as wa, EditSet as wi, WorkspaceInviteCode as wn, ReviewActivityParams as wo, SyncScheduleInput as wr, Predicate as wt, Confidence as x, TextAuditEvent as xa, Dimensions as xi, ListWorkspaceInvites as xn, PolicyActivityParams as xo, StorageConfig as xr, PolicyKind as xt, WorkspaceWebhookPage as y, TabularRetag as ya, DecodedSpan as yi, InviteSortField as yn, MemberActivityParams as yo, S3Credentials as yr, Policy as yt, WorkspaceReviewPage as z, LayoutBlock as za, ImagePattern as zi, ModalityToken as zn, PublicAccount as zo, ConnectorCapabilities as zr, PipelineTriggerType as zt };
22767
+ //# sourceMappingURL=index-D2ihRMUe.d.ts.map