@explo-tech/fido-api 3.0.0-jordan-testing.4 → 3.0.0-jordan-testing.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.
Files changed (2) hide show
  1. package/index.ts +181 -167
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -1219,173 +1219,187 @@ export const schemas = {
1219
1219
  ListVersionedViewsRequest,
1220
1220
  };
1221
1221
 
1222
- export const types = {
1223
- Branch: z.infer<typeof Branch>,
1224
- ListBranchResponse: z.infer<typeof ListBranchResponse>,
1225
- ClientError: z.infer<typeof ClientError>,
1226
- BranchRequest: z.infer<typeof BranchRequest>,
1227
- PropertyType: z.infer<typeof PropertyType>,
1228
- PropertySchema: z.infer<typeof PropertySchema>,
1229
- Parameter: z.infer<typeof Parameter>,
1230
- ScheduledEviction: z.infer<typeof ScheduledEviction>,
1231
- TtlEviction: z.infer<typeof TtlEviction>,
1232
- EvictionPolicy: z.infer<typeof EvictionPolicy>,
1233
- ComputedView: z.infer<typeof ComputedView>,
1234
- TableView: z.infer<typeof TableView>,
1235
- Folder: z.infer<typeof Folder>,
1236
- Resource: z.infer<typeof Resource>,
1237
- CreateResourceDiff: z.infer<typeof CreateResourceDiff>,
1238
- DeleteResourceDiff: z.infer<typeof DeleteResourceDiff>,
1239
- UpdateResourceDiff: z.infer<typeof UpdateResourceDiff>,
1240
- ResourceDiff: z.infer<typeof ResourceDiff>,
1241
- BranchResponseMetadata: z.infer<typeof BranchResponseMetadata>,
1242
- BranchResponse: z.infer<typeof BranchResponse>,
1243
- DiffBranchResponse: z.infer<typeof DiffBranchResponse>,
1244
- UUID: z.infer<typeof UUID>,
1245
- CreateResourceChange: z.infer<typeof CreateResourceChange>,
1246
- UpdateResourceChange: z.infer<typeof UpdateResourceChange>,
1247
- DeleteResourceChange: z.infer<typeof DeleteResourceChange>,
1248
- ResourceChange: z.infer<typeof ResourceChange>,
1249
- CreateCommitRequest: z.infer<typeof CreateCommitRequest>,
1250
- CreateCommitResponse: z.infer<typeof CreateCommitResponse>,
1251
- ListBranchContentResponse: z.infer<typeof ListBranchContentResponse>,
1252
- MergeBranchRequest: z.infer<typeof MergeBranchRequest>,
1253
- PasswordAuthentication: z.infer<typeof PasswordAuthentication>,
1254
- JdbcAuthentication: z.infer<typeof JdbcAuthentication>,
1255
- PublicTunnel: z.infer<typeof PublicTunnel>,
1256
- VendorPrivateKeyAuthentication: z.infer<
1257
- typeof VendorPrivateKeyAuthentication
1258
- >,
1259
- TenantPrivateKeyAuthentication: z.infer<
1260
- typeof TenantPrivateKeyAuthentication
1261
- >,
1262
- SSHAuthentication: z.infer<typeof SSHAuthentication>,
1263
- SSHTunnel: z.infer<typeof SSHTunnel>,
1264
- Tunnel: z.infer<typeof Tunnel>,
1265
- Postgres: z.infer<typeof Postgres>,
1266
- MySql: z.infer<typeof MySql>,
1267
- MSS: z.infer<typeof MSS>,
1268
- BigQueryAuthentication: z.infer<typeof BigQueryAuthentication>,
1269
- BigQuery: z.infer<typeof BigQuery>,
1270
- Redshift: z.infer<typeof Redshift>,
1271
- SnowflakePasswordAuthentication: z.infer<
1272
- typeof SnowflakePasswordAuthentication
1273
- >,
1274
- SnowflakeAuthentication: z.infer<typeof SnowflakeAuthentication>,
1275
- Snowflake: z.infer<typeof Snowflake>,
1276
- ClickhouseConnectionType: z.infer<typeof ClickhouseConnectionType>,
1277
- Clickhouse: z.infer<typeof Clickhouse>,
1278
- DataSourceConfiguration: z.infer<typeof DataSourceConfiguration>,
1279
- TestConnectionRequest: z.infer<typeof TestConnectionRequest>,
1280
- Namespace: z.infer<typeof Namespace>,
1281
- NamespaceRequest: z.infer<typeof NamespaceRequest>,
1282
- DataSource: z.infer<typeof DataSource>,
1283
- NamespaceResponseMetadata: z.infer<typeof NamespaceResponseMetadata>,
1284
- NamespaceResponse: z.infer<typeof NamespaceResponse>,
1285
- DataSourceRequest: z.infer<typeof DataSourceRequest>,
1286
- DataSourceResponse: z.infer<typeof DataSourceResponse>,
1287
- PagingConfiguration: z.infer<typeof PagingConfiguration>,
1288
- DataRequestParameters: z.infer<typeof DataRequestParameters>,
1289
- And: z.infer<typeof And>,
1290
- Or: z.infer<typeof Or>,
1291
- Not: z.infer<typeof Not>,
1292
- BooleanPropertyValue: z.infer<typeof BooleanPropertyValue>,
1293
- DatePropertyValue: z.infer<typeof DatePropertyValue>,
1294
- DateTimePropertyValue: z.infer<typeof DateTimePropertyValue>,
1295
- DecimalPropertyValue: z.infer<typeof DecimalPropertyValue>,
1296
- DoublePropertyValue: z.infer<typeof DoublePropertyValue>,
1297
- IntegerPropertyValue: z.infer<typeof IntegerPropertyValue>,
1298
- StringPropertyValue: z.infer<typeof StringPropertyValue>,
1299
- PropertyValue: z.infer<typeof PropertyValue>,
1300
- Equal: z.infer<typeof Equal>,
1301
- LateBoundEqual: z.infer<typeof LateBoundEqual>,
1302
- In: z.infer<typeof In>,
1303
- LateBoundIn: z.infer<typeof LateBoundIn>,
1304
- LessThan: z.infer<typeof LessThan>,
1305
- LessThanOrEqual: z.infer<typeof LessThanOrEqual>,
1306
- GreaterThan: z.infer<typeof GreaterThan>,
1307
- GreaterThanOrEqual: z.infer<typeof GreaterThanOrEqual>,
1308
- LateBoundLessThan: z.infer<typeof LateBoundLessThan>,
1309
- LateBoundLessThanOrEqual: z.infer<typeof LateBoundLessThanOrEqual>,
1310
- LateBoundGreaterThan: z.infer<typeof LateBoundGreaterThan>,
1311
- LateBoundGreaterThanOrEqual: z.infer<typeof LateBoundGreaterThanOrEqual>,
1312
- Null: z.infer<typeof Null>,
1313
- StringContains: z.infer<typeof StringContains>,
1314
- LateBoundStringContains: z.infer<typeof LateBoundStringContains>,
1315
- Filter: z.infer<typeof Filter>,
1316
- Aggregation: z.infer<typeof Aggregation>,
1317
- AggregationOption: z.infer<typeof AggregationOption>,
1318
- AggregateProperty: z.infer<typeof AggregateProperty>,
1319
- SourceProperty: z.infer<typeof SourceProperty>,
1320
- FormulaProperty: z.infer<typeof FormulaProperty>,
1321
- Property: z.infer<typeof Property>,
1322
- CalendarInterval: z.infer<typeof CalendarInterval>,
1323
- CalendarIntervalGrouping: z.infer<typeof CalendarIntervalGrouping>,
1324
- DatePart: z.infer<typeof DatePart>,
1325
- DatePartGrouping: z.infer<typeof DatePartGrouping>,
1326
- DecimalIntervalGrouping: z.infer<typeof DecimalIntervalGrouping>,
1327
- IntegerIntervalGrouping: z.infer<typeof IntegerIntervalGrouping>,
1328
- ValueGrouping: z.infer<typeof ValueGrouping>,
1329
- Grouping: z.infer<typeof Grouping>,
1330
- SortDirection: z.infer<typeof SortDirection>,
1331
- Sort: z.infer<typeof Sort>,
1332
- And1: z.infer<typeof And1>,
1333
- Or1: z.infer<typeof Or1>,
1334
- Not1: z.infer<typeof Not1>,
1335
- Equal1: z.infer<typeof Equal1>,
1336
- LateBoundEqual1: z.infer<typeof LateBoundEqual1>,
1337
- In1: z.infer<typeof In1>,
1338
- LateBoundIn1: z.infer<typeof LateBoundIn1>,
1339
- LessThan1: z.infer<typeof LessThan1>,
1340
- LessThanOrEqual1: z.infer<typeof LessThanOrEqual1>,
1341
- GreaterThan1: z.infer<typeof GreaterThan1>,
1342
- GreaterThanOrEqual1: z.infer<typeof GreaterThanOrEqual1>,
1343
- LateBoundLessThan1: z.infer<typeof LateBoundLessThan1>,
1344
- LateBoundLessThanOrEqual1: z.infer<typeof LateBoundLessThanOrEqual1>,
1345
- LateBoundGreaterThan1: z.infer<typeof LateBoundGreaterThan1>,
1346
- LateBoundGreaterThanOrEqual1: z.infer<typeof LateBoundGreaterThanOrEqual1>,
1347
- Null1: z.infer<typeof Null1>,
1348
- StringContains1: z.infer<typeof StringContains1>,
1349
- LateBoundStringContains1: z.infer<typeof LateBoundStringContains1>,
1350
- Having: z.infer<typeof Having>,
1351
- Computation: z.infer<typeof Computation>,
1352
- QueryPreviewRequest: z.infer<typeof QueryPreviewRequest>,
1353
- DataRecord: z.infer<typeof DataRecord>,
1354
- DataPage: z.infer<typeof DataPage>,
1355
- DataSchema: z.infer<typeof DataSchema>,
1356
- DataResponseMetadata: z.infer<typeof DataResponseMetadata>,
1357
- CacheTelemetry: z.infer<typeof CacheTelemetry>,
1358
- RequestTelemetry: z.infer<typeof RequestTelemetry>,
1359
- QueryExecutionResponse: z.infer<typeof QueryExecutionResponse>,
1360
- QueryExecutionError: z.infer<typeof QueryExecutionError>,
1361
- TablePreviewRequest: z.infer<typeof TablePreviewRequest>,
1362
- ExportFormat: z.infer<typeof ExportFormat>,
1363
- DateTimeFormat: z.infer<typeof DateTimeFormat>,
1364
- DateTimeColumnFormat: z.infer<typeof DateTimeColumnFormat>,
1365
- UnitOfMeasurement: z.infer<typeof UnitOfMeasurement>,
1366
- DecimalColumnFormat: z.infer<typeof DecimalColumnFormat>,
1367
- DurationColumnFormat: z.infer<typeof DurationColumnFormat>,
1368
- ColumnFormat: z.infer<typeof ColumnFormat>,
1369
- ExportColumnOptions: z.infer<typeof ExportColumnOptions>,
1370
- ExportTargetConfiguration: z.infer<typeof ExportTargetConfiguration>,
1371
- EmailConfiguration: z.infer<typeof EmailConfiguration>,
1372
- ViewExportRequest: z.infer<typeof ViewExportRequest>,
1373
- QueryExportEmailResponse: z.infer<typeof QueryExportEmailResponse>,
1374
- QueryExportLinkResponse: z.infer<typeof QueryExportLinkResponse>,
1375
- QueryExportResponse: z.infer<typeof QueryExportResponse>,
1376
- RequestExecutionParameters: z.infer<typeof RequestExecutionParameters>,
1377
- ViewRunRequest: z.infer<typeof ViewRunRequest>,
1378
- View: z.infer<typeof View>,
1379
- ViewResponse: z.infer<typeof ViewResponse>,
1380
- ListViewsResponse: z.infer<typeof ListViewsResponse>,
1381
- TenantS3Configuration: z.infer<typeof TenantS3Configuration>,
1382
- TenantRequest: z.infer<typeof TenantRequest>,
1383
- TenantKey: z.infer<typeof TenantKey>,
1384
- Tenant: z.infer<typeof Tenant>,
1385
- TenantResponse: z.infer<typeof TenantResponse>,
1386
- VersionedViewRequest: z.infer<typeof VersionedViewRequest>,
1387
- ListVersionedViewsRequest: z.infer<typeof ListVersionedViewsRequest>,
1388
- };
1222
+ export type Branch = z.infer<typeof Branch>;
1223
+ export type ListBranchResponse = z.infer<typeof ListBranchResponse>;
1224
+ export type ClientError = z.infer<typeof ClientError>;
1225
+ export type BranchRequest = z.infer<typeof BranchRequest>;
1226
+ export type PropertyType = z.infer<typeof PropertyType>;
1227
+ export type PropertySchema = z.infer<typeof PropertySchema>;
1228
+ export type Parameter = z.infer<typeof Parameter>;
1229
+ export type ScheduledEviction = z.infer<typeof ScheduledEviction>;
1230
+ export type TtlEviction = z.infer<typeof TtlEviction>;
1231
+ export type EvictionPolicy = z.infer<typeof EvictionPolicy>;
1232
+ export type ComputedView = z.infer<typeof ComputedView>;
1233
+ export type TableView = z.infer<typeof TableView>;
1234
+ export type Folder = z.infer<typeof Folder>;
1235
+ export type Resource = z.infer<typeof Resource>;
1236
+ export type CreateResourceDiff = z.infer<typeof CreateResourceDiff>;
1237
+ export type DeleteResourceDiff = z.infer<typeof DeleteResourceDiff>;
1238
+ export type UpdateResourceDiff = z.infer<typeof UpdateResourceDiff>;
1239
+ export type ResourceDiff = z.infer<typeof ResourceDiff>;
1240
+ export type BranchResponseMetadata = z.infer<typeof BranchResponseMetadata>;
1241
+ export type BranchResponse = z.infer<typeof BranchResponse>;
1242
+ export type DiffBranchResponse = z.infer<typeof DiffBranchResponse>;
1243
+ export type UUID = z.infer<typeof UUID>;
1244
+ export type CreateResourceChange = z.infer<typeof CreateResourceChange>;
1245
+ export type UpdateResourceChange = z.infer<typeof UpdateResourceChange>;
1246
+ export type DeleteResourceChange = z.infer<typeof DeleteResourceChange>;
1247
+ export type ResourceChange = z.infer<typeof ResourceChange>;
1248
+ export type CreateCommitRequest = z.infer<typeof CreateCommitRequest>;
1249
+ export type CreateCommitResponse = z.infer<typeof CreateCommitResponse>;
1250
+ export type ListBranchContentResponse = z.infer<
1251
+ typeof ListBranchContentResponse
1252
+ >;
1253
+ export type MergeBranchRequest = z.infer<typeof MergeBranchRequest>;
1254
+ export type PasswordAuthentication = z.infer<typeof PasswordAuthentication>;
1255
+ export type JdbcAuthentication = z.infer<typeof JdbcAuthentication>;
1256
+ export type PublicTunnel = z.infer<typeof PublicTunnel>;
1257
+ export type VendorPrivateKeyAuthentication = z.infer<
1258
+ typeof VendorPrivateKeyAuthentication
1259
+ >;
1260
+ export type TenantPrivateKeyAuthentication = z.infer<
1261
+ typeof TenantPrivateKeyAuthentication
1262
+ >;
1263
+ export type SSHAuthentication = z.infer<typeof SSHAuthentication>;
1264
+ export type SSHTunnel = z.infer<typeof SSHTunnel>;
1265
+ export type Tunnel = z.infer<typeof Tunnel>;
1266
+ export type Postgres = z.infer<typeof Postgres>;
1267
+ export type MySql = z.infer<typeof MySql>;
1268
+ export type MSS = z.infer<typeof MSS>;
1269
+ export type BigQueryAuthentication = z.infer<typeof BigQueryAuthentication>;
1270
+ export type BigQuery = z.infer<typeof BigQuery>;
1271
+ export type Redshift = z.infer<typeof Redshift>;
1272
+ export type SnowflakePasswordAuthentication = z.infer<
1273
+ typeof SnowflakePasswordAuthentication
1274
+ >;
1275
+ export type SnowflakeAuthentication = z.infer<typeof SnowflakeAuthentication>;
1276
+ export type Snowflake = z.infer<typeof Snowflake>;
1277
+ export type ClickhouseConnectionType = z.infer<typeof ClickhouseConnectionType>;
1278
+ export type Clickhouse = z.infer<typeof Clickhouse>;
1279
+ export type DataSourceConfiguration = z.infer<typeof DataSourceConfiguration>;
1280
+ export type TestConnectionRequest = z.infer<typeof TestConnectionRequest>;
1281
+ export type Namespace = z.infer<typeof Namespace>;
1282
+ export type NamespaceRequest = z.infer<typeof NamespaceRequest>;
1283
+ export type DataSource = z.infer<typeof DataSource>;
1284
+ export type NamespaceResponseMetadata = z.infer<
1285
+ typeof NamespaceResponseMetadata
1286
+ >;
1287
+ export type NamespaceResponse = z.infer<typeof NamespaceResponse>;
1288
+ export type DataSourceRequest = z.infer<typeof DataSourceRequest>;
1289
+ export type DataSourceResponse = z.infer<typeof DataSourceResponse>;
1290
+ export type PagingConfiguration = z.infer<typeof PagingConfiguration>;
1291
+ export type DataRequestParameters = z.infer<typeof DataRequestParameters>;
1292
+ export type And = z.infer<typeof And>;
1293
+ export type Or = z.infer<typeof Or>;
1294
+ export type Not = z.infer<typeof Not>;
1295
+ export type BooleanPropertyValue = z.infer<typeof BooleanPropertyValue>;
1296
+ export type DatePropertyValue = z.infer<typeof DatePropertyValue>;
1297
+ export type DateTimePropertyValue = z.infer<typeof DateTimePropertyValue>;
1298
+ export type DecimalPropertyValue = z.infer<typeof DecimalPropertyValue>;
1299
+ export type DoublePropertyValue = z.infer<typeof DoublePropertyValue>;
1300
+ export type IntegerPropertyValue = z.infer<typeof IntegerPropertyValue>;
1301
+ export type StringPropertyValue = z.infer<typeof StringPropertyValue>;
1302
+ export type PropertyValue = z.infer<typeof PropertyValue>;
1303
+ export type Equal = z.infer<typeof Equal>;
1304
+ export type LateBoundEqual = z.infer<typeof LateBoundEqual>;
1305
+ export type In = z.infer<typeof In>;
1306
+ export type LateBoundIn = z.infer<typeof LateBoundIn>;
1307
+ export type LessThan = z.infer<typeof LessThan>;
1308
+ export type LessThanOrEqual = z.infer<typeof LessThanOrEqual>;
1309
+ export type GreaterThan = z.infer<typeof GreaterThan>;
1310
+ export type GreaterThanOrEqual = z.infer<typeof GreaterThanOrEqual>;
1311
+ export type LateBoundLessThan = z.infer<typeof LateBoundLessThan>;
1312
+ export type LateBoundLessThanOrEqual = z.infer<typeof LateBoundLessThanOrEqual>;
1313
+ export type LateBoundGreaterThan = z.infer<typeof LateBoundGreaterThan>;
1314
+ export type LateBoundGreaterThanOrEqual = z.infer<
1315
+ typeof LateBoundGreaterThanOrEqual
1316
+ >;
1317
+ export type Null = z.infer<typeof Null>;
1318
+ export type StringContains = z.infer<typeof StringContains>;
1319
+ export type LateBoundStringContains = z.infer<typeof LateBoundStringContains>;
1320
+ export type Filter = z.infer<typeof Filter>;
1321
+ export type Aggregation = z.infer<typeof Aggregation>;
1322
+ export type AggregationOption = z.infer<typeof AggregationOption>;
1323
+ export type AggregateProperty = z.infer<typeof AggregateProperty>;
1324
+ export type SourceProperty = z.infer<typeof SourceProperty>;
1325
+ export type FormulaProperty = z.infer<typeof FormulaProperty>;
1326
+ export type Property = z.infer<typeof Property>;
1327
+ export type CalendarInterval = z.infer<typeof CalendarInterval>;
1328
+ export type CalendarIntervalGrouping = z.infer<typeof CalendarIntervalGrouping>;
1329
+ export type DatePart = z.infer<typeof DatePart>;
1330
+ export type DatePartGrouping = z.infer<typeof DatePartGrouping>;
1331
+ export type DecimalIntervalGrouping = z.infer<typeof DecimalIntervalGrouping>;
1332
+ export type IntegerIntervalGrouping = z.infer<typeof IntegerIntervalGrouping>;
1333
+ export type ValueGrouping = z.infer<typeof ValueGrouping>;
1334
+ export type Grouping = z.infer<typeof Grouping>;
1335
+ export type SortDirection = z.infer<typeof SortDirection>;
1336
+ export type Sort = z.infer<typeof Sort>;
1337
+ export type And1 = z.infer<typeof And1>;
1338
+ export type Or1 = z.infer<typeof Or1>;
1339
+ export type Not1 = z.infer<typeof Not1>;
1340
+ export type Equal1 = z.infer<typeof Equal1>;
1341
+ export type LateBoundEqual1 = z.infer<typeof LateBoundEqual1>;
1342
+ export type In1 = z.infer<typeof In1>;
1343
+ export type LateBoundIn1 = z.infer<typeof LateBoundIn1>;
1344
+ export type LessThan1 = z.infer<typeof LessThan1>;
1345
+ export type LessThanOrEqual1 = z.infer<typeof LessThanOrEqual1>;
1346
+ export type GreaterThan1 = z.infer<typeof GreaterThan1>;
1347
+ export type GreaterThanOrEqual1 = z.infer<typeof GreaterThanOrEqual1>;
1348
+ export type LateBoundLessThan1 = z.infer<typeof LateBoundLessThan1>;
1349
+ export type LateBoundLessThanOrEqual1 = z.infer<
1350
+ typeof LateBoundLessThanOrEqual1
1351
+ >;
1352
+ export type LateBoundGreaterThan1 = z.infer<typeof LateBoundGreaterThan1>;
1353
+ export type LateBoundGreaterThanOrEqual1 = z.infer<
1354
+ typeof LateBoundGreaterThanOrEqual1
1355
+ >;
1356
+ export type Null1 = z.infer<typeof Null1>;
1357
+ export type StringContains1 = z.infer<typeof StringContains1>;
1358
+ export type LateBoundStringContains1 = z.infer<typeof LateBoundStringContains1>;
1359
+ export type Having = z.infer<typeof Having>;
1360
+ export type Computation = z.infer<typeof Computation>;
1361
+ export type QueryPreviewRequest = z.infer<typeof QueryPreviewRequest>;
1362
+ export type DataRecord = z.infer<typeof DataRecord>;
1363
+ export type DataPage = z.infer<typeof DataPage>;
1364
+ export type DataSchema = z.infer<typeof DataSchema>;
1365
+ export type DataResponseMetadata = z.infer<typeof DataResponseMetadata>;
1366
+ export type CacheTelemetry = z.infer<typeof CacheTelemetry>;
1367
+ export type RequestTelemetry = z.infer<typeof RequestTelemetry>;
1368
+ export type QueryExecutionResponse = z.infer<typeof QueryExecutionResponse>;
1369
+ export type QueryExecutionError = z.infer<typeof QueryExecutionError>;
1370
+ export type TablePreviewRequest = z.infer<typeof TablePreviewRequest>;
1371
+ export type ExportFormat = z.infer<typeof ExportFormat>;
1372
+ export type DateTimeFormat = z.infer<typeof DateTimeFormat>;
1373
+ export type DateTimeColumnFormat = z.infer<typeof DateTimeColumnFormat>;
1374
+ export type UnitOfMeasurement = z.infer<typeof UnitOfMeasurement>;
1375
+ export type DecimalColumnFormat = z.infer<typeof DecimalColumnFormat>;
1376
+ export type DurationColumnFormat = z.infer<typeof DurationColumnFormat>;
1377
+ export type ColumnFormat = z.infer<typeof ColumnFormat>;
1378
+ export type ExportColumnOptions = z.infer<typeof ExportColumnOptions>;
1379
+ export type ExportTargetConfiguration = z.infer<
1380
+ typeof ExportTargetConfiguration
1381
+ >;
1382
+ export type EmailConfiguration = z.infer<typeof EmailConfiguration>;
1383
+ export type ViewExportRequest = z.infer<typeof ViewExportRequest>;
1384
+ export type QueryExportEmailResponse = z.infer<typeof QueryExportEmailResponse>;
1385
+ export type QueryExportLinkResponse = z.infer<typeof QueryExportLinkResponse>;
1386
+ export type QueryExportResponse = z.infer<typeof QueryExportResponse>;
1387
+ export type RequestExecutionParameters = z.infer<
1388
+ typeof RequestExecutionParameters
1389
+ >;
1390
+ export type ViewRunRequest = z.infer<typeof ViewRunRequest>;
1391
+ export type View = z.infer<typeof View>;
1392
+ export type ViewResponse = z.infer<typeof ViewResponse>;
1393
+ export type ListViewsResponse = z.infer<typeof ListViewsResponse>;
1394
+ export type TenantS3Configuration = z.infer<typeof TenantS3Configuration>;
1395
+ export type TenantRequest = z.infer<typeof TenantRequest>;
1396
+ export type TenantKey = z.infer<typeof TenantKey>;
1397
+ export type Tenant = z.infer<typeof Tenant>;
1398
+ export type TenantResponse = z.infer<typeof TenantResponse>;
1399
+ export type VersionedViewRequest = z.infer<typeof VersionedViewRequest>;
1400
+ export type ListVersionedViewsRequest = z.infer<
1401
+ typeof ListVersionedViewsRequest
1402
+ >;
1389
1403
 
1390
1404
  const Branch_ResourceEndpoints = makeApi([
1391
1405
  {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@explo-tech/fido-api",
3
3
  "description": "Fido api",
4
4
  "homepage": "https://github.com/trust-kaz/fido",
5
- "version": "3.0.0-jordan-testing.4",
5
+ "version": "3.0.0-jordan-testing.5",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"