@objectstack/spec 1.0.5 → 1.0.7
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/ai/index.d.mts +1 -1
- package/dist/ai/index.d.ts +1 -1
- package/dist/api/index.d.mts +2 -2
- package/dist/api/index.d.ts +2 -2
- package/dist/api/index.js +1880 -1784
- package/dist/api/index.js.map +1 -1
- package/dist/api/index.mjs +1880 -1784
- package/dist/api/index.mjs.map +1 -1
- package/dist/automation/index.d.mts +1 -1
- package/dist/automation/index.d.ts +1 -1
- package/dist/contracts/index.d.mts +3 -3
- package/dist/contracts/index.d.ts +3 -3
- package/dist/data/index.d.mts +3 -3
- package/dist/data/index.d.ts +3 -3
- package/dist/data/index.js +5 -1
- package/dist/data/index.js.map +1 -1
- package/dist/data/index.mjs +5 -1
- package/dist/data/index.mjs.map +1 -1
- package/dist/{driver.zod-YoPJRbBk.d.mts → driver.zod-BOM_Etco.d.mts} +164 -3467
- package/dist/{driver.zod-B0DitHQ2.d.ts → driver.zod-lfi00zVT.d.ts} +164 -3467
- package/dist/{field.zod-Da5S-hAo.d.mts → field.zod-B_lzVsuC.d.ts} +871 -1
- package/dist/{field.zod-Da5S-hAo.d.ts → field.zod-dhbAw0SA.d.mts} +871 -1
- package/dist/hub/index.d.mts +1 -1
- package/dist/hub/index.d.ts +1 -1
- package/dist/hub/index.js +796 -707
- package/dist/hub/index.js.map +1 -1
- package/dist/hub/index.mjs +796 -707
- package/dist/hub/index.mjs.map +1 -1
- package/dist/{index-DSLwt2M_.d.ts → index-C67cfwmW.d.ts} +6 -355
- package/dist/{index-BMqjuD4e.d.ts → index-CH5zloR3.d.ts} +2 -2
- package/dist/{index-CIBOjiZG.d.mts → index-CU4m6noq.d.mts} +2 -2
- package/dist/{index-BeFe7iF_.d.mts → index-CyognKSZ.d.ts} +268 -1565
- package/dist/{index-CFaoWA3X.d.ts → index-DE_lJ11p.d.mts} +268 -1565
- package/dist/{index-C34qbBQr.d.mts → index-DLcySG7U.d.mts} +262 -241
- package/dist/{index-C34qbBQr.d.ts → index-DLcySG7U.d.ts} +262 -241
- package/dist/{index-BYtinxqf.d.mts → index-Dp7GFJ8V.d.mts} +6 -355
- package/dist/{index-D8XFyX0x.d.mts → index-Os7lItRe.d.mts} +108 -108
- package/dist/{index-D8XFyX0x.d.ts → index-Os7lItRe.d.ts} +108 -108
- package/dist/{index-CsF8m5Wj.d.mts → index-l6WIlmOD.d.mts} +39 -39
- package/dist/{index-CsF8m5Wj.d.ts → index-l6WIlmOD.d.ts} +39 -39
- package/dist/index.d.mts +162 -162
- package/dist/index.d.ts +162 -162
- package/dist/index.js +714 -672
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +714 -672
- package/dist/index.mjs.map +1 -1
- package/dist/kernel/index.d.mts +1 -1
- package/dist/kernel/index.d.ts +1 -1
- package/dist/kernel/index.js +705 -669
- package/dist/kernel/index.js.map +1 -1
- package/dist/kernel/index.mjs +704 -669
- package/dist/kernel/index.mjs.map +1 -1
- package/json-schema/api/CompileManifestResponse.json +6 -2
- package/json-schema/api/ExportRequest.json +419 -758
- package/json-schema/api/FindDataRequest.json +9 -0
- package/json-schema/data/JoinNode.json +9 -0
- package/json-schema/data/Mapping.json +9 -0
- package/json-schema/data/Query.json +9 -0
- package/json-schema/hub/ComposerResponse.json +6 -2
- package/json-schema/kernel/Manifest.json +6 -2
- package/json-schema/kernel/Plugin.json +28 -0
- package/package.json +1 -1
- package/dist/{index-iGrpxfqq.d.mts → index-D12rNohm.d.mts} +1 -1
- package/dist/{index-iGrpxfqq.d.ts → index-D12rNohm.d.ts} +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { F as
|
|
1
|
+
import { Q as QueryAST, a as QueryInput, F as FieldType } from './field.zod-B_lzVsuC.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { F as FieldType } from './field.zod-Da5S-hAo.mjs';
|
|
4
3
|
|
|
5
4
|
/**
|
|
6
5
|
* Shared HTTP Schemas
|
|
@@ -265,262 +264,13 @@ declare const BulkRequestSchema: z.ZodObject<{
|
|
|
265
264
|
/**
|
|
266
265
|
* Export Request
|
|
267
266
|
*/
|
|
268
|
-
declare const ExportRequestSchema: z.ZodObject<{
|
|
269
|
-
object: z.ZodString;
|
|
270
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
271
|
-
where: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
272
|
-
search: z.ZodOptional<z.ZodObject<{
|
|
273
|
-
query: z.ZodString;
|
|
274
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
275
|
-
fuzzy: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
276
|
-
operator: z.ZodDefault<z.ZodOptional<z.ZodEnum<["and", "or"]>>>;
|
|
277
|
-
boost: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
278
|
-
minScore: z.ZodOptional<z.ZodNumber>;
|
|
279
|
-
language: z.ZodOptional<z.ZodString>;
|
|
280
|
-
highlight: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
281
|
-
}, "strip", z.ZodTypeAny, {
|
|
282
|
-
query: string;
|
|
283
|
-
fuzzy: boolean;
|
|
284
|
-
operator: "and" | "or";
|
|
285
|
-
highlight: boolean;
|
|
286
|
-
fields?: string[] | undefined;
|
|
287
|
-
boost?: Record<string, number> | undefined;
|
|
288
|
-
minScore?: number | undefined;
|
|
289
|
-
language?: string | undefined;
|
|
290
|
-
}, {
|
|
291
|
-
query: string;
|
|
292
|
-
fields?: string[] | undefined;
|
|
293
|
-
fuzzy?: boolean | undefined;
|
|
294
|
-
operator?: "and" | "or" | undefined;
|
|
295
|
-
boost?: Record<string, number> | undefined;
|
|
296
|
-
minScore?: number | undefined;
|
|
297
|
-
language?: string | undefined;
|
|
298
|
-
highlight?: boolean | undefined;
|
|
299
|
-
}>>;
|
|
300
|
-
orderBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
301
|
-
field: z.ZodString;
|
|
302
|
-
order: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
|
|
303
|
-
}, "strip", z.ZodTypeAny, {
|
|
304
|
-
field: string;
|
|
305
|
-
order: "asc" | "desc";
|
|
306
|
-
}, {
|
|
307
|
-
field: string;
|
|
308
|
-
order?: "asc" | "desc" | undefined;
|
|
309
|
-
}>, "many">>;
|
|
310
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
311
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
312
|
-
cursor: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
313
|
-
joins: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
314
|
-
aggregations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
315
|
-
function: z.ZodEnum<["count", "sum", "avg", "min", "max", "count_distinct", "array_agg", "string_agg"]>;
|
|
316
|
-
field: z.ZodOptional<z.ZodString>;
|
|
317
|
-
alias: z.ZodString;
|
|
318
|
-
distinct: z.ZodOptional<z.ZodBoolean>;
|
|
319
|
-
filter: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
320
|
-
}, "strip", z.ZodTypeAny, {
|
|
321
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
322
|
-
alias: string;
|
|
323
|
-
filter?: FilterCondition | undefined;
|
|
324
|
-
field?: string | undefined;
|
|
325
|
-
distinct?: boolean | undefined;
|
|
326
|
-
}, {
|
|
327
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
328
|
-
alias: string;
|
|
329
|
-
filter?: FilterCondition | undefined;
|
|
330
|
-
field?: string | undefined;
|
|
331
|
-
distinct?: boolean | undefined;
|
|
332
|
-
}>, "many">>;
|
|
333
|
-
groupBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
334
|
-
having: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
335
|
-
windowFunctions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
336
|
-
function: z.ZodEnum<["row_number", "rank", "dense_rank", "percent_rank", "lag", "lead", "first_value", "last_value", "sum", "avg", "count", "min", "max"]>;
|
|
337
|
-
field: z.ZodOptional<z.ZodString>;
|
|
338
|
-
alias: z.ZodString;
|
|
339
|
-
over: z.ZodObject<{
|
|
340
|
-
partitionBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
341
|
-
orderBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
342
|
-
field: z.ZodString;
|
|
343
|
-
order: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
|
|
344
|
-
}, "strip", z.ZodTypeAny, {
|
|
345
|
-
field: string;
|
|
346
|
-
order: "asc" | "desc";
|
|
347
|
-
}, {
|
|
348
|
-
field: string;
|
|
349
|
-
order?: "asc" | "desc" | undefined;
|
|
350
|
-
}>, "many">>;
|
|
351
|
-
frame: z.ZodOptional<z.ZodObject<{
|
|
352
|
-
type: z.ZodOptional<z.ZodEnum<["rows", "range"]>>;
|
|
353
|
-
start: z.ZodOptional<z.ZodString>;
|
|
354
|
-
end: z.ZodOptional<z.ZodString>;
|
|
355
|
-
}, "strip", z.ZodTypeAny, {
|
|
356
|
-
type?: "rows" | "range" | undefined;
|
|
357
|
-
start?: string | undefined;
|
|
358
|
-
end?: string | undefined;
|
|
359
|
-
}, {
|
|
360
|
-
type?: "rows" | "range" | undefined;
|
|
361
|
-
start?: string | undefined;
|
|
362
|
-
end?: string | undefined;
|
|
363
|
-
}>>;
|
|
364
|
-
}, "strip", z.ZodTypeAny, {
|
|
365
|
-
orderBy?: {
|
|
366
|
-
field: string;
|
|
367
|
-
order: "asc" | "desc";
|
|
368
|
-
}[] | undefined;
|
|
369
|
-
partitionBy?: string[] | undefined;
|
|
370
|
-
frame?: {
|
|
371
|
-
type?: "rows" | "range" | undefined;
|
|
372
|
-
start?: string | undefined;
|
|
373
|
-
end?: string | undefined;
|
|
374
|
-
} | undefined;
|
|
375
|
-
}, {
|
|
376
|
-
orderBy?: {
|
|
377
|
-
field: string;
|
|
378
|
-
order?: "asc" | "desc" | undefined;
|
|
379
|
-
}[] | undefined;
|
|
380
|
-
partitionBy?: string[] | undefined;
|
|
381
|
-
frame?: {
|
|
382
|
-
type?: "rows" | "range" | undefined;
|
|
383
|
-
start?: string | undefined;
|
|
384
|
-
end?: string | undefined;
|
|
385
|
-
} | undefined;
|
|
386
|
-
}>;
|
|
387
|
-
}, "strip", z.ZodTypeAny, {
|
|
388
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
389
|
-
alias: string;
|
|
390
|
-
over: {
|
|
391
|
-
orderBy?: {
|
|
392
|
-
field: string;
|
|
393
|
-
order: "asc" | "desc";
|
|
394
|
-
}[] | undefined;
|
|
395
|
-
partitionBy?: string[] | undefined;
|
|
396
|
-
frame?: {
|
|
397
|
-
type?: "rows" | "range" | undefined;
|
|
398
|
-
start?: string | undefined;
|
|
399
|
-
end?: string | undefined;
|
|
400
|
-
} | undefined;
|
|
401
|
-
};
|
|
402
|
-
field?: string | undefined;
|
|
403
|
-
}, {
|
|
404
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
405
|
-
alias: string;
|
|
406
|
-
over: {
|
|
407
|
-
orderBy?: {
|
|
408
|
-
field: string;
|
|
409
|
-
order?: "asc" | "desc" | undefined;
|
|
410
|
-
}[] | undefined;
|
|
411
|
-
partitionBy?: string[] | undefined;
|
|
412
|
-
frame?: {
|
|
413
|
-
type?: "rows" | "range" | undefined;
|
|
414
|
-
start?: string | undefined;
|
|
415
|
-
end?: string | undefined;
|
|
416
|
-
} | undefined;
|
|
417
|
-
};
|
|
418
|
-
field?: string | undefined;
|
|
419
|
-
}>, "many">>;
|
|
420
|
-
distinct: z.ZodOptional<z.ZodBoolean>;
|
|
421
|
-
} & {
|
|
267
|
+
declare const ExportRequestSchema: z.ZodIntersection<z.ZodType<QueryAST, z.ZodTypeDef, QueryInput>, z.ZodObject<{
|
|
422
268
|
format: z.ZodDefault<z.ZodEnum<["csv", "json", "xlsx"]>>;
|
|
423
269
|
}, "strip", z.ZodTypeAny, {
|
|
424
|
-
object: string;
|
|
425
270
|
format: "json" | "csv" | "xlsx";
|
|
426
|
-
where?: FilterCondition | undefined;
|
|
427
|
-
distinct?: boolean | undefined;
|
|
428
|
-
fields?: any[] | undefined;
|
|
429
|
-
search?: {
|
|
430
|
-
query: string;
|
|
431
|
-
fuzzy: boolean;
|
|
432
|
-
operator: "and" | "or";
|
|
433
|
-
highlight: boolean;
|
|
434
|
-
fields?: string[] | undefined;
|
|
435
|
-
boost?: Record<string, number> | undefined;
|
|
436
|
-
minScore?: number | undefined;
|
|
437
|
-
language?: string | undefined;
|
|
438
|
-
} | undefined;
|
|
439
|
-
orderBy?: {
|
|
440
|
-
field: string;
|
|
441
|
-
order: "asc" | "desc";
|
|
442
|
-
}[] | undefined;
|
|
443
|
-
limit?: number | undefined;
|
|
444
|
-
offset?: number | undefined;
|
|
445
|
-
cursor?: Record<string, any> | undefined;
|
|
446
|
-
joins?: any[] | undefined;
|
|
447
|
-
aggregations?: {
|
|
448
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
449
|
-
alias: string;
|
|
450
|
-
filter?: FilterCondition | undefined;
|
|
451
|
-
field?: string | undefined;
|
|
452
|
-
distinct?: boolean | undefined;
|
|
453
|
-
}[] | undefined;
|
|
454
|
-
groupBy?: string[] | undefined;
|
|
455
|
-
having?: FilterCondition | undefined;
|
|
456
|
-
windowFunctions?: {
|
|
457
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
458
|
-
alias: string;
|
|
459
|
-
over: {
|
|
460
|
-
orderBy?: {
|
|
461
|
-
field: string;
|
|
462
|
-
order: "asc" | "desc";
|
|
463
|
-
}[] | undefined;
|
|
464
|
-
partitionBy?: string[] | undefined;
|
|
465
|
-
frame?: {
|
|
466
|
-
type?: "rows" | "range" | undefined;
|
|
467
|
-
start?: string | undefined;
|
|
468
|
-
end?: string | undefined;
|
|
469
|
-
} | undefined;
|
|
470
|
-
};
|
|
471
|
-
field?: string | undefined;
|
|
472
|
-
}[] | undefined;
|
|
473
271
|
}, {
|
|
474
|
-
object: string;
|
|
475
|
-
where?: FilterCondition | undefined;
|
|
476
|
-
distinct?: boolean | undefined;
|
|
477
|
-
fields?: any[] | undefined;
|
|
478
|
-
search?: {
|
|
479
|
-
query: string;
|
|
480
|
-
fields?: string[] | undefined;
|
|
481
|
-
fuzzy?: boolean | undefined;
|
|
482
|
-
operator?: "and" | "or" | undefined;
|
|
483
|
-
boost?: Record<string, number> | undefined;
|
|
484
|
-
minScore?: number | undefined;
|
|
485
|
-
language?: string | undefined;
|
|
486
|
-
highlight?: boolean | undefined;
|
|
487
|
-
} | undefined;
|
|
488
|
-
orderBy?: {
|
|
489
|
-
field: string;
|
|
490
|
-
order?: "asc" | "desc" | undefined;
|
|
491
|
-
}[] | undefined;
|
|
492
|
-
limit?: number | undefined;
|
|
493
|
-
offset?: number | undefined;
|
|
494
|
-
cursor?: Record<string, any> | undefined;
|
|
495
|
-
joins?: any[] | undefined;
|
|
496
|
-
aggregations?: {
|
|
497
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
498
|
-
alias: string;
|
|
499
|
-
filter?: FilterCondition | undefined;
|
|
500
|
-
field?: string | undefined;
|
|
501
|
-
distinct?: boolean | undefined;
|
|
502
|
-
}[] | undefined;
|
|
503
|
-
groupBy?: string[] | undefined;
|
|
504
|
-
having?: FilterCondition | undefined;
|
|
505
|
-
windowFunctions?: {
|
|
506
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
507
|
-
alias: string;
|
|
508
|
-
over: {
|
|
509
|
-
orderBy?: {
|
|
510
|
-
field: string;
|
|
511
|
-
order?: "asc" | "desc" | undefined;
|
|
512
|
-
}[] | undefined;
|
|
513
|
-
partitionBy?: string[] | undefined;
|
|
514
|
-
frame?: {
|
|
515
|
-
type?: "rows" | "range" | undefined;
|
|
516
|
-
start?: string | undefined;
|
|
517
|
-
end?: string | undefined;
|
|
518
|
-
} | undefined;
|
|
519
|
-
};
|
|
520
|
-
field?: string | undefined;
|
|
521
|
-
}[] | undefined;
|
|
522
272
|
format?: "json" | "csv" | "xlsx" | undefined;
|
|
523
|
-
}
|
|
273
|
+
}>>;
|
|
524
274
|
/**
|
|
525
275
|
* Single Record Response (Get/Create/Update)
|
|
526
276
|
*/
|
|
@@ -1323,379 +1073,128 @@ declare const StandardApiContracts: {
|
|
|
1323
1073
|
}>;
|
|
1324
1074
|
};
|
|
1325
1075
|
list: {
|
|
1326
|
-
input: z.
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
boost: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1336
|
-
minScore: z.ZodOptional<z.ZodNumber>;
|
|
1337
|
-
language: z.ZodOptional<z.ZodString>;
|
|
1338
|
-
highlight: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1076
|
+
input: z.ZodType<QueryAST, z.ZodTypeDef, QueryInput>;
|
|
1077
|
+
output: z.ZodObject<{
|
|
1078
|
+
success: z.ZodBoolean;
|
|
1079
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
1080
|
+
code: z.ZodString;
|
|
1081
|
+
message: z.ZodString;
|
|
1082
|
+
category: z.ZodOptional<z.ZodString>;
|
|
1083
|
+
details: z.ZodOptional<z.ZodAny>;
|
|
1084
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1339
1085
|
}, "strip", z.ZodTypeAny, {
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
boost?: Record<string, number> | undefined;
|
|
1346
|
-
minScore?: number | undefined;
|
|
1347
|
-
language?: string | undefined;
|
|
1086
|
+
message: string;
|
|
1087
|
+
code: string;
|
|
1088
|
+
category?: string | undefined;
|
|
1089
|
+
requestId?: string | undefined;
|
|
1090
|
+
details?: any;
|
|
1348
1091
|
}, {
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
minScore?: number | undefined;
|
|
1355
|
-
language?: string | undefined;
|
|
1356
|
-
highlight?: boolean | undefined;
|
|
1092
|
+
message: string;
|
|
1093
|
+
code: string;
|
|
1094
|
+
category?: string | undefined;
|
|
1095
|
+
requestId?: string | undefined;
|
|
1096
|
+
details?: any;
|
|
1357
1097
|
}>>;
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
order: "asc" | "desc";
|
|
1364
|
-
}, {
|
|
1365
|
-
field: string;
|
|
1366
|
-
order?: "asc" | "desc" | undefined;
|
|
1367
|
-
}>, "many">>;
|
|
1368
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
1369
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
1370
|
-
cursor: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1371
|
-
joins: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
1372
|
-
aggregations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1373
|
-
function: z.ZodEnum<["count", "sum", "avg", "min", "max", "count_distinct", "array_agg", "string_agg"]>;
|
|
1374
|
-
field: z.ZodOptional<z.ZodString>;
|
|
1375
|
-
alias: z.ZodString;
|
|
1376
|
-
distinct: z.ZodOptional<z.ZodBoolean>;
|
|
1377
|
-
filter: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
1098
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
1099
|
+
timestamp: z.ZodString;
|
|
1100
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
1101
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1102
|
+
traceId: z.ZodOptional<z.ZodString>;
|
|
1378
1103
|
}, "strip", z.ZodTypeAny, {
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
distinct?: boolean | undefined;
|
|
1104
|
+
timestamp: string;
|
|
1105
|
+
duration?: number | undefined;
|
|
1106
|
+
requestId?: string | undefined;
|
|
1107
|
+
traceId?: string | undefined;
|
|
1384
1108
|
}, {
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
orderBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1400
|
-
field: z.ZodString;
|
|
1401
|
-
order: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
|
|
1402
|
-
}, "strip", z.ZodTypeAny, {
|
|
1403
|
-
field: string;
|
|
1404
|
-
order: "asc" | "desc";
|
|
1405
|
-
}, {
|
|
1406
|
-
field: string;
|
|
1407
|
-
order?: "asc" | "desc" | undefined;
|
|
1408
|
-
}>, "many">>;
|
|
1409
|
-
frame: z.ZodOptional<z.ZodObject<{
|
|
1410
|
-
type: z.ZodOptional<z.ZodEnum<["rows", "range"]>>;
|
|
1411
|
-
start: z.ZodOptional<z.ZodString>;
|
|
1412
|
-
end: z.ZodOptional<z.ZodString>;
|
|
1413
|
-
}, "strip", z.ZodTypeAny, {
|
|
1414
|
-
type?: "rows" | "range" | undefined;
|
|
1415
|
-
start?: string | undefined;
|
|
1416
|
-
end?: string | undefined;
|
|
1417
|
-
}, {
|
|
1418
|
-
type?: "rows" | "range" | undefined;
|
|
1419
|
-
start?: string | undefined;
|
|
1420
|
-
end?: string | undefined;
|
|
1421
|
-
}>>;
|
|
1422
|
-
}, "strip", z.ZodTypeAny, {
|
|
1423
|
-
orderBy?: {
|
|
1424
|
-
field: string;
|
|
1425
|
-
order: "asc" | "desc";
|
|
1426
|
-
}[] | undefined;
|
|
1427
|
-
partitionBy?: string[] | undefined;
|
|
1428
|
-
frame?: {
|
|
1429
|
-
type?: "rows" | "range" | undefined;
|
|
1430
|
-
start?: string | undefined;
|
|
1431
|
-
end?: string | undefined;
|
|
1432
|
-
} | undefined;
|
|
1433
|
-
}, {
|
|
1434
|
-
orderBy?: {
|
|
1435
|
-
field: string;
|
|
1436
|
-
order?: "asc" | "desc" | undefined;
|
|
1437
|
-
}[] | undefined;
|
|
1438
|
-
partitionBy?: string[] | undefined;
|
|
1439
|
-
frame?: {
|
|
1440
|
-
type?: "rows" | "range" | undefined;
|
|
1441
|
-
start?: string | undefined;
|
|
1442
|
-
end?: string | undefined;
|
|
1443
|
-
} | undefined;
|
|
1444
|
-
}>;
|
|
1109
|
+
timestamp: string;
|
|
1110
|
+
duration?: number | undefined;
|
|
1111
|
+
requestId?: string | undefined;
|
|
1112
|
+
traceId?: string | undefined;
|
|
1113
|
+
}>>;
|
|
1114
|
+
} & {
|
|
1115
|
+
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">;
|
|
1116
|
+
pagination: z.ZodObject<{
|
|
1117
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
1118
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
1119
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
1120
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1121
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
1122
|
+
hasMore: z.ZodBoolean;
|
|
1445
1123
|
}, "strip", z.ZodTypeAny, {
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
}[] | undefined;
|
|
1453
|
-
partitionBy?: string[] | undefined;
|
|
1454
|
-
frame?: {
|
|
1455
|
-
type?: "rows" | "range" | undefined;
|
|
1456
|
-
start?: string | undefined;
|
|
1457
|
-
end?: string | undefined;
|
|
1458
|
-
} | undefined;
|
|
1459
|
-
};
|
|
1460
|
-
field?: string | undefined;
|
|
1124
|
+
hasMore: boolean;
|
|
1125
|
+
limit?: number | undefined;
|
|
1126
|
+
offset?: number | undefined;
|
|
1127
|
+
cursor?: string | undefined;
|
|
1128
|
+
total?: number | undefined;
|
|
1129
|
+
nextCursor?: string | undefined;
|
|
1461
1130
|
}, {
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
partitionBy?: string[] | undefined;
|
|
1470
|
-
frame?: {
|
|
1471
|
-
type?: "rows" | "range" | undefined;
|
|
1472
|
-
start?: string | undefined;
|
|
1473
|
-
end?: string | undefined;
|
|
1474
|
-
} | undefined;
|
|
1475
|
-
};
|
|
1476
|
-
field?: string | undefined;
|
|
1477
|
-
}>, "many">>;
|
|
1478
|
-
distinct: z.ZodOptional<z.ZodBoolean>;
|
|
1131
|
+
hasMore: boolean;
|
|
1132
|
+
limit?: number | undefined;
|
|
1133
|
+
offset?: number | undefined;
|
|
1134
|
+
cursor?: string | undefined;
|
|
1135
|
+
total?: number | undefined;
|
|
1136
|
+
nextCursor?: string | undefined;
|
|
1137
|
+
}>;
|
|
1479
1138
|
}, "strip", z.ZodTypeAny, {
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1139
|
+
data: Record<string, any>[];
|
|
1140
|
+
pagination: {
|
|
1141
|
+
hasMore: boolean;
|
|
1142
|
+
limit?: number | undefined;
|
|
1143
|
+
offset?: number | undefined;
|
|
1144
|
+
cursor?: string | undefined;
|
|
1145
|
+
total?: number | undefined;
|
|
1146
|
+
nextCursor?: string | undefined;
|
|
1147
|
+
};
|
|
1148
|
+
success: boolean;
|
|
1149
|
+
error?: {
|
|
1150
|
+
message: string;
|
|
1151
|
+
code: string;
|
|
1152
|
+
category?: string | undefined;
|
|
1153
|
+
requestId?: string | undefined;
|
|
1154
|
+
details?: any;
|
|
1155
|
+
} | undefined;
|
|
1156
|
+
meta?: {
|
|
1157
|
+
timestamp: string;
|
|
1158
|
+
duration?: number | undefined;
|
|
1159
|
+
requestId?: string | undefined;
|
|
1160
|
+
traceId?: string | undefined;
|
|
1493
1161
|
} | undefined;
|
|
1494
|
-
orderBy?: {
|
|
1495
|
-
field: string;
|
|
1496
|
-
order: "asc" | "desc";
|
|
1497
|
-
}[] | undefined;
|
|
1498
|
-
limit?: number | undefined;
|
|
1499
|
-
offset?: number | undefined;
|
|
1500
|
-
cursor?: Record<string, any> | undefined;
|
|
1501
|
-
joins?: any[] | undefined;
|
|
1502
|
-
aggregations?: {
|
|
1503
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
1504
|
-
alias: string;
|
|
1505
|
-
filter?: FilterCondition | undefined;
|
|
1506
|
-
field?: string | undefined;
|
|
1507
|
-
distinct?: boolean | undefined;
|
|
1508
|
-
}[] | undefined;
|
|
1509
|
-
groupBy?: string[] | undefined;
|
|
1510
|
-
having?: FilterCondition | undefined;
|
|
1511
|
-
windowFunctions?: {
|
|
1512
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
1513
|
-
alias: string;
|
|
1514
|
-
over: {
|
|
1515
|
-
orderBy?: {
|
|
1516
|
-
field: string;
|
|
1517
|
-
order: "asc" | "desc";
|
|
1518
|
-
}[] | undefined;
|
|
1519
|
-
partitionBy?: string[] | undefined;
|
|
1520
|
-
frame?: {
|
|
1521
|
-
type?: "rows" | "range" | undefined;
|
|
1522
|
-
start?: string | undefined;
|
|
1523
|
-
end?: string | undefined;
|
|
1524
|
-
} | undefined;
|
|
1525
|
-
};
|
|
1526
|
-
field?: string | undefined;
|
|
1527
|
-
}[] | undefined;
|
|
1528
1162
|
}, {
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1163
|
+
data: Record<string, any>[];
|
|
1164
|
+
pagination: {
|
|
1165
|
+
hasMore: boolean;
|
|
1166
|
+
limit?: number | undefined;
|
|
1167
|
+
offset?: number | undefined;
|
|
1168
|
+
cursor?: string | undefined;
|
|
1169
|
+
total?: number | undefined;
|
|
1170
|
+
nextCursor?: string | undefined;
|
|
1171
|
+
};
|
|
1172
|
+
success: boolean;
|
|
1173
|
+
error?: {
|
|
1174
|
+
message: string;
|
|
1175
|
+
code: string;
|
|
1176
|
+
category?: string | undefined;
|
|
1177
|
+
requestId?: string | undefined;
|
|
1178
|
+
details?: any;
|
|
1542
1179
|
} | undefined;
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
1562
|
-
alias: string;
|
|
1563
|
-
over: {
|
|
1564
|
-
orderBy?: {
|
|
1565
|
-
field: string;
|
|
1566
|
-
order?: "asc" | "desc" | undefined;
|
|
1567
|
-
}[] | undefined;
|
|
1568
|
-
partitionBy?: string[] | undefined;
|
|
1569
|
-
frame?: {
|
|
1570
|
-
type?: "rows" | "range" | undefined;
|
|
1571
|
-
start?: string | undefined;
|
|
1572
|
-
end?: string | undefined;
|
|
1573
|
-
} | undefined;
|
|
1574
|
-
};
|
|
1575
|
-
field?: string | undefined;
|
|
1576
|
-
}[] | undefined;
|
|
1577
|
-
}>;
|
|
1578
|
-
output: z.ZodObject<{
|
|
1579
|
-
success: z.ZodBoolean;
|
|
1580
|
-
error: z.ZodOptional<z.ZodObject<{
|
|
1581
|
-
code: z.ZodString;
|
|
1582
|
-
message: z.ZodString;
|
|
1583
|
-
category: z.ZodOptional<z.ZodString>;
|
|
1584
|
-
details: z.ZodOptional<z.ZodAny>;
|
|
1585
|
-
requestId: z.ZodOptional<z.ZodString>;
|
|
1586
|
-
}, "strip", z.ZodTypeAny, {
|
|
1587
|
-
message: string;
|
|
1588
|
-
code: string;
|
|
1589
|
-
category?: string | undefined;
|
|
1590
|
-
requestId?: string | undefined;
|
|
1591
|
-
details?: any;
|
|
1592
|
-
}, {
|
|
1593
|
-
message: string;
|
|
1594
|
-
code: string;
|
|
1595
|
-
category?: string | undefined;
|
|
1596
|
-
requestId?: string | undefined;
|
|
1597
|
-
details?: any;
|
|
1598
|
-
}>>;
|
|
1599
|
-
meta: z.ZodOptional<z.ZodObject<{
|
|
1600
|
-
timestamp: z.ZodString;
|
|
1601
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
1602
|
-
requestId: z.ZodOptional<z.ZodString>;
|
|
1603
|
-
traceId: z.ZodOptional<z.ZodString>;
|
|
1604
|
-
}, "strip", z.ZodTypeAny, {
|
|
1605
|
-
timestamp: string;
|
|
1606
|
-
duration?: number | undefined;
|
|
1607
|
-
requestId?: string | undefined;
|
|
1608
|
-
traceId?: string | undefined;
|
|
1609
|
-
}, {
|
|
1610
|
-
timestamp: string;
|
|
1611
|
-
duration?: number | undefined;
|
|
1612
|
-
requestId?: string | undefined;
|
|
1613
|
-
traceId?: string | undefined;
|
|
1614
|
-
}>>;
|
|
1615
|
-
} & {
|
|
1616
|
-
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">;
|
|
1617
|
-
pagination: z.ZodObject<{
|
|
1618
|
-
total: z.ZodOptional<z.ZodNumber>;
|
|
1619
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
1620
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
1621
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
1622
|
-
nextCursor: z.ZodOptional<z.ZodString>;
|
|
1623
|
-
hasMore: z.ZodBoolean;
|
|
1624
|
-
}, "strip", z.ZodTypeAny, {
|
|
1625
|
-
hasMore: boolean;
|
|
1626
|
-
limit?: number | undefined;
|
|
1627
|
-
offset?: number | undefined;
|
|
1628
|
-
cursor?: string | undefined;
|
|
1629
|
-
total?: number | undefined;
|
|
1630
|
-
nextCursor?: string | undefined;
|
|
1631
|
-
}, {
|
|
1632
|
-
hasMore: boolean;
|
|
1633
|
-
limit?: number | undefined;
|
|
1634
|
-
offset?: number | undefined;
|
|
1635
|
-
cursor?: string | undefined;
|
|
1636
|
-
total?: number | undefined;
|
|
1637
|
-
nextCursor?: string | undefined;
|
|
1638
|
-
}>;
|
|
1639
|
-
}, "strip", z.ZodTypeAny, {
|
|
1640
|
-
data: Record<string, any>[];
|
|
1641
|
-
pagination: {
|
|
1642
|
-
hasMore: boolean;
|
|
1643
|
-
limit?: number | undefined;
|
|
1644
|
-
offset?: number | undefined;
|
|
1645
|
-
cursor?: string | undefined;
|
|
1646
|
-
total?: number | undefined;
|
|
1647
|
-
nextCursor?: string | undefined;
|
|
1648
|
-
};
|
|
1649
|
-
success: boolean;
|
|
1650
|
-
error?: {
|
|
1651
|
-
message: string;
|
|
1652
|
-
code: string;
|
|
1653
|
-
category?: string | undefined;
|
|
1654
|
-
requestId?: string | undefined;
|
|
1655
|
-
details?: any;
|
|
1656
|
-
} | undefined;
|
|
1657
|
-
meta?: {
|
|
1658
|
-
timestamp: string;
|
|
1659
|
-
duration?: number | undefined;
|
|
1660
|
-
requestId?: string | undefined;
|
|
1661
|
-
traceId?: string | undefined;
|
|
1662
|
-
} | undefined;
|
|
1663
|
-
}, {
|
|
1664
|
-
data: Record<string, any>[];
|
|
1665
|
-
pagination: {
|
|
1666
|
-
hasMore: boolean;
|
|
1667
|
-
limit?: number | undefined;
|
|
1668
|
-
offset?: number | undefined;
|
|
1669
|
-
cursor?: string | undefined;
|
|
1670
|
-
total?: number | undefined;
|
|
1671
|
-
nextCursor?: string | undefined;
|
|
1672
|
-
};
|
|
1673
|
-
success: boolean;
|
|
1674
|
-
error?: {
|
|
1675
|
-
message: string;
|
|
1676
|
-
code: string;
|
|
1677
|
-
category?: string | undefined;
|
|
1678
|
-
requestId?: string | undefined;
|
|
1679
|
-
details?: any;
|
|
1680
|
-
} | undefined;
|
|
1681
|
-
meta?: {
|
|
1682
|
-
timestamp: string;
|
|
1683
|
-
duration?: number | undefined;
|
|
1684
|
-
requestId?: string | undefined;
|
|
1685
|
-
traceId?: string | undefined;
|
|
1686
|
-
} | undefined;
|
|
1687
|
-
}>;
|
|
1688
|
-
};
|
|
1689
|
-
bulkCreate: {
|
|
1690
|
-
input: z.ZodObject<{
|
|
1691
|
-
records: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">;
|
|
1692
|
-
allOrNone: z.ZodDefault<z.ZodBoolean>;
|
|
1693
|
-
}, "strip", z.ZodTypeAny, {
|
|
1694
|
-
records: Record<string, any>[];
|
|
1695
|
-
allOrNone: boolean;
|
|
1696
|
-
}, {
|
|
1697
|
-
records: Record<string, any>[];
|
|
1698
|
-
allOrNone?: boolean | undefined;
|
|
1180
|
+
meta?: {
|
|
1181
|
+
timestamp: string;
|
|
1182
|
+
duration?: number | undefined;
|
|
1183
|
+
requestId?: string | undefined;
|
|
1184
|
+
traceId?: string | undefined;
|
|
1185
|
+
} | undefined;
|
|
1186
|
+
}>;
|
|
1187
|
+
};
|
|
1188
|
+
bulkCreate: {
|
|
1189
|
+
input: z.ZodObject<{
|
|
1190
|
+
records: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">;
|
|
1191
|
+
allOrNone: z.ZodDefault<z.ZodBoolean>;
|
|
1192
|
+
}, "strip", z.ZodTypeAny, {
|
|
1193
|
+
records: Record<string, any>[];
|
|
1194
|
+
allOrNone: boolean;
|
|
1195
|
+
}, {
|
|
1196
|
+
records: Record<string, any>[];
|
|
1197
|
+
allOrNone?: boolean | undefined;
|
|
1699
1198
|
}>;
|
|
1700
1199
|
output: z.ZodObject<{
|
|
1701
1200
|
success: z.ZodBoolean;
|
|
@@ -14886,6 +14385,7 @@ declare const UpdateSpaceRequestSchema: z.ZodObject<{
|
|
|
14886
14385
|
}>>>>;
|
|
14887
14386
|
}, "strip", z.ZodTypeAny, {
|
|
14888
14387
|
name?: string | undefined;
|
|
14388
|
+
slug?: string | undefined;
|
|
14889
14389
|
runtime?: {
|
|
14890
14390
|
isolation: "shared_schema" | "isolated_schema" | "isolated_db";
|
|
14891
14391
|
quotas?: {
|
|
@@ -14894,7 +14394,6 @@ declare const UpdateSpaceRequestSchema: z.ZodObject<{
|
|
|
14894
14394
|
apiRateLimit?: number | undefined;
|
|
14895
14395
|
} | undefined;
|
|
14896
14396
|
} | undefined;
|
|
14897
|
-
slug?: string | undefined;
|
|
14898
14397
|
bom?: {
|
|
14899
14398
|
dependencies: {
|
|
14900
14399
|
version: string;
|
|
@@ -14928,6 +14427,7 @@ declare const UpdateSpaceRequestSchema: z.ZodObject<{
|
|
|
14928
14427
|
} | undefined;
|
|
14929
14428
|
}, {
|
|
14930
14429
|
name?: string | undefined;
|
|
14430
|
+
slug?: string | undefined;
|
|
14931
14431
|
runtime?: {
|
|
14932
14432
|
isolation: "shared_schema" | "isolated_schema" | "isolated_db";
|
|
14933
14433
|
quotas?: {
|
|
@@ -14936,7 +14436,6 @@ declare const UpdateSpaceRequestSchema: z.ZodObject<{
|
|
|
14936
14436
|
apiRateLimit?: number | undefined;
|
|
14937
14437
|
} | undefined;
|
|
14938
14438
|
} | undefined;
|
|
14939
|
-
slug?: string | undefined;
|
|
14940
14439
|
bom?: {
|
|
14941
14440
|
dependencies: {
|
|
14942
14441
|
id: string;
|
|
@@ -17334,7 +16833,7 @@ declare const PublishPluginRequestSchema: z.ZodObject<Omit<{
|
|
|
17334
16833
|
extensionPointId: string;
|
|
17335
16834
|
}[] | undefined;
|
|
17336
16835
|
} | undefined;
|
|
17337
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
16836
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
17338
16837
|
license?: string | undefined;
|
|
17339
16838
|
media?: {
|
|
17340
16839
|
video?: string | undefined;
|
|
@@ -17464,7 +16963,7 @@ declare const PublishPluginRequestSchema: z.ZodObject<Omit<{
|
|
|
17464
16963
|
priority?: number | undefined;
|
|
17465
16964
|
}[] | undefined;
|
|
17466
16965
|
} | undefined;
|
|
17467
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
16966
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
17468
16967
|
license?: string | undefined;
|
|
17469
16968
|
media?: {
|
|
17470
16969
|
video?: string | undefined;
|
|
@@ -18188,7 +17687,7 @@ declare const UpdatePluginRequestSchema: z.ZodObject<{
|
|
|
18188
17687
|
extensionPointId: string;
|
|
18189
17688
|
}[] | undefined;
|
|
18190
17689
|
} | undefined;
|
|
18191
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
17690
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
18192
17691
|
license?: string | undefined;
|
|
18193
17692
|
media?: {
|
|
18194
17693
|
video?: string | undefined;
|
|
@@ -18319,7 +17818,7 @@ declare const UpdatePluginRequestSchema: z.ZodObject<{
|
|
|
18319
17818
|
priority?: number | undefined;
|
|
18320
17819
|
}[] | undefined;
|
|
18321
17820
|
} | undefined;
|
|
18322
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
17821
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
18323
17822
|
license?: string | undefined;
|
|
18324
17823
|
media?: {
|
|
18325
17824
|
video?: string | undefined;
|
|
@@ -19288,7 +18787,7 @@ declare const PluginResponseSchema: z.ZodObject<{
|
|
|
19288
18787
|
extensionPointId: string;
|
|
19289
18788
|
}[] | undefined;
|
|
19290
18789
|
} | undefined;
|
|
19291
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
18790
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
19292
18791
|
license?: string | undefined;
|
|
19293
18792
|
media?: {
|
|
19294
18793
|
video?: string | undefined;
|
|
@@ -19460,7 +18959,7 @@ declare const PluginResponseSchema: z.ZodObject<{
|
|
|
19460
18959
|
priority?: number | undefined;
|
|
19461
18960
|
}[] | undefined;
|
|
19462
18961
|
} | undefined;
|
|
19463
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
18962
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
19464
18963
|
license?: string | undefined;
|
|
19465
18964
|
media?: {
|
|
19466
18965
|
video?: string | undefined;
|
|
@@ -19636,7 +19135,7 @@ declare const PluginResponseSchema: z.ZodObject<{
|
|
|
19636
19135
|
extensionPointId: string;
|
|
19637
19136
|
}[] | undefined;
|
|
19638
19137
|
} | undefined;
|
|
19639
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
19138
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
19640
19139
|
license?: string | undefined;
|
|
19641
19140
|
media?: {
|
|
19642
19141
|
video?: string | undefined;
|
|
@@ -19824,7 +19323,7 @@ declare const PluginResponseSchema: z.ZodObject<{
|
|
|
19824
19323
|
priority?: number | undefined;
|
|
19825
19324
|
}[] | undefined;
|
|
19826
19325
|
} | undefined;
|
|
19827
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
19326
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
19828
19327
|
license?: string | undefined;
|
|
19829
19328
|
media?: {
|
|
19830
19329
|
video?: string | undefined;
|
|
@@ -20919,7 +20418,7 @@ declare const SearchPluginsResponseSchema: z.ZodObject<{
|
|
|
20919
20418
|
extensionPointId: string;
|
|
20920
20419
|
}[] | undefined;
|
|
20921
20420
|
} | undefined;
|
|
20922
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
20421
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
20923
20422
|
license?: string | undefined;
|
|
20924
20423
|
media?: {
|
|
20925
20424
|
video?: string | undefined;
|
|
@@ -21091,7 +20590,7 @@ declare const SearchPluginsResponseSchema: z.ZodObject<{
|
|
|
21091
20590
|
priority?: number | undefined;
|
|
21092
20591
|
}[] | undefined;
|
|
21093
20592
|
} | undefined;
|
|
21094
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
20593
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
21095
20594
|
license?: string | undefined;
|
|
21096
20595
|
media?: {
|
|
21097
20596
|
video?: string | undefined;
|
|
@@ -21307,7 +20806,7 @@ declare const SearchPluginsResponseSchema: z.ZodObject<{
|
|
|
21307
20806
|
extensionPointId: string;
|
|
21308
20807
|
}[] | undefined;
|
|
21309
20808
|
} | undefined;
|
|
21310
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
20809
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
21311
20810
|
license?: string | undefined;
|
|
21312
20811
|
media?: {
|
|
21313
20812
|
video?: string | undefined;
|
|
@@ -21503,7 +21002,7 @@ declare const SearchPluginsResponseSchema: z.ZodObject<{
|
|
|
21503
21002
|
priority?: number | undefined;
|
|
21504
21003
|
}[] | undefined;
|
|
21505
21004
|
} | undefined;
|
|
21506
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
21005
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
21507
21006
|
license?: string | undefined;
|
|
21508
21007
|
media?: {
|
|
21509
21008
|
video?: string | undefined;
|
|
@@ -21985,8 +21484,8 @@ declare const ListMarketplaceResponseSchema: z.ZodObject<{
|
|
|
21985
21484
|
changeLog?: string | undefined;
|
|
21986
21485
|
}> | undefined;
|
|
21987
21486
|
screenshots?: string[] | undefined;
|
|
21988
|
-
downloads?: number | undefined;
|
|
21989
21487
|
homepage?: string | undefined;
|
|
21488
|
+
downloads?: number | undefined;
|
|
21990
21489
|
readme?: string | undefined;
|
|
21991
21490
|
vendor?: {
|
|
21992
21491
|
name: string;
|
|
@@ -22027,9 +21526,9 @@ declare const ListMarketplaceResponseSchema: z.ZodObject<{
|
|
|
22027
21526
|
changeLog?: string | undefined;
|
|
22028
21527
|
}> | undefined;
|
|
22029
21528
|
screenshots?: string[] | undefined;
|
|
21529
|
+
homepage?: string | undefined;
|
|
22030
21530
|
verified?: boolean | undefined;
|
|
22031
21531
|
downloads?: number | undefined;
|
|
22032
|
-
homepage?: string | undefined;
|
|
22033
21532
|
readme?: string | undefined;
|
|
22034
21533
|
vendor?: {
|
|
22035
21534
|
name: string;
|
|
@@ -22126,8 +21625,8 @@ declare const ListMarketplaceResponseSchema: z.ZodObject<{
|
|
|
22126
21625
|
changeLog?: string | undefined;
|
|
22127
21626
|
}> | undefined;
|
|
22128
21627
|
screenshots?: string[] | undefined;
|
|
22129
|
-
downloads?: number | undefined;
|
|
22130
21628
|
homepage?: string | undefined;
|
|
21629
|
+
downloads?: number | undefined;
|
|
22131
21630
|
readme?: string | undefined;
|
|
22132
21631
|
vendor?: {
|
|
22133
21632
|
name: string;
|
|
@@ -22197,9 +21696,9 @@ declare const ListMarketplaceResponseSchema: z.ZodObject<{
|
|
|
22197
21696
|
changeLog?: string | undefined;
|
|
22198
21697
|
}> | undefined;
|
|
22199
21698
|
screenshots?: string[] | undefined;
|
|
21699
|
+
homepage?: string | undefined;
|
|
22200
21700
|
verified?: boolean | undefined;
|
|
22201
21701
|
downloads?: number | undefined;
|
|
22202
|
-
homepage?: string | undefined;
|
|
22203
21702
|
readme?: string | undefined;
|
|
22204
21703
|
vendor?: {
|
|
22205
21704
|
name: string;
|
|
@@ -22418,8 +21917,8 @@ declare const MarketplacePluginResponseSchema: z.ZodObject<{
|
|
|
22418
21917
|
changeLog?: string | undefined;
|
|
22419
21918
|
}> | undefined;
|
|
22420
21919
|
screenshots?: string[] | undefined;
|
|
22421
|
-
downloads?: number | undefined;
|
|
22422
21920
|
homepage?: string | undefined;
|
|
21921
|
+
downloads?: number | undefined;
|
|
22423
21922
|
readme?: string | undefined;
|
|
22424
21923
|
vendor?: {
|
|
22425
21924
|
name: string;
|
|
@@ -22460,9 +21959,9 @@ declare const MarketplacePluginResponseSchema: z.ZodObject<{
|
|
|
22460
21959
|
changeLog?: string | undefined;
|
|
22461
21960
|
}> | undefined;
|
|
22462
21961
|
screenshots?: string[] | undefined;
|
|
21962
|
+
homepage?: string | undefined;
|
|
22463
21963
|
verified?: boolean | undefined;
|
|
22464
21964
|
downloads?: number | undefined;
|
|
22465
|
-
homepage?: string | undefined;
|
|
22466
21965
|
readme?: string | undefined;
|
|
22467
21966
|
vendor?: {
|
|
22468
21967
|
name: string;
|
|
@@ -22506,8 +22005,8 @@ declare const MarketplacePluginResponseSchema: z.ZodObject<{
|
|
|
22506
22005
|
changeLog?: string | undefined;
|
|
22507
22006
|
}> | undefined;
|
|
22508
22007
|
screenshots?: string[] | undefined;
|
|
22509
|
-
downloads?: number | undefined;
|
|
22510
22008
|
homepage?: string | undefined;
|
|
22009
|
+
downloads?: number | undefined;
|
|
22511
22010
|
readme?: string | undefined;
|
|
22512
22011
|
vendor?: {
|
|
22513
22012
|
name: string;
|
|
@@ -22564,9 +22063,9 @@ declare const MarketplacePluginResponseSchema: z.ZodObject<{
|
|
|
22564
22063
|
changeLog?: string | undefined;
|
|
22565
22064
|
}> | undefined;
|
|
22566
22065
|
screenshots?: string[] | undefined;
|
|
22066
|
+
homepage?: string | undefined;
|
|
22567
22067
|
verified?: boolean | undefined;
|
|
22568
22068
|
downloads?: number | undefined;
|
|
22569
|
-
homepage?: string | undefined;
|
|
22570
22069
|
readme?: string | undefined;
|
|
22571
22070
|
vendor?: {
|
|
22572
22071
|
name: string;
|
|
@@ -23354,7 +22853,7 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
23354
22853
|
manifest: z.ZodOptional<z.ZodObject<{
|
|
23355
22854
|
id: z.ZodString;
|
|
23356
22855
|
version: z.ZodString;
|
|
23357
|
-
type: z.ZodEnum<["
|
|
22856
|
+
type: z.ZodEnum<["plugin", "ui", "driver", "server", "app", "theme", "agent", "objectql", "module", "gateway", "adapter"]>;
|
|
23358
22857
|
name: z.ZodString;
|
|
23359
22858
|
description: z.ZodOptional<z.ZodString>;
|
|
23360
22859
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -23532,6 +23031,11 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
23532
23031
|
input?: any;
|
|
23533
23032
|
output?: any;
|
|
23534
23033
|
}[] | undefined;
|
|
23034
|
+
drivers?: {
|
|
23035
|
+
label: string;
|
|
23036
|
+
id: string;
|
|
23037
|
+
description?: string | undefined;
|
|
23038
|
+
}[] | undefined;
|
|
23535
23039
|
kinds?: {
|
|
23536
23040
|
id: string;
|
|
23537
23041
|
globs: string[];
|
|
@@ -23551,11 +23055,6 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
23551
23055
|
path: string;
|
|
23552
23056
|
locale: string;
|
|
23553
23057
|
}[] | undefined;
|
|
23554
|
-
drivers?: {
|
|
23555
|
-
label: string;
|
|
23556
|
-
id: string;
|
|
23557
|
-
description?: string | undefined;
|
|
23558
|
-
}[] | undefined;
|
|
23559
23058
|
functions?: {
|
|
23560
23059
|
name: string;
|
|
23561
23060
|
description?: string | undefined;
|
|
@@ -23576,6 +23075,11 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
23576
23075
|
input?: any;
|
|
23577
23076
|
output?: any;
|
|
23578
23077
|
}[] | undefined;
|
|
23078
|
+
drivers?: {
|
|
23079
|
+
label: string;
|
|
23080
|
+
id: string;
|
|
23081
|
+
description?: string | undefined;
|
|
23082
|
+
}[] | undefined;
|
|
23579
23083
|
kinds?: {
|
|
23580
23084
|
id: string;
|
|
23581
23085
|
globs: string[];
|
|
@@ -23595,11 +23099,6 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
23595
23099
|
path: string;
|
|
23596
23100
|
locale: string;
|
|
23597
23101
|
}[] | undefined;
|
|
23598
|
-
drivers?: {
|
|
23599
|
-
label: string;
|
|
23600
|
-
id: string;
|
|
23601
|
-
description?: string | undefined;
|
|
23602
|
-
}[] | undefined;
|
|
23603
23102
|
functions?: {
|
|
23604
23103
|
name: string;
|
|
23605
23104
|
description?: string | undefined;
|
|
@@ -24775,7 +24274,7 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
24775
24274
|
} | undefined;
|
|
24776
24275
|
}>>;
|
|
24777
24276
|
}, "strip", z.ZodTypeAny, {
|
|
24778
|
-
type: "driver" | "app" | "
|
|
24277
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
24779
24278
|
name: string;
|
|
24780
24279
|
version: string;
|
|
24781
24280
|
id: string;
|
|
@@ -25016,6 +24515,11 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25016
24515
|
input?: any;
|
|
25017
24516
|
output?: any;
|
|
25018
24517
|
}[] | undefined;
|
|
24518
|
+
drivers?: {
|
|
24519
|
+
label: string;
|
|
24520
|
+
id: string;
|
|
24521
|
+
description?: string | undefined;
|
|
24522
|
+
}[] | undefined;
|
|
25019
24523
|
kinds?: {
|
|
25020
24524
|
id: string;
|
|
25021
24525
|
globs: string[];
|
|
@@ -25035,11 +24539,6 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25035
24539
|
path: string;
|
|
25036
24540
|
locale: string;
|
|
25037
24541
|
}[] | undefined;
|
|
25038
|
-
drivers?: {
|
|
25039
|
-
label: string;
|
|
25040
|
-
id: string;
|
|
25041
|
-
description?: string | undefined;
|
|
25042
|
-
}[] | undefined;
|
|
25043
24542
|
functions?: {
|
|
25044
24543
|
name: string;
|
|
25045
24544
|
description?: string | undefined;
|
|
@@ -25048,7 +24547,7 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25048
24547
|
}[] | undefined;
|
|
25049
24548
|
} | undefined;
|
|
25050
24549
|
}, {
|
|
25051
|
-
type: "driver" | "app" | "
|
|
24550
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
25052
24551
|
name: string;
|
|
25053
24552
|
version: string;
|
|
25054
24553
|
id: string;
|
|
@@ -25289,6 +24788,11 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25289
24788
|
input?: any;
|
|
25290
24789
|
output?: any;
|
|
25291
24790
|
}[] | undefined;
|
|
24791
|
+
drivers?: {
|
|
24792
|
+
label: string;
|
|
24793
|
+
id: string;
|
|
24794
|
+
description?: string | undefined;
|
|
24795
|
+
}[] | undefined;
|
|
25292
24796
|
kinds?: {
|
|
25293
24797
|
id: string;
|
|
25294
24798
|
globs: string[];
|
|
@@ -25308,11 +24812,6 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25308
24812
|
path: string;
|
|
25309
24813
|
locale: string;
|
|
25310
24814
|
}[] | undefined;
|
|
25311
|
-
drivers?: {
|
|
25312
|
-
label: string;
|
|
25313
|
-
id: string;
|
|
25314
|
-
description?: string | undefined;
|
|
25315
|
-
}[] | undefined;
|
|
25316
24815
|
functions?: {
|
|
25317
24816
|
name: string;
|
|
25318
24817
|
description?: string | undefined;
|
|
@@ -25359,7 +24858,7 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25359
24858
|
sources: string[];
|
|
25360
24859
|
}[] | undefined;
|
|
25361
24860
|
manifest?: {
|
|
25362
|
-
type: "driver" | "app" | "
|
|
24861
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
25363
24862
|
name: string;
|
|
25364
24863
|
version: string;
|
|
25365
24864
|
id: string;
|
|
@@ -25600,6 +25099,11 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25600
25099
|
input?: any;
|
|
25601
25100
|
output?: any;
|
|
25602
25101
|
}[] | undefined;
|
|
25102
|
+
drivers?: {
|
|
25103
|
+
label: string;
|
|
25104
|
+
id: string;
|
|
25105
|
+
description?: string | undefined;
|
|
25106
|
+
}[] | undefined;
|
|
25603
25107
|
kinds?: {
|
|
25604
25108
|
id: string;
|
|
25605
25109
|
globs: string[];
|
|
@@ -25619,11 +25123,6 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25619
25123
|
path: string;
|
|
25620
25124
|
locale: string;
|
|
25621
25125
|
}[] | undefined;
|
|
25622
|
-
drivers?: {
|
|
25623
|
-
label: string;
|
|
25624
|
-
id: string;
|
|
25625
|
-
description?: string | undefined;
|
|
25626
|
-
}[] | undefined;
|
|
25627
25126
|
functions?: {
|
|
25628
25127
|
name: string;
|
|
25629
25128
|
description?: string | undefined;
|
|
@@ -25647,7 +25146,7 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25647
25146
|
sources: string[];
|
|
25648
25147
|
}[] | undefined;
|
|
25649
25148
|
manifest?: {
|
|
25650
|
-
type: "driver" | "app" | "
|
|
25149
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
25651
25150
|
name: string;
|
|
25652
25151
|
version: string;
|
|
25653
25152
|
id: string;
|
|
@@ -25888,6 +25387,11 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25888
25387
|
input?: any;
|
|
25889
25388
|
output?: any;
|
|
25890
25389
|
}[] | undefined;
|
|
25390
|
+
drivers?: {
|
|
25391
|
+
label: string;
|
|
25392
|
+
id: string;
|
|
25393
|
+
description?: string | undefined;
|
|
25394
|
+
}[] | undefined;
|
|
25891
25395
|
kinds?: {
|
|
25892
25396
|
id: string;
|
|
25893
25397
|
globs: string[];
|
|
@@ -25907,11 +25411,6 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25907
25411
|
path: string;
|
|
25908
25412
|
locale: string;
|
|
25909
25413
|
}[] | undefined;
|
|
25910
|
-
drivers?: {
|
|
25911
|
-
label: string;
|
|
25912
|
-
id: string;
|
|
25913
|
-
description?: string | undefined;
|
|
25914
|
-
}[] | undefined;
|
|
25915
25414
|
functions?: {
|
|
25916
25415
|
name: string;
|
|
25917
25416
|
description?: string | undefined;
|
|
@@ -25937,7 +25436,7 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
25937
25436
|
sources: string[];
|
|
25938
25437
|
}[] | undefined;
|
|
25939
25438
|
manifest?: {
|
|
25940
|
-
type: "driver" | "app" | "
|
|
25439
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
25941
25440
|
name: string;
|
|
25942
25441
|
version: string;
|
|
25943
25442
|
id: string;
|
|
@@ -26178,6 +25677,11 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
26178
25677
|
input?: any;
|
|
26179
25678
|
output?: any;
|
|
26180
25679
|
}[] | undefined;
|
|
25680
|
+
drivers?: {
|
|
25681
|
+
label: string;
|
|
25682
|
+
id: string;
|
|
25683
|
+
description?: string | undefined;
|
|
25684
|
+
}[] | undefined;
|
|
26181
25685
|
kinds?: {
|
|
26182
25686
|
id: string;
|
|
26183
25687
|
globs: string[];
|
|
@@ -26197,11 +25701,6 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
26197
25701
|
path: string;
|
|
26198
25702
|
locale: string;
|
|
26199
25703
|
}[] | undefined;
|
|
26200
|
-
drivers?: {
|
|
26201
|
-
label: string;
|
|
26202
|
-
id: string;
|
|
26203
|
-
description?: string | undefined;
|
|
26204
|
-
}[] | undefined;
|
|
26205
25704
|
functions?: {
|
|
26206
25705
|
name: string;
|
|
26207
25706
|
description?: string | undefined;
|
|
@@ -26241,7 +25740,7 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
26241
25740
|
sources: string[];
|
|
26242
25741
|
}[] | undefined;
|
|
26243
25742
|
manifest?: {
|
|
26244
|
-
type: "driver" | "app" | "
|
|
25743
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
26245
25744
|
name: string;
|
|
26246
25745
|
version: string;
|
|
26247
25746
|
id: string;
|
|
@@ -26482,6 +25981,11 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
26482
25981
|
input?: any;
|
|
26483
25982
|
output?: any;
|
|
26484
25983
|
}[] | undefined;
|
|
25984
|
+
drivers?: {
|
|
25985
|
+
label: string;
|
|
25986
|
+
id: string;
|
|
25987
|
+
description?: string | undefined;
|
|
25988
|
+
}[] | undefined;
|
|
26485
25989
|
kinds?: {
|
|
26486
25990
|
id: string;
|
|
26487
25991
|
globs: string[];
|
|
@@ -26501,11 +26005,6 @@ declare const CompileManifestResponseSchema: z.ZodObject<{
|
|
|
26501
26005
|
path: string;
|
|
26502
26006
|
locale: string;
|
|
26503
26007
|
}[] | undefined;
|
|
26504
|
-
drivers?: {
|
|
26505
|
-
label: string;
|
|
26506
|
-
id: string;
|
|
26507
|
-
description?: string | undefined;
|
|
26508
|
-
}[] | undefined;
|
|
26509
26008
|
functions?: {
|
|
26510
26009
|
name: string;
|
|
26511
26010
|
description?: string | undefined;
|
|
@@ -27997,6 +27496,7 @@ declare const HubAPIContract: {
|
|
|
27997
27496
|
}>>>>;
|
|
27998
27497
|
}, "strip", z.ZodTypeAny, {
|
|
27999
27498
|
name?: string | undefined;
|
|
27499
|
+
slug?: string | undefined;
|
|
28000
27500
|
runtime?: {
|
|
28001
27501
|
isolation: "shared_schema" | "isolated_schema" | "isolated_db";
|
|
28002
27502
|
quotas?: {
|
|
@@ -28005,7 +27505,6 @@ declare const HubAPIContract: {
|
|
|
28005
27505
|
apiRateLimit?: number | undefined;
|
|
28006
27506
|
} | undefined;
|
|
28007
27507
|
} | undefined;
|
|
28008
|
-
slug?: string | undefined;
|
|
28009
27508
|
bom?: {
|
|
28010
27509
|
dependencies: {
|
|
28011
27510
|
version: string;
|
|
@@ -28039,6 +27538,7 @@ declare const HubAPIContract: {
|
|
|
28039
27538
|
} | undefined;
|
|
28040
27539
|
}, {
|
|
28041
27540
|
name?: string | undefined;
|
|
27541
|
+
slug?: string | undefined;
|
|
28042
27542
|
runtime?: {
|
|
28043
27543
|
isolation: "shared_schema" | "isolated_schema" | "isolated_db";
|
|
28044
27544
|
quotas?: {
|
|
@@ -28047,7 +27547,6 @@ declare const HubAPIContract: {
|
|
|
28047
27547
|
apiRateLimit?: number | undefined;
|
|
28048
27548
|
} | undefined;
|
|
28049
27549
|
} | undefined;
|
|
28050
|
-
slug?: string | undefined;
|
|
28051
27550
|
bom?: {
|
|
28052
27551
|
dependencies: {
|
|
28053
27552
|
id: string;
|
|
@@ -31065,7 +30564,7 @@ declare const HubAPIContract: {
|
|
|
31065
30564
|
extensionPointId: string;
|
|
31066
30565
|
}[] | undefined;
|
|
31067
30566
|
} | undefined;
|
|
31068
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
30567
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
31069
30568
|
license?: string | undefined;
|
|
31070
30569
|
media?: {
|
|
31071
30570
|
video?: string | undefined;
|
|
@@ -31195,7 +30694,7 @@ declare const HubAPIContract: {
|
|
|
31195
30694
|
priority?: number | undefined;
|
|
31196
30695
|
}[] | undefined;
|
|
31197
30696
|
} | undefined;
|
|
31198
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
30697
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
31199
30698
|
license?: string | undefined;
|
|
31200
30699
|
media?: {
|
|
31201
30700
|
video?: string | undefined;
|
|
@@ -32153,7 +31652,7 @@ declare const HubAPIContract: {
|
|
|
32153
31652
|
extensionPointId: string;
|
|
32154
31653
|
}[] | undefined;
|
|
32155
31654
|
} | undefined;
|
|
32156
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
31655
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
32157
31656
|
license?: string | undefined;
|
|
32158
31657
|
media?: {
|
|
32159
31658
|
video?: string | undefined;
|
|
@@ -32325,7 +31824,7 @@ declare const HubAPIContract: {
|
|
|
32325
31824
|
priority?: number | undefined;
|
|
32326
31825
|
}[] | undefined;
|
|
32327
31826
|
} | undefined;
|
|
32328
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
31827
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
32329
31828
|
license?: string | undefined;
|
|
32330
31829
|
media?: {
|
|
32331
31830
|
video?: string | undefined;
|
|
@@ -32501,7 +32000,7 @@ declare const HubAPIContract: {
|
|
|
32501
32000
|
extensionPointId: string;
|
|
32502
32001
|
}[] | undefined;
|
|
32503
32002
|
} | undefined;
|
|
32504
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
32003
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
32505
32004
|
license?: string | undefined;
|
|
32506
32005
|
media?: {
|
|
32507
32006
|
video?: string | undefined;
|
|
@@ -32689,7 +32188,7 @@ declare const HubAPIContract: {
|
|
|
32689
32188
|
priority?: number | undefined;
|
|
32690
32189
|
}[] | undefined;
|
|
32691
32190
|
} | undefined;
|
|
32692
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
32191
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
32693
32192
|
license?: string | undefined;
|
|
32694
32193
|
media?: {
|
|
32695
32194
|
video?: string | undefined;
|
|
@@ -33469,7 +32968,7 @@ declare const HubAPIContract: {
|
|
|
33469
32968
|
extensionPointId: string;
|
|
33470
32969
|
}[] | undefined;
|
|
33471
32970
|
} | undefined;
|
|
33472
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
32971
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
33473
32972
|
license?: string | undefined;
|
|
33474
32973
|
media?: {
|
|
33475
32974
|
video?: string | undefined;
|
|
@@ -33600,7 +33099,7 @@ declare const HubAPIContract: {
|
|
|
33600
33099
|
priority?: number | undefined;
|
|
33601
33100
|
}[] | undefined;
|
|
33602
33101
|
} | undefined;
|
|
33603
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
33102
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
33604
33103
|
license?: string | undefined;
|
|
33605
33104
|
media?: {
|
|
33606
33105
|
video?: string | undefined;
|
|
@@ -34566,7 +34065,7 @@ declare const HubAPIContract: {
|
|
|
34566
34065
|
extensionPointId: string;
|
|
34567
34066
|
}[] | undefined;
|
|
34568
34067
|
} | undefined;
|
|
34569
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
34068
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
34570
34069
|
license?: string | undefined;
|
|
34571
34070
|
media?: {
|
|
34572
34071
|
video?: string | undefined;
|
|
@@ -34738,7 +34237,7 @@ declare const HubAPIContract: {
|
|
|
34738
34237
|
priority?: number | undefined;
|
|
34739
34238
|
}[] | undefined;
|
|
34740
34239
|
} | undefined;
|
|
34741
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
34240
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
34742
34241
|
license?: string | undefined;
|
|
34743
34242
|
media?: {
|
|
34744
34243
|
video?: string | undefined;
|
|
@@ -34914,7 +34413,7 @@ declare const HubAPIContract: {
|
|
|
34914
34413
|
extensionPointId: string;
|
|
34915
34414
|
}[] | undefined;
|
|
34916
34415
|
} | undefined;
|
|
34917
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
34416
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
34918
34417
|
license?: string | undefined;
|
|
34919
34418
|
media?: {
|
|
34920
34419
|
video?: string | undefined;
|
|
@@ -35102,7 +34601,7 @@ declare const HubAPIContract: {
|
|
|
35102
34601
|
priority?: number | undefined;
|
|
35103
34602
|
}[] | undefined;
|
|
35104
34603
|
} | undefined;
|
|
35105
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
34604
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
35106
34605
|
license?: string | undefined;
|
|
35107
34606
|
media?: {
|
|
35108
34607
|
video?: string | undefined;
|
|
@@ -36119,7 +35618,7 @@ declare const HubAPIContract: {
|
|
|
36119
35618
|
extensionPointId: string;
|
|
36120
35619
|
}[] | undefined;
|
|
36121
35620
|
} | undefined;
|
|
36122
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
35621
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
36123
35622
|
license?: string | undefined;
|
|
36124
35623
|
media?: {
|
|
36125
35624
|
video?: string | undefined;
|
|
@@ -36291,7 +35790,7 @@ declare const HubAPIContract: {
|
|
|
36291
35790
|
priority?: number | undefined;
|
|
36292
35791
|
}[] | undefined;
|
|
36293
35792
|
} | undefined;
|
|
36294
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
35793
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
36295
35794
|
license?: string | undefined;
|
|
36296
35795
|
media?: {
|
|
36297
35796
|
video?: string | undefined;
|
|
@@ -36467,7 +35966,7 @@ declare const HubAPIContract: {
|
|
|
36467
35966
|
extensionPointId: string;
|
|
36468
35967
|
}[] | undefined;
|
|
36469
35968
|
} | undefined;
|
|
36470
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
35969
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
36471
35970
|
license?: string | undefined;
|
|
36472
35971
|
media?: {
|
|
36473
35972
|
video?: string | undefined;
|
|
@@ -36655,7 +36154,7 @@ declare const HubAPIContract: {
|
|
|
36655
36154
|
priority?: number | undefined;
|
|
36656
36155
|
}[] | undefined;
|
|
36657
36156
|
} | undefined;
|
|
36658
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
36157
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
36659
36158
|
license?: string | undefined;
|
|
36660
36159
|
media?: {
|
|
36661
36160
|
video?: string | undefined;
|
|
@@ -37709,7 +37208,7 @@ declare const HubAPIContract: {
|
|
|
37709
37208
|
extensionPointId: string;
|
|
37710
37209
|
}[] | undefined;
|
|
37711
37210
|
} | undefined;
|
|
37712
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
37211
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
37713
37212
|
license?: string | undefined;
|
|
37714
37213
|
media?: {
|
|
37715
37214
|
video?: string | undefined;
|
|
@@ -37881,7 +37380,7 @@ declare const HubAPIContract: {
|
|
|
37881
37380
|
priority?: number | undefined;
|
|
37882
37381
|
}[] | undefined;
|
|
37883
37382
|
} | undefined;
|
|
37884
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
37383
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
37885
37384
|
license?: string | undefined;
|
|
37886
37385
|
media?: {
|
|
37887
37386
|
video?: string | undefined;
|
|
@@ -38097,7 +37596,7 @@ declare const HubAPIContract: {
|
|
|
38097
37596
|
extensionPointId: string;
|
|
38098
37597
|
}[] | undefined;
|
|
38099
37598
|
} | undefined;
|
|
38100
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
37599
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
38101
37600
|
license?: string | undefined;
|
|
38102
37601
|
media?: {
|
|
38103
37602
|
video?: string | undefined;
|
|
@@ -38293,7 +37792,7 @@ declare const HubAPIContract: {
|
|
|
38293
37792
|
priority?: number | undefined;
|
|
38294
37793
|
}[] | undefined;
|
|
38295
37794
|
} | undefined;
|
|
38296
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
37795
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
38297
37796
|
license?: string | undefined;
|
|
38298
37797
|
media?: {
|
|
38299
37798
|
video?: string | undefined;
|
|
@@ -38756,8 +38255,8 @@ declare const HubAPIContract: {
|
|
|
38756
38255
|
changeLog?: string | undefined;
|
|
38757
38256
|
}> | undefined;
|
|
38758
38257
|
screenshots?: string[] | undefined;
|
|
38759
|
-
downloads?: number | undefined;
|
|
38760
38258
|
homepage?: string | undefined;
|
|
38259
|
+
downloads?: number | undefined;
|
|
38761
38260
|
readme?: string | undefined;
|
|
38762
38261
|
vendor?: {
|
|
38763
38262
|
name: string;
|
|
@@ -38798,9 +38297,9 @@ declare const HubAPIContract: {
|
|
|
38798
38297
|
changeLog?: string | undefined;
|
|
38799
38298
|
}> | undefined;
|
|
38800
38299
|
screenshots?: string[] | undefined;
|
|
38300
|
+
homepage?: string | undefined;
|
|
38801
38301
|
verified?: boolean | undefined;
|
|
38802
38302
|
downloads?: number | undefined;
|
|
38803
|
-
homepage?: string | undefined;
|
|
38804
38303
|
readme?: string | undefined;
|
|
38805
38304
|
vendor?: {
|
|
38806
38305
|
name: string;
|
|
@@ -38897,8 +38396,8 @@ declare const HubAPIContract: {
|
|
|
38897
38396
|
changeLog?: string | undefined;
|
|
38898
38397
|
}> | undefined;
|
|
38899
38398
|
screenshots?: string[] | undefined;
|
|
38900
|
-
downloads?: number | undefined;
|
|
38901
38399
|
homepage?: string | undefined;
|
|
38400
|
+
downloads?: number | undefined;
|
|
38902
38401
|
readme?: string | undefined;
|
|
38903
38402
|
vendor?: {
|
|
38904
38403
|
name: string;
|
|
@@ -38968,9 +38467,9 @@ declare const HubAPIContract: {
|
|
|
38968
38467
|
changeLog?: string | undefined;
|
|
38969
38468
|
}> | undefined;
|
|
38970
38469
|
screenshots?: string[] | undefined;
|
|
38470
|
+
homepage?: string | undefined;
|
|
38971
38471
|
verified?: boolean | undefined;
|
|
38972
38472
|
downloads?: number | undefined;
|
|
38973
|
-
homepage?: string | undefined;
|
|
38974
38473
|
readme?: string | undefined;
|
|
38975
38474
|
vendor?: {
|
|
38976
38475
|
name: string;
|
|
@@ -39185,8 +38684,8 @@ declare const HubAPIContract: {
|
|
|
39185
38684
|
changeLog?: string | undefined;
|
|
39186
38685
|
}> | undefined;
|
|
39187
38686
|
screenshots?: string[] | undefined;
|
|
39188
|
-
downloads?: number | undefined;
|
|
39189
38687
|
homepage?: string | undefined;
|
|
38688
|
+
downloads?: number | undefined;
|
|
39190
38689
|
readme?: string | undefined;
|
|
39191
38690
|
vendor?: {
|
|
39192
38691
|
name: string;
|
|
@@ -39227,9 +38726,9 @@ declare const HubAPIContract: {
|
|
|
39227
38726
|
changeLog?: string | undefined;
|
|
39228
38727
|
}> | undefined;
|
|
39229
38728
|
screenshots?: string[] | undefined;
|
|
38729
|
+
homepage?: string | undefined;
|
|
39230
38730
|
verified?: boolean | undefined;
|
|
39231
38731
|
downloads?: number | undefined;
|
|
39232
|
-
homepage?: string | undefined;
|
|
39233
38732
|
readme?: string | undefined;
|
|
39234
38733
|
vendor?: {
|
|
39235
38734
|
name: string;
|
|
@@ -39273,8 +38772,8 @@ declare const HubAPIContract: {
|
|
|
39273
38772
|
changeLog?: string | undefined;
|
|
39274
38773
|
}> | undefined;
|
|
39275
38774
|
screenshots?: string[] | undefined;
|
|
39276
|
-
downloads?: number | undefined;
|
|
39277
38775
|
homepage?: string | undefined;
|
|
38776
|
+
downloads?: number | undefined;
|
|
39278
38777
|
readme?: string | undefined;
|
|
39279
38778
|
vendor?: {
|
|
39280
38779
|
name: string;
|
|
@@ -39331,9 +38830,9 @@ declare const HubAPIContract: {
|
|
|
39331
38830
|
changeLog?: string | undefined;
|
|
39332
38831
|
}> | undefined;
|
|
39333
38832
|
screenshots?: string[] | undefined;
|
|
38833
|
+
homepage?: string | undefined;
|
|
39334
38834
|
verified?: boolean | undefined;
|
|
39335
38835
|
downloads?: number | undefined;
|
|
39336
|
-
homepage?: string | undefined;
|
|
39337
38836
|
readme?: string | undefined;
|
|
39338
38837
|
vendor?: {
|
|
39339
38838
|
name: string;
|
|
@@ -40052,7 +39551,7 @@ declare const HubAPIContract: {
|
|
|
40052
39551
|
manifest: z.ZodOptional<z.ZodObject<{
|
|
40053
39552
|
id: z.ZodString;
|
|
40054
39553
|
version: z.ZodString;
|
|
40055
|
-
type: z.ZodEnum<["
|
|
39554
|
+
type: z.ZodEnum<["plugin", "ui", "driver", "server", "app", "theme", "agent", "objectql", "module", "gateway", "adapter"]>;
|
|
40056
39555
|
name: z.ZodString;
|
|
40057
39556
|
description: z.ZodOptional<z.ZodString>;
|
|
40058
39557
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -40230,6 +39729,11 @@ declare const HubAPIContract: {
|
|
|
40230
39729
|
input?: any;
|
|
40231
39730
|
output?: any;
|
|
40232
39731
|
}[] | undefined;
|
|
39732
|
+
drivers?: {
|
|
39733
|
+
label: string;
|
|
39734
|
+
id: string;
|
|
39735
|
+
description?: string | undefined;
|
|
39736
|
+
}[] | undefined;
|
|
40233
39737
|
kinds?: {
|
|
40234
39738
|
id: string;
|
|
40235
39739
|
globs: string[];
|
|
@@ -40249,11 +39753,6 @@ declare const HubAPIContract: {
|
|
|
40249
39753
|
path: string;
|
|
40250
39754
|
locale: string;
|
|
40251
39755
|
}[] | undefined;
|
|
40252
|
-
drivers?: {
|
|
40253
|
-
label: string;
|
|
40254
|
-
id: string;
|
|
40255
|
-
description?: string | undefined;
|
|
40256
|
-
}[] | undefined;
|
|
40257
39756
|
functions?: {
|
|
40258
39757
|
name: string;
|
|
40259
39758
|
description?: string | undefined;
|
|
@@ -40274,6 +39773,11 @@ declare const HubAPIContract: {
|
|
|
40274
39773
|
input?: any;
|
|
40275
39774
|
output?: any;
|
|
40276
39775
|
}[] | undefined;
|
|
39776
|
+
drivers?: {
|
|
39777
|
+
label: string;
|
|
39778
|
+
id: string;
|
|
39779
|
+
description?: string | undefined;
|
|
39780
|
+
}[] | undefined;
|
|
40277
39781
|
kinds?: {
|
|
40278
39782
|
id: string;
|
|
40279
39783
|
globs: string[];
|
|
@@ -40293,11 +39797,6 @@ declare const HubAPIContract: {
|
|
|
40293
39797
|
path: string;
|
|
40294
39798
|
locale: string;
|
|
40295
39799
|
}[] | undefined;
|
|
40296
|
-
drivers?: {
|
|
40297
|
-
label: string;
|
|
40298
|
-
id: string;
|
|
40299
|
-
description?: string | undefined;
|
|
40300
|
-
}[] | undefined;
|
|
40301
39800
|
functions?: {
|
|
40302
39801
|
name: string;
|
|
40303
39802
|
description?: string | undefined;
|
|
@@ -41473,7 +40972,7 @@ declare const HubAPIContract: {
|
|
|
41473
40972
|
} | undefined;
|
|
41474
40973
|
}>>;
|
|
41475
40974
|
}, "strip", z.ZodTypeAny, {
|
|
41476
|
-
type: "driver" | "app" | "
|
|
40975
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
41477
40976
|
name: string;
|
|
41478
40977
|
version: string;
|
|
41479
40978
|
id: string;
|
|
@@ -41714,6 +41213,11 @@ declare const HubAPIContract: {
|
|
|
41714
41213
|
input?: any;
|
|
41715
41214
|
output?: any;
|
|
41716
41215
|
}[] | undefined;
|
|
41216
|
+
drivers?: {
|
|
41217
|
+
label: string;
|
|
41218
|
+
id: string;
|
|
41219
|
+
description?: string | undefined;
|
|
41220
|
+
}[] | undefined;
|
|
41717
41221
|
kinds?: {
|
|
41718
41222
|
id: string;
|
|
41719
41223
|
globs: string[];
|
|
@@ -41733,11 +41237,6 @@ declare const HubAPIContract: {
|
|
|
41733
41237
|
path: string;
|
|
41734
41238
|
locale: string;
|
|
41735
41239
|
}[] | undefined;
|
|
41736
|
-
drivers?: {
|
|
41737
|
-
label: string;
|
|
41738
|
-
id: string;
|
|
41739
|
-
description?: string | undefined;
|
|
41740
|
-
}[] | undefined;
|
|
41741
41240
|
functions?: {
|
|
41742
41241
|
name: string;
|
|
41743
41242
|
description?: string | undefined;
|
|
@@ -41746,7 +41245,7 @@ declare const HubAPIContract: {
|
|
|
41746
41245
|
}[] | undefined;
|
|
41747
41246
|
} | undefined;
|
|
41748
41247
|
}, {
|
|
41749
|
-
type: "driver" | "app" | "
|
|
41248
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
41750
41249
|
name: string;
|
|
41751
41250
|
version: string;
|
|
41752
41251
|
id: string;
|
|
@@ -41987,6 +41486,11 @@ declare const HubAPIContract: {
|
|
|
41987
41486
|
input?: any;
|
|
41988
41487
|
output?: any;
|
|
41989
41488
|
}[] | undefined;
|
|
41489
|
+
drivers?: {
|
|
41490
|
+
label: string;
|
|
41491
|
+
id: string;
|
|
41492
|
+
description?: string | undefined;
|
|
41493
|
+
}[] | undefined;
|
|
41990
41494
|
kinds?: {
|
|
41991
41495
|
id: string;
|
|
41992
41496
|
globs: string[];
|
|
@@ -42006,11 +41510,6 @@ declare const HubAPIContract: {
|
|
|
42006
41510
|
path: string;
|
|
42007
41511
|
locale: string;
|
|
42008
41512
|
}[] | undefined;
|
|
42009
|
-
drivers?: {
|
|
42010
|
-
label: string;
|
|
42011
|
-
id: string;
|
|
42012
|
-
description?: string | undefined;
|
|
42013
|
-
}[] | undefined;
|
|
42014
41513
|
functions?: {
|
|
42015
41514
|
name: string;
|
|
42016
41515
|
description?: string | undefined;
|
|
@@ -42057,7 +41556,7 @@ declare const HubAPIContract: {
|
|
|
42057
41556
|
sources: string[];
|
|
42058
41557
|
}[] | undefined;
|
|
42059
41558
|
manifest?: {
|
|
42060
|
-
type: "driver" | "app" | "
|
|
41559
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
42061
41560
|
name: string;
|
|
42062
41561
|
version: string;
|
|
42063
41562
|
id: string;
|
|
@@ -42298,6 +41797,11 @@ declare const HubAPIContract: {
|
|
|
42298
41797
|
input?: any;
|
|
42299
41798
|
output?: any;
|
|
42300
41799
|
}[] | undefined;
|
|
41800
|
+
drivers?: {
|
|
41801
|
+
label: string;
|
|
41802
|
+
id: string;
|
|
41803
|
+
description?: string | undefined;
|
|
41804
|
+
}[] | undefined;
|
|
42301
41805
|
kinds?: {
|
|
42302
41806
|
id: string;
|
|
42303
41807
|
globs: string[];
|
|
@@ -42317,11 +41821,6 @@ declare const HubAPIContract: {
|
|
|
42317
41821
|
path: string;
|
|
42318
41822
|
locale: string;
|
|
42319
41823
|
}[] | undefined;
|
|
42320
|
-
drivers?: {
|
|
42321
|
-
label: string;
|
|
42322
|
-
id: string;
|
|
42323
|
-
description?: string | undefined;
|
|
42324
|
-
}[] | undefined;
|
|
42325
41824
|
functions?: {
|
|
42326
41825
|
name: string;
|
|
42327
41826
|
description?: string | undefined;
|
|
@@ -42345,7 +41844,7 @@ declare const HubAPIContract: {
|
|
|
42345
41844
|
sources: string[];
|
|
42346
41845
|
}[] | undefined;
|
|
42347
41846
|
manifest?: {
|
|
42348
|
-
type: "driver" | "app" | "
|
|
41847
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
42349
41848
|
name: string;
|
|
42350
41849
|
version: string;
|
|
42351
41850
|
id: string;
|
|
@@ -42586,6 +42085,11 @@ declare const HubAPIContract: {
|
|
|
42586
42085
|
input?: any;
|
|
42587
42086
|
output?: any;
|
|
42588
42087
|
}[] | undefined;
|
|
42088
|
+
drivers?: {
|
|
42089
|
+
label: string;
|
|
42090
|
+
id: string;
|
|
42091
|
+
description?: string | undefined;
|
|
42092
|
+
}[] | undefined;
|
|
42589
42093
|
kinds?: {
|
|
42590
42094
|
id: string;
|
|
42591
42095
|
globs: string[];
|
|
@@ -42605,11 +42109,6 @@ declare const HubAPIContract: {
|
|
|
42605
42109
|
path: string;
|
|
42606
42110
|
locale: string;
|
|
42607
42111
|
}[] | undefined;
|
|
42608
|
-
drivers?: {
|
|
42609
|
-
label: string;
|
|
42610
|
-
id: string;
|
|
42611
|
-
description?: string | undefined;
|
|
42612
|
-
}[] | undefined;
|
|
42613
42112
|
functions?: {
|
|
42614
42113
|
name: string;
|
|
42615
42114
|
description?: string | undefined;
|
|
@@ -42635,7 +42134,7 @@ declare const HubAPIContract: {
|
|
|
42635
42134
|
sources: string[];
|
|
42636
42135
|
}[] | undefined;
|
|
42637
42136
|
manifest?: {
|
|
42638
|
-
type: "driver" | "app" | "
|
|
42137
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
42639
42138
|
name: string;
|
|
42640
42139
|
version: string;
|
|
42641
42140
|
id: string;
|
|
@@ -42876,6 +42375,11 @@ declare const HubAPIContract: {
|
|
|
42876
42375
|
input?: any;
|
|
42877
42376
|
output?: any;
|
|
42878
42377
|
}[] | undefined;
|
|
42378
|
+
drivers?: {
|
|
42379
|
+
label: string;
|
|
42380
|
+
id: string;
|
|
42381
|
+
description?: string | undefined;
|
|
42382
|
+
}[] | undefined;
|
|
42879
42383
|
kinds?: {
|
|
42880
42384
|
id: string;
|
|
42881
42385
|
globs: string[];
|
|
@@ -42895,11 +42399,6 @@ declare const HubAPIContract: {
|
|
|
42895
42399
|
path: string;
|
|
42896
42400
|
locale: string;
|
|
42897
42401
|
}[] | undefined;
|
|
42898
|
-
drivers?: {
|
|
42899
|
-
label: string;
|
|
42900
|
-
id: string;
|
|
42901
|
-
description?: string | undefined;
|
|
42902
|
-
}[] | undefined;
|
|
42903
42402
|
functions?: {
|
|
42904
42403
|
name: string;
|
|
42905
42404
|
description?: string | undefined;
|
|
@@ -42939,7 +42438,7 @@ declare const HubAPIContract: {
|
|
|
42939
42438
|
sources: string[];
|
|
42940
42439
|
}[] | undefined;
|
|
42941
42440
|
manifest?: {
|
|
42942
|
-
type: "driver" | "app" | "
|
|
42441
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
42943
42442
|
name: string;
|
|
42944
42443
|
version: string;
|
|
42945
42444
|
id: string;
|
|
@@ -43180,6 +42679,11 @@ declare const HubAPIContract: {
|
|
|
43180
42679
|
input?: any;
|
|
43181
42680
|
output?: any;
|
|
43182
42681
|
}[] | undefined;
|
|
42682
|
+
drivers?: {
|
|
42683
|
+
label: string;
|
|
42684
|
+
id: string;
|
|
42685
|
+
description?: string | undefined;
|
|
42686
|
+
}[] | undefined;
|
|
43183
42687
|
kinds?: {
|
|
43184
42688
|
id: string;
|
|
43185
42689
|
globs: string[];
|
|
@@ -43199,11 +42703,6 @@ declare const HubAPIContract: {
|
|
|
43199
42703
|
path: string;
|
|
43200
42704
|
locale: string;
|
|
43201
42705
|
}[] | undefined;
|
|
43202
|
-
drivers?: {
|
|
43203
|
-
label: string;
|
|
43204
|
-
id: string;
|
|
43205
|
-
description?: string | undefined;
|
|
43206
|
-
}[] | undefined;
|
|
43207
42706
|
functions?: {
|
|
43208
42707
|
name: string;
|
|
43209
42708
|
description?: string | undefined;
|
|
@@ -46434,362 +45933,13 @@ declare const GetUiViewResponseSchema: z.ZodObject<{
|
|
|
46434
45933
|
*/
|
|
46435
45934
|
declare const FindDataRequestSchema: z.ZodObject<{
|
|
46436
45935
|
object: z.ZodString;
|
|
46437
|
-
query: z.ZodOptional<z.
|
|
46438
|
-
object: z.ZodString;
|
|
46439
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
46440
|
-
where: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
46441
|
-
search: z.ZodOptional<z.ZodObject<{
|
|
46442
|
-
query: z.ZodString;
|
|
46443
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
46444
|
-
fuzzy: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
46445
|
-
operator: z.ZodDefault<z.ZodOptional<z.ZodEnum<["and", "or"]>>>;
|
|
46446
|
-
boost: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
46447
|
-
minScore: z.ZodOptional<z.ZodNumber>;
|
|
46448
|
-
language: z.ZodOptional<z.ZodString>;
|
|
46449
|
-
highlight: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
46450
|
-
}, "strip", z.ZodTypeAny, {
|
|
46451
|
-
query: string;
|
|
46452
|
-
fuzzy: boolean;
|
|
46453
|
-
operator: "and" | "or";
|
|
46454
|
-
highlight: boolean;
|
|
46455
|
-
fields?: string[] | undefined;
|
|
46456
|
-
boost?: Record<string, number> | undefined;
|
|
46457
|
-
minScore?: number | undefined;
|
|
46458
|
-
language?: string | undefined;
|
|
46459
|
-
}, {
|
|
46460
|
-
query: string;
|
|
46461
|
-
fields?: string[] | undefined;
|
|
46462
|
-
fuzzy?: boolean | undefined;
|
|
46463
|
-
operator?: "and" | "or" | undefined;
|
|
46464
|
-
boost?: Record<string, number> | undefined;
|
|
46465
|
-
minScore?: number | undefined;
|
|
46466
|
-
language?: string | undefined;
|
|
46467
|
-
highlight?: boolean | undefined;
|
|
46468
|
-
}>>;
|
|
46469
|
-
orderBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
46470
|
-
field: z.ZodString;
|
|
46471
|
-
order: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
|
|
46472
|
-
}, "strip", z.ZodTypeAny, {
|
|
46473
|
-
field: string;
|
|
46474
|
-
order: "asc" | "desc";
|
|
46475
|
-
}, {
|
|
46476
|
-
field: string;
|
|
46477
|
-
order?: "asc" | "desc" | undefined;
|
|
46478
|
-
}>, "many">>;
|
|
46479
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
46480
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
46481
|
-
cursor: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
46482
|
-
joins: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
46483
|
-
aggregations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
46484
|
-
function: z.ZodEnum<["count", "sum", "avg", "min", "max", "count_distinct", "array_agg", "string_agg"]>;
|
|
46485
|
-
field: z.ZodOptional<z.ZodString>;
|
|
46486
|
-
alias: z.ZodString;
|
|
46487
|
-
distinct: z.ZodOptional<z.ZodBoolean>;
|
|
46488
|
-
filter: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
46489
|
-
}, "strip", z.ZodTypeAny, {
|
|
46490
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
46491
|
-
alias: string;
|
|
46492
|
-
filter?: FilterCondition | undefined;
|
|
46493
|
-
field?: string | undefined;
|
|
46494
|
-
distinct?: boolean | undefined;
|
|
46495
|
-
}, {
|
|
46496
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
46497
|
-
alias: string;
|
|
46498
|
-
filter?: FilterCondition | undefined;
|
|
46499
|
-
field?: string | undefined;
|
|
46500
|
-
distinct?: boolean | undefined;
|
|
46501
|
-
}>, "many">>;
|
|
46502
|
-
groupBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
46503
|
-
having: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
46504
|
-
windowFunctions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
46505
|
-
function: z.ZodEnum<["row_number", "rank", "dense_rank", "percent_rank", "lag", "lead", "first_value", "last_value", "sum", "avg", "count", "min", "max"]>;
|
|
46506
|
-
field: z.ZodOptional<z.ZodString>;
|
|
46507
|
-
alias: z.ZodString;
|
|
46508
|
-
over: z.ZodObject<{
|
|
46509
|
-
partitionBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
46510
|
-
orderBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
46511
|
-
field: z.ZodString;
|
|
46512
|
-
order: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
|
|
46513
|
-
}, "strip", z.ZodTypeAny, {
|
|
46514
|
-
field: string;
|
|
46515
|
-
order: "asc" | "desc";
|
|
46516
|
-
}, {
|
|
46517
|
-
field: string;
|
|
46518
|
-
order?: "asc" | "desc" | undefined;
|
|
46519
|
-
}>, "many">>;
|
|
46520
|
-
frame: z.ZodOptional<z.ZodObject<{
|
|
46521
|
-
type: z.ZodOptional<z.ZodEnum<["rows", "range"]>>;
|
|
46522
|
-
start: z.ZodOptional<z.ZodString>;
|
|
46523
|
-
end: z.ZodOptional<z.ZodString>;
|
|
46524
|
-
}, "strip", z.ZodTypeAny, {
|
|
46525
|
-
type?: "rows" | "range" | undefined;
|
|
46526
|
-
start?: string | undefined;
|
|
46527
|
-
end?: string | undefined;
|
|
46528
|
-
}, {
|
|
46529
|
-
type?: "rows" | "range" | undefined;
|
|
46530
|
-
start?: string | undefined;
|
|
46531
|
-
end?: string | undefined;
|
|
46532
|
-
}>>;
|
|
46533
|
-
}, "strip", z.ZodTypeAny, {
|
|
46534
|
-
orderBy?: {
|
|
46535
|
-
field: string;
|
|
46536
|
-
order: "asc" | "desc";
|
|
46537
|
-
}[] | undefined;
|
|
46538
|
-
partitionBy?: string[] | undefined;
|
|
46539
|
-
frame?: {
|
|
46540
|
-
type?: "rows" | "range" | undefined;
|
|
46541
|
-
start?: string | undefined;
|
|
46542
|
-
end?: string | undefined;
|
|
46543
|
-
} | undefined;
|
|
46544
|
-
}, {
|
|
46545
|
-
orderBy?: {
|
|
46546
|
-
field: string;
|
|
46547
|
-
order?: "asc" | "desc" | undefined;
|
|
46548
|
-
}[] | undefined;
|
|
46549
|
-
partitionBy?: string[] | undefined;
|
|
46550
|
-
frame?: {
|
|
46551
|
-
type?: "rows" | "range" | undefined;
|
|
46552
|
-
start?: string | undefined;
|
|
46553
|
-
end?: string | undefined;
|
|
46554
|
-
} | undefined;
|
|
46555
|
-
}>;
|
|
46556
|
-
}, "strip", z.ZodTypeAny, {
|
|
46557
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
46558
|
-
alias: string;
|
|
46559
|
-
over: {
|
|
46560
|
-
orderBy?: {
|
|
46561
|
-
field: string;
|
|
46562
|
-
order: "asc" | "desc";
|
|
46563
|
-
}[] | undefined;
|
|
46564
|
-
partitionBy?: string[] | undefined;
|
|
46565
|
-
frame?: {
|
|
46566
|
-
type?: "rows" | "range" | undefined;
|
|
46567
|
-
start?: string | undefined;
|
|
46568
|
-
end?: string | undefined;
|
|
46569
|
-
} | undefined;
|
|
46570
|
-
};
|
|
46571
|
-
field?: string | undefined;
|
|
46572
|
-
}, {
|
|
46573
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
46574
|
-
alias: string;
|
|
46575
|
-
over: {
|
|
46576
|
-
orderBy?: {
|
|
46577
|
-
field: string;
|
|
46578
|
-
order?: "asc" | "desc" | undefined;
|
|
46579
|
-
}[] | undefined;
|
|
46580
|
-
partitionBy?: string[] | undefined;
|
|
46581
|
-
frame?: {
|
|
46582
|
-
type?: "rows" | "range" | undefined;
|
|
46583
|
-
start?: string | undefined;
|
|
46584
|
-
end?: string | undefined;
|
|
46585
|
-
} | undefined;
|
|
46586
|
-
};
|
|
46587
|
-
field?: string | undefined;
|
|
46588
|
-
}>, "many">>;
|
|
46589
|
-
distinct: z.ZodOptional<z.ZodBoolean>;
|
|
46590
|
-
}, "strip", z.ZodTypeAny, {
|
|
46591
|
-
object: string;
|
|
46592
|
-
where?: FilterCondition | undefined;
|
|
46593
|
-
distinct?: boolean | undefined;
|
|
46594
|
-
fields?: any[] | undefined;
|
|
46595
|
-
search?: {
|
|
46596
|
-
query: string;
|
|
46597
|
-
fuzzy: boolean;
|
|
46598
|
-
operator: "and" | "or";
|
|
46599
|
-
highlight: boolean;
|
|
46600
|
-
fields?: string[] | undefined;
|
|
46601
|
-
boost?: Record<string, number> | undefined;
|
|
46602
|
-
minScore?: number | undefined;
|
|
46603
|
-
language?: string | undefined;
|
|
46604
|
-
} | undefined;
|
|
46605
|
-
orderBy?: {
|
|
46606
|
-
field: string;
|
|
46607
|
-
order: "asc" | "desc";
|
|
46608
|
-
}[] | undefined;
|
|
46609
|
-
limit?: number | undefined;
|
|
46610
|
-
offset?: number | undefined;
|
|
46611
|
-
cursor?: Record<string, any> | undefined;
|
|
46612
|
-
joins?: any[] | undefined;
|
|
46613
|
-
aggregations?: {
|
|
46614
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
46615
|
-
alias: string;
|
|
46616
|
-
filter?: FilterCondition | undefined;
|
|
46617
|
-
field?: string | undefined;
|
|
46618
|
-
distinct?: boolean | undefined;
|
|
46619
|
-
}[] | undefined;
|
|
46620
|
-
groupBy?: string[] | undefined;
|
|
46621
|
-
having?: FilterCondition | undefined;
|
|
46622
|
-
windowFunctions?: {
|
|
46623
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
46624
|
-
alias: string;
|
|
46625
|
-
over: {
|
|
46626
|
-
orderBy?: {
|
|
46627
|
-
field: string;
|
|
46628
|
-
order: "asc" | "desc";
|
|
46629
|
-
}[] | undefined;
|
|
46630
|
-
partitionBy?: string[] | undefined;
|
|
46631
|
-
frame?: {
|
|
46632
|
-
type?: "rows" | "range" | undefined;
|
|
46633
|
-
start?: string | undefined;
|
|
46634
|
-
end?: string | undefined;
|
|
46635
|
-
} | undefined;
|
|
46636
|
-
};
|
|
46637
|
-
field?: string | undefined;
|
|
46638
|
-
}[] | undefined;
|
|
46639
|
-
}, {
|
|
46640
|
-
object: string;
|
|
46641
|
-
where?: FilterCondition | undefined;
|
|
46642
|
-
distinct?: boolean | undefined;
|
|
46643
|
-
fields?: any[] | undefined;
|
|
46644
|
-
search?: {
|
|
46645
|
-
query: string;
|
|
46646
|
-
fields?: string[] | undefined;
|
|
46647
|
-
fuzzy?: boolean | undefined;
|
|
46648
|
-
operator?: "and" | "or" | undefined;
|
|
46649
|
-
boost?: Record<string, number> | undefined;
|
|
46650
|
-
minScore?: number | undefined;
|
|
46651
|
-
language?: string | undefined;
|
|
46652
|
-
highlight?: boolean | undefined;
|
|
46653
|
-
} | undefined;
|
|
46654
|
-
orderBy?: {
|
|
46655
|
-
field: string;
|
|
46656
|
-
order?: "asc" | "desc" | undefined;
|
|
46657
|
-
}[] | undefined;
|
|
46658
|
-
limit?: number | undefined;
|
|
46659
|
-
offset?: number | undefined;
|
|
46660
|
-
cursor?: Record<string, any> | undefined;
|
|
46661
|
-
joins?: any[] | undefined;
|
|
46662
|
-
aggregations?: {
|
|
46663
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
46664
|
-
alias: string;
|
|
46665
|
-
filter?: FilterCondition | undefined;
|
|
46666
|
-
field?: string | undefined;
|
|
46667
|
-
distinct?: boolean | undefined;
|
|
46668
|
-
}[] | undefined;
|
|
46669
|
-
groupBy?: string[] | undefined;
|
|
46670
|
-
having?: FilterCondition | undefined;
|
|
46671
|
-
windowFunctions?: {
|
|
46672
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
46673
|
-
alias: string;
|
|
46674
|
-
over: {
|
|
46675
|
-
orderBy?: {
|
|
46676
|
-
field: string;
|
|
46677
|
-
order?: "asc" | "desc" | undefined;
|
|
46678
|
-
}[] | undefined;
|
|
46679
|
-
partitionBy?: string[] | undefined;
|
|
46680
|
-
frame?: {
|
|
46681
|
-
type?: "rows" | "range" | undefined;
|
|
46682
|
-
start?: string | undefined;
|
|
46683
|
-
end?: string | undefined;
|
|
46684
|
-
} | undefined;
|
|
46685
|
-
};
|
|
46686
|
-
field?: string | undefined;
|
|
46687
|
-
}[] | undefined;
|
|
46688
|
-
}>>;
|
|
45936
|
+
query: z.ZodOptional<z.ZodType<QueryAST, z.ZodTypeDef, QueryInput>>;
|
|
46689
45937
|
}, "strip", z.ZodTypeAny, {
|
|
46690
45938
|
object: string;
|
|
46691
|
-
query?:
|
|
46692
|
-
object: string;
|
|
46693
|
-
where?: FilterCondition | undefined;
|
|
46694
|
-
distinct?: boolean | undefined;
|
|
46695
|
-
fields?: any[] | undefined;
|
|
46696
|
-
search?: {
|
|
46697
|
-
query: string;
|
|
46698
|
-
fuzzy: boolean;
|
|
46699
|
-
operator: "and" | "or";
|
|
46700
|
-
highlight: boolean;
|
|
46701
|
-
fields?: string[] | undefined;
|
|
46702
|
-
boost?: Record<string, number> | undefined;
|
|
46703
|
-
minScore?: number | undefined;
|
|
46704
|
-
language?: string | undefined;
|
|
46705
|
-
} | undefined;
|
|
46706
|
-
orderBy?: {
|
|
46707
|
-
field: string;
|
|
46708
|
-
order: "asc" | "desc";
|
|
46709
|
-
}[] | undefined;
|
|
46710
|
-
limit?: number | undefined;
|
|
46711
|
-
offset?: number | undefined;
|
|
46712
|
-
cursor?: Record<string, any> | undefined;
|
|
46713
|
-
joins?: any[] | undefined;
|
|
46714
|
-
aggregations?: {
|
|
46715
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
46716
|
-
alias: string;
|
|
46717
|
-
filter?: FilterCondition | undefined;
|
|
46718
|
-
field?: string | undefined;
|
|
46719
|
-
distinct?: boolean | undefined;
|
|
46720
|
-
}[] | undefined;
|
|
46721
|
-
groupBy?: string[] | undefined;
|
|
46722
|
-
having?: FilterCondition | undefined;
|
|
46723
|
-
windowFunctions?: {
|
|
46724
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
46725
|
-
alias: string;
|
|
46726
|
-
over: {
|
|
46727
|
-
orderBy?: {
|
|
46728
|
-
field: string;
|
|
46729
|
-
order: "asc" | "desc";
|
|
46730
|
-
}[] | undefined;
|
|
46731
|
-
partitionBy?: string[] | undefined;
|
|
46732
|
-
frame?: {
|
|
46733
|
-
type?: "rows" | "range" | undefined;
|
|
46734
|
-
start?: string | undefined;
|
|
46735
|
-
end?: string | undefined;
|
|
46736
|
-
} | undefined;
|
|
46737
|
-
};
|
|
46738
|
-
field?: string | undefined;
|
|
46739
|
-
}[] | undefined;
|
|
46740
|
-
} | undefined;
|
|
45939
|
+
query?: QueryAST | undefined;
|
|
46741
45940
|
}, {
|
|
46742
45941
|
object: string;
|
|
46743
|
-
query?:
|
|
46744
|
-
object: string;
|
|
46745
|
-
where?: FilterCondition | undefined;
|
|
46746
|
-
distinct?: boolean | undefined;
|
|
46747
|
-
fields?: any[] | undefined;
|
|
46748
|
-
search?: {
|
|
46749
|
-
query: string;
|
|
46750
|
-
fields?: string[] | undefined;
|
|
46751
|
-
fuzzy?: boolean | undefined;
|
|
46752
|
-
operator?: "and" | "or" | undefined;
|
|
46753
|
-
boost?: Record<string, number> | undefined;
|
|
46754
|
-
minScore?: number | undefined;
|
|
46755
|
-
language?: string | undefined;
|
|
46756
|
-
highlight?: boolean | undefined;
|
|
46757
|
-
} | undefined;
|
|
46758
|
-
orderBy?: {
|
|
46759
|
-
field: string;
|
|
46760
|
-
order?: "asc" | "desc" | undefined;
|
|
46761
|
-
}[] | undefined;
|
|
46762
|
-
limit?: number | undefined;
|
|
46763
|
-
offset?: number | undefined;
|
|
46764
|
-
cursor?: Record<string, any> | undefined;
|
|
46765
|
-
joins?: any[] | undefined;
|
|
46766
|
-
aggregations?: {
|
|
46767
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
46768
|
-
alias: string;
|
|
46769
|
-
filter?: FilterCondition | undefined;
|
|
46770
|
-
field?: string | undefined;
|
|
46771
|
-
distinct?: boolean | undefined;
|
|
46772
|
-
}[] | undefined;
|
|
46773
|
-
groupBy?: string[] | undefined;
|
|
46774
|
-
having?: FilterCondition | undefined;
|
|
46775
|
-
windowFunctions?: {
|
|
46776
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
46777
|
-
alias: string;
|
|
46778
|
-
over: {
|
|
46779
|
-
orderBy?: {
|
|
46780
|
-
field: string;
|
|
46781
|
-
order?: "asc" | "desc" | undefined;
|
|
46782
|
-
}[] | undefined;
|
|
46783
|
-
partitionBy?: string[] | undefined;
|
|
46784
|
-
frame?: {
|
|
46785
|
-
type?: "rows" | "range" | undefined;
|
|
46786
|
-
start?: string | undefined;
|
|
46787
|
-
end?: string | undefined;
|
|
46788
|
-
} | undefined;
|
|
46789
|
-
};
|
|
46790
|
-
field?: string | undefined;
|
|
46791
|
-
}[] | undefined;
|
|
46792
|
-
} | undefined;
|
|
45942
|
+
query?: QueryInput | undefined;
|
|
46793
45943
|
}>;
|
|
46794
45944
|
/**
|
|
46795
45945
|
* Find Data Response
|
|
@@ -51506,362 +50656,13 @@ declare const ObjectStackProtocolSchema: z.ZodObject<{
|
|
|
51506
50656
|
}>>>;
|
|
51507
50657
|
findData: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
51508
50658
|
object: z.ZodString;
|
|
51509
|
-
query: z.ZodOptional<z.
|
|
51510
|
-
object: z.ZodString;
|
|
51511
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
51512
|
-
where: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
51513
|
-
search: z.ZodOptional<z.ZodObject<{
|
|
51514
|
-
query: z.ZodString;
|
|
51515
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51516
|
-
fuzzy: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
51517
|
-
operator: z.ZodDefault<z.ZodOptional<z.ZodEnum<["and", "or"]>>>;
|
|
51518
|
-
boost: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
51519
|
-
minScore: z.ZodOptional<z.ZodNumber>;
|
|
51520
|
-
language: z.ZodOptional<z.ZodString>;
|
|
51521
|
-
highlight: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
51522
|
-
}, "strip", z.ZodTypeAny, {
|
|
51523
|
-
query: string;
|
|
51524
|
-
fuzzy: boolean;
|
|
51525
|
-
operator: "and" | "or";
|
|
51526
|
-
highlight: boolean;
|
|
51527
|
-
fields?: string[] | undefined;
|
|
51528
|
-
boost?: Record<string, number> | undefined;
|
|
51529
|
-
minScore?: number | undefined;
|
|
51530
|
-
language?: string | undefined;
|
|
51531
|
-
}, {
|
|
51532
|
-
query: string;
|
|
51533
|
-
fields?: string[] | undefined;
|
|
51534
|
-
fuzzy?: boolean | undefined;
|
|
51535
|
-
operator?: "and" | "or" | undefined;
|
|
51536
|
-
boost?: Record<string, number> | undefined;
|
|
51537
|
-
minScore?: number | undefined;
|
|
51538
|
-
language?: string | undefined;
|
|
51539
|
-
highlight?: boolean | undefined;
|
|
51540
|
-
}>>;
|
|
51541
|
-
orderBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51542
|
-
field: z.ZodString;
|
|
51543
|
-
order: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
|
|
51544
|
-
}, "strip", z.ZodTypeAny, {
|
|
51545
|
-
field: string;
|
|
51546
|
-
order: "asc" | "desc";
|
|
51547
|
-
}, {
|
|
51548
|
-
field: string;
|
|
51549
|
-
order?: "asc" | "desc" | undefined;
|
|
51550
|
-
}>, "many">>;
|
|
51551
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
51552
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
51553
|
-
cursor: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
51554
|
-
joins: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
51555
|
-
aggregations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51556
|
-
function: z.ZodEnum<["count", "sum", "avg", "min", "max", "count_distinct", "array_agg", "string_agg"]>;
|
|
51557
|
-
field: z.ZodOptional<z.ZodString>;
|
|
51558
|
-
alias: z.ZodString;
|
|
51559
|
-
distinct: z.ZodOptional<z.ZodBoolean>;
|
|
51560
|
-
filter: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
51561
|
-
}, "strip", z.ZodTypeAny, {
|
|
51562
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
51563
|
-
alias: string;
|
|
51564
|
-
filter?: FilterCondition | undefined;
|
|
51565
|
-
field?: string | undefined;
|
|
51566
|
-
distinct?: boolean | undefined;
|
|
51567
|
-
}, {
|
|
51568
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
51569
|
-
alias: string;
|
|
51570
|
-
filter?: FilterCondition | undefined;
|
|
51571
|
-
field?: string | undefined;
|
|
51572
|
-
distinct?: boolean | undefined;
|
|
51573
|
-
}>, "many">>;
|
|
51574
|
-
groupBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51575
|
-
having: z.ZodOptional<z.ZodType<FilterCondition, z.ZodTypeDef, FilterCondition>>;
|
|
51576
|
-
windowFunctions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51577
|
-
function: z.ZodEnum<["row_number", "rank", "dense_rank", "percent_rank", "lag", "lead", "first_value", "last_value", "sum", "avg", "count", "min", "max"]>;
|
|
51578
|
-
field: z.ZodOptional<z.ZodString>;
|
|
51579
|
-
alias: z.ZodString;
|
|
51580
|
-
over: z.ZodObject<{
|
|
51581
|
-
partitionBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51582
|
-
orderBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51583
|
-
field: z.ZodString;
|
|
51584
|
-
order: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
|
|
51585
|
-
}, "strip", z.ZodTypeAny, {
|
|
51586
|
-
field: string;
|
|
51587
|
-
order: "asc" | "desc";
|
|
51588
|
-
}, {
|
|
51589
|
-
field: string;
|
|
51590
|
-
order?: "asc" | "desc" | undefined;
|
|
51591
|
-
}>, "many">>;
|
|
51592
|
-
frame: z.ZodOptional<z.ZodObject<{
|
|
51593
|
-
type: z.ZodOptional<z.ZodEnum<["rows", "range"]>>;
|
|
51594
|
-
start: z.ZodOptional<z.ZodString>;
|
|
51595
|
-
end: z.ZodOptional<z.ZodString>;
|
|
51596
|
-
}, "strip", z.ZodTypeAny, {
|
|
51597
|
-
type?: "rows" | "range" | undefined;
|
|
51598
|
-
start?: string | undefined;
|
|
51599
|
-
end?: string | undefined;
|
|
51600
|
-
}, {
|
|
51601
|
-
type?: "rows" | "range" | undefined;
|
|
51602
|
-
start?: string | undefined;
|
|
51603
|
-
end?: string | undefined;
|
|
51604
|
-
}>>;
|
|
51605
|
-
}, "strip", z.ZodTypeAny, {
|
|
51606
|
-
orderBy?: {
|
|
51607
|
-
field: string;
|
|
51608
|
-
order: "asc" | "desc";
|
|
51609
|
-
}[] | undefined;
|
|
51610
|
-
partitionBy?: string[] | undefined;
|
|
51611
|
-
frame?: {
|
|
51612
|
-
type?: "rows" | "range" | undefined;
|
|
51613
|
-
start?: string | undefined;
|
|
51614
|
-
end?: string | undefined;
|
|
51615
|
-
} | undefined;
|
|
51616
|
-
}, {
|
|
51617
|
-
orderBy?: {
|
|
51618
|
-
field: string;
|
|
51619
|
-
order?: "asc" | "desc" | undefined;
|
|
51620
|
-
}[] | undefined;
|
|
51621
|
-
partitionBy?: string[] | undefined;
|
|
51622
|
-
frame?: {
|
|
51623
|
-
type?: "rows" | "range" | undefined;
|
|
51624
|
-
start?: string | undefined;
|
|
51625
|
-
end?: string | undefined;
|
|
51626
|
-
} | undefined;
|
|
51627
|
-
}>;
|
|
51628
|
-
}, "strip", z.ZodTypeAny, {
|
|
51629
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
51630
|
-
alias: string;
|
|
51631
|
-
over: {
|
|
51632
|
-
orderBy?: {
|
|
51633
|
-
field: string;
|
|
51634
|
-
order: "asc" | "desc";
|
|
51635
|
-
}[] | undefined;
|
|
51636
|
-
partitionBy?: string[] | undefined;
|
|
51637
|
-
frame?: {
|
|
51638
|
-
type?: "rows" | "range" | undefined;
|
|
51639
|
-
start?: string | undefined;
|
|
51640
|
-
end?: string | undefined;
|
|
51641
|
-
} | undefined;
|
|
51642
|
-
};
|
|
51643
|
-
field?: string | undefined;
|
|
51644
|
-
}, {
|
|
51645
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
51646
|
-
alias: string;
|
|
51647
|
-
over: {
|
|
51648
|
-
orderBy?: {
|
|
51649
|
-
field: string;
|
|
51650
|
-
order?: "asc" | "desc" | undefined;
|
|
51651
|
-
}[] | undefined;
|
|
51652
|
-
partitionBy?: string[] | undefined;
|
|
51653
|
-
frame?: {
|
|
51654
|
-
type?: "rows" | "range" | undefined;
|
|
51655
|
-
start?: string | undefined;
|
|
51656
|
-
end?: string | undefined;
|
|
51657
|
-
} | undefined;
|
|
51658
|
-
};
|
|
51659
|
-
field?: string | undefined;
|
|
51660
|
-
}>, "many">>;
|
|
51661
|
-
distinct: z.ZodOptional<z.ZodBoolean>;
|
|
51662
|
-
}, "strip", z.ZodTypeAny, {
|
|
51663
|
-
object: string;
|
|
51664
|
-
where?: FilterCondition | undefined;
|
|
51665
|
-
distinct?: boolean | undefined;
|
|
51666
|
-
fields?: any[] | undefined;
|
|
51667
|
-
search?: {
|
|
51668
|
-
query: string;
|
|
51669
|
-
fuzzy: boolean;
|
|
51670
|
-
operator: "and" | "or";
|
|
51671
|
-
highlight: boolean;
|
|
51672
|
-
fields?: string[] | undefined;
|
|
51673
|
-
boost?: Record<string, number> | undefined;
|
|
51674
|
-
minScore?: number | undefined;
|
|
51675
|
-
language?: string | undefined;
|
|
51676
|
-
} | undefined;
|
|
51677
|
-
orderBy?: {
|
|
51678
|
-
field: string;
|
|
51679
|
-
order: "asc" | "desc";
|
|
51680
|
-
}[] | undefined;
|
|
51681
|
-
limit?: number | undefined;
|
|
51682
|
-
offset?: number | undefined;
|
|
51683
|
-
cursor?: Record<string, any> | undefined;
|
|
51684
|
-
joins?: any[] | undefined;
|
|
51685
|
-
aggregations?: {
|
|
51686
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
51687
|
-
alias: string;
|
|
51688
|
-
filter?: FilterCondition | undefined;
|
|
51689
|
-
field?: string | undefined;
|
|
51690
|
-
distinct?: boolean | undefined;
|
|
51691
|
-
}[] | undefined;
|
|
51692
|
-
groupBy?: string[] | undefined;
|
|
51693
|
-
having?: FilterCondition | undefined;
|
|
51694
|
-
windowFunctions?: {
|
|
51695
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
51696
|
-
alias: string;
|
|
51697
|
-
over: {
|
|
51698
|
-
orderBy?: {
|
|
51699
|
-
field: string;
|
|
51700
|
-
order: "asc" | "desc";
|
|
51701
|
-
}[] | undefined;
|
|
51702
|
-
partitionBy?: string[] | undefined;
|
|
51703
|
-
frame?: {
|
|
51704
|
-
type?: "rows" | "range" | undefined;
|
|
51705
|
-
start?: string | undefined;
|
|
51706
|
-
end?: string | undefined;
|
|
51707
|
-
} | undefined;
|
|
51708
|
-
};
|
|
51709
|
-
field?: string | undefined;
|
|
51710
|
-
}[] | undefined;
|
|
51711
|
-
}, {
|
|
51712
|
-
object: string;
|
|
51713
|
-
where?: FilterCondition | undefined;
|
|
51714
|
-
distinct?: boolean | undefined;
|
|
51715
|
-
fields?: any[] | undefined;
|
|
51716
|
-
search?: {
|
|
51717
|
-
query: string;
|
|
51718
|
-
fields?: string[] | undefined;
|
|
51719
|
-
fuzzy?: boolean | undefined;
|
|
51720
|
-
operator?: "and" | "or" | undefined;
|
|
51721
|
-
boost?: Record<string, number> | undefined;
|
|
51722
|
-
minScore?: number | undefined;
|
|
51723
|
-
language?: string | undefined;
|
|
51724
|
-
highlight?: boolean | undefined;
|
|
51725
|
-
} | undefined;
|
|
51726
|
-
orderBy?: {
|
|
51727
|
-
field: string;
|
|
51728
|
-
order?: "asc" | "desc" | undefined;
|
|
51729
|
-
}[] | undefined;
|
|
51730
|
-
limit?: number | undefined;
|
|
51731
|
-
offset?: number | undefined;
|
|
51732
|
-
cursor?: Record<string, any> | undefined;
|
|
51733
|
-
joins?: any[] | undefined;
|
|
51734
|
-
aggregations?: {
|
|
51735
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
51736
|
-
alias: string;
|
|
51737
|
-
filter?: FilterCondition | undefined;
|
|
51738
|
-
field?: string | undefined;
|
|
51739
|
-
distinct?: boolean | undefined;
|
|
51740
|
-
}[] | undefined;
|
|
51741
|
-
groupBy?: string[] | undefined;
|
|
51742
|
-
having?: FilterCondition | undefined;
|
|
51743
|
-
windowFunctions?: {
|
|
51744
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
51745
|
-
alias: string;
|
|
51746
|
-
over: {
|
|
51747
|
-
orderBy?: {
|
|
51748
|
-
field: string;
|
|
51749
|
-
order?: "asc" | "desc" | undefined;
|
|
51750
|
-
}[] | undefined;
|
|
51751
|
-
partitionBy?: string[] | undefined;
|
|
51752
|
-
frame?: {
|
|
51753
|
-
type?: "rows" | "range" | undefined;
|
|
51754
|
-
start?: string | undefined;
|
|
51755
|
-
end?: string | undefined;
|
|
51756
|
-
} | undefined;
|
|
51757
|
-
};
|
|
51758
|
-
field?: string | undefined;
|
|
51759
|
-
}[] | undefined;
|
|
51760
|
-
}>>;
|
|
50659
|
+
query: z.ZodOptional<z.ZodType<QueryAST, z.ZodTypeDef, QueryInput>>;
|
|
51761
50660
|
}, "strip", z.ZodTypeAny, {
|
|
51762
50661
|
object: string;
|
|
51763
|
-
query?:
|
|
51764
|
-
object: string;
|
|
51765
|
-
where?: FilterCondition | undefined;
|
|
51766
|
-
distinct?: boolean | undefined;
|
|
51767
|
-
fields?: any[] | undefined;
|
|
51768
|
-
search?: {
|
|
51769
|
-
query: string;
|
|
51770
|
-
fuzzy: boolean;
|
|
51771
|
-
operator: "and" | "or";
|
|
51772
|
-
highlight: boolean;
|
|
51773
|
-
fields?: string[] | undefined;
|
|
51774
|
-
boost?: Record<string, number> | undefined;
|
|
51775
|
-
minScore?: number | undefined;
|
|
51776
|
-
language?: string | undefined;
|
|
51777
|
-
} | undefined;
|
|
51778
|
-
orderBy?: {
|
|
51779
|
-
field: string;
|
|
51780
|
-
order: "asc" | "desc";
|
|
51781
|
-
}[] | undefined;
|
|
51782
|
-
limit?: number | undefined;
|
|
51783
|
-
offset?: number | undefined;
|
|
51784
|
-
cursor?: Record<string, any> | undefined;
|
|
51785
|
-
joins?: any[] | undefined;
|
|
51786
|
-
aggregations?: {
|
|
51787
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
51788
|
-
alias: string;
|
|
51789
|
-
filter?: FilterCondition | undefined;
|
|
51790
|
-
field?: string | undefined;
|
|
51791
|
-
distinct?: boolean | undefined;
|
|
51792
|
-
}[] | undefined;
|
|
51793
|
-
groupBy?: string[] | undefined;
|
|
51794
|
-
having?: FilterCondition | undefined;
|
|
51795
|
-
windowFunctions?: {
|
|
51796
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
51797
|
-
alias: string;
|
|
51798
|
-
over: {
|
|
51799
|
-
orderBy?: {
|
|
51800
|
-
field: string;
|
|
51801
|
-
order: "asc" | "desc";
|
|
51802
|
-
}[] | undefined;
|
|
51803
|
-
partitionBy?: string[] | undefined;
|
|
51804
|
-
frame?: {
|
|
51805
|
-
type?: "rows" | "range" | undefined;
|
|
51806
|
-
start?: string | undefined;
|
|
51807
|
-
end?: string | undefined;
|
|
51808
|
-
} | undefined;
|
|
51809
|
-
};
|
|
51810
|
-
field?: string | undefined;
|
|
51811
|
-
}[] | undefined;
|
|
51812
|
-
} | undefined;
|
|
50662
|
+
query?: QueryAST | undefined;
|
|
51813
50663
|
}, {
|
|
51814
50664
|
object: string;
|
|
51815
|
-
query?:
|
|
51816
|
-
object: string;
|
|
51817
|
-
where?: FilterCondition | undefined;
|
|
51818
|
-
distinct?: boolean | undefined;
|
|
51819
|
-
fields?: any[] | undefined;
|
|
51820
|
-
search?: {
|
|
51821
|
-
query: string;
|
|
51822
|
-
fields?: string[] | undefined;
|
|
51823
|
-
fuzzy?: boolean | undefined;
|
|
51824
|
-
operator?: "and" | "or" | undefined;
|
|
51825
|
-
boost?: Record<string, number> | undefined;
|
|
51826
|
-
minScore?: number | undefined;
|
|
51827
|
-
language?: string | undefined;
|
|
51828
|
-
highlight?: boolean | undefined;
|
|
51829
|
-
} | undefined;
|
|
51830
|
-
orderBy?: {
|
|
51831
|
-
field: string;
|
|
51832
|
-
order?: "asc" | "desc" | undefined;
|
|
51833
|
-
}[] | undefined;
|
|
51834
|
-
limit?: number | undefined;
|
|
51835
|
-
offset?: number | undefined;
|
|
51836
|
-
cursor?: Record<string, any> | undefined;
|
|
51837
|
-
joins?: any[] | undefined;
|
|
51838
|
-
aggregations?: {
|
|
51839
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
51840
|
-
alias: string;
|
|
51841
|
-
filter?: FilterCondition | undefined;
|
|
51842
|
-
field?: string | undefined;
|
|
51843
|
-
distinct?: boolean | undefined;
|
|
51844
|
-
}[] | undefined;
|
|
51845
|
-
groupBy?: string[] | undefined;
|
|
51846
|
-
having?: FilterCondition | undefined;
|
|
51847
|
-
windowFunctions?: {
|
|
51848
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
51849
|
-
alias: string;
|
|
51850
|
-
over: {
|
|
51851
|
-
orderBy?: {
|
|
51852
|
-
field: string;
|
|
51853
|
-
order?: "asc" | "desc" | undefined;
|
|
51854
|
-
}[] | undefined;
|
|
51855
|
-
partitionBy?: string[] | undefined;
|
|
51856
|
-
frame?: {
|
|
51857
|
-
type?: "rows" | "range" | undefined;
|
|
51858
|
-
start?: string | undefined;
|
|
51859
|
-
end?: string | undefined;
|
|
51860
|
-
} | undefined;
|
|
51861
|
-
};
|
|
51862
|
-
field?: string | undefined;
|
|
51863
|
-
}[] | undefined;
|
|
51864
|
-
} | undefined;
|
|
50665
|
+
query?: QueryInput | undefined;
|
|
51865
50666
|
}>], z.ZodUnknown>, z.ZodPromise<z.ZodObject<{
|
|
51866
50667
|
object: z.ZodString;
|
|
51867
50668
|
records: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">;
|
|
@@ -53275,56 +52076,7 @@ declare const ObjectStackProtocolSchema: z.ZodObject<{
|
|
|
53275
52076
|
}>;
|
|
53276
52077
|
findData: (args_0: {
|
|
53277
52078
|
object: string;
|
|
53278
|
-
query?:
|
|
53279
|
-
object: string;
|
|
53280
|
-
where?: FilterCondition | undefined;
|
|
53281
|
-
distinct?: boolean | undefined;
|
|
53282
|
-
fields?: any[] | undefined;
|
|
53283
|
-
search?: {
|
|
53284
|
-
query: string;
|
|
53285
|
-
fields?: string[] | undefined;
|
|
53286
|
-
fuzzy?: boolean | undefined;
|
|
53287
|
-
operator?: "and" | "or" | undefined;
|
|
53288
|
-
boost?: Record<string, number> | undefined;
|
|
53289
|
-
minScore?: number | undefined;
|
|
53290
|
-
language?: string | undefined;
|
|
53291
|
-
highlight?: boolean | undefined;
|
|
53292
|
-
} | undefined;
|
|
53293
|
-
orderBy?: {
|
|
53294
|
-
field: string;
|
|
53295
|
-
order?: "asc" | "desc" | undefined;
|
|
53296
|
-
}[] | undefined;
|
|
53297
|
-
limit?: number | undefined;
|
|
53298
|
-
offset?: number | undefined;
|
|
53299
|
-
cursor?: Record<string, any> | undefined;
|
|
53300
|
-
joins?: any[] | undefined;
|
|
53301
|
-
aggregations?: {
|
|
53302
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
53303
|
-
alias: string;
|
|
53304
|
-
filter?: FilterCondition | undefined;
|
|
53305
|
-
field?: string | undefined;
|
|
53306
|
-
distinct?: boolean | undefined;
|
|
53307
|
-
}[] | undefined;
|
|
53308
|
-
groupBy?: string[] | undefined;
|
|
53309
|
-
having?: FilterCondition | undefined;
|
|
53310
|
-
windowFunctions?: {
|
|
53311
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
53312
|
-
alias: string;
|
|
53313
|
-
over: {
|
|
53314
|
-
orderBy?: {
|
|
53315
|
-
field: string;
|
|
53316
|
-
order?: "asc" | "desc" | undefined;
|
|
53317
|
-
}[] | undefined;
|
|
53318
|
-
partitionBy?: string[] | undefined;
|
|
53319
|
-
frame?: {
|
|
53320
|
-
type?: "rows" | "range" | undefined;
|
|
53321
|
-
start?: string | undefined;
|
|
53322
|
-
end?: string | undefined;
|
|
53323
|
-
} | undefined;
|
|
53324
|
-
};
|
|
53325
|
-
field?: string | undefined;
|
|
53326
|
-
}[] | undefined;
|
|
53327
|
-
} | undefined;
|
|
52079
|
+
query?: QueryInput | undefined;
|
|
53328
52080
|
}, ...args: unknown[]) => Promise<{
|
|
53329
52081
|
object: string;
|
|
53330
52082
|
records: Record<string, any>[];
|
|
@@ -54134,56 +52886,7 @@ declare const ObjectStackProtocolSchema: z.ZodObject<{
|
|
|
54134
52886
|
}>;
|
|
54135
52887
|
findData: (args_0: {
|
|
54136
52888
|
object: string;
|
|
54137
|
-
query?:
|
|
54138
|
-
object: string;
|
|
54139
|
-
where?: FilterCondition | undefined;
|
|
54140
|
-
distinct?: boolean | undefined;
|
|
54141
|
-
fields?: any[] | undefined;
|
|
54142
|
-
search?: {
|
|
54143
|
-
query: string;
|
|
54144
|
-
fuzzy: boolean;
|
|
54145
|
-
operator: "and" | "or";
|
|
54146
|
-
highlight: boolean;
|
|
54147
|
-
fields?: string[] | undefined;
|
|
54148
|
-
boost?: Record<string, number> | undefined;
|
|
54149
|
-
minScore?: number | undefined;
|
|
54150
|
-
language?: string | undefined;
|
|
54151
|
-
} | undefined;
|
|
54152
|
-
orderBy?: {
|
|
54153
|
-
field: string;
|
|
54154
|
-
order: "asc" | "desc";
|
|
54155
|
-
}[] | undefined;
|
|
54156
|
-
limit?: number | undefined;
|
|
54157
|
-
offset?: number | undefined;
|
|
54158
|
-
cursor?: Record<string, any> | undefined;
|
|
54159
|
-
joins?: any[] | undefined;
|
|
54160
|
-
aggregations?: {
|
|
54161
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "count_distinct" | "array_agg" | "string_agg";
|
|
54162
|
-
alias: string;
|
|
54163
|
-
filter?: FilterCondition | undefined;
|
|
54164
|
-
field?: string | undefined;
|
|
54165
|
-
distinct?: boolean | undefined;
|
|
54166
|
-
}[] | undefined;
|
|
54167
|
-
groupBy?: string[] | undefined;
|
|
54168
|
-
having?: FilterCondition | undefined;
|
|
54169
|
-
windowFunctions?: {
|
|
54170
|
-
function: "count" | "sum" | "avg" | "min" | "max" | "row_number" | "rank" | "dense_rank" | "percent_rank" | "lag" | "lead" | "first_value" | "last_value";
|
|
54171
|
-
alias: string;
|
|
54172
|
-
over: {
|
|
54173
|
-
orderBy?: {
|
|
54174
|
-
field: string;
|
|
54175
|
-
order: "asc" | "desc";
|
|
54176
|
-
}[] | undefined;
|
|
54177
|
-
partitionBy?: string[] | undefined;
|
|
54178
|
-
frame?: {
|
|
54179
|
-
type?: "rows" | "range" | undefined;
|
|
54180
|
-
start?: string | undefined;
|
|
54181
|
-
end?: string | undefined;
|
|
54182
|
-
} | undefined;
|
|
54183
|
-
};
|
|
54184
|
-
field?: string | undefined;
|
|
54185
|
-
}[] | undefined;
|
|
54186
|
-
} | undefined;
|
|
52889
|
+
query?: QueryAST | undefined;
|
|
54187
52890
|
}, ...args: unknown[]) => Promise<{
|
|
54188
52891
|
object: string;
|
|
54189
52892
|
records: Record<string, any>[];
|