| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**
- * Projection schema.
- */
- export type ProjectionSchema = {
- [property: string]: boolean | ProjectionSchemaPropertyOptions | undefined;
- };
- /**
- * Projection schema name.
- */
- export type ProjectionSchemaName = string;
- /**
- * Projection schema factory.
- */
- export type ProjectionSchemaFactory = () =>
- | ProjectionSchema
- | ProjectionSchemaName;
- /**
- * Projection schema property options.
- */
- export type ProjectionSchemaPropertyOptions = {
- select?: boolean;
- scopes?: ProjectionSchemaScopes;
- schema?: ProjectionSchema | ProjectionSchemaFactory | ProjectionSchemaName;
- };
- /**
- * Projection schema scopes.
- */
- export type ProjectionSchemaScopes = {
- [scope: string]: boolean | ProjectionSchemaScopeOptions | undefined;
- };
- /**
- * Projection schema scope options.
- */
- export type ProjectionSchemaScopeOptions = {
- select?: boolean;
- };
|