@alvera-ai/platform-sdk 0.10.0-rc.13 → 0.10.0-rc.14

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.
@@ -66,7 +66,7 @@ name: 'alvera_custom_contact_us_submissions'
66
66
 
67
67
  The `name` is what every downstream resource references —
68
68
  `.get(name)`, `generic_table_id` foreign keys via the resolved
69
- row, `datasets.metadata(tenantSlug, datalakeSlug, 'generic_table', { genericTableId })`,
69
+ row, `datasets.metadataDetails(tenantSlug, datalakeSlug, 'generic_table', { genericTableId })`,
70
70
  etc. Never pre-compute `name` client-side; read it back from
71
71
  the create response. A server-side slugifier change would flip
72
72
  every downstream binding, so specs assert the derived `name`
@@ -278,10 +278,10 @@ poll above.
278
278
  tables expose `name`)
279
279
  ```
280
280
 
281
- Plus the polymorphic dataset surface for catalog markdown:
281
+ Plus the polymorphic dataset surface for per-table markdown:
282
282
 
283
283
  ```typescript
284
- const { data: md } = await api.datasets.metadata(
284
+ const { data: md } = await api.datasets.metadataDetails(
285
285
  tenantSlug,
286
286
  datalakeSlug,
287
287
  'generic_table',
@@ -290,6 +290,11 @@ const { data: md } = await api.datasets.metadata(
290
290
  // md: string — agent-facing markdown describing the table's schema
291
291
  ```
292
292
 
293
+ For the whole-domain catalog (every system + custom dataset type
294
+ registered to this datalake) use the sibling
295
+ `api.datasets.metadata(tenantSlug, datalakeSlug)` — same shape as
296
+ `tools.metadata` / `dataSources.metadata`.
297
+
293
298
  See `datalakes.md` §5 `.systemDatasets` for the system-dataset
294
299
  sibling of this verb; the `'generic_table'` kind is the entry
295
300
  point for custom-dataset metadata.
@@ -567,8 +567,9 @@ operator-defined generic tables** — those live under
567
567
  `api.genericTables.list(...)`. The
568
568
  literal placeholder `"generic_table"` is also absent. Each name
569
569
  can be drilled into via
570
- `api.datasets.metadata(tenantSlug, datalakeSlug, name)` for
571
- agent-facing markdown. Pair `.systemDatasets()` with a
570
+ `api.datasets.metadataDetails(tenantSlug, datalakeSlug, name)` for
571
+ agent-facing markdown, or the whole-domain catalog can be fetched
572
+ in one shot via `api.datasets.metadata(tenantSlug, datalakeSlug)`. Pair `.systemDatasets()` with a
572
573
  `page_size: 1` probe per name as a post-migration smoke (proves
573
574
  each industry-built table is queryable; the post-ready probe
574
575
  code is in §6 Gotcha 3).
@@ -581,7 +582,7 @@ const { data: catalog } = await api.datalakes.systemDatasets(
581
582
  // catalog.datasets: sorted, unique array of industry-built dataset names
582
583
 
583
584
  for (const name of catalog.datasets) {
584
- const { data: md } = await api.datasets.metadata(tenantSlug, datalakeSlug, name)
585
+ const { data: md } = await api.datasets.metadataDetails(tenantSlug, datalakeSlug, name)
585
586
  // md is a string — agent-facing markdown describing the dataset
586
587
  }
587
588
  ```
@@ -0,0 +1,90 @@
1
+ <!-- alvera:doc kind="tool-call-configs" generated-by="mix alvera.dump.static_metadata" -->
2
+
3
+ # Tool Call Configurations
4
+
5
+ Per-invocation invocation-side schemas for Alvera tools. Each section
6
+ documents one variant of `Platform.Tools.ToolCallConfig`, identified
7
+ by its atom and rendered by `ToolCallConfig.metadata_details/2`.
8
+
9
+ <!-- alvera:section kind="tool-call-config" atom="restapi_request" module="Platform.Tools.ToolCallConfig.RESTAPIRequest" -->
10
+
11
+ ## Tool Call Configuration (restapi_request)
12
+
13
+ Fetches data via REST API with pagination support.
14
+
15
+ - **method** (enum: head, get, put, post, delete, patch) — HTTP method
16
+ - **path** (TemplateConfig) — API endpoint path, rendered as Liquid template
17
+ - **body** (TemplateConfig, nullable) — Request body, rendered as Liquid template
18
+ - **params** (TemplateConfig, nullable) — Query parameters, rendered as Liquid template
19
+ - **pagination_context_template** (TemplateConfig) — Pagination control template, must render to JSON with `has_next` boolean field
20
+
21
+ <!-- alvera:section kind="tool-call-config" atom="sql_query" module="Platform.Tools.ToolCallConfig.SQLQuery" -->
22
+
23
+ ## Tool Call Configuration (sql_query)
24
+
25
+ Fetches data via SQL query with Liquid template variables for pagination.
26
+
27
+ - **query** (TemplateConfig) — SQL query template with pagination variables
28
+
29
+ <!-- alvera:section kind="tool-call-config" atom="sftp_request" module="Platform.Tools.ToolCallConfig.SFTPRequest" -->
30
+
31
+ ## Tool Call Configuration (sftp_request)
32
+
33
+ Fetches data from a remote SFTP server.
34
+
35
+ - **path** (string) — Remote file path on SFTP server
36
+ - **content_type** (string) — MIME type of the file
37
+
38
+ <!-- alvera:section kind="tool-call-config" atom="microsoft_share_point_excel_request" module="Platform.Tools.ToolCallConfig.MicrosoftSharePointExcelRequest" -->
39
+
40
+ ## Tool Call Configuration (microsoft_share_point_excel_request)
41
+
42
+ Fetches data from a Microsoft SharePoint drive (Excel files).
43
+
44
+ - **drive_url** (string) — SharePoint drive URL
45
+ - **azure_tenant_id** (string) — Microsoft Azure tenant identifier
46
+ - **sheet_number** (integer) — 0-indexed Excel sheet number
47
+ - **search_params** (string) — Search parameters for locating files
48
+
49
+ <!-- alvera:section kind="tool-call-config" atom="aws_lambda_request" module="Platform.Tools.ToolCallConfig.AWSLambdaRequest" -->
50
+
51
+ ## Tool Call Configuration (aws_lambda_request)
52
+
53
+ Invokes an AWS Lambda function to fetch data.
54
+
55
+ - **payload** (TemplateConfig) — Lambda JSON payload, rendered as Liquid template
56
+ - **timeout_ms** (integer, default: 600000, max: 900000) — Invocation timeout in milliseconds
57
+
58
+ <!-- alvera:section kind="tool-call-config" atom="s3_request" module="Platform.Tools.ToolCallConfig.S3Request" -->
59
+
60
+ ## Tool Call Configuration (s3_request)
61
+
62
+ Fetches data from an S3 bucket.
63
+
64
+ - **file_path** (string) — S3 object key (no `s3://` prefix)
65
+
66
+ <!-- alvera:section kind="tool-call-config" atom="manual_upload" module="Platform.Tools.ToolCallConfig.ManualUpload" -->
67
+
68
+ ## Tool Call Configuration (manual_upload)
69
+
70
+ Manual file upload — data is uploaded directly by the user. No additional configuration fields.
71
+
72
+ <!-- alvera:section kind="tool-call-config" atom="sms_request" module="Platform.Tools.ToolCallConfig.SMSRequest" -->
73
+
74
+ ## Tool Call Configuration (sms_request)
75
+
76
+ Sends an SMS message via the configured SMS provider.
77
+
78
+ - **to** (TemplateConfig) — Recipient phone number in E.164 format, rendered as Liquid template
79
+ - **body** (TemplateConfig) — Message body, rendered as Liquid template
80
+ - **sms_type** (enum: transactional, promotional) — Message classification; defaults to `transactional`
81
+
82
+ <!-- alvera:section kind="tool-call-config" atom="email_request" module="Platform.Tools.ToolCallConfig.EmailRequest" -->
83
+
84
+ ## Tool Call Configuration (email_request)
85
+
86
+ Sends an email message via the configured email provider.
87
+
88
+ - **to** (TemplateConfig) — Recipient email address (RFC 5322), rendered as Liquid template
89
+ - **subject** (TemplateConfig) — Email subject line, rendered as Liquid template
90
+ - **body** (TemplateConfig) — Email body, rendered as Liquid template
package/dist/index.d.mts CHANGED
@@ -5221,7 +5221,12 @@ declare function _buildApi(myClient: Client): {
5221
5221
  request: Request;
5222
5222
  response: Response;
5223
5223
  }>;
5224
- metadata: (tenantSlug: string, datalakeSlug: string, datasetType: string, options?: DatasetMetadataOptions) => Promise<{
5224
+ metadata: (tenantSlug: string, datalakeSlug: string) => Promise<{
5225
+ data: string;
5226
+ request: Request;
5227
+ response: Response;
5228
+ }>;
5229
+ metadataDetails: (tenantSlug: string, datalakeSlug: string, datasetType: string, options?: DatasetMetadataOptions) => Promise<{
5225
5230
  data: string;
5226
5231
  request: Request;
5227
5232
  response: Response;
@@ -27157,8 +27162,19 @@ declare const vPlatformApiDataSourceControllerMetadataPath: v.ObjectSchema<{
27157
27162
  readonly tenant_slug: v.StringSchema<undefined>;
27158
27163
  readonly datalake_slug: v.StringSchema<undefined>;
27159
27164
  }, undefined>;
27165
+ declare const vPlatformApiDataSourceControllerMetadataQuery: v.ObjectSchema<{
27166
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
27167
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
27168
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
27169
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
27170
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
27171
+ readonly field: v.StringSchema<undefined>;
27172
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
27173
+ readonly value: v.UnknownSchema;
27174
+ }, undefined>, undefined>, undefined>;
27175
+ }, undefined>;
27160
27176
  /**
27161
- * Markdown catalog of every data source for this datalake
27177
+ * One markdown page of the data source catalog for this datalake
27162
27178
  */
27163
27179
  declare const vPlatformApiDataSourceControllerMetadataResponse: v.StringSchema<undefined>;
27164
27180
  declare const vPlatformApiToolControllerDeletePath: v.ObjectSchema<{
@@ -29970,7 +29986,15 @@ declare const vPlatformApiInteroperabilityContractControllerMetadataDetailsPath:
29970
29986
  readonly datalake_slug: v.StringSchema<undefined>;
29971
29987
  readonly slug: v.StringSchema<undefined>;
29972
29988
  }, undefined>;
29973
- declare const vPlatformApiInteroperabilityContractControllerMetadataDetailsQuery: v.ObjectSchema<{
29989
+ /**
29990
+ * Markdown with resource field documentation
29991
+ */
29992
+ declare const vPlatformApiInteroperabilityContractControllerMetadataDetailsResponse: v.StringSchema<undefined>;
29993
+ declare const vPlatformApiAgenticWorkflowControllerMetadataPath: v.ObjectSchema<{
29994
+ readonly tenant_slug: v.StringSchema<undefined>;
29995
+ readonly datalake_slug: v.StringSchema<undefined>;
29996
+ }, undefined>;
29997
+ declare const vPlatformApiAgenticWorkflowControllerMetadataQuery: v.ObjectSchema<{
29974
29998
  readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
29975
29999
  readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
29976
30000
  readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -29982,23 +30006,26 @@ declare const vPlatformApiInteroperabilityContractControllerMetadataDetailsQuery
29982
30006
  }, undefined>, undefined>, undefined>;
29983
30007
  }, undefined>;
29984
30008
  /**
29985
- * Markdown with resource field documentation
29986
- */
29987
- declare const vPlatformApiInteroperabilityContractControllerMetadataDetailsResponse: v.StringSchema<undefined>;
29988
- declare const vPlatformApiAgenticWorkflowControllerMetadataPath: v.ObjectSchema<{
29989
- readonly tenant_slug: v.StringSchema<undefined>;
29990
- readonly datalake_slug: v.StringSchema<undefined>;
29991
- }, undefined>;
29992
- /**
29993
- * Markdown catalog of every workflow for this datalake
30009
+ * One markdown page of the workflow catalog for this datalake
29994
30010
  */
29995
30011
  declare const vPlatformApiAgenticWorkflowControllerMetadataResponse: v.StringSchema<undefined>;
29996
30012
  declare const vPlatformApiInteroperabilityContractControllerMetadataPath: v.ObjectSchema<{
29997
30013
  readonly tenant_slug: v.StringSchema<undefined>;
29998
30014
  readonly datalake_slug: v.StringSchema<undefined>;
29999
30015
  }, undefined>;
30016
+ declare const vPlatformApiInteroperabilityContractControllerMetadataQuery: v.ObjectSchema<{
30017
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
30018
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
30019
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
30020
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
30021
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
30022
+ readonly field: v.StringSchema<undefined>;
30023
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
30024
+ readonly value: v.UnknownSchema;
30025
+ }, undefined>, undefined>, undefined>;
30026
+ }, undefined>;
30000
30027
  /**
30001
- * Markdown catalog of every contract for this datalake
30028
+ * One markdown page of the interoperability contract catalog for this datalake
30002
30029
  */
30003
30030
  declare const vPlatformApiInteroperabilityContractControllerMetadataResponse: v.StringSchema<undefined>;
30004
30031
  declare const vPlatformApiAgenticWorkflowOperationsControllerBatchLogShowPath: v.ObjectSchema<{
@@ -36313,8 +36340,19 @@ declare const vPlatformApiToolControllerMetadataPath: v.ObjectSchema<{
36313
36340
  readonly tenant_slug: v.StringSchema<undefined>;
36314
36341
  readonly datalake_slug: v.StringSchema<undefined>;
36315
36342
  }, undefined>;
36343
+ declare const vPlatformApiToolControllerMetadataQuery: v.ObjectSchema<{
36344
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
36345
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
36346
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
36347
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
36348
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
36349
+ readonly field: v.StringSchema<undefined>;
36350
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
36351
+ readonly value: v.UnknownSchema;
36352
+ }, undefined>, undefined>, undefined>;
36353
+ }, undefined>;
36316
36354
  /**
36317
- * Markdown catalog of every tool for this datalake
36355
+ * One markdown page of the tools catalog for this datalake
36318
36356
  */
36319
36357
  declare const vPlatformApiToolControllerMetadataResponse: v.StringSchema<undefined>;
36320
36358
  declare const vPlatformApiDatalakeControllerSystemDatasetsPath: v.ObjectSchema<{
@@ -38433,15 +38471,7 @@ declare const vPlatformApiGenericTableControllerMetadataPath: v.ObjectSchema<{
38433
38471
  readonly tenant_slug: v.StringSchema<undefined>;
38434
38472
  readonly datalake_slug: v.StringSchema<undefined>;
38435
38473
  }, undefined>;
38436
- /**
38437
- * Markdown catalog of every generic table for this datalake
38438
- */
38439
- declare const vPlatformApiGenericTableControllerMetadataResponse: v.StringSchema<undefined>;
38440
- declare const vPlatformApiDatalakeControllerMetadataDetailsPath: v.ObjectSchema<{
38441
- readonly tenant_slug: v.StringSchema<undefined>;
38442
- readonly datalake_slug: v.StringSchema<undefined>;
38443
- }, undefined>;
38444
- declare const vPlatformApiDatalakeControllerMetadataDetailsQuery: v.ObjectSchema<{
38474
+ declare const vPlatformApiGenericTableControllerMetadataQuery: v.ObjectSchema<{
38445
38475
  readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
38446
38476
  readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
38447
38477
  readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -38452,6 +38482,14 @@ declare const vPlatformApiDatalakeControllerMetadataDetailsQuery: v.ObjectSchema
38452
38482
  readonly value: v.UnknownSchema;
38453
38483
  }, undefined>, undefined>, undefined>;
38454
38484
  }, undefined>;
38485
+ /**
38486
+ * One markdown page of the generic table catalog for this datalake
38487
+ */
38488
+ declare const vPlatformApiGenericTableControllerMetadataResponse: v.StringSchema<undefined>;
38489
+ declare const vPlatformApiDatalakeControllerMetadataDetailsPath: v.ObjectSchema<{
38490
+ readonly tenant_slug: v.StringSchema<undefined>;
38491
+ readonly datalake_slug: v.StringSchema<undefined>;
38492
+ }, undefined>;
38455
38493
  /**
38456
38494
  * Markdown document with domain metadata
38457
38495
  */
@@ -38829,8 +38867,19 @@ declare const vPlatformApiActionStatusUpdaterControllerMetadataPath: v.ObjectSch
38829
38867
  readonly tenant_slug: v.StringSchema<undefined>;
38830
38868
  readonly datalake_slug: v.StringSchema<undefined>;
38831
38869
  }, undefined>;
38870
+ declare const vPlatformApiActionStatusUpdaterControllerMetadataQuery: v.ObjectSchema<{
38871
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
38872
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
38873
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
38874
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
38875
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
38876
+ readonly field: v.StringSchema<undefined>;
38877
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
38878
+ readonly value: v.UnknownSchema;
38879
+ }, undefined>, undefined>, undefined>;
38880
+ }, undefined>;
38832
38881
  /**
38833
- * Markdown catalog of every action status updater for this datalake
38882
+ * One markdown page of the action status updater catalog for this datalake
38834
38883
  */
38835
38884
  declare const vPlatformApiActionStatusUpdaterControllerMetadataResponse: v.StringSchema<undefined>;
38836
38885
  /**
@@ -39755,8 +39804,19 @@ declare const vPlatformApiAiAgentControllerMetadataPath: v.ObjectSchema<{
39755
39804
  readonly tenant_slug: v.StringSchema<undefined>;
39756
39805
  readonly datalake_slug: v.StringSchema<undefined>;
39757
39806
  }, undefined>;
39807
+ declare const vPlatformApiAiAgentControllerMetadataQuery: v.ObjectSchema<{
39808
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
39809
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
39810
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
39811
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
39812
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
39813
+ readonly field: v.StringSchema<undefined>;
39814
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
39815
+ readonly value: v.UnknownSchema;
39816
+ }, undefined>, undefined>, undefined>;
39817
+ }, undefined>;
39758
39818
  /**
39759
- * Markdown catalog of every AI agent for this datalake
39819
+ * One markdown page of the AI agent catalog for this datalake
39760
39820
  */
39761
39821
  declare const vPlatformApiAiAgentControllerMetadataResponse: v.StringSchema<undefined>;
39762
39822
  declare const vPlatformApiActionStatusUpdaterControllerIndexPath: v.ObjectSchema<{
@@ -42585,8 +42645,19 @@ declare const vPlatformApiDataActivationClientControllerMetadataPath: v.ObjectSc
42585
42645
  readonly tenant_slug: v.StringSchema<undefined>;
42586
42646
  readonly datalake_slug: v.StringSchema<undefined>;
42587
42647
  }, undefined>;
42648
+ declare const vPlatformApiDataActivationClientControllerMetadataQuery: v.ObjectSchema<{
42649
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
42650
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
42651
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
42652
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
42653
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
42654
+ readonly field: v.StringSchema<undefined>;
42655
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
42656
+ readonly value: v.UnknownSchema;
42657
+ }, undefined>, undefined>, undefined>;
42658
+ }, undefined>;
42588
42659
  /**
42589
- * Markdown catalog of every client for this datalake
42660
+ * One markdown page of the data activation client catalog for this datalake
42590
42661
  */
42591
42662
  declare const vPlatformApiDataActivationClientControllerMetadataResponse: v.StringSchema<undefined>;
42592
42663
  declare const vPlatformApiAgenticWorkflowControllerIndexPath: v.ObjectSchema<{
@@ -46822,8 +46893,19 @@ declare const vPlatformApiConnectedAppMgmtControllerMetadataPath: v.ObjectSchema
46822
46893
  readonly tenant_slug: v.StringSchema<undefined>;
46823
46894
  readonly datalake_slug: v.StringSchema<undefined>;
46824
46895
  }, undefined>;
46896
+ declare const vPlatformApiConnectedAppMgmtControllerMetadataQuery: v.ObjectSchema<{
46897
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
46898
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
46899
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
46900
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
46901
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
46902
+ readonly field: v.StringSchema<undefined>;
46903
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
46904
+ readonly value: v.UnknownSchema;
46905
+ }, undefined>, undefined>, undefined>;
46906
+ }, undefined>;
46825
46907
  /**
46826
- * Markdown catalog of every connected app for this datalake
46908
+ * One markdown page of the connected app catalog for this datalake
46827
46909
  */
