@nvisy/sdk 0.43.0 → 0.45.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.
@@ -2700,6 +2700,112 @@ interface paths {
2700
2700
  patch?: never;
2701
2701
  trace?: never;
2702
2702
  };
2703
+ "/workspaces/{workspaceSlug}/connections/oauth/{provider}/start/": {
2704
+ parameters: {
2705
+ query?: never;
2706
+ header?: never;
2707
+ path?: never;
2708
+ cookie?: never;
2709
+ };
2710
+ get?: never;
2711
+ put?: never;
2712
+ /**
2713
+ * Start cloud file OAuth
2714
+ * @description Begins the OAuth authorization for a cloud file-service connection and returns the provider authorize URL to redirect the user to. On the user's consent, the provider redirects to the callback, which creates the connection.
2715
+ */
2716
+ post: {
2717
+ parameters: {
2718
+ query?: never;
2719
+ header?: never;
2720
+ path: {
2721
+ /** @description URL-safe workspace identifier. */
2722
+ workspaceSlug: string;
2723
+ /** @description The cloud file provider to connect. */
2724
+ provider: components["schemas"]["Provider"];
2725
+ };
2726
+ cookie?: never;
2727
+ };
2728
+ /** @description Request payload for starting a cloud file-service OAuth authorization. */
2729
+ requestBody: {
2730
+ content: {
2731
+ "application/json": components["schemas"]["StartFileServiceOAuth"];
2732
+ };
2733
+ };
2734
+ responses: {
2735
+ /** @description The response to a successful authorization start: where to send the user. */
2736
+ 200: {
2737
+ headers: {
2738
+ [name: string]: unknown;
2739
+ };
2740
+ content: {
2741
+ "application/json": components["schemas"]["OAuthStartResponse"];
2742
+ };
2743
+ };
2744
+ /** @description Failed to parse the request body as JSON */
2745
+ 400: {
2746
+ headers: {
2747
+ [name: string]: unknown;
2748
+ };
2749
+ content: {
2750
+ "text/plain": string;
2751
+ };
2752
+ };
2753
+ /**
2754
+ * @description HTTP error response representation with security-conscious design.
2755
+ *
2756
+ * This struct contains all the information needed to serialize an error
2757
+ * response, including the error name, message, HTTP status code, resource
2758
+ * information, and user-friendly messages.
2759
+ */
2760
+ 401: {
2761
+ headers: {
2762
+ [name: string]: unknown;
2763
+ };
2764
+ content: {
2765
+ "application/json": components["schemas"]["ErrorResponse"];
2766
+ };
2767
+ };
2768
+ /**
2769
+ * @description HTTP error response representation with security-conscious design.
2770
+ *
2771
+ * This struct contains all the information needed to serialize an error
2772
+ * response, including the error name, message, HTTP status code, resource
2773
+ * information, and user-friendly messages.
2774
+ */
2775
+ 403: {
2776
+ headers: {
2777
+ [name: string]: unknown;
2778
+ };
2779
+ content: {
2780
+ "application/json": components["schemas"]["ErrorResponse"];
2781
+ };
2782
+ };
2783
+ /** @description Expected request with `Content-Type: application/json` */
2784
+ 415: {
2785
+ headers: {
2786
+ [name: string]: unknown;
2787
+ };
2788
+ content: {
2789
+ "text/plain": string;
2790
+ };
2791
+ };
2792
+ /** @description Failed to deserialize the JSON body into the target type */
2793
+ 422: {
2794
+ headers: {
2795
+ [name: string]: unknown;
2796
+ };
2797
+ content: {
2798
+ "text/plain": string;
2799
+ };
2800
+ };
2801
+ };
2802
+ };
2803
+ delete?: never;
2804
+ options?: never;
2805
+ head?: never;
2806
+ patch?: never;
2807
+ trace?: never;
2808
+ };
2703
2809
  "/workspaces/{workspaceSlug}/chat/sessions/": {
2704
2810
  parameters: {
2705
2811
  query?: never;
@@ -3301,7 +3407,111 @@ interface paths {
3301
3407
  put?: never;
3302
3408
  /**
3303
3409
  * Sync connection
3304
- * @description Imports an object from or exports a file to the connection. Returns the created sync; poll it for completion.
3410
+ * @description Runs the object-store connection's configured direction: imports every new object, or exports every redacted output not yet exported. File services use the picker import and per-file export instead. Returns the created sync; poll it for completion.
3411
+ */
3412
+ post: {
3413
+ parameters: {
3414
+ query?: never;
3415
+ header?: never;
3416
+ path: {
3417
+ /** @description URL-safe workspace identifier. */
3418
+ workspaceSlug: string;
3419
+ /** @description Opaque identifier of the connection. */
3420
+ connectionId: components["schemas"]["ConnectionId"];
3421
+ };
3422
+ cookie?: never;
3423
+ };
3424
+ requestBody?: never;
3425
+ responses: {
3426
+ /** @description A connection sync (import or export). */
3427
+ 202: {
3428
+ headers: {
3429
+ [name: string]: unknown;
3430
+ };
3431
+ content: {
3432
+ "application/json": components["schemas"]["ConnectionSync"];
3433
+ };
3434
+ };
3435
+ /**
3436
+ * @description HTTP error response representation with security-conscious design.
3437
+ *
3438
+ * This struct contains all the information needed to serialize an error
3439
+ * response, including the error name, message, HTTP status code, resource
3440
+ * information, and user-friendly messages.
3441
+ */
3442
+ 400: {
3443
+ headers: {
3444
+ [name: string]: unknown;
3445
+ };
3446
+ content: {
3447
+ "application/json": components["schemas"]["ErrorResponse"];
3448
+ };
3449
+ };
3450
+ /**
3451
+ * @description HTTP error response representation with security-conscious design.
3452
+ *
3453
+ * This struct contains all the information needed to serialize an error
3454
+ * response, including the error name, message, HTTP status code, resource
3455
+ * information, and user-friendly messages.
3456
+ */
3457
+ 401: {
3458
+ headers: {
3459
+ [name: string]: unknown;
3460
+ };
3461
+ content: {
3462
+ "application/json": components["schemas"]["ErrorResponse"];
3463
+ };
3464
+ };
3465
+ /**
3466
+ * @description HTTP error response representation with security-conscious design.
3467
+ *
3468
+ * This struct contains all the information needed to serialize an error
3469
+ * response, including the error name, message, HTTP status code, resource
3470
+ * information, and user-friendly messages.
3471
+ */
3472
+ 403: {
3473
+ headers: {
3474
+ [name: string]: unknown;
3475
+ };
3476
+ content: {
3477
+ "application/json": components["schemas"]["ErrorResponse"];
3478
+ };
3479
+ };
3480
+ /**
3481
+ * @description HTTP error response representation with security-conscious design.
3482
+ *
3483
+ * This struct contains all the information needed to serialize an error
3484
+ * response, including the error name, message, HTTP status code, resource
3485
+ * information, and user-friendly messages.
3486
+ */
3487
+ 404: {
3488
+ headers: {
3489
+ [name: string]: unknown;
3490
+ };
3491
+ content: {
3492
+ "application/json": components["schemas"]["ErrorResponse"];
3493
+ };
3494
+ };
3495
+ };
3496
+ };
3497
+ delete?: never;
3498
+ options?: never;
3499
+ head?: never;
3500
+ patch?: never;
3501
+ trace?: never;
3502
+ };
3503
+ "/workspaces/{workspaceSlug}/connections/{connectionId}/import/": {
3504
+ parameters: {
3505
+ query?: never;
3506
+ header?: never;
3507
+ path?: never;
3508
+ cookie?: never;
3509
+ };
3510
+ get?: never;
3511
+ put?: never;
3512
+ /**
3513
+ * Import selected files
3514
+ * @description Imports the files selected in the provider's picker (file services only). Already-imported files are skipped. Returns the created sync; poll it for completion.
3305
3515
  */
3306
3516
  post: {
3307
3517
  parameters: {
@@ -3316,17 +3526,12 @@ interface paths {
3316
3526
  cookie?: never;
3317
3527
  };
3318
3528
  /**
3319
- * @description Request payload to trigger a connection sync.
3320
- *
3321
- * The direction is determined by the connection's configured `sync_mode`.
3322
- * - Import connections need no body: the sync fetches every not-yet-imported
3323
- * object under the connection's root path.
3324
- * - Export connections push one workspace file (`file_id`) to one object
3325
- * `key`; both are required for export and ignored for import.
3529
+ * @description Request payload to import a caller-selected set of files from a file-service
3530
+ * connection (the provider picker returns id + name per file).
3326
3531
  */
3327
3532
  requestBody: {
3328
3533
  content: {
3329
- "application/json": components["schemas"]["SyncConnection"];
3534
+ "application/json": components["schemas"]["ImportFiles"];
3330
3535
  };
3331
3536
  };
3332
3537
  responses: {
@@ -3399,6 +3604,167 @@ interface paths {
3399
3604
  "application/json": components["schemas"]["ErrorResponse"];
3400
3605
  };
3401
3606
  };
3607
+ /**
3608
+ * @description HTTP error response representation with security-conscious design.
3609
+ *
3610
+ * This struct contains all the information needed to serialize an error
3611
+ * response, including the error name, message, HTTP status code, resource
3612
+ * information, and user-friendly messages.
3613
+ */
3614
+ 409: {
3615
+ headers: {
3616
+ [name: string]: unknown;
3617
+ };
3618
+ content: {
3619
+ "application/json": components["schemas"]["ErrorResponse"];
3620
+ };
3621
+ };
3622
+ /** @description Expected request with `Content-Type: application/json` */
3623
+ 415: {
3624
+ headers: {
3625
+ [name: string]: unknown;
3626
+ };
3627
+ content: {
3628
+ "text/plain": string;
3629
+ };
3630
+ };
3631
+ /** @description Failed to deserialize the JSON body into the target type */
3632
+ 422: {
3633
+ headers: {
3634
+ [name: string]: unknown;
3635
+ };
3636
+ content: {
3637
+ "text/plain": string;
3638
+ };
3639
+ };
3640
+ };
3641
+ };
3642
+ delete?: never;
3643
+ options?: never;
3644
+ head?: never;
3645
+ patch?: never;
3646
+ trace?: never;
3647
+ };
3648
+ "/workspaces/{workspaceSlug}/connections/{connectionId}/export/": {
3649
+ parameters: {
3650
+ query?: never;
3651
+ header?: never;
3652
+ path?: never;
3653
+ cookie?: never;
3654
+ };
3655
+ get?: never;
3656
+ put?: never;
3657
+ /**
3658
+ * Export files to connection
3659
+ * @description Exports the selected workspace files to the connection, each as a new provider file. Returns the created sync; poll it for completion.
3660
+ */
3661
+ post: {
3662
+ parameters: {
3663
+ query?: never;
3664
+ header?: never;
3665
+ path: {
3666
+ /** @description URL-safe workspace identifier. */
3667
+ workspaceSlug: string;
3668
+ /** @description Opaque identifier of the connection. */
3669
+ connectionId: components["schemas"]["ConnectionId"];
3670
+ };
3671
+ cookie?: never;
3672
+ };
3673
+ /**
3674
+ * @description Request payload to export a caller-selected set of workspace files to a
3675
+ * connection. Each is written as a new provider file, never overwriting a
3676
+ * source. Mirrors [`ImportFiles`] on the export side.
3677
+ */
3678
+ requestBody: {
3679
+ content: {
3680
+ "application/json": components["schemas"]["ExportFiles"];
3681
+ };
3682
+ };
3683
+ responses: {
3684
+ /** @description A connection sync (import or export). */
3685
+ 202: {
3686
+ headers: {
3687
+ [name: string]: unknown;
3688
+ };
3689
+ content: {
3690
+ "application/json": components["schemas"]["ConnectionSync"];
3691
+ };
3692
+ };
3693
+ /**
3694
+ * @description HTTP error response representation with security-conscious design.
3695
+ *
3696
+ * This struct contains all the information needed to serialize an error
3697
+ * response, including the error name, message, HTTP status code, resource
3698
+ * information, and user-friendly messages.
3699
+ */
3700
+ 400: {
3701
+ headers: {
3702
+ [name: string]: unknown;
3703
+ };
3704
+ content: {
3705
+ "application/json": components["schemas"]["ErrorResponse"];
3706
+ };
3707
+ };
3708
+ /**
3709
+ * @description HTTP error response representation with security-conscious design.
3710
+ *
3711
+ * This struct contains all the information needed to serialize an error
3712
+ * response, including the error name, message, HTTP status code, resource
3713
+ * information, and user-friendly messages.
3714
+ */
3715
+ 401: {
3716
+ headers: {
3717
+ [name: string]: unknown;
3718
+ };
3719
+ content: {
3720
+ "application/json": components["schemas"]["ErrorResponse"];
3721
+ };
3722
+ };
3723
+ /**
3724
+ * @description HTTP error response representation with security-conscious design.
3725
+ *
3726
+ * This struct contains all the information needed to serialize an error
3727
+ * response, including the error name, message, HTTP status code, resource
3728
+ * information, and user-friendly messages.
3729
+ */
3730
+ 403: {
3731
+ headers: {
3732
+ [name: string]: unknown;
3733
+ };
3734
+ content: {
3735
+ "application/json": components["schemas"]["ErrorResponse"];
3736
+ };
3737
+ };
3738
+ /**
3739
+ * @description HTTP error response representation with security-conscious design.
3740
+ *
3741
+ * This struct contains all the information needed to serialize an error
3742
+ * response, including the error name, message, HTTP status code, resource
3743
+ * information, and user-friendly messages.
3744
+ */
3745
+ 404: {
3746
+ headers: {
3747
+ [name: string]: unknown;
3748
+ };
3749
+ content: {
3750
+ "application/json": components["schemas"]["ErrorResponse"];
3751
+ };
3752
+ };
3753
+ /**
3754
+ * @description HTTP error response representation with security-conscious design.
3755
+ *
3756
+ * This struct contains all the information needed to serialize an error
3757
+ * response, including the error name, message, HTTP status code, resource
3758
+ * information, and user-friendly messages.
3759
+ */
3760
+ 409: {
3761
+ headers: {
3762
+ [name: string]: unknown;
3763
+ };
3764
+ content: {
3765
+ "application/json": components["schemas"]["ErrorResponse"];
3766
+ };
3767
+ };
3402
3768
  /** @description Expected request with `Content-Type: application/json` */
3403
3769
  415: {
3404
3770
  headers: {
@@ -4345,7 +4711,7 @@ interface paths {
4345
4711
  };
4346
4712
  /**
4347
4713
  * Download file
4348
- * @description Downloads a file by ID. Returns the file content as a binary stream.
4714
+ * @description Downloads a file by ID. Returns the file content as a binary stream. The required permission depends on the file's kind: an original file (or an intermediate, which carries the original's content) needs DownloadOriginalFiles, a redacted output needs DownloadRedactedFiles, and an audit blob needs DownloadAudit.
4349
4715
  */
4350
4716
  get: {
4351
4717
  parameters: {
@@ -6778,6 +7144,67 @@ interface paths {
6778
7144
  patch?: never;
6779
7145
  trace?: never;
6780
7146
  };
7147
+ "/catalog/connectors/": {
7148
+ parameters: {
7149
+ query?: never;
7150
+ header?: never;
7151
+ path?: never;
7152
+ cookie?: never;
7153
+ };
7154
+ /**
7155
+ * List connectors
7156
+ * @description Returns which connector families and providers this deployment can create: each OAuth file-service provider is available only when its app is configured on the server, while object-store and inference connections carry their own credentials and are always available. Use it to render the connect UI without probing.
7157
+ */
7158
+ get: {
7159
+ parameters: {
7160
+ query?: never;
7161
+ header?: never;
7162
+ path?: never;
7163
+ cookie?: never;
7164
+ };
7165
+ requestBody?: never;
7166
+ responses: {
7167
+ /**
7168
+ * @description Which connector families and providers this deployment can create.
7169
+ *
7170
+ * Lets a client render the connect UI without probing: a file-service provider
7171
+ * is only offered when the host has configured its OAuth app, whereas
7172
+ * object-store and inference connections carry their own credentials and are
7173
+ * always available.
7174
+ */
7175
+ 200: {
7176
+ headers: {
7177
+ [name: string]: unknown;
7178
+ };
7179
+ content: {
7180
+ "application/json": components["schemas"]["ConnectorCatalog"];
7181
+ };
7182
+ };
7183
+ /**
7184
+ * @description HTTP error response representation with security-conscious design.
7185
+ *
7186
+ * This struct contains all the information needed to serialize an error
7187
+ * response, including the error name, message, HTTP status code, resource
7188
+ * information, and user-friendly messages.
7189
+ */
7190
+ 401: {
7191
+ headers: {
7192
+ [name: string]: unknown;
7193
+ };
7194
+ content: {
7195
+ "application/json": components["schemas"]["ErrorResponse"];
7196
+ };
7197
+ };
7198
+ };
7199
+ };
7200
+ put?: never;
7201
+ post?: never;
7202
+ delete?: never;
7203
+ options?: never;
7204
+ head?: never;
7205
+ patch?: never;
7206
+ trace?: never;
7207
+ };
6781
7208
  "/api-tokens/": {
6782
7209
  parameters: {
6783
7210
  query?: never;
@@ -9452,11 +9879,6 @@ interface components {
9452
9879
  * audit trail and activity tracking.
9453
9880
  */
9454
9881
  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" | "webhook.created" | "webhook.updated" | "webhook.deleted" | "file.created" | "file.updated" | "file.deleted" | "pipeline.created" | "pipeline.updated" | "pipeline.deleted" | "pipeline.detection.started" | "pipeline.detection.completed" | "pipeline.detection.failed" | "pipeline.redaction.created" | "policy.created" | "policy.updated" | "policy.deleted";
9455
- /** @description Anthropic API credentials. */
9456
- AnthropicCredentials: {
9457
- /** @description Anthropic API key. */
9458
- apiKey: string;
9459
- };
9460
9882
  /** @description API token response structure. */
9461
9883
  ApiToken: {
9462
9884
  /**
@@ -10226,6 +10648,20 @@ interface components {
10226
10648
  /** @description Handle of the authenticated account. */
10227
10649
  username: components["schemas"]["Handle"];
10228
10650
  };
10651
+ /**
10652
+ * @description Configuration for a provider reached with an API key (OpenAI, Anthropic).
10653
+ *
10654
+ * The `api_key` is masked in [`Debug`], so neither this struct nor any config
10655
+ * that embeds it leaks the key.
10656
+ */
10657
+ AuthenticatedProvider: {
10658
+ /** @description The provider API key. */
10659
+ apiKey: string;
10660
+ /** @description Override the API base URL (for a compatible endpoint or a proxy). Optional. */
10661
+ baseUrl?: string;
10662
+ /** @description Default model to use when a request does not specify one. Optional. */
10663
+ defaultModel?: string;
10664
+ };
10229
10665
  /**
10230
10666
  * @description Path parameters for a public avatar route: the owner id and the avatar's
10231
10667
  * content-hash version.
@@ -10566,7 +11002,7 @@ interface components {
10566
11002
  * Untagged: the two inner enums have disjoint `provider` values, so serde
10567
11003
  * resolves the variant from the flat payload without an outer discriminator.
10568
11004
  */
10569
- ConnectionConfig: components["schemas"]["StorageConfig"] | components["schemas"]["LlmConfig"];
11005
+ ConnectionConfig: components["schemas"]["StorageConfig"] | components["schemas"]["FileServiceConfig"] | components["schemas"]["LlmConfig"];
10570
11006
  /** @description Opaque conn identifier (conn_<uuid>). */
10571
11007
  ConnectionId: string;
10572
11008
  /**
@@ -10702,6 +11138,29 @@ interface components {
10702
11138
  */
10703
11139
  provider?: string[];
10704
11140
  };
11141
+ /**
11142
+ * @description Which connector families and providers this deployment can create.
11143
+ *
11144
+ * Lets a client render the connect UI without probing: a file-service provider
11145
+ * is only offered when the host has configured its OAuth app, whereas
11146
+ * object-store and inference connections carry their own credentials and are
11147
+ * always available.
11148
+ */
11149
+ ConnectorCatalog: {
11150
+ /** @description Availability of each OAuth file-service provider. */
11151
+ fileServices: components["schemas"]["FileProviders"];
11152
+ /**
11153
+ * @description Whether inference connections can be created. Currently always `true`, for
11154
+ * the same reason as object stores.
11155
+ */
11156
+ inference: boolean;
11157
+ /**
11158
+ * @description Whether object-store connections can be created. Currently always `true` —
11159
+ * they carry their own credentials, so nothing gates them server-side — but
11160
+ * clients should read the field rather than assume it.
11161
+ */
11162
+ objectStores: boolean;
11163
+ };
10705
11164
  /**
10706
11165
  * @description A competing detection of a different label over the same span was left
10707
11166
  * *unresolved*: both entities survive, flagged for a human. Recorded on each
@@ -11365,6 +11824,18 @@ interface components {
11365
11824
  /** @description Validation error details for field-specific errors */
11366
11825
  validation?: components["schemas"]["ValidationErrorDetail"][];
11367
11826
  };
11827
+ /**
11828
+ * @description Request payload to export a caller-selected set of workspace files to a
11829
+ * connection. Each is written as a new provider file, never overwriting a
11830
+ * source. Mirrors [`ImportFiles`] on the export side.
11831
+ */
11832
+ ExportFiles: {
11833
+ /**
11834
+ * @description The workspace files to export, by id. Files already exported to the
11835
+ * connection are exported again (a fresh copy).
11836
+ */
11837
+ fileIds: string[];
11838
+ };
11368
11839
  /** @description The file format an export is rendered as. */
11369
11840
  ExportFormat: "csv" | "json";
11370
11841
  /**
@@ -11462,6 +11933,39 @@ interface components {
11462
11933
  */
11463
11934
  total?: number;
11464
11935
  };
11936
+ /**
11937
+ * @description Per-provider availability for the OAuth file services. Each field is `true`
11938
+ * only when that provider's OAuth app is configured on the server.
11939
+ */
11940
+ FileProviders: {
11941
+ /**
11942
+ * @description Whether Box can be connected. (`box` is a Rust keyword, hence the field
11943
+ * name; the wire name is `box`.)
11944
+ */
11945
+ box: boolean;
11946
+ /** @description Whether Dropbox can be connected. */
11947
+ dropbox: boolean;
11948
+ /** @description Whether Google Drive can be connected. */
11949
+ googleDrive: boolean;
11950
+ /** @description Whether OneDrive can be connected. */
11951
+ oneDrive: boolean;
11952
+ };
11953
+ /**
11954
+ * @description A fully-typed cloud file-service connection configuration: a provider and its
11955
+ * settings. Serialized (flat: `{ "provider": ..., "tokens": ..., "root": ... }`)
11956
+ * only to persist the config encrypted at rest, never returned in API responses.
11957
+ */
11958
+ FileServiceConfig: {
11959
+ /** @description Which provider backs this connection. */
11960
+ provider: components["schemas"]["Provider"];
11961
+ /**
11962
+ * @description The folder (id or path) new exports are written into; `None` uses the
11963
+ * account root.
11964
+ */
11965
+ root?: string;
11966
+ /** @description The OAuth token set for this connection. */
11967
+ tokens: components["schemas"]["OAuthTokens"];
11968
+ };
11465
11969
  /**
11466
11970
  * @description A supported file extension.
11467
11971
  * @enum {string}
@@ -12134,6 +12638,14 @@ interface components {
12134
12638
  /** @description The rationale, when one was given. */
12135
12639
  reason?: string;
12136
12640
  };
12641
+ /**
12642
+ * @description Request payload to import a caller-selected set of files from a file-service
12643
+ * connection (the provider picker returns id + name per file).
12644
+ */
12645
+ ImportFiles: {
12646
+ /** @description The files to import. Already-imported files are skipped. */
12647
+ files: components["schemas"]["PickedFile"][];
12648
+ };
12137
12649
  /**
12138
12650
  * @description Workspace invite with complete information.
12139
12651
  *
@@ -12608,36 +13120,21 @@ interface components {
12608
13120
  * @description A fully-typed LLM inference connection configuration.
12609
13121
  *
12610
13122
  * The `provider` tag selects the variant and thereby the credential shape, so
12611
- * an OpenAI connection cannot carry Anthropic credentials. Serialization exists
12612
- * only to persist the config encrypted at rest, never to return it in API
12613
- * responses.
13123
+ * an OpenAI connection cannot carry Anthropic credentials. The key-bearing
13124
+ * variants hold an [`AuthenticatedProvider`], which masks the key in `Debug`;
13125
+ * serialization exists only to persist the config encrypted at rest, never to
13126
+ * return it in API responses.
12614
13127
  */
12615
- LlmConfig: {
12616
- /** @description Override the API base URL (for Azure OpenAI or a proxy). Optional. */
12617
- baseUrl?: string;
12618
- /** @description OpenAI credentials. */
12619
- credentials: components["schemas"]["OpenAiCredentials"];
12620
- /** @description Default model to use when a request does not specify one. Optional. */
12621
- defaultModel?: string;
13128
+ LlmConfig: ({
12622
13129
  /** @constant */
12623
13130
  provider: "openai";
12624
- } | {
12625
- /** @description Base URL of the Ollama server (e.g. `http://localhost:11434`). */
12626
- baseUrl: string;
12627
- /** @description Default model to use when a request does not specify one. Optional. */
12628
- defaultModel?: string;
13131
+ } & components["schemas"]["AuthenticatedProvider"]) | ({
12629
13132
  /** @constant */
12630
13133
  provider: "ollama";
12631
- } | {
12632
- /** @description Override the API base URL. Optional. */
12633
- baseUrl?: string;
12634
- /** @description Anthropic credentials. */
12635
- credentials: components["schemas"]["AnthropicCredentials"];
12636
- /** @description Default model to use when a request does not specify one. Optional. */
12637
- defaultModel?: string;
13134
+ } & components["schemas"]["UnauthenticatedProvider"]) | ({
12638
13135
  /** @constant */
12639
13136
  provider: "anthropic";
12640
- };
13137
+ } & components["schemas"]["AuthenticatedProvider"]);
12641
13138
  /**
12642
13139
  * @description A value localized per [`LanguageTag`], with an English-first fallback.
12643
13140
  *
@@ -12938,10 +13435,38 @@ interface components {
12938
13435
  /** @description Whether to send email notifications. */
12939
13436
  notifyViaEmail: boolean;
12940
13437
  };
12941
- /** @description OpenAI API credentials. */
12942
- OpenAiCredentials: {
12943
- /** @description OpenAI API key. */
12944
- apiKey: string;
13438
+ /**
13439
+ * @description Path parameters for the OAuth start endpoint: which cloud file provider to
13440
+ * begin authorizing. The provider is the crate's [`Provider`], so the API and
13441
+ * stored config name each provider identically.
13442
+ */
13443
+ OAuthStartPathParams: {
13444
+ /** @description The cloud file provider to connect. */
13445
+ provider: components["schemas"]["Provider"];
13446
+ };
13447
+ /** @description The response to a successful authorization start: where to send the user. */
13448
+ OAuthStartResponse: {
13449
+ /** @description The provider authorize URL the client should redirect the user to. */
13450
+ authorizeUrl: string;
13451
+ };
13452
+ /**
13453
+ * @description A persisted OAuth token set. Stored encrypted with the rest of a
13454
+ * connection's config; never returned in API responses. The tokens are masked
13455
+ * in [`Debug`] so a connection config's derived `Debug` cannot leak them.
13456
+ */
13457
+ OAuthTokens: {
13458
+ /** @description The current access token, sent as a bearer credential. */
13459
+ access_token: string;
13460
+ /**
13461
+ * Format: int64
13462
+ * @description Unix seconds at which the access token expires, if known.
13463
+ */
13464
+ expires_at?: number;
13465
+ /**
13466
+ * @description The refresh token, used to mint a new access token when it expires.
13467
+ * Providers may omit it on refresh, so it is retained across refreshes.
13468
+ */
13469
+ refresh_token?: string;
12945
13470
  };
12946
13471
  /**
12947
13472
  * @description Identifies a redaction operator, for the redaction audit a higher
@@ -13035,6 +13560,13 @@ interface components {
13035
13560
  * [`Engine::with_key_provider`]: https://docs.rs/elide-pipeline/latest/elide_pipeline/struct.Engine.html
13036
13561
  */
13037
13562
  PciPanRender: "truncate" | "truncate_last_four" | "hmac_sha256" | "hmac_sha512";
13563
+ /** @description One file the user selected in the provider's picker. */
13564
+ PickedFile: {
13565
+ /** @description The provider's file identifier (used to fetch the bytes). */
13566
+ id: string;
13567
+ /** @description The file's display name, as the picker reported it. */
13568
+ name: string;
13569
+ };
13038
13570
  /** @description Pipeline response. */
13039
13571
  Pipeline: {
13040
13572
  /**
@@ -13595,6 +14127,13 @@ interface components {
13595
14127
  /** @description Negated predicate. */
13596
14128
  not: components["schemas"]["Predicate"];
13597
14129
  };
14130
+ /**
14131
+ * @description A supported cloud file-service provider.
14132
+ *
14133
+ * The serialized form (snake_case) is the `provider` tag stored on a connection
14134
+ * and used in the API, so every provider name lives in exactly one place.
14135
+ */
14136
+ Provider: "google_drive" | "dropbox" | "one_drive" | "box";
13598
14137
  /**
13599
14138
  * @description The capability category of a connection's provider.
13600
14139
  *
@@ -13604,7 +14143,7 @@ interface components {
13604
14143
  * connection be found by what it can do — e.g. a workspace's language model —
13605
14144
  * without decrypting its config.
13606
14145
  */
13607
- ProviderType: "object_store" | "language_model";
14146
+ ProviderType: "object_store" | "language_model" | "file_service";
13608
14147
  /**
13609
14148
  * @description Public view of an account, returned when looking up someone other than the
13610
14149
  * authenticated caller. Carries only the fields safe to share with a
@@ -14186,6 +14725,16 @@ interface components {
14186
14725
  */
14187
14726
  source: components["schemas"]["SourceRef"][];
14188
14727
  };
14728
+ /** @description Request payload for starting a cloud file-service OAuth authorization. */
14729
+ StartFileServiceOAuth: {
14730
+ /** @description Human-readable name for the connection to be created on success. */
14731
+ displayName: string;
14732
+ /**
14733
+ * @description Where to scope the sync: a folder id (Drive, OneDrive, Box) or a folder
14734
+ * path (Dropbox). Omit to use the account root.
14735
+ */
14736
+ root?: string;
14737
+ };
14189
14738
  /** @description Storage totals across a workspace's live files. */
14190
14739
  StorageAnalytics: {
14191
14740
  /**
@@ -14271,24 +14820,6 @@ interface components {
14271
14820
  /** @description The rationale, when one was given. */
14272
14821
  reason?: string;
14273
14822
  };
14274
- /**
14275
- * @description Request payload to trigger a connection sync.
14276
- *
14277
- * The direction is determined by the connection's configured `sync_mode`.
14278
- * - Import connections need no body: the sync fetches every not-yet-imported
14279
- * object under the connection's root path.
14280
- * - Export connections push one workspace file (`file_id`) to one object
14281
- * `key`; both are required for export and ignored for import.
14282
- */
14283
- SyncConnection: {
14284
- /**
14285
- * Format: uuid
14286
- * @description The workspace file to export (export connections only).
14287
- */
14288
- fileId?: string;
14289
- /** @description The destination object key for an export, relative to the root path. */
14290
- key?: string;
14291
- };
14292
14823
  /**
14293
14824
  * @description What an import does with a file whose source object no longer exists.
14294
14825
  *
@@ -15771,6 +16302,16 @@ interface components {
15771
16302
  */
15772
16303
  text: string;
15773
16304
  };
16305
+ /**
16306
+ * @description Configuration for a provider reached without an API key (Ollama), addressed
16307
+ * by a caller-supplied base URL. Carries no secret, so it derives [`Debug`].
16308
+ */
16309
+ UnauthenticatedProvider: {
16310
+ /** @description Base URL of the server (e.g. `http://localhost:11434`). */
16311
+ baseUrl: string;
16312
+ /** @description Default model to use when a request does not specify one. Optional. */
16313
+ defaultModel?: string;
16314
+ };
15774
16315
  /**
15775
16316
  * @description An account's current unread-notification count, broadcast on the account's
15776
16317
  * core-NATS unread subject.
@@ -16280,7 +16821,7 @@ interface components {
16280
16821
  * This enumeration corresponds to the `WORKSPACE_ROLE` PostgreSQL enum and provides
16281
16822
  * hierarchical access control for workspace members with clearly defined capabilities.
16282
16823
  */
16283
- WorkspaceRole: "owner" | "admin" | "member" | "guest";
16824
+ WorkspaceRole: "owner" | "admin" | "editor" | "reviewer";
16284
16825
  /** @description Typed workspace settings, the JSON stored in the `workspaces.settings` column. */
16285
16826
  WorkspaceSettings: {
16286
16827
  /**
@@ -16512,6 +17053,9 @@ type LabelCatalog = Schemas$16["LabelCatalog"];
16512
17053
  /** The engine's registered recognizers, grouped into NER and LLM. */
16513
17054
  type RecognizerCatalog = Schemas$16["RecognizerCatalog"];
16514
17055
  type RegisteredRecognizer = Schemas$16["RegisteredRecognizer"];
17056
+ /** Which connector families and providers this deployment can create. */
17057
+ type ConnectorCatalog = Schemas$16["ConnectorCatalog"];
17058
+ type FileProviders = Schemas$16["FileProviders"];
16515
17059
  //#endregion
16516
17060
  //#region src/datatypes/chat.d.ts
16517
17061
  type Schemas$15 = components["schemas"];
@@ -16531,10 +17075,12 @@ type CreateConnection = Schemas$14["CreateConnection"];
16531
17075
  type UpdateConnection = Schemas$14["UpdateConnection"];
16532
17076
  type ConnectionsQuery = Schemas$14["ConnectionsQuery"];
16533
17077
  type ConnectionPage = Schemas$14["ConnectionPage"];
16534
- type SyncConnection = Schemas$14["SyncConnection"];
16535
17078
  type ConnectionSync = Schemas$14["ConnectionSync"];
16536
17079
  type ConnectionSyncPage = Schemas$14["ConnectionSyncPage"];
16537
17080
  type ConnectionVerification = Schemas$14["ConnectionVerification"];
17081
+ type ImportFiles = Schemas$14["ImportFiles"];
17082
+ type PickedFile = Schemas$14["PickedFile"];
17083
+ type ExportFiles = Schemas$14["ExportFiles"];
16538
17084
  type SyncMode = Schemas$14["SyncMode"];
16539
17085
  type SyncStatus = Schemas$14["SyncStatus"];
16540
17086
  type SyncTriggerType = Schemas$14["SyncTriggerType"];
@@ -16545,8 +17091,13 @@ type S3Credentials = Schemas$14["S3Credentials"];
16545
17091
  type AzureCredentials = Schemas$14["AzureCredentials"];
16546
17092
  type GcsCredentials = Schemas$14["GcsCredentials"];
16547
17093
  type LlmConfig = Schemas$14["LlmConfig"];
16548
- type AnthropicCredentials = Schemas$14["AnthropicCredentials"];
16549
- type OpenAiCredentials = Schemas$14["OpenAiCredentials"];
17094
+ type AuthenticatedProvider = Schemas$14["AuthenticatedProvider"];
17095
+ type UnauthenticatedProvider = Schemas$14["UnauthenticatedProvider"];
17096
+ type Provider = Schemas$14["Provider"];
17097
+ type FileServiceConfig = Schemas$14["FileServiceConfig"];
17098
+ type OAuthTokens = Schemas$14["OAuthTokens"];
17099
+ type StartFileServiceOAuth = Schemas$14["StartFileServiceOAuth"];
17100
+ type OAuthStartResponse = Schemas$14["OAuthStartResponse"];
16550
17101
  type SyncSchedule = Schemas$14["SyncSchedule"];
16551
17102
  type SyncScheduleInput = Schemas$14["SyncScheduleInput"];
16552
17103
  //#endregion
@@ -16731,5 +17282,5 @@ type Retention = Schemas["Retention"];
16731
17282
  type RetentionSettings = Schemas["RetentionSettings"];
16732
17283
  type RetentionOverride = Schemas["RetentionOverride"];
16733
17284
  //#endregion
16734
- export { PolicyRule as $, Layout as $i, SyncStatus as $n, ImageEntity as $r, ReplyInvite as $t, Color as A, ActivityExportOptions as Aa, TabularLocation as Ai, RedactionResultPage as An, Audit as Ar, NotificationPage as At, Label as B, PipelineActivityParams as Ba, TextCoord as Bi, ConnectionVerification as Bn, Deduplication as Br, MemberSortField as Bt, Language as C, StorageKindEntry as Ca, TabularAdd as Ci, DetectionPage as Cn, AudioHint as Cr, DetectionCompletedParams as Ct, ScopeMetadata as D, UsageReport as Da, TabularEdit as Di, RedactDetection as Dn, AudioPattern as Dr, MemberJoinedParams as Dt, Languages as E, UsageAnalytics as Ea, TabularAuditLog as Ei, PipelineDetectionsQuery as En, AudioModel as Er, MemberInvitedParams as Et, GdprArticle9Treatment as F, ConnectionActivityParams as Fa, TabularRetag as Fi, ConnectionConfig as Fn, CitedAttribution as Fr, UnreadStatus as Ft, LanguageTag as G, Account as Ga, TextLocation as Gi, OpenAiCredentials as Gn, EntityCoRef as Gr, InviteCode as Gt, LabelLocale as H, RedactionActivityParams as Ha, TextEdit as Hi, CreateConnection as Hn, DocumentContext as Hr, CreateInvite as Ht, GdprSensitiveScope as I, DetectionActivityParams as Ia, TextAdd as Ii, ConnectionId as In, CodecParams as Ir, UpdateNotificationSettings as It, PciDssPart as J, PasswordChange as Ja, TextPattern as Ji, SyncConnection as Jn, ImageAuditEvent as Jr, InvitePreview as Jt, LocalizedText as K, AccountRef as Ka, TextManual as Ki, S3Credentials as Kn, FreeformAttribution as Kr, InviteExpiration as Kt, HipaaAccountNumbers as L, FileActivityParams as La, TextAuditEvent as Li, ConnectionPage as Ln, Conflict as Lr, ListMembers as Lt, CreatePolicy as M, ActivityPage as Ma, TabularModel as Mi, AnthropicCredentials as Mn, BoundingBox as Mr, NotificationSettings as Mt, DateGranularity as N, ActivityPayload as Na, TabularPattern as Ni, AzureCredentials as Nn, Calibration as Nr, RedactionCreatedParams as Nt, AudioRedaction as O, WorkspaceAnalytics as Oa, TabularEntity as Oi, RedactionId as On, AudioRefinement as Or, Notification as Ot, DateStyle as P, ActivityType as Pa, TabularRefinement as Pi, Connection as Pn, Category as Pr, UnreadCountEvent as Pt, PolicyDraft as Q, ArtifactSet as Qi, SyncScheduleInput as Qn, ImageEdit as Qr, ListInvites as Qt, HipaaDeidMethod as R, InviteActivityParams as Ra, TextAuditKind as Ri, ConnectionSync as Rn, Contested as Rr, Member as Rt, CountryCode as S, StorageAnalytics as Sa, Suppress as Si, DetectionMetadata as Sn, AudioEntity as Sr, ConnectionSyncFailedParams as St, LanguageSpan as T, Usage as Ta, TabularAuditKind as Ti, DetectionStatusEvent as Tn, AudioManual as Tr, MarkedReadStatus as Tt, LabelRef as U, WebhookActivityParams as Ua, TextEntity as Ui, GcsCredentials as Un, Dpi as Ur, GenerateInviteCode as Ut, LabelEntry as V, PolicyActivityParams as Va, TextData as Vi, ConnectionsQuery as Vn, Dimensions as Vr, UpdateMember as Vt, LabelScope as W, WorkspaceActivityParams as Wa, TextHint as Wi, LlmConfig as Wn, EditSet as Wr, Invite as Wt, Policy as X, UpdateAccount as Xa, TextRetag as Xi, SyncMode as Xn, ImageAuditLog as Xr, InviteSortField as Xt, PciPanRender as Y, PublicAccount as Ya, TextRefinement as Yi, SyncDeletionPolicy as Yn, ImageAuditKind as Yr, InviteSent as Yt, PolicyDefinition as Z, paths as Za, TimeSpan as Zi, SyncSchedule as Zn, ImageData as Zr, InviteStatus as Zt, WebhookId as _, DetectionTimeSeries as _a, Report as _i, ErrorResponse as _n, AudioAuditEvent as _r, PipelineSummaryPage as _t, RetentionSettings as a, TranscriptWord as aa, ImageRefinement as ai, DeletedFiles as an, ChatSessionPage as ar, TabularRedaction as at, WebhookStatus as b, ProviderType as ba, SourceRef as bi, Detection as bn, AudioData as br, CursorPagination as bt, WorkspacePage as c, ApiTokenPage as ca, ManualIntent as ci, FileKind as cn, SendChatMessage as cr, TextRedaction as ct, CreateWebhook as d, CreateApiToken as da, PatternEvent as di, ListFiles as dn, RegisteredRecognizer as dr, CreatePipeline as dt, LayoutBlock as ea, ImageHint as ei, SortOrder as en, SyncTriggerType as er, PolicySummary as et, TestWebhook as f, TokenExpiration as fa, Point as fi, ModalityToken as fn, AuthToken as fr, Pipeline as ft, WebhookEvent as g, DetectionStatusEntry as ga, Redaction as gi, ExportQuery as gn, AudioAdd as gr, PipelineSummary as gt, WebhookCreated as h, DetectionDayEntry as ha, RasterMode as hi, ExportFormat as hn, Attribution as hr, PipelineStatus as ht, RetentionOverride as i, TranscriptSegment as ia, ImagePattern as ii, DeleteFiles as in, ChatSession as ir, Sha2Algorithm as it, ConfidenceThreshold as j, ActivityFilterQuery as ja, TabularManual as ji, WorkspaceDetectionsQuery as jn, AuditHash as jr, NotificationPayload as jt, ClampBucket as k, Activity as ka, TabularHint as ki, RedactionResult as kn, AudioRetag as kr, NotificationEvent as kt, WorkspaceRole as l, ApiTokenType as la, ModelEvent as li, FilePage as ln, LabelCatalog as lr, UpdatePolicy as lt, Webhook as m, DetectionAnalytics as ma, RangeOfUint as mi, DateWindow as mn, Signup as mr, PipelineFilter as mt, RasterPolicy as n, Token as na, ImageManual as ni, Health as nn, ChatMessage as nr, PolicyTemplate as nt, UpdateWorkspace as o, Transcription as oa, ImageRetag as oi, File as on, ChatToken as or, TemplateOrigin as ot, UpdateWebhook as p, UpdateApiToken as pa, Polygon as pi, UpdateFile as pn, Login as pr, PipelineDefinition as pt, ModalityRedactions as q, Handle as qa, TextModel as qi, StorageConfig as qn, ImageAdd as qr, InvitePage as qt, Retention as r, Tokens as ra, ImageModel as ri, HealthStatus as rn, ChatRole as rr, Predicate as rt, Workspace as s, ApiToken as sa, LeakProfile as si, FileHash as sn, CreateChatSession as sr, TerminalFallback as st, CreateWorkspace as t, LayoutWord as ta, ImageLocation as ti, ComponentHealth as tn, UpdateConnection as tr, PolicySummaryPage as tt, WorkspaceSettings as u, ApiTokenWithJWT as ua, OperatorId as ui, FormatToken as un, RecognizerCatalog as ur, Waveform as ut, WebhookPage as v, ModelUsage as va, RuleMatch as vi, ValidationErrorDetail as vn, AudioAuditKind as vr, PipelineTriggerType as vt, LanguageProvenance as w, TokenCounts as wa, TabularAuditEvent as wi, DetectionStatus as wn, AudioLocation as wr, DetectionFailedParams as wt, Confidence as x, RecognizerId as xa, SourceSpan as xi, DetectionId as xn, AudioEdit as xr, ConnectionSyncCompletedParams as xt, WebhookResult as y, ModelUsageEntry as ya, Selection as yi, CreateDetection as yn, AudioAuditLog as yr, UpdatePipeline as yt, ImageRedaction as z, MemberActivityParams as za, TextAuditLog as zi, ConnectionSyncPage as zn, DecodedSpan as zr, MemberPage as zt };
16735
- //# sourceMappingURL=index-DiwyTpoq.d.ts.map
17285
+ export { PolicyRule as $, WorkspaceActivityParams as $a, TextHint as $i, StartFileServiceOAuth as $n, EditSet as $r, ReplyInvite as $t, Color as A, RecognizerId as Aa, SourceSpan as Ai, RedactionResultPage as An, AudioEdit as Ar, NotificationPage as At, Label as B, ActivityFilterQuery as Ba, TabularManual as Bi, ConnectionVerification as Bn, AuditHash as Br, MemberSortField as Bt, Language as C, DetectionAnalytics as Ca, RangeOfUint as Ci, DetectionPage as Cn, Signup as Cr, DetectionCompletedParams as Ct, ScopeMetadata as D, ModelUsage as Da, RuleMatch as Di, RedactDetection as Dn, AudioAuditKind as Dr, MemberJoinedParams as Dt, Languages as E, DetectionTimeSeries as Ea, Report as Ei, PipelineDetectionsQuery as En, AudioAuditEvent as Er, MemberInvitedParams as Et, GdprArticle9Treatment as F, UsageAnalytics as Fa, TabularAuditLog as Fi, ConnectionConfig as Fn, AudioModel as Fr, UnreadStatus as Ft, LanguageTag as G, DetectionActivityParams as Ga, TextAdd as Gi, GcsCredentials as Gn, CodecParams as Gr, InviteCode as Gt, LabelLocale as H, ActivityPayload as Ha, TabularPattern as Hi, CreateConnection as Hn, Calibration as Hr, CreateInvite as Ht, GdprSensitiveScope as I, UsageReport as Ia, TabularEdit as Ii, ConnectionId as In, AudioPattern as Ir, UpdateNotificationSettings as It, PciDssPart as J, MemberActivityParams as Ja, TextAuditLog as Ji, OAuthStartResponse as Jn, DecodedSpan as Jr, InvitePreview as Jt, LocalizedText as K, FileActivityParams as Ka, TextAuditEvent as Ki, ImportFiles as Kn, Conflict as Kr, InviteExpiration as Kt, HipaaAccountNumbers as L, WorkspaceAnalytics as La, TabularEntity as Li, ConnectionPage as Ln, AudioRefinement as Lr, ListMembers as Lt, CreatePolicy as M, StorageKindEntry as Ma, TabularAdd as Mi, AuthenticatedProvider as Mn, AudioHint as Mr, NotificationSettings as Mt, DateGranularity as N, TokenCounts as Na, TabularAuditEvent as Ni, AzureCredentials as Nn, AudioLocation as Nr, RedactionCreatedParams as Nt, AudioRedaction as O, ModelUsageEntry as Oa, Selection as Oi, RedactionId as On, AudioAuditLog as Or, Notification as Ot, DateStyle as P, Usage as Pa, TabularAuditKind as Pi, Connection as Pn, AudioManual as Pr, UnreadCountEvent as Pt, PolicyDraft as Q, WebhookActivityParams as Qa, TextEntity as Qi, S3Credentials as Qn, Dpi as Qr, ListInvites as Qt, HipaaDeidMethod as R, Activity as Ra, TabularHint as Ri, ConnectionSync as Rn, AudioRetag as Rr, Member as Rt, CountryCode as S, UpdateApiToken as Sa, Polygon as Si, DetectionMetadata as Sn, Login as Sr, ConnectionSyncFailedParams as St, LanguageSpan as T, DetectionStatusEntry as Ta, Redaction as Ti, DetectionStatusEvent as Tn, AudioAdd as Tr, MarkedReadStatus as Tt, LabelRef as U, ActivityType as Ua, TabularRefinement as Ui, ExportFiles as Un, Category as Ur, GenerateInviteCode as Ut, LabelEntry as V, ActivityPage as Va, TabularModel as Vi, ConnectionsQuery as Vn, BoundingBox as Vr, UpdateMember as Vt, LabelScope as W, ConnectionActivityParams as Wa, TabularRetag as Wi, FileServiceConfig as Wn, CitedAttribution as Wr, Invite as Wt, Policy as X, PolicyActivityParams as Xa, TextData as Xi, PickedFile as Xn, Dimensions as Xr, InviteSortField as Xt, PciPanRender as Y, PipelineActivityParams as Ya, TextCoord as Yi, OAuthTokens as Yn, Deduplication as Yr, InviteSent as Yt, PolicyDefinition as Z, RedactionActivityParams as Za, TextEdit as Zi, Provider as Zn, DocumentContext as Zr, InviteStatus as Zt, WebhookId as _, ApiTokenPage as _a, ManualIntent as _i, ErrorResponse as _n, FileProviders as _r, PipelineSummaryPage as _t, RetentionSettings as a, TextRetag as aa, ImageAuditLog as ai, DeletedFiles as an, UpdateAccount as ao, SyncStatus as ar, TabularRedaction as at, WebhookStatus as b, CreateApiToken as ba, PatternEvent as bi, Detection as bn, RegisteredRecognizer as br, CursorPagination as bt, WorkspacePage as c, Layout as ca, ImageEntity as ci, FileKind as cn, UpdateConnection as cr, TextRedaction as ct, CreateWebhook as d, Token as da, ImageManual as di, ListFiles as dn, ChatSession as dr, CreatePipeline as dt, TextLocation as ea, EntityCoRef as ei, SortOrder as en, Account as eo, StorageConfig as er, PolicySummary as et, TestWebhook as f, Tokens as fa, ImageModel as fi, ModalityToken as fn, ChatSessionPage as fr, Pipeline as ft, WebhookEvent as g, ApiToken as ga, LeakProfile as gi, ExportQuery as gn, ConnectorCatalog as gr, PipelineSummary as gt, WebhookCreated as h, Transcription as ha, ImageRetag as hi, ExportFormat as hn, SendChatMessage as hr, PipelineStatus as ht, RetentionOverride as i, TextRefinement as ia, ImageAuditKind as ii, DeleteFiles as in, PublicAccount as io, SyncScheduleInput as ir, Sha2Algorithm as it, ConfidenceThreshold as j, StorageAnalytics as ja, Suppress as ji, WorkspaceDetectionsQuery as jn, AudioEntity as jr, NotificationPayload as jt, ClampBucket as k, ProviderType as ka, SourceRef as ki, RedactionResult as kn, AudioData as kr, NotificationEvent as kt, WorkspaceRole as l, LayoutBlock as la, ImageHint as li, FilePage as ln, ChatMessage as lr, UpdatePolicy as lt, Webhook as m, TranscriptWord as ma, ImageRefinement as mi, DateWindow as mn, CreateChatSession as mr, PipelineFilter as mt, RasterPolicy as n, TextModel as na, ImageAdd as ni, Health as nn, Handle as no, SyncMode as nr, PolicyTemplate as nt, UpdateWorkspace as o, TimeSpan as oa, ImageData as oi, File as on, paths as oo, SyncTriggerType as or, TemplateOrigin as ot, UpdateWebhook as p, TranscriptSegment as pa, ImagePattern as pi, UpdateFile as pn, ChatToken as pr, PipelineDefinition as pt, ModalityRedactions as q, InviteActivityParams as qa, TextAuditKind as qi, LlmConfig as qn, Contested as qr, InvitePage as qt, Retention as r, TextPattern as ra, ImageAuditEvent as ri, HealthStatus as rn, PasswordChange as ro, SyncSchedule as rr, Predicate as rt, Workspace as s, ArtifactSet as sa, ImageEdit as si, FileHash as sn, UnauthenticatedProvider as sr, TerminalFallback as st, CreateWorkspace as t, TextManual as ta, FreeformAttribution as ti, ComponentHealth as tn, AccountRef as to, SyncDeletionPolicy as tr, PolicySummaryPage as tt, WorkspaceSettings as u, LayoutWord as ua, ImageLocation as ui, FormatToken as un, ChatRole as ur, Waveform as ut, WebhookPage as v, ApiTokenType as va, ModelEvent as vi, ValidationErrorDetail as vn, LabelCatalog as vr, PipelineTriggerType as vt, LanguageProvenance as w, DetectionDayEntry as wa, RasterMode as wi, DetectionStatus as wn, Attribution as wr, DetectionFailedParams as wt, Confidence as x, TokenExpiration as xa, Point as xi, DetectionId as xn, AuthToken as xr, ConnectionSyncCompletedParams as xt, WebhookResult as y, ApiTokenWithJWT as ya, OperatorId as yi, CreateDetection as yn, RecognizerCatalog as yr, UpdatePipeline as yt, ImageRedaction as z, ActivityExportOptions as za, TabularLocation as zi, ConnectionSyncPage as zn, Audit as zr, MemberPage as zt };
17286
+ //# sourceMappingURL=index-kr36ZsdV.d.ts.map