@ronin/compiler 0.12.1-leo-ron-1071-experimental-250 → 0.12.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
|
3
3
|
declare const QueryTypeEnum: z.ZodEnum<["get", "set", "add", "remove", "count"]>;
|
4
|
-
declare const ModelQueryTypeEnum: z.ZodEnum<["create", "alter", "drop"]>;
|
5
4
|
declare const ExpressionSchema: z.ZodObject<{
|
6
5
|
__RONIN_EXPRESSION: z.ZodString;
|
7
6
|
}, "strip", z.ZodTypeAny, {
|
@@ -15407,7 +15406,7 @@ type QueryInstructionType = z.infer<typeof InstructionSchema>;
|
|
15407
15406
|
*/
|
15408
15407
|
type CombinedInstructions = z.infer<typeof InstructionsSchema>;
|
15409
15408
|
type Query = z.infer<typeof QuerySchema>;
|
15410
|
-
type QueryType = z.infer<typeof QueryTypeEnum
|
15409
|
+
type QueryType = z.infer<typeof QueryTypeEnum>;
|
15411
15410
|
type QuerySchemaType = z.infer<typeof QuerySchemaSchema>;
|
15412
15411
|
interface Statement {
|
15413
15412
|
statement: string;
|