46828
46910
  declare const vPlatformApiConnectedAppMgmtControllerMetadataResponse: v.StringSchema<undefined>;
46829
46911
  declare const vPlatformApiDataActivationClientControllerMetadataDetailsPath: v.ObjectSchema<{
@@ -47269,8 +47351,19 @@ declare const vPlatformApiAiAgentControllerMetadataDetailsResponse: v.StringSche
47269
47351
  declare const vPlatformApiDatalakeControllerMetadataPath: v.ObjectSchema<{
47270
47352
  readonly tenant_slug: v.StringSchema<undefined>;
47271
47353
  }, undefined>;
47354
+ declare const vPlatformApiDatalakeControllerMetadataQuery: v.ObjectSchema<{
47355
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
47356
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
47357
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
47358
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
47359
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
47360
+ readonly field: v.StringSchema<undefined>;
47361
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
47362
+ readonly value: v.UnknownSchema;
47363
+ }, undefined>, undefined>, undefined>;
47364
+ }, undefined>;
47272
47365
  /**
47273
- * Markdown overview of every datalake on the tenant
47366
+ * One markdown page of the datalake catalog for this tenant
47274
47367
  */
47275
47368
  declare const vPlatformApiDatalakeControllerMetadataResponse: v.StringSchema<undefined>;
