@emeryld/rrroutes-openapi 2.6.2 → 2.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/public/assets/Add.js +1 -0
- package/dist/public/assets/Autocomplete.js +1 -0
- package/dist/public/assets/BaseFilterBar.js +1 -0
- package/dist/public/assets/BentoGrid.js +1 -0
- package/dist/public/assets/CacheLogsPage.js +1 -0
- package/dist/public/assets/DeleteOutline.js +1 -0
- package/dist/public/assets/DiffPage.js +7 -0
- package/dist/public/assets/Download.js +1 -0
- package/dist/public/assets/EndpointDetailPage.js +1 -0
- package/dist/public/assets/EndpointDetailPanel.js +1 -0
- package/dist/public/assets/EndpointPlaygroundPage.js +1 -0
- package/dist/public/assets/ExpandLess.js +1 -0
- package/dist/public/assets/ExportButton.js +2 -0
- package/dist/public/assets/FlowBuilderPage.js +20 -0
- package/dist/public/assets/HistoryPage.js +1 -0
- package/dist/public/assets/LogsPage.js +1 -0
- package/dist/public/assets/PageContainer.js +3 -0
- package/dist/public/assets/PlayArrow.js +1 -0
- package/dist/public/assets/PresetsPage.js +4 -0
- package/dist/public/assets/RoutesPage.js +1 -0
- package/dist/public/assets/SchedulingPage.js +1 -0
- package/dist/public/assets/SchemaTreeView.js +1 -0
- package/dist/public/assets/SettingsPage.js +1 -0
- package/dist/public/assets/SocketsPage.js +1 -0
- package/dist/public/assets/docs.css +1 -1
- package/dist/public/assets/docs.js +95 -177
- package/dist/public/assets/filterTypes.js +1 -0
- package/dist/public/assets/getValidReactChildren.js +1 -0
- package/dist/public/assets/kvRowAdapters.js +1 -0
- package/dist/public/assets/schemaDefaults.js +1 -0
- package/dist/public/assets/useEndpointOptions.js +1 -0
- package/dist/public/assets/useQueryState.js +1 -0
- package/dist/public/assets/vendor-recharts.js +99 -0
- package/dist/public/assets/vendor-xyflow.js +15 -0
- package/dist/web/v2/AppShell.d.ts +1 -3
- package/dist/web/v2/components/diff/DiffViewer.d.ts +7 -0
- package/dist/web/v2/components/diff/RequestDiffSelector.d.ts +15 -0
- package/dist/web/v2/components/diff/SchemaDiffViewer.d.ts +7 -0
- package/dist/web/v2/components/feedback/CopyAsMenu.d.ts +10 -0
- package/dist/web/v2/components/feedback/CopySnackbar.d.ts +1 -0
- package/dist/web/v2/components/flows/FlowCanvas.d.ts +13 -0
- package/dist/web/v2/components/flows/FlowNodeEditor.d.ts +8 -0
- package/dist/web/v2/components/flows/FlowRunProgress.d.ts +7 -0
- package/dist/web/v2/components/flows/FlowVariablePanel.d.ts +7 -0
- package/dist/web/v2/components/flows/nodes/ConditionNode.d.ts +7 -0
- package/dist/web/v2/components/flows/nodes/DelayNode.d.ts +7 -0
- package/dist/web/v2/components/flows/nodes/ExtractNode.d.ts +8 -0
- package/dist/web/v2/components/flows/nodes/RequestNode.d.ts +10 -0
- package/dist/web/v2/components/layout/ActivityBar.d.ts +1 -0
- package/dist/web/v2/components/layout/BentoGrid.d.ts +17 -0
- package/dist/web/v2/components/layout/ContentArea.d.ts +1 -0
- package/dist/web/v2/components/layout/PanelRegistry.d.ts +17 -0
- package/dist/web/v2/components/request/LastRunPanel.d.ts +5 -0
- package/dist/web/v2/components/request/TimingBreakdown.d.ts +11 -0
- package/dist/web/v2/components/requests/timeline/TimelinePhaseBar.d.ts +13 -0
- package/dist/web/v2/components/requests/timeline/TimelineWaterfall.d.ts +12 -0
- package/dist/web/v2/hooks/useLeafEndpoint.d.ts +2 -2
- package/dist/web/v2/pages/DiffPage.d.ts +1 -0
- package/dist/web/v2/pages/FlowBuilderPage.d.ts +1 -0
- package/dist/web/v2/stores/flowStore.d.ts +70 -0
- package/dist/web/v2/stores/layoutStore.d.ts +13 -0
- package/dist/web/v2/stores/playgroundSettingsStore.d.ts +10 -0
- package/dist/web/v2/stores/snackbarStore.d.ts +17 -0
- package/dist/web/v2/types/types.cacheLog.d.ts +135 -49
- package/dist/web/v2/types/types.endpoint.d.ts +195 -139
- package/dist/web/v2/types/types.log.d.ts +48 -19
- package/dist/web/v2/types/types.preset.d.ts +168 -84
- package/dist/web/v2/types/types.requestLog.d.ts +135 -90
- package/dist/web/v2/types/types.scheduling.d.ts +87 -37
- package/dist/web/v2/types/types.socket.d.ts +69 -33
- package/dist/web/v2/utils/codeGeneration.d.ts +12 -0
- package/dist/web/v2/utils/diffUtils.d.ts +11 -0
- package/dist/web/v2/utils/flowRunner.d.ts +17 -0
- package/dist/web/v2/utils/templateResolver.d.ts +4 -0
- package/package.json +15 -12
|
@@ -194,40 +194,68 @@ export declare const presetLeaves: readonly [{
|
|
|
194
194
|
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
195
195
|
nextCursor: z.ZodOptional<z.ZodString>;
|
|
196
196
|
}, z.core.$strip>;
|
|
197
|
-
}>> & {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
197
|
+
}>> & import("@emeryld/rrroutes-contract").OutputField<import("@emeryld/rrroutes-contract").Prettify<Omit<{
|
|
198
|
+
feed: true;
|
|
199
|
+
querySchema: z.ZodObject<{
|
|
200
|
+
beforeDate: z.ZodOptional<z.ZodString>;
|
|
201
|
+
afterDate: z.ZodOptional<z.ZodString>;
|
|
202
|
+
orderBy: z.ZodOptional<z.ZodString>;
|
|
203
|
+
orderDirection: z.ZodOptional<z.ZodEnum<{
|
|
204
|
+
asc: "asc";
|
|
205
|
+
desc: "desc";
|
|
206
|
+
}>>;
|
|
207
|
+
searchQuery: z.ZodOptional<z.ZodString>;
|
|
208
|
+
groupsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
209
|
+
groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
210
|
+
tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
211
|
+
tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
212
|
+
nameInclude: z.ZodOptional<z.ZodString>;
|
|
213
|
+
nameExclude: z.ZodOptional<z.ZodString>;
|
|
214
|
+
}, z.core.$strip>;
|
|
215
|
+
outputMetaSchema: z.ZodObject<{
|
|
216
|
+
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
217
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
218
|
+
}, z.core.$strip>;
|
|
219
|
+
outputSchema: z.ZodArray<z.ZodObject<{
|
|
220
|
+
id: z.ZodString;
|
|
221
|
+
name: z.ZodString;
|
|
222
|
+
description: z.ZodOptional<z.ZodString>;
|
|
223
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
224
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
225
|
+
createdAt: z.ZodNumber;
|
|
226
|
+
updatedAt: z.ZodNumber;
|
|
227
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
201
228
|
name: z.ZodString;
|
|
202
229
|
description: z.ZodOptional<z.ZodString>;
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
patch: "patch";
|
|
217
|
-
delete: "delete";
|
|
218
|
-
}>;
|
|
219
|
-
path: z.ZodString;
|
|
220
|
-
body: z.ZodOptional<z.ZodJSONSchema>;
|
|
221
|
-
extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
222
|
-
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
223
|
-
}, z.core.$strip>>;
|
|
230
|
+
stepNumber: z.ZodNumber;
|
|
231
|
+
endpointId: z.ZodOptional<z.ZodString>;
|
|
232
|
+
method: z.ZodEnum<{
|
|
233
|
+
get: "get";
|
|
234
|
+
post: "post";
|
|
235
|
+
put: "put";
|
|
236
|
+
patch: "patch";
|
|
237
|
+
delete: "delete";
|
|
238
|
+
}>;
|
|
239
|
+
path: z.ZodString;
|
|
240
|
+
body: z.ZodOptional<z.ZodJSONSchema>;
|
|
241
|
+
extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
242
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
224
243
|
}, z.core.$strip>>;
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
244
|
+
}, z.core.$strip>>;
|
|
245
|
+
queryExtensionSchema: z.ZodObject<{
|
|
246
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
247
|
+
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
229
248
|
}, z.core.$strip>;
|
|
230
|
-
} & {
|
|
249
|
+
}, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
250
|
+
queryExtensionSchema: z.ZodObject<{
|
|
251
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
252
|
+
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
253
|
+
}, z.core.$strip>;
|
|
254
|
+
outputMetaSchema: z.ZodObject<{
|
|
255
|
+
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
256
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
257
|
+
}, z.core.$strip>;
|
|
258
|
+
}>> & {
|
|
231
259
|
paramsSchema: undefined;
|
|
232
260
|
}>, "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema"> & {
|
|
233
261
|
bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown> | undefined;
|
|
@@ -427,37 +455,65 @@ export declare const presetLeaves: readonly [{
|
|
|
427
455
|
feed?: boolean;
|
|
428
456
|
} & {
|
|
429
457
|
querySchema?: undefined;
|
|
430
|
-
} & {
|
|
458
|
+
} & import("@emeryld/rrroutes-contract").OutputField<import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<{
|
|
459
|
+
bodySchema: z.ZodObject<{
|
|
460
|
+
id: z.ZodString;
|
|
461
|
+
name: z.ZodString;
|
|
462
|
+
description: z.ZodOptional<z.ZodString>;
|
|
463
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
464
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
465
|
+
createdAt: z.ZodNumber;
|
|
466
|
+
updatedAt: z.ZodNumber;
|
|
467
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
468
|
+
name: z.ZodString;
|
|
469
|
+
description: z.ZodOptional<z.ZodString>;
|
|
470
|
+
stepNumber: z.ZodNumber;
|
|
471
|
+
endpointId: z.ZodOptional<z.ZodString>;
|
|
472
|
+
method: z.ZodEnum<{
|
|
473
|
+
get: "get";
|
|
474
|
+
post: "post";
|
|
475
|
+
put: "put";
|
|
476
|
+
patch: "patch";
|
|
477
|
+
delete: "delete";
|
|
478
|
+
}>;
|
|
479
|
+
path: z.ZodString;
|
|
480
|
+
body: z.ZodOptional<z.ZodJSONSchema>;
|
|
481
|
+
extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
482
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
483
|
+
}, z.core.$strip>>;
|
|
484
|
+
}, z.core.$strip>;
|
|
431
485
|
outputSchema: z.ZodObject<{
|
|
432
|
-
|
|
433
|
-
|
|
486
|
+
id: z.ZodString;
|
|
487
|
+
name: z.ZodString;
|
|
488
|
+
description: z.ZodOptional<z.ZodString>;
|
|
489
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
490
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
491
|
+
createdAt: z.ZodNumber;
|
|
492
|
+
updatedAt: z.ZodNumber;
|
|
493
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
434
494
|
name: z.ZodString;
|
|
435
495
|
description: z.ZodOptional<z.ZodString>;
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
delete: "delete";
|
|
451
|
-
}>;
|
|
452
|
-
path: z.ZodString;
|
|
453
|
-
body: z.ZodOptional<z.ZodJSONSchema>;
|
|
454
|
-
extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
455
|
-
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
456
|
-
}, z.core.$strip>>;
|
|
457
|
-
}, z.core.$strip>;
|
|
458
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
496
|
+
stepNumber: z.ZodNumber;
|
|
497
|
+
endpointId: z.ZodOptional<z.ZodString>;
|
|
498
|
+
method: z.ZodEnum<{
|
|
499
|
+
get: "get";
|
|
500
|
+
post: "post";
|
|
501
|
+
put: "put";
|
|
502
|
+
patch: "patch";
|
|
503
|
+
delete: "delete";
|
|
504
|
+
}>;
|
|
505
|
+
path: z.ZodString;
|
|
506
|
+
body: z.ZodOptional<z.ZodJSONSchema>;
|
|
507
|
+
extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
508
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
509
|
+
}, z.core.$strip>>;
|
|
459
510
|
}, z.core.$strip>;
|
|
460
|
-
} & {
|
|
511
|
+
}, "feed"> & {
|
|
512
|
+
feed: false;
|
|
513
|
+
}>, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
514
|
+
queryExtensionSchema: undefined;
|
|
515
|
+
outputMetaSchema: undefined;
|
|
516
|
+
}>> & {
|
|
461
517
|
paramsSchema: undefined;
|
|
462
518
|
}>, "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema"> & {
|
|
463
519
|
bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<{
|
|
@@ -647,37 +703,65 @@ export declare const presetLeaves: readonly [{
|
|
|
647
703
|
feed?: boolean;
|
|
648
704
|
} & {
|
|
649
705
|
querySchema?: undefined;
|
|
650
|
-
} & {
|
|
706
|
+
} & import("@emeryld/rrroutes-contract").OutputField<import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<{
|
|
707
|
+
bodySchema: z.ZodObject<{
|
|
708
|
+
id: z.ZodString;
|
|
709
|
+
name: z.ZodString;
|
|
710
|
+
description: z.ZodOptional<z.ZodString>;
|
|
711
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
712
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
713
|
+
createdAt: z.ZodNumber;
|
|
714
|
+
updatedAt: z.ZodNumber;
|
|
715
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
716
|
+
name: z.ZodString;
|
|
717
|
+
description: z.ZodOptional<z.ZodString>;
|
|
718
|
+
stepNumber: z.ZodNumber;
|
|
719
|
+
endpointId: z.ZodOptional<z.ZodString>;
|
|
720
|
+
method: z.ZodEnum<{
|
|
721
|
+
get: "get";
|
|
722
|
+
post: "post";
|
|
723
|
+
put: "put";
|
|
724
|
+
patch: "patch";
|
|
725
|
+
delete: "delete";
|
|
726
|
+
}>;
|
|
727
|
+
path: z.ZodString;
|
|
728
|
+
body: z.ZodOptional<z.ZodJSONSchema>;
|
|
729
|
+
extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
730
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
731
|
+
}, z.core.$strip>>;
|
|
732
|
+
}, z.core.$strip>;
|
|
651
733
|
outputSchema: z.ZodObject<{
|
|
652
|
-
|
|
653
|
-
|
|
734
|
+
id: z.ZodString;
|
|
735
|
+
name: z.ZodString;
|
|
736
|
+
description: z.ZodOptional<z.ZodString>;
|
|
737
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
738
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
739
|
+
createdAt: z.ZodNumber;
|
|
740
|
+
updatedAt: z.ZodNumber;
|
|
741
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
654
742
|
name: z.ZodString;
|
|
655
743
|
description: z.ZodOptional<z.ZodString>;
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
delete: "delete";
|
|
671
|
-
}>;
|
|
672
|
-
path: z.ZodString;
|
|
673
|
-
body: z.ZodOptional<z.ZodJSONSchema>;
|
|
674
|
-
extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
675
|
-
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
676
|
-
}, z.core.$strip>>;
|
|
677
|
-
}, z.core.$strip>;
|
|
678
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
744
|
+
stepNumber: z.ZodNumber;
|
|
745
|
+
endpointId: z.ZodOptional<z.ZodString>;
|
|
746
|
+
method: z.ZodEnum<{
|
|
747
|
+
get: "get";
|
|
748
|
+
post: "post";
|
|
749
|
+
put: "put";
|
|
750
|
+
patch: "patch";
|
|
751
|
+
delete: "delete";
|
|
752
|
+
}>;
|
|
753
|
+
path: z.ZodString;
|
|
754
|
+
body: z.ZodOptional<z.ZodJSONSchema>;
|
|
755
|
+
extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
756
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
757
|
+
}, z.core.$strip>>;
|
|
679
758
|
}, z.core.$strip>;
|
|
680
|
-
} & {
|
|
759
|
+
}, "feed"> & {
|
|
760
|
+
feed: false;
|
|
761
|
+
}>, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
762
|
+
queryExtensionSchema: undefined;
|
|
763
|
+
outputMetaSchema: undefined;
|
|
764
|
+
}>> & {
|
|
681
765
|
paramsSchema: undefined;
|
|
682
766
|
}>, "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema"> & {
|
|
683
767
|
bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<{
|
|
@@ -279,44 +279,89 @@ export declare const requestLogLeaves: readonly [{
|
|
|
279
279
|
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
280
280
|
nextCursor: z.ZodOptional<z.ZodString>;
|
|
281
281
|
}, z.core.$strip>;
|
|
282
|
-
}>> & {
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
282
|
+
}>> & import("@emeryld/rrroutes-contract").OutputField<import("@emeryld/rrroutes-contract").Prettify<Omit<{
|
|
283
|
+
feed: true;
|
|
284
|
+
outputSchema: z.ZodArray<z.ZodObject<{
|
|
285
|
+
id: z.ZodString;
|
|
286
|
+
name: z.ZodString;
|
|
287
|
+
description: z.ZodOptional<z.ZodString>;
|
|
288
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
289
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
290
|
+
createdAt: z.ZodNumber;
|
|
291
|
+
updatedAt: z.ZodNumber;
|
|
292
|
+
status: z.ZodNumber;
|
|
293
|
+
body: z.ZodOptional<z.ZodAny>;
|
|
294
|
+
fullUrl: z.ZodString;
|
|
295
|
+
path: z.ZodString;
|
|
296
|
+
method: z.ZodEnum<{
|
|
297
|
+
get: "get";
|
|
298
|
+
post: "post";
|
|
299
|
+
put: "put";
|
|
300
|
+
patch: "patch";
|
|
301
|
+
delete: "delete";
|
|
302
|
+
}>;
|
|
303
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
304
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
305
|
+
output: z.ZodOptional<z.ZodAny>;
|
|
306
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
307
|
+
error: z.ZodOptional<z.ZodString>;
|
|
308
|
+
durationMs: z.ZodNumber;
|
|
309
|
+
ip: z.ZodOptional<z.ZodString>;
|
|
310
|
+
userAgent: z.ZodOptional<z.ZodString>;
|
|
311
|
+
requestSize: z.ZodOptional<z.ZodNumber>;
|
|
312
|
+
responseSize: z.ZodOptional<z.ZodNumber>;
|
|
313
|
+
}, z.core.$strip>>;
|
|
314
|
+
querySchema: z.ZodObject<{
|
|
315
|
+
beforeDate: z.ZodOptional<z.ZodString>;
|
|
316
|
+
afterDate: z.ZodOptional<z.ZodString>;
|
|
317
|
+
orderBy: z.ZodOptional<z.ZodString>;
|
|
318
|
+
orderDirection: z.ZodOptional<z.ZodEnum<{
|
|
319
|
+
asc: "asc";
|
|
320
|
+
desc: "desc";
|
|
321
|
+
}>>;
|
|
322
|
+
searchQuery: z.ZodOptional<z.ZodString>;
|
|
323
|
+
groupsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
324
|
+
groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
325
|
+
tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
326
|
+
tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
327
|
+
methodsInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
328
|
+
get: "get";
|
|
329
|
+
post: "post";
|
|
330
|
+
put: "put";
|
|
331
|
+
patch: "patch";
|
|
332
|
+
delete: "delete";
|
|
333
|
+
}>>>;
|
|
334
|
+
methodsExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
335
|
+
get: "get";
|
|
336
|
+
post: "post";
|
|
337
|
+
put: "put";
|
|
338
|
+
patch: "patch";
|
|
339
|
+
delete: "delete";
|
|
340
|
+
}>>>;
|
|
341
|
+
statusesInclude: z.ZodOptional<z.ZodArray<z.ZodCoercedNumber<unknown>>>;
|
|
342
|
+
statusesExclude: z.ZodOptional<z.ZodArray<z.ZodCoercedNumber<unknown>>>;
|
|
343
|
+
path: z.ZodOptional<z.ZodString>;
|
|
344
|
+
endpointKeysInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
345
|
+
endpointKeysExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
318
346
|
}, z.core.$strip>;
|
|
319
|
-
|
|
347
|
+
outputMetaSchema: z.ZodObject<{
|
|
348
|
+
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
349
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
350
|
+
}, z.core.$strip>;
|
|
351
|
+
queryExtensionSchema: z.ZodObject<{
|
|
352
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
353
|
+
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
354
|
+
}, z.core.$strip>;
|
|
355
|
+
}, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
356
|
+
queryExtensionSchema: z.ZodObject<{
|
|
357
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
358
|
+
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
359
|
+
}, z.core.$strip>;
|
|
360
|
+
outputMetaSchema: z.ZodObject<{
|
|
361
|
+
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
362
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
363
|
+
}, z.core.$strip>;
|
|
364
|
+
}>> & {
|
|
320
365
|
paramsSchema: undefined;
|
|
321
366
|
}>, "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema"> & {
|
|
322
367
|
bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown> | undefined;
|
|
@@ -531,9 +576,37 @@ export declare const requestLogLeaves: readonly [{
|
|
|
531
576
|
feed?: boolean;
|
|
532
577
|
} & {
|
|
533
578
|
querySchema?: undefined;
|
|
534
|
-
} & {
|
|
579
|
+
} & import("@emeryld/rrroutes-contract").OutputField<import("@emeryld/rrroutes-contract").Prettify<Omit<{
|
|
535
580
|
outputSchema: z.ZodObject<{
|
|
536
|
-
|
|
581
|
+
id: z.ZodString;
|
|
582
|
+
name: z.ZodString;
|
|
583
|
+
description: z.ZodOptional<z.ZodString>;
|
|
584
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
585
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
586
|
+
createdAt: z.ZodNumber;
|
|
587
|
+
updatedAt: z.ZodNumber;
|
|
588
|
+
status: z.ZodNumber;
|
|
589
|
+
body: z.ZodOptional<z.ZodAny>;
|
|
590
|
+
fullUrl: z.ZodString;
|
|
591
|
+
path: z.ZodString;
|
|
592
|
+
method: z.ZodEnum<{
|
|
593
|
+
get: "get";
|
|
594
|
+
post: "post";
|
|
595
|
+
put: "put";
|
|
596
|
+
patch: "patch";
|
|
597
|
+
delete: "delete";
|
|
598
|
+
}>;
|
|
599
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
600
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
601
|
+
output: z.ZodOptional<z.ZodAny>;
|
|
602
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
603
|
+
error: z.ZodOptional<z.ZodString>;
|
|
604
|
+
durationMs: z.ZodNumber;
|
|
605
|
+
ip: z.ZodOptional<z.ZodString>;
|
|
606
|
+
userAgent: z.ZodOptional<z.ZodString>;
|
|
607
|
+
requestSize: z.ZodOptional<z.ZodNumber>;
|
|
608
|
+
responseSize: z.ZodOptional<z.ZodNumber>;
|
|
609
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
537
610
|
id: z.ZodString;
|
|
538
611
|
name: z.ZodString;
|
|
539
612
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -541,58 +614,30 @@ export declare const requestLogLeaves: readonly [{
|
|
|
541
614
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
542
615
|
createdAt: z.ZodNumber;
|
|
543
616
|
updatedAt: z.ZodNumber;
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
put: "put";
|
|
552
|
-
patch: "patch";
|
|
617
|
+
level: z.ZodString;
|
|
618
|
+
meta: z.ZodOptional<z.ZodAny>;
|
|
619
|
+
}, z.core.$strip>>;
|
|
620
|
+
caches: z.ZodArray<z.ZodObject<{
|
|
621
|
+
id: z.ZodString;
|
|
622
|
+
timestamp: z.ZodNumber;
|
|
623
|
+
operation: z.ZodEnum<{
|
|
553
624
|
delete: "delete";
|
|
625
|
+
hit: "hit";
|
|
626
|
+
miss: "miss";
|
|
627
|
+
set: "set";
|
|
554
628
|
}>;
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
userAgent: z.ZodOptional<z.ZodString>;
|
|
563
|
-
requestSize: z.ZodOptional<z.ZodNumber>;
|
|
564
|
-
responseSize: z.ZodOptional<z.ZodNumber>;
|
|
565
|
-
logs: z.ZodArray<z.ZodObject<{
|
|
566
|
-
id: z.ZodString;
|
|
567
|
-
name: z.ZodString;
|
|
568
|
-
description: z.ZodOptional<z.ZodString>;
|
|
569
|
-
groupId: z.ZodOptional<z.ZodString>;
|
|
570
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
571
|
-
createdAt: z.ZodNumber;
|
|
572
|
-
updatedAt: z.ZodNumber;
|
|
573
|
-
level: z.ZodString;
|
|
574
|
-
meta: z.ZodOptional<z.ZodAny>;
|
|
575
|
-
}, z.core.$strip>>;
|
|
576
|
-
caches: z.ZodArray<z.ZodObject<{
|
|
577
|
-
id: z.ZodString;
|
|
578
|
-
timestamp: z.ZodNumber;
|
|
579
|
-
operation: z.ZodEnum<{
|
|
580
|
-
delete: "delete";
|
|
581
|
-
hit: "hit";
|
|
582
|
-
miss: "miss";
|
|
583
|
-
set: "set";
|
|
584
|
-
}>;
|
|
585
|
-
key: z.ZodString;
|
|
586
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
587
|
-
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
588
|
-
groupId: z.ZodOptional<z.ZodString>;
|
|
589
|
-
ttlMs: z.ZodOptional<z.ZodNumber>;
|
|
590
|
-
type: z.ZodOptional<z.ZodString>;
|
|
591
|
-
}, z.core.$strip>>;
|
|
592
|
-
}, z.core.$strip>;
|
|
593
|
-
meta: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
629
|
+
key: z.ZodString;
|
|
630
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
631
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
632
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
633
|
+
ttlMs: z.ZodOptional<z.ZodNumber>;
|
|
634
|
+
type: z.ZodOptional<z.ZodString>;
|
|
635
|
+
}, z.core.$strip>>;
|
|
594
636
|
}, z.core.$strip>;
|
|
595
|
-
} & {
|
|
637
|
+
}, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
638
|
+
queryExtensionSchema: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
639
|
+
outputMetaSchema: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
640
|
+
}>> & {
|
|
596
641
|
paramsSchema: z.ZodObject<{
|
|
597
642
|
requestId: z.ZodString;
|
|
598
643
|
}, z.core.$strip>;
|
|
@@ -651,7 +696,7 @@ export declare const requestLogLeaves: readonly [{
|
|
|
651
696
|
requestSize?: number | undefined;
|
|
652
697
|
responseSize?: number | undefined;
|
|
653
698
|
};
|
|
654
|
-
meta
|
|
699
|
+
meta?: string | undefined;
|
|
655
700
|
}, {
|
|
656
701
|
out: {
|
|
657
702
|
id: string;
|
|
@@ -699,7 +744,7 @@ export declare const requestLogLeaves: readonly [{
|
|
|
699
744
|
requestSize?: number | undefined;
|
|
700
745
|
responseSize?: number | undefined;
|
|
701
746
|
};
|
|
702
|
-
meta
|
|
747
|
+
meta?: string | undefined;
|
|
703
748
|
}>;
|
|
704
749
|
outputMetaSchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown>;
|
|
705
750
|
queryExtensionSchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown>;
|