vona-module-a-openapi 5.0.19 → 5.0.20
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/types/rest.d.ts +1 -1
- package/package.json +1 -1
package/dist/types/rest.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export type TypeFieldRenderComponentProvider = (keyof IComponentRecord) | (keyof
|
|
|
30
30
|
export type TypeSchemaScene = 'table' | 'form';
|
|
31
31
|
export type TypeOpenAPIMetadata<T extends ZodTypeAny = ZodTypeAny> = Partial<ZodOpenAPIMetadata<z.input<T>>>;
|
|
32
32
|
export type TypeEntityOptionsFields<T extends {}, More extends string | undefined = never> = {
|
|
33
|
-
[key in ((keyof
|
|
33
|
+
[key in ((keyof T) | (More extends string ? More : never))]?: TypeOpenAPIMetadata | z.ZodSchema;
|
|
34
34
|
};
|
|
35
35
|
export type TypeControllerOptionsActions<T extends {}> = {
|
|
36
36
|
[key in (keyof T)]?: IOpenApiOptions;
|