47276
47369
  declare const vPlatformApiActionStatusUpdaterControllerMetadataDetailsPath: v.ObjectSchema<{
@@ -47925,8 +48018,19 @@ declare const vPlatformApiTemplatesControllerMetadataPath: v.ObjectSchema<{
47925
48018
  readonly tenant_slug: v.StringSchema<undefined>;
47926
48019
  readonly datalake_slug: v.StringSchema<undefined>;
47927
48020
  }, undefined>;
48021
+ declare const vPlatformApiTemplatesControllerMetadataQuery: v.ObjectSchema<{
48022
+ readonly page: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
48023
+ readonly page_size: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
48024
+ readonly order_by: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
48025
+ readonly order_directions: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["asc", "desc"], undefined>, undefined>, undefined>;
48026
+ readonly filters: v.NullishSchema<v.ArraySchema<v.ObjectSchema<{
48027
+ readonly field: v.StringSchema<undefined>;
48028
+ readonly op: v.NullishSchema<v.PicklistSchema<["==", "!=", "<", "<=", ">", ">=", "empty", "not_empty", "like", "ilike", "like_and", "like_or", "ilike_and", "ilike_or", "in", "not_in", "contains", "not_contains"], undefined>, undefined>;
48029
+ readonly value: v.UnknownSchema;
48030
+ }, undefined>, undefined>, undefined>;
48031
+ }, undefined>;
47928
48032
  /**
47929
- * Markdown catalog of all in-scope system templates
48033
+ * One markdown page of the system template catalog
47930
48034
  */
47931
48035
  declare const vPlatformApiTemplatesControllerMetadataResponse: v.StringSchema<undefined>;
47932
48036
  declare const vPlatformApiDatasetControllerDatasetMetadataPath: v.ObjectSchema<{
@@ -49555,6 +49659,14 @@ declare const vPlatformApiInteroperabilityContractControllerRunResponse: v.Objec
49555
49659
  readonly stage: v.PicklistSchema<["completed", "filtered"], undefined>;
49556
49660
  readonly transformed: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
49557
49661
  }, undefined>;
49662
+ declare const vPlatformApiDatasetControllerMetadataPath: v.ObjectSchema<{
49663
+ readonly tenant_slug: v.StringSchema<undefined>;
49664
+ readonly datalake_slug: v.StringSchema<undefined>;
49665
+ }, undefined>;
49666
+ /**
49667
+ * Markdown catalog of every dataset type for this datalake's domain
49668
+ */
49669
+ declare const vPlatformApiDatasetControllerMetadataResponse: v.StringSchema<undefined>;
49558
49670
  /**
49559
49671
  * Page resolution request
49560
49672
  */
@@ -49598,5 +49710,5 @@ declare const vPlatformApiConnectedAppControllerResolvePageResponse: v.ObjectSch
49598
49710
  readonly user_agent: v.NullishSchema<v.StringSchema<undefined>, undefined>;
49599
49711
  }, undefined>;
49600
49712
  //#endregion
