@nvisy/sdk 0.56.0 → 0.58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -1
- package/dist/datatypes/index.d.ts +2 -2
- package/dist/{errors-DeUtOGAV.d.ts → errors-CCUclO-I.d.ts} +2 -2
- package/dist/{errors-DeUtOGAV.d.ts.map → errors-CCUclO-I.d.ts.map} +1 -1
- package/dist/guest/index.d.ts +1 -1
- package/dist/guest/index.js +2 -2
- package/dist/{http-CmImjBaZ.js → http-k3ba4Nmp.js} +2 -2
- package/dist/{http-CmImjBaZ.js.map → http-k3ba4Nmp.js.map} +1 -1
- package/dist/{index-tS6AFFSf.d.ts → index-CB2TdT8I.d.ts} +11 -2
- package/dist/{index-tS6AFFSf.d.ts.map → index-CB2TdT8I.d.ts.map} +1 -1
- package/dist/{index-D2ihRMUe.d.ts → index-sGTLqpYa.d.ts} +424 -142
- package/dist/index-sGTLqpYa.d.ts.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/services/index.d.ts +1 -1
- package/dist/services/index.js +1 -1
- package/dist/{services-BnCYM6gZ.js → services-BdI0UOFE.js} +17 -2
- package/dist/services-BdI0UOFE.js.map +1 -0
- package/dist/webhooks/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/index-D2ihRMUe.d.ts.map +0 -1
- package/dist/services-BnCYM6gZ.js.map +0 -1
|
@@ -8150,135 +8150,6 @@ interface paths {
|
|
|
8150
8150
|
};
|
|
8151
8151
|
trace?: never;
|
|
8152
8152
|
};
|
|
8153
|
-
"/workspaces/{workspaceId}/pipelines/detections": {
|
|
8154
|
-
parameters: {
|
|
8155
|
-
query?: never;
|
|
8156
|
-
header?: never;
|
|
8157
|
-
path?: never;
|
|
8158
|
-
cookie?: never;
|
|
8159
|
-
};
|
|
8160
|
-
/**
|
|
8161
|
-
* List workspace detections
|
|
8162
|
-
* @description Returns all detections across the workspace, most recent first, with optional status, document, pipeline, trigger-account, and trigger-type filters.
|
|
8163
|
-
*/
|
|
8164
|
-
get: {
|
|
8165
|
-
parameters: {
|
|
8166
|
-
query?: {
|
|
8167
|
-
/**
|
|
8168
|
-
* @description Cursor pointing to the last item of the previous page.
|
|
8169
|
-
* Obtain this from the `nextCursor` field in the response.
|
|
8170
|
-
*/
|
|
8171
|
-
after?: string;
|
|
8172
|
-
/**
|
|
8173
|
-
* @description Whether to include the total item count in the response's `total` field.
|
|
8174
|
-
* Defaults to `false`, since counting is an extra query; set it to `true`
|
|
8175
|
-
* only when the count is actually needed.
|
|
8176
|
-
*/
|
|
8177
|
-
includeCount?: boolean;
|
|
8178
|
-
/** @description The maximum number of records to return (1-100, default: 20). */
|
|
8179
|
-
limit?: number;
|
|
8180
|
-
/** @description Filter by the source document the detection analyzes. */
|
|
8181
|
-
documentId?: string;
|
|
8182
|
-
/** @description Filter by the owning pipeline. */
|
|
8183
|
-
pipelineId?: string;
|
|
8184
|
-
/** @description Filter by detection status. */
|
|
8185
|
-
status?: components["schemas"]["DetectionStatus"];
|
|
8186
|
-
/** @description Filter by how the detection was initiated (user vs system). */
|
|
8187
|
-
triggerType?: components["schemas"]["PipelineTriggerType"];
|
|
8188
|
-
/** @description Filter by the account that triggered the detection. */
|
|
8189
|
-
triggeredBy?: string;
|
|
8190
|
-
};
|
|
8191
|
-
header?: never;
|
|
8192
|
-
path: {
|
|
8193
|
-
/** @description Workspace identifier. */
|
|
8194
|
-
workspaceId: string;
|
|
8195
|
-
};
|
|
8196
|
-
cookie?: never;
|
|
8197
|
-
};
|
|
8198
|
-
requestBody?: never;
|
|
8199
|
-
responses: {
|
|
8200
|
-
/**
|
|
8201
|
-
* @description Generic paginated response wrapper.
|
|
8202
|
-
*
|
|
8203
|
-
* Provides a consistent structure for all paginated API responses with
|
|
8204
|
-
* cursor-based pagination support. When `next_cursor` is present, there
|
|
8205
|
-
* are more items to fetch.
|
|
8206
|
-
*/
|
|
8207
|
-
200: {
|
|
8208
|
-
headers: {
|
|
8209
|
-
[name: string]: unknown;
|
|
8210
|
-
};
|
|
8211
|
-
content: {
|
|
8212
|
-
"application/json": components["schemas"]["WorkspaceDetectionPage"];
|
|
8213
|
-
};
|
|
8214
|
-
};
|
|
8215
|
-
/**
|
|
8216
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
8217
|
-
* that [`Error`] renders to at the response boundary.
|
|
8218
|
-
*
|
|
8219
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
8220
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
8221
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
8222
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
8223
|
-
*
|
|
8224
|
-
* [`Error`]: crate::response::Error
|
|
8225
|
-
*/
|
|
8226
|
-
401: {
|
|
8227
|
-
headers: {
|
|
8228
|
-
[name: string]: unknown;
|
|
8229
|
-
};
|
|
8230
|
-
content: {
|
|
8231
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
8232
|
-
};
|
|
8233
|
-
};
|
|
8234
|
-
/**
|
|
8235
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
8236
|
-
* that [`Error`] renders to at the response boundary.
|
|
8237
|
-
*
|
|
8238
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
8239
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
8240
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
8241
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
8242
|
-
*
|
|
8243
|
-
* [`Error`]: crate::response::Error
|
|
8244
|
-
*/
|
|
8245
|
-
403: {
|
|
8246
|
-
headers: {
|
|
8247
|
-
[name: string]: unknown;
|
|
8248
|
-
};
|
|
8249
|
-
content: {
|
|
8250
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
8251
|
-
};
|
|
8252
|
-
};
|
|
8253
|
-
/**
|
|
8254
|
-
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
8255
|
-
* that [`Error`] renders to at the response boundary.
|
|
8256
|
-
*
|
|
8257
|
-
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
8258
|
-
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
8259
|
-
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
8260
|
-
* (`context` is logged, `status` sets the HTTP status line).
|
|
8261
|
-
*
|
|
8262
|
-
* [`Error`]: crate::response::Error
|
|
8263
|
-
*/
|
|
8264
|
-
404: {
|
|
8265
|
-
headers: {
|
|
8266
|
-
[name: string]: unknown;
|
|
8267
|
-
};
|
|
8268
|
-
content: {
|
|
8269
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
8270
|
-
};
|
|
8271
|
-
};
|
|
8272
|
-
};
|
|
8273
|
-
};
|
|
8274
|
-
put?: never;
|
|
8275
|
-
post?: never;
|
|
8276
|
-
delete?: never;
|
|
8277
|
-
options?: never;
|
|
8278
|
-
head?: never;
|
|
8279
|
-
patch?: never;
|
|
8280
|
-
trace?: never;
|
|
8281
|
-
};
|
|
8282
8153
|
"/workspaces/{workspaceId}/pipelines/{pipelineId}/detections": {
|
|
8283
8154
|
parameters: {
|
|
8284
8155
|
query?: never;
|
|
@@ -8589,7 +8460,120 @@ interface paths {
|
|
|
8589
8460
|
path?: never;
|
|
8590
8461
|
cookie?: never;
|
|
8591
8462
|
};
|
|
8592
|
-
|
|
8463
|
+
/**
|
|
8464
|
+
* List workspace detections
|
|
8465
|
+
* @description Returns all detections across the workspace, most recent first, with optional status, document, pipeline, trigger-account, and trigger-type filters.
|
|
8466
|
+
*/
|
|
8467
|
+
get: {
|
|
8468
|
+
parameters: {
|
|
8469
|
+
query?: {
|
|
8470
|
+
/**
|
|
8471
|
+
* @description Cursor pointing to the last item of the previous page.
|
|
8472
|
+
* Obtain this from the `nextCursor` field in the response.
|
|
8473
|
+
*/
|
|
8474
|
+
after?: string;
|
|
8475
|
+
/**
|
|
8476
|
+
* @description Whether to include the total item count in the response's `total` field.
|
|
8477
|
+
* Defaults to `false`, since counting is an extra query; set it to `true`
|
|
8478
|
+
* only when the count is actually needed.
|
|
8479
|
+
*/
|
|
8480
|
+
includeCount?: boolean;
|
|
8481
|
+
/** @description The maximum number of records to return (1-100, default: 20). */
|
|
8482
|
+
limit?: number;
|
|
8483
|
+
/** @description Filter by the source document the detection analyzes. */
|
|
8484
|
+
documentId?: string;
|
|
8485
|
+
/** @description Filter by the owning pipeline. */
|
|
8486
|
+
pipelineId?: string;
|
|
8487
|
+
/** @description Filter by detection status. */
|
|
8488
|
+
status?: components["schemas"]["DetectionStatus"];
|
|
8489
|
+
/** @description Filter by how the detection was initiated (user vs system). */
|
|
8490
|
+
triggerType?: components["schemas"]["PipelineTriggerType"];
|
|
8491
|
+
/** @description Filter by the account that triggered the detection. */
|
|
8492
|
+
triggeredBy?: string;
|
|
8493
|
+
};
|
|
8494
|
+
header?: never;
|
|
8495
|
+
path: {
|
|
8496
|
+
/** @description Workspace identifier. */
|
|
8497
|
+
workspaceId: string;
|
|
8498
|
+
};
|
|
8499
|
+
cookie?: never;
|
|
8500
|
+
};
|
|
8501
|
+
requestBody?: never;
|
|
8502
|
+
responses: {
|
|
8503
|
+
/**
|
|
8504
|
+
* @description Generic paginated response wrapper.
|
|
8505
|
+
*
|
|
8506
|
+
* Provides a consistent structure for all paginated API responses with
|
|
8507
|
+
* cursor-based pagination support. When `next_cursor` is present, there
|
|
8508
|
+
* are more items to fetch.
|
|
8509
|
+
*/
|
|
8510
|
+
200: {
|
|
8511
|
+
headers: {
|
|
8512
|
+
[name: string]: unknown;
|
|
8513
|
+
};
|
|
8514
|
+
content: {
|
|
8515
|
+
"application/json": components["schemas"]["WorkspaceDetectionPage"];
|
|
8516
|
+
};
|
|
8517
|
+
};
|
|
8518
|
+
/**
|
|
8519
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
8520
|
+
* that [`Error`] renders to at the response boundary.
|
|
8521
|
+
*
|
|
8522
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
8523
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
8524
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
8525
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
8526
|
+
*
|
|
8527
|
+
* [`Error`]: crate::response::Error
|
|
8528
|
+
*/
|
|
8529
|
+
401: {
|
|
8530
|
+
headers: {
|
|
8531
|
+
[name: string]: unknown;
|
|
8532
|
+
};
|
|
8533
|
+
content: {
|
|
8534
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
8535
|
+
};
|
|
8536
|
+
};
|
|
8537
|
+
/**
|
|
8538
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
8539
|
+
* that [`Error`] renders to at the response boundary.
|
|
8540
|
+
*
|
|
8541
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
8542
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
8543
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
8544
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
8545
|
+
*
|
|
8546
|
+
* [`Error`]: crate::response::Error
|
|
8547
|
+
*/
|
|
8548
|
+
403: {
|
|
8549
|
+
headers: {
|
|
8550
|
+
[name: string]: unknown;
|
|
8551
|
+
};
|
|
8552
|
+
content: {
|
|
8553
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
8554
|
+
};
|
|
8555
|
+
};
|
|
8556
|
+
/**
|
|
8557
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
8558
|
+
* that [`Error`] renders to at the response boundary.
|
|
8559
|
+
*
|
|
8560
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
8561
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
8562
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
8563
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
8564
|
+
*
|
|
8565
|
+
* [`Error`]: crate::response::Error
|
|
8566
|
+
*/
|
|
8567
|
+
404: {
|
|
8568
|
+
headers: {
|
|
8569
|
+
[name: string]: unknown;
|
|
8570
|
+
};
|
|
8571
|
+
content: {
|
|
8572
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
8573
|
+
};
|
|
8574
|
+
};
|
|
8575
|
+
};
|
|
8576
|
+
};
|
|
8593
8577
|
put?: never;
|
|
8594
8578
|
/**
|
|
8595
8579
|
* Start an ad-hoc detection
|
|
@@ -9623,6 +9607,129 @@ interface paths {
|
|
|
9623
9607
|
patch?: never;
|
|
9624
9608
|
trace?: never;
|
|
9625
9609
|
};
|
|
9610
|
+
"/workspaces/{workspaceId}/redactions": {
|
|
9611
|
+
parameters: {
|
|
9612
|
+
query?: never;
|
|
9613
|
+
header?: never;
|
|
9614
|
+
path?: never;
|
|
9615
|
+
cookie?: never;
|
|
9616
|
+
};
|
|
9617
|
+
/**
|
|
9618
|
+
* List workspace redactions
|
|
9619
|
+
* @description Returns all redactions across the workspace, most recent first, cursor-paginated, with optional detection and document filters. Each redaction is one redact pass with its own reviewer edits, output document, and review audit.
|
|
9620
|
+
*/
|
|
9621
|
+
get: {
|
|
9622
|
+
parameters: {
|
|
9623
|
+
query?: {
|
|
9624
|
+
/**
|
|
9625
|
+
* @description Cursor pointing to the last item of the previous page.
|
|
9626
|
+
* Obtain this from the `nextCursor` field in the response.
|
|
9627
|
+
*/
|
|
9628
|
+
after?: string;
|
|
9629
|
+
/**
|
|
9630
|
+
* @description Whether to include the total item count in the response's `total` field.
|
|
9631
|
+
* Defaults to `false`, since counting is an extra query; set it to `true`
|
|
9632
|
+
* only when the count is actually needed.
|
|
9633
|
+
*/
|
|
9634
|
+
includeCount?: boolean;
|
|
9635
|
+
/** @description The maximum number of records to return (1-100, default: 20). */
|
|
9636
|
+
limit?: number;
|
|
9637
|
+
/** @description Filter to the redactions produced from a specific detection. */
|
|
9638
|
+
detectionId?: string;
|
|
9639
|
+
/** @description Filter to the redactions of detections analyzing a specific document. */
|
|
9640
|
+
documentId?: string;
|
|
9641
|
+
};
|
|
9642
|
+
header?: never;
|
|
9643
|
+
path: {
|
|
9644
|
+
/** @description Workspace identifier. */
|
|
9645
|
+
workspaceId: string;
|
|
9646
|
+
};
|
|
9647
|
+
cookie?: never;
|
|
9648
|
+
};
|
|
9649
|
+
requestBody?: never;
|
|
9650
|
+
responses: {
|
|
9651
|
+
/**
|
|
9652
|
+
* @description Generic paginated response wrapper.
|
|
9653
|
+
*
|
|
9654
|
+
* Provides a consistent structure for all paginated API responses with
|
|
9655
|
+
* cursor-based pagination support. When `next_cursor` is present, there
|
|
9656
|
+
* are more items to fetch.
|
|
9657
|
+
*/
|
|
9658
|
+
200: {
|
|
9659
|
+
headers: {
|
|
9660
|
+
[name: string]: unknown;
|
|
9661
|
+
};
|
|
9662
|
+
content: {
|
|
9663
|
+
"application/json": components["schemas"]["WorkspaceRedactionResultPage"];
|
|
9664
|
+
};
|
|
9665
|
+
};
|
|
9666
|
+
/**
|
|
9667
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
9668
|
+
* that [`Error`] renders to at the response boundary.
|
|
9669
|
+
*
|
|
9670
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
9671
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
9672
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
9673
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
9674
|
+
*
|
|
9675
|
+
* [`Error`]: crate::response::Error
|
|
9676
|
+
*/
|
|
9677
|
+
401: {
|
|
9678
|
+
headers: {
|
|
9679
|
+
[name: string]: unknown;
|
|
9680
|
+
};
|
|
9681
|
+
content: {
|
|
9682
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
9683
|
+
};
|
|
9684
|
+
};
|
|
9685
|
+
/**
|
|
9686
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
9687
|
+
* that [`Error`] renders to at the response boundary.
|
|
9688
|
+
*
|
|
9689
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
9690
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
9691
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
9692
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
9693
|
+
*
|
|
9694
|
+
* [`Error`]: crate::response::Error
|
|
9695
|
+
*/
|
|
9696
|
+
403: {
|
|
9697
|
+
headers: {
|
|
9698
|
+
[name: string]: unknown;
|
|
9699
|
+
};
|
|
9700
|
+
content: {
|
|
9701
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
9702
|
+
};
|
|
9703
|
+
};
|
|
9704
|
+
/**
|
|
9705
|
+
* @description The serialized shape of an HTTP error: the inert wire/OpenAPI-schema view
|
|
9706
|
+
* that [`Error`] renders to at the response boundary.
|
|
9707
|
+
*
|
|
9708
|
+
* It carries no builder logic — [`Error`] is the type handlers construct and
|
|
9709
|
+
* thread through `Result`, and it builds an `ErrorResponse` directly in its
|
|
9710
|
+
* `IntoResponse` impl. `context` and `status` are not part of the JSON body
|
|
9711
|
+
* (`context` is logged, `status` sets the HTTP status line).
|
|
9712
|
+
*
|
|
9713
|
+
* [`Error`]: crate::response::Error
|
|
9714
|
+
*/
|
|
9715
|
+
404: {
|
|
9716
|
+
headers: {
|
|
9717
|
+
[name: string]: unknown;
|
|
9718
|
+
};
|
|
9719
|
+
content: {
|
|
9720
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
9721
|
+
};
|
|
9722
|
+
};
|
|
9723
|
+
};
|
|
9724
|
+
};
|
|
9725
|
+
put?: never;
|
|
9726
|
+
post?: never;
|
|
9727
|
+
delete?: never;
|
|
9728
|
+
options?: never;
|
|
9729
|
+
head?: never;
|
|
9730
|
+
patch?: never;
|
|
9731
|
+
trace?: never;
|
|
9732
|
+
};
|
|
9626
9733
|
"/workspaces/{workspaceId}/redactions/{redactionId}/review": {
|
|
9627
9734
|
parameters: {
|
|
9628
9735
|
query?: never;
|
|
@@ -11551,7 +11658,7 @@ interface paths {
|
|
|
11551
11658
|
put?: never;
|
|
11552
11659
|
/**
|
|
11553
11660
|
* Generate invite code
|
|
11554
|
-
* @description Creates a shareable, single-use invite code that lets one person join the workspace. The code is consumed on first acceptance and expires if unused.
|
|
11661
|
+
* @description Creates a shareable, single-use invite code that lets one person join the workspace. The code is consumed on first acceptance and expires if unused. The response carries the raw code (shown once, never returned again) alongside the full invite — including its `inviteId` and `inviteStatus`, so a client can correlate the code to its listing row and tell an active code from a consumed one.
|
|
11555
11662
|
*/
|
|
11556
11663
|
post: {
|
|
11557
11664
|
parameters: {
|
|
@@ -11570,7 +11677,18 @@ interface paths {
|
|
|
11570
11677
|
};
|
|
11571
11678
|
};
|
|
11572
11679
|
responses: {
|
|
11573
|
-
/**
|
|
11680
|
+
/**
|
|
11681
|
+
* @description Response for a freshly generated shareable invite code: the full invite plus
|
|
11682
|
+
* its raw, show-once code.
|
|
11683
|
+
*
|
|
11684
|
+
* The `inviteCode` is a single-use bearer secret returned **only here**, never
|
|
11685
|
+
* from the list or any other endpoint — treat it like the webhook signing
|
|
11686
|
+
* secret and store it at once. The flattened invite fields (notably `inviteId`
|
|
11687
|
+
* and `inviteStatus`) let a client correlate this code to its listing row and
|
|
11688
|
+
* track its lifecycle: once redeemed the code is consumed, and the row's
|
|
11689
|
+
* `inviteStatus` becomes `accepted` (with `respondedAt` set) — so a client can
|
|
11690
|
+
* tell an active code from a spent one without ever re-fetching the secret.
|
|
11691
|
+
*/
|
|
11574
11692
|
201: {
|
|
11575
11693
|
headers: {
|
|
11576
11694
|
[name: string]: unknown;
|
|
@@ -15216,6 +15334,17 @@ interface components {
|
|
|
15216
15334
|
* [`part_entities`]: elide::Report::part_entities
|
|
15217
15335
|
*/
|
|
15218
15336
|
report: components["schemas"]["Report"];
|
|
15337
|
+
/**
|
|
15338
|
+
* @description Which recognizers this request selected.
|
|
15339
|
+
*
|
|
15340
|
+
* Carried back for the same reason [`codec`] is. Anonymize
|
|
15341
|
+
* compiles its analyzers afresh, and a lineup narrower than
|
|
15342
|
+
* the one analyze detected with would leave an entity found
|
|
15343
|
+
* and then silently not redacted.
|
|
15344
|
+
*
|
|
15345
|
+
* [`codec`]: Audit::codec
|
|
15346
|
+
*/
|
|
15347
|
+
selection?: components["schemas"]["ComponentSelection"];
|
|
15219
15348
|
/**
|
|
15220
15349
|
* @description What the analyze pass cost: one entry per recognizer and
|
|
15221
15350
|
* enricher that ran, each self-identifying by the name the
|
|
@@ -15400,6 +15529,44 @@ interface components {
|
|
|
15400
15529
|
* opinion passes [`CodecParams::default`].
|
|
15401
15530
|
*/
|
|
15402
15531
|
CodecParams: {
|
|
15532
|
+
/**
|
|
15533
|
+
* Format: uint8
|
|
15534
|
+
* @description The CSV field separator, or [`None`] to auto-detect it.
|
|
15535
|
+
*
|
|
15536
|
+
* Defaults to [`None`], the codec's own behaviour. Detection
|
|
15537
|
+
* falls back to a comma when nothing stands out, which can
|
|
15538
|
+
* misread a TSV or semicolon-delimited file, so pass the byte
|
|
15539
|
+
* when the format is known.
|
|
15540
|
+
*/
|
|
15541
|
+
csvDelimiter?: number;
|
|
15542
|
+
/**
|
|
15543
|
+
* @description Whether a CSV's first row is its header.
|
|
15544
|
+
*
|
|
15545
|
+
* Defaults to `true`, the codec's own behaviour. A header row
|
|
15546
|
+
* gains column-name context hints for the data below it, but
|
|
15547
|
+
* is protected from a row-drop redaction — so a *headerless*
|
|
15548
|
+
* file needs `false`, or its first row of real data cannot be
|
|
15549
|
+
* dropped.
|
|
15550
|
+
* @default true
|
|
15551
|
+
*/
|
|
15552
|
+
csvHasHeaders?: boolean;
|
|
15553
|
+
/**
|
|
15554
|
+
* @description What happens to an image's EXIF metadata on re-encode.
|
|
15555
|
+
*
|
|
15556
|
+
* Defaults to [`ExifPolicy::default`], which the codec also
|
|
15557
|
+
* registers — [`Strip`](ExifPolicy::Strip) today: metadata
|
|
15558
|
+
* goes unless a request asks to keep it. Deferring to the
|
|
15559
|
+
* enum rather than naming a variant keeps this from drifting
|
|
15560
|
+
* if the codec's own bias changes again.
|
|
15561
|
+
*
|
|
15562
|
+
* This governs the output only when no metadata pipeline ran:
|
|
15563
|
+
* a wired EXIF recognizer and anonymizer strip through the
|
|
15564
|
+
* `#exif` sub-part and always win. It is the knob for
|
|
15565
|
+
* stripping — or deliberately preserving — *without* wiring
|
|
15566
|
+
* one.
|
|
15567
|
+
* @default strip
|
|
15568
|
+
*/
|
|
15569
|
+
exifPolicy?: components["schemas"]["ExifPolicy"];
|
|
15403
15570
|
/**
|
|
15404
15571
|
* @description How container formats carrying both a text layer and page
|
|
15405
15572
|
* images treat OCR.
|
|
@@ -15459,6 +15626,32 @@ interface components {
|
|
|
15459
15626
|
/** @description Status of this component. */
|
|
15460
15627
|
status: components["schemas"]["HealthStatus"];
|
|
15461
15628
|
};
|
|
15629
|
+
/**
|
|
15630
|
+
* @description Which of the available components one request wants to run.
|
|
15631
|
+
*
|
|
15632
|
+
* Empty by default, meaning every component the caller has
|
|
15633
|
+
* available. A request that expresses no opinion gets full
|
|
15634
|
+
* detection — the opposite would let an omitted field quietly
|
|
15635
|
+
* disable redaction.
|
|
15636
|
+
*/
|
|
15637
|
+
ComponentSelection: {
|
|
15638
|
+
/**
|
|
15639
|
+
* @description Names or tags to run, or [`None`] for all available.
|
|
15640
|
+
*
|
|
15641
|
+
* An empty `Vec` is not the same as [`None`]: it selects
|
|
15642
|
+
* nothing and is refused, because a request that can detect
|
|
15643
|
+
* nothing is a mistake rather than a request for an empty
|
|
15644
|
+
* report.
|
|
15645
|
+
*/
|
|
15646
|
+
only?: string[];
|
|
15647
|
+
/**
|
|
15648
|
+
* @description Names or tags to skip, applied after `only`.
|
|
15649
|
+
*
|
|
15650
|
+
* Lets a caller run everything but one component without
|
|
15651
|
+
* enumerating the rest.
|
|
15652
|
+
*/
|
|
15653
|
+
skip?: string[];
|
|
15654
|
+
};
|
|
15462
15655
|
/**
|
|
15463
15656
|
* Format: float
|
|
15464
15657
|
* @description Confidence score in the closed range `0.0..=1.0`.
|
|
@@ -16192,6 +16385,14 @@ interface components {
|
|
|
16192
16385
|
/** @description The error name/type identifier. */
|
|
16193
16386
|
name: string;
|
|
16194
16387
|
};
|
|
16388
|
+
/**
|
|
16389
|
+
* @description What to do with an image's EXIF metadata when re-encoding it.
|
|
16390
|
+
*
|
|
16391
|
+
* EXIF mixes privacy-sensitive fields (GPS, device serial, capture timestamp)
|
|
16392
|
+
* with benign ones (orientation, colour profile) that a viewer needs to render
|
|
16393
|
+
* the image correctly, so the choice is a policy, not a fixed behaviour.
|
|
16394
|
+
*/
|
|
16395
|
+
ExifPolicy: "strip" | "strip_sensitive" | "retain";
|
|
16195
16396
|
/** @description The file format an export is rendered as. */
|
|
16196
16397
|
ExportFormat: "csv" | "json";
|
|
16197
16398
|
/**
|
|
@@ -18319,8 +18520,6 @@ interface components {
|
|
|
18319
18520
|
* header.
|
|
18320
18521
|
*/
|
|
18321
18522
|
RegisteredRecognizer: {
|
|
18322
|
-
/** @description Optional human-readable description. */
|
|
18323
|
-
description?: string;
|
|
18324
18523
|
/**
|
|
18325
18524
|
* @description Recognizer name: the identifier a request's allowlist
|
|
18326
18525
|
* picks by.
|
|
@@ -18339,6 +18538,15 @@ interface components {
|
|
|
18339
18538
|
* engine-side construction stays free.
|
|
18340
18539
|
*/
|
|
18341
18540
|
provider: string;
|
|
18541
|
+
/**
|
|
18542
|
+
* @description The groupings this component belongs to, as the deployment
|
|
18543
|
+
* tagged it.
|
|
18544
|
+
*
|
|
18545
|
+
* What a request's selection and the engine's availability
|
|
18546
|
+
* match on besides the name, so a caller listing components
|
|
18547
|
+
* can see which families it may ask for.
|
|
18548
|
+
*/
|
|
18549
|
+
tags?: string[];
|
|
18342
18550
|
};
|
|
18343
18551
|
/** @description Request payload to rename a review (set its title). */
|
|
18344
18552
|
RenameWorkspaceReview: {
|
|
@@ -21230,12 +21438,23 @@ interface components {
|
|
|
21230
21438
|
* @description Unique identifier of the invitation.
|
|
21231
21439
|
*/
|
|
21232
21440
|
inviteId: string;
|
|
21233
|
-
/**
|
|
21441
|
+
/**
|
|
21442
|
+
* @description Current status of the invitation.
|
|
21443
|
+
*
|
|
21444
|
+
* For a single-use open code, `accepted` means the code has been consumed;
|
|
21445
|
+
* `pending` (and unexpired) means it is still active.
|
|
21446
|
+
*/
|
|
21234
21447
|
inviteStatus: components["schemas"]["InviteStatus"];
|
|
21235
21448
|
/** @description Role the invitee will have if they accept. */
|
|
21236
21449
|
invitedRole: components["schemas"]["WorkspaceRole"];
|
|
21237
21450
|
/** @description Email address of the invitee (omitted for open invite codes). */
|
|
21238
21451
|
inviteeEmail?: string;
|
|
21452
|
+
/**
|
|
21453
|
+
* Format: date-time
|
|
21454
|
+
* @description When the invitee responded (accepted or declined), if they have. For a
|
|
21455
|
+
* consumed single-use code, this is when it was used.
|
|
21456
|
+
*/
|
|
21457
|
+
respondedAt?: string;
|
|
21239
21458
|
/**
|
|
21240
21459
|
* Format: date-time
|
|
21241
21460
|
* @description When the invitation was last updated.
|
|
@@ -21249,17 +21468,58 @@ interface components {
|
|
|
21249
21468
|
*/
|
|
21250
21469
|
workspaceId: string;
|
|
21251
21470
|
};
|
|
21252
|
-
/**
|
|
21471
|
+
/**
|
|
21472
|
+
* @description Response for a freshly generated shareable invite code: the full invite plus
|
|
21473
|
+
* its raw, show-once code.
|
|
21474
|
+
*
|
|
21475
|
+
* The `inviteCode` is a single-use bearer secret returned **only here**, never
|
|
21476
|
+
* from the list or any other endpoint — treat it like the webhook signing
|
|
21477
|
+
* secret and store it at once. The flattened invite fields (notably `inviteId`
|
|
21478
|
+
* and `inviteStatus`) let a client correlate this code to its listing row and
|
|
21479
|
+
* track its lifecycle: once redeemed the code is consumed, and the row's
|
|
21480
|
+
* `inviteStatus` becomes `accepted` (with `respondedAt` set) — so a client can
|
|
21481
|
+
* tell an active code from a spent one without ever re-fetching the secret.
|
|
21482
|
+
*/
|
|
21253
21483
|
WorkspaceInviteCode: {
|
|
21254
21484
|
/**
|
|
21255
21485
|
* Format: date-time
|
|
21256
|
-
* @description When the
|
|
21486
|
+
* @description When the invitation was created.
|
|
21487
|
+
*/
|
|
21488
|
+
createdAt: string;
|
|
21489
|
+
/**
|
|
21490
|
+
* Format: date-time
|
|
21491
|
+
* @description When the invitation expires.
|
|
21257
21492
|
*/
|
|
21258
21493
|
expiresAt: string;
|
|
21259
|
-
/** @description The generated invite code
|
|
21494
|
+
/** @description The generated invite code to share. Shown once and never returned again. */
|
|
21260
21495
|
inviteCode: string;
|
|
21261
|
-
/**
|
|
21262
|
-
|
|
21496
|
+
/**
|
|
21497
|
+
* Format: uuid
|
|
21498
|
+
* @description Unique identifier of the invitation.
|
|
21499
|
+
*/
|
|
21500
|
+
inviteId: string;
|
|
21501
|
+
/**
|
|
21502
|
+
* @description Current status of the invitation.
|
|
21503
|
+
*
|
|
21504
|
+
* For a single-use open code, `accepted` means the code has been consumed;
|
|
21505
|
+
* `pending` (and unexpired) means it is still active.
|
|
21506
|
+
*/
|
|
21507
|
+
inviteStatus: components["schemas"]["InviteStatus"];
|
|
21508
|
+
/** @description Role the invitee will have if they accept. */
|
|
21509
|
+
invitedRole: components["schemas"]["WorkspaceRole"];
|
|
21510
|
+
/** @description Email address of the invitee (omitted for open invite codes). */
|
|
21511
|
+
inviteeEmail?: string;
|
|
21512
|
+
/**
|
|
21513
|
+
* Format: date-time
|
|
21514
|
+
* @description When the invitee responded (accepted or declined), if they have. For a
|
|
21515
|
+
* consumed single-use code, this is when it was used.
|
|
21516
|
+
*/
|
|
21517
|
+
respondedAt?: string;
|
|
21518
|
+
/**
|
|
21519
|
+
* Format: date-time
|
|
21520
|
+
* @description When the invitation was last updated.
|
|
21521
|
+
*/
|
|
21522
|
+
updatedAt: string;
|
|
21263
21523
|
/** @description URL-safe workspace handle. Display-only. */
|
|
21264
21524
|
workspaceHandle: components["schemas"]["Handle"];
|
|
21265
21525
|
/**
|
|
@@ -21833,6 +22093,25 @@ interface components {
|
|
|
21833
22093
|
*/
|
|
21834
22094
|
total?: number;
|
|
21835
22095
|
};
|
|
22096
|
+
/**
|
|
22097
|
+
* @description Query parameters for listing a workspace's redactions.
|
|
22098
|
+
*
|
|
22099
|
+
* Every field is an optional filter; unset fields impose no constraint. A
|
|
22100
|
+
* redaction has no status of its own, so it narrows by its owning detection and
|
|
22101
|
+
* the document that detection analyzed.
|
|
22102
|
+
*/
|
|
22103
|
+
WorkspaceRedactionsQuery: {
|
|
22104
|
+
/**
|
|
22105
|
+
* Format: uuid
|
|
22106
|
+
* @description Filter to the redactions produced from a specific detection.
|
|
22107
|
+
*/
|
|
22108
|
+
detectionId?: string;
|
|
22109
|
+
/**
|
|
22110
|
+
* Format: uuid
|
|
22111
|
+
* @description Filter to the redactions of detections analyzing a specific document.
|
|
22112
|
+
*/
|
|
22113
|
+
documentId?: string;
|
|
22114
|
+
};
|
|
21836
22115
|
/**
|
|
21837
22116
|
* @description Response type for a review: a named discussion on a document with a manual
|
|
21838
22117
|
* sign-off lifecycle (0..N per document), opened explicitly. It carries a
|
|
@@ -22397,9 +22676,11 @@ type Schemas$19 = components["schemas"];
|
|
|
22397
22676
|
type Audit = Schemas$19["Audit"];
|
|
22398
22677
|
type DocumentContext = Schemas$19["DocumentContext"];
|
|
22399
22678
|
type CodecParams = Schemas$19["CodecParams"];
|
|
22679
|
+
type ExifPolicy = Schemas$19["ExifPolicy"];
|
|
22400
22680
|
type EntityCoRef = Schemas$19["EntityCoRef"];
|
|
22401
22681
|
type Report = Schemas$19["Report"];
|
|
22402
22682
|
type Recognition = Schemas$19["Recognition"];
|
|
22683
|
+
type ComponentSelection = Schemas$19["ComponentSelection"];
|
|
22403
22684
|
type EditSet = Schemas$19["EditSet"];
|
|
22404
22685
|
type RasterMode = Schemas$19["RasterMode"];
|
|
22405
22686
|
type Dpi = Schemas$19["Dpi"];
|
|
@@ -22566,6 +22847,7 @@ type RedactionId = Schemas$15["RedactionId"];
|
|
|
22566
22847
|
type RedactWorkspaceDetection = Schemas$15["RedactWorkspaceDetection"];
|
|
22567
22848
|
type WorkspaceRedactionResult = Schemas$15["WorkspaceRedactionResult"];
|
|
22568
22849
|
type WorkspaceRedactionResultPage = Schemas$15["WorkspaceRedactionResultPage"];
|
|
22850
|
+
type WorkspaceRedactionsQuery = Schemas$15["WorkspaceRedactionsQuery"];
|
|
22569
22851
|
//#endregion
|
|
22570
22852
|
//#region src/datatypes/document.d.ts
|
|
22571
22853
|
type Schemas$14 = components["schemas"];
|
|
@@ -22763,5 +23045,5 @@ type Retention = Schemas["Retention"];
|
|
|
22763
23045
|
type RetentionSettings = Schemas["RetentionSettings"];
|
|
22764
23046
|
type RetentionOverride = Schemas["RetentionOverride"];
|
|
22765
23047
|
//#endregion
|
|
22766
|
-
export { ConfidenceThreshold as $,
|
|
22767
|
-
//# sourceMappingURL=index-
|
|
23048
|
+
export { ConfidenceThreshold as $, CreateAccountApiToken as $a, RangeOfUint as $i, WorkspaceDetectionPage as $n, AudioAuditLog as $r, DetectionCompletedParams as $t, RenameWorkspaceReview as A, TextEntity as Aa, ImageAdd as Ai, DateWindow as An, WorkspaceActivity as Ao, WorkspaceConnection as Ar, UpdateWorkspacePolicy as At, WorkspaceReviewsQuery as B, ArtifactSet as Ba, ImageMetadata as Bi, UpdateWorkspaceDocument as Bn, IdentityProvider as Bo, ConnectorCapabilities as Br, UpdateWorkspacePipeline as Bt, Language as C, TextAdd as Ca, Dimensions as Ci, WorkspaceInvite as Cn, PipelineActivityParams as Co, SyncDeletionPolicy as Cr, PolicyTemplate as Ct, ScopeMetadata as D, TextCoord as Da, EntityCoRef as Di, ComponentHealth as Dn, ReviewActivityParams as Do, SyncTriggerType as Dr, TemplateOrigin as Dt, Languages as E, TextAuditLog as Ea, EditSet as Ei, WorkspaceInviteSent as En, RedactionActivityParams as Eo, SyncStatus as Er, TabularRedaction as Et, WorkspaceReviewEntry as F, TextModel as Fa, ImageEdit as Fi, DocumentHash as Fn, Account as Fo, WorkspaceConnectionsQuery as Fr, WorkspacePolicySummaryPage as Ft, ProviderType as G, Tokens as Ga, LeakProfile as Gi, CreateWorkspaceDetection as Gn, paths as Go, AccountDesktopToken as Gr, CursorPagination as Gt, InferenceConfig as H, LayoutBlock as Ha, ImagePattern as Hi, WorkspaceDocument as Hn, PublicAccount as Ho, LabelCatalog as Hr, WorkspacePipelineFilter as Ht, WorkspaceReviewEntryPage as I, TextPattern as Ia, ImageEntity as Ii, DocumentKind as In, AccountIdentities as Io, WorkspacePickerToken as Ir, CreateWorkspacePipeline as It, WorkspaceProviderPage as J, Transcription as Ja, ModelEvent as Ji, DetectionStatus as Jn, Signup as Jr, AccountNotificationPage as Jt, UpdateWorkspaceProvider as K, TranscriptSegment as Ka, ManualIntent as Ki, DetectionId as Kn, DesktopTokenRequest as Kr, AccountMarkedReadStatus as Kt, WorkspaceReviewEvent as L, TextRefinement as La, ImageHint as Li, FormatToken as Ln, AccountIdentity as Lo, WorkspacePickerTokenRequest as Lr, PipelineDefinition as Lt, UpdateWorkspaceComment as M, TextLocation as Ma, ImageAuditKind as Mi, ExportQuery as Mn, WorkspaceActivityFilterQuery as Mo, WorkspaceConnectionSync as Mr, WorkspacePoliciesQuery as Mt, WorkspaceComment as N, TextManual as Na, ImageAuditLog as Ni, ErrorResponse as Nn, WorkspaceActivityPage as No, WorkspaceConnectionSyncPage as Nr, WorkspacePolicy as Nt, CreateWorkspaceComment as O, TextData as Oa, ExifPolicy as Oi, Health as On, ReviewCommentActivityParams as Oo, UnauthenticatedProvider as Or, TerminalFallback as Ot, WorkspaceReview as P, TextMetadata as Pa, ImageData as Pi, DeleteWorkspaceDocuments as Pn, WorkspaceActivityParams as Po, WorkspaceConnectionVerification as Pr, WorkspacePolicySummary as Pt, Color as Q, ApiTokenType as Qa, Polygon as Qi, WorkspaceDetection as Qn, AudioAuditKind as Qr, ConnectionSyncFailedParams as Qt, WorkspaceReviewEventPage as R, TextRetag as Ra, ImageLocation as Ri, ListWorkspaceDocuments as Rn, AccountRef as Ro, WorkspaceSyncSchedule as Rr, PipelineStatus as Rt, CountryCode as S, TabularRetag as Sa, Deduplication as Si, ReplyWorkspaceInvite as Sn, MemberActivityParams as So, StorageConfig as Sr, PolicyRule as St, LanguageSpan as T, TextAuditKind as Ta, Dpi as Ti, WorkspaceInvitePage as Tn, ProviderActivityParams as To, SyncScheduleInput as Tr, Sha2Algorithm as Tt, ProviderConfig as U, LayoutWord as Ua, ImageRefinement as Ui, WorkspaceDocumentPage as Un, SetPassword as Uo, RecognizerCatalog as Ur, WorkspacePipelineSummary as Ut, CreateWorkspaceProvider as V, Layout as Va, ImageModel as Vi, WorkspaceDeletedDocuments as Vn, OidcStartResponse as Vo, FileProviders as Vr, WorkspacePipeline as Vt, ProviderId as W, Token as Wa, ImageRetag as Wi, CreateAdhocWorkspaceDetection as Wn, UpdateAccount as Wo, RegisteredRecognizer as Wr, WorkspacePipelineSummaryPage as Wt, AudioRedaction as X, AccountApiTokenPage as Xa, PatternEvent as Xi, RedactWorkspaceDetection as Xn, AudioAdd as Xr, CommentMentionedParams as Xt, WorkspaceProvidersQuery as Y, AccountApiToken as Ya, OperatorId as Yi, DetectionStatusEvent as Yn, Attribution as Yr, AccountUnreadStatus as Yt, ClampBucket as Z, AccountApiTokenWithJwt as Za, Point as Zi, RedactionId as Zn, AudioAuditEvent as Zr, ConnectionSyncCompletedParams as Zt, WorkspaceWebhook as _, TabularManual as _a, CodecParams as _i, InviteExpiration as _n, ActivityType as _o, OAuthStartResponse as _r, PciDssPart as _t, RetentionSettings as a, Selection as aa, AudioManual as ai, ReviewAssignedParams as an, Usage as ao, AuthenticatedProvider as ar, GdprSensitiveScope as at, WorkspaceWebhookResult as b, TabularPattern as ba, Contested as bi, InviteStatus as bn, DocumentActivityParams as bo, S3Credentials as br, PolicyDraft as bt, WorkspacePage as c, Suppress as ca, AudioPattern as ci, WorkspaceNotificationSettings as cn, WorkspaceDetectionAnalytics as co, ConnectionId as cr, ImageRedaction as ct, CreateWorkspaceWebhook as d, TabularAuditKind as da, Audit as di, UpdateWorkspaceMember as dn, WorkspaceDetectionTimeSeries as do, ExportWorkspaceFiles as dr, LabelLocale as dt, RasterMode as ea, AudioData as ei, DetectionFailedParams as en, TokenExpiration as eo, WorkspaceDetectionsQuery as er, CreateWorkspacePolicy as et, TestWorkspaceWebhook as f, TabularAuditLog as fa, AuditHash as fi, WorkspaceMember as fn, WorkspaceModelUsageEntry as fo, FileServiceConfig as fr, LabelRef as ft, WebhookStatus as g, TabularLocation as ga, CitedAttribution as gi, GenerateWorkspaceInviteCode as gn, ActivityPayload as go, LlmConfig as gr, ModalityRedactions as gt, WebhookId as h, TabularHint as ha, Category as hi, Direction as hn, WorkspaceUsageAnalytics as ho, ImportWorkspaceFiles as hr, LocalizedText as ht, RetentionOverride as i, RuleMatch as ia, AudioLocation as ii, RedactionCreatedParams as in, TokenCounts as io, WorkspaceRedactionsQuery as ir, GdprArticle9Treatment as it, ReviewStatus as j, TextHint as ja, ImageAuditEvent as ji, ExportFormat as jn, WorkspaceActivityExportOptions as jo, WorkspaceConnectionPage as jr, Waveform as jt, CreateWorkspaceReview as k, TextEdit as ka, FreeformAttribution as ki, HealthStatus as kn, WebhookActivityParams as ko, UpdateWorkspaceConnection as kr, TextRedaction as kt, WorkspaceRole as l, TabularAdd as la, AudioRefinement as li, ListWorkspaceMembers as ln, WorkspaceDetectionDayEntry as lo, ConnectionType as lr, Label as lt, WebhookEvent as m, TabularEntity as ma, Calibration as mi, CreateWorkspaceInvite as mn, WorkspaceStorageKindEntry as mo, GcsCredentials as mr, LanguageTag as mt, RasterPolicy as n, Redaction as na, AudioEntity as ni, NotificationEvent as nn, ModelUsage as no, WorkspaceRedactionResult as nr, DateGranularity as nt, UpdateWorkspace as o, SourceRef as oa, AudioMetadata as oi, UnreadCountEvent as on, UsageReport as oo, AzureCredentials as or, HipaaAccountNumbers as ot, UpdateWorkspaceWebhook as p, TabularEdit as pa, BoundingBox as pi, WorkspaceMemberPage as pn, WorkspaceStorageAnalytics as po, FileServiceProvider as pr, LabelScope as pt, WorkspaceProvider as q, TranscriptWord as qa, MetadataEvent as qi, DetectionMetadata as qn, Login as qr, AccountNotification as qt, Retention as r, Report as ra, AudioHint as ri, NotificationPayload as rn, RecognizerId as ro, WorkspaceRedactionResultPage as rr, DateStyle as rt, Workspace as s, SourceSpan as sa, AudioModel as si, UpdateWorkspaceNotificationSettings as sn, WorkspaceAnalytics as so, ConnectionConfig as sr, HipaaDeidMethod as st, CreateWorkspace as t, Recognition as ta, AudioEdit as ti, MemberJoinedParams as tn, UpdateAccountApiToken as to, WorkspacePipelineDetectionsQuery as tr, CustomMatcher as tt, WorkspaceSettings as u, TabularAuditEvent as ua, AudioRetag as ui, MemberSortField as un, WorkspaceDetectionStatusEntry as uo, CreateWorkspaceConnection as ur, LabelEntry as ut, WorkspaceWebhookCreated as v, TabularMetadata as va, ComponentSelection as vi, InvitePreview as vn, ConnectionActivityParams as vo, OAuthTokens as vr, PciPanRender as vt, LanguageProvenance as w, TextAuditEvent as wa, DocumentContext as wi, WorkspaceInviteCode as wn, PolicyActivityParams as wo, SyncMode as wr, Predicate as wt, Confidence as x, TabularRefinement as xa, DecodedSpan as xi, ListWorkspaceInvites as xn, InviteActivityParams as xo, StartFileServiceOAuth as xr, PolicyKind as xt, WorkspaceWebhookPage as y, TabularModel as ya, Conflict as yi, InviteSortField as yn, DetectionActivityParams as yo, PickedFile as yr, Policy as yt, WorkspaceReviewPage as z, TimeSpan as za, ImageManual as zi, ModalityToken as zn, Handle as zo, AuthCapabilities as zr, PipelineTriggerType as zt };
|
|
23049
|
+
//# sourceMappingURL=index-sGTLqpYa.d.ts.map
|