@alvera-ai/platform-sdk 0.10.0-rc.2 → 0.10.0-rc.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1167 -437
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +320 -155
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -59,10 +59,7 @@ type ActionExecutionLogResponse = {
|
|
|
59
59
|
* Action ID
|
|
60
60
|
*/
|
|
61
61
|
action_id: string;
|
|
62
|
-
|
|
63
|
-
* Action type
|
|
64
|
-
*/
|
|
65
|
-
action_type: 'sms' | 'email' | 'voice' | 'data_exchange';
|
|
62
|
+
action_type: ActionType;
|
|
66
63
|
/**
|
|
67
64
|
* Batch identifier
|
|
68
65
|
*/
|
|
@@ -500,6 +497,21 @@ type IngestRequest = {
|
|
|
500
497
|
[key: string]: unknown;
|
|
501
498
|
};
|
|
502
499
|
};
|
|
500
|
+
/**
|
|
501
|
+
* ToolIntent
|
|
502
|
+
*
|
|
503
|
+
* Tool intent — what category of capability the tool provides.
|
|
504
|
+
*/
|
|
505
|
+
declare enum ToolIntent {
|
|
506
|
+
SMS = "sms",
|
|
507
|
+
EMAIL = "email",
|
|
508
|
+
EXPORT = "export",
|
|
509
|
+
VOICE = "voice",
|
|
510
|
+
DATA_EXCHANGE = "data_exchange",
|
|
511
|
+
STATUS_POLLER = "status_poller",
|
|
512
|
+
CHAT_COMPLETION = "chat_completion",
|
|
513
|
+
CONTEXT_EXTRACTION = "context_extraction",
|
|
514
|
+
}
|
|
503
515
|
/**
|
|
504
516
|
* AWSLambdaResponse
|
|
505
517
|
*
|
|
@@ -759,6 +771,17 @@ type ResolvePageResponse = {
|
|
|
759
771
|
*/
|
|
760
772
|
user_agent?: string | null;
|
|
761
773
|
};
|
|
774
|
+
/**
|
|
775
|
+
* ActionType
|
|
776
|
+
*
|
|
777
|
+
* Workflow action category — selects the downstream dispatcher.
|
|
778
|
+
*/
|
|
779
|
+
declare enum ActionType {
|
|
780
|
+
SMS = "sms",
|
|
781
|
+
EMAIL = "email",
|
|
782
|
+
VOICE = "voice",
|
|
783
|
+
DATA_EXCHANGE = "data_exchange",
|
|
784
|
+
}
|
|
762
785
|
/**
|
|
763
786
|
* MDMVerifyRequest
|
|
764
787
|
*
|
|
@@ -801,10 +824,7 @@ type MdmVerifyRequest = {
|
|
|
801
824
|
* Workflow action — executes when the decision table routes to this `decision_key`. Polymorphic `tool_call` payload is variant-specific via `tool_call_type` discriminator.
|
|
802
825
|
*/
|
|
803
826
|
type ActionResponse = {
|
|
804
|
-
|
|
805
|
-
* Action type; must match the tool's intent
|
|
806
|
-
*/
|
|
807
|
-
action_type: 'sms' | 'email' | 'voice' | 'data_exchange';
|
|
827
|
+
action_type: ActionType;
|
|
808
828
|
/**
|
|
809
829
|
* Hour (0–23) when the action's execution window closes
|
|
810
830
|
*/
|
|
@@ -927,6 +947,10 @@ type InteroperabilityContractResponse = {
|
|
|
927
947
|
* URL-friendly slug (derived from name on insert; immutable)
|
|
928
948
|
*/
|
|
929
949
|
slug?: string;
|
|
950
|
+
/**
|
|
951
|
+
* Whether this contract was auto-created by the system (read-only, cannot be edited or deleted)
|
|
952
|
+
*/
|
|
953
|
+
readonly system_created?: boolean;
|
|
930
954
|
/**
|
|
931
955
|
* Template type (synced from template_config.type)
|
|
932
956
|
*/
|
|
@@ -1011,10 +1035,7 @@ type ToolRequest = {
|
|
|
1011
1035
|
* Tool description
|
|
1012
1036
|
*/
|
|
1013
1037
|
description?: string | null;
|
|
1014
|
-
|
|
1015
|
-
* Tool intent — what category of capability the tool provides
|
|
1016
|
-
*/
|
|
1017
|
-
intent?: 'sms' | 'email' | 'export' | 'voice' | 'data_exchange' | 'status_poller' | 'chat_completion' | 'context_extraction';
|
|
1038
|
+
intent?: ToolIntent;
|
|
1018
1039
|
/**
|
|
1019
1040
|
* Tool name
|
|
1020
1041
|
*/
|
|
@@ -1263,6 +1284,17 @@ type RestapiResponse = {
|
|
|
1263
1284
|
type DataActivationClientRestCallResponse = RestCallResponse & {
|
|
1264
1285
|
tool_call_type: 'restapi_request';
|
|
1265
1286
|
};
|
|
1287
|
+
/**
|
|
1288
|
+
* SystemTemplateListResponse
|
|
1289
|
+
*
|
|
1290
|
+
* List of system templates available to this datalake.
|
|
1291
|
+
*/
|
|
1292
|
+
type SystemTemplateListResponse = {
|
|
1293
|
+
/**
|
|
1294
|
+
* Sorted list of system template configs.
|
|
1295
|
+
*/
|
|
1296
|
+
data: Array<SystemTemplateConfig>;
|
|
1297
|
+
};
|
|
1266
1298
|
/**
|
|
1267
1299
|
* DataActivationClientS3CallResponse
|
|
1268
1300
|
*/
|
|
@@ -1348,6 +1380,17 @@ type WorkflowLogListResponse = {
|
|
|
1348
1380
|
data: Array<WorkflowLogResponse>;
|
|
1349
1381
|
meta: PaginationMeta;
|
|
1350
1382
|
};
|
|
1383
|
+
/**
|
|
1384
|
+
* SystemDatasetListResponse
|
|
1385
|
+
*
|
|
1386
|
+
* Industry-registered dataset name strings for the datalake's data domain.
|
|
1387
|
+
*/
|
|
1388
|
+
type SystemDatasetListResponse = {
|
|
1389
|
+
/**
|
|
1390
|
+
* Sorted unique dataset name strings (e.g. `patient`, `appointment`, `legal_entity`).
|
|
1391
|
+
*/
|
|
1392
|
+
datasets: Array<string>;
|
|
1393
|
+
};
|
|
1351
1394
|
/**
|
|
1352
1395
|
* GenericTableListResponse
|
|
1353
1396
|
*
|
|
@@ -1458,6 +1501,27 @@ type ActionStatusUpdaterCloudWatchQueryResponse = CloudWatchQueryResponse & {
|
|
|
1458
1501
|
type ToolSqlDatabaseResponse = SqlDatabaseResponse & {
|
|
1459
1502
|
tool_body_type: 'sql_database';
|
|
1460
1503
|
};
|
|
1504
|
+
/**
|
|
1505
|
+
* SystemTemplateConfig
|
|
1506
|
+
*
|
|
1507
|
+
* One system template — identifier, Liquid source, and optional output schema.
|
|
1508
|
+
*/
|
|
1509
|
+
type SystemTemplateConfig = {
|
|
1510
|
+
/**
|
|
1511
|
+
* Raw Liquid template source.
|
|
1512
|
+
*/
|
|
1513
|
+
content: string;
|
|
1514
|
+
/**
|
|
1515
|
+
* JSON Schema describing the template's rendered output, read from the companion `_*.meta.json`. `null` when no schema is declared.
|
|
1516
|
+
*/
|
|
1517
|
+
output_schema: {
|
|
1518
|
+
[key: string]: unknown;
|
|
1519
|
+
} | null;
|
|
1520
|
+
/**
|
|
1521
|
+
* System template identifier — the same string the UI stores when a user selects a system template (e.g. `ai_agents/healthcare/contact_message_categorizer`).
|
|
1522
|
+
*/
|
|
1523
|
+
path: string;
|
|
1524
|
+
};
|
|
1461
1525
|
/**
|
|
1462
1526
|
* BatchLogResponse
|
|
1463
1527
|
*
|
|
@@ -2161,10 +2225,7 @@ type ToolResponse = {
|
|
|
2161
2225
|
* Creation timestamp
|
|
2162
2226
|
*/
|
|
2163
2227
|
readonly inserted_at?: string;
|
|
2164
|
-
|
|
2165
|
-
* Tool intent — what category of capability the tool provides
|
|
2166
|
-
*/
|
|
2167
|
-
intent?: 'sms' | 'email' | 'export' | 'voice' | 'data_exchange' | 'status_poller' | 'chat_completion' | 'context_extraction';
|
|
2228
|
+
intent?: ToolIntent;
|
|
2168
2229
|
/**
|
|
2169
2230
|
* Tool name
|
|
2170
2231
|
*/
|
|
@@ -3570,10 +3631,7 @@ type AgenticWorkflowRequestWritable = {
|
|
|
3570
3631
|
* Workflow action — executes when the decision table routes to this `decision_key`. Polymorphic `tool_call` payload is variant-specific via `tool_call_type` discriminator.
|
|
3571
3632
|
*/
|
|
3572
3633
|
type ActionResponseWritable = {
|
|
3573
|
-
|
|
3574
|
-
* Action type; must match the tool's intent
|
|
3575
|
-
*/
|
|
3576
|
-
action_type: 'sms' | 'email' | 'voice' | 'data_exchange';
|
|
3634
|
+
action_type: ActionType;
|
|
3577
3635
|
/**
|
|
3578
3636
|
* Hour (0–23) when the action's execution window closes
|
|
3579
3637
|
*/
|
|
@@ -3666,10 +3724,7 @@ type ToolRequestWritable = {
|
|
|
3666
3724
|
* Tool description
|
|
3667
3725
|
*/
|
|
3668
3726
|
description?: string | null;
|
|
3669
|
-
|
|
3670
|
-
* Tool intent — what category of capability the tool provides
|
|
3671
|
-
*/
|
|
3672
|
-
intent?: 'sms' | 'email' | 'export' | 'voice' | 'data_exchange' | 'status_poller' | 'chat_completion' | 'context_extraction';
|
|
3727
|
+
intent?: ToolIntent;
|
|
3673
3728
|
/**
|
|
3674
3729
|
* Tool name
|
|
3675
3730
|
*/
|
|
@@ -4382,6 +4437,7 @@ type DataActivationClientRequestWritable = {
|
|
|
4382
4437
|
* DAC name
|
|
4383
4438
|
*/
|
|
4384
4439
|
name: string;
|
|
4440
|
+
response_extractor?: TemplateConfigRequestWritable;
|
|
4385
4441
|
/**
|
|
4386
4442
|
* Optional row-level Liquid filter. Rows for which it renders 'true' are skipped.
|
|
4387
4443
|
*/
|
|
@@ -5161,10 +5217,8 @@ declare function _buildApi(myClient: Client): {
|
|
|
5161
5217
|
request: Request;
|
|
5162
5218
|
response: Response;
|
|
5163
5219
|
}>;
|
|
5164
|
-
|
|
5165
|
-
data:
|
|
5166
|
-
datasets: Array<string>;
|
|
5167
|
-
};
|
|
5220
|
+
systemDatasets: (tenantSlug: string, datalakeSlug: string) => Promise<{
|
|
5221
|
+
data: SystemDatasetListResponse;
|
|
5168
5222
|
request: Request;
|
|
5169
5223
|
response: Response;
|
|
5170
5224
|
}>;
|
|
@@ -5196,6 +5250,11 @@ declare function _buildApi(myClient: Client): {
|
|
|
5196
5250
|
request: Request;
|
|
5197
5251
|
response: Response;
|
|
5198
5252
|
}>;
|
|
5253
|
+
get: (tenantSlug: string, datalakeSlug: string, id: string) => Promise<{
|
|
5254
|
+
data: DataSourceResponse;
|
|
5255
|
+
request: Request;
|
|
5256
|
+
response: Response;
|
|
5257
|
+
}>;
|
|
5199
5258
|
create: (tenantSlug: string, datalakeSlug: string, body: DataSourceRequestWritable) => Promise<{
|
|
5200
5259
|
data: DataSourceResponse;
|
|
5201
5260
|
request: Request;
|
|
@@ -5245,6 +5304,11 @@ declare function _buildApi(myClient: Client): {
|
|
|
5245
5304
|
request: Request;
|
|
5246
5305
|
response: Response;
|
|
5247
5306
|
}>;
|
|
5307
|
+
get: (tenantSlug: string, datalakeSlug: string, name: string) => Promise<{
|
|
5308
|
+
data: GenericTableResponse;
|
|
5309
|
+
request: Request;
|
|
5310
|
+
response: Response;
|
|
5311
|
+
}>;
|
|
5248
5312
|
create: (tenantSlug: string, datalakeSlug: string, body: CreateGenericTableRequest) => Promise<{
|
|
5249
5313
|
data: GenericTableResponse;
|
|
5250
5314
|
request: Request;
|
|
@@ -5257,6 +5321,11 @@ declare function _buildApi(myClient: Client): {
|
|
|
5257
5321
|
request: Request;
|
|
5258
5322
|
response: Response;
|
|
5259
5323
|
}>;
|
|
5324
|
+
get: (tenantSlug: string, id: string) => Promise<{
|
|
5325
|
+
data: ActionStatusUpdaterResponse;
|
|
5326
|
+
request: Request;
|
|
5327
|
+
response: Response;
|
|
5328
|
+
}>;
|
|
5260
5329
|
create: (tenantSlug: string, body: CreateActionStatusUpdaterRequest) => Promise<{
|
|
5261
5330
|
data: ActionStatusUpdaterResponse;
|
|
5262
5331
|
request: Request;
|
|
@@ -5268,6 +5337,13 @@ declare function _buildApi(myClient: Client): {
|
|
|
5268
5337
|
response: Response;
|
|
5269
5338
|
}>;
|
|
5270
5339
|
};
|
|
5340
|
+
templates: {
|
|
5341
|
+
systemTemplates: (tenantSlug: string, datalakeSlug: string) => Promise<{
|
|
5342
|
+
data: SystemTemplateListResponse;
|
|
5343
|
+
request: Request;
|
|
5344
|
+
response: Response;
|
|
5345
|
+
}>;
|
|
5346
|
+
};
|
|
5271
5347
|
aiAgents: {
|
|
5272
5348
|
list: (tenantSlug: string, datalakeSlug: string) => Promise<{
|
|
5273
5349
|
data: AiAgentListResponse;
|
|
@@ -5583,6 +5659,332 @@ declare const vUserSearchResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
5583
5659
|
search_query: string;
|
|
5584
5660
|
status?: "new" | "in_progress" | "completed" | "error" | null | undefined;
|
|
5585
5661
|
}>]>;
|
|
5662
|
+
/**
|
|
5663
|
+
* ManualUploadRequest
|
|
5664
|
+
*
|
|
5665
|
+
* Manual upload marker tool — no configuration fields, just an identity marker for manual ingestion workflows. Request
|
|
5666
|
+
*/
|
|
5667
|
+
declare const vManualUploadRequest: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
|
|
5668
|
+
/**
|
|
5669
|
+
* ContextDatasetResponse
|
|
5670
|
+
*
|
|
5671
|
+
* Context dataset for a workflow — declares which records the context builder should load (and under what filter) before the enrichment and decision stages.
|
|
5672
|
+
*/
|
|
5673
|
+
declare const vContextDatasetResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5674
|
+
readonly dataset_type: v.StringSchema<undefined>;
|
|
5675
|
+
readonly generic_table_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
5676
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
5677
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
5678
|
+
readonly limit: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
5679
|
+
readonly position: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, 0>;
|
|
5680
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
5681
|
+
readonly where_clause: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5682
|
+
readonly workflow_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
5683
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5684
|
+
dataset_type: string;
|
|
5685
|
+
generic_table_id?: string | null | undefined;
|
|
5686
|
+
id?: string | null | undefined;
|
|
5687
|
+
inserted_at?: string | null | undefined;
|
|
5688
|
+
limit?: number | null | undefined;
|
|
5689
|
+
position: number;
|
|
5690
|
+
updated_at?: string | null | undefined;
|
|
5691
|
+
where_clause?: string | null | undefined;
|
|
5692
|
+
workflow_id?: string | null | undefined;
|
|
5693
|
+
}>]>;
|
|
5694
|
+
/**
|
|
5695
|
+
* DatalakeRequest
|
|
5696
|
+
*
|
|
5697
|
+
* Datalake configuration. Secrets (DB passwords, credentials) are write-only — accepted on create but never returned in responses. Request
|
|
5698
|
+
*/
|
|
5699
|
+
declare const vDatalakeRequest: v.ObjectSchema<{
|
|
5700
|
+
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5701
|
+
readonly unregulated_db_reader_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
5702
|
+
readonly regulated_data_db_reader_host: v.StringSchema<undefined>;
|
|
5703
|
+
readonly regulated_data_db_reader_name: v.StringSchema<undefined>;
|
|
5704
|
+
readonly regulated_data_db_reader_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
5705
|
+
readonly unregulated_db_writer_schema: v.StringSchema<undefined>;
|
|
5706
|
+
readonly unregulated_db_writer_name: v.StringSchema<undefined>;
|
|
5707
|
+
readonly regulated_data_db_reader_schema: v.StringSchema<undefined>;
|
|
5708
|
+
readonly unregulated_db_writer_host: v.StringSchema<undefined>;
|
|
5709
|
+
readonly regulated_data_db_writer_name: v.StringSchema<undefined>;
|
|
5710
|
+
readonly unregulated_db_reader_name: v.StringSchema<undefined>;
|
|
5711
|
+
readonly unregulated_db_writer_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
5712
|
+
readonly name: v.StringSchema<undefined>;
|
|
5713
|
+
readonly description: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5714
|
+
readonly pool_size: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
5715
|
+
readonly unregulated_db_reader_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
5716
|
+
readonly unregulated_db_reader_host: v.StringSchema<undefined>;
|
|
5717
|
+
readonly regulated_data_db_reader_enable_ssl: v.BooleanSchema<undefined>;
|
|
5718
|
+
readonly unregulated_db_reader_enable_ssl: v.BooleanSchema<undefined>;
|
|
5719
|
+
readonly regulated_data_db_writer_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
5720
|
+
readonly unregulated_db_writer_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
5721
|
+
readonly unregulated_db_writer_enable_ssl: v.BooleanSchema<undefined>;
|
|
5722
|
+
readonly unregulated_db_reader_schema: v.StringSchema<undefined>;
|
|
5723
|
+
readonly regulated_data_db_writer_enable_ssl: v.BooleanSchema<undefined>;
|
|
5724
|
+
readonly regulated_data_db_writer_schema: v.StringSchema<undefined>;
|
|
5725
|
+
readonly regulated_data_db_writer_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
5726
|
+
readonly regulated_data_db_writer_host: v.StringSchema<undefined>;
|
|
5727
|
+
readonly regulated_data_db_reader_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
5728
|
+
readonly timezone: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5729
|
+
readonly data_domain: v.PicklistSchema<["healthcare", "core_banking", "payment_risk", "accounts_receivable", "service_commerce", "trading", "foundation"], undefined>;
|
|
5730
|
+
}, undefined>;
|
|
5731
|
+
/**
|
|
5732
|
+
* CloudWatchLogGroupResponse
|
|
5733
|
+
*
|
|
5734
|
+
* AWS CloudWatch Logs authentication credential store. Referenced by ActionStatusUpdater for log-group polling.
|
|
5735
|
+
*/
|
|
5736
|
+
declare const vCloudWatchLogGroupResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5737
|
+
readonly access_key_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5738
|
+
readonly assume_role_arn: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>;
|
|
5739
|
+
readonly assume_role_external_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5740
|
+
readonly auth_method: v.PicklistSchema<["access_key", "iam_role", "assume_role"], undefined>;
|
|
5741
|
+
readonly endpoint_url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5742
|
+
readonly region: v.StringSchema<undefined>;
|
|
5743
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5744
|
+
access_key_id?: string | null | undefined;
|
|
5745
|
+
assume_role_arn?: string | null | undefined;
|
|
5746
|
+
assume_role_external_id?: string | null | undefined;
|
|
5747
|
+
auth_method: "iam_role" | "access_key" | "assume_role";
|
|
5748
|
+
endpoint_url?: string | null | undefined;
|
|
5749
|
+
region: string;
|
|
5750
|
+
}>]>;
|
|
5751
|
+
/**
|
|
5752
|
+
* S3CallRequest
|
|
5753
|
+
*
|
|
5754
|
+
* S3 file-path descriptor — identifies an object for downstream validation/read. Request
|
|
5755
|
+
*/
|
|
5756
|
+
declare const vS3CallRequest: v.ObjectSchema<{
|
|
5757
|
+
readonly file_path: v.StringSchema<undefined>;
|
|
5758
|
+
}, undefined>;
|
|
5759
|
+
/**
|
|
5760
|
+
* CloudflarePagesConfigResponse
|
|
5761
|
+
*
|
|
5762
|
+
* Cloudflare Pages deployment configuration for managed Connected Apps
|
|
5763
|
+
*/
|
|
5764
|
+
declare const vCloudflarePagesConfigResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5765
|
+
readonly account_id: v.StringSchema<undefined>;
|
|
5766
|
+
readonly build_command: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5767
|
+
readonly destination_dir: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5768
|
+
readonly github_auth_method: v.PicklistSchema<["github_app", "pat"], undefined>;
|
|
5769
|
+
readonly production_branch: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5770
|
+
readonly project_name: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5771
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5772
|
+
account_id: string;
|
|
5773
|
+
build_command?: string | null | undefined;
|
|
5774
|
+
destination_dir?: string | null | undefined;
|
|
5775
|
+
github_auth_method: "github_app" | "pat";
|
|
5776
|
+
production_branch?: string | null | undefined;
|
|
5777
|
+
project_name?: string | null | undefined;
|
|
5778
|
+
}>]>;
|
|
5779
|
+
/**
|
|
5780
|
+
* TenantResponse
|
|
5781
|
+
*
|
|
5782
|
+
* Tenant resource. The auto-generated `TenantRequest` shape carries only
|
|
5783
|
+
* the writable fields (`name`, `description`); `TenantResponse` returns the
|
|
5784
|
+
* full read surface (`id`, `slug`, `name`, `description`).
|
|
5785
|
+
*
|
|
5786
|
+
*/
|
|
5787
|
+
declare const vTenantResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5788
|
+
readonly description: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 1000, undefined>]>, undefined>;
|
|
5789
|
+
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
5790
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 160, undefined>]>;
|
|
5791
|
+
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>;
|
|
5792
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5793
|
+
description?: string | null | undefined;
|
|
5794
|
+
readonly id: string;
|
|
5795
|
+
name: string;
|
|
5796
|
+
readonly slug: string;
|
|
5797
|
+
}>]>;
|
|
5798
|
+
/**
|
|
5799
|
+
* MembershipResponse
|
|
5800
|
+
*
|
|
5801
|
+
* Tenant membership — binds a user to a tenant with a role.
|
|
5802
|
+
*/
|
|
5803
|
+
declare const vMembershipResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5804
|
+
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
5805
|
+
readonly role: v.SchemaWithPipe<readonly [v.PicklistSchema<["member", "researcher", "admin"], undefined>, v.ReadonlyAction<"member" | "researcher" | "admin">]>;
|
|
5806
|
+
readonly tenant: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5807
|
+
readonly description: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 1000, undefined>]>, undefined>;
|
|
5808
|
+
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
5809
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 160, undefined>]>;
|
|
5810
|
+
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>;
|
|
5811
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5812
|
+
description?: string | null | undefined;
|
|
5813
|
+
readonly id: string;
|
|
5814
|
+
name: string;
|
|
5815
|
+
readonly slug: string;
|
|
5816
|
+
}>]>, undefined>;
|
|
5817
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5818
|
+
readonly id: string;
|
|
5819
|
+
readonly role: "member" | "researcher" | "admin";
|
|
5820
|
+
tenant?: Readonly<{
|
|
5821
|
+
description?: string | null | undefined;
|
|
5822
|
+
readonly id: string;
|
|
5823
|
+
name: string;
|
|
5824
|
+
readonly slug: string;
|
|
5825
|
+
}> | null | undefined;
|
|
5826
|
+
}>]>;
|
|
5827
|
+
/**
|
|
5828
|
+
* S3CallResponse
|
|
5829
|
+
*
|
|
5830
|
+
* S3 file-path descriptor — identifies an object for downstream validation/read.
|
|
5831
|
+
*/
|
|
5832
|
+
declare const vS3CallResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5833
|
+
readonly file_path: v.StringSchema<undefined>;
|
|
5834
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5835
|
+
file_path: string;
|
|
5836
|
+
}>]>;
|
|
5837
|
+
/**
|
|
5838
|
+
* IngestRequest
|
|
5839
|
+
*
|
|
5840
|
+
* Request body for data ingestion
|
|
5841
|
+
*/
|
|
5842
|
+
declare const vIngestRequest: v.ObjectSchema<{
|
|
5843
|
+
readonly data: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
|
|
5844
|
+
}, undefined>;
|
|
5845
|
+
/**
|
|
5846
|
+
* ToolIntent
|
|
5847
|
+
*
|
|
5848
|
+
* Tool intent — what category of capability the tool provides.
|
|
5849
|
+
*/
|
|
5850
|
+
declare const vToolIntent: v.PicklistSchema<["sms", "email", "export", "voice", "data_exchange", "status_poller", "chat_completion", "context_extraction"], undefined>;
|
|
5851
|
+
/**
|
|
5852
|
+
* AWSLambdaResponse
|
|
5853
|
+
*
|
|
5854
|
+
* AWS Lambda tool configuration supporting managed (CloudFormation-deployed) and external (user-provided ARN) modes.
|
|
5855
|
+
*/
|
|
5856
|
+
declare const vAwsLambdaResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5857
|
+
readonly access_key_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5858
|
+
readonly auth_method: v.NullishSchema<v.PicklistSchema<["access_key", "iam_role", "cloudformation"], undefined>, undefined>;
|
|
5859
|
+
readonly env_vars: v.NullishSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
5860
|
+
readonly error: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5861
|
+
readonly function_arn: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5862
|
+
readonly secrets: v.NullishSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
5863
|
+
readonly secrets_manager_secret_arn: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5864
|
+
readonly ssm_config_key: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5865
|
+
readonly stack_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5866
|
+
readonly stack_name: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5867
|
+
readonly stack_status: v.NullishSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["create_in_progress", "create_complete", "create_failed", "rollback_in_progress", "rollback_complete", "rollback_failed", "delete_in_progress", "delete_complete", "delete_failed", "update_in_progress", "update_complete", "update_failed", "update_rollback_complete", "update_rollback_failed"], undefined>, v.ReadonlyAction<"create_in_progress" | "create_complete" | "create_failed" | "rollback_in_progress" | "rollback_complete" | "rollback_failed" | "delete_in_progress" | "delete_complete" | "delete_failed" | "update_in_progress" | "update_complete" | "update_failed" | "update_rollback_complete" | "update_rollback_failed">]>, undefined>;
|
|
5868
|
+
readonly type: v.PicklistSchema<["managed", "external"], undefined>;
|
|
5869
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5870
|
+
access_key_id?: string | null | undefined;
|
|
5871
|
+
auth_method?: "iam_role" | "access_key" | "cloudformation" | null | undefined;
|
|
5872
|
+
env_vars?: unknown[] | null | undefined;
|
|
5873
|
+
error?: string | null | undefined;
|
|
5874
|
+
function_arn?: string | null | undefined;
|
|
5875
|
+
secrets?: unknown[] | null | undefined;
|
|
5876
|
+
secrets_manager_secret_arn?: string | null | undefined;
|
|
5877
|
+
ssm_config_key?: string | null | undefined;
|
|
5878
|
+
stack_id?: string | null | undefined;
|
|
5879
|
+
stack_name?: string | null | undefined;
|
|
5880
|
+
stack_status?: "create_in_progress" | "create_complete" | "create_failed" | "rollback_in_progress" | "rollback_complete" | "rollback_failed" | "delete_in_progress" | "delete_complete" | "delete_failed" | "update_in_progress" | "update_complete" | "update_failed" | "update_rollback_complete" | "update_rollback_failed" | null | undefined;
|
|
5881
|
+
type: "managed" | "external";
|
|
5882
|
+
}>]>;
|
|
5883
|
+
/**
|
|
5884
|
+
* UserResponse
|
|
5885
|
+
*
|
|
5886
|
+
* Lean user reference — id, email, and names
|
|
5887
|
+
*/
|
|
5888
|
+
declare const vUserResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5889
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EmailAction<string, undefined>]>;
|
|
5890
|
+
readonly first_name: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5891
|
+
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
5892
|
+
readonly last_name: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5893
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5894
|
+
email: string;
|
|
5895
|
+
first_name?: string | null | undefined;
|
|
5896
|
+
readonly id: string;
|
|
5897
|
+
last_name?: string | null | undefined;
|
|
5898
|
+
}>]>;
|
|
5899
|
+
/**
|
|
5900
|
+
* ExecuteActionRequest
|
|
5901
|
+
*
|
|
5902
|
+
* Request body for executing a workflow action for a dataset record
|
|
5903
|
+
*/
|
|
5904
|
+
declare const vExecuteActionRequest: v.ObjectSchema<{
|
|
5905
|
+
readonly dataset_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
5906
|
+
readonly decision_key: v.StringSchema<undefined>;
|
|
5907
|
+
readonly manual_override: v.NullishSchema<v.BooleanSchema<undefined>, false>;
|
|
5908
|
+
readonly mode: v.NullishSchema<v.PicklistSchema<["live", "dry_run"], undefined>, "live">;
|
|
5909
|
+
}, undefined>;
|
|
5910
|
+
/**
|
|
5911
|
+
* MDMNotVerified
|
|
5912
|
+
*/
|
|
5913
|
+
declare const vMdmNotVerified: v.ObjectSchema<{
|
|
5914
|
+
readonly errors: v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5915
|
+
readonly status: v.PicklistSchema<["not_verified"], undefined>;
|
|
5916
|
+
readonly subject_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
5917
|
+
readonly verified_at: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
|
|
5918
|
+
}, undefined>;
|
|
5919
|
+
/**
|
|
5920
|
+
* TemplateConfigResponse
|
|
5921
|
+
*
|
|
5922
|
+
* Inline Liquid template configuration
|
|
5923
|
+
*/
|
|
5924
|
+
declare const vTemplateConfigResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5925
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5926
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5927
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
5928
|
+
}, undefined>, v.ReadonlyAction<{
|
|
5929
|
+
body?: string | null | undefined;
|
|
5930
|
+
path?: string | null | undefined;
|
|
5931
|
+
type: "system" | "custom" | "identity" | "null";
|
|
5932
|
+
}>]>;
|
|
5933
|
+
/**
|
|
5934
|
+
* InteroperabilityRunResponse
|
|
5935
|
+
*
|
|
5936
|
+
* Pipeline output for a single row. `stage` indicates the last pipeline stage reached; `transformed`/`mdm_input` are populated only when that stage executed successfully.
|
|
5937
|
+
*/
|
|
5938
|
+
declare const vInteroperabilityRunResponse: v.ObjectSchema<{
|
|
5939
|
+
readonly filter_result: v.PicklistSchema<["pass", "skip"], undefined>;
|
|
5940
|
+
readonly mdm_input: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
5941
|
+
readonly stage: v.PicklistSchema<["completed", "filtered"], undefined>;
|
|
5942
|
+
readonly transformed: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
5943
|
+
}, undefined>;
|
|
5944
|
+
/**
|
|
5945
|
+
* ErrorResponse
|
|
5946
|
+
*
|
|
5947
|
+
* Error response
|
|
5948
|
+
*/
|
|
5949
|
+
declare const vErrorResponse: v.ObjectSchema<{
|
|
5950
|
+
readonly errors: v.NullishSchema<v.ObjectSchema<{}, undefined>, undefined>;
|
|
5951
|
+
}, undefined>;
|
|
5952
|
+
/**
|
|
5953
|
+
* ResolvePageResponse
|
|
5954
|
+
*
|
|
5955
|
+
* Resolved page token details for the connected app to render
|
|
5956
|
+
*/
|
|
5957
|
+
declare const vResolvePageResponse: v.ObjectSchema<{
|
|
5958
|
+
readonly additional_context: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
5959
|
+
readonly expires_at: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
|
|
5960
|
+
readonly message: v.NullishSchema<v.ObjectSchema<{
|
|
5961
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5962
|
+
readonly channel: v.PicklistSchema<["sms", "email", "voice", "web_form", "push"], undefined>;
|
|
5963
|
+
readonly delivered_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5964
|
+
readonly external_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5965
|
+
readonly failure_reason: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5966
|
+
readonly form_submitted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5967
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
5968
|
+
readonly metadata: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
5969
|
+
readonly opened_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5970
|
+
readonly queued_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5971
|
+
readonly read_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5972
|
+
readonly sent_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5973
|
+
readonly sms_carrier: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5974
|
+
readonly status: v.PicklistSchema<["pending", "queued", "sent", "delivered", "failed", "received", "clicked"], undefined>;
|
|
5975
|
+
readonly subject: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5976
|
+
}, undefined>, undefined>;
|
|
5977
|
+
readonly route_path: v.StringSchema<undefined>;
|
|
5978
|
+
readonly subject_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
5979
|
+
readonly url_hash: v.StringSchema<undefined>;
|
|
5980
|
+
readonly user_agent: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5981
|
+
}, undefined>;
|
|
5982
|
+
/**
|
|
5983
|
+
* ActionType
|
|
5984
|
+
*
|
|
5985
|
+
* Workflow action category — selects the downstream dispatcher.
|
|
5986
|
+
*/
|
|
5987
|
+
declare const vActionType: v.PicklistSchema<["sms", "email", "voice", "data_exchange"], undefined>;
|
|
5586
5988
|
/**
|
|
5587
5989
|
* ActionExecutionLogResponse
|
|
5588
5990
|
*
|
|
@@ -5628,325 +6030,11 @@ declare const vActionExecutionLogResponse: v.SchemaWithPipe<readonly [v.ObjectSc
|
|
|
5628
6030
|
runtime_filter_result?: boolean | null | undefined;
|
|
5629
6031
|
scheduled_at?: string | null | undefined;
|
|
5630
6032
|
started_at?: string | null | undefined;
|
|
5631
|
-
status: "completed" | "
|
|
6033
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
5632
6034
|
updated_at?: string | null | undefined;
|
|
5633
6035
|
workflow_execution_log_id: string;
|
|
5634
6036
|
workflow_id: string;
|
|
5635
6037
|
}>]>;
|
|
5636
|
-
/**
|
|
5637
|
-
* ManualUploadRequest
|
|
5638
|
-
*
|
|
5639
|
-
* Manual upload marker tool — no configuration fields, just an identity marker for manual ingestion workflows. Request
|
|
5640
|
-
*/
|
|
5641
|
-
declare const vManualUploadRequest: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
|
|
5642
|
-
/**
|
|
5643
|
-
* ContextDatasetResponse
|
|
5644
|
-
*
|
|
5645
|
-
* Context dataset for a workflow — declares which records the context builder should load (and under what filter) before the enrichment and decision stages.
|
|
5646
|
-
*/
|
|
5647
|
-
declare const vContextDatasetResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5648
|
-
readonly dataset_type: v.StringSchema<undefined>;
|
|
5649
|
-
readonly generic_table_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
5650
|
-
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
5651
|
-
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
5652
|
-
readonly limit: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
5653
|
-
readonly position: v.NullishSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, 0>;
|
|
5654
|
-
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
5655
|
-
readonly where_clause: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5656
|
-
readonly workflow_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
5657
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5658
|
-
dataset_type: string;
|
|
5659
|
-
generic_table_id?: string | null | undefined;
|
|
5660
|
-
id?: string | null | undefined;
|
|
5661
|
-
inserted_at?: string | null | undefined;
|
|
5662
|
-
limit?: number | null | undefined;
|
|
5663
|
-
position: number;
|
|
5664
|
-
updated_at?: string | null | undefined;
|
|
5665
|
-
where_clause?: string | null | undefined;
|
|
5666
|
-
workflow_id?: string | null | undefined;
|
|
5667
|
-
}>]>;
|
|
5668
|
-
/**
|
|
5669
|
-
* DatalakeRequest
|
|
5670
|
-
*
|
|
5671
|
-
* Datalake configuration. Secrets (DB passwords, credentials) are write-only — accepted on create but never returned in responses. Request
|
|
5672
|
-
*/
|
|
5673
|
-
declare const vDatalakeRequest: v.ObjectSchema<{
|
|
5674
|
-
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5675
|
-
readonly unregulated_db_reader_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
5676
|
-
readonly regulated_data_db_reader_host: v.StringSchema<undefined>;
|
|
5677
|
-
readonly regulated_data_db_reader_name: v.StringSchema<undefined>;
|
|
5678
|
-
readonly regulated_data_db_reader_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
5679
|
-
readonly unregulated_db_writer_schema: v.StringSchema<undefined>;
|
|
5680
|
-
readonly unregulated_db_writer_name: v.StringSchema<undefined>;
|
|
5681
|
-
readonly regulated_data_db_reader_schema: v.StringSchema<undefined>;
|
|
5682
|
-
readonly unregulated_db_writer_host: v.StringSchema<undefined>;
|
|
5683
|
-
readonly regulated_data_db_writer_name: v.StringSchema<undefined>;
|
|
5684
|
-
readonly unregulated_db_reader_name: v.StringSchema<undefined>;
|
|
5685
|
-
readonly unregulated_db_writer_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
5686
|
-
readonly name: v.StringSchema<undefined>;
|
|
5687
|
-
readonly description: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5688
|
-
readonly pool_size: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
5689
|
-
readonly unregulated_db_reader_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
5690
|
-
readonly unregulated_db_reader_host: v.StringSchema<undefined>;
|
|
5691
|
-
readonly regulated_data_db_reader_enable_ssl: v.BooleanSchema<undefined>;
|
|
5692
|
-
readonly unregulated_db_reader_enable_ssl: v.BooleanSchema<undefined>;
|
|
5693
|
-
readonly regulated_data_db_writer_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
5694
|
-
readonly unregulated_db_writer_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
5695
|
-
readonly unregulated_db_writer_enable_ssl: v.BooleanSchema<undefined>;
|
|
5696
|
-
readonly unregulated_db_reader_schema: v.StringSchema<undefined>;
|
|
5697
|
-
readonly regulated_data_db_writer_enable_ssl: v.BooleanSchema<undefined>;
|
|
5698
|
-
readonly regulated_data_db_writer_schema: v.StringSchema<undefined>;
|
|
5699
|
-
readonly regulated_data_db_writer_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
5700
|
-
readonly regulated_data_db_writer_host: v.StringSchema<undefined>;
|
|
5701
|
-
readonly regulated_data_db_reader_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
5702
|
-
readonly timezone: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5703
|
-
readonly data_domain: v.PicklistSchema<["healthcare", "core_banking", "payment_risk", "accounts_receivable", "service_commerce", "trading", "foundation"], undefined>;
|
|
5704
|
-
}, undefined>;
|
|
5705
|
-
/**
|
|
5706
|
-
* CloudWatchLogGroupResponse
|
|
5707
|
-
*
|
|
5708
|
-
* AWS CloudWatch Logs authentication credential store. Referenced by ActionStatusUpdater for log-group polling.
|
|
5709
|
-
*/
|
|
5710
|
-
declare const vCloudWatchLogGroupResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5711
|
-
readonly access_key_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5712
|
-
readonly assume_role_arn: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>;
|
|
5713
|
-
readonly assume_role_external_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5714
|
-
readonly auth_method: v.PicklistSchema<["access_key", "iam_role", "assume_role"], undefined>;
|
|
5715
|
-
readonly endpoint_url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5716
|
-
readonly region: v.StringSchema<undefined>;
|
|
5717
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5718
|
-
access_key_id?: string | null | undefined;
|
|
5719
|
-
assume_role_arn?: string | null | undefined;
|
|
5720
|
-
assume_role_external_id?: string | null | undefined;
|
|
5721
|
-
auth_method: "iam_role" | "access_key" | "assume_role";
|
|
5722
|
-
endpoint_url?: string | null | undefined;
|
|
5723
|
-
region: string;
|
|
5724
|
-
}>]>;
|
|
5725
|
-
/**
|
|
5726
|
-
* S3CallRequest
|
|
5727
|
-
*
|
|
5728
|
-
* S3 file-path descriptor — identifies an object for downstream validation/read. Request
|
|
5729
|
-
*/
|
|
5730
|
-
declare const vS3CallRequest: v.ObjectSchema<{
|
|
5731
|
-
readonly file_path: v.StringSchema<undefined>;
|
|
5732
|
-
}, undefined>;
|
|
5733
|
-
/**
|
|
5734
|
-
* CloudflarePagesConfigResponse
|
|
5735
|
-
*
|
|
5736
|
-
* Cloudflare Pages deployment configuration for managed Connected Apps
|
|
5737
|
-
*/
|
|
5738
|
-
declare const vCloudflarePagesConfigResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5739
|
-
readonly account_id: v.StringSchema<undefined>;
|
|
5740
|
-
readonly build_command: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5741
|
-
readonly destination_dir: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5742
|
-
readonly github_auth_method: v.PicklistSchema<["github_app", "pat"], undefined>;
|
|
5743
|
-
readonly production_branch: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5744
|
-
readonly project_name: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5745
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5746
|
-
account_id: string;
|
|
5747
|
-
build_command?: string | null | undefined;
|
|
5748
|
-
destination_dir?: string | null | undefined;
|
|
5749
|
-
github_auth_method: "github_app" | "pat";
|
|
5750
|
-
production_branch?: string | null | undefined;
|
|
5751
|
-
project_name?: string | null | undefined;
|
|
5752
|
-
}>]>;
|
|
5753
|
-
/**
|
|
5754
|
-
* TenantResponse
|
|
5755
|
-
*
|
|
5756
|
-
* Tenant resource. The auto-generated `TenantRequest` shape carries only
|
|
5757
|
-
* the writable fields (`name`, `description`); `TenantResponse` returns the
|
|
5758
|
-
* full read surface (`id`, `slug`, `name`, `description`).
|
|
5759
|
-
*
|
|
5760
|
-
*/
|
|
5761
|
-
declare const vTenantResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5762
|
-
readonly description: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 1000, undefined>]>, undefined>;
|
|
5763
|
-
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
5764
|
-
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 160, undefined>]>;
|
|
5765
|
-
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>;
|
|
5766
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5767
|
-
description?: string | null | undefined;
|
|
5768
|
-
readonly id: string;
|
|
5769
|
-
name: string;
|
|
5770
|
-
readonly slug: string;
|
|
5771
|
-
}>]>;
|
|
5772
|
-
/**
|
|
5773
|
-
* MembershipResponse
|
|
5774
|
-
*
|
|
5775
|
-
* Tenant membership — binds a user to a tenant with a role.
|
|
5776
|
-
*/
|
|
5777
|
-
declare const vMembershipResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5778
|
-
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
5779
|
-
readonly role: v.SchemaWithPipe<readonly [v.PicklistSchema<["member", "researcher", "admin"], undefined>, v.ReadonlyAction<"member" | "researcher" | "admin">]>;
|
|
5780
|
-
readonly tenant: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5781
|
-
readonly description: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 1000, undefined>]>, undefined>;
|
|
5782
|
-
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
5783
|
-
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 160, undefined>]>;
|
|
5784
|
-
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>;
|
|
5785
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5786
|
-
description?: string | null | undefined;
|
|
5787
|
-
readonly id: string;
|
|
5788
|
-
name: string;
|
|
5789
|
-
readonly slug: string;
|
|
5790
|
-
}>]>, undefined>;
|
|
5791
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5792
|
-
readonly id: string;
|
|
5793
|
-
readonly role: "member" | "researcher" | "admin";
|
|
5794
|
-
tenant?: Readonly<{
|
|
5795
|
-
description?: string | null | undefined;
|
|
5796
|
-
readonly id: string;
|
|
5797
|
-
name: string;
|
|
5798
|
-
readonly slug: string;
|
|
5799
|
-
}> | null | undefined;
|
|
5800
|
-
}>]>;
|
|
5801
|
-
/**
|
|
5802
|
-
* S3CallResponse
|
|
5803
|
-
*
|
|
5804
|
-
* S3 file-path descriptor — identifies an object for downstream validation/read.
|
|
5805
|
-
*/
|
|
5806
|
-
declare const vS3CallResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5807
|
-
readonly file_path: v.StringSchema<undefined>;
|
|
5808
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5809
|
-
file_path: string;
|
|
5810
|
-
}>]>;
|
|
5811
|
-
/**
|
|
5812
|
-
* IngestRequest
|
|
5813
|
-
*
|
|
5814
|
-
* Request body for data ingestion
|
|
5815
|
-
*/
|
|
5816
|
-
declare const vIngestRequest: v.ObjectSchema<{
|
|
5817
|
-
readonly data: v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>;
|
|
5818
|
-
}, undefined>;
|
|
5819
|
-
/**
|
|
5820
|
-
* AWSLambdaResponse
|
|
5821
|
-
*
|
|
5822
|
-
* AWS Lambda tool configuration supporting managed (CloudFormation-deployed) and external (user-provided ARN) modes.
|
|
5823
|
-
*/
|
|
5824
|
-
declare const vAwsLambdaResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5825
|
-
readonly access_key_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5826
|
-
readonly auth_method: v.NullishSchema<v.PicklistSchema<["access_key", "iam_role", "cloudformation"], undefined>, undefined>;
|
|
5827
|
-
readonly env_vars: v.NullishSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
5828
|
-
readonly error: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5829
|
-
readonly function_arn: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5830
|
-
readonly secrets: v.NullishSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
5831
|
-
readonly secrets_manager_secret_arn: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5832
|
-
readonly ssm_config_key: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5833
|
-
readonly stack_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5834
|
-
readonly stack_name: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
5835
|
-
readonly stack_status: v.NullishSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["create_in_progress", "create_complete", "create_failed", "rollback_in_progress", "rollback_complete", "rollback_failed", "delete_in_progress", "delete_complete", "delete_failed", "update_in_progress", "update_complete", "update_failed", "update_rollback_complete", "update_rollback_failed"], undefined>, v.ReadonlyAction<"create_in_progress" | "create_complete" | "create_failed" | "rollback_in_progress" | "rollback_complete" | "rollback_failed" | "delete_in_progress" | "delete_complete" | "delete_failed" | "update_in_progress" | "update_complete" | "update_failed" | "update_rollback_complete" | "update_rollback_failed">]>, undefined>;
|
|
5836
|
-
readonly type: v.PicklistSchema<["managed", "external"], undefined>;
|
|
5837
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5838
|
-
access_key_id?: string | null | undefined;
|
|
5839
|
-
auth_method?: "iam_role" | "access_key" | "cloudformation" | null | undefined;
|
|
5840
|
-
env_vars?: unknown[] | null | undefined;
|
|
5841
|
-
error?: string | null | undefined;
|
|
5842
|
-
function_arn?: string | null | undefined;
|
|
5843
|
-
secrets?: unknown[] | null | undefined;
|
|
5844
|
-
secrets_manager_secret_arn?: string | null | undefined;
|
|
5845
|
-
ssm_config_key?: string | null | undefined;
|
|
5846
|
-
stack_id?: string | null | undefined;
|
|
5847
|
-
stack_name?: string | null | undefined;
|
|
5848
|
-
stack_status?: "create_in_progress" | "create_complete" | "create_failed" | "rollback_in_progress" | "rollback_complete" | "rollback_failed" | "delete_in_progress" | "delete_complete" | "delete_failed" | "update_in_progress" | "update_complete" | "update_failed" | "update_rollback_complete" | "update_rollback_failed" | null | undefined;
|
|
5849
|
-
type: "managed" | "external";
|
|
5850
|
-
}>]>;
|
|
5851
|
-
/**
|
|
5852
|
-
* UserResponse
|
|
5853
|
-
*
|
|
5854
|
-
* Lean user reference — id, email, and names
|
|
5855
|
-
*/
|
|
5856
|
-
declare const vUserResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5857
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EmailAction<string, undefined>]>;
|
|
5858
|
-
readonly first_name: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5859
|
-
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
5860
|
-
readonly last_name: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5861
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5862
|
-
email: string;
|
|
5863
|
-
first_name?: string | null | undefined;
|
|
5864
|
-
readonly id: string;
|
|
5865
|
-
last_name?: string | null | undefined;
|
|
5866
|
-
}>]>;
|
|
5867
|
-
/**
|
|
5868
|
-
* ExecuteActionRequest
|
|
5869
|
-
*
|
|
5870
|
-
* Request body for executing a workflow action for a dataset record
|
|
5871
|
-
*/
|
|
5872
|
-
declare const vExecuteActionRequest: v.ObjectSchema<{
|
|
5873
|
-
readonly dataset_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
5874
|
-
readonly decision_key: v.StringSchema<undefined>;
|
|
5875
|
-
readonly manual_override: v.NullishSchema<v.BooleanSchema<undefined>, false>;
|
|
5876
|
-
readonly mode: v.NullishSchema<v.PicklistSchema<["live", "dry_run"], undefined>, "live">;
|
|
5877
|
-
}, undefined>;
|
|
5878
|
-
/**
|
|
5879
|
-
* MDMNotVerified
|
|
5880
|
-
*/
|
|
5881
|
-
declare const vMdmNotVerified: v.ObjectSchema<{
|
|
5882
|
-
readonly errors: v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5883
|
-
readonly status: v.PicklistSchema<["not_verified"], undefined>;
|
|
5884
|
-
readonly subject_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
5885
|
-
readonly verified_at: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
|
|
5886
|
-
}, undefined>;
|
|
5887
|
-
/**
|
|
5888
|
-
* TemplateConfigResponse
|
|
5889
|
-
*
|
|
5890
|
-
* Inline Liquid template configuration
|
|
5891
|
-
*/
|
|
5892
|
-
declare const vTemplateConfigResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
5893
|
-
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5894
|
-
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5895
|
-
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
5896
|
-
}, undefined>, v.ReadonlyAction<{
|
|
5897
|
-
body?: string | null | undefined;
|
|
5898
|
-
path?: string | null | undefined;
|
|
5899
|
-
type: "system" | "custom" | "identity" | "null";
|
|
5900
|
-
}>]>;
|
|
5901
|
-
/**
|
|
5902
|
-
* InteroperabilityRunResponse
|
|
5903
|
-
*
|
|
5904
|
-
* Pipeline output for a single row. `stage` indicates the last pipeline stage reached; `transformed`/`mdm_input` are populated only when that stage executed successfully.
|
|
5905
|
-
*/
|
|
5906
|
-
declare const vInteroperabilityRunResponse: v.ObjectSchema<{
|
|
5907
|
-
readonly filter_result: v.PicklistSchema<["pass", "skip"], undefined>;
|
|
5908
|
-
readonly mdm_input: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
5909
|
-
readonly stage: v.PicklistSchema<["completed", "filtered"], undefined>;
|
|
5910
|
-
readonly transformed: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
5911
|
-
}, undefined>;
|
|
5912
|
-
/**
|
|
5913
|
-
* ErrorResponse
|
|
5914
|
-
*
|
|
5915
|
-
* Error response
|
|
5916
|
-
*/
|
|
5917
|
-
declare const vErrorResponse: v.ObjectSchema<{
|
|
5918
|
-
readonly errors: v.NullishSchema<v.ObjectSchema<{}, undefined>, undefined>;
|
|
5919
|
-
}, undefined>;
|
|
5920
|
-
/**
|
|
5921
|
-
* ResolvePageResponse
|
|
5922
|
-
*
|
|
5923
|
-
* Resolved page token details for the connected app to render
|
|
5924
|
-
*/
|
|
5925
|
-
declare const vResolvePageResponse: v.ObjectSchema<{
|
|
5926
|
-
readonly additional_context: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
5927
|
-
readonly expires_at: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>;
|
|
5928
|
-
readonly message: v.NullishSchema<v.ObjectSchema<{
|
|
5929
|
-
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5930
|
-
readonly channel: v.PicklistSchema<["sms", "email", "voice", "web_form", "push"], undefined>;
|
|
5931
|
-
readonly delivered_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5932
|
-
readonly external_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5933
|
-
readonly failure_reason: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5934
|
-
readonly form_submitted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5935
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
5936
|
-
readonly metadata: v.NullishSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
5937
|
-
readonly opened_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5938
|
-
readonly queued_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5939
|
-
readonly read_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5940
|
-
readonly sent_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5941
|
-
readonly sms_carrier: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5942
|
-
readonly status: v.PicklistSchema<["pending", "queued", "sent", "delivered", "failed", "received", "clicked"], undefined>;
|
|
5943
|
-
readonly subject: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5944
|
-
}, undefined>, undefined>;
|
|
5945
|
-
readonly route_path: v.StringSchema<undefined>;
|
|
5946
|
-
readonly subject_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
5947
|
-
readonly url_hash: v.StringSchema<undefined>;
|
|
5948
|
-
readonly user_agent: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
5949
|
-
}, undefined>;
|
|
5950
6038
|
/**
|
|
5951
6039
|
* MDMVerifyRequest
|
|
5952
6040
|
*
|
|
@@ -5983,6 +6071,7 @@ declare const vInteroperabilityContractResponse: v.SchemaWithPipe<readonly [v.Ob
|
|
|
5983
6071
|
readonly name: v.StringSchema<undefined>;
|
|
5984
6072
|
readonly resource_type: v.StringSchema<undefined>;
|
|
5985
6073
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
6074
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
5986
6075
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
5987
6076
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5988
6077
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -5995,6 +6084,7 @@ declare const vInteroperabilityContractResponse: v.SchemaWithPipe<readonly [v.Ob
|
|
|
5995
6084
|
name: string;
|
|
5996
6085
|
resource_type: string;
|
|
5997
6086
|
slug?: string | null | undefined;
|
|
6087
|
+
system_created: boolean;
|
|
5998
6088
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
5999
6089
|
updated_at?: string | null | undefined;
|
|
6000
6090
|
}>]>;
|
|
@@ -6602,6 +6692,14 @@ declare const vSftpCallResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
6602
6692
|
content_type: string;
|
|
6603
6693
|
path: string;
|
|
6604
6694
|
}>]>;
|
|
6695
|
+
/**
|
|
6696
|
+
* SystemDatasetListResponse
|
|
6697
|
+
*
|
|
6698
|
+
* Industry-registered dataset name strings for the datalake's data domain.
|
|
6699
|
+
*/
|
|
6700
|
+
declare const vSystemDatasetListResponse: v.ObjectSchema<{
|
|
6701
|
+
readonly datasets: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
6702
|
+
}, undefined>;
|
|
6605
6703
|
/**
|
|
6606
6704
|
* GenericTableRequest
|
|
6607
6705
|
*
|
|
@@ -6809,6 +6907,28 @@ declare const vManualToolInvocationSmsCallResponse: v.IntersectSchema<[v.SchemaW
|
|
|
6809
6907
|
}>]>, v.ObjectSchema<{
|
|
6810
6908
|
readonly tool_call_type: v.PicklistSchema<["sms_request"], undefined>;
|
|
6811
6909
|
}, undefined>], undefined>;
|
|
6910
|
+
/**
|
|
6911
|
+
* SystemTemplateConfig
|
|
6912
|
+
*
|
|
6913
|
+
* One system template — identifier, Liquid source, and optional output schema.
|
|
6914
|
+
*/
|
|
6915
|
+
declare const vSystemTemplateConfig: v.ObjectSchema<{
|
|
6916
|
+
readonly content: v.StringSchema<undefined>;
|
|
6917
|
+
readonly output_schema: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
6918
|
+
readonly path: v.StringSchema<undefined>;
|
|
6919
|
+
}, undefined>;
|
|
6920
|
+
/**
|
|
6921
|
+
* SystemTemplateListResponse
|
|
6922
|
+
*
|
|
6923
|
+
* List of system templates available to this datalake.
|
|
6924
|
+
*/
|
|
6925
|
+
declare const vSystemTemplateListResponse: v.ObjectSchema<{
|
|
6926
|
+
readonly data: v.ArraySchema<v.ObjectSchema<{
|
|
6927
|
+
readonly content: v.StringSchema<undefined>;
|
|
6928
|
+
readonly output_schema: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
6929
|
+
readonly path: v.StringSchema<undefined>;
|
|
6930
|
+
}, undefined>, undefined>;
|
|
6931
|
+
}, undefined>;
|
|
6812
6932
|
/**
|
|
6813
6933
|
* BatchLogResponse
|
|
6814
6934
|
*
|
|
@@ -8481,7 +8601,7 @@ declare const vWorkflowLogResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
8481
8601
|
runtime_filter_result?: boolean | null | undefined;
|
|
8482
8602
|
scheduled_at?: string | null | undefined;
|
|
8483
8603
|
started_at?: string | null | undefined;
|
|
8484
|
-
status: "completed" | "
|
|
8604
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
8485
8605
|
updated_at?: string | null | undefined;
|
|
8486
8606
|
workflow_execution_log_id: string;
|
|
8487
8607
|
workflow_id: string;
|
|
@@ -8503,7 +8623,7 @@ declare const vWorkflowLogResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
8503
8623
|
runtime_filter_result?: boolean | null | undefined;
|
|
8504
8624
|
scheduled_at?: string | null | undefined;
|
|
8505
8625
|
started_at?: string | null | undefined;
|
|
8506
|
-
status: "completed" | "
|
|
8626
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
8507
8627
|
updated_at?: string | null | undefined;
|
|
8508
8628
|
workflow_execution_log_id: string;
|
|
8509
8629
|
workflow_id: string;
|
|
@@ -8547,7 +8667,7 @@ declare const vWorkflowLogResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
8547
8667
|
runtime_filter_result?: boolean | null | undefined;
|
|
8548
8668
|
scheduled_at?: string | null | undefined;
|
|
8549
8669
|
started_at?: string | null | undefined;
|
|
8550
|
-
status: "completed" | "
|
|
8670
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
8551
8671
|
updated_at?: string | null | undefined;
|
|
8552
8672
|
workflow_execution_log_id: string;
|
|
8553
8673
|
workflow_id: string;
|
|
@@ -8567,7 +8687,7 @@ declare const vWorkflowLogResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
8567
8687
|
mode: "live" | "dry_run";
|
|
8568
8688
|
sampled_event_id?: string | null | undefined;
|
|
8569
8689
|
started_at?: string | null | undefined;
|
|
8570
|
-
status: "completed" | "
|
|
8690
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "partial";
|
|
8571
8691
|
subject_id?: string | null | undefined;
|
|
8572
8692
|
subject_type?: string | null | undefined;
|
|
8573
8693
|
tenant_id?: string | null | undefined;
|
|
@@ -8620,7 +8740,7 @@ declare const vWorkflowLogListResponse: v.ObjectSchema<{
|
|
|
8620
8740
|
runtime_filter_result?: boolean | null | undefined;
|
|
8621
8741
|
scheduled_at?: string | null | undefined;
|
|
8622
8742
|
started_at?: string | null | undefined;
|
|
8623
|
-
status: "completed" | "
|
|
8743
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
8624
8744
|
updated_at?: string | null | undefined;
|
|
8625
8745
|
workflow_execution_log_id: string;
|
|
8626
8746
|
workflow_id: string;
|
|
@@ -8642,7 +8762,7 @@ declare const vWorkflowLogListResponse: v.ObjectSchema<{
|
|
|
8642
8762
|
runtime_filter_result?: boolean | null | undefined;
|
|
8643
8763
|
scheduled_at?: string | null | undefined;
|
|
8644
8764
|
started_at?: string | null | undefined;
|
|
8645
|
-
status: "completed" | "
|
|
8765
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
8646
8766
|
updated_at?: string | null | undefined;
|
|
8647
8767
|
workflow_execution_log_id: string;
|
|
8648
8768
|
workflow_id: string;
|
|
@@ -8686,7 +8806,7 @@ declare const vWorkflowLogListResponse: v.ObjectSchema<{
|
|
|
8686
8806
|
runtime_filter_result?: boolean | null | undefined;
|
|
8687
8807
|
scheduled_at?: string | null | undefined;
|
|
8688
8808
|
started_at?: string | null | undefined;
|
|
8689
|
-
status: "completed" | "
|
|
8809
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
8690
8810
|
updated_at?: string | null | undefined;
|
|
8691
8811
|
workflow_execution_log_id: string;
|
|
8692
8812
|
workflow_id: string;
|
|
@@ -8706,7 +8826,7 @@ declare const vWorkflowLogListResponse: v.ObjectSchema<{
|
|
|
8706
8826
|
mode: "live" | "dry_run";
|
|
8707
8827
|
sampled_event_id?: string | null | undefined;
|
|
8708
8828
|
started_at?: string | null | undefined;
|
|
8709
|
-
status: "completed" | "
|
|
8829
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "partial";
|
|
8710
8830
|
subject_id?: string | null | undefined;
|
|
8711
8831
|
subject_type?: string | null | undefined;
|
|
8712
8832
|
tenant_id?: string | null | undefined;
|
|
@@ -10119,6 +10239,11 @@ declare const vDataActivationClientRequest: v.ObjectSchema<{
|
|
|
10119
10239
|
readonly interoperability_contract_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, readonly []>;
|
|
10120
10240
|
readonly loop_over: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["services", "locations", "providers"], undefined>, undefined>, readonly []>;
|
|
10121
10241
|
readonly name: v.StringSchema<undefined>;
|
|
10242
|
+
readonly response_extractor: v.NullishSchema<v.ObjectSchema<{
|
|
10243
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
10244
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
10245
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
10246
|
+
}, undefined>, undefined>;
|
|
10122
10247
|
readonly row_filter: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
10123
10248
|
readonly tool_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
10124
10249
|
}, undefined>;
|
|
@@ -10266,6 +10391,7 @@ declare const vInteroperabilityContractListResponse: v.ObjectSchema<{
|
|
|
10266
10391
|
readonly name: v.StringSchema<undefined>;
|
|
10267
10392
|
readonly resource_type: v.StringSchema<undefined>;
|
|
10268
10393
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
10394
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
10269
10395
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
10270
10396
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
10271
10397
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -10278,6 +10404,7 @@ declare const vInteroperabilityContractListResponse: v.ObjectSchema<{
|
|
|
10278
10404
|
name: string;
|
|
10279
10405
|
resource_type: string;
|
|
10280
10406
|
slug?: string | null | undefined;
|
|
10407
|
+
system_created: boolean;
|
|
10281
10408
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
10282
10409
|
updated_at?: string | null | undefined;
|
|
10283
10410
|
}>]>, undefined>;
|
|
@@ -13368,7 +13495,7 @@ declare const vToolResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
13368
13495
|
description?: string | null | undefined;
|
|
13369
13496
|
id?: string | null | undefined;
|
|
13370
13497
|
inserted_at?: string | null | undefined;
|
|
13371
|
-
intent?: "sms" | "email" | "
|
|
13498
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
13372
13499
|
name?: string | null | undefined;
|
|
13373
13500
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
13374
13501
|
updated_at?: string | null | undefined;
|
|
@@ -13839,7 +13966,7 @@ declare const vMinimalAiAgentResponse: v.SchemaWithPipe<readonly [v.ObjectSchema
|
|
|
13839
13966
|
description?: string | null | undefined;
|
|
13840
13967
|
id?: string | null | undefined;
|
|
13841
13968
|
inserted_at?: string | null | undefined;
|
|
13842
|
-
intent?: "sms" | "email" | "
|
|
13969
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
13843
13970
|
name?: string | null | undefined;
|
|
13844
13971
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
13845
13972
|
updated_at?: string | null | undefined;
|
|
@@ -14019,7 +14146,7 @@ declare const vMinimalAiAgentResponse: v.SchemaWithPipe<readonly [v.ObjectSchema
|
|
|
14019
14146
|
description?: string | null | undefined;
|
|
14020
14147
|
id?: string | null | undefined;
|
|
14021
14148
|
inserted_at?: string | null | undefined;
|
|
14022
|
-
intent?: "sms" | "email" | "
|
|
14149
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
14023
14150
|
name?: string | null | undefined;
|
|
14024
14151
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
14025
14152
|
updated_at?: string | null | undefined;
|
|
@@ -14494,7 +14621,7 @@ declare const vWorkflowAiAgentResponse: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
14494
14621
|
description?: string | null | undefined;
|
|
14495
14622
|
id?: string | null | undefined;
|
|
14496
14623
|
inserted_at?: string | null | undefined;
|
|
14497
|
-
intent?: "sms" | "email" | "
|
|
14624
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
14498
14625
|
name?: string | null | undefined;
|
|
14499
14626
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
14500
14627
|
updated_at?: string | null | undefined;
|
|
@@ -14674,7 +14801,7 @@ declare const vWorkflowAiAgentResponse: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
14674
14801
|
description?: string | null | undefined;
|
|
14675
14802
|
id?: string | null | undefined;
|
|
14676
14803
|
inserted_at?: string | null | undefined;
|
|
14677
|
-
intent?: "sms" | "email" | "
|
|
14804
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
14678
14805
|
name?: string | null | undefined;
|
|
14679
14806
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
14680
14807
|
updated_at?: string | null | undefined;
|
|
@@ -14860,7 +14987,7 @@ declare const vWorkflowAiAgentResponse: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
14860
14987
|
description?: string | null | undefined;
|
|
14861
14988
|
id?: string | null | undefined;
|
|
14862
14989
|
inserted_at?: string | null | undefined;
|
|
14863
|
-
intent?: "sms" | "email" | "
|
|
14990
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
14864
14991
|
name?: string | null | undefined;
|
|
14865
14992
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
14866
14993
|
updated_at?: string | null | undefined;
|
|
@@ -15951,7 +16078,7 @@ declare const vAgenticWorkflowResponse: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
15951
16078
|
description?: string | null | undefined;
|
|
15952
16079
|
id?: string | null | undefined;
|
|
15953
16080
|
inserted_at?: string | null | undefined;
|
|
15954
|
-
intent?: "sms" | "email" | "
|
|
16081
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
15955
16082
|
name?: string | null | undefined;
|
|
15956
16083
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
15957
16084
|
updated_at?: string | null | undefined;
|
|
@@ -16131,7 +16258,7 @@ declare const vAgenticWorkflowResponse: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
16131
16258
|
description?: string | null | undefined;
|
|
16132
16259
|
id?: string | null | undefined;
|
|
16133
16260
|
inserted_at?: string | null | undefined;
|
|
16134
|
-
intent?: "sms" | "email" | "
|
|
16261
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
16135
16262
|
name?: string | null | undefined;
|
|
16136
16263
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
16137
16264
|
updated_at?: string | null | undefined;
|
|
@@ -16317,7 +16444,7 @@ declare const vAgenticWorkflowResponse: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
16317
16444
|
description?: string | null | undefined;
|
|
16318
16445
|
id?: string | null | undefined;
|
|
16319
16446
|
inserted_at?: string | null | undefined;
|
|
16320
|
-
intent?: "sms" | "email" | "
|
|
16447
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
16321
16448
|
name?: string | null | undefined;
|
|
16322
16449
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
16323
16450
|
updated_at?: string | null | undefined;
|
|
@@ -16503,7 +16630,7 @@ declare const vAgenticWorkflowResponse: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
16503
16630
|
description?: string | null | undefined;
|
|
16504
16631
|
id?: string | null | undefined;
|
|
16505
16632
|
inserted_at?: string | null | undefined;
|
|
16506
|
-
intent?: "sms" | "email" | "
|
|
16633
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
16507
16634
|
name?: string | null | undefined;
|
|
16508
16635
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
16509
16636
|
updated_at?: string | null | undefined;
|
|
@@ -16933,7 +17060,7 @@ declare const vAgenticWorkflowResponse: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
16933
17060
|
description?: string | null | undefined;
|
|
16934
17061
|
id?: string | null | undefined;
|
|
16935
17062
|
inserted_at?: string | null | undefined;
|
|
16936
|
-
intent?: "sms" | "email" | "
|
|
17063
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
16937
17064
|
name?: string | null | undefined;
|
|
16938
17065
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
16939
17066
|
updated_at?: string | null | undefined;
|
|
@@ -17403,7 +17530,7 @@ declare const vToolListResponse: v.ObjectSchema<{
|
|
|
17403
17530
|
description?: string | null | undefined;
|
|
17404
17531
|
id?: string | null | undefined;
|
|
17405
17532
|
inserted_at?: string | null | undefined;
|
|
17406
|
-
intent?: "sms" | "email" | "
|
|
17533
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
17407
17534
|
name?: string | null | undefined;
|
|
17408
17535
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
17409
17536
|
updated_at?: string | null | undefined;
|
|
@@ -18494,7 +18621,7 @@ declare const vAgenticWorkflowListResponse: v.ObjectSchema<{
|
|
|
18494
18621
|
description?: string | null | undefined;
|
|
18495
18622
|
id?: string | null | undefined;
|
|
18496
18623
|
inserted_at?: string | null | undefined;
|
|
18497
|
-
intent?: "sms" | "email" | "
|
|
18624
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
18498
18625
|
name?: string | null | undefined;
|
|
18499
18626
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
18500
18627
|
updated_at?: string | null | undefined;
|
|
@@ -18674,7 +18801,7 @@ declare const vAgenticWorkflowListResponse: v.ObjectSchema<{
|
|
|
18674
18801
|
description?: string | null | undefined;
|
|
18675
18802
|
id?: string | null | undefined;
|
|
18676
18803
|
inserted_at?: string | null | undefined;
|
|
18677
|
-
intent?: "sms" | "email" | "
|
|
18804
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
18678
18805
|
name?: string | null | undefined;
|
|
18679
18806
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
18680
18807
|
updated_at?: string | null | undefined;
|
|
@@ -18860,7 +18987,7 @@ declare const vAgenticWorkflowListResponse: v.ObjectSchema<{
|
|
|
18860
18987
|
description?: string | null | undefined;
|
|
18861
18988
|
id?: string | null | undefined;
|
|
18862
18989
|
inserted_at?: string | null | undefined;
|
|
18863
|
-
intent?: "sms" | "email" | "
|
|
18990
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
18864
18991
|
name?: string | null | undefined;
|
|
18865
18992
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
18866
18993
|
updated_at?: string | null | undefined;
|
|
@@ -19046,7 +19173,7 @@ declare const vAgenticWorkflowListResponse: v.ObjectSchema<{
|
|
|
19046
19173
|
description?: string | null | undefined;
|
|
19047
19174
|
id?: string | null | undefined;
|
|
19048
19175
|
inserted_at?: string | null | undefined;
|
|
19049
|
-
intent?: "sms" | "email" | "
|
|
19176
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
19050
19177
|
name?: string | null | undefined;
|
|
19051
19178
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
19052
19179
|
updated_at?: string | null | undefined;
|
|
@@ -19476,7 +19603,7 @@ declare const vAgenticWorkflowListResponse: v.ObjectSchema<{
|
|
|
19476
19603
|
description?: string | null | undefined;
|
|
19477
19604
|
id?: string | null | undefined;
|
|
19478
19605
|
inserted_at?: string | null | undefined;
|
|
19479
|
-
intent?: "sms" | "email" | "
|
|
19606
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
19480
19607
|
name?: string | null | undefined;
|
|
19481
19608
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
19482
19609
|
updated_at?: string | null | undefined;
|
|
@@ -20228,7 +20355,7 @@ declare const vAiAgentResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
20228
20355
|
description?: string | null | undefined;
|
|
20229
20356
|
id?: string | null | undefined;
|
|
20230
20357
|
inserted_at?: string | null | undefined;
|
|
20231
|
-
intent?: "sms" | "email" | "
|
|
20358
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
20232
20359
|
name?: string | null | undefined;
|
|
20233
20360
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
20234
20361
|
updated_at?: string | null | undefined;
|
|
@@ -20520,7 +20647,7 @@ declare const vAiAgentResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
20520
20647
|
description?: string | null | undefined;
|
|
20521
20648
|
id?: string | null | undefined;
|
|
20522
20649
|
inserted_at?: string | null | undefined;
|
|
20523
|
-
intent?: "sms" | "email" | "
|
|
20650
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
20524
20651
|
name?: string | null | undefined;
|
|
20525
20652
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
20526
20653
|
updated_at?: string | null | undefined;
|
|
@@ -21260,7 +21387,7 @@ declare const vAiAgentListResponse: v.ObjectSchema<{
|
|
|
21260
21387
|
description?: string | null | undefined;
|
|
21261
21388
|
id?: string | null | undefined;
|
|
21262
21389
|
inserted_at?: string | null | undefined;
|
|
21263
|
-
intent?: "sms" | "email" | "
|
|
21390
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
21264
21391
|
name?: string | null | undefined;
|
|
21265
21392
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
21266
21393
|
updated_at?: string | null | undefined;
|
|
@@ -21552,7 +21679,7 @@ declare const vAiAgentListResponse: v.ObjectSchema<{
|
|
|
21552
21679
|
description?: string | null | undefined;
|
|
21553
21680
|
id?: string | null | undefined;
|
|
21554
21681
|
inserted_at?: string | null | undefined;
|
|
21555
|
-
intent?: "sms" | "email" | "
|
|
21682
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
21556
21683
|
name?: string | null | undefined;
|
|
21557
21684
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
21558
21685
|
updated_at?: string | null | undefined;
|
|
@@ -21634,7 +21761,7 @@ declare const vActionExecutionLogResponseWritable: v.SchemaWithPipe<readonly [v.
|
|
|
21634
21761
|
runtime_filter_result?: boolean | null | undefined;
|
|
21635
21762
|
scheduled_at?: string | null | undefined;
|
|
21636
21763
|
started_at?: string | null | undefined;
|
|
21637
|
-
status: "completed" | "
|
|
21764
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
21638
21765
|
updated_at?: string | null | undefined;
|
|
21639
21766
|
workflow_execution_log_id: string;
|
|
21640
21767
|
workflow_id: string;
|
|
@@ -23484,7 +23611,7 @@ declare const vToolResponseWritable: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
23484
23611
|
data_source_id?: string | null | undefined;
|
|
23485
23612
|
datalake_id?: string | null | undefined;
|
|
23486
23613
|
description?: string | null | undefined;
|
|
23487
|
-
intent?: "sms" | "email" | "
|
|
23614
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
23488
23615
|
name?: string | null | undefined;
|
|
23489
23616
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
23490
23617
|
}>]>;
|
|
@@ -23515,7 +23642,7 @@ declare const vMinimalAiAgentResponseWritable: v.SchemaWithPipe<readonly [v.Obje
|
|
|
23515
23642
|
data_source_id?: string | null | undefined;
|
|
23516
23643
|
datalake_id?: string | null | undefined;
|
|
23517
23644
|
description?: string | null | undefined;
|
|
23518
|
-
intent?: "sms" | "email" | "
|
|
23645
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
23519
23646
|
name?: string | null | undefined;
|
|
23520
23647
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
23521
23648
|
}>]>, undefined>;
|
|
@@ -23536,7 +23663,7 @@ declare const vMinimalAiAgentResponseWritable: v.SchemaWithPipe<readonly [v.Obje
|
|
|
23536
23663
|
data_source_id?: string | null | undefined;
|
|
23537
23664
|
datalake_id?: string | null | undefined;
|
|
23538
23665
|
description?: string | null | undefined;
|
|
23539
|
-
intent?: "sms" | "email" | "
|
|
23666
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
23540
23667
|
name?: string | null | undefined;
|
|
23541
23668
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
23542
23669
|
}> | null | undefined;
|
|
@@ -23571,7 +23698,7 @@ declare const vWorkflowAiAgentResponseWritable: v.SchemaWithPipe<readonly [v.Obj
|
|
|
23571
23698
|
data_source_id?: string | null | undefined;
|
|
23572
23699
|
datalake_id?: string | null | undefined;
|
|
23573
23700
|
description?: string | null | undefined;
|
|
23574
|
-
intent?: "sms" | "email" | "
|
|
23701
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
23575
23702
|
name?: string | null | undefined;
|
|
23576
23703
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
23577
23704
|
}>]>, undefined>;
|
|
@@ -23592,7 +23719,7 @@ declare const vWorkflowAiAgentResponseWritable: v.SchemaWithPipe<readonly [v.Obj
|
|
|
23592
23719
|
data_source_id?: string | null | undefined;
|
|
23593
23720
|
datalake_id?: string | null | undefined;
|
|
23594
23721
|
description?: string | null | undefined;
|
|
23595
|
-
intent?: "sms" | "email" | "
|
|
23722
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
23596
23723
|
name?: string | null | undefined;
|
|
23597
23724
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
23598
23725
|
}> | null | undefined;
|
|
@@ -23617,7 +23744,7 @@ declare const vWorkflowAiAgentResponseWritable: v.SchemaWithPipe<readonly [v.Obj
|
|
|
23617
23744
|
data_source_id?: string | null | undefined;
|
|
23618
23745
|
datalake_id?: string | null | undefined;
|
|
23619
23746
|
description?: string | null | undefined;
|
|
23620
|
-
intent?: "sms" | "email" | "
|
|
23747
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
23621
23748
|
name?: string | null | undefined;
|
|
23622
23749
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
23623
23750
|
}> | null | undefined;
|
|
@@ -23800,7 +23927,7 @@ declare const vToolListResponseWritable: v.ObjectSchema<{
|
|
|
23800
23927
|
data_source_id?: string | null | undefined;
|
|
23801
23928
|
datalake_id?: string | null | undefined;
|
|
23802
23929
|
description?: string | null | undefined;
|
|
23803
|
-
intent?: "sms" | "email" | "
|
|
23930
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
23804
23931
|
name?: string | null | undefined;
|
|
23805
23932
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
23806
23933
|
}>]>, undefined>;
|
|
@@ -24194,7 +24321,7 @@ declare const vWorkflowLogResponseWritable: v.SchemaWithPipe<readonly [v.ObjectS
|
|
|
24194
24321
|
mode: "live" | "dry_run";
|
|
24195
24322
|
sampled_event_id?: string | null | undefined;
|
|
24196
24323
|
started_at?: string | null | undefined;
|
|
24197
|
-
status: "completed" | "
|
|
24324
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "partial";
|
|
24198
24325
|
subject_id?: string | null | undefined;
|
|
24199
24326
|
subject_type?: string | null | undefined;
|
|
24200
24327
|
tenant_id?: string | null | undefined;
|
|
@@ -24243,7 +24370,7 @@ declare const vWorkflowLogListResponseWritable: v.ObjectSchema<{
|
|
|
24243
24370
|
mode: "live" | "dry_run";
|
|
24244
24371
|
sampled_event_id?: string | null | undefined;
|
|
24245
24372
|
started_at?: string | null | undefined;
|
|
24246
|
-
status: "completed" | "
|
|
24373
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "partial";
|
|
24247
24374
|
subject_id?: string | null | undefined;
|
|
24248
24375
|
subject_type?: string | null | undefined;
|
|
24249
24376
|
tenant_id?: string | null | undefined;
|
|
@@ -25509,7 +25636,7 @@ declare const vAiAgentResponseWritable: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
25509
25636
|
data_source_id?: string | null | undefined;
|
|
25510
25637
|
datalake_id?: string | null | undefined;
|
|
25511
25638
|
description?: string | null | undefined;
|
|
25512
|
-
intent?: "sms" | "email" | "
|
|
25639
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
25513
25640
|
name?: string | null | undefined;
|
|
25514
25641
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
25515
25642
|
}>]>, undefined>;
|
|
@@ -25570,7 +25697,7 @@ declare const vAiAgentResponseWritable: v.SchemaWithPipe<readonly [v.ObjectSchem
|
|
|
25570
25697
|
data_source_id?: string | null | undefined;
|
|
25571
25698
|
datalake_id?: string | null | undefined;
|
|
25572
25699
|
description?: string | null | undefined;
|
|
25573
|
-
intent?: "sms" | "email" | "
|
|
25700
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
25574
25701
|
name?: string | null | undefined;
|
|
25575
25702
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
25576
25703
|
}> | null | undefined;
|
|
@@ -25601,6 +25728,11 @@ declare const vDataActivationClientRequestWritable: v.ObjectSchema<{
|
|
|
25601
25728
|
readonly interoperability_contract_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, readonly []>;
|
|
25602
25729
|
readonly loop_over: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["services", "locations", "providers"], undefined>, undefined>, readonly []>;
|
|
25603
25730
|
readonly name: v.StringSchema<undefined>;
|
|
25731
|
+
readonly response_extractor: v.NullishSchema<v.ObjectSchema<{
|
|
25732
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
25733
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
25734
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
25735
|
+
}, undefined>, undefined>;
|
|
25604
25736
|
readonly row_filter: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
25605
25737
|
readonly tool_call: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
25606
25738
|
readonly tool_call_type: v.LiteralSchema<"restapi_request", undefined>;
|
|
@@ -25966,7 +26098,7 @@ declare const vAiAgentListResponseWritable: v.ObjectSchema<{
|
|
|
25966
26098
|
data_source_id?: string | null | undefined;
|
|
25967
26099
|
datalake_id?: string | null | undefined;
|
|
25968
26100
|
description?: string | null | undefined;
|
|
25969
|
-
intent?: "sms" | "email" | "
|
|
26101
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
25970
26102
|
name?: string | null | undefined;
|
|
25971
26103
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
25972
26104
|
}>]>, undefined>;
|
|
@@ -26027,7 +26159,7 @@ declare const vAiAgentListResponseWritable: v.ObjectSchema<{
|
|
|
26027
26159
|
data_source_id?: string | null | undefined;
|
|
26028
26160
|
datalake_id?: string | null | undefined;
|
|
26029
26161
|
description?: string | null | undefined;
|
|
26030
|
-
intent?: "sms" | "email" | "
|
|
26162
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
26031
26163
|
name?: string | null | undefined;
|
|
26032
26164
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
26033
26165
|
}> | null | undefined;
|
|
@@ -27371,7 +27503,7 @@ declare const vPlatformApiToolControllerIndexResponse: v.ObjectSchema<{
|
|
|
27371
27503
|
description?: string | null | undefined;
|
|
27372
27504
|
id?: string | null | undefined;
|
|
27373
27505
|
inserted_at?: string | null | undefined;
|
|
27374
|
-
intent?: "sms" | "email" | "
|
|
27506
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
27375
27507
|
name?: string | null | undefined;
|
|
27376
27508
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
27377
27509
|
updated_at?: string | null | undefined;
|
|
@@ -28018,7 +28150,7 @@ declare const vPlatformApiToolControllerCreateResponse: v.SchemaWithPipe<readonl
|
|
|
28018
28150
|
description?: string | null | undefined;
|
|
28019
28151
|
id?: string | null | undefined;
|
|
28020
28152
|
inserted_at?: string | null | undefined;
|
|
28021
|
-
intent?: "sms" | "email" | "
|
|
28153
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
28022
28154
|
name?: string | null | undefined;
|
|
28023
28155
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
28024
28156
|
updated_at?: string | null | undefined;
|
|
@@ -28273,6 +28405,11 @@ declare const vPlatformApiDataActivationClientControllerUpdateBody: v.ObjectSche
|
|
|
28273
28405
|
readonly interoperability_contract_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, readonly []>;
|
|
28274
28406
|
readonly loop_over: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["services", "locations", "providers"], undefined>, undefined>, readonly []>;
|
|
28275
28407
|
readonly name: v.StringSchema<undefined>;
|
|
28408
|
+
readonly response_extractor: v.NullishSchema<v.ObjectSchema<{
|
|
28409
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
28410
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
28411
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
28412
|
+
}, undefined>, undefined>;
|
|
28276
28413
|
readonly row_filter: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
28277
28414
|
readonly tool_call: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
28278
28415
|
readonly tool_call_type: v.LiteralSchema<"restapi_request", undefined>;
|
|
@@ -29946,6 +30083,7 @@ declare const vPlatformApiInteroperabilityContractControllerIndexResponse: v.Obj
|
|
|
29946
30083
|
readonly name: v.StringSchema<undefined>;
|
|
29947
30084
|
readonly resource_type: v.StringSchema<undefined>;
|
|
29948
30085
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
30086
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
29949
30087
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
29950
30088
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
29951
30089
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -29958,6 +30096,7 @@ declare const vPlatformApiInteroperabilityContractControllerIndexResponse: v.Obj
|
|
|
29958
30096
|
name: string;
|
|
29959
30097
|
resource_type: string;
|
|
29960
30098
|
slug?: string | null | undefined;
|
|
30099
|
+
system_created: boolean;
|
|
29961
30100
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
29962
30101
|
updated_at?: string | null | undefined;
|
|
29963
30102
|
}>]>, undefined>;
|
|
@@ -30021,6 +30160,7 @@ declare const vPlatformApiInteroperabilityContractControllerCreateResponse: v.Sc
|
|
|
30021
30160
|
readonly name: v.StringSchema<undefined>;
|
|
30022
30161
|
readonly resource_type: v.StringSchema<undefined>;
|
|
30023
30162
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
30163
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
30024
30164
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
30025
30165
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
30026
30166
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -30033,6 +30173,7 @@ declare const vPlatformApiInteroperabilityContractControllerCreateResponse: v.Sc
|
|
|
30033
30173
|
name: string;
|
|
30034
30174
|
resource_type: string;
|
|
30035
30175
|
slug?: string | null | undefined;
|
|
30176
|
+
system_created: boolean;
|
|
30036
30177
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
30037
30178
|
updated_at?: string | null | undefined;
|
|
30038
30179
|
}>]>;
|
|
@@ -30883,6 +31024,395 @@ declare const vPlatformApiDataActivationClientControllerLogShowResponse: v.Schem
|
|
|
30883
31024
|
rows_ingested: number;
|
|
30884
31025
|
updated_at?: string | null | undefined;
|
|
30885
31026
|
}>]>;
|
|
31027
|
+
declare const vPlatformApiDataSourceControllerShowPath: v.ObjectSchema<{
|
|
31028
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
31029
|
+
readonly datalake_slug: v.StringSchema<undefined>;
|
|
31030
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
31031
|
+
}, undefined>;
|
|
31032
|
+
/**
|
|
31033
|
+
* Data source
|
|
31034
|
+
*/
|
|
31035
|
+
declare const vPlatformApiDataSourceControllerShowResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31036
|
+
readonly datalake: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31037
|
+
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31038
|
+
readonly unregulated_db_reader_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
31039
|
+
readonly regulated_data_db_reader_host: v.StringSchema<undefined>;
|
|
31040
|
+
readonly regulated_data_db_reader_name: v.StringSchema<undefined>;
|
|
31041
|
+
readonly regulated_cloud_storage: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
31042
|
+
readonly cloud_storage_type: v.LiteralSchema<"aws", undefined>;
|
|
31043
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31044
|
+
readonly access_key_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31045
|
+
readonly auth_method: v.NullishSchema<v.PicklistSchema<["access_key", "iam_role"], undefined>, undefined>;
|
|
31046
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31047
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31048
|
+
readonly endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31049
|
+
readonly region: v.StringSchema<undefined>;
|
|
31050
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31051
|
+
access_key_id?: string | null | undefined;
|
|
31052
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31053
|
+
base_path?: string | null | undefined;
|
|
31054
|
+
bucket: string;
|
|
31055
|
+
endpoint?: string | null | undefined;
|
|
31056
|
+
region: string;
|
|
31057
|
+
}>]>, v.ObjectSchema<{
|
|
31058
|
+
readonly cloud_storage_type: v.PicklistSchema<["aws"], undefined>;
|
|
31059
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
31060
|
+
readonly cloud_storage_type: v.LiteralSchema<"r2", undefined>;
|
|
31061
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31062
|
+
readonly access_key_id: v.StringSchema<undefined>;
|
|
31063
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31064
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31065
|
+
readonly endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31066
|
+
readonly region: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31067
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31068
|
+
access_key_id: string;
|
|
31069
|
+
base_path?: string | null | undefined;
|
|
31070
|
+
bucket: string;
|
|
31071
|
+
endpoint?: string | null | undefined;
|
|
31072
|
+
region?: string | null | undefined;
|
|
31073
|
+
}>]>, v.ObjectSchema<{
|
|
31074
|
+
readonly cloud_storage_type: v.PicklistSchema<["r2"], undefined>;
|
|
31075
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
31076
|
+
readonly cloud_storage_type: v.LiteralSchema<"custom", undefined>;
|
|
31077
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31078
|
+
readonly access_key_id: v.StringSchema<undefined>;
|
|
31079
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31080
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31081
|
+
readonly endpoint: v.StringSchema<undefined>;
|
|
31082
|
+
readonly region: v.StringSchema<undefined>;
|
|
31083
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31084
|
+
access_key_id: string;
|
|
31085
|
+
base_path?: string | null | undefined;
|
|
31086
|
+
bucket: string;
|
|
31087
|
+
endpoint: string;
|
|
31088
|
+
region: string;
|
|
31089
|
+
}>]>, v.ObjectSchema<{
|
|
31090
|
+
readonly cloud_storage_type: v.PicklistSchema<["custom"], undefined>;
|
|
31091
|
+
}, undefined>], undefined>], undefined>], undefined>;
|
|
31092
|
+
readonly unregulated_cloud_storage: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
31093
|
+
readonly cloud_storage_type: v.LiteralSchema<"aws", undefined>;
|
|
31094
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31095
|
+
readonly access_key_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31096
|
+
readonly auth_method: v.NullishSchema<v.PicklistSchema<["access_key", "iam_role"], undefined>, undefined>;
|
|
31097
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31098
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31099
|
+
readonly endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31100
|
+
readonly region: v.StringSchema<undefined>;
|
|
31101
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31102
|
+
access_key_id?: string | null | undefined;
|
|
31103
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31104
|
+
base_path?: string | null | undefined;
|
|
31105
|
+
bucket: string;
|
|
31106
|
+
endpoint?: string | null | undefined;
|
|
31107
|
+
region: string;
|
|
31108
|
+
}>]>, v.ObjectSchema<{
|
|
31109
|
+
readonly cloud_storage_type: v.PicklistSchema<["aws"], undefined>;
|
|
31110
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
31111
|
+
readonly cloud_storage_type: v.LiteralSchema<"r2", undefined>;
|
|
31112
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31113
|
+
readonly access_key_id: v.StringSchema<undefined>;
|
|
31114
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31115
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31116
|
+
readonly endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31117
|
+
readonly region: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31118
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31119
|
+
access_key_id: string;
|
|
31120
|
+
base_path?: string | null | undefined;
|
|
31121
|
+
bucket: string;
|
|
31122
|
+
endpoint?: string | null | undefined;
|
|
31123
|
+
region?: string | null | undefined;
|
|
31124
|
+
}>]>, v.ObjectSchema<{
|
|
31125
|
+
readonly cloud_storage_type: v.PicklistSchema<["r2"], undefined>;
|
|
31126
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
31127
|
+
readonly cloud_storage_type: v.LiteralSchema<"custom", undefined>;
|
|
31128
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31129
|
+
readonly access_key_id: v.StringSchema<undefined>;
|
|
31130
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31131
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31132
|
+
readonly endpoint: v.StringSchema<undefined>;
|
|
31133
|
+
readonly region: v.StringSchema<undefined>;
|
|
31134
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31135
|
+
access_key_id: string;
|
|
31136
|
+
base_path?: string | null | undefined;
|
|
31137
|
+
bucket: string;
|
|
31138
|
+
endpoint: string;
|
|
31139
|
+
region: string;
|
|
31140
|
+
}>]>, v.ObjectSchema<{
|
|
31141
|
+
readonly cloud_storage_type: v.PicklistSchema<["custom"], undefined>;
|
|
31142
|
+
}, undefined>], undefined>], undefined>], undefined>;
|
|
31143
|
+
readonly regulated_data_db_reader_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
31144
|
+
readonly unregulated_db_writer_schema: v.StringSchema<undefined>;
|
|
31145
|
+
readonly unregulated_db_writer_name: v.StringSchema<undefined>;
|
|
31146
|
+
readonly regulated_data_db_reader_schema: v.StringSchema<undefined>;
|
|
31147
|
+
readonly unregulated_db_writer_host: v.StringSchema<undefined>;
|
|
31148
|
+
readonly regulated_data_db_writer_name: v.StringSchema<undefined>;
|
|
31149
|
+
readonly unregulated_db_reader_name: v.StringSchema<undefined>;
|
|
31150
|
+
readonly unregulated_db_writer_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
31151
|
+
readonly tenant: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31152
|
+
readonly description: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 1000, undefined>]>, undefined>;
|
|
31153
|
+
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
31154
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 160, undefined>]>;
|
|
31155
|
+
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>;
|
|
31156
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31157
|
+
description?: string | null | undefined;
|
|
31158
|
+
readonly id: string;
|
|
31159
|
+
name: string;
|
|
31160
|
+
readonly slug: string;
|
|
31161
|
+
}>]>, undefined>;
|
|
31162
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
31163
|
+
readonly name: v.StringSchema<undefined>;
|
|
31164
|
+
readonly description: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31165
|
+
readonly pool_size: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
31166
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
31167
|
+
readonly status: v.NullishSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["new", "processing", "ready"], undefined>, v.ReadonlyAction<"new" | "processing" | "ready">]>, undefined>;
|
|
31168
|
+
readonly unregulated_db_reader_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
31169
|
+
readonly unregulated_db_reader_host: v.StringSchema<undefined>;
|
|
31170
|
+
readonly regulated_data_db_reader_enable_ssl: v.BooleanSchema<undefined>;
|
|
31171
|
+
readonly unregulated_db_reader_enable_ssl: v.BooleanSchema<undefined>;
|
|
31172
|
+
readonly regulated_data_db_writer_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
31173
|
+
readonly unregulated_db_writer_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
31174
|
+
readonly unregulated_db_writer_enable_ssl: v.BooleanSchema<undefined>;
|
|
31175
|
+
readonly unregulated_db_reader_schema: v.StringSchema<undefined>;
|
|
31176
|
+
readonly regulated_data_db_writer_enable_ssl: v.BooleanSchema<undefined>;
|
|
31177
|
+
readonly regulated_data_db_writer_schema: v.StringSchema<undefined>;
|
|
31178
|
+
readonly regulated_data_db_writer_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
31179
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
31180
|
+
readonly regulated_data_db_writer_host: v.StringSchema<undefined>;
|
|
31181
|
+
readonly regulated_data_db_reader_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
31182
|
+
readonly timezone: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
31183
|
+
readonly data_domain: v.PicklistSchema<["healthcare", "core_banking", "payment_risk", "accounts_receivable", "service_commerce", "trading", "foundation"], undefined>;
|
|
31184
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31185
|
+
slug?: string | null | undefined;
|
|
31186
|
+
unregulated_db_reader_auth_method: "password" | "iam_role";
|
|
31187
|
+
regulated_data_db_reader_host: string;
|
|
31188
|
+
regulated_data_db_reader_name: string;
|
|
31189
|
+
regulated_cloud_storage: ({
|
|
31190
|
+
cloud_storage_type: "aws";
|
|
31191
|
+
} & Readonly<{
|
|
31192
|
+
access_key_id?: string | null | undefined;
|
|
31193
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31194
|
+
base_path?: string | null | undefined;
|
|
31195
|
+
bucket: string;
|
|
31196
|
+
endpoint?: string | null | undefined;
|
|
31197
|
+
region: string;
|
|
31198
|
+
}> & {
|
|
31199
|
+
cloud_storage_type: "aws";
|
|
31200
|
+
}) | ({
|
|
31201
|
+
cloud_storage_type: "r2";
|
|
31202
|
+
} & Readonly<{
|
|
31203
|
+
access_key_id: string;
|
|
31204
|
+
base_path?: string | null | undefined;
|
|
31205
|
+
bucket: string;
|
|
31206
|
+
endpoint?: string | null | undefined;
|
|
31207
|
+
region?: string | null | undefined;
|
|
31208
|
+
}> & {
|
|
31209
|
+
cloud_storage_type: "r2";
|
|
31210
|
+
}) | ({
|
|
31211
|
+
cloud_storage_type: "custom";
|
|
31212
|
+
} & Readonly<{
|
|
31213
|
+
access_key_id: string;
|
|
31214
|
+
base_path?: string | null | undefined;
|
|
31215
|
+
bucket: string;
|
|
31216
|
+
endpoint: string;
|
|
31217
|
+
region: string;
|
|
31218
|
+
}> & {
|
|
31219
|
+
cloud_storage_type: "custom";
|
|
31220
|
+
});
|
|
31221
|
+
unregulated_cloud_storage: ({
|
|
31222
|
+
cloud_storage_type: "aws";
|
|
31223
|
+
} & Readonly<{
|
|
31224
|
+
access_key_id?: string | null | undefined;
|
|
31225
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31226
|
+
base_path?: string | null | undefined;
|
|
31227
|
+
bucket: string;
|
|
31228
|
+
endpoint?: string | null | undefined;
|
|
31229
|
+
region: string;
|
|
31230
|
+
}> & {
|
|
31231
|
+
cloud_storage_type: "aws";
|
|
31232
|
+
}) | ({
|
|
31233
|
+
cloud_storage_type: "r2";
|
|
31234
|
+
} & Readonly<{
|
|
31235
|
+
access_key_id: string;
|
|
31236
|
+
base_path?: string | null | undefined;
|
|
31237
|
+
bucket: string;
|
|
31238
|
+
endpoint?: string | null | undefined;
|
|
31239
|
+
region?: string | null | undefined;
|
|
31240
|
+
}> & {
|
|
31241
|
+
cloud_storage_type: "r2";
|
|
31242
|
+
}) | ({
|
|
31243
|
+
cloud_storage_type: "custom";
|
|
31244
|
+
} & Readonly<{
|
|
31245
|
+
access_key_id: string;
|
|
31246
|
+
base_path?: string | null | undefined;
|
|
31247
|
+
bucket: string;
|
|
31248
|
+
endpoint: string;
|
|
31249
|
+
region: string;
|
|
31250
|
+
}> & {
|
|
31251
|
+
cloud_storage_type: "custom";
|
|
31252
|
+
});
|
|
31253
|
+
regulated_data_db_reader_port: number;
|
|
31254
|
+
unregulated_db_writer_schema: string;
|
|
31255
|
+
unregulated_db_writer_name: string;
|
|
31256
|
+
regulated_data_db_reader_schema: string;
|
|
31257
|
+
unregulated_db_writer_host: string;
|
|
31258
|
+
regulated_data_db_writer_name: string;
|
|
31259
|
+
unregulated_db_reader_name: string;
|
|
31260
|
+
unregulated_db_writer_auth_method: "password" | "iam_role";
|
|
31261
|
+
tenant?: Readonly<{
|
|
31262
|
+
description?: string | null | undefined;
|
|
31263
|
+
readonly id: string;
|
|
31264
|
+
name: string;
|
|
31265
|
+
readonly slug: string;
|
|
31266
|
+
}> | null | undefined;
|
|
31267
|
+
id?: string | null | undefined;
|
|
31268
|
+
name: string;
|
|
31269
|
+
description?: string | null | undefined;
|
|
31270
|
+
pool_size: number | null;
|
|
31271
|
+
updated_at?: string | null | undefined;
|
|
31272
|
+
status?: "new" | "processing" | "ready" | null | undefined;
|
|
31273
|
+
unregulated_db_reader_port: number;
|
|
31274
|
+
unregulated_db_reader_host: string;
|
|
31275
|
+
regulated_data_db_reader_enable_ssl: boolean;
|
|
31276
|
+
unregulated_db_reader_enable_ssl: boolean;
|
|
31277
|
+
regulated_data_db_writer_port: number;
|
|
31278
|
+
unregulated_db_writer_port: number;
|
|
31279
|
+
unregulated_db_writer_enable_ssl: boolean;
|
|
31280
|
+
unregulated_db_reader_schema: string;
|
|
31281
|
+
regulated_data_db_writer_enable_ssl: boolean;
|
|
31282
|
+
regulated_data_db_writer_schema: string;
|
|
31283
|
+
regulated_data_db_writer_auth_method: "password" | "iam_role";
|
|
31284
|
+
inserted_at?: string | null | undefined;
|
|
31285
|
+
regulated_data_db_writer_host: string;
|
|
31286
|
+
regulated_data_db_reader_auth_method: "password" | "iam_role";
|
|
31287
|
+
timezone: string | null;
|
|
31288
|
+
data_domain: "healthcare" | "core_banking" | "payment_risk" | "accounts_receivable" | "service_commerce" | "trading" | "foundation";
|
|
31289
|
+
}>]>, undefined>;
|
|
31290
|
+
readonly description: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31291
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
31292
|
+
readonly image_url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31293
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
31294
|
+
readonly is_default: v.BooleanSchema<undefined>;
|
|
31295
|
+
readonly name: v.StringSchema<undefined>;
|
|
31296
|
+
readonly status: v.PicklistSchema<["draft", "active", "inactive"], undefined>;
|
|
31297
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
31298
|
+
readonly uri: v.StringSchema<undefined>;
|
|
31299
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31300
|
+
datalake?: Readonly<{
|
|
31301
|
+
slug?: string | null | undefined;
|
|
31302
|
+
unregulated_db_reader_auth_method: "password" | "iam_role";
|
|
31303
|
+
regulated_data_db_reader_host: string;
|
|
31304
|
+
regulated_data_db_reader_name: string;
|
|
31305
|
+
regulated_cloud_storage: ({
|
|
31306
|
+
cloud_storage_type: "aws";
|
|
31307
|
+
} & Readonly<{
|
|
31308
|
+
access_key_id?: string | null | undefined;
|
|
31309
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31310
|
+
base_path?: string | null | undefined;
|
|
31311
|
+
bucket: string;
|
|
31312
|
+
endpoint?: string | null | undefined;
|
|
31313
|
+
region: string;
|
|
31314
|
+
}> & {
|
|
31315
|
+
cloud_storage_type: "aws";
|
|
31316
|
+
}) | ({
|
|
31317
|
+
cloud_storage_type: "r2";
|
|
31318
|
+
} & Readonly<{
|
|
31319
|
+
access_key_id: string;
|
|
31320
|
+
base_path?: string | null | undefined;
|
|
31321
|
+
bucket: string;
|
|
31322
|
+
endpoint?: string | null | undefined;
|
|
31323
|
+
region?: string | null | undefined;
|
|
31324
|
+
}> & {
|
|
31325
|
+
cloud_storage_type: "r2";
|
|
31326
|
+
}) | ({
|
|
31327
|
+
cloud_storage_type: "custom";
|
|
31328
|
+
} & Readonly<{
|
|
31329
|
+
access_key_id: string;
|
|
31330
|
+
base_path?: string | null | undefined;
|
|
31331
|
+
bucket: string;
|
|
31332
|
+
endpoint: string;
|
|
31333
|
+
region: string;
|
|
31334
|
+
}> & {
|
|
31335
|
+
cloud_storage_type: "custom";
|
|
31336
|
+
});
|
|
31337
|
+
unregulated_cloud_storage: ({
|
|
31338
|
+
cloud_storage_type: "aws";
|
|
31339
|
+
} & Readonly<{
|
|
31340
|
+
access_key_id?: string | null | undefined;
|
|
31341
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31342
|
+
base_path?: string | null | undefined;
|
|
31343
|
+
bucket: string;
|
|
31344
|
+
endpoint?: string | null | undefined;
|
|
31345
|
+
region: string;
|
|
31346
|
+
}> & {
|
|
31347
|
+
cloud_storage_type: "aws";
|
|
31348
|
+
}) | ({
|
|
31349
|
+
cloud_storage_type: "r2";
|
|
31350
|
+
} & Readonly<{
|
|
31351
|
+
access_key_id: string;
|
|
31352
|
+
base_path?: string | null | undefined;
|
|
31353
|
+
bucket: string;
|
|
31354
|
+
endpoint?: string | null | undefined;
|
|
31355
|
+
region?: string | null | undefined;
|
|
31356
|
+
}> & {
|
|
31357
|
+
cloud_storage_type: "r2";
|
|
31358
|
+
}) | ({
|
|
31359
|
+
cloud_storage_type: "custom";
|
|
31360
|
+
} & Readonly<{
|
|
31361
|
+
access_key_id: string;
|
|
31362
|
+
base_path?: string | null | undefined;
|
|
31363
|
+
bucket: string;
|
|
31364
|
+
endpoint: string;
|
|
31365
|
+
region: string;
|
|
31366
|
+
}> & {
|
|
31367
|
+
cloud_storage_type: "custom";
|
|
31368
|
+
});
|
|
31369
|
+
regulated_data_db_reader_port: number;
|
|
31370
|
+
unregulated_db_writer_schema: string;
|
|
31371
|
+
unregulated_db_writer_name: string;
|
|
31372
|
+
regulated_data_db_reader_schema: string;
|
|
31373
|
+
unregulated_db_writer_host: string;
|
|
31374
|
+
regulated_data_db_writer_name: string;
|
|
31375
|
+
unregulated_db_reader_name: string;
|
|
31376
|
+
unregulated_db_writer_auth_method: "password" | "iam_role";
|
|
31377
|
+
tenant?: Readonly<{
|
|
31378
|
+
description?: string | null | undefined;
|
|
31379
|
+
readonly id: string;
|
|
31380
|
+
name: string;
|
|
31381
|
+
readonly slug: string;
|
|
31382
|
+
}> | null | undefined;
|
|
31383
|
+
id?: string | null | undefined;
|
|
31384
|
+
name: string;
|
|
31385
|
+
description?: string | null | undefined;
|
|
31386
|
+
pool_size: number | null;
|
|
31387
|
+
updated_at?: string | null | undefined;
|
|
31388
|
+
status?: "new" | "processing" | "ready" | null | undefined;
|
|
31389
|
+
unregulated_db_reader_port: number;
|
|
31390
|
+
unregulated_db_reader_host: string;
|
|
31391
|
+
regulated_data_db_reader_enable_ssl: boolean;
|
|
31392
|
+
unregulated_db_reader_enable_ssl: boolean;
|
|
31393
|
+
regulated_data_db_writer_port: number;
|
|
31394
|
+
unregulated_db_writer_port: number;
|
|
31395
|
+
unregulated_db_writer_enable_ssl: boolean;
|
|
31396
|
+
unregulated_db_reader_schema: string;
|
|
31397
|
+
regulated_data_db_writer_enable_ssl: boolean;
|
|
31398
|
+
regulated_data_db_writer_schema: string;
|
|
31399
|
+
regulated_data_db_writer_auth_method: "password" | "iam_role";
|
|
31400
|
+
inserted_at?: string | null | undefined;
|
|
31401
|
+
regulated_data_db_writer_host: string;
|
|
31402
|
+
regulated_data_db_reader_auth_method: "password" | "iam_role";
|
|
31403
|
+
timezone: string | null;
|
|
31404
|
+
data_domain: "healthcare" | "core_banking" | "payment_risk" | "accounts_receivable" | "service_commerce" | "trading" | "foundation";
|
|
31405
|
+
}> | null | undefined;
|
|
31406
|
+
description?: string | null | undefined;
|
|
31407
|
+
id?: string | null | undefined;
|
|
31408
|
+
image_url?: string | null | undefined;
|
|
31409
|
+
inserted_at?: string | null | undefined;
|
|
31410
|
+
is_default: boolean;
|
|
31411
|
+
name: string;
|
|
31412
|
+
status: "draft" | "active" | "inactive";
|
|
31413
|
+
updated_at?: string | null | undefined;
|
|
31414
|
+
uri: string;
|
|
31415
|
+
}>]>;
|
|
30886
31416
|
/**
|
|
30887
31417
|
* Full Data Source resource (PUT semantics — all fields required)
|
|
30888
31418
|
*/
|
|
@@ -32387,7 +32917,7 @@ declare const vPlatformApiAgenticWorkflowControllerShowResponse: v.SchemaWithPip
|
|
|
32387
32917
|
description?: string | null | undefined;
|
|
32388
32918
|
id?: string | null | undefined;
|
|
32389
32919
|
inserted_at?: string | null | undefined;
|
|
32390
|
-
intent?: "sms" | "email" | "
|
|
32920
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
32391
32921
|
name?: string | null | undefined;
|
|
32392
32922
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
32393
32923
|
updated_at?: string | null | undefined;
|
|
@@ -32567,7 +33097,7 @@ declare const vPlatformApiAgenticWorkflowControllerShowResponse: v.SchemaWithPip
|
|
|
32567
33097
|
description?: string | null | undefined;
|
|
32568
33098
|
id?: string | null | undefined;
|
|
32569
33099
|
inserted_at?: string | null | undefined;
|
|
32570
|
-
intent?: "sms" | "email" | "
|
|
33100
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
32571
33101
|
name?: string | null | undefined;
|
|
32572
33102
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
32573
33103
|
updated_at?: string | null | undefined;
|
|
@@ -32753,7 +33283,7 @@ declare const vPlatformApiAgenticWorkflowControllerShowResponse: v.SchemaWithPip
|
|
|
32753
33283
|
description?: string | null | undefined;
|
|
32754
33284
|
id?: string | null | undefined;
|
|
32755
33285
|
inserted_at?: string | null | undefined;
|
|
32756
|
-
intent?: "sms" | "email" | "
|
|
33286
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
32757
33287
|
name?: string | null | undefined;
|
|
32758
33288
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
32759
33289
|
updated_at?: string | null | undefined;
|
|
@@ -32939,7 +33469,7 @@ declare const vPlatformApiAgenticWorkflowControllerShowResponse: v.SchemaWithPip
|
|
|
32939
33469
|
description?: string | null | undefined;
|
|
32940
33470
|
id?: string | null | undefined;
|
|
32941
33471
|
inserted_at?: string | null | undefined;
|
|
32942
|
-
intent?: "sms" | "email" | "
|
|
33472
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
32943
33473
|
name?: string | null | undefined;
|
|
32944
33474
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
32945
33475
|
updated_at?: string | null | undefined;
|
|
@@ -33369,7 +33899,7 @@ declare const vPlatformApiAgenticWorkflowControllerShowResponse: v.SchemaWithPip
|
|
|
33369
33899
|
description?: string | null | undefined;
|
|
33370
33900
|
id?: string | null | undefined;
|
|
33371
33901
|
inserted_at?: string | null | undefined;
|
|
33372
|
-
intent?: "sms" | "email" | "
|
|
33902
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
33373
33903
|
name?: string | null | undefined;
|
|
33374
33904
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
33375
33905
|
updated_at?: string | null | undefined;
|
|
@@ -34522,7 +35052,7 @@ declare const vPlatformApiAgenticWorkflowControllerUpdateResponse: v.SchemaWithP
|
|
|
34522
35052
|
description?: string | null | undefined;
|
|
34523
35053
|
id?: string | null | undefined;
|
|
34524
35054
|
inserted_at?: string | null | undefined;
|
|
34525
|
-
intent?: "sms" | "email" | "
|
|
35055
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
34526
35056
|
name?: string | null | undefined;
|
|
34527
35057
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
34528
35058
|
updated_at?: string | null | undefined;
|
|
@@ -34702,7 +35232,7 @@ declare const vPlatformApiAgenticWorkflowControllerUpdateResponse: v.SchemaWithP
|
|
|
34702
35232
|
description?: string | null | undefined;
|
|
34703
35233
|
id?: string | null | undefined;
|
|
34704
35234
|
inserted_at?: string | null | undefined;
|
|
34705
|
-
intent?: "sms" | "email" | "
|
|
35235
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
34706
35236
|
name?: string | null | undefined;
|
|
34707
35237
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
34708
35238
|
updated_at?: string | null | undefined;
|
|
@@ -34888,7 +35418,7 @@ declare const vPlatformApiAgenticWorkflowControllerUpdateResponse: v.SchemaWithP
|
|
|
34888
35418
|
description?: string | null | undefined;
|
|
34889
35419
|
id?: string | null | undefined;
|
|
34890
35420
|
inserted_at?: string | null | undefined;
|
|
34891
|
-
intent?: "sms" | "email" | "
|
|
35421
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
34892
35422
|
name?: string | null | undefined;
|
|
34893
35423
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
34894
35424
|
updated_at?: string | null | undefined;
|
|
@@ -35074,7 +35604,7 @@ declare const vPlatformApiAgenticWorkflowControllerUpdateResponse: v.SchemaWithP
|
|
|
35074
35604
|
description?: string | null | undefined;
|
|
35075
35605
|
id?: string | null | undefined;
|
|
35076
35606
|
inserted_at?: string | null | undefined;
|
|
35077
|
-
intent?: "sms" | "email" | "
|
|
35607
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
35078
35608
|
name?: string | null | undefined;
|
|
35079
35609
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
35080
35610
|
updated_at?: string | null | undefined;
|
|
@@ -35504,7 +36034,7 @@ declare const vPlatformApiAgenticWorkflowControllerUpdateResponse: v.SchemaWithP
|
|
|
35504
36034
|
description?: string | null | undefined;
|
|
35505
36035
|
id?: string | null | undefined;
|
|
35506
36036
|
inserted_at?: string | null | undefined;
|
|
35507
|
-
intent?: "sms" | "email" | "
|
|
36037
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
35508
36038
|
name?: string | null | undefined;
|
|
35509
36039
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
35510
36040
|
updated_at?: string | null | undefined;
|
|
@@ -35577,16 +36107,6 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerBatchLogRefreshResp
|
|
|
35577
36107
|
total_wels?: number | null | undefined;
|
|
35578
36108
|
workflow_id?: string | null | undefined;
|
|
35579
36109
|
}>]>;
|
|
35580
|
-
declare const vPlatformApiDatalakeControllerRegisteredDatasetsPath: v.ObjectSchema<{
|
|
35581
|
-
readonly tenant_slug: v.StringSchema<undefined>;
|
|
35582
|
-
readonly datalake_slug: v.StringSchema<undefined>;
|
|
35583
|
-
}, undefined>;
|
|
35584
|
-
/**
|
|
35585
|
-
* Registered datasets
|
|
35586
|
-
*/
|
|
35587
|
-
declare const vPlatformApiDatalakeControllerRegisteredDatasetsResponse: v.ObjectSchema<{
|
|
35588
|
-
readonly datasets: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
35589
|
-
}, undefined>;
|
|
35590
36110
|
/**
|
|
35591
36111
|
* JSON payload
|
|
35592
36112
|
*/
|
|
@@ -35606,6 +36126,148 @@ declare const vPlatformApiDataActivationClientControllerIngestResponse: v.Object
|
|
|
35606
36126
|
readonly jobs_count: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
35607
36127
|
readonly key: v.StringSchema<undefined>;
|
|
35608
36128
|
}, undefined>;
|
|
36129
|
+
declare const vPlatformApiActionStatusUpdaterControllerShowPath: v.ObjectSchema<{
|
|
36130
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
36131
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
36132
|
+
}, undefined>;
|
|
36133
|
+
/**
|
|
36134
|
+
* Action status updater
|
|
36135
|
+
*/
|
|
36136
|
+
declare const vPlatformApiActionStatusUpdaterControllerShowResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36137
|
+
readonly cron_expression: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36138
|
+
readonly datalake_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
36139
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36140
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36141
|
+
readonly name: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36142
|
+
readonly sender_tool_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, undefined>;
|
|
36143
|
+
readonly tenant_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36144
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36145
|
+
readonly updater_body: v.NullishSchema<v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
36146
|
+
readonly updater_body_type: v.LiteralSchema<"cloud_watch_request", undefined>;
|
|
36147
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36148
|
+
readonly end_time: v.StringSchema<undefined>;
|
|
36149
|
+
readonly log_group_name: v.StringSchema<undefined>;
|
|
36150
|
+
readonly start_time: v.StringSchema<undefined>;
|
|
36151
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36152
|
+
end_time: string;
|
|
36153
|
+
log_group_name: string;
|
|
36154
|
+
start_time: string;
|
|
36155
|
+
}>]>, v.ObjectSchema<{
|
|
36156
|
+
readonly updater_body_type: v.PicklistSchema<["cloud_watch_request"], undefined>;
|
|
36157
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
36158
|
+
readonly updater_body_type: v.LiteralSchema<"restapi_request", undefined>;
|
|
36159
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36160
|
+
readonly body: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36161
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36162
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36163
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
36164
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36165
|
+
body?: string | null | undefined;
|
|
36166
|
+
path?: string | null | undefined;
|
|
36167
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36168
|
+
}>]>, undefined>;
|
|
36169
|
+
readonly method: v.PicklistSchema<["head", "get", "put", "post", "delete", "patch"], undefined>;
|
|
36170
|
+
readonly pagination_context_template: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36171
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36172
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36173
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
36174
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36175
|
+
body?: string | null | undefined;
|
|
36176
|
+
path?: string | null | undefined;
|
|
36177
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36178
|
+
}>]>;
|
|
36179
|
+
readonly params: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36180
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36181
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36182
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
36183
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36184
|
+
body?: string | null | undefined;
|
|
36185
|
+
path?: string | null | undefined;
|
|
36186
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36187
|
+
}>]>, undefined>;
|
|
36188
|
+
readonly path: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36189
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36190
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36191
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
36192
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36193
|
+
body?: string | null | undefined;
|
|
36194
|
+
path?: string | null | undefined;
|
|
36195
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36196
|
+
}>]>;
|
|
36197
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36198
|
+
body?: Readonly<{
|
|
36199
|
+
body?: string | null | undefined;
|
|
36200
|
+
path?: string | null | undefined;
|
|
36201
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36202
|
+
}> | null | undefined;
|
|
36203
|
+
method: "head" | "get" | "put" | "post" | "delete" | "patch";
|
|
36204
|
+
readonly pagination_context_template: Readonly<{
|
|
36205
|
+
body?: string | null | undefined;
|
|
36206
|
+
path?: string | null | undefined;
|
|
36207
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36208
|
+
}>;
|
|
36209
|
+
params?: Readonly<{
|
|
36210
|
+
body?: string | null | undefined;
|
|
36211
|
+
path?: string | null | undefined;
|
|
36212
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36213
|
+
}> | null | undefined;
|
|
36214
|
+
readonly path: Readonly<{
|
|
36215
|
+
body?: string | null | undefined;
|
|
36216
|
+
path?: string | null | undefined;
|
|
36217
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36218
|
+
}>;
|
|
36219
|
+
}>]>, v.ObjectSchema<{
|
|
36220
|
+
readonly updater_body_type: v.PicklistSchema<["restapi_request"], undefined>;
|
|
36221
|
+
}, undefined>], undefined>], undefined>], undefined>, undefined>;
|
|
36222
|
+
readonly updater_tool_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
36223
|
+
readonly updater_type: v.NullishSchema<v.PicklistSchema<["cloud_watch", "restapi"], undefined>, undefined>;
|
|
36224
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36225
|
+
cron_expression?: string | null | undefined;
|
|
36226
|
+
datalake_id?: string | null | undefined;
|
|
36227
|
+
id?: string | null | undefined;
|
|
36228
|
+
inserted_at?: string | null | undefined;
|
|
36229
|
+
name?: string | null | undefined;
|
|
36230
|
+
sender_tool_ids?: string[] | null | undefined;
|
|
36231
|
+
tenant_id?: string | null | undefined;
|
|
36232
|
+
updated_at?: string | null | undefined;
|
|
36233
|
+
updater_body?: ({
|
|
36234
|
+
updater_body_type: "cloud_watch_request";
|
|
36235
|
+
} & Readonly<{
|
|
36236
|
+
end_time: string;
|
|
36237
|
+
log_group_name: string;
|
|
36238
|
+
start_time: string;
|
|
36239
|
+
}> & {
|
|
36240
|
+
updater_body_type: "cloud_watch_request";
|
|
36241
|
+
}) | ({
|
|
36242
|
+
updater_body_type: "restapi_request";
|
|
36243
|
+
} & Readonly<{
|
|
36244
|
+
body?: Readonly<{
|
|
36245
|
+
body?: string | null | undefined;
|
|
36246
|
+
path?: string | null | undefined;
|
|
36247
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36248
|
+
}> | null | undefined;
|
|
36249
|
+
method: "head" | "get" | "put" | "post" | "delete" | "patch";
|
|
36250
|
+
readonly pagination_context_template: Readonly<{
|
|
36251
|
+
body?: string | null | undefined;
|
|
36252
|
+
path?: string | null | undefined;
|
|
36253
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36254
|
+
}>;
|
|
36255
|
+
params?: Readonly<{
|
|
36256
|
+
body?: string | null | undefined;
|
|
36257
|
+
path?: string | null | undefined;
|
|
36258
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36259
|
+
}> | null | undefined;
|
|
36260
|
+
readonly path: Readonly<{
|
|
36261
|
+
body?: string | null | undefined;
|
|
36262
|
+
path?: string | null | undefined;
|
|
36263
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36264
|
+
}>;
|
|
36265
|
+
}> & {
|
|
36266
|
+
updater_body_type: "restapi_request";
|
|
36267
|
+
}) | null | undefined;
|
|
36268
|
+
updater_tool_id?: string | null | undefined;
|
|
36269
|
+
updater_type?: "cloud_watch" | "restapi" | null | undefined;
|
|
36270
|
+
}>]>;
|
|
35609
36271
|
/**
|
|
35610
36272
|
* Full Action Status Updater resource (PUT semantics — all fields required)
|
|
35611
36273
|
*/
|
|
@@ -35805,6 +36467,51 @@ declare const vPlatformApiActionStatusUpdaterControllerUpdateResponse: v.SchemaW
|
|
|
35805
36467
|
updater_tool_id?: string | null | undefined;
|
|
35806
36468
|
updater_type?: "cloud_watch" | "restapi" | null | undefined;
|
|
35807
36469
|
}>]>;
|
|
36470
|
+
declare const vPlatformApiGenericTableControllerShowPath: v.ObjectSchema<{
|
|
36471
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
36472
|
+
readonly datalake_slug: v.StringSchema<undefined>;
|
|
36473
|
+
readonly name: v.StringSchema<undefined>;
|
|
36474
|
+
}, undefined>;
|
|
36475
|
+
/**
|
|
36476
|
+
* Generic table
|
|
36477
|
+
*/
|
|
36478
|
+
declare const vPlatformApiGenericTableControllerShowResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36479
|
+
readonly columns: v.NullishSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
36480
|
+
readonly data_domain: v.NullishSchema<v.PicklistSchema<["healthcare", "core_banking", "payment_risk", "accounts_receivable", "service_commerce", "trading", "foundation"], undefined>, undefined>;
|
|
36481
|
+
readonly datalake_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36482
|
+
readonly description: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36483
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36484
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36485
|
+
readonly name: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
36486
|
+
readonly status: v.NullishSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["new", "stale", "processing", "deployed"], undefined>, v.ReadonlyAction<"new" | "stale" | "processing" | "deployed">]>, undefined>;
|
|
36487
|
+
readonly tenant_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36488
|
+
readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36489
|
+
readonly type: v.NullishSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["custom", "system"], undefined>, v.ReadonlyAction<"system" | "custom">]>, undefined>;
|
|
36490
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36491
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36492
|
+
columns?: unknown[] | null | undefined;
|
|
36493
|
+
data_domain?: "healthcare" | "core_banking" | "payment_risk" | "accounts_receivable" | "service_commerce" | "trading" | "foundation" | null | undefined;
|
|
36494
|
+
datalake_id?: string | null | undefined;
|
|
36495
|
+
description?: string | null | undefined;
|
|
36496
|
+
id?: string | null | undefined;
|
|
36497
|
+
inserted_at?: string | null | undefined;
|
|
36498
|
+
name?: string | null | undefined;
|
|
36499
|
+
status?: "new" | "stale" | "processing" | "deployed" | null | undefined;
|
|
36500
|
+
tenant_id?: string | null | undefined;
|
|
36501
|
+
title?: string | null | undefined;
|
|
36502
|
+
type?: "system" | "custom" | null | undefined;
|
|
36503
|
+
updated_at?: string | null | undefined;
|
|
36504
|
+
}>]>;
|
|
36505
|
+
declare const vPlatformApiDatalakeControllerSystemDatasetsPath: v.ObjectSchema<{
|
|
36506
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
36507
|
+
readonly datalake_slug: v.StringSchema<undefined>;
|
|
36508
|
+
}, undefined>;
|
|
36509
|
+
/**
|
|
36510
|
+
* Industry-registered datasets
|
|
36511
|
+
*/
|
|
36512
|
+
declare const vPlatformApiDatalakeControllerSystemDatasetsResponse: v.ObjectSchema<{
|
|
36513
|
+
readonly datasets: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
36514
|
+
}, undefined>;
|
|
35808
36515
|
declare const vPlatformApiAiAgentControllerIndexPath: v.ObjectSchema<{
|
|
35809
36516
|
readonly tenant_slug: v.StringSchema<undefined>;
|
|
35810
36517
|
readonly datalake_slug: v.StringSchema<undefined>;
|
|
@@ -36550,7 +37257,7 @@ declare const vPlatformApiAiAgentControllerIndexResponse: v.ObjectSchema<{
|
|
|
36550
37257
|
description?: string | null | undefined;
|
|
36551
37258
|
id?: string | null | undefined;
|
|
36552
37259
|
inserted_at?: string | null | undefined;
|
|
36553
|
-
intent?: "sms" | "email" | "
|
|
37260
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
36554
37261
|
name?: string | null | undefined;
|
|
36555
37262
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
36556
37263
|
updated_at?: string | null | undefined;
|
|
@@ -36842,7 +37549,7 @@ declare const vPlatformApiAiAgentControllerIndexResponse: v.ObjectSchema<{
|
|
|
36842
37549
|
description?: string | null | undefined;
|
|
36843
37550
|
id?: string | null | undefined;
|
|
36844
37551
|
inserted_at?: string | null | undefined;
|
|
36845
|
-
intent?: "sms" | "email" | "
|
|
37552
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
36846
37553
|
name?: string | null | undefined;
|
|
36847
37554
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
36848
37555
|
updated_at?: string | null | undefined;
|
|
@@ -37607,7 +38314,7 @@ declare const vPlatformApiAiAgentControllerCreateResponse: v.SchemaWithPipe<read
|
|
|
37607
38314
|
description?: string | null | undefined;
|
|
37608
38315
|
id?: string | null | undefined;
|
|
37609
38316
|
inserted_at?: string | null | undefined;
|
|
37610
|
-
intent?: "sms" | "email" | "
|
|
38317
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
37611
38318
|
name?: string | null | undefined;
|
|
37612
38319
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
37613
38320
|
updated_at?: string | null | undefined;
|
|
@@ -37899,7 +38606,7 @@ declare const vPlatformApiAiAgentControllerCreateResponse: v.SchemaWithPipe<read
|
|
|
37899
38606
|
description?: string | null | undefined;
|
|
37900
38607
|
id?: string | null | undefined;
|
|
37901
38608
|
inserted_at?: string | null | undefined;
|
|
37902
|
-
intent?: "sms" | "email" | "
|
|
38609
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
37903
38610
|
name?: string | null | undefined;
|
|
37904
38611
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
37905
38612
|
updated_at?: string | null | undefined;
|
|
@@ -37975,6 +38682,7 @@ declare const vPlatformApiInteroperabilityContractControllerShowResponse: v.Sche
|
|
|
37975
38682
|
readonly name: v.StringSchema<undefined>;
|
|
37976
38683
|
readonly resource_type: v.StringSchema<undefined>;
|
|
37977
38684
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
38685
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
37978
38686
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
37979
38687
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
37980
38688
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -37987,6 +38695,7 @@ declare const vPlatformApiInteroperabilityContractControllerShowResponse: v.Sche
|
|
|
37987
38695
|
name: string;
|
|
37988
38696
|
resource_type: string;
|
|
37989
38697
|
slug?: string | null | undefined;
|
|
38698
|
+
system_created: boolean;
|
|
37990
38699
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
37991
38700
|
updated_at?: string | null | undefined;
|
|
37992
38701
|
}>]>;
|
|
@@ -38044,6 +38753,7 @@ declare const vPlatformApiInteroperabilityContractControllerUpdateResponse: v.Sc
|
|
|
38044
38753
|
readonly name: v.StringSchema<undefined>;
|
|
38045
38754
|
readonly resource_type: v.StringSchema<undefined>;
|
|
38046
38755
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
38756
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
38047
38757
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
38048
38758
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
38049
38759
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -38056,6 +38766,7 @@ declare const vPlatformApiInteroperabilityContractControllerUpdateResponse: v.Sc
|
|
|
38056
38766
|
name: string;
|
|
38057
38767
|
resource_type: string;
|
|
38058
38768
|
slug?: string | null | undefined;
|
|
38769
|
+
system_created: boolean;
|
|
38059
38770
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
38060
38771
|
updated_at?: string | null | undefined;
|
|
38061
38772
|
}>]>;
|
|
@@ -38111,7 +38822,7 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowResp
|
|
|
38111
38822
|
runtime_filter_result?: boolean | null | undefined;
|
|
38112
38823
|
scheduled_at?: string | null | undefined;
|
|
38113
38824
|
started_at?: string | null | undefined;
|
|
38114
|
-
status: "completed" | "
|
|
38825
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
38115
38826
|
updated_at?: string | null | undefined;
|
|
38116
38827
|
workflow_execution_log_id: string;
|
|
38117
38828
|
workflow_id: string;
|
|
@@ -38133,7 +38844,7 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowResp
|
|
|
38133
38844
|
runtime_filter_result?: boolean | null | undefined;
|
|
38134
38845
|
scheduled_at?: string | null | undefined;
|
|
38135
38846
|
started_at?: string | null | undefined;
|
|
38136
|
-
status: "completed" | "
|
|
38847
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
38137
38848
|
updated_at?: string | null | undefined;
|
|
38138
38849
|
workflow_execution_log_id: string;
|
|
38139
38850
|
workflow_id: string;
|
|
@@ -38177,7 +38888,7 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowResp
|
|
|
38177
38888
|
runtime_filter_result?: boolean | null | undefined;
|
|
38178
38889
|
scheduled_at?: string | null | undefined;
|
|
38179
38890
|
started_at?: string | null | undefined;
|
|
38180
|
-
status: "completed" | "
|
|
38891
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
38181
38892
|
updated_at?: string | null | undefined;
|
|
38182
38893
|
workflow_execution_log_id: string;
|
|
38183
38894
|
workflow_id: string;
|
|
@@ -38197,7 +38908,7 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogShowResp
|
|
|
38197
38908
|
mode: "live" | "dry_run";
|
|
38198
38909
|
sampled_event_id?: string | null | undefined;
|
|
38199
38910
|
started_at?: string | null | undefined;
|
|
38200
|
-
status: "completed" | "
|
|
38911
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "partial";
|
|
38201
38912
|
subject_id?: string | null | undefined;
|
|
38202
38913
|
subject_type?: string | null | undefined;
|
|
38203
38914
|
tenant_id?: string | null | undefined;
|
|
@@ -39864,7 +40575,7 @@ declare const vPlatformApiAiAgentControllerShowResponse: v.SchemaWithPipe<readon
|
|
|
39864
40575
|
description?: string | null | undefined;
|
|
39865
40576
|
id?: string | null | undefined;
|
|
39866
40577
|
inserted_at?: string | null | undefined;
|
|
39867
|
-
intent?: "sms" | "email" | "
|
|
40578
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
39868
40579
|
name?: string | null | undefined;
|
|
39869
40580
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
39870
40581
|
updated_at?: string | null | undefined;
|
|
@@ -40156,7 +40867,7 @@ declare const vPlatformApiAiAgentControllerShowResponse: v.SchemaWithPipe<readon
|
|
|
40156
40867
|
description?: string | null | undefined;
|
|
40157
40868
|
id?: string | null | undefined;
|
|
40158
40869
|
inserted_at?: string | null | undefined;
|
|
40159
|
-
intent?: "sms" | "email" | "
|
|
40870
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
40160
40871
|
name?: string | null | undefined;
|
|
40161
40872
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
40162
40873
|
updated_at?: string | null | undefined;
|
|
@@ -40915,7 +41626,7 @@ declare const vPlatformApiAiAgentControllerUpdateResponse: v.SchemaWithPipe<read
|
|
|
40915
41626
|
description?: string | null | undefined;
|
|
40916
41627
|
id?: string | null | undefined;
|
|
40917
41628
|
inserted_at?: string | null | undefined;
|
|
40918
|
-
intent?: "sms" | "email" | "
|
|
41629
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
40919
41630
|
name?: string | null | undefined;
|
|
40920
41631
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
40921
41632
|
updated_at?: string | null | undefined;
|
|
@@ -41207,7 +41918,7 @@ declare const vPlatformApiAiAgentControllerUpdateResponse: v.SchemaWithPipe<read
|
|
|
41207
41918
|
description?: string | null | undefined;
|
|
41208
41919
|
id?: string | null | undefined;
|
|
41209
41920
|
inserted_at?: string | null | undefined;
|
|
41210
|
-
intent?: "sms" | "email" | "
|
|
41921
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
41211
41922
|
name?: string | null | undefined;
|
|
41212
41923
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
41213
41924
|
updated_at?: string | null | undefined;
|
|
@@ -41232,6 +41943,20 @@ declare const vPlatformApiAdminControllerConfirmUserResponse: v.SchemaWithPipe<r
|
|
|
41232
41943
|
readonly id: string;
|
|
41233
41944
|
last_name?: string | null | undefined;
|
|
41234
41945
|
}>]>;
|
|
41946
|
+
declare const vPlatformApiTemplatesControllerIndexPath: v.ObjectSchema<{
|
|
41947
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
41948
|
+
readonly datalake_slug: v.StringSchema<undefined>;
|
|
41949
|
+
}, undefined>;
|
|
41950
|
+
/**
|
|
41951
|
+
* System template list
|
|
41952
|
+
*/
|
|
41953
|
+
declare const vPlatformApiTemplatesControllerIndexResponse: v.ObjectSchema<{
|
|
41954
|
+
readonly data: v.ArraySchema<v.ObjectSchema<{
|
|
41955
|
+
readonly content: v.StringSchema<undefined>;
|
|
41956
|
+
readonly output_schema: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
41957
|
+
readonly path: v.StringSchema<undefined>;
|
|
41958
|
+
}, undefined>, undefined>;
|
|
41959
|
+
}, undefined>;
|
|
41235
41960
|
declare const vPlatformApiConnectedAppMgmtControllerIndexPath: v.ObjectSchema<{
|
|
41236
41961
|
readonly tenant_slug: v.StringSchema<undefined>;
|
|
41237
41962
|
readonly datalake_slug: v.StringSchema<undefined>;
|
|
@@ -42661,7 +43386,7 @@ declare const vPlatformApiAgenticWorkflowControllerIndexResponse: v.ObjectSchema
|
|
|
42661
43386
|
description?: string | null | undefined;
|
|
42662
43387
|
id?: string | null | undefined;
|
|
42663
43388
|
inserted_at?: string | null | undefined;
|
|
42664
|
-
intent?: "sms" | "email" | "
|
|
43389
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
42665
43390
|
name?: string | null | undefined;
|
|
42666
43391
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
42667
43392
|
updated_at?: string | null | undefined;
|
|
@@ -42841,7 +43566,7 @@ declare const vPlatformApiAgenticWorkflowControllerIndexResponse: v.ObjectSchema
|
|
|
42841
43566
|
description?: string | null | undefined;
|
|
42842
43567
|
id?: string | null | undefined;
|
|
42843
43568
|
inserted_at?: string | null | undefined;
|
|
42844
|
-
intent?: "sms" | "email" | "
|
|
43569
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
42845
43570
|
name?: string | null | undefined;
|
|
42846
43571
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
42847
43572
|
updated_at?: string | null | undefined;
|
|
@@ -43027,7 +43752,7 @@ declare const vPlatformApiAgenticWorkflowControllerIndexResponse: v.ObjectSchema
|
|
|
43027
43752
|
description?: string | null | undefined;
|
|
43028
43753
|
id?: string | null | undefined;
|
|
43029
43754
|
inserted_at?: string | null | undefined;
|
|
43030
|
-
intent?: "sms" | "email" | "
|
|
43755
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
43031
43756
|
name?: string | null | undefined;
|
|
43032
43757
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
43033
43758
|
updated_at?: string | null | undefined;
|
|
@@ -43213,7 +43938,7 @@ declare const vPlatformApiAgenticWorkflowControllerIndexResponse: v.ObjectSchema
|
|
|
43213
43938
|
description?: string | null | undefined;
|
|
43214
43939
|
id?: string | null | undefined;
|
|
43215
43940
|
inserted_at?: string | null | undefined;
|
|
43216
|
-
intent?: "sms" | "email" | "
|
|
43941
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
43217
43942
|
name?: string | null | undefined;
|
|
43218
43943
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
43219
43944
|
updated_at?: string | null | undefined;
|
|
@@ -43643,7 +44368,7 @@ declare const vPlatformApiAgenticWorkflowControllerIndexResponse: v.ObjectSchema
|
|
|
43643
44368
|
description?: string | null | undefined;
|
|
43644
44369
|
id?: string | null | undefined;
|
|
43645
44370
|
inserted_at?: string | null | undefined;
|
|
43646
|
-
intent?: "sms" | "email" | "
|
|
44371
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
43647
44372
|
name?: string | null | undefined;
|
|
43648
44373
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
43649
44374
|
updated_at?: string | null | undefined;
|
|
@@ -44802,7 +45527,7 @@ declare const vPlatformApiAgenticWorkflowControllerCreateResponse: v.SchemaWithP
|
|
|
44802
45527
|
description?: string | null | undefined;
|
|
44803
45528
|
id?: string | null | undefined;
|
|
44804
45529
|
inserted_at?: string | null | undefined;
|
|
44805
|
-
intent?: "sms" | "email" | "
|
|
45530
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
44806
45531
|
name?: string | null | undefined;
|
|
44807
45532
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
44808
45533
|
updated_at?: string | null | undefined;
|
|
@@ -44982,7 +45707,7 @@ declare const vPlatformApiAgenticWorkflowControllerCreateResponse: v.SchemaWithP
|
|
|
44982
45707
|
description?: string | null | undefined;
|
|
44983
45708
|
id?: string | null | undefined;
|
|
44984
45709
|
inserted_at?: string | null | undefined;
|
|
44985
|
-
intent?: "sms" | "email" | "
|
|
45710
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
44986
45711
|
name?: string | null | undefined;
|
|
44987
45712
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
44988
45713
|
updated_at?: string | null | undefined;
|
|
@@ -45168,7 +45893,7 @@ declare const vPlatformApiAgenticWorkflowControllerCreateResponse: v.SchemaWithP
|
|
|
45168
45893
|
description?: string | null | undefined;
|
|
45169
45894
|
id?: string | null | undefined;
|
|
45170
45895
|
inserted_at?: string | null | undefined;
|
|
45171
|
-
intent?: "sms" | "email" | "
|
|
45896
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
45172
45897
|
name?: string | null | undefined;
|
|
45173
45898
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
45174
45899
|
updated_at?: string | null | undefined;
|
|
@@ -45354,7 +46079,7 @@ declare const vPlatformApiAgenticWorkflowControllerCreateResponse: v.SchemaWithP
|
|
|
45354
46079
|
description?: string | null | undefined;
|
|
45355
46080
|
id?: string | null | undefined;
|
|
45356
46081
|
inserted_at?: string | null | undefined;
|
|
45357
|
-
intent?: "sms" | "email" | "
|
|
46082
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
45358
46083
|
name?: string | null | undefined;
|
|
45359
46084
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
45360
46085
|
updated_at?: string | null | undefined;
|
|
@@ -45784,7 +46509,7 @@ declare const vPlatformApiAgenticWorkflowControllerCreateResponse: v.SchemaWithP
|
|
|
45784
46509
|
description?: string | null | undefined;
|
|
45785
46510
|
id?: string | null | undefined;
|
|
45786
46511
|
inserted_at?: string | null | undefined;
|
|
45787
|
-
intent?: "sms" | "email" | "
|
|
46512
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
45788
46513
|
name?: string | null | undefined;
|
|
45789
46514
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
45790
46515
|
updated_at?: string | null | undefined;
|
|
@@ -46373,7 +47098,7 @@ declare const vPlatformApiToolControllerShowResponse: v.SchemaWithPipe<readonly
|
|
|
46373
47098
|
description?: string | null | undefined;
|
|
46374
47099
|
id?: string | null | undefined;
|
|
46375
47100
|
inserted_at?: string | null | undefined;
|
|
46376
|
-
intent?: "sms" | "email" | "
|
|
47101
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
46377
47102
|
name?: string | null | undefined;
|
|
46378
47103
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
46379
47104
|
updated_at?: string | null | undefined;
|
|
@@ -47014,7 +47739,7 @@ declare const vPlatformApiToolControllerUpdateResponse: v.SchemaWithPipe<readonl
|
|
|
47014
47739
|
description?: string | null | undefined;
|
|
47015
47740
|
id?: string | null | undefined;
|
|
47016
47741
|
inserted_at?: string | null | undefined;
|
|
47017
|
-
intent?: "sms" | "email" | "
|
|
47742
|
+
intent?: "sms" | "email" | "export" | "voice" | "data_exchange" | "status_poller" | "chat_completion" | "context_extraction" | null | undefined;
|
|
47018
47743
|
name?: string | null | undefined;
|
|
47019
47744
|
status?: "error" | "draft" | "active" | "inactive" | "marked_for_deletion" | null | undefined;
|
|
47020
47745
|
updated_at?: string | null | undefined;
|
|
@@ -47310,6 +48035,11 @@ declare const vPlatformApiDataActivationClientControllerCreateBody: v.ObjectSche
|
|
|
47310
48035
|
readonly interoperability_contract_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, readonly []>;
|
|
47311
48036
|
readonly loop_over: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["services", "locations", "providers"], undefined>, undefined>, readonly []>;
|
|
47312
48037
|
readonly name: v.StringSchema<undefined>;
|
|
48038
|
+
readonly response_extractor: v.NullishSchema<v.ObjectSchema<{
|
|
48039
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
48040
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
48041
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
48042
|
+
}, undefined>, undefined>;
|
|
47313
48043
|
readonly row_filter: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
47314
48044
|
readonly tool_call: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
47315
48045
|
readonly tool_call_type: v.LiteralSchema<"restapi_request", undefined>;
|
|
@@ -47921,7 +48651,7 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexRe
|
|
|
47921
48651
|
runtime_filter_result?: boolean | null | undefined;
|
|
47922
48652
|
scheduled_at?: string | null | undefined;
|
|
47923
48653
|
started_at?: string | null | undefined;
|
|
47924
|
-
status: "completed" | "
|
|
48654
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
47925
48655
|
updated_at?: string | null | undefined;
|
|
47926
48656
|
workflow_execution_log_id: string;
|
|
47927
48657
|
workflow_id: string;
|
|
@@ -47943,7 +48673,7 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexRe
|
|
|
47943
48673
|
runtime_filter_result?: boolean | null | undefined;
|
|
47944
48674
|
scheduled_at?: string | null | undefined;
|
|
47945
48675
|
started_at?: string | null | undefined;
|
|
47946
|
-
status: "completed" | "
|
|
48676
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
47947
48677
|
updated_at?: string | null | undefined;
|
|
47948
48678
|
workflow_execution_log_id: string;
|
|
47949
48679
|
workflow_id: string;
|
|
@@ -47987,7 +48717,7 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexRe
|
|
|
47987
48717
|
runtime_filter_result?: boolean | null | undefined;
|
|
47988
48718
|
scheduled_at?: string | null | undefined;
|
|
47989
48719
|
started_at?: string | null | undefined;
|
|
47990
|
-
status: "completed" | "
|
|
48720
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "skipped" | "cancelled";
|
|
47991
48721
|
updated_at?: string | null | undefined;
|
|
47992
48722
|
workflow_execution_log_id: string;
|
|
47993
48723
|
workflow_id: string;
|
|
@@ -48007,7 +48737,7 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerWorkflowLogsIndexRe
|
|
|
48007
48737
|
mode: "live" | "dry_run";
|
|
48008
48738
|
sampled_event_id?: string | null | undefined;
|
|
48009
48739
|
started_at?: string | null | undefined;
|
|
48010
|
-
status: "completed" | "
|
|
48740
|
+
status: "completed" | "filtered" | "pending" | "failed" | "executing" | "partial";
|
|
48011
48741
|
subject_id?: string | null | undefined;
|
|
48012
48742
|
subject_type?: string | null | undefined;
|
|
48013
48743
|
tenant_id?: string | null | undefined;
|
|
@@ -48595,5 +49325,5 @@ declare const vPlatformApiConnectedAppControllerResolvePageResponse: v.ObjectSch
|
|
|
48595
49325
|
readonly user_agent: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
48596
49326
|
}, undefined>;
|
|
48597
49327
|
//#endregion
|
|
48598
|
-
export { type ActionStatusUpdaterCloudWatchQueryRequest, type ActionStatusUpdaterResponse, type ActionStatusUpdaterRestCallRequest, type AgenticWorkflowListResponse, type AgenticWorkflowRequestWritable, type AgenticWorkflowResponse, type AiAgentResponse, type ApiConfig, 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, 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, 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, vPlatformApiActionStatusUpdaterControllerUpdateBody, vPlatformApiActionStatusUpdaterControllerUpdatePath, vPlatformApiActionStatusUpdaterControllerUpdateQuery, vPlatformApiActionStatusUpdaterControllerUpdateResponse, vPlatformApiAdminControllerConfirmUserPath, vPlatformApiAdminControllerConfirmUserResponse, vPlatformApiAgenticWorkflowControllerCreateBody, vPlatformApiAgenticWorkflowControllerCreatePath, vPlatformApiAgenticWorkflowControllerCreateResponse, vPlatformApiAgenticWorkflowControllerDeletePath, vPlatformApiAgenticWorkflowControllerDeleteResponse, vPlatformApiAgenticWorkflowControllerIndexPath, vPlatformApiAgenticWorkflowControllerIndexQuery, vPlatformApiAgenticWorkflowControllerIndexResponse, 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, vPlatformApiAiAgentControllerShowPath, vPlatformApiAiAgentControllerShowResponse, vPlatformApiAiAgentControllerUpdateBody, vPlatformApiAiAgentControllerUpdatePath, vPlatformApiAiAgentControllerUpdateResponse, vPlatformApiAuthControllerSignUpBody, vPlatformApiAuthControllerSignUpResponse, vPlatformApiConnectedAppControllerResolvePageBody, vPlatformApiConnectedAppControllerResolvePagePath, vPlatformApiConnectedAppControllerResolvePageResponse, vPlatformApiConnectedAppControllerUpdateMessageTrackingBody, vPlatformApiConnectedAppControllerUpdateMessageTrackingPath, vPlatformApiConnectedAppControllerUpdateMessageTrackingResponse, vPlatformApiConnectedAppMgmtControllerCreateBody, vPlatformApiConnectedAppMgmtControllerCreatePath, vPlatformApiConnectedAppMgmtControllerCreateResponse, vPlatformApiConnectedAppMgmtControllerIndexPath, vPlatformApiConnectedAppMgmtControllerIndexQuery, vPlatformApiConnectedAppMgmtControllerIndexResponse, 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, vPlatformApiDataActivationClientControllerMetadataPath, vPlatformApiDataActivationClientControllerMetadataResponse, vPlatformApiDataActivationClientControllerRunManuallyBody, vPlatformApiDataActivationClientControllerRunManuallyPath, vPlatformApiDataActivationClientControllerRunManuallyResponse, vPlatformApiDataActivationClientControllerShowPath, vPlatformApiDataActivationClientControllerShowResponse, vPlatformApiDataActivationClientControllerUpdateBody, vPlatformApiDataActivationClientControllerUpdatePath, vPlatformApiDataActivationClientControllerUpdateResponse, vPlatformApiDataSourceControllerCreateBody, vPlatformApiDataSourceControllerCreatePath, vPlatformApiDataSourceControllerCreateQuery, vPlatformApiDataSourceControllerCreateResponse, vPlatformApiDataSourceControllerIndexPath, vPlatformApiDataSourceControllerIndexQuery, vPlatformApiDataSourceControllerIndexResponse, vPlatformApiDataSourceControllerUpdateBody, vPlatformApiDataSourceControllerUpdatePath, vPlatformApiDataSourceControllerUpdateQuery, vPlatformApiDataSourceControllerUpdateResponse, vPlatformApiDatalakeControllerCreateBody, vPlatformApiDatalakeControllerCreateDownloadLinkBody, vPlatformApiDatalakeControllerCreateDownloadLinkPath, vPlatformApiDatalakeControllerCreateDownloadLinkResponse, vPlatformApiDatalakeControllerCreatePath, vPlatformApiDatalakeControllerCreateQuery, vPlatformApiDatalakeControllerCreateResponse, vPlatformApiDatalakeControllerCreateUploadLinkBody, vPlatformApiDatalakeControllerCreateUploadLinkPath, vPlatformApiDatalakeControllerCreateUploadLinkQuery, vPlatformApiDatalakeControllerCreateUploadLinkResponse, vPlatformApiDatalakeControllerIndexPath, vPlatformApiDatalakeControllerIndexQuery, vPlatformApiDatalakeControllerIndexResponse, vPlatformApiDatalakeControllerMetadataPath, vPlatformApiDatalakeControllerMetadataQuery, vPlatformApiDatalakeControllerMetadataResponse, vPlatformApiDatalakeControllerMigratePath, vPlatformApiDatalakeControllerMigrateResponse, vPlatformApiDatalakeControllerRegisteredDatasetsPath, vPlatformApiDatalakeControllerRegisteredDatasetsResponse, vPlatformApiDatalakeControllerShowPath, vPlatformApiDatalakeControllerShowQuery, vPlatformApiDatalakeControllerShowResponse, vPlatformApiDatalakeControllerUpdateBody, vPlatformApiDatalakeControllerUpdatePath, vPlatformApiDatalakeControllerUpdateResponse, vPlatformApiDatasetControllerCreateUserSearchBody, vPlatformApiDatasetControllerCreateUserSearchPath, vPlatformApiDatasetControllerCreateUserSearchQuery, vPlatformApiDatasetControllerCreateUserSearchResponse, vPlatformApiDatasetControllerDatasetMetadataPath, vPlatformApiDatasetControllerDatasetMetadataQuery, vPlatformApiDatasetControllerDatasetMetadataResponse, vPlatformApiDatasetControllerSearchPath, vPlatformApiDatasetControllerSearchQuery, vPlatformApiDatasetControllerSearchResponse, vPlatformApiGenericTableControllerCreateBody, vPlatformApiGenericTableControllerCreatePath, vPlatformApiGenericTableControllerCreateResponse, vPlatformApiGenericTableControllerIndexPath, vPlatformApiGenericTableControllerIndexQuery, vPlatformApiGenericTableControllerIndexResponse, vPlatformApiInteroperabilityContractControllerCreateBody, vPlatformApiInteroperabilityContractControllerCreatePath, vPlatformApiInteroperabilityContractControllerCreateQuery, vPlatformApiInteroperabilityContractControllerCreateResponse, vPlatformApiInteroperabilityContractControllerDeletePath, vPlatformApiInteroperabilityContractControllerDeleteQuery, vPlatformApiInteroperabilityContractControllerDeleteResponse, vPlatformApiInteroperabilityContractControllerIndexPath, vPlatformApiInteroperabilityContractControllerIndexQuery, vPlatformApiInteroperabilityContractControllerIndexResponse, 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, vPlatformApiTenantControllerCreateBody, vPlatformApiTenantControllerCreateResponse, vPlatformApiTenantControllerIndexQuery, vPlatformApiTenantControllerIndexResponse, vPlatformApiToolControllerCreateBody, vPlatformApiToolControllerCreatePath, vPlatformApiToolControllerCreateResponse, vPlatformApiToolControllerDeletePath, vPlatformApiToolControllerDeleteResponse, vPlatformApiToolControllerIndexPath, vPlatformApiToolControllerIndexQuery, vPlatformApiToolControllerIndexResponse, 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, vTemplateConfigRequest, vTemplateConfigRequestWritable, vTemplateConfigResponse, vTemplateConfigResponseWritable, vTenantListResponse, vTenantListResponseWritable, vTenantRequest, vTenantResponse, vTenantResponseWritable, vToolAwsLambdaRequest, vToolAwsLambdaRequestWritable, vToolAwsLambdaResponse, vToolAwsLambdaResponseWritable, vToolCloudWatchLogGroupRequest, vToolCloudWatchLogGroupRequestWritable, vToolCloudWatchLogGroupResponse, vToolCloudWatchLogGroupResponseWritable, vToolEmailRequest, vToolEmailRequestWritable, vToolEmailResponse, vToolEmailResponseWritable, 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 };
|
|
49328
|
+
export { type ActionStatusUpdaterCloudWatchQueryRequest, type ActionStatusUpdaterResponse, type ActionStatusUpdaterRestCallRequest, ActionType, type AgenticWorkflowListResponse, type AgenticWorkflowRequestWritable, type AgenticWorkflowResponse, type AiAgentResponse, type ApiConfig, 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, vPlatformApiActionStatusUpdaterControllerShowPath, vPlatformApiActionStatusUpdaterControllerShowResponse, vPlatformApiActionStatusUpdaterControllerUpdateBody, vPlatformApiActionStatusUpdaterControllerUpdatePath, vPlatformApiActionStatusUpdaterControllerUpdateQuery, vPlatformApiActionStatusUpdaterControllerUpdateResponse, vPlatformApiAdminControllerConfirmUserPath, vPlatformApiAdminControllerConfirmUserResponse, vPlatformApiAgenticWorkflowControllerCreateBody, vPlatformApiAgenticWorkflowControllerCreatePath, vPlatformApiAgenticWorkflowControllerCreateResponse, vPlatformApiAgenticWorkflowControllerDeletePath, vPlatformApiAgenticWorkflowControllerDeleteResponse, vPlatformApiAgenticWorkflowControllerIndexPath, vPlatformApiAgenticWorkflowControllerIndexQuery, vPlatformApiAgenticWorkflowControllerIndexResponse, 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, vPlatformApiAiAgentControllerShowPath, vPlatformApiAiAgentControllerShowResponse, vPlatformApiAiAgentControllerUpdateBody, vPlatformApiAiAgentControllerUpdatePath, vPlatformApiAiAgentControllerUpdateResponse, vPlatformApiAuthControllerSignUpBody, vPlatformApiAuthControllerSignUpResponse, vPlatformApiConnectedAppControllerResolvePageBody, vPlatformApiConnectedAppControllerResolvePagePath, vPlatformApiConnectedAppControllerResolvePageResponse, vPlatformApiConnectedAppControllerUpdateMessageTrackingBody, vPlatformApiConnectedAppControllerUpdateMessageTrackingPath, vPlatformApiConnectedAppControllerUpdateMessageTrackingResponse, vPlatformApiConnectedAppMgmtControllerCreateBody, vPlatformApiConnectedAppMgmtControllerCreatePath, vPlatformApiConnectedAppMgmtControllerCreateResponse, vPlatformApiConnectedAppMgmtControllerIndexPath, vPlatformApiConnectedAppMgmtControllerIndexQuery, vPlatformApiConnectedAppMgmtControllerIndexResponse, 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, vPlatformApiDataActivationClientControllerMetadataPath, vPlatformApiDataActivationClientControllerMetadataResponse, vPlatformApiDataActivationClientControllerRunManuallyBody, vPlatformApiDataActivationClientControllerRunManuallyPath, vPlatformApiDataActivationClientControllerRunManuallyResponse, vPlatformApiDataActivationClientControllerShowPath, vPlatformApiDataActivationClientControllerShowResponse, vPlatformApiDataActivationClientControllerUpdateBody, vPlatformApiDataActivationClientControllerUpdatePath, vPlatformApiDataActivationClientControllerUpdateResponse, vPlatformApiDataSourceControllerCreateBody, vPlatformApiDataSourceControllerCreatePath, vPlatformApiDataSourceControllerCreateQuery, vPlatformApiDataSourceControllerCreateResponse, vPlatformApiDataSourceControllerIndexPath, vPlatformApiDataSourceControllerIndexQuery, vPlatformApiDataSourceControllerIndexResponse, vPlatformApiDataSourceControllerShowPath, vPlatformApiDataSourceControllerShowResponse, vPlatformApiDataSourceControllerUpdateBody, vPlatformApiDataSourceControllerUpdatePath, vPlatformApiDataSourceControllerUpdateQuery, vPlatformApiDataSourceControllerUpdateResponse, vPlatformApiDatalakeControllerCreateBody, vPlatformApiDatalakeControllerCreateDownloadLinkBody, vPlatformApiDatalakeControllerCreateDownloadLinkPath, vPlatformApiDatalakeControllerCreateDownloadLinkResponse, vPlatformApiDatalakeControllerCreatePath, vPlatformApiDatalakeControllerCreateQuery, vPlatformApiDatalakeControllerCreateResponse, vPlatformApiDatalakeControllerCreateUploadLinkBody, vPlatformApiDatalakeControllerCreateUploadLinkPath, vPlatformApiDatalakeControllerCreateUploadLinkQuery, vPlatformApiDatalakeControllerCreateUploadLinkResponse, vPlatformApiDatalakeControllerIndexPath, vPlatformApiDatalakeControllerIndexQuery, vPlatformApiDatalakeControllerIndexResponse, vPlatformApiDatalakeControllerMetadataPath, vPlatformApiDatalakeControllerMetadataQuery, vPlatformApiDatalakeControllerMetadataResponse, vPlatformApiDatalakeControllerMigratePath, vPlatformApiDatalakeControllerMigrateResponse, vPlatformApiDatalakeControllerShowPath, vPlatformApiDatalakeControllerShowQuery, vPlatformApiDatalakeControllerShowResponse, vPlatformApiDatalakeControllerSystemDatasetsPath, vPlatformApiDatalakeControllerSystemDatasetsResponse, vPlatformApiDatalakeControllerUpdateBody, vPlatformApiDatalakeControllerUpdatePath, vPlatformApiDatalakeControllerUpdateResponse, vPlatformApiDatasetControllerCreateUserSearchBody, vPlatformApiDatasetControllerCreateUserSearchPath, vPlatformApiDatasetControllerCreateUserSearchQuery, vPlatformApiDatasetControllerCreateUserSearchResponse, vPlatformApiDatasetControllerDatasetMetadataPath, vPlatformApiDatasetControllerDatasetMetadataQuery, vPlatformApiDatasetControllerDatasetMetadataResponse, vPlatformApiDatasetControllerSearchPath, vPlatformApiDatasetControllerSearchQuery, vPlatformApiDatasetControllerSearchResponse, vPlatformApiGenericTableControllerCreateBody, vPlatformApiGenericTableControllerCreatePath, vPlatformApiGenericTableControllerCreateResponse, vPlatformApiGenericTableControllerIndexPath, vPlatformApiGenericTableControllerIndexQuery, vPlatformApiGenericTableControllerIndexResponse, vPlatformApiGenericTableControllerShowPath, vPlatformApiGenericTableControllerShowResponse, vPlatformApiInteroperabilityContractControllerCreateBody, vPlatformApiInteroperabilityContractControllerCreatePath, vPlatformApiInteroperabilityContractControllerCreateQuery, vPlatformApiInteroperabilityContractControllerCreateResponse, vPlatformApiInteroperabilityContractControllerDeletePath, vPlatformApiInteroperabilityContractControllerDeleteQuery, vPlatformApiInteroperabilityContractControllerDeleteResponse, vPlatformApiInteroperabilityContractControllerIndexPath, vPlatformApiInteroperabilityContractControllerIndexQuery, vPlatformApiInteroperabilityContractControllerIndexResponse, 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, vPlatformApiTenantControllerCreateBody, vPlatformApiTenantControllerCreateResponse, vPlatformApiTenantControllerIndexQuery, vPlatformApiTenantControllerIndexResponse, vPlatformApiToolControllerCreateBody, vPlatformApiToolControllerCreatePath, vPlatformApiToolControllerCreateResponse, vPlatformApiToolControllerDeletePath, vPlatformApiToolControllerDeleteResponse, vPlatformApiToolControllerIndexPath, vPlatformApiToolControllerIndexQuery, vPlatformApiToolControllerIndexResponse, 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 };
|
|
48599
49329
|
//# sourceMappingURL=index.d.mts.map
|