49601
- export { type ActionStatusUpdaterCloudWatchQueryRequest, type ActionStatusUpdaterResponse, type ActionStatusUpdaterRestCallRequest, ActionType, type AgenticWorkflowListResponse, type AgenticWorkflowRequestWritable, type AgenticWorkflowResponse, type AiAgentResponse, type ApiConfig, type ApiDebugConfig, type BatchLogListResponse, type BatchLogResponse, type ConnectedAppListResponse, type ConnectedAppRequestWritable, type ConnectedAppResponse, type CreateActionStatusUpdaterRequest, type CreateAiAgentRequest, type CreateGenericTableRequest, type CreateSessionParams, DEFAULT_ENVIRONMENT, type DataActivationClientListResponse, type DataActivationClientLogListResponse, type DataActivationClientLogResponse, type DataActivationClientRequestWritable, type DataActivationClientResponse, type DataSourceRequest, type DataSourceRequestWritable, type DataSourceResponse, type DatalakeRequestWritable, type DatalakeResponse, type DatasetMetadataOptions, type DatasetSearchOptions, type DatasetSearchResponse, type DownloadUrlResponse, ENVIRONMENTS, type EnvironmentName, type ExecuteActionRequest, type ExecuteActionResponse, type GenericTableColumn, type GenericTableResponse, type IngestFileRequest, type IngestRequest, type InteroperabilityContractListResponse, type InteroperabilityContractRequestWritable, type InteroperabilityContractResponse, type InteroperabilityRunRequest, type InteroperabilityRunResponse, type MdmVerifyRequest, type MdmVerifyResponse, type PaginationMeta, type PlatformApi, type ResolvePageRequest, type RunManuallyRequestWritable, type RunManuallyResponse, type RunWorkflowRequest, type RunWorkflowResponse, type SessionResponse, type SessionResult, type SyncRoutesResponse, type TemplateConfig, type TenantListResponse, type TenantResponse, ToolIntent, type ToolRequest, type ToolRequestWritable, type ToolResponse, type UpdatePageRequest, type UploadLinkRequest, type UploadLinkResponse, type WorkflowLogListResponse, type WorkflowLogResponse, createIsolatedPlatformApi, createPlatformApi, createSession, createUnvalidatedPlatformApi, revokeSession, vActionAwsLambdaCallRequest, vActionAwsLambdaCallRequestWritable, vActionAwsLambdaCallResponse, vActionAwsLambdaCallResponseWritable, vActionEmailCallRequest, vActionEmailCallRequestWritable, vActionEmailCallResponse, vActionEmailCallResponseWritable, vActionExecutionLogResponse, vActionExecutionLogResponseWritable, vActionManualUploadCallRequest, vActionManualUploadCallResponse, vActionRequest, vActionRequestWritable, vActionResponse, vActionResponseWritable, vActionRestCallRequest, vActionRestCallRequestWritable, vActionRestCallResponse, vActionRestCallResponseWritable, vActionSftpCallRequest, vActionSftpCallRequestWritable, vActionSftpCallResponse, vActionSftpCallResponseWritable, vActionSharePointExcelCallRequest, vActionSharePointExcelCallRequestWritable, vActionSharePointExcelCallResponse, vActionSharePointExcelCallResponseWritable, vActionSmsCallRequest, vActionSmsCallRequestWritable, vActionSmsCallResponse, vActionSmsCallResponseWritable, vActionSqlQueryCallRequest, vActionSqlQueryCallRequestWritable, vActionSqlQueryCallResponse, vActionSqlQueryCallResponseWritable, vActionStatusUpdaterCloudWatchQueryRequest, vActionStatusUpdaterCloudWatchQueryRequestWritable, vActionStatusUpdaterCloudWatchQueryResponse, vActionStatusUpdaterCloudWatchQueryResponseWritable, vActionStatusUpdaterListResponse, vActionStatusUpdaterListResponseWritable, vActionStatusUpdaterRequest, vActionStatusUpdaterRequestWritable, vActionStatusUpdaterResponse, vActionStatusUpdaterResponseWritable, vActionStatusUpdaterRestCallRequest, vActionStatusUpdaterRestCallRequestWritable, vActionStatusUpdaterRestCallResponse, vActionStatusUpdaterRestCallResponseWritable, vActionType, vAgenticWorkflowListResponse, vAgenticWorkflowListResponseWritable, vAgenticWorkflowRequest, vAgenticWorkflowRequestWritable, vAgenticWorkflowResponse, vAgenticWorkflowResponseWritable, vAiAgentListResponse, vAiAgentListResponseWritable, vAiAgentRequest, vAiAgentRequestWritable, vAiAgentResponse, vAiAgentResponseWritable, vAlveraApiError, vApiKeyResponse, vApiKeyResponseWritable, vAwsLambdaCallRequest, vAwsLambdaCallRequestWritable, vAwsLambdaCallResponse, vAwsLambdaCallResponseWritable, vAwsLambdaRequest, vAwsLambdaRequestWritable, vAwsLambdaResponse, vAwsLambdaResponseWritable, vBatchLogListResponse, vBatchLogListResponseWritable, vBatchLogResponse, vBatchLogResponseWritable, vCloudStorageAwsRequest, vCloudStorageAwsRequestWritable, vCloudStorageAwsResponse, vCloudStorageCustomRequest, vCloudStorageCustomRequestWritable, vCloudStorageCustomResponse, vCloudStorageR2Request, vCloudStorageR2RequestWritable, vCloudStorageR2Response, vCloudWatchLogGroupRequest, vCloudWatchLogGroupRequestWritable, vCloudWatchLogGroupResponse, vCloudWatchLogGroupResponseWritable, vCloudWatchQueryRequest, vCloudWatchQueryResponse, vCloudflarePagesConfigRequest, vCloudflarePagesConfigRequestWritable, vCloudflarePagesConfigResponse, vCloudflarePagesConfigResponseWritable, vConnectedAppListResponse, vConnectedAppListResponseWritable, vConnectedAppRequest, vConnectedAppRequestWritable, vConnectedAppResponse, vConnectedAppResponseWritable, vConnectedAppRouteRequest, vConnectedAppRouteResponse, vConnectedAppUrlRequest, vConnectedAppUrlResponse, vContextDatasetRequest, vContextDatasetResponse, vContextDatasetResponseWritable, vDacRawLogFileResponse, vDataActivationClientAwsLambdaCallRequest, vDataActivationClientAwsLambdaCallRequestWritable, vDataActivationClientAwsLambdaCallResponse, vDataActivationClientAwsLambdaCallResponseWritable, vDataActivationClientListResponse, vDataActivationClientListResponseWritable, vDataActivationClientLogListResponse, vDataActivationClientLogListResponseWritable, vDataActivationClientLogResponse, vDataActivationClientLogResponseWritable, vDataActivationClientManualUploadCallRequest, vDataActivationClientManualUploadCallResponse, vDataActivationClientRequest, vDataActivationClientRequestWritable, vDataActivationClientResponse, vDataActivationClientResponseWritable, vDataActivationClientRestCallRequest, vDataActivationClientRestCallRequestWritable, vDataActivationClientRestCallResponse, vDataActivationClientRestCallResponseWritable, vDataActivationClientS3CallRequest, vDataActivationClientS3CallRequestWritable, vDataActivationClientS3CallResponse, vDataActivationClientS3CallResponseWritable, vDataActivationClientSftpCallRequest, vDataActivationClientSftpCallRequestWritable, vDataActivationClientSftpCallResponse, vDataActivationClientSftpCallResponseWritable, vDataActivationClientSharePointExcelCallRequest, vDataActivationClientSharePointExcelCallRequestWritable, vDataActivationClientSharePointExcelCallResponse, vDataActivationClientSharePointExcelCallResponseWritable, vDataActivationClientSqlQueryCallRequest, vDataActivationClientSqlQueryCallRequestWritable, vDataActivationClientSqlQueryCallResponse, vDataActivationClientSqlQueryCallResponseWritable, vDataSourceListResponse, vDataSourceListResponseWritable, vDataSourceRequest, vDataSourceResponse, vDataSourceResponseWritable, vDatalakeCloudStorageAwsRequest, vDatalakeCloudStorageAwsRequestWritable, vDatalakeCloudStorageAwsResponse, vDatalakeCloudStorageAwsResponseWritable, vDatalakeCloudStorageCustomRequest, vDatalakeCloudStorageCustomRequestWritable, vDatalakeCloudStorageCustomResponse, vDatalakeCloudStorageCustomResponseWritable, vDatalakeCloudStorageR2Request, vDatalakeCloudStorageR2RequestWritable, vDatalakeCloudStorageR2Response, vDatalakeCloudStorageR2ResponseWritable, vDatalakeListResponse, vDatalakeListResponseWritable, vDatalakeMigrateResponse, vDatalakeRequest, vDatalakeRequestWritable, vDatalakeResponse, vDatalakeResponseWritable, vDatasetSearchResponse, vDatasetSearchResponseWritable, vDownloadLinkRequest, vDownloadUrlResponse, vEmailCallRequest, vEmailCallRequestWritable, vEmailCallResponse, vEmailCallResponseWritable, vEmailRequest, vEmailRequestWritable, vEmailResponse, vEmailResponseWritable, vErrorResponse, vExecuteActionRequest, vExecuteActionResponse, vGenericTableListResponse, vGenericTableListResponseWritable, vGenericTableRequest, vGenericTableRequestWritable, vGenericTableResponse, vGenericTableResponseWritable, vIngestFileRequest, vIngestFileResponse, vIngestRequest, vIngestResponse, vInnerSearch, vInteroperabilityContractListResponse, vInteroperabilityContractListResponseWritable, vInteroperabilityContractRequest, vInteroperabilityContractRequestWritable, vInteroperabilityContractResponse, vInteroperabilityContractResponseWritable, vInteroperabilityRunRequest, vInteroperabilityRunResponse, vInvitationListResponse, vInvitationListResponseWritable, vInvitationRequest, vInvitationResponse, vInvitationResponseWritable, vManualToolInvocationAwsLambdaCallRequest, vManualToolInvocationAwsLambdaCallRequestWritable, vManualToolInvocationAwsLambdaCallResponse, vManualToolInvocationAwsLambdaCallResponseWritable, vManualToolInvocationEmailCallRequest, vManualToolInvocationEmailCallRequestWritable, vManualToolInvocationEmailCallResponse, vManualToolInvocationEmailCallResponseWritable, vManualToolInvocationRequest, vManualToolInvocationRequestWritable, vManualToolInvocationResponse, vManualToolInvocationResponseWritable, vManualToolInvocationRestCallRequest, vManualToolInvocationRestCallRequestWritable, vManualToolInvocationRestCallResponse, vManualToolInvocationRestCallResponseWritable, vManualToolInvocationSmsCallRequest, vManualToolInvocationSmsCallRequestWritable, vManualToolInvocationSmsCallResponse, vManualToolInvocationSmsCallResponseWritable, vManualUploadCallRequest, vManualUploadCallResponse, vManualUploadRequest, vManualUploadResponse, vMdmNotVerified, vMdmVerified, vMdmVerifyRequest, vMdmVerifyResponse, vMembershipResponse, vMembershipResponseWritable, vMinimalAiAgentResponse, vMinimalAiAgentResponseWritable, vOuterPagination, vPaginationMeta, vPingResponse, vPlatformApiActionStatusUpdaterControllerCreateBody, vPlatformApiActionStatusUpdaterControllerCreatePath, vPlatformApiActionStatusUpdaterControllerCreateQuery, vPlatformApiActionStatusUpdaterControllerCreateResponse, vPlatformApiActionStatusUpdaterControllerIndexPath, vPlatformApiActionStatusUpdaterControllerIndexQuery, vPlatformApiActionStatusUpdaterControllerIndexResponse, vPlatformApiActionStatusUpdaterControllerMetadataDetailsPath, vPlatformApiActionStatusUpdaterControllerMetadataDetailsResponse, vPlatformApiActionStatusUpdaterControllerMetadataPath, vPlatformApiActionStatusUpdaterControllerMetadataResponse, vPlatformApiActionStatusUpdaterControllerShowPath, vPlatformApiActionStatusUpdaterControllerShowResponse, vPlatformApiActionStatusUpdaterControllerUpdateBody, vPlatformApiActionStatusUpdaterControllerUpdatePath, vPlatformApiActionStatusUpdaterControllerUpdateQuery, vPlatformApiActionStatusUpdaterControllerUpdateResponse, vPlatformApiAdminControllerConfirmUserPath, vPlatformApiAdminControllerConfirmUserResponse, vPlatformApiAgenticWorkflowControllerCreateBody, vPlatformApiAgenticWorkflowControllerCreatePath, vPlatformApiAgenticWorkflowControllerCreateResponse, vPlatformApiAgenticWorkflowControllerDeletePath, vPlatformApiAgenticWorkflowControllerDeleteResponse, vPlatformApiAgenticWorkflowControllerIndexPath, vPlatformApiAgenticWorkflowControllerIndexQuery, vPlatformApiAgenticWorkflowControllerIndexResponse, vPlatformApiAgenticWorkflowControllerMetadataDetailsPath, vPlatformApiAgenticWorkflowControllerMetadataDetailsResponse, vPlatformApiAgenticWorkflowControllerMetadataPath, vPlatformApiAgenticWorkflowControllerMetadataResponse, vPlatformApiAgenticWorkflowControllerShowPath, vPlatformApiAgenticWorkflowControllerShowResponse, vPlatformApiAgenticWorkflowControllerUpdateBody, vPlatformApiAgenticWorkflowControllerUpdatePath, vPlatformApiAgenticWorkflowControllerUpdateResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogRefreshPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogRefreshResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogShowPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogShowResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogStartPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogStartResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogStopPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogStopResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogsIndexPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogsIndexQuery, vPlatformApiAgenticWorkflowOperationsControllerBatchLogsIndexResponse, vPlatformApiAgenticWorkflowOperationsControllerExecuteBody, vPlatformApiAgenticWorkflowOperationsControllerExecutePath, vPlatformApiAgenticWorkflowOperationsControllerExecuteResponse, vPlatformApiAgenticWorkflowOperationsControllerRunWorkflowBody, vPlatformApiAgenticWorkflowOperationsControllerRunWorkflowPath, vPlatformApiAgenticWorkflowOperationsControllerRunWorkflowResponse, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogDownloadPath, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogDownloadResponse, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowPath, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowQuery, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowResponse, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexPath, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexQuery, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexResponse, vPlatformApiAiAgentControllerCreateBody, vPlatformApiAiAgentControllerCreatePath, vPlatformApiAiAgentControllerCreateResponse, vPlatformApiAiAgentControllerDeletePath, vPlatformApiAiAgentControllerDeleteResponse, vPlatformApiAiAgentControllerIndexPath, vPlatformApiAiAgentControllerIndexQuery, vPlatformApiAiAgentControllerIndexResponse, vPlatformApiAiAgentControllerMetadataDetailsPath, vPlatformApiAiAgentControllerMetadataDetailsResponse, vPlatformApiAiAgentControllerMetadataPath, vPlatformApiAiAgentControllerMetadataResponse, vPlatformApiAiAgentControllerShowPath, vPlatformApiAiAgentControllerShowResponse, vPlatformApiAiAgentControllerUpdateBody, vPlatformApiAiAgentControllerUpdatePath, vPlatformApiAiAgentControllerUpdateResponse, vPlatformApiAuthControllerSignUpBody, vPlatformApiAuthControllerSignUpResponse, vPlatformApiConnectedAppControllerResolvePageBody, vPlatformApiConnectedAppControllerResolvePagePath, vPlatformApiConnectedAppControllerResolvePageResponse, vPlatformApiConnectedAppControllerUpdateMessageTrackingBody, vPlatformApiConnectedAppControllerUpdateMessageTrackingPath, vPlatformApiConnectedAppControllerUpdateMessageTrackingResponse, vPlatformApiConnectedAppMgmtControllerCreateBody, vPlatformApiConnectedAppMgmtControllerCreatePath, vPlatformApiConnectedAppMgmtControllerCreateResponse, vPlatformApiConnectedAppMgmtControllerIndexPath, vPlatformApiConnectedAppMgmtControllerIndexQuery, vPlatformApiConnectedAppMgmtControllerIndexResponse, vPlatformApiConnectedAppMgmtControllerMetadataDetailsPath, vPlatformApiConnectedAppMgmtControllerMetadataDetailsResponse, vPlatformApiConnectedAppMgmtControllerMetadataPath, vPlatformApiConnectedAppMgmtControllerMetadataResponse, vPlatformApiConnectedAppMgmtControllerShowPath, vPlatformApiConnectedAppMgmtControllerShowResponse, vPlatformApiConnectedAppMgmtControllerSyncRoutesPath, vPlatformApiConnectedAppMgmtControllerSyncRoutesResponse, vPlatformApiConnectedAppMgmtControllerUpdateBody, vPlatformApiConnectedAppMgmtControllerUpdatePath, vPlatformApiConnectedAppMgmtControllerUpdateResponse, vPlatformApiDataActivationClientControllerCreateBody, vPlatformApiDataActivationClientControllerCreatePath, vPlatformApiDataActivationClientControllerCreateResponse, vPlatformApiDataActivationClientControllerDeletePath, vPlatformApiDataActivationClientControllerDeleteResponse, vPlatformApiDataActivationClientControllerIndexPath, vPlatformApiDataActivationClientControllerIndexQuery, vPlatformApiDataActivationClientControllerIndexResponse, vPlatformApiDataActivationClientControllerIngestBody, vPlatformApiDataActivationClientControllerIngestFileBody, vPlatformApiDataActivationClientControllerIngestFilePath, vPlatformApiDataActivationClientControllerIngestFileResponse, vPlatformApiDataActivationClientControllerIngestPath, vPlatformApiDataActivationClientControllerIngestResponse, vPlatformApiDataActivationClientControllerLogShowPath, vPlatformApiDataActivationClientControllerLogShowResponse, vPlatformApiDataActivationClientControllerLogsIndexPath, vPlatformApiDataActivationClientControllerLogsIndexQuery, vPlatformApiDataActivationClientControllerLogsIndexResponse, vPlatformApiDataActivationClientControllerMetadataDetailsPath, vPlatformApiDataActivationClientControllerMetadataDetailsResponse, vPlatformApiDataActivationClientControllerMetadataPath, vPlatformApiDataActivationClientControllerMetadataResponse, vPlatformApiDataActivationClientControllerRunManuallyBody, vPlatformApiDataActivationClientControllerRunManuallyPath, vPlatformApiDataActivationClientControllerRunManuallyResponse, vPlatformApiDataActivationClientControllerShowPath, vPlatformApiDataActivationClientControllerShowResponse, vPlatformApiDataActivationClientControllerUpdateBody, vPlatformApiDataActivationClientControllerUpdatePath, vPlatformApiDataActivationClientControllerUpdateResponse, vPlatformApiDataSourceControllerCreateBody, vPlatformApiDataSourceControllerCreatePath, vPlatformApiDataSourceControllerCreateQuery, vPlatformApiDataSourceControllerCreateResponse, vPlatformApiDataSourceControllerIndexPath, vPlatformApiDataSourceControllerIndexQuery, vPlatformApiDataSourceControllerIndexResponse, vPlatformApiDataSourceControllerMetadataDetailsPath, vPlatformApiDataSourceControllerMetadataDetailsResponse, vPlatformApiDataSourceControllerMetadataPath, vPlatformApiDataSourceControllerMetadataResponse, vPlatformApiDataSourceControllerShowPath, vPlatformApiDataSourceControllerShowResponse, vPlatformApiDataSourceControllerUpdateBody, vPlatformApiDataSourceControllerUpdatePath, vPlatformApiDataSourceControllerUpdateQuery, vPlatformApiDataSourceControllerUpdateResponse, vPlatformApiDatalakeControllerCreateBody, vPlatformApiDatalakeControllerCreateDownloadLinkBody, vPlatformApiDatalakeControllerCreateDownloadLinkPath, vPlatformApiDatalakeControllerCreateDownloadLinkResponse, vPlatformApiDatalakeControllerCreatePath, vPlatformApiDatalakeControllerCreateQuery, vPlatformApiDatalakeControllerCreateResponse, vPlatformApiDatalakeControllerCreateUploadLinkBody, vPlatformApiDatalakeControllerCreateUploadLinkPath, vPlatformApiDatalakeControllerCreateUploadLinkQuery, vPlatformApiDatalakeControllerCreateUploadLinkResponse, vPlatformApiDatalakeControllerIndexPath, vPlatformApiDatalakeControllerIndexQuery, vPlatformApiDatalakeControllerIndexResponse, vPlatformApiDatalakeControllerMetadataDetailsPath, vPlatformApiDatalakeControllerMetadataDetailsQuery, vPlatformApiDatalakeControllerMetadataDetailsResponse, vPlatformApiDatalakeControllerMetadataPath, vPlatformApiDatalakeControllerMetadataResponse, vPlatformApiDatalakeControllerMigratePath, vPlatformApiDatalakeControllerMigrateResponse, vPlatformApiDatalakeControllerShowPath, vPlatformApiDatalakeControllerShowQuery, vPlatformApiDatalakeControllerShowResponse, vPlatformApiDatalakeControllerSystemDatasetsPath, vPlatformApiDatalakeControllerSystemDatasetsResponse, vPlatformApiDatalakeControllerUpdateBody, vPlatformApiDatalakeControllerUpdatePath, vPlatformApiDatalakeControllerUpdateResponse, vPlatformApiDatasetControllerCreateUserSearchBody, vPlatformApiDatasetControllerCreateUserSearchPath, vPlatformApiDatasetControllerCreateUserSearchResponse, vPlatformApiDatasetControllerDatasetMetadataPath, vPlatformApiDatasetControllerDatasetMetadataQuery, vPlatformApiDatasetControllerDatasetMetadataResponse, vPlatformApiDatasetControllerSearchPath, vPlatformApiDatasetControllerSearchQuery, vPlatformApiDatasetControllerSearchResponse, vPlatformApiGenericTableControllerCreateBody, vPlatformApiGenericTableControllerCreatePath, vPlatformApiGenericTableControllerCreateResponse, vPlatformApiGenericTableControllerIndexPath, vPlatformApiGenericTableControllerIndexQuery, vPlatformApiGenericTableControllerIndexResponse, vPlatformApiGenericTableControllerMetadataDetailsPath, vPlatformApiGenericTableControllerMetadataDetailsResponse, vPlatformApiGenericTableControllerMetadataPath, vPlatformApiGenericTableControllerMetadataResponse, vPlatformApiGenericTableControllerShowPath, vPlatformApiGenericTableControllerShowResponse, vPlatformApiInteroperabilityContractControllerCreateBody, vPlatformApiInteroperabilityContractControllerCreatePath, vPlatformApiInteroperabilityContractControllerCreateQuery, vPlatformApiInteroperabilityContractControllerCreateResponse, vPlatformApiInteroperabilityContractControllerDeletePath, vPlatformApiInteroperabilityContractControllerDeleteQuery, vPlatformApiInteroperabilityContractControllerDeleteResponse, vPlatformApiInteroperabilityContractControllerIndexPath, vPlatformApiInteroperabilityContractControllerIndexQuery, vPlatformApiInteroperabilityContractControllerIndexResponse, vPlatformApiInteroperabilityContractControllerMetadataDetailsPath, vPlatformApiInteroperabilityContractControllerMetadataDetailsQuery, vPlatformApiInteroperabilityContractControllerMetadataDetailsResponse, vPlatformApiInteroperabilityContractControllerMetadataPath, vPlatformApiInteroperabilityContractControllerMetadataResponse, vPlatformApiInteroperabilityContractControllerRunBody, vPlatformApiInteroperabilityContractControllerRunPath, vPlatformApiInteroperabilityContractControllerRunQuery, vPlatformApiInteroperabilityContractControllerRunResponse, vPlatformApiInteroperabilityContractControllerShowPath, vPlatformApiInteroperabilityContractControllerShowQuery, vPlatformApiInteroperabilityContractControllerShowResponse, vPlatformApiInteroperabilityContractControllerUpdateBody, vPlatformApiInteroperabilityContractControllerUpdatePath, vPlatformApiInteroperabilityContractControllerUpdateQuery, vPlatformApiInteroperabilityContractControllerUpdateResponse, vPlatformApiInvitationControllerAcceptPath, vPlatformApiInvitationControllerAcceptResponse, vPlatformApiInvitationControllerCreateBody, vPlatformApiInvitationControllerCreatePath, vPlatformApiInvitationControllerCreateResponse, vPlatformApiInvitationControllerIndexResponse, vPlatformApiMdmControllerVerifyBody, vPlatformApiMdmControllerVerifyPath, vPlatformApiMdmControllerVerifyResponse, vPlatformApiPingControllerPingResponse, vPlatformApiSessionControllerCreateBody, vPlatformApiSessionControllerCreateResponse, vPlatformApiSessionControllerVerifyResponse, vPlatformApiTemplatesControllerIndexPath, vPlatformApiTemplatesControllerIndexResponse, vPlatformApiTemplatesControllerMetadataDetailsPath, vPlatformApiTemplatesControllerMetadataDetailsQuery, vPlatformApiTemplatesControllerMetadataDetailsResponse, vPlatformApiTemplatesControllerMetadataPath, vPlatformApiTemplatesControllerMetadataResponse, vPlatformApiTenantControllerCreateBody, vPlatformApiTenantControllerCreateResponse, vPlatformApiTenantControllerIndexQuery, vPlatformApiTenantControllerIndexResponse, vPlatformApiToolControllerCreateBody, vPlatformApiToolControllerCreatePath, vPlatformApiToolControllerCreateResponse, vPlatformApiToolControllerDeletePath, vPlatformApiToolControllerDeleteResponse, vPlatformApiToolControllerIndexPath, vPlatformApiToolControllerIndexQuery, vPlatformApiToolControllerIndexResponse, vPlatformApiToolControllerMetadataDetailsPath, vPlatformApiToolControllerMetadataDetailsResponse, vPlatformApiToolControllerMetadataPath, vPlatformApiToolControllerMetadataResponse, vPlatformApiToolControllerShowPath, vPlatformApiToolControllerShowResponse, vPlatformApiToolControllerTestInvocationBody, vPlatformApiToolControllerTestInvocationPath, vPlatformApiToolControllerTestInvocationResponse, vPlatformApiToolControllerUpdateBody, vPlatformApiToolControllerUpdatePath, vPlatformApiToolControllerUpdateResponse, vResolvePageRequest, vResolvePageResponse, vRestCallRequest, vRestCallRequestWritable, vRestCallResponse, vRestCallResponseWritable, vRestapiRequest, vRestapiRequestWritable, vRestapiResponse, vRestapiResponseWritable, vRoleResponse, vRoleResponseWritable, vRunManuallyRequest, vRunManuallyRequestWritable, vRunManuallyResponse, vRunWorkflowRequest, vRunWorkflowResponse, vS3CallRequest, vS3CallResponse, vS3CloudStorageAwsRequest, vS3CloudStorageAwsRequestWritable, vS3CloudStorageAwsResponse, vS3CloudStorageAwsResponseWritable, vS3CloudStorageR2Request, vS3CloudStorageR2RequestWritable, vS3CloudStorageR2Response, vS3CloudStorageR2ResponseWritable, vS3Request, vS3RequestWritable, vS3Response, vS3ResponseWritable, vSessionResponse, vSessionResponseWritable, vSftpCallRequest, vSftpCallResponse, vSftpRequest, vSftpRequestWritable, vSftpResponse, vSftpResponseWritable, vSharePointExcelCallRequest, vSharePointExcelCallResponse, vSharePointRequest, vSharePointRequestWritable, vSharePointResponse, vSharePointResponseWritable, vSignInRequest, vSignUpRequest, vSignUpRequestWritable, vSmsCallRequest, vSmsCallRequestWritable, vSmsCallResponse, vSmsCallResponseWritable, vSnsRequest, vSnsRequestWritable, vSnsResponse, vSnsResponseWritable, vSqlDatabaseRequest, vSqlDatabaseRequestWritable, vSqlDatabaseResponse, vSqlDatabaseResponseWritable, vSqlQueryCallRequest, vSqlQueryCallRequestWritable, vSqlQueryCallResponse, vSqlQueryCallResponseWritable, vSqsRequest, vSqsRequestWritable, vSqsResponse, vSqsResponseWritable, vSyncRoutesResponse, vSystemDatasetListResponse, vSystemTemplateConfig, vSystemTemplateListResponse, vTemplateConfigRequest, vTemplateConfigRequestWritable, vTemplateConfigResponse, vTemplateConfigResponseWritable, vTenantListResponse, vTenantListResponseWritable, vTenantRequest, vTenantResponse, vTenantResponseWritable, vToolAwsLambdaRequest, vToolAwsLambdaRequestWritable, vToolAwsLambdaResponse, vToolAwsLambdaResponseWritable, vToolCloudWatchLogGroupRequest, vToolCloudWatchLogGroupRequestWritable, vToolCloudWatchLogGroupResponse, vToolCloudWatchLogGroupResponseWritable, vToolEmailRequest, vToolEmailRequestWritable, vToolEmailResponse, vToolEmailResponseWritable, vToolIntent, vToolListResponse, vToolListResponseWritable, vToolManualUploadRequest, vToolManualUploadResponse, vToolRequest, vToolRequestWritable, vToolResponse, vToolResponseWritable, vToolRestapiRequest, vToolRestapiRequestWritable, vToolRestapiResponse, vToolRestapiResponseWritable, vToolS3Request, vToolS3RequestWritable, vToolS3Response, vToolS3ResponseWritable, vToolSftpRequest, vToolSftpRequestWritable, vToolSftpResponse, vToolSftpResponseWritable, vToolSharePointRequest, vToolSharePointRequestWritable, vToolSharePointResponse, vToolSharePointResponseWritable, vToolSnsRequest, vToolSnsRequestWritable, vToolSnsResponse, vToolSnsResponseWritable, vToolSqlDatabaseRequest, vToolSqlDatabaseRequestWritable, vToolSqlDatabaseResponse, vToolSqlDatabaseResponseWritable, vToolSqsRequest, vToolSqsRequestWritable, vToolSqsResponse, vToolSqsResponseWritable, vUpdatePageRequest, vUpdatePageResponse, vUploadLinkRequest, vUploadLinkResponse, vUserResponse, vUserResponseWritable, vUserSearchRequest, vUserSearchResponse, vUserSearchResponseWritable, vWorkflowAiAgentRequest, vWorkflowAiAgentRequestWritable, vWorkflowAiAgentResponse, vWorkflowAiAgentResponseWritable, vWorkflowLogListResponse, vWorkflowLogListResponseWritable, vWorkflowLogResponse, vWorkflowLogResponseWritable };
49713
+ export { type ActionStatusUpdaterCloudWatchQueryRequest, type ActionStatusUpdaterResponse, type ActionStatusUpdaterRestCallRequest, ActionType, type AgenticWorkflowListResponse, type AgenticWorkflowRequestWritable, type AgenticWorkflowResponse, type AiAgentResponse, type ApiConfig, type ApiDebugConfig, type BatchLogListResponse, type BatchLogResponse, type ConnectedAppListResponse, type ConnectedAppRequestWritable, type ConnectedAppResponse, type CreateActionStatusUpdaterRequest, type CreateAiAgentRequest, type CreateGenericTableRequest, type CreateSessionParams, DEFAULT_ENVIRONMENT, type DataActivationClientListResponse, type DataActivationClientLogListResponse, type DataActivationClientLogResponse, type DataActivationClientRequestWritable, type DataActivationClientResponse, type DataSourceRequest, type DataSourceRequestWritable, type DataSourceResponse, type DatalakeRequestWritable, type DatalakeResponse, type DatasetMetadataOptions, type DatasetSearchOptions, type DatasetSearchResponse, type DownloadUrlResponse, ENVIRONMENTS, type EnvironmentName, type ExecuteActionRequest, type ExecuteActionResponse, type GenericTableColumn, type GenericTableResponse, type IngestFileRequest, type IngestRequest, type InteroperabilityContractListResponse, type InteroperabilityContractRequestWritable, type InteroperabilityContractResponse, type InteroperabilityRunRequest, type InteroperabilityRunResponse, type MdmVerifyRequest, type MdmVerifyResponse, type PaginationMeta, type PlatformApi, type ResolvePageRequest, type RunManuallyRequestWritable, type RunManuallyResponse, type RunWorkflowRequest, type RunWorkflowResponse, type SessionResponse, type SessionResult, type SyncRoutesResponse, type TemplateConfig, type TenantListResponse, type TenantResponse, ToolIntent, type ToolRequest, type ToolRequestWritable, type ToolResponse, type UpdatePageRequest, type UploadLinkRequest, type UploadLinkResponse, type WorkflowLogListResponse, type WorkflowLogResponse, createIsolatedPlatformApi, createPlatformApi, createSession, createUnvalidatedPlatformApi, revokeSession, vActionAwsLambdaCallRequest, vActionAwsLambdaCallRequestWritable, vActionAwsLambdaCallResponse, vActionAwsLambdaCallResponseWritable, vActionEmailCallRequest, vActionEmailCallRequestWritable, vActionEmailCallResponse, vActionEmailCallResponseWritable, vActionExecutionLogResponse, vActionExecutionLogResponseWritable, vActionManualUploadCallRequest, vActionManualUploadCallResponse, vActionRequest, vActionRequestWritable, vActionResponse, vActionResponseWritable, vActionRestCallRequest, vActionRestCallRequestWritable, vActionRestCallResponse, vActionRestCallResponseWritable, vActionSftpCallRequest, vActionSftpCallRequestWritable, vActionSftpCallResponse, vActionSftpCallResponseWritable, vActionSharePointExcelCallRequest, vActionSharePointExcelCallRequestWritable, vActionSharePointExcelCallResponse, vActionSharePointExcelCallResponseWritable, vActionSmsCallRequest, vActionSmsCallRequestWritable, vActionSmsCallResponse, vActionSmsCallResponseWritable, vActionSqlQueryCallRequest, vActionSqlQueryCallRequestWritable, vActionSqlQueryCallResponse, vActionSqlQueryCallResponseWritable, vActionStatusUpdaterCloudWatchQueryRequest, vActionStatusUpdaterCloudWatchQueryRequestWritable, vActionStatusUpdaterCloudWatchQueryResponse, vActionStatusUpdaterCloudWatchQueryResponseWritable, vActionStatusUpdaterListResponse, vActionStatusUpdaterListResponseWritable, vActionStatusUpdaterRequest, vActionStatusUpdaterRequestWritable, vActionStatusUpdaterResponse, vActionStatusUpdaterResponseWritable, vActionStatusUpdaterRestCallRequest, vActionStatusUpdaterRestCallRequestWritable, vActionStatusUpdaterRestCallResponse, vActionStatusUpdaterRestCallResponseWritable, vActionType, vAgenticWorkflowListResponse, vAgenticWorkflowListResponseWritable, vAgenticWorkflowRequest, vAgenticWorkflowRequestWritable, vAgenticWorkflowResponse, vAgenticWorkflowResponseWritable, vAiAgentListResponse, vAiAgentListResponseWritable, vAiAgentRequest, vAiAgentRequestWritable, vAiAgentResponse, vAiAgentResponseWritable, vAlveraApiError, vApiKeyResponse, vApiKeyResponseWritable, vAwsLambdaCallRequest, vAwsLambdaCallRequestWritable, vAwsLambdaCallResponse, vAwsLambdaCallResponseWritable, vAwsLambdaRequest, vAwsLambdaRequestWritable, vAwsLambdaResponse, vAwsLambdaResponseWritable, vBatchLogListResponse, vBatchLogListResponseWritable, vBatchLogResponse, vBatchLogResponseWritable, vCloudStorageAwsRequest, vCloudStorageAwsRequestWritable, vCloudStorageAwsResponse, vCloudStorageCustomRequest, vCloudStorageCustomRequestWritable, vCloudStorageCustomResponse, vCloudStorageR2Request, vCloudStorageR2RequestWritable, vCloudStorageR2Response, vCloudWatchLogGroupRequest, vCloudWatchLogGroupRequestWritable, vCloudWatchLogGroupResponse, vCloudWatchLogGroupResponseWritable, vCloudWatchQueryRequest, vCloudWatchQueryResponse, vCloudflarePagesConfigRequest, vCloudflarePagesConfigRequestWritable, vCloudflarePagesConfigResponse, vCloudflarePagesConfigResponseWritable, vConnectedAppListResponse, vConnectedAppListResponseWritable, vConnectedAppRequest, vConnectedAppRequestWritable, vConnectedAppResponse, vConnectedAppResponseWritable, vConnectedAppRouteRequest, vConnectedAppRouteResponse, vConnectedAppUrlRequest, vConnectedAppUrlResponse, vContextDatasetRequest, vContextDatasetResponse, vContextDatasetResponseWritable, vDacRawLogFileResponse, vDataActivationClientAwsLambdaCallRequest, vDataActivationClientAwsLambdaCallRequestWritable, vDataActivationClientAwsLambdaCallResponse, vDataActivationClientAwsLambdaCallResponseWritable, vDataActivationClientListResponse, vDataActivationClientListResponseWritable, vDataActivationClientLogListResponse, vDataActivationClientLogListResponseWritable, vDataActivationClientLogResponse, vDataActivationClientLogResponseWritable, vDataActivationClientManualUploadCallRequest, vDataActivationClientManualUploadCallResponse, vDataActivationClientRequest, vDataActivationClientRequestWritable, vDataActivationClientResponse, vDataActivationClientResponseWritable, vDataActivationClientRestCallRequest, vDataActivationClientRestCallRequestWritable, vDataActivationClientRestCallResponse, vDataActivationClientRestCallResponseWritable, vDataActivationClientS3CallRequest, vDataActivationClientS3CallRequestWritable, vDataActivationClientS3CallResponse, vDataActivationClientS3CallResponseWritable, vDataActivationClientSftpCallRequest, vDataActivationClientSftpCallRequestWritable, vDataActivationClientSftpCallResponse, vDataActivationClientSftpCallResponseWritable, vDataActivationClientSharePointExcelCallRequest, vDataActivationClientSharePointExcelCallRequestWritable, vDataActivationClientSharePointExcelCallResponse, vDataActivationClientSharePointExcelCallResponseWritable, vDataActivationClientSqlQueryCallRequest, vDataActivationClientSqlQueryCallRequestWritable, vDataActivationClientSqlQueryCallResponse, vDataActivationClientSqlQueryCallResponseWritable, vDataSourceListResponse, vDataSourceListResponseWritable, vDataSourceRequest, vDataSourceResponse, vDataSourceResponseWritable, vDatalakeCloudStorageAwsRequest, vDatalakeCloudStorageAwsRequestWritable, vDatalakeCloudStorageAwsResponse, vDatalakeCloudStorageAwsResponseWritable, vDatalakeCloudStorageCustomRequest, vDatalakeCloudStorageCustomRequestWritable, vDatalakeCloudStorageCustomResponse, vDatalakeCloudStorageCustomResponseWritable, vDatalakeCloudStorageR2Request, vDatalakeCloudStorageR2RequestWritable, vDatalakeCloudStorageR2Response, vDatalakeCloudStorageR2ResponseWritable, vDatalakeListResponse, vDatalakeListResponseWritable, vDatalakeMigrateResponse, vDatalakeRequest, vDatalakeRequestWritable, vDatalakeResponse, vDatalakeResponseWritable, vDatasetSearchResponse, vDatasetSearchResponseWritable, vDownloadLinkRequest, vDownloadUrlResponse, vEmailCallRequest, vEmailCallRequestWritable, vEmailCallResponse, vEmailCallResponseWritable, vEmailRequest, vEmailRequestWritable, vEmailResponse, vEmailResponseWritable, vErrorResponse, vExecuteActionRequest, vExecuteActionResponse, vGenericTableListResponse, vGenericTableListResponseWritable, vGenericTableRequest, vGenericTableRequestWritable, vGenericTableResponse, vGenericTableResponseWritable, vIngestFileRequest, vIngestFileResponse, vIngestRequest, vIngestResponse, vInnerSearch, vInteroperabilityContractListResponse, vInteroperabilityContractListResponseWritable, vInteroperabilityContractRequest, vInteroperabilityContractRequestWritable, vInteroperabilityContractResponse, vInteroperabilityContractResponseWritable, vInteroperabilityRunRequest, vInteroperabilityRunResponse, vInvitationListResponse, vInvitationListResponseWritable, vInvitationRequest, vInvitationResponse, vInvitationResponseWritable, vManualToolInvocationAwsLambdaCallRequest, vManualToolInvocationAwsLambdaCallRequestWritable, vManualToolInvocationAwsLambdaCallResponse, vManualToolInvocationAwsLambdaCallResponseWritable, vManualToolInvocationEmailCallRequest, vManualToolInvocationEmailCallRequestWritable, vManualToolInvocationEmailCallResponse, vManualToolInvocationEmailCallResponseWritable, vManualToolInvocationRequest, vManualToolInvocationRequestWritable, vManualToolInvocationResponse, vManualToolInvocationResponseWritable, vManualToolInvocationRestCallRequest, vManualToolInvocationRestCallRequestWritable, vManualToolInvocationRestCallResponse, vManualToolInvocationRestCallResponseWritable, vManualToolInvocationSmsCallRequest, vManualToolInvocationSmsCallRequestWritable, vManualToolInvocationSmsCallResponse, vManualToolInvocationSmsCallResponseWritable, vManualUploadCallRequest, vManualUploadCallResponse, vManualUploadRequest, vManualUploadResponse, vMdmNotVerified, vMdmVerified, vMdmVerifyRequest, vMdmVerifyResponse, vMembershipResponse, vMembershipResponseWritable, vMinimalAiAgentResponse, vMinimalAiAgentResponseWritable, vOuterPagination, vPaginationMeta, vPingResponse, vPlatformApiActionStatusUpdaterControllerCreateBody, vPlatformApiActionStatusUpdaterControllerCreatePath, vPlatformApiActionStatusUpdaterControllerCreateQuery, vPlatformApiActionStatusUpdaterControllerCreateResponse, vPlatformApiActionStatusUpdaterControllerIndexPath, vPlatformApiActionStatusUpdaterControllerIndexQuery, vPlatformApiActionStatusUpdaterControllerIndexResponse, vPlatformApiActionStatusUpdaterControllerMetadataDetailsPath, vPlatformApiActionStatusUpdaterControllerMetadataDetailsResponse, vPlatformApiActionStatusUpdaterControllerMetadataPath, vPlatformApiActionStatusUpdaterControllerMetadataQuery, vPlatformApiActionStatusUpdaterControllerMetadataResponse, vPlatformApiActionStatusUpdaterControllerShowPath, vPlatformApiActionStatusUpdaterControllerShowResponse, vPlatformApiActionStatusUpdaterControllerUpdateBody, vPlatformApiActionStatusUpdaterControllerUpdatePath, vPlatformApiActionStatusUpdaterControllerUpdateQuery, vPlatformApiActionStatusUpdaterControllerUpdateResponse, vPlatformApiAdminControllerConfirmUserPath, vPlatformApiAdminControllerConfirmUserResponse, vPlatformApiAgenticWorkflowControllerCreateBody, vPlatformApiAgenticWorkflowControllerCreatePath, vPlatformApiAgenticWorkflowControllerCreateResponse, vPlatformApiAgenticWorkflowControllerDeletePath, vPlatformApiAgenticWorkflowControllerDeleteResponse, vPlatformApiAgenticWorkflowControllerIndexPath, vPlatformApiAgenticWorkflowControllerIndexQuery, vPlatformApiAgenticWorkflowControllerIndexResponse, vPlatformApiAgenticWorkflowControllerMetadataDetailsPath, vPlatformApiAgenticWorkflowControllerMetadataDetailsResponse, vPlatformApiAgenticWorkflowControllerMetadataPath, vPlatformApiAgenticWorkflowControllerMetadataQuery, vPlatformApiAgenticWorkflowControllerMetadataResponse, vPlatformApiAgenticWorkflowControllerShowPath, vPlatformApiAgenticWorkflowControllerShowResponse, vPlatformApiAgenticWorkflowControllerUpdateBody, vPlatformApiAgenticWorkflowControllerUpdatePath, vPlatformApiAgenticWorkflowControllerUpdateResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogRefreshPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogRefreshResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogShowPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogShowResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogStartPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogStartResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogStopPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogStopResponse, vPlatformApiAgenticWorkflowOperationsControllerBatchLogsIndexPath, vPlatformApiAgenticWorkflowOperationsControllerBatchLogsIndexQuery, vPlatformApiAgenticWorkflowOperationsControllerBatchLogsIndexResponse, vPlatformApiAgenticWorkflowOperationsControllerExecuteBody, vPlatformApiAgenticWorkflowOperationsControllerExecutePath, vPlatformApiAgenticWorkflowOperationsControllerExecuteResponse, vPlatformApiAgenticWorkflowOperationsControllerRunWorkflowBody, vPlatformApiAgenticWorkflowOperationsControllerRunWorkflowPath, vPlatformApiAgenticWorkflowOperationsControllerRunWorkflowResponse, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogDownloadPath, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogDownloadResponse, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowPath, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowQuery, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowResponse, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexPath, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexQuery, vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexResponse, vPlatformApiAiAgentControllerCreateBody, vPlatformApiAiAgentControllerCreatePath, vPlatformApiAiAgentControllerCreateResponse, vPlatformApiAiAgentControllerDeletePath, vPlatformApiAiAgentControllerDeleteResponse, vPlatformApiAiAgentControllerIndexPath, vPlatformApiAiAgentControllerIndexQuery, vPlatformApiAiAgentControllerIndexResponse, vPlatformApiAiAgentControllerMetadataDetailsPath, vPlatformApiAiAgentControllerMetadataDetailsResponse, vPlatformApiAiAgentControllerMetadataPath, vPlatformApiAiAgentControllerMetadataQuery, vPlatformApiAiAgentControllerMetadataResponse, vPlatformApiAiAgentControllerShowPath, vPlatformApiAiAgentControllerShowResponse, vPlatformApiAiAgentControllerUpdateBody, vPlatformApiAiAgentControllerUpdatePath, vPlatformApiAiAgentControllerUpdateResponse, vPlatformApiAuthControllerSignUpBody, vPlatformApiAuthControllerSignUpResponse, vPlatformApiConnectedAppControllerResolvePageBody, vPlatformApiConnectedAppControllerResolvePagePath, vPlatformApiConnectedAppControllerResolvePageResponse, vPlatformApiConnectedAppControllerUpdateMessageTrackingBody, vPlatformApiConnectedAppControllerUpdateMessageTrackingPath, vPlatformApiConnectedAppControllerUpdateMessageTrackingResponse, vPlatformApiConnectedAppMgmtControllerCreateBody, vPlatformApiConnectedAppMgmtControllerCreatePath, vPlatformApiConnectedAppMgmtControllerCreateResponse, vPlatformApiConnectedAppMgmtControllerIndexPath, vPlatformApiConnectedAppMgmtControllerIndexQuery, vPlatformApiConnectedAppMgmtControllerIndexResponse, vPlatformApiConnectedAppMgmtControllerMetadataDetailsPath, vPlatformApiConnectedAppMgmtControllerMetadataDetailsResponse, vPlatformApiConnectedAppMgmtControllerMetadataPath, vPlatformApiConnectedAppMgmtControllerMetadataQuery, vPlatformApiConnectedAppMgmtControllerMetadataResponse, vPlatformApiConnectedAppMgmtControllerShowPath, vPlatformApiConnectedAppMgmtControllerShowResponse, vPlatformApiConnectedAppMgmtControllerSyncRoutesPath, vPlatformApiConnectedAppMgmtControllerSyncRoutesResponse, vPlatformApiConnectedAppMgmtControllerUpdateBody, vPlatformApiConnectedAppMgmtControllerUpdatePath, vPlatformApiConnectedAppMgmtControllerUpdateResponse, vPlatformApiDataActivationClientControllerCreateBody, vPlatformApiDataActivationClientControllerCreatePath, vPlatformApiDataActivationClientControllerCreateResponse, vPlatformApiDataActivationClientControllerDeletePath, vPlatformApiDataActivationClientControllerDeleteResponse, vPlatformApiDataActivationClientControllerIndexPath, vPlatformApiDataActivationClientControllerIndexQuery, vPlatformApiDataActivationClientControllerIndexResponse, vPlatformApiDataActivationClientControllerIngestBody, vPlatformApiDataActivationClientControllerIngestFileBody, vPlatformApiDataActivationClientControllerIngestFilePath, vPlatformApiDataActivationClientControllerIngestFileResponse, vPlatformApiDataActivationClientControllerIngestPath, vPlatformApiDataActivationClientControllerIngestResponse, vPlatformApiDataActivationClientControllerLogShowPath, vPlatformApiDataActivationClientControllerLogShowResponse, vPlatformApiDataActivationClientControllerLogsIndexPath, vPlatformApiDataActivationClientControllerLogsIndexQuery, vPlatformApiDataActivationClientControllerLogsIndexResponse, vPlatformApiDataActivationClientControllerMetadataDetailsPath, vPlatformApiDataActivationClientControllerMetadataDetailsResponse, vPlatformApiDataActivationClientControllerMetadataPath, vPlatformApiDataActivationClientControllerMetadataQuery, vPlatformApiDataActivationClientControllerMetadataResponse, vPlatformApiDataActivationClientControllerRunManuallyBody, vPlatformApiDataActivationClientControllerRunManuallyPath, vPlatformApiDataActivationClientControllerRunManuallyResponse, vPlatformApiDataActivationClientControllerShowPath, vPlatformApiDataActivationClientControllerShowResponse, vPlatformApiDataActivationClientControllerUpdateBody, vPlatformApiDataActivationClientControllerUpdatePath, vPlatformApiDataActivationClientControllerUpdateResponse, vPlatformApiDataSourceControllerCreateBody, vPlatformApiDataSourceControllerCreatePath, vPlatformApiDataSourceControllerCreateQuery, vPlatformApiDataSourceControllerCreateResponse, vPlatformApiDataSourceControllerIndexPath, vPlatformApiDataSourceControllerIndexQuery, vPlatformApiDataSourceControllerIndexResponse, vPlatformApiDataSourceControllerMetadataDetailsPath, vPlatformApiDataSourceControllerMetadataDetailsResponse, vPlatformApiDataSourceControllerMetadataPath, vPlatformApiDataSourceControllerMetadataQuery, vPlatformApiDataSourceControllerMetadataResponse, vPlatformApiDataSourceControllerShowPath, vPlatformApiDataSourceControllerShowResponse, vPlatformApiDataSourceControllerUpdateBody, vPlatformApiDataSourceControllerUpdatePath, vPlatformApiDataSourceControllerUpdateQuery, vPlatformApiDataSourceControllerUpdateResponse, vPlatformApiDatalakeControllerCreateBody, vPlatformApiDatalakeControllerCreateDownloadLinkBody, vPlatformApiDatalakeControllerCreateDownloadLinkPath, vPlatformApiDatalakeControllerCreateDownloadLinkResponse, vPlatformApiDatalakeControllerCreatePath, vPlatformApiDatalakeControllerCreateQuery, vPlatformApiDatalakeControllerCreateResponse, vPlatformApiDatalakeControllerCreateUploadLinkBody, vPlatformApiDatalakeControllerCreateUploadLinkPath, vPlatformApiDatalakeControllerCreateUploadLinkQuery, vPlatformApiDatalakeControllerCreateUploadLinkResponse, vPlatformApiDatalakeControllerIndexPath, vPlatformApiDatalakeControllerIndexQuery, vPlatformApiDatalakeControllerIndexResponse, vPlatformApiDatalakeControllerMetadataDetailsPath, vPlatformApiDatalakeControllerMetadataDetailsResponse, vPlatformApiDatalakeControllerMetadataPath, vPlatformApiDatalakeControllerMetadataQuery, vPlatformApiDatalakeControllerMetadataResponse, vPlatformApiDatalakeControllerMigratePath, vPlatformApiDatalakeControllerMigrateResponse, vPlatformApiDatalakeControllerShowPath, vPlatformApiDatalakeControllerShowQuery, vPlatformApiDatalakeControllerShowResponse, vPlatformApiDatalakeControllerSystemDatasetsPath, vPlatformApiDatalakeControllerSystemDatasetsResponse, vPlatformApiDatalakeControllerUpdateBody, vPlatformApiDatalakeControllerUpdatePath, vPlatformApiDatalakeControllerUpdateResponse, vPlatformApiDatasetControllerCreateUserSearchBody, vPlatformApiDatasetControllerCreateUserSearchPath, vPlatformApiDatasetControllerCreateUserSearchResponse, vPlatformApiDatasetControllerDatasetMetadataPath, vPlatformApiDatasetControllerDatasetMetadataQuery, vPlatformApiDatasetControllerDatasetMetadataResponse, vPlatformApiDatasetControllerMetadataPath, vPlatformApiDatasetControllerMetadataResponse, vPlatformApiDatasetControllerSearchPath, vPlatformApiDatasetControllerSearchQuery, vPlatformApiDatasetControllerSearchResponse, vPlatformApiGenericTableControllerCreateBody, vPlatformApiGenericTableControllerCreatePath, vPlatformApiGenericTableControllerCreateResponse, vPlatformApiGenericTableControllerIndexPath, vPlatformApiGenericTableControllerIndexQuery, vPlatformApiGenericTableControllerIndexResponse, vPlatformApiGenericTableControllerMetadataDetailsPath, vPlatformApiGenericTableControllerMetadataDetailsResponse, vPlatformApiGenericTableControllerMetadataPath, vPlatformApiGenericTableControllerMetadataQuery, vPlatformApiGenericTableControllerMetadataResponse, vPlatformApiGenericTableControllerShowPath, vPlatformApiGenericTableControllerShowResponse, vPlatformApiInteroperabilityContractControllerCreateBody, vPlatformApiInteroperabilityContractControllerCreatePath, vPlatformApiInteroperabilityContractControllerCreateQuery, vPlatformApiInteroperabilityContractControllerCreateResponse, vPlatformApiInteroperabilityContractControllerDeletePath, vPlatformApiInteroperabilityContractControllerDeleteQuery, vPlatformApiInteroperabilityContractControllerDeleteResponse, vPlatformApiInteroperabilityContractControllerIndexPath, vPlatformApiInteroperabilityContractControllerIndexQuery, vPlatformApiInteroperabilityContractControllerIndexResponse, vPlatformApiInteroperabilityContractControllerMetadataDetailsPath, vPlatformApiInteroperabilityContractControllerMetadataDetailsResponse, vPlatformApiInteroperabilityContractControllerMetadataPath, vPlatformApiInteroperabilityContractControllerMetadataQuery, vPlatformApiInteroperabilityContractControllerMetadataResponse, vPlatformApiInteroperabilityContractControllerRunBody, vPlatformApiInteroperabilityContractControllerRunPath, vPlatformApiInteroperabilityContractControllerRunQuery, vPlatformApiInteroperabilityContractControllerRunResponse, vPlatformApiInteroperabilityContractControllerShowPath, vPlatformApiInteroperabilityContractControllerShowQuery, vPlatformApiInteroperabilityContractControllerShowResponse, vPlatformApiInteroperabilityContractControllerUpdateBody, vPlatformApiInteroperabilityContractControllerUpdatePath, vPlatformApiInteroperabilityContractControllerUpdateQuery, vPlatformApiInteroperabilityContractControllerUpdateResponse, vPlatformApiInvitationControllerAcceptPath, vPlatformApiInvitationControllerAcceptResponse, vPlatformApiInvitationControllerCreateBody, vPlatformApiInvitationControllerCreatePath, vPlatformApiInvitationControllerCreateResponse, vPlatformApiInvitationControllerIndexResponse, vPlatformApiMdmControllerVerifyBody, vPlatformApiMdmControllerVerifyPath, vPlatformApiMdmControllerVerifyResponse, vPlatformApiPingControllerPingResponse, vPlatformApiSessionControllerCreateBody, vPlatformApiSessionControllerCreateResponse, vPlatformApiSessionControllerVerifyResponse, vPlatformApiTemplatesControllerIndexPath, vPlatformApiTemplatesControllerIndexResponse, vPlatformApiTemplatesControllerMetadataDetailsPath, vPlatformApiTemplatesControllerMetadataDetailsQuery, vPlatformApiTemplatesControllerMetadataDetailsResponse, vPlatformApiTemplatesControllerMetadataPath, vPlatformApiTemplatesControllerMetadataQuery, vPlatformApiTemplatesControllerMetadataResponse, vPlatformApiTenantControllerCreateBody, vPlatformApiTenantControllerCreateResponse, vPlatformApiTenantControllerIndexQuery, vPlatformApiTenantControllerIndexResponse, vPlatformApiToolControllerCreateBody, vPlatformApiToolControllerCreatePath, vPlatformApiToolControllerCreateResponse, vPlatformApiToolControllerDeletePath, vPlatformApiToolControllerDeleteResponse, vPlatformApiToolControllerIndexPath, vPlatformApiToolControllerIndexQuery, vPlatformApiToolControllerIndexResponse, vPlatformApiToolControllerMetadataDetailsPath, vPlatformApiToolControllerMetadataDetailsResponse, vPlatformApiToolControllerMetadataPath, vPlatformApiToolControllerMetadataQuery, vPlatformApiToolControllerMetadataResponse, vPlatformApiToolControllerShowPath, vPlatformApiToolControllerShowResponse, vPlatformApiToolControllerTestInvocationBody, vPlatformApiToolControllerTestInvocationPath, vPlatformApiToolControllerTestInvocationResponse, vPlatformApiToolControllerUpdateBody, vPlatformApiToolControllerUpdatePath, vPlatformApiToolControllerUpdateResponse, vResolvePageRequest, vResolvePageResponse, vRestCallRequest, vRestCallRequestWritable, vRestCallResponse, vRestCallResponseWritable, vRestapiRequest, vRestapiRequestWritable, vRestapiResponse, vRestapiResponseWritable, vRoleResponse, vRoleResponseWritable, vRunManuallyRequest, vRunManuallyRequestWritable, vRunManuallyResponse, vRunWorkflowRequest, vRunWorkflowResponse, vS3CallRequest, vS3CallResponse, vS3CloudStorageAwsRequest, vS3CloudStorageAwsRequestWritable, vS3CloudStorageAwsResponse, vS3CloudStorageAwsResponseWritable, vS3CloudStorageR2Request, vS3CloudStorageR2RequestWritable, vS3CloudStorageR2Response, vS3CloudStorageR2ResponseWritable, vS3Request, vS3RequestWritable, vS3Response, vS3ResponseWritable, vSessionResponse, vSessionResponseWritable, vSftpCallRequest, vSftpCallResponse, vSftpRequest, vSftpRequestWritable, vSftpResponse, vSftpResponseWritable, vSharePointExcelCallRequest, vSharePointExcelCallResponse, vSharePointRequest, vSharePointRequestWritable, vSharePointResponse, vSharePointResponseWritable, vSignInRequest, vSignUpRequest, vSignUpRequestWritable, vSmsCallRequest, vSmsCallRequestWritable, vSmsCallResponse, vSmsCallResponseWritable, vSnsRequest, vSnsRequestWritable, vSnsResponse, vSnsResponseWritable, vSqlDatabaseRequest, vSqlDatabaseRequestWritable, vSqlDatabaseResponse, vSqlDatabaseResponseWritable, vSqlQueryCallRequest, vSqlQueryCallRequestWritable, vSqlQueryCallResponse, vSqlQueryCallResponseWritable, vSqsRequest, vSqsRequestWritable, vSqsResponse, vSqsResponseWritable, vSyncRoutesResponse, vSystemDatasetListResponse, vSystemTemplateConfig, vSystemTemplateListResponse, vTemplateConfigRequest, vTemplateConfigRequestWritable, vTemplateConfigResponse, vTemplateConfigResponseWritable, vTenantListResponse, vTenantListResponseWritable, vTenantRequest, vTenantResponse, vTenantResponseWritable, vToolAwsLambdaRequest, vToolAwsLambdaRequestWritable, vToolAwsLambdaResponse, vToolAwsLambdaResponseWritable, vToolCloudWatchLogGroupRequest, vToolCloudWatchLogGroupRequestWritable, vToolCloudWatchLogGroupResponse, vToolCloudWatchLogGroupResponseWritable, vToolEmailRequest, vToolEmailRequestWritable, vToolEmailResponse, vToolEmailResponseWritable, vToolIntent, vToolListResponse, vToolListResponseWritable, vToolManualUploadRequest, vToolManualUploadResponse, vToolRequest, vToolRequestWritable, vToolResponse, vToolResponseWritable, vToolRestapiRequest, vToolRestapiRequestWritable, vToolRestapiResponse, vToolRestapiResponseWritable, vToolS3Request, vToolS3RequestWritable, vToolS3Response, vToolS3ResponseWritable, vToolSftpRequest, vToolSftpRequestWritable, vToolSftpResponse, vToolSftpResponseWritable, vToolSharePointRequest, vToolSharePointRequestWritable, vToolSharePointResponse, vToolSharePointResponseWritable, vToolSnsRequest, vToolSnsRequestWritable, vToolSnsResponse, vToolSnsResponseWritable, vToolSqlDatabaseRequest, vToolSqlDatabaseRequestWritable, vToolSqlDatabaseResponse, vToolSqlDatabaseResponseWritable, vToolSqsRequest, vToolSqsRequestWritable, vToolSqsResponse, vToolSqsResponseWritable, vUpdatePageRequest, vUpdatePageResponse, vUploadLinkRequest, vUploadLinkResponse, vUserResponse, vUserResponseWritable, vUserSearchRequest, vUserSearchResponse, vUserSearchResponseWritable, vWorkflowAiAgentRequest, vWorkflowAiAgentRequestWritable, vWorkflowAiAgentResponse, vWorkflowAiAgentResponseWritable, vWorkflowLogListResponse, vWorkflowLogListResponseWritable, vWorkflowLogResponse, vWorkflowLogResponseWritable };
49602
49714
  //# sourceMappingURL=index.d.mts.map