@zenstackhq/orm 3.8.0-beta.2 → 3.8.0
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 +20 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.mts +7 -2
- package/dist/index.mjs +206 -189
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/dist/index.d.cts
CHANGED
|
@@ -3240,6 +3240,11 @@ declare class ZodSchemaFactory<in out Schema extends SchemaDef, in out Options e
|
|
|
3240
3240
|
private makeSelectSchema;
|
|
3241
3241
|
private makeCountSelectionSchema;
|
|
3242
3242
|
private makeRelationSelectIncludeSchema;
|
|
3243
|
+
/**
|
|
3244
|
+
* Determines whether a field is configured to be omitted at the schema or client-options level
|
|
3245
|
+
* (query-level omit is excluded as it's mutually exclusive with `select`).
|
|
3246
|
+
*/
|
|
3247
|
+
private isFieldOmittedByConfig;
|
|
3243
3248
|
private makeOmitSchema;
|
|
3244
3249
|
private addExtResultFields;
|
|
3245
3250
|
private makeIncludeSchema;
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AnyNull, AnyNullClass, DbNull, DbNullClass, JsonArray, JsonNull, JsonNullClass, JsonNullValues, JsonObject, JsonValue } from "./common-types.mjs";
|
|
2
2
|
import * as _$kysely from "kysely";
|
|
3
3
|
import { AddColumnNode, AddConstraintNode, AddIndexNode, AddValueNode, AggregateFunctionNode, AliasNode, AliasableExpression, AlterColumnNode, AlterTableNode, AlterTypeNode, AndNode, BinaryOperationNode, CaseNode, CastNode, CheckConstraintNode, CollateNode, ColumnDefinitionNode, ColumnNode, ColumnUpdateNode, CommonTableExpressionNameNode, CommonTableExpressionNode, CreateIndexNode, CreateSchemaNode, CreateTableNode, CreateTypeNode, CreateViewNode, DataTypeNode, DefaultInsertValueNode, DefaultValueNode, DeleteQueryNode, Dialect, DropColumnNode, DropConstraintNode, DropIndexNode, DropSchemaNode, DropTableNode, DropTypeNode, DropViewNode, ExplainNode, Expression, ExpressionBuilder, ExpressionWrapper, FetchNode, ForeignKeyConstraintNode, FromNode, FunctionNode, Generated, GeneratedNode, GroupByItemNode, GroupByNode, HavingNode, IdentifierNode, InsertQueryNode, JSONOperatorChainNode, JSONPathLegNode, JSONPathNode, JSONReferenceNode, JoinNode, Kysely, KyselyConfig, LimitNode, ListNode, MatchedNode, MergeQueryNode, ModifyColumnNode, OffsetNode, OnConflictNode, OnDuplicateKeyNode, OnNode, OperandExpression, OperationNode, OperationNodeVisitor, OperatorNode, OrActionNode, OrNode, OrderByItemNode, OrderByNode, OutputNode, OverNode, ParensNode, PartitionByItemNode, PartitionByNode, PrimaryKeyConstraintNode, PrimitiveValueListNode, QueryId, QueryResult, RawNode, ReferenceNode, ReferencesNode, RefreshMaterializedViewNode, RenameColumnNode, RenameConstraintNode, RenameValueNode, ReturningNode, RootOperationNode, SchemableIdentifierNode, SelectAllNode, SelectModifierNode, SelectQueryBuilder, SelectQueryNode, SelectionNode, SetOperationNode, SqlBool, TableNode, TopNode, TupleNode, UnaryOperationNode, UniqueConstraintNode, UnknownRow, UpdateQueryNode, UsingNode, ValueListNode, ValueNode, ValuesNode, WhenNode, WhereNode, WithNode } from "kysely";
|
|
4
|
-
import { ZodType, z } from "zod";
|
|
4
|
+
import { ZodType, z as z$1 } from "zod";
|
|
5
5
|
import * as _$_zenstackhq_schema0 from "@zenstackhq/schema";
|
|
6
6
|
import { ArrayExpression, BinaryExpression, BindingExpression, BuiltinType, CallExpression, DataSourceProviderType, Expression as Expression$1, FieldDef, FieldExpression, FieldHasDefault, FieldIsArray, FieldIsDelegateDiscriminator, FieldIsRelation, FieldType, ForeignKeyFields, GetEnum, GetEnums, GetModel, GetModelDelegateMapValue, GetModelDiscriminator, GetModelField, GetModelFieldType, GetModelFields, GetModels, GetSubModels, GetTypeDefField, GetTypeDefFieldType, GetTypeDefFields, GetTypeDefs, IsDelegateModel, LiteralExpression, MemberExpression, ModelDef, ModelFieldIsOptional, NonRelationFields, NullExpression, ProcedureDef, RelationFieldType, RelationFields, RelationInfo, ScalarFields, SchemaDef, ThisExpression, TypeDefFieldIsArray, TypeDefFieldIsOptional, UnaryExpression, UpdatedAtInfo } from "@zenstackhq/schema";
|
|
7
7
|
import Decimal from "decimal.js";
|
|
@@ -3202,7 +3202,7 @@ declare class ZodSchemaFactory<in out Schema extends SchemaDef, in out Options e
|
|
|
3202
3202
|
* before serialization.
|
|
3203
3203
|
*/
|
|
3204
3204
|
toJSONSchema(): {
|
|
3205
|
-
schemas: Record<string, z.core.JSONSchema.BaseSchema>;
|
|
3205
|
+
schemas: Record<string, z$1.core.JSONSchema.BaseSchema>;
|
|
3206
3206
|
};
|
|
3207
3207
|
get cacheStats(): {
|
|
3208
3208
|
size: number;
|
|
@@ -3240,6 +3240,11 @@ declare class ZodSchemaFactory<in out Schema extends SchemaDef, in out Options e
|
|
|
3240
3240
|
private makeSelectSchema;
|
|
3241
3241
|
private makeCountSelectionSchema;
|
|
3242
3242
|
private makeRelationSelectIncludeSchema;
|
|
3243
|
+
/**
|
|
3244
|
+
* Determines whether a field is configured to be omitted at the schema or client-options level
|
|
3245
|
+
* (query-level omit is excluded as it's mutually exclusive with `select`).
|
|
3246
|
+
*/
|
|
3247
|
+
private isFieldOmittedByConfig;
|
|
3243
3248
|
private makeOmitSchema;
|
|
3244
3249
|
private addExtResultFields;
|
|
3245
3250
|
private makeIncludeSchema;
|