@alvera-ai/platform-sdk 0.10.0-rc.2 → 0.10.0-rc.5
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 +725 -15
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +218 -44
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -927,6 +927,10 @@ type InteroperabilityContractResponse = {
|
|
|
927
927
|
* URL-friendly slug (derived from name on insert; immutable)
|
|
928
928
|
*/
|
|
929
929
|
slug?: string;
|
|
930
|
+
/**
|
|
931
|
+
* Whether this contract was auto-created by the system (read-only, cannot be edited or deleted)
|
|
932
|
+
*/
|
|
933
|
+
readonly system_created?: boolean;
|
|
930
934
|
/**
|
|
931
935
|
* Template type (synced from template_config.type)
|
|
932
936
|
*/
|
|
@@ -1263,6 +1267,17 @@ type RestapiResponse = {
|
|
|
1263
1267
|
type DataActivationClientRestCallResponse = RestCallResponse & {
|
|
1264
1268
|
tool_call_type: 'restapi_request';
|
|
1265
1269
|
};
|
|
1270
|
+
/**
|
|
1271
|
+
* SystemTemplateListResponse
|
|
1272
|
+
*
|
|
1273
|
+
* List of system templates available to this datalake.
|
|
1274
|
+
*/
|
|
1275
|
+
type SystemTemplateListResponse = {
|
|
1276
|
+
/**
|
|
1277
|
+
* Sorted list of system template configs.
|
|
1278
|
+
*/
|
|
1279
|
+
data: Array<SystemTemplateConfig>;
|
|
1280
|
+
};
|
|
1266
1281
|
/**
|
|
1267
1282
|
* DataActivationClientS3CallResponse
|
|
1268
1283
|
*/
|
|
@@ -1348,6 +1363,17 @@ type WorkflowLogListResponse = {
|
|
|
1348
1363
|
data: Array<WorkflowLogResponse>;
|
|
1349
1364
|
meta: PaginationMeta;
|
|
1350
1365
|
};
|
|
1366
|
+
/**
|
|
1367
|
+
* SystemDatasetListResponse
|
|
1368
|
+
*
|
|
1369
|
+
* Industry-registered dataset name strings for the datalake's data domain.
|
|
1370
|
+
*/
|
|
1371
|
+
type SystemDatasetListResponse = {
|
|
1372
|
+
/**
|
|
1373
|
+
* Sorted unique dataset name strings (e.g. `patient`, `appointment`, `legal_entity`).
|
|
1374
|
+
*/
|
|
1375
|
+
datasets: Array<string>;
|
|
1376
|
+
};
|
|
1351
1377
|
/**
|
|
1352
1378
|
* GenericTableListResponse
|
|
1353
1379
|
*
|
|
@@ -1458,6 +1484,27 @@ type ActionStatusUpdaterCloudWatchQueryResponse = CloudWatchQueryResponse & {
|
|
|
1458
1484
|
type ToolSqlDatabaseResponse = SqlDatabaseResponse & {
|
|
1459
1485
|
tool_body_type: 'sql_database';
|
|
1460
1486
|
};
|
|
1487
|
+
/**
|
|
1488
|
+
* SystemTemplateConfig
|
|
1489
|
+
*
|
|
1490
|
+
* One system template — identifier, Liquid source, and optional output schema.
|
|
1491
|
+
*/
|
|
1492
|
+
type SystemTemplateConfig = {
|
|
1493
|
+
/**
|
|
1494
|
+
* Raw Liquid template source.
|
|
1495
|
+
*/
|
|
1496
|
+
content: string;
|
|
1497
|
+
/**
|
|
1498
|
+
* JSON Schema describing the template's rendered output, read from the companion `_*.meta.json`. `null` when no schema is declared.
|
|
1499
|
+
*/
|
|
1500
|
+
output_schema: {
|
|
1501
|
+
[key: string]: unknown;
|
|
1502
|
+
} | null;
|
|
1503
|
+
/**
|
|
1504
|
+
* System template identifier — the same string the UI stores when a user selects a system template (e.g. `ai_agents/healthcare/contact_message_categorizer`).
|
|
1505
|
+
*/
|
|
1506
|
+
path: string;
|
|
1507
|
+
};
|
|
1461
1508
|
/**
|
|
1462
1509
|
* BatchLogResponse
|
|
1463
1510
|
*
|
|
@@ -4382,6 +4429,7 @@ type DataActivationClientRequestWritable = {
|
|
|
4382
4429
|
* DAC name
|
|
4383
4430
|
*/
|
|
4384
4431
|
name: string;
|
|
4432
|
+
response_extractor?: TemplateConfigRequestWritable;
|
|
4385
4433
|
/**
|
|
4386
4434
|
* Optional row-level Liquid filter. Rows for which it renders 'true' are skipped.
|
|
4387
4435
|
*/
|
|
@@ -5161,10 +5209,8 @@ declare function _buildApi(myClient: Client): {
|
|
|
5161
5209
|
request: Request;
|
|
5162
5210
|
response: Response;
|
|
5163
5211
|
}>;
|
|
5164
|
-
|
|
5165
|
-
data:
|
|
5166
|
-
datasets: Array<string>;
|
|
5167
|
-
};
|
|
5212
|
+
systemDatasets: (tenantSlug: string, datalakeSlug: string) => Promise<{
|
|
5213
|
+
data: SystemDatasetListResponse;
|
|
5168
5214
|
request: Request;
|
|
5169
5215
|
response: Response;
|
|
5170
5216
|
}>;
|
|
@@ -5196,6 +5242,11 @@ declare function _buildApi(myClient: Client): {
|
|
|
5196
5242
|
request: Request;
|
|
5197
5243
|
response: Response;
|
|
5198
5244
|
}>;
|
|
5245
|
+
get: (tenantSlug: string, datalakeSlug: string, id: string) => Promise<{
|
|
5246
|
+
data: DataSourceResponse;
|
|
5247
|
+
request: Request;
|
|
5248
|
+
response: Response;
|
|
5249
|
+
}>;
|
|
5199
5250
|
create: (tenantSlug: string, datalakeSlug: string, body: DataSourceRequestWritable) => Promise<{
|
|
5200
5251
|
data: DataSourceResponse;
|
|
5201
5252
|
request: Request;
|
|
@@ -5245,6 +5296,11 @@ declare function _buildApi(myClient: Client): {
|
|
|
5245
5296
|
request: Request;
|
|
5246
5297
|
response: Response;
|
|
5247
5298
|
}>;
|
|
5299
|
+
get: (tenantSlug: string, datalakeSlug: string, name: string) => Promise<{
|
|
5300
|
+
data: GenericTableResponse;
|
|
5301
|
+
request: Request;
|
|
5302
|
+
response: Response;
|
|
5303
|
+
}>;
|
|
5248
5304
|
create: (tenantSlug: string, datalakeSlug: string, body: CreateGenericTableRequest) => Promise<{
|
|
5249
5305
|
data: GenericTableResponse;
|
|
5250
5306
|
request: Request;
|
|
@@ -5257,6 +5313,11 @@ declare function _buildApi(myClient: Client): {
|
|
|
5257
5313
|
request: Request;
|
|
5258
5314
|
response: Response;
|
|
5259
5315
|
}>;
|
|
5316
|
+
get: (tenantSlug: string, id: string) => Promise<{
|
|
5317
|
+
data: ActionStatusUpdaterResponse;
|
|
5318
|
+
request: Request;
|
|
5319
|
+
response: Response;
|
|
5320
|
+
}>;
|
|
5260
5321
|
create: (tenantSlug: string, body: CreateActionStatusUpdaterRequest) => Promise<{
|
|
5261
5322
|
data: ActionStatusUpdaterResponse;
|
|
5262
5323
|
request: Request;
|
|
@@ -5268,6 +5329,13 @@ declare function _buildApi(myClient: Client): {
|
|
|
5268
5329
|
response: Response;
|
|
5269
5330
|
}>;
|
|
5270
5331
|
};
|
|
5332
|
+
templates: {
|
|
5333
|
+
systemTemplates: (tenantSlug: string, datalakeSlug: string) => Promise<{
|
|
5334
|
+
data: SystemTemplateListResponse;
|
|
5335
|
+
request: Request;
|
|
5336
|
+
response: Response;
|
|
5337
|
+
}>;
|
|
5338
|
+
};
|
|
5271
5339
|
aiAgents: {
|
|
5272
5340
|
list: (tenantSlug: string, datalakeSlug: string) => Promise<{
|
|
5273
5341
|
data: AiAgentListResponse;
|
|
@@ -5983,6 +6051,7 @@ declare const vInteroperabilityContractResponse: v.SchemaWithPipe<readonly [v.Ob
|
|
|
5983
6051
|
readonly name: v.StringSchema<undefined>;
|
|
5984
6052
|
readonly resource_type: v.StringSchema<undefined>;
|
|
5985
6053
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
6054
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
5986
6055
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
5987
6056
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
5988
6057
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -5995,6 +6064,7 @@ declare const vInteroperabilityContractResponse: v.SchemaWithPipe<readonly [v.Ob
|
|
|
5995
6064
|
name: string;
|
|
5996
6065
|
resource_type: string;
|
|
5997
6066
|
slug?: string | null | undefined;
|
|
6067
|
+
system_created: boolean;
|
|
5998
6068
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
5999
6069
|
updated_at?: string | null | undefined;
|
|
6000
6070
|
}>]>;
|
|
@@ -6602,6 +6672,14 @@ declare const vSftpCallResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
6602
6672
|
content_type: string;
|
|
6603
6673
|
path: string;
|
|
6604
6674
|
}>]>;
|
|
6675
|
+
/**
|
|
6676
|
+
* SystemDatasetListResponse
|
|
6677
|
+
*
|
|
6678
|
+
* Industry-registered dataset name strings for the datalake's data domain.
|
|
6679
|
+
*/
|
|
6680
|
+
declare const vSystemDatasetListResponse: v.ObjectSchema<{
|
|
6681
|
+
readonly datasets: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
6682
|
+
}, undefined>;
|
|
6605
6683
|
/**
|
|
6606
6684
|
* GenericTableRequest
|
|
6607
6685
|
*
|
|
@@ -6809,6 +6887,28 @@ declare const vManualToolInvocationSmsCallResponse: v.IntersectSchema<[v.SchemaW
|
|
|
6809
6887
|
}>]>, v.ObjectSchema<{
|
|
6810
6888
|
readonly tool_call_type: v.PicklistSchema<["sms_request"], undefined>;
|
|
6811
6889
|
}, undefined>], undefined>;
|
|
6890
|
+
/**
|
|
6891
|
+
* SystemTemplateConfig
|
|
6892
|
+
*
|
|
6893
|
+
* One system template — identifier, Liquid source, and optional output schema.
|
|
6894
|
+
*/
|
|
6895
|
+
declare const vSystemTemplateConfig: v.ObjectSchema<{
|
|
6896
|
+
readonly content: v.StringSchema<undefined>;
|
|
6897
|
+
readonly output_schema: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
6898
|
+
readonly path: v.StringSchema<undefined>;
|
|
6899
|
+
}, undefined>;
|
|
6900
|
+
/**
|
|
6901
|
+
* SystemTemplateListResponse
|
|
6902
|
+
*
|
|
6903
|
+
* List of system templates available to this datalake.
|
|
6904
|
+
*/
|
|
6905
|
+
declare const vSystemTemplateListResponse: v.ObjectSchema<{
|
|
6906
|
+
readonly data: v.ArraySchema<v.ObjectSchema<{
|
|
6907
|
+
readonly content: v.StringSchema<undefined>;
|
|
6908
|
+
readonly output_schema: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
6909
|
+
readonly path: v.StringSchema<undefined>;
|
|
6910
|
+
}, undefined>, undefined>;
|
|
6911
|
+
}, undefined>;
|
|
6812
6912
|
/**
|
|
6813
6913
|
* BatchLogResponse
|
|
6814
6914
|
*
|
|
@@ -10119,6 +10219,11 @@ declare const vDataActivationClientRequest: v.ObjectSchema<{
|
|
|
10119
10219
|
readonly interoperability_contract_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, readonly []>;
|
|
10120
10220
|
readonly loop_over: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["services", "locations", "providers"], undefined>, undefined>, readonly []>;
|
|
10121
10221
|
readonly name: v.StringSchema<undefined>;
|
|
10222
|
+
readonly response_extractor: v.NullishSchema<v.ObjectSchema<{
|
|
10223
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
10224
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
10225
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
10226
|
+
}, undefined>, undefined>;
|
|
10122
10227
|
readonly row_filter: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
10123
10228
|
readonly tool_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
10124
10229
|
}, undefined>;
|
|
@@ -10266,6 +10371,7 @@ declare const vInteroperabilityContractListResponse: v.ObjectSchema<{
|
|
|
10266
10371
|
readonly name: v.StringSchema<undefined>;
|
|
10267
10372
|
readonly resource_type: v.StringSchema<undefined>;
|
|
10268
10373
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
10374
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
10269
10375
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
10270
10376
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
10271
10377
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -10278,6 +10384,7 @@ declare const vInteroperabilityContractListResponse: v.ObjectSchema<{
|
|
|
10278
10384
|
name: string;
|
|
10279
10385
|
resource_type: string;
|
|
10280
10386
|
slug?: string | null | undefined;
|
|
10387
|
+
system_created: boolean;
|
|
10281
10388
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
10282
10389
|
updated_at?: string | null | undefined;
|
|
10283
10390
|
}>]>, undefined>;
|
|
@@ -25601,6 +25708,11 @@ declare const vDataActivationClientRequestWritable: v.ObjectSchema<{
|
|
|
25601
25708
|
readonly interoperability_contract_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, readonly []>;
|
|
25602
25709
|
readonly loop_over: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["services", "locations", "providers"], undefined>, undefined>, readonly []>;
|
|
25603
25710
|
readonly name: v.StringSchema<undefined>;
|
|
25711
|
+
readonly response_extractor: v.NullishSchema<v.ObjectSchema<{
|
|
25712
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
25713
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
25714
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
25715
|
+
}, undefined>, undefined>;
|
|
25604
25716
|
readonly row_filter: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
25605
25717
|
readonly tool_call: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
25606
25718
|
readonly tool_call_type: v.LiteralSchema<"restapi_request", undefined>;
|
|
@@ -28273,6 +28385,11 @@ declare const vPlatformApiDataActivationClientControllerUpdateBody: v.ObjectSche
|
|
|
28273
28385
|
readonly interoperability_contract_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, readonly []>;
|
|
28274
28386
|
readonly loop_over: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["services", "locations", "providers"], undefined>, undefined>, readonly []>;
|
|
28275
28387
|
readonly name: v.StringSchema<undefined>;
|
|
28388
|
+
readonly response_extractor: v.NullishSchema<v.ObjectSchema<{
|
|
28389
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
28390
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
28391
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
28392
|
+
}, undefined>, undefined>;
|
|
28276
28393
|
readonly row_filter: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
28277
28394
|
readonly tool_call: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
28278
28395
|
readonly tool_call_type: v.LiteralSchema<"restapi_request", undefined>;
|
|
@@ -29946,6 +30063,7 @@ declare const vPlatformApiInteroperabilityContractControllerIndexResponse: v.Obj
|
|
|
29946
30063
|
readonly name: v.StringSchema<undefined>;
|
|
29947
30064
|
readonly resource_type: v.StringSchema<undefined>;
|
|
29948
30065
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
30066
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
29949
30067
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
29950
30068
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
29951
30069
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -29958,6 +30076,7 @@ declare const vPlatformApiInteroperabilityContractControllerIndexResponse: v.Obj
|
|
|
29958
30076
|
name: string;
|
|
29959
30077
|
resource_type: string;
|
|
29960
30078
|
slug?: string | null | undefined;
|
|
30079
|
+
system_created: boolean;
|
|
29961
30080
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
29962
30081
|
updated_at?: string | null | undefined;
|
|
29963
30082
|
}>]>, undefined>;
|
|
@@ -30021,6 +30140,7 @@ declare const vPlatformApiInteroperabilityContractControllerCreateResponse: v.Sc
|
|
|
30021
30140
|
readonly name: v.StringSchema<undefined>;
|
|
30022
30141
|
readonly resource_type: v.StringSchema<undefined>;
|
|
30023
30142
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
30143
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
30024
30144
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
30025
30145
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
30026
30146
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -30033,6 +30153,7 @@ declare const vPlatformApiInteroperabilityContractControllerCreateResponse: v.Sc
|
|
|
30033
30153
|
name: string;
|
|
30034
30154
|
resource_type: string;
|
|
30035
30155
|
slug?: string | null | undefined;
|
|
30156
|
+
system_created: boolean;
|
|
30036
30157
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
30037
30158
|
updated_at?: string | null | undefined;
|
|
30038
30159
|
}>]>;
|
|
@@ -30883,6 +31004,395 @@ declare const vPlatformApiDataActivationClientControllerLogShowResponse: v.Schem
|
|
|
30883
31004
|
rows_ingested: number;
|
|
30884
31005
|
updated_at?: string | null | undefined;
|
|
30885
31006
|
}>]>;
|
|
31007
|
+
declare const vPlatformApiDataSourceControllerShowPath: v.ObjectSchema<{
|
|
31008
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
31009
|
+
readonly datalake_slug: v.StringSchema<undefined>;
|
|
31010
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
31011
|
+
}, undefined>;
|
|
31012
|
+
/**
|
|
31013
|
+
* Data source
|
|
31014
|
+
*/
|
|
31015
|
+
declare const vPlatformApiDataSourceControllerShowResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31016
|
+
readonly datalake: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31017
|
+
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31018
|
+
readonly unregulated_db_reader_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
31019
|
+
readonly regulated_data_db_reader_host: v.StringSchema<undefined>;
|
|
31020
|
+
readonly regulated_data_db_reader_name: v.StringSchema<undefined>;
|
|
31021
|
+
readonly regulated_cloud_storage: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
31022
|
+
readonly cloud_storage_type: v.LiteralSchema<"aws", undefined>;
|
|
31023
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31024
|
+
readonly access_key_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31025
|
+
readonly auth_method: v.NullishSchema<v.PicklistSchema<["access_key", "iam_role"], undefined>, undefined>;
|
|
31026
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31027
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31028
|
+
readonly endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31029
|
+
readonly region: v.StringSchema<undefined>;
|
|
31030
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31031
|
+
access_key_id?: string | null | undefined;
|
|
31032
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31033
|
+
base_path?: string | null | undefined;
|
|
31034
|
+
bucket: string;
|
|
31035
|
+
endpoint?: string | null | undefined;
|
|
31036
|
+
region: string;
|
|
31037
|
+
}>]>, v.ObjectSchema<{
|
|
31038
|
+
readonly cloud_storage_type: v.PicklistSchema<["aws"], undefined>;
|
|
31039
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
31040
|
+
readonly cloud_storage_type: v.LiteralSchema<"r2", undefined>;
|
|
31041
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31042
|
+
readonly access_key_id: v.StringSchema<undefined>;
|
|
31043
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31044
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31045
|
+
readonly endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31046
|
+
readonly region: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31047
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31048
|
+
access_key_id: string;
|
|
31049
|
+
base_path?: string | null | undefined;
|
|
31050
|
+
bucket: string;
|
|
31051
|
+
endpoint?: string | null | undefined;
|
|
31052
|
+
region?: string | null | undefined;
|
|
31053
|
+
}>]>, v.ObjectSchema<{
|
|
31054
|
+
readonly cloud_storage_type: v.PicklistSchema<["r2"], undefined>;
|
|
31055
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
31056
|
+
readonly cloud_storage_type: v.LiteralSchema<"custom", undefined>;
|
|
31057
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31058
|
+
readonly access_key_id: v.StringSchema<undefined>;
|
|
31059
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31060
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31061
|
+
readonly endpoint: v.StringSchema<undefined>;
|
|
31062
|
+
readonly region: v.StringSchema<undefined>;
|
|
31063
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31064
|
+
access_key_id: string;
|
|
31065
|
+
base_path?: string | null | undefined;
|
|
31066
|
+
bucket: string;
|
|
31067
|
+
endpoint: string;
|
|
31068
|
+
region: string;
|
|
31069
|
+
}>]>, v.ObjectSchema<{
|
|
31070
|
+
readonly cloud_storage_type: v.PicklistSchema<["custom"], undefined>;
|
|
31071
|
+
}, undefined>], undefined>], undefined>], undefined>;
|
|
31072
|
+
readonly unregulated_cloud_storage: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
31073
|
+
readonly cloud_storage_type: v.LiteralSchema<"aws", undefined>;
|
|
31074
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31075
|
+
readonly access_key_id: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31076
|
+
readonly auth_method: v.NullishSchema<v.PicklistSchema<["access_key", "iam_role"], undefined>, undefined>;
|
|
31077
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31078
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31079
|
+
readonly endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31080
|
+
readonly region: v.StringSchema<undefined>;
|
|
31081
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31082
|
+
access_key_id?: string | null | undefined;
|
|
31083
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31084
|
+
base_path?: string | null | undefined;
|
|
31085
|
+
bucket: string;
|
|
31086
|
+
endpoint?: string | null | undefined;
|
|
31087
|
+
region: string;
|
|
31088
|
+
}>]>, v.ObjectSchema<{
|
|
31089
|
+
readonly cloud_storage_type: v.PicklistSchema<["aws"], undefined>;
|
|
31090
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
31091
|
+
readonly cloud_storage_type: v.LiteralSchema<"r2", undefined>;
|
|
31092
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31093
|
+
readonly access_key_id: v.StringSchema<undefined>;
|
|
31094
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31095
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31096
|
+
readonly endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31097
|
+
readonly region: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31098
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31099
|
+
access_key_id: string;
|
|
31100
|
+
base_path?: string | null | undefined;
|
|
31101
|
+
bucket: string;
|
|
31102
|
+
endpoint?: string | null | undefined;
|
|
31103
|
+
region?: string | null | undefined;
|
|
31104
|
+
}>]>, v.ObjectSchema<{
|
|
31105
|
+
readonly cloud_storage_type: v.PicklistSchema<["r2"], undefined>;
|
|
31106
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
31107
|
+
readonly cloud_storage_type: v.LiteralSchema<"custom", undefined>;
|
|
31108
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31109
|
+
readonly access_key_id: v.StringSchema<undefined>;
|
|
31110
|
+
readonly base_path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31111
|
+
readonly bucket: v.StringSchema<undefined>;
|
|
31112
|
+
readonly endpoint: v.StringSchema<undefined>;
|
|
31113
|
+
readonly region: v.StringSchema<undefined>;
|
|
31114
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31115
|
+
access_key_id: string;
|
|
31116
|
+
base_path?: string | null | undefined;
|
|
31117
|
+
bucket: string;
|
|
31118
|
+
endpoint: string;
|
|
31119
|
+
region: string;
|
|
31120
|
+
}>]>, v.ObjectSchema<{
|
|
31121
|
+
readonly cloud_storage_type: v.PicklistSchema<["custom"], undefined>;
|
|
31122
|
+
}, undefined>], undefined>], undefined>], undefined>;
|
|
31123
|
+
readonly regulated_data_db_reader_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
31124
|
+
readonly unregulated_db_writer_schema: v.StringSchema<undefined>;
|
|
31125
|
+
readonly unregulated_db_writer_name: v.StringSchema<undefined>;
|
|
31126
|
+
readonly regulated_data_db_reader_schema: v.StringSchema<undefined>;
|
|
31127
|
+
readonly unregulated_db_writer_host: v.StringSchema<undefined>;
|
|
31128
|
+
readonly regulated_data_db_writer_name: v.StringSchema<undefined>;
|
|
31129
|
+
readonly unregulated_db_reader_name: v.StringSchema<undefined>;
|
|
31130
|
+
readonly unregulated_db_writer_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
31131
|
+
readonly tenant: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
31132
|
+
readonly description: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 1000, undefined>]>, undefined>;
|
|
31133
|
+
readonly id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>;
|
|
31134
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 160, undefined>]>;
|
|
31135
|
+
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>;
|
|
31136
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31137
|
+
description?: string | null | undefined;
|
|
31138
|
+
readonly id: string;
|
|
31139
|
+
name: string;
|
|
31140
|
+
readonly slug: string;
|
|
31141
|
+
}>]>, undefined>;
|
|
31142
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
31143
|
+
readonly name: v.StringSchema<undefined>;
|
|
31144
|
+
readonly description: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31145
|
+
readonly pool_size: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
31146
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
31147
|
+
readonly status: v.NullishSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["new", "processing", "ready"], undefined>, v.ReadonlyAction<"new" | "processing" | "ready">]>, undefined>;
|
|
31148
|
+
readonly unregulated_db_reader_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
31149
|
+
readonly unregulated_db_reader_host: v.StringSchema<undefined>;
|
|
31150
|
+
readonly regulated_data_db_reader_enable_ssl: v.BooleanSchema<undefined>;
|
|
31151
|
+
readonly unregulated_db_reader_enable_ssl: v.BooleanSchema<undefined>;
|
|
31152
|
+
readonly regulated_data_db_writer_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
31153
|
+
readonly unregulated_db_writer_port: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
31154
|
+
readonly unregulated_db_writer_enable_ssl: v.BooleanSchema<undefined>;
|
|
31155
|
+
readonly unregulated_db_reader_schema: v.StringSchema<undefined>;
|
|
31156
|
+
readonly regulated_data_db_writer_enable_ssl: v.BooleanSchema<undefined>;
|
|
31157
|
+
readonly regulated_data_db_writer_schema: v.StringSchema<undefined>;
|
|
31158
|
+
readonly regulated_data_db_writer_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
31159
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
31160
|
+
readonly regulated_data_db_writer_host: v.StringSchema<undefined>;
|
|
31161
|
+
readonly regulated_data_db_reader_auth_method: v.PicklistSchema<["password", "iam_role"], undefined>;
|
|
31162
|
+
readonly timezone: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
31163
|
+
readonly data_domain: v.PicklistSchema<["healthcare", "core_banking", "payment_risk", "accounts_receivable", "service_commerce", "trading", "foundation"], undefined>;
|
|
31164
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31165
|
+
slug?: string | null | undefined;
|
|
31166
|
+
unregulated_db_reader_auth_method: "password" | "iam_role";
|
|
31167
|
+
regulated_data_db_reader_host: string;
|
|
31168
|
+
regulated_data_db_reader_name: string;
|
|
31169
|
+
regulated_cloud_storage: ({
|
|
31170
|
+
cloud_storage_type: "aws";
|
|
31171
|
+
} & Readonly<{
|
|
31172
|
+
access_key_id?: string | null | undefined;
|
|
31173
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31174
|
+
base_path?: string | null | undefined;
|
|
31175
|
+
bucket: string;
|
|
31176
|
+
endpoint?: string | null | undefined;
|
|
31177
|
+
region: string;
|
|
31178
|
+
}> & {
|
|
31179
|
+
cloud_storage_type: "aws";
|
|
31180
|
+
}) | ({
|
|
31181
|
+
cloud_storage_type: "r2";
|
|
31182
|
+
} & Readonly<{
|
|
31183
|
+
access_key_id: string;
|
|
31184
|
+
base_path?: string | null | undefined;
|
|
31185
|
+
bucket: string;
|
|
31186
|
+
endpoint?: string | null | undefined;
|
|
31187
|
+
region?: string | null | undefined;
|
|
31188
|
+
}> & {
|
|
31189
|
+
cloud_storage_type: "r2";
|
|
31190
|
+
}) | ({
|
|
31191
|
+
cloud_storage_type: "custom";
|
|
31192
|
+
} & Readonly<{
|
|
31193
|
+
access_key_id: string;
|
|
31194
|
+
base_path?: string | null | undefined;
|
|
31195
|
+
bucket: string;
|
|
31196
|
+
endpoint: string;
|
|
31197
|
+
region: string;
|
|
31198
|
+
}> & {
|
|
31199
|
+
cloud_storage_type: "custom";
|
|
31200
|
+
});
|
|
31201
|
+
unregulated_cloud_storage: ({
|
|
31202
|
+
cloud_storage_type: "aws";
|
|
31203
|
+
} & Readonly<{
|
|
31204
|
+
access_key_id?: string | null | undefined;
|
|
31205
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31206
|
+
base_path?: string | null | undefined;
|
|
31207
|
+
bucket: string;
|
|
31208
|
+
endpoint?: string | null | undefined;
|
|
31209
|
+
region: string;
|
|
31210
|
+
}> & {
|
|
31211
|
+
cloud_storage_type: "aws";
|
|
31212
|
+
}) | ({
|
|
31213
|
+
cloud_storage_type: "r2";
|
|
31214
|
+
} & Readonly<{
|
|
31215
|
+
access_key_id: string;
|
|
31216
|
+
base_path?: string | null | undefined;
|
|
31217
|
+
bucket: string;
|
|
31218
|
+
endpoint?: string | null | undefined;
|
|
31219
|
+
region?: string | null | undefined;
|
|
31220
|
+
}> & {
|
|
31221
|
+
cloud_storage_type: "r2";
|
|
31222
|
+
}) | ({
|
|
31223
|
+
cloud_storage_type: "custom";
|
|
31224
|
+
} & Readonly<{
|
|
31225
|
+
access_key_id: string;
|
|
31226
|
+
base_path?: string | null | undefined;
|
|
31227
|
+
bucket: string;
|
|
31228
|
+
endpoint: string;
|
|
31229
|
+
region: string;
|
|
31230
|
+
}> & {
|
|
31231
|
+
cloud_storage_type: "custom";
|
|
31232
|
+
});
|
|
31233
|
+
regulated_data_db_reader_port: number;
|
|
31234
|
+
unregulated_db_writer_schema: string;
|
|
31235
|
+
unregulated_db_writer_name: string;
|
|
31236
|
+
regulated_data_db_reader_schema: string;
|
|
31237
|
+
unregulated_db_writer_host: string;
|
|
31238
|
+
regulated_data_db_writer_name: string;
|
|
31239
|
+
unregulated_db_reader_name: string;
|
|
31240
|
+
unregulated_db_writer_auth_method: "password" | "iam_role";
|
|
31241
|
+
tenant?: Readonly<{
|
|
31242
|
+
description?: string | null | undefined;
|
|
31243
|
+
readonly id: string;
|
|
31244
|
+
name: string;
|
|
31245
|
+
readonly slug: string;
|
|
31246
|
+
}> | null | undefined;
|
|
31247
|
+
id?: string | null | undefined;
|
|
31248
|
+
name: string;
|
|
31249
|
+
description?: string | null | undefined;
|
|
31250
|
+
pool_size: number | null;
|
|
31251
|
+
updated_at?: string | null | undefined;
|
|
31252
|
+
status?: "new" | "processing" | "ready" | null | undefined;
|
|
31253
|
+
unregulated_db_reader_port: number;
|
|
31254
|
+
unregulated_db_reader_host: string;
|
|
31255
|
+
regulated_data_db_reader_enable_ssl: boolean;
|
|
31256
|
+
unregulated_db_reader_enable_ssl: boolean;
|
|
31257
|
+
regulated_data_db_writer_port: number;
|
|
31258
|
+
unregulated_db_writer_port: number;
|
|
31259
|
+
unregulated_db_writer_enable_ssl: boolean;
|
|
31260
|
+
unregulated_db_reader_schema: string;
|
|
31261
|
+
regulated_data_db_writer_enable_ssl: boolean;
|
|
31262
|
+
regulated_data_db_writer_schema: string;
|
|
31263
|
+
regulated_data_db_writer_auth_method: "password" | "iam_role";
|
|
31264
|
+
inserted_at?: string | null | undefined;
|
|
31265
|
+
regulated_data_db_writer_host: string;
|
|
31266
|
+
regulated_data_db_reader_auth_method: "password" | "iam_role";
|
|
31267
|
+
timezone: string | null;
|
|
31268
|
+
data_domain: "healthcare" | "core_banking" | "payment_risk" | "accounts_receivable" | "service_commerce" | "trading" | "foundation";
|
|
31269
|
+
}>]>, undefined>;
|
|
31270
|
+
readonly description: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31271
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
31272
|
+
readonly image_url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
31273
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
31274
|
+
readonly is_default: v.BooleanSchema<undefined>;
|
|
31275
|
+
readonly name: v.StringSchema<undefined>;
|
|
31276
|
+
readonly status: v.PicklistSchema<["draft", "active", "inactive"], undefined>;
|
|
31277
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
31278
|
+
readonly uri: v.StringSchema<undefined>;
|
|
31279
|
+
}, undefined>, v.ReadonlyAction<{
|
|
31280
|
+
datalake?: Readonly<{
|
|
31281
|
+
slug?: string | null | undefined;
|
|
31282
|
+
unregulated_db_reader_auth_method: "password" | "iam_role";
|
|
31283
|
+
regulated_data_db_reader_host: string;
|
|
31284
|
+
regulated_data_db_reader_name: string;
|
|
31285
|
+
regulated_cloud_storage: ({
|
|
31286
|
+
cloud_storage_type: "aws";
|
|
31287
|
+
} & Readonly<{
|
|
31288
|
+
access_key_id?: string | null | undefined;
|
|
31289
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31290
|
+
base_path?: string | null | undefined;
|
|
31291
|
+
bucket: string;
|
|
31292
|
+
endpoint?: string | null | undefined;
|
|
31293
|
+
region: string;
|
|
31294
|
+
}> & {
|
|
31295
|
+
cloud_storage_type: "aws";
|
|
31296
|
+
}) | ({
|
|
31297
|
+
cloud_storage_type: "r2";
|
|
31298
|
+
} & Readonly<{
|
|
31299
|
+
access_key_id: string;
|
|
31300
|
+
base_path?: string | null | undefined;
|
|
31301
|
+
bucket: string;
|
|
31302
|
+
endpoint?: string | null | undefined;
|
|
31303
|
+
region?: string | null | undefined;
|
|
31304
|
+
}> & {
|
|
31305
|
+
cloud_storage_type: "r2";
|
|
31306
|
+
}) | ({
|
|
31307
|
+
cloud_storage_type: "custom";
|
|
31308
|
+
} & Readonly<{
|
|
31309
|
+
access_key_id: string;
|
|
31310
|
+
base_path?: string | null | undefined;
|
|
31311
|
+
bucket: string;
|
|
31312
|
+
endpoint: string;
|
|
31313
|
+
region: string;
|
|
31314
|
+
}> & {
|
|
31315
|
+
cloud_storage_type: "custom";
|
|
31316
|
+
});
|
|
31317
|
+
unregulated_cloud_storage: ({
|
|
31318
|
+
cloud_storage_type: "aws";
|
|
31319
|
+
} & Readonly<{
|
|
31320
|
+
access_key_id?: string | null | undefined;
|
|
31321
|
+
auth_method?: "iam_role" | "access_key" | null | undefined;
|
|
31322
|
+
base_path?: string | null | undefined;
|
|
31323
|
+
bucket: string;
|
|
31324
|
+
endpoint?: string | null | undefined;
|
|
31325
|
+
region: string;
|
|
31326
|
+
}> & {
|
|
31327
|
+
cloud_storage_type: "aws";
|
|
31328
|
+
}) | ({
|
|
31329
|
+
cloud_storage_type: "r2";
|
|
31330
|
+
} & Readonly<{
|
|
31331
|
+
access_key_id: string;
|
|
31332
|
+
base_path?: string | null | undefined;
|
|
31333
|
+
bucket: string;
|
|
31334
|
+
endpoint?: string | null | undefined;
|
|
31335
|
+
region?: string | null | undefined;
|
|
31336
|
+
}> & {
|
|
31337
|
+
cloud_storage_type: "r2";
|
|
31338
|
+
}) | ({
|
|
31339
|
+
cloud_storage_type: "custom";
|
|
31340
|
+
} & Readonly<{
|
|
31341
|
+
access_key_id: string;
|
|
31342
|
+
base_path?: string | null | undefined;
|
|
31343
|
+
bucket: string;
|
|
31344
|
+
endpoint: string;
|
|
31345
|
+
region: string;
|
|
31346
|
+
}> & {
|
|
31347
|
+
cloud_storage_type: "custom";
|
|
31348
|
+
});
|
|
31349
|
+
regulated_data_db_reader_port: number;
|
|
31350
|
+
unregulated_db_writer_schema: string;
|
|
31351
|
+
unregulated_db_writer_name: string;
|
|
31352
|
+
regulated_data_db_reader_schema: string;
|
|
31353
|
+
unregulated_db_writer_host: string;
|
|
31354
|
+
regulated_data_db_writer_name: string;
|
|
31355
|
+
unregulated_db_reader_name: string;
|
|
31356
|
+
unregulated_db_writer_auth_method: "password" | "iam_role";
|
|
31357
|
+
tenant?: Readonly<{
|
|
31358
|
+
description?: string | null | undefined;
|
|
31359
|
+
readonly id: string;
|
|
31360
|
+
name: string;
|
|
31361
|
+
readonly slug: string;
|
|
31362
|
+
}> | null | undefined;
|
|
31363
|
+
id?: string | null | undefined;
|
|
31364
|
+
name: string;
|
|
31365
|
+
description?: string | null | undefined;
|
|
31366
|
+
pool_size: number | null;
|
|
31367
|
+
updated_at?: string | null | undefined;
|
|
31368
|
+
status?: "new" | "processing" | "ready" | null | undefined;
|
|
31369
|
+
unregulated_db_reader_port: number;
|
|
31370
|
+
unregulated_db_reader_host: string;
|
|
31371
|
+
regulated_data_db_reader_enable_ssl: boolean;
|
|
31372
|
+
unregulated_db_reader_enable_ssl: boolean;
|
|
31373
|
+
regulated_data_db_writer_port: number;
|
|
31374
|
+
unregulated_db_writer_port: number;
|
|
31375
|
+
unregulated_db_writer_enable_ssl: boolean;
|
|
31376
|
+
unregulated_db_reader_schema: string;
|
|
31377
|
+
regulated_data_db_writer_enable_ssl: boolean;
|
|
31378
|
+
regulated_data_db_writer_schema: string;
|
|
31379
|
+
regulated_data_db_writer_auth_method: "password" | "iam_role";
|
|
31380
|
+
inserted_at?: string | null | undefined;
|
|
31381
|
+
regulated_data_db_writer_host: string;
|
|
31382
|
+
regulated_data_db_reader_auth_method: "password" | "iam_role";
|
|
31383
|
+
timezone: string | null;
|
|
31384
|
+
data_domain: "healthcare" | "core_banking" | "payment_risk" | "accounts_receivable" | "service_commerce" | "trading" | "foundation";
|
|
31385
|
+
}> | null | undefined;
|
|
31386
|
+
description?: string | null | undefined;
|
|
31387
|
+
id?: string | null | undefined;
|
|
31388
|
+
image_url?: string | null | undefined;
|
|
31389
|
+
inserted_at?: string | null | undefined;
|
|
31390
|
+
is_default: boolean;
|
|
31391
|
+
name: string;
|
|
31392
|
+
status: "draft" | "active" | "inactive";
|
|
31393
|
+
updated_at?: string | null | undefined;
|
|
31394
|
+
uri: string;
|
|
31395
|
+
}>]>;
|
|
30886
31396
|
/**
|
|
30887
31397
|
* Full Data Source resource (PUT semantics — all fields required)
|
|
30888
31398
|
*/
|
|
@@ -35577,16 +36087,6 @@ declare const vPlatformApiAgenticWorkflowOperationsControllerBatchLogRefreshResp
|
|
|
35577
36087
|
total_wels?: number | null | undefined;
|
|
35578
36088
|
workflow_id?: string | null | undefined;
|
|
35579
36089
|
}>]>;
|
|
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
36090
|
/**
|
|
35591
36091
|
* JSON payload
|
|
35592
36092
|
*/
|
|
@@ -35606,6 +36106,148 @@ declare const vPlatformApiDataActivationClientControllerIngestResponse: v.Object
|
|
|
35606
36106
|
readonly jobs_count: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
35607
36107
|
readonly key: v.StringSchema<undefined>;
|
|
35608
36108
|
}, undefined>;
|
|
36109
|
+
declare const vPlatformApiActionStatusUpdaterControllerShowPath: v.ObjectSchema<{
|
|
36110
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
36111
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
36112
|
+
}, undefined>;
|
|
36113
|
+
/**
|
|
36114
|
+
* Action status updater
|
|
36115
|
+
*/
|
|
36116
|
+
declare const vPlatformApiActionStatusUpdaterControllerShowResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36117
|
+
readonly cron_expression: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36118
|
+
readonly datalake_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
36119
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36120
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36121
|
+
readonly name: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36122
|
+
readonly sender_tool_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, undefined>;
|
|
36123
|
+
readonly tenant_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36124
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36125
|
+
readonly updater_body: v.NullishSchema<v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
36126
|
+
readonly updater_body_type: v.LiteralSchema<"cloud_watch_request", undefined>;
|
|
36127
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36128
|
+
readonly end_time: v.StringSchema<undefined>;
|
|
36129
|
+
readonly log_group_name: v.StringSchema<undefined>;
|
|
36130
|
+
readonly start_time: v.StringSchema<undefined>;
|
|
36131
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36132
|
+
end_time: string;
|
|
36133
|
+
log_group_name: string;
|
|
36134
|
+
start_time: string;
|
|
36135
|
+
}>]>, v.ObjectSchema<{
|
|
36136
|
+
readonly updater_body_type: v.PicklistSchema<["cloud_watch_request"], undefined>;
|
|
36137
|
+
}, undefined>], undefined>], undefined>, v.IntersectSchema<[v.ObjectSchema<{
|
|
36138
|
+
readonly updater_body_type: v.LiteralSchema<"restapi_request", undefined>;
|
|
36139
|
+
}, undefined>, v.IntersectSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36140
|
+
readonly body: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36141
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36142
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36143
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
36144
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36145
|
+
body?: string | null | undefined;
|
|
36146
|
+
path?: string | null | undefined;
|
|
36147
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36148
|
+
}>]>, undefined>;
|
|
36149
|
+
readonly method: v.PicklistSchema<["head", "get", "put", "post", "delete", "patch"], undefined>;
|
|
36150
|
+
readonly pagination_context_template: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36151
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36152
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36153
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
36154
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36155
|
+
body?: string | null | undefined;
|
|
36156
|
+
path?: string | null | undefined;
|
|
36157
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36158
|
+
}>]>;
|
|
36159
|
+
readonly params: v.NullishSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36160
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36161
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36162
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
36163
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36164
|
+
body?: string | null | undefined;
|
|
36165
|
+
path?: string | null | undefined;
|
|
36166
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36167
|
+
}>]>, undefined>;
|
|
36168
|
+
readonly path: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36169
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36170
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36171
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
36172
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36173
|
+
body?: string | null | undefined;
|
|
36174
|
+
path?: string | null | undefined;
|
|
36175
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36176
|
+
}>]>;
|
|
36177
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36178
|
+
body?: Readonly<{
|
|
36179
|
+
body?: string | null | undefined;
|
|
36180
|
+
path?: string | null | undefined;
|
|
36181
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36182
|
+
}> | null | undefined;
|
|
36183
|
+
method: "head" | "get" | "put" | "post" | "delete" | "patch";
|
|
36184
|
+
readonly pagination_context_template: Readonly<{
|
|
36185
|
+
body?: string | null | undefined;
|
|
36186
|
+
path?: string | null | undefined;
|
|
36187
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36188
|
+
}>;
|
|
36189
|
+
params?: Readonly<{
|
|
36190
|
+
body?: string | null | undefined;
|
|
36191
|
+
path?: string | null | undefined;
|
|
36192
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36193
|
+
}> | null | undefined;
|
|
36194
|
+
readonly path: Readonly<{
|
|
36195
|
+
body?: string | null | undefined;
|
|
36196
|
+
path?: string | null | undefined;
|
|
36197
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36198
|
+
}>;
|
|
36199
|
+
}>]>, v.ObjectSchema<{
|
|
36200
|
+
readonly updater_body_type: v.PicklistSchema<["restapi_request"], undefined>;
|
|
36201
|
+
}, undefined>], undefined>], undefined>], undefined>, undefined>;
|
|
36202
|
+
readonly updater_tool_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>;
|
|
36203
|
+
readonly updater_type: v.NullishSchema<v.PicklistSchema<["cloud_watch", "restapi"], undefined>, undefined>;
|
|
36204
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36205
|
+
cron_expression?: string | null | undefined;
|
|
36206
|
+
datalake_id?: string | null | undefined;
|
|
36207
|
+
id?: string | null | undefined;
|
|
36208
|
+
inserted_at?: string | null | undefined;
|
|
36209
|
+
name?: string | null | undefined;
|
|
36210
|
+
sender_tool_ids?: string[] | null | undefined;
|
|
36211
|
+
tenant_id?: string | null | undefined;
|
|
36212
|
+
updated_at?: string | null | undefined;
|
|
36213
|
+
updater_body?: ({
|
|
36214
|
+
updater_body_type: "cloud_watch_request";
|
|
36215
|
+
} & Readonly<{
|
|
36216
|
+
end_time: string;
|
|
36217
|
+
log_group_name: string;
|
|
36218
|
+
start_time: string;
|
|
36219
|
+
}> & {
|
|
36220
|
+
updater_body_type: "cloud_watch_request";
|
|
36221
|
+
}) | ({
|
|
36222
|
+
updater_body_type: "restapi_request";
|
|
36223
|
+
} & Readonly<{
|
|
36224
|
+
body?: Readonly<{
|
|
36225
|
+
body?: string | null | undefined;
|
|
36226
|
+
path?: string | null | undefined;
|
|
36227
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36228
|
+
}> | null | undefined;
|
|
36229
|
+
method: "head" | "get" | "put" | "post" | "delete" | "patch";
|
|
36230
|
+
readonly pagination_context_template: Readonly<{
|
|
36231
|
+
body?: string | null | undefined;
|
|
36232
|
+
path?: string | null | undefined;
|
|
36233
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36234
|
+
}>;
|
|
36235
|
+
params?: Readonly<{
|
|
36236
|
+
body?: string | null | undefined;
|
|
36237
|
+
path?: string | null | undefined;
|
|
36238
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36239
|
+
}> | null | undefined;
|
|
36240
|
+
readonly path: Readonly<{
|
|
36241
|
+
body?: string | null | undefined;
|
|
36242
|
+
path?: string | null | undefined;
|
|
36243
|
+
type: "system" | "custom" | "identity" | "null";
|
|
36244
|
+
}>;
|
|
36245
|
+
}> & {
|
|
36246
|
+
updater_body_type: "restapi_request";
|
|
36247
|
+
}) | null | undefined;
|
|
36248
|
+
updater_tool_id?: string | null | undefined;
|
|
36249
|
+
updater_type?: "cloud_watch" | "restapi" | null | undefined;
|
|
36250
|
+
}>]>;
|
|
35609
36251
|
/**
|
|
35610
36252
|
* Full Action Status Updater resource (PUT semantics — all fields required)
|
|
35611
36253
|
*/
|
|
@@ -35805,6 +36447,51 @@ declare const vPlatformApiActionStatusUpdaterControllerUpdateResponse: v.SchemaW
|
|
|
35805
36447
|
updater_tool_id?: string | null | undefined;
|
|
35806
36448
|
updater_type?: "cloud_watch" | "restapi" | null | undefined;
|
|
35807
36449
|
}>]>;
|
|
36450
|
+
declare const vPlatformApiGenericTableControllerShowPath: v.ObjectSchema<{
|
|
36451
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
36452
|
+
readonly datalake_slug: v.StringSchema<undefined>;
|
|
36453
|
+
readonly name: v.StringSchema<undefined>;
|
|
36454
|
+
}, undefined>;
|
|
36455
|
+
/**
|
|
36456
|
+
* Generic table
|
|
36457
|
+
*/
|
|
36458
|
+
declare const vPlatformApiGenericTableControllerShowResponse: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
36459
|
+
readonly columns: v.NullishSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
36460
|
+
readonly data_domain: v.NullishSchema<v.PicklistSchema<["healthcare", "core_banking", "payment_risk", "accounts_receivable", "service_commerce", "trading", "foundation"], undefined>, undefined>;
|
|
36461
|
+
readonly datalake_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36462
|
+
readonly description: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36463
|
+
readonly id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36464
|
+
readonly inserted_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36465
|
+
readonly name: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.ReadonlyAction<string>]>, undefined>;
|
|
36466
|
+
readonly status: v.NullishSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["new", "stale", "processing", "deployed"], undefined>, v.ReadonlyAction<"new" | "stale" | "processing" | "deployed">]>, undefined>;
|
|
36467
|
+
readonly tenant_id: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36468
|
+
readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
36469
|
+
readonly type: v.NullishSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["custom", "system"], undefined>, v.ReadonlyAction<"system" | "custom">]>, undefined>;
|
|
36470
|
+
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, v.ReadonlyAction<string>]>, undefined>;
|
|
36471
|
+
}, undefined>, v.ReadonlyAction<{
|
|
36472
|
+
columns?: unknown[] | null | undefined;
|
|
36473
|
+
data_domain?: "healthcare" | "core_banking" | "payment_risk" | "accounts_receivable" | "service_commerce" | "trading" | "foundation" | null | undefined;
|
|
36474
|
+
datalake_id?: string | null | undefined;
|
|
36475
|
+
description?: string | null | undefined;
|
|
36476
|
+
id?: string | null | undefined;
|
|
36477
|
+
inserted_at?: string | null | undefined;
|
|
36478
|
+
name?: string | null | undefined;
|
|
36479
|
+
status?: "new" | "stale" | "processing" | "deployed" | null | undefined;
|
|
36480
|
+
tenant_id?: string | null | undefined;
|
|
36481
|
+
title?: string | null | undefined;
|
|
36482
|
+
type?: "system" | "custom" | null | undefined;
|
|
36483
|
+
updated_at?: string | null | undefined;
|
|
36484
|
+
}>]>;
|
|
36485
|
+
declare const vPlatformApiDatalakeControllerSystemDatasetsPath: v.ObjectSchema<{
|
|
36486
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
36487
|
+
readonly datalake_slug: v.StringSchema<undefined>;
|
|
36488
|
+
}, undefined>;
|
|
36489
|
+
/**
|
|
36490
|
+
* Industry-registered datasets
|
|
36491
|
+
*/
|
|
36492
|
+
declare const vPlatformApiDatalakeControllerSystemDatasetsResponse: v.ObjectSchema<{
|
|
36493
|
+
readonly datasets: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
36494
|
+
}, undefined>;
|
|
35808
36495
|
declare const vPlatformApiAiAgentControllerIndexPath: v.ObjectSchema<{
|
|
35809
36496
|
readonly tenant_slug: v.StringSchema<undefined>;
|
|
35810
36497
|
readonly datalake_slug: v.StringSchema<undefined>;
|
|
@@ -37975,6 +38662,7 @@ declare const vPlatformApiInteroperabilityContractControllerShowResponse: v.Sche
|
|
|
37975
38662
|
readonly name: v.StringSchema<undefined>;
|
|
37976
38663
|
readonly resource_type: v.StringSchema<undefined>;
|
|
37977
38664
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
38665
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
37978
38666
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
37979
38667
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
37980
38668
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -37987,6 +38675,7 @@ declare const vPlatformApiInteroperabilityContractControllerShowResponse: v.Sche
|
|
|
37987
38675
|
name: string;
|
|
37988
38676
|
resource_type: string;
|
|
37989
38677
|
slug?: string | null | undefined;
|
|
38678
|
+
system_created: boolean;
|
|
37990
38679
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
37991
38680
|
updated_at?: string | null | undefined;
|
|
37992
38681
|
}>]>;
|
|
@@ -38044,6 +38733,7 @@ declare const vPlatformApiInteroperabilityContractControllerUpdateResponse: v.Sc
|
|
|
38044
38733
|
readonly name: v.StringSchema<undefined>;
|
|
38045
38734
|
readonly resource_type: v.StringSchema<undefined>;
|
|
38046
38735
|
readonly slug: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
38736
|
+
readonly system_created: v.NullishSchema<v.SchemaWithPipe<readonly [v.BooleanSchema<undefined>, v.ReadonlyAction<boolean>]>, false>;
|
|
38047
38737
|
readonly type: v.NullishSchema<v.PicklistSchema<["system", "custom", "identity", "null"], undefined>, undefined>;
|
|
38048
38738
|
readonly updated_at: v.NullishSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
38049
38739
|
}, undefined>, v.ReadonlyAction<{
|
|
@@ -38056,6 +38746,7 @@ declare const vPlatformApiInteroperabilityContractControllerUpdateResponse: v.Sc
|
|
|
38056
38746
|
name: string;
|
|
38057
38747
|
resource_type: string;
|
|
38058
38748
|
slug?: string | null | undefined;
|
|
38749
|
+
system_created: boolean;
|
|
38059
38750
|
type?: "system" | "custom" | "identity" | "null" | null | undefined;
|
|
38060
38751
|
updated_at?: string | null | undefined;
|
|
38061
38752
|
}>]>;
|
|
@@ -41232,6 +41923,20 @@ declare const vPlatformApiAdminControllerConfirmUserResponse: v.SchemaWithPipe<r
|
|
|
41232
41923
|
readonly id: string;
|
|
41233
41924
|
last_name?: string | null | undefined;
|
|
41234
41925
|
}>]>;
|
|
41926
|
+
declare const vPlatformApiTemplatesControllerIndexPath: v.ObjectSchema<{
|
|
41927
|
+
readonly tenant_slug: v.StringSchema<undefined>;
|
|
41928
|
+
readonly datalake_slug: v.StringSchema<undefined>;
|
|
41929
|
+
}, undefined>;
|
|
41930
|
+
/**
|
|
41931
|
+
* System template list
|
|
41932
|
+
*/
|
|
41933
|
+
declare const vPlatformApiTemplatesControllerIndexResponse: v.ObjectSchema<{
|
|
41934
|
+
readonly data: v.ArraySchema<v.ObjectSchema<{
|
|
41935
|
+
readonly content: v.StringSchema<undefined>;
|
|
41936
|
+
readonly output_schema: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
41937
|
+
readonly path: v.StringSchema<undefined>;
|
|
41938
|
+
}, undefined>, undefined>;
|
|
41939
|
+
}, undefined>;
|
|
41235
41940
|
declare const vPlatformApiConnectedAppMgmtControllerIndexPath: v.ObjectSchema<{
|
|
41236
41941
|
readonly tenant_slug: v.StringSchema<undefined>;
|
|
41237
41942
|
readonly datalake_slug: v.StringSchema<undefined>;
|
|
@@ -47310,6 +48015,11 @@ declare const vPlatformApiDataActivationClientControllerCreateBody: v.ObjectSche
|
|
|
47310
48015
|
readonly interoperability_contract_ids: v.NullishSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>, undefined>, readonly []>;
|
|
47311
48016
|
readonly loop_over: v.NullishSchema<v.ArraySchema<v.PicklistSchema<["services", "locations", "providers"], undefined>, undefined>, readonly []>;
|
|
47312
48017
|
readonly name: v.StringSchema<undefined>;
|
|
48018
|
+
readonly response_extractor: v.NullishSchema<v.ObjectSchema<{
|
|
48019
|
+
readonly body: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
48020
|
+
readonly path: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
48021
|
+
readonly type: v.PicklistSchema<["system", "custom", "identity", "null"], undefined>;
|
|
48022
|
+
}, undefined>, undefined>;
|
|
47313
48023
|
readonly row_filter: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
47314
48024
|
readonly tool_call: v.UnionSchema<[v.IntersectSchema<[v.ObjectSchema<{
|
|
47315
48025
|
readonly tool_call_type: v.LiteralSchema<"restapi_request", undefined>;
|
|
@@ -48595,5 +49305,5 @@ declare const vPlatformApiConnectedAppControllerResolvePageResponse: v.ObjectSch
|
|
|
48595
49305
|
readonly user_agent: v.NullishSchema<v.StringSchema<undefined>, undefined>;
|
|
48596
49306
|
}, undefined>;
|
|
48597
49307
|
//#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 };
|
|
49308
|
+
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, 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, 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
49309
|
//# sourceMappingURL=index.d.mts.map
|