sonamu 0.8.13 → 0.8.14
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/api/sonamu.d.ts.map +1 -1
- package/dist/api/sonamu.js +2 -3
- package/dist/auth/auth-generator.d.ts +8 -0
- package/dist/auth/auth-generator.d.ts.map +1 -1
- package/dist/auth/auth-generator.js +33 -1
- package/dist/auth/better-auth-entities.d.ts.map +1 -1
- package/dist/auth/better-auth-entities.js +12 -2
- package/dist/bin/cli.js +18 -3
- package/dist/cone/cone-generator.js +10 -4
- package/dist/database/knex.d.ts.map +1 -1
- package/dist/database/knex.js +64 -2
- package/dist/database/puri.d.ts +9 -1
- package/dist/database/puri.d.ts.map +1 -1
- package/dist/database/puri.js +42 -1
- package/dist/database/puri.types.d.ts +2 -0
- package/dist/database/puri.types.d.ts.map +1 -1
- package/dist/database/puri.types.js +6 -2
- package/dist/entity/entity-manager.d.ts +149 -1
- package/dist/entity/entity-manager.d.ts.map +1 -1
- package/dist/entity/entity-manager.js +68 -4
- package/dist/migration/__tests__/code-generation.search-text.test.js +435 -0
- package/dist/migration/code-generation.d.ts.map +1 -1
- package/dist/migration/code-generation.js +696 -32
- package/dist/migration/migration-set.js +3 -1
- package/dist/migration/postgresql-schema-reader.d.ts +16 -2
- package/dist/migration/postgresql-schema-reader.d.ts.map +1 -1
- package/dist/migration/postgresql-schema-reader.js +281 -7
- package/dist/stream/sse.js +5 -3
- package/dist/template/__tests__/generated.template.search-text.test.js +99 -0
- package/dist/template/generated.template.test-d.js +24 -0
- package/dist/template/implementations/generated.template.d.ts.map +1 -1
- package/dist/template/implementations/generated.template.js +2 -2
- package/dist/template/implementations/init_types.template.d.ts.map +1 -1
- package/dist/template/implementations/init_types.template.js +11 -3
- package/dist/template/zod-converter.d.ts.map +1 -1
- package/dist/template/zod-converter.js +6 -2
- package/dist/testing/dev-test-routes.d.ts.map +1 -1
- package/dist/testing/dev-test-routes.js +5 -3
- package/dist/testing/fixture-generator.d.ts +13 -0
- package/dist/testing/fixture-generator.d.ts.map +1 -1
- package/dist/testing/fixture-generator.js +105 -8
- package/dist/testing/fixture-manager.d.ts.map +1 -1
- package/dist/testing/fixture-manager.js +19 -2
- package/dist/types/__tests__/entity-json-schema-search-text.test.js +256 -0
- package/dist/types/types.d.ts +494 -1
- package/dist/types/types.d.ts.map +1 -1
- package/dist/types/types.js +117 -13
- package/dist/ui/api.d.ts.map +1 -1
- package/dist/ui/api.js +14 -2
- package/dist/ui/cdd-service.d.ts +16 -14
- package/dist/ui/cdd-service.d.ts.map +1 -1
- package/dist/ui/cdd-service.js +145 -37
- package/dist/ui/cdd-types.d.ts +60 -0
- package/dist/ui/cdd-types.d.ts.map +1 -0
- package/dist/ui/cdd-types.js +3 -0
- package/dist/ui-web/assets/index-D4XFBV-f.css +1 -0
- package/dist/ui-web/assets/{index-CQ_S40bD.js → index-D_19-Pi4.js} +87 -87
- package/dist/ui-web/index.html +2 -2
- package/package.json +7 -3
- package/src/api/sonamu.ts +1 -2
- package/src/auth/auth-generator.ts +38 -0
- package/src/auth/better-auth-entities.ts +18 -1
- package/src/bin/cli.ts +15 -1
- package/src/cone/cone-generator.ts +9 -3
- package/src/database/knex.ts +62 -4
- package/src/database/puri.ts +71 -0
- package/src/database/puri.types.ts +2 -0
- package/src/entity/entity-manager.ts +95 -3
- package/src/migration/__tests__/code-generation.search-text.test.ts +390 -0
- package/src/migration/code-generation.ts +848 -34
- package/src/migration/migration-set.ts +2 -0
- package/src/migration/postgresql-schema-reader.ts +366 -9
- package/src/skills/sonamu/auth-migration.md +80 -0
- package/src/skills/sonamu/cdd.md +148 -28
- package/src/skills/sonamu/cone.md +16 -0
- package/src/skills/sonamu/entity-relations.md +1 -1
- package/src/skills/sonamu/fixture-cli.md +4 -0
- package/src/skills/sonamu/frontend.md +65 -0
- package/src/skills/sonamu/migration.md +3 -1
- package/src/skills/sonamu/model.md +28 -0
- package/src/skills/sonamu/workflow.md +12 -5
- package/src/stream/sse.ts +4 -2
- package/src/template/__tests__/generated.template.search-text.test.ts +89 -0
- package/src/template/generated.template.test-d.ts +46 -0
- package/src/template/implementations/generated.template.ts +4 -1
- package/src/template/implementations/init_types.template.ts +20 -5
- package/src/template/zod-converter.ts +5 -0
- package/src/testing/dev-test-routes.ts +4 -2
- package/src/testing/fixture-generator.ts +157 -9
- package/src/testing/fixture-manager.ts +15 -1
- package/src/types/__tests__/entity-json-schema-search-text.test.ts +179 -0
- package/src/types/types.ts +168 -12
- package/src/ui/api.ts +24 -1
- package/src/ui/cdd-service.ts +195 -55
- package/src/ui/cdd-types.ts +73 -0
- package/dist/ui-web/assets/index-egkMxKos.css +0 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -5,6 +5,26 @@ import type { GuardKey } from "./../api/decorators";
|
|
|
5
5
|
import type { CacheControlHandler } from "../cache-control/types";
|
|
6
6
|
export declare function zArrayable<T extends z.ZodTypeAny>(shape: T): z.ZodUnion<[T, z.ZodArray<T>]>;
|
|
7
7
|
export type DistributiveOmit<T, K extends keyof any> = T extends any ? Omit<T, K> : never;
|
|
8
|
+
/**
|
|
9
|
+
* 부모 Entity fixture 생성 시 함께 생성할 companion Entity 설정
|
|
10
|
+
*
|
|
11
|
+
* 예: User fixture 생성 시 credentials Account를 함께 생성
|
|
12
|
+
*/
|
|
13
|
+
export type FixtureCompanion = {
|
|
14
|
+
/** 함께 생성할 Entity 이름 */
|
|
15
|
+
entity: string;
|
|
16
|
+
/**
|
|
17
|
+
* 고정 오버라이드 값.
|
|
18
|
+
* "{{fieldName}}" 형식으로 부모 fixture의 필드 값을 참조할 수 있다.
|
|
19
|
+
* 예: { "account_id": "{{email}}" } → 부모 User의 email 값 사용
|
|
20
|
+
*/
|
|
21
|
+
overrides?: Record<string, unknown>;
|
|
22
|
+
/**
|
|
23
|
+
* 부모 1개당 생성할 companion 개수. 기본값 1.
|
|
24
|
+
* 예: count: 2 → User 1개당 companion 2개 생성
|
|
25
|
+
*/
|
|
26
|
+
count?: number;
|
|
27
|
+
};
|
|
8
28
|
/**
|
|
9
29
|
* cone: 범용 메타데이터 시스템
|
|
10
30
|
*
|
|
@@ -17,6 +37,7 @@ export type Cone = {
|
|
|
17
37
|
fixtureGenerator?: string;
|
|
18
38
|
fixtureDefault?: unknown;
|
|
19
39
|
fixtureStrategy?: "sequence";
|
|
40
|
+
fixtureCompanions?: FixtureCompanion[];
|
|
20
41
|
dataSource?: {
|
|
21
42
|
strategy: "sample" | "ids" | "query" | "file" | "recent" | "random";
|
|
22
43
|
config?: unknown;
|
|
@@ -153,6 +174,14 @@ export type JsonProp = CommonProp & {
|
|
|
153
174
|
type: "json";
|
|
154
175
|
id: string;
|
|
155
176
|
};
|
|
177
|
+
export type SearchTextSourceColumn = {
|
|
178
|
+
name: string;
|
|
179
|
+
caseInsensitive?: boolean;
|
|
180
|
+
};
|
|
181
|
+
export type SearchTextProp = CommonProp & {
|
|
182
|
+
type: "searchText";
|
|
183
|
+
sourceColumns: SearchTextSourceColumn[];
|
|
184
|
+
};
|
|
156
185
|
export type UuidProp = CommonProp & {
|
|
157
186
|
type: "uuid";
|
|
158
187
|
};
|
|
@@ -216,7 +245,7 @@ export type ManyToManyRelationProp = _RelationProp & {
|
|
|
216
245
|
onDelete: RelationOn;
|
|
217
246
|
};
|
|
218
247
|
export type RelationProp = OneToOneRelationProp | BelongsToOneRelationProp | HasManyRelationProp | ManyToManyRelationProp;
|
|
219
|
-
export type EntityProp = IntegerProp | IntegerArrayProp | BigIntegerProp | BigIntegerArrayProp | StringProp | StringArrayProp | EnumProp | EnumArrayProp | NumberProp | NumberArrayProp | NumericProp | NumericArrayProp | NumericProp | BooleanProp | BooleanArrayProp | DateProp | DateArrayProp | UuidProp | UuidArrayProp | JsonProp | VirtualProp | VectorProp | VectorArrayProp | TsVectorProp | RelationProp;
|
|
248
|
+
export type EntityProp = IntegerProp | IntegerArrayProp | BigIntegerProp | BigIntegerArrayProp | StringProp | StringArrayProp | EnumProp | EnumArrayProp | NumberProp | NumberArrayProp | NumericProp | NumericArrayProp | NumericProp | BooleanProp | BooleanArrayProp | DateProp | DateArrayProp | UuidProp | UuidArrayProp | JsonProp | SearchTextProp | VirtualProp | VectorProp | VectorArrayProp | TsVectorProp | RelationProp;
|
|
220
249
|
/**
|
|
221
250
|
* SonamuFile Types
|
|
222
251
|
*
|
|
@@ -271,12 +300,16 @@ export type BuiltInTypeId = (typeof BUILT_IN_TYPE_IDS)[number];
|
|
|
271
300
|
* - 사용 예: 이미지 유사도, 절대적 거리 측정이 필요한 경우
|
|
272
301
|
*/
|
|
273
302
|
export type VectorOps = "vector_cosine_ops" | "vector_ip_ops" | "vector_l2_ops";
|
|
303
|
+
export declare const KnownOpclassValues: readonly ["gin_trgm_ops", "gist_trgm_ops", "gin_bigm_ops", "vector_cosine_ops", "vector_ip_ops", "vector_l2_ops", "pgroonga_varchar_full_text_search_ops_v2", "pgroonga_jsonb_full_text_search_ops_v2"];
|
|
304
|
+
export type KnownOpclass = (typeof KnownOpclassValues)[number];
|
|
274
305
|
type EntityIndexColumn = {
|
|
275
306
|
name: string;
|
|
276
307
|
nullsFirst?: boolean;
|
|
277
308
|
sortOrder?: "ASC" | "DESC";
|
|
278
309
|
/** pgvector 인덱스에서 사용할 거리 연산자 (vector 컬럼에만 적용) */
|
|
279
310
|
vectorOps?: VectorOps;
|
|
311
|
+
/** generic 인덱스 opclass (vectorOps는 하위호환 목적으로 유지) */
|
|
312
|
+
opclass?: KnownOpclass | string;
|
|
280
313
|
};
|
|
281
314
|
export type EntityIndex = {
|
|
282
315
|
type: "index" | "unique" | "hnsw" | "ivfflat";
|
|
@@ -446,6 +479,7 @@ export declare function isUuidSingleProp(p: unknown): p is UuidProp;
|
|
|
446
479
|
export declare function isUuidArrayProp(p: unknown): p is UuidArrayProp;
|
|
447
480
|
export declare function isUuidProp(p: unknown): p is UuidProp | UuidArrayProp;
|
|
448
481
|
export declare function isJsonProp(p: unknown): p is JsonProp;
|
|
482
|
+
export declare function isSearchTextProp(p: unknown): p is SearchTextProp;
|
|
449
483
|
export declare function isVirtualProp(p: unknown): p is VirtualProp;
|
|
450
484
|
export declare function isVirtualCodeProp(p: unknown): p is VirtualProp;
|
|
451
485
|
export declare function isVirtualQueryProp(p: unknown): p is VirtualProp;
|
|
@@ -745,6 +779,11 @@ export declare const RelationPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
745
779
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
746
780
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
747
781
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
782
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
783
|
+
entity: z.ZodString;
|
|
784
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
785
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
786
|
+
}, z.core.$strip>>>;
|
|
748
787
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
749
788
|
strategy: z.ZodEnum<{
|
|
750
789
|
file: "file";
|
|
@@ -781,6 +820,11 @@ export declare const RelationPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
781
820
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
782
821
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
783
822
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
823
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
824
|
+
entity: z.ZodString;
|
|
825
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
826
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
827
|
+
}, z.core.$strip>>>;
|
|
784
828
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
785
829
|
strategy: z.ZodEnum<{
|
|
786
830
|
file: "file";
|
|
@@ -830,6 +874,11 @@ export declare const RelationPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
830
874
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
831
875
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
832
876
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
877
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
878
|
+
entity: z.ZodString;
|
|
879
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
880
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
881
|
+
}, z.core.$strip>>>;
|
|
833
882
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
834
883
|
strategy: z.ZodEnum<{
|
|
835
884
|
file: "file";
|
|
@@ -881,6 +930,11 @@ export declare const RelationPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
881
930
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
882
931
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
883
932
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
933
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
934
|
+
entity: z.ZodString;
|
|
935
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
936
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
937
|
+
}, z.core.$strip>>>;
|
|
884
938
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
885
939
|
strategy: z.ZodEnum<{
|
|
886
940
|
file: "file";
|
|
@@ -914,6 +968,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
914
968
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
915
969
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
916
970
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
971
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
972
|
+
entity: z.ZodString;
|
|
973
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
974
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
975
|
+
}, z.core.$strip>>>;
|
|
917
976
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
918
977
|
strategy: z.ZodEnum<{
|
|
919
978
|
file: "file";
|
|
@@ -977,6 +1036,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
977
1036
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
978
1037
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
979
1038
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1039
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1040
|
+
entity: z.ZodString;
|
|
1041
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1042
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1043
|
+
}, z.core.$strip>>>;
|
|
980
1044
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
981
1045
|
strategy: z.ZodEnum<{
|
|
982
1046
|
file: "file";
|
|
@@ -1040,6 +1104,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1040
1104
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1041
1105
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1042
1106
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1107
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1108
|
+
entity: z.ZodString;
|
|
1109
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1110
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1111
|
+
}, z.core.$strip>>>;
|
|
1043
1112
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1044
1113
|
strategy: z.ZodEnum<{
|
|
1045
1114
|
file: "file";
|
|
@@ -1074,6 +1143,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1074
1143
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1075
1144
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1076
1145
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1146
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1147
|
+
entity: z.ZodString;
|
|
1148
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1149
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1150
|
+
}, z.core.$strip>>>;
|
|
1077
1151
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1078
1152
|
strategy: z.ZodEnum<{
|
|
1079
1153
|
file: "file";
|
|
@@ -1107,6 +1181,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1107
1181
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1108
1182
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1109
1183
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1184
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1185
|
+
entity: z.ZodString;
|
|
1186
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1187
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1188
|
+
}, z.core.$strip>>>;
|
|
1110
1189
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1111
1190
|
strategy: z.ZodEnum<{
|
|
1112
1191
|
file: "file";
|
|
@@ -1146,6 +1225,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1146
1225
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1147
1226
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1148
1227
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1228
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1229
|
+
entity: z.ZodString;
|
|
1230
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1231
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1232
|
+
}, z.core.$strip>>>;
|
|
1149
1233
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1150
1234
|
strategy: z.ZodEnum<{
|
|
1151
1235
|
file: "file";
|
|
@@ -1185,6 +1269,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1185
1269
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1186
1270
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1187
1271
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1272
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1273
|
+
entity: z.ZodString;
|
|
1274
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1275
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1276
|
+
}, z.core.$strip>>>;
|
|
1188
1277
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1189
1278
|
strategy: z.ZodEnum<{
|
|
1190
1279
|
file: "file";
|
|
@@ -1218,6 +1307,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1218
1307
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1219
1308
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1220
1309
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1310
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1311
|
+
entity: z.ZodString;
|
|
1312
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1313
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1314
|
+
}, z.core.$strip>>>;
|
|
1221
1315
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1222
1316
|
strategy: z.ZodEnum<{
|
|
1223
1317
|
file: "file";
|
|
@@ -1251,6 +1345,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1251
1345
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1252
1346
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1253
1347
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1348
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1349
|
+
entity: z.ZodString;
|
|
1350
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1351
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1352
|
+
}, z.core.$strip>>>;
|
|
1254
1353
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1255
1354
|
strategy: z.ZodEnum<{
|
|
1256
1355
|
file: "file";
|
|
@@ -1285,6 +1384,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1285
1384
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1286
1385
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1287
1386
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1387
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1388
|
+
entity: z.ZodString;
|
|
1389
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1390
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1391
|
+
}, z.core.$strip>>>;
|
|
1288
1392
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1289
1393
|
strategy: z.ZodEnum<{
|
|
1290
1394
|
file: "file";
|
|
@@ -1319,6 +1423,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1319
1423
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1320
1424
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1321
1425
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1426
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1427
|
+
entity: z.ZodString;
|
|
1428
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1429
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1430
|
+
}, z.core.$strip>>>;
|
|
1322
1431
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1323
1432
|
strategy: z.ZodEnum<{
|
|
1324
1433
|
file: "file";
|
|
@@ -1352,6 +1461,52 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1352
1461
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1353
1462
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1354
1463
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1464
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1465
|
+
entity: z.ZodString;
|
|
1466
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1467
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1468
|
+
}, z.core.$strip>>>;
|
|
1469
|
+
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1470
|
+
strategy: z.ZodEnum<{
|
|
1471
|
+
file: "file";
|
|
1472
|
+
sample: "sample";
|
|
1473
|
+
ids: "ids";
|
|
1474
|
+
query: "query";
|
|
1475
|
+
recent: "recent";
|
|
1476
|
+
random: "random";
|
|
1477
|
+
}>;
|
|
1478
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
1479
|
+
}, z.core.$strip>>;
|
|
1480
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1481
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1482
|
+
type: z.ZodLiteral<"searchText">;
|
|
1483
|
+
sourceColumns: z.ZodArray<z.ZodObject<{
|
|
1484
|
+
name: z.ZodString;
|
|
1485
|
+
caseInsensitive: z.ZodOptional<z.ZodBoolean>;
|
|
1486
|
+
}, z.core.$strict>>;
|
|
1487
|
+
name: z.ZodString;
|
|
1488
|
+
desc: z.ZodOptional<z.ZodString>;
|
|
1489
|
+
nullable: z.ZodOptional<z.ZodBoolean>;
|
|
1490
|
+
toFilter: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1491
|
+
dbDefault: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1492
|
+
generated: z.ZodOptional<z.ZodObject<{
|
|
1493
|
+
type: z.ZodEnum<{
|
|
1494
|
+
STORED: "STORED";
|
|
1495
|
+
VIRTUAL: "VIRTUAL";
|
|
1496
|
+
}>;
|
|
1497
|
+
expression: z.ZodString;
|
|
1498
|
+
}, z.core.$strip>>;
|
|
1499
|
+
cone: z.ZodOptional<z.ZodObject<{
|
|
1500
|
+
note: z.ZodOptional<z.ZodString>;
|
|
1501
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1502
|
+
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1503
|
+
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1504
|
+
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1505
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1506
|
+
entity: z.ZodString;
|
|
1507
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1508
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1509
|
+
}, z.core.$strip>>>;
|
|
1355
1510
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1356
1511
|
strategy: z.ZodEnum<{
|
|
1357
1512
|
file: "file";
|
|
@@ -1389,6 +1544,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1389
1544
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1390
1545
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1391
1546
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1547
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1548
|
+
entity: z.ZodString;
|
|
1549
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1550
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1551
|
+
}, z.core.$strip>>>;
|
|
1392
1552
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1393
1553
|
strategy: z.ZodEnum<{
|
|
1394
1554
|
file: "file";
|
|
@@ -1422,6 +1582,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1422
1582
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1423
1583
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1424
1584
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1585
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1586
|
+
entity: z.ZodString;
|
|
1587
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1588
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1589
|
+
}, z.core.$strip>>>;
|
|
1425
1590
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1426
1591
|
strategy: z.ZodEnum<{
|
|
1427
1592
|
file: "file";
|
|
@@ -1455,6 +1620,11 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1455
1620
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1456
1621
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1457
1622
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1623
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1624
|
+
entity: z.ZodString;
|
|
1625
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1626
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1627
|
+
}, z.core.$strip>>>;
|
|
1458
1628
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1459
1629
|
strategy: z.ZodEnum<{
|
|
1460
1630
|
file: "file";
|
|
@@ -1468,6 +1638,7 @@ export declare const NormalPropSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1468
1638
|
}, z.core.$strip>>;
|
|
1469
1639
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
1470
1640
|
}, z.core.$strict>], "type">;
|
|
1641
|
+
export declare function isSearchTextJsonSourceZodType(zodType: z.ZodTypeAny): boolean;
|
|
1471
1642
|
export declare const EntityJsonSchema: z.ZodObject<{
|
|
1472
1643
|
id: z.ZodString;
|
|
1473
1644
|
title: z.ZodString;
|
|
@@ -1479,6 +1650,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1479
1650
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1480
1651
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1481
1652
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1653
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1654
|
+
entity: z.ZodString;
|
|
1655
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1656
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1657
|
+
}, z.core.$strip>>>;
|
|
1482
1658
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1483
1659
|
strategy: z.ZodEnum<{
|
|
1484
1660
|
file: "file";
|
|
@@ -1511,6 +1687,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1511
1687
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1512
1688
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1513
1689
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1690
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1691
|
+
entity: z.ZodString;
|
|
1692
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1693
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1694
|
+
}, z.core.$strip>>>;
|
|
1514
1695
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1515
1696
|
strategy: z.ZodEnum<{
|
|
1516
1697
|
file: "file";
|
|
@@ -1574,6 +1755,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1574
1755
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1575
1756
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1576
1757
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1758
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1759
|
+
entity: z.ZodString;
|
|
1760
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1761
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1762
|
+
}, z.core.$strip>>>;
|
|
1577
1763
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1578
1764
|
strategy: z.ZodEnum<{
|
|
1579
1765
|
file: "file";
|
|
@@ -1637,6 +1823,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1637
1823
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1638
1824
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1639
1825
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1826
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1827
|
+
entity: z.ZodString;
|
|
1828
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1829
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1830
|
+
}, z.core.$strip>>>;
|
|
1640
1831
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1641
1832
|
strategy: z.ZodEnum<{
|
|
1642
1833
|
file: "file";
|
|
@@ -1671,6 +1862,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1671
1862
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1672
1863
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1673
1864
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1865
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1866
|
+
entity: z.ZodString;
|
|
1867
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1868
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1869
|
+
}, z.core.$strip>>>;
|
|
1674
1870
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1675
1871
|
strategy: z.ZodEnum<{
|
|
1676
1872
|
file: "file";
|
|
@@ -1704,6 +1900,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1704
1900
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1705
1901
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1706
1902
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1903
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1904
|
+
entity: z.ZodString;
|
|
1905
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1906
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1907
|
+
}, z.core.$strip>>>;
|
|
1707
1908
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1708
1909
|
strategy: z.ZodEnum<{
|
|
1709
1910
|
file: "file";
|
|
@@ -1743,6 +1944,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1743
1944
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1744
1945
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1745
1946
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1947
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1948
|
+
entity: z.ZodString;
|
|
1949
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1950
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1951
|
+
}, z.core.$strip>>>;
|
|
1746
1952
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1747
1953
|
strategy: z.ZodEnum<{
|
|
1748
1954
|
file: "file";
|
|
@@ -1782,6 +1988,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1782
1988
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1783
1989
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1784
1990
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
1991
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1992
|
+
entity: z.ZodString;
|
|
1993
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1994
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1995
|
+
}, z.core.$strip>>>;
|
|
1785
1996
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1786
1997
|
strategy: z.ZodEnum<{
|
|
1787
1998
|
file: "file";
|
|
@@ -1815,6 +2026,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1815
2026
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1816
2027
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1817
2028
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2029
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2030
|
+
entity: z.ZodString;
|
|
2031
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2032
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2033
|
+
}, z.core.$strip>>>;
|
|
1818
2034
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1819
2035
|
strategy: z.ZodEnum<{
|
|
1820
2036
|
file: "file";
|
|
@@ -1848,6 +2064,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1848
2064
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1849
2065
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1850
2066
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2067
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2068
|
+
entity: z.ZodString;
|
|
2069
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2070
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2071
|
+
}, z.core.$strip>>>;
|
|
1851
2072
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1852
2073
|
strategy: z.ZodEnum<{
|
|
1853
2074
|
file: "file";
|
|
@@ -1882,6 +2103,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1882
2103
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1883
2104
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1884
2105
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2106
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2107
|
+
entity: z.ZodString;
|
|
2108
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2109
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2110
|
+
}, z.core.$strip>>>;
|
|
1885
2111
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1886
2112
|
strategy: z.ZodEnum<{
|
|
1887
2113
|
file: "file";
|
|
@@ -1916,6 +2142,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1916
2142
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1917
2143
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1918
2144
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2145
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2146
|
+
entity: z.ZodString;
|
|
2147
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2148
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2149
|
+
}, z.core.$strip>>>;
|
|
1919
2150
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1920
2151
|
strategy: z.ZodEnum<{
|
|
1921
2152
|
file: "file";
|
|
@@ -1949,6 +2180,52 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1949
2180
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1950
2181
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1951
2182
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2183
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2184
|
+
entity: z.ZodString;
|
|
2185
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2186
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2187
|
+
}, z.core.$strip>>>;
|
|
2188
|
+
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2189
|
+
strategy: z.ZodEnum<{
|
|
2190
|
+
file: "file";
|
|
2191
|
+
sample: "sample";
|
|
2192
|
+
ids: "ids";
|
|
2193
|
+
query: "query";
|
|
2194
|
+
recent: "recent";
|
|
2195
|
+
random: "random";
|
|
2196
|
+
}>;
|
|
2197
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
2198
|
+
}, z.core.$strip>>;
|
|
2199
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2200
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2201
|
+
type: z.ZodLiteral<"searchText">;
|
|
2202
|
+
sourceColumns: z.ZodArray<z.ZodObject<{
|
|
2203
|
+
name: z.ZodString;
|
|
2204
|
+
caseInsensitive: z.ZodOptional<z.ZodBoolean>;
|
|
2205
|
+
}, z.core.$strict>>;
|
|
2206
|
+
name: z.ZodString;
|
|
2207
|
+
desc: z.ZodOptional<z.ZodString>;
|
|
2208
|
+
nullable: z.ZodOptional<z.ZodBoolean>;
|
|
2209
|
+
toFilter: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2210
|
+
dbDefault: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2211
|
+
generated: z.ZodOptional<z.ZodObject<{
|
|
2212
|
+
type: z.ZodEnum<{
|
|
2213
|
+
STORED: "STORED";
|
|
2214
|
+
VIRTUAL: "VIRTUAL";
|
|
2215
|
+
}>;
|
|
2216
|
+
expression: z.ZodString;
|
|
2217
|
+
}, z.core.$strip>>;
|
|
2218
|
+
cone: z.ZodOptional<z.ZodObject<{
|
|
2219
|
+
note: z.ZodOptional<z.ZodString>;
|
|
2220
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2221
|
+
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2222
|
+
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2223
|
+
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2224
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2225
|
+
entity: z.ZodString;
|
|
2226
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2227
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2228
|
+
}, z.core.$strip>>>;
|
|
1952
2229
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1953
2230
|
strategy: z.ZodEnum<{
|
|
1954
2231
|
file: "file";
|
|
@@ -1986,6 +2263,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
1986
2263
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
1987
2264
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
1988
2265
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2266
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2267
|
+
entity: z.ZodString;
|
|
2268
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2269
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2270
|
+
}, z.core.$strip>>>;
|
|
1989
2271
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
1990
2272
|
strategy: z.ZodEnum<{
|
|
1991
2273
|
file: "file";
|
|
@@ -2019,6 +2301,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2019
2301
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2020
2302
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2021
2303
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2304
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2305
|
+
entity: z.ZodString;
|
|
2306
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2307
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2308
|
+
}, z.core.$strip>>>;
|
|
2022
2309
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2023
2310
|
strategy: z.ZodEnum<{
|
|
2024
2311
|
file: "file";
|
|
@@ -2052,6 +2339,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2052
2339
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2053
2340
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2054
2341
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2342
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2343
|
+
entity: z.ZodString;
|
|
2344
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2345
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2346
|
+
}, z.core.$strip>>>;
|
|
2055
2347
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2056
2348
|
strategy: z.ZodEnum<{
|
|
2057
2349
|
file: "file";
|
|
@@ -2102,6 +2394,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2102
2394
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2103
2395
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2104
2396
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2397
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2398
|
+
entity: z.ZodString;
|
|
2399
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2400
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2401
|
+
}, z.core.$strip>>>;
|
|
2105
2402
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2106
2403
|
strategy: z.ZodEnum<{
|
|
2107
2404
|
file: "file";
|
|
@@ -2138,6 +2435,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2138
2435
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2139
2436
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2140
2437
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2438
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2439
|
+
entity: z.ZodString;
|
|
2440
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2441
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2442
|
+
}, z.core.$strip>>>;
|
|
2141
2443
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2142
2444
|
strategy: z.ZodEnum<{
|
|
2143
2445
|
file: "file";
|
|
@@ -2187,6 +2489,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2187
2489
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2188
2490
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2189
2491
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2492
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2493
|
+
entity: z.ZodString;
|
|
2494
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2495
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2496
|
+
}, z.core.$strip>>>;
|
|
2190
2497
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2191
2498
|
strategy: z.ZodEnum<{
|
|
2192
2499
|
file: "file";
|
|
@@ -2238,6 +2545,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2238
2545
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2239
2546
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2240
2547
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2548
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2549
|
+
entity: z.ZodString;
|
|
2550
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2551
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2552
|
+
}, z.core.$strip>>>;
|
|
2241
2553
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2242
2554
|
strategy: z.ZodEnum<{
|
|
2243
2555
|
file: "file";
|
|
@@ -2270,6 +2582,16 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2270
2582
|
vector_ip_ops: "vector_ip_ops";
|
|
2271
2583
|
vector_l2_ops: "vector_l2_ops";
|
|
2272
2584
|
}>>;
|
|
2585
|
+
opclass: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2586
|
+
vector_cosine_ops: "vector_cosine_ops";
|
|
2587
|
+
vector_ip_ops: "vector_ip_ops";
|
|
2588
|
+
vector_l2_ops: "vector_l2_ops";
|
|
2589
|
+
gin_trgm_ops: "gin_trgm_ops";
|
|
2590
|
+
gist_trgm_ops: "gist_trgm_ops";
|
|
2591
|
+
gin_bigm_ops: "gin_bigm_ops";
|
|
2592
|
+
pgroonga_varchar_full_text_search_ops_v2: "pgroonga_varchar_full_text_search_ops_v2";
|
|
2593
|
+
pgroonga_jsonb_full_text_search_ops_v2: "pgroonga_jsonb_full_text_search_ops_v2";
|
|
2594
|
+
}>, z.ZodString]>>;
|
|
2273
2595
|
}, z.core.$strip>>;
|
|
2274
2596
|
name: z.ZodString;
|
|
2275
2597
|
using: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2298,6 +2620,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2298
2620
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2299
2621
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2300
2622
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2623
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2624
|
+
entity: z.ZodString;
|
|
2625
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2626
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2627
|
+
}, z.core.$strip>>>;
|
|
2301
2628
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2302
2629
|
strategy: z.ZodEnum<{
|
|
2303
2630
|
file: "file";
|
|
@@ -2319,6 +2646,11 @@ export declare const EntityJsonSchema: z.ZodObject<{
|
|
|
2319
2646
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2320
2647
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2321
2648
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2649
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2650
|
+
entity: z.ZodString;
|
|
2651
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2652
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2653
|
+
}, z.core.$strip>>>;
|
|
2322
2654
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2323
2655
|
strategy: z.ZodEnum<{
|
|
2324
2656
|
file: "file";
|
|
@@ -2344,6 +2676,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2344
2676
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2345
2677
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2346
2678
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2679
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2680
|
+
entity: z.ZodString;
|
|
2681
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2682
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2683
|
+
}, z.core.$strip>>>;
|
|
2347
2684
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2348
2685
|
strategy: z.ZodEnum<{
|
|
2349
2686
|
file: "file";
|
|
@@ -2376,6 +2713,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2376
2713
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2377
2714
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2378
2715
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2716
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2717
|
+
entity: z.ZodString;
|
|
2718
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2719
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2720
|
+
}, z.core.$strip>>>;
|
|
2379
2721
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2380
2722
|
strategy: z.ZodEnum<{
|
|
2381
2723
|
file: "file";
|
|
@@ -2439,6 +2781,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2439
2781
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2440
2782
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2441
2783
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2784
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2785
|
+
entity: z.ZodString;
|
|
2786
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2787
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2788
|
+
}, z.core.$strip>>>;
|
|
2442
2789
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2443
2790
|
strategy: z.ZodEnum<{
|
|
2444
2791
|
file: "file";
|
|
@@ -2502,6 +2849,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2502
2849
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2503
2850
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2504
2851
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2852
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2853
|
+
entity: z.ZodString;
|
|
2854
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2855
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2856
|
+
}, z.core.$strip>>>;
|
|
2505
2857
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2506
2858
|
strategy: z.ZodEnum<{
|
|
2507
2859
|
file: "file";
|
|
@@ -2536,6 +2888,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2536
2888
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2537
2889
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2538
2890
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2891
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2892
|
+
entity: z.ZodString;
|
|
2893
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2894
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2895
|
+
}, z.core.$strip>>>;
|
|
2539
2896
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2540
2897
|
strategy: z.ZodEnum<{
|
|
2541
2898
|
file: "file";
|
|
@@ -2569,6 +2926,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2569
2926
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2570
2927
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2571
2928
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2929
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2930
|
+
entity: z.ZodString;
|
|
2931
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2932
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2933
|
+
}, z.core.$strip>>>;
|
|
2572
2934
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2573
2935
|
strategy: z.ZodEnum<{
|
|
2574
2936
|
file: "file";
|
|
@@ -2608,6 +2970,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2608
2970
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2609
2971
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2610
2972
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
2973
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2974
|
+
entity: z.ZodString;
|
|
2975
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2976
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
2977
|
+
}, z.core.$strip>>>;
|
|
2611
2978
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2612
2979
|
strategy: z.ZodEnum<{
|
|
2613
2980
|
file: "file";
|
|
@@ -2647,6 +3014,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2647
3014
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2648
3015
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2649
3016
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3017
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3018
|
+
entity: z.ZodString;
|
|
3019
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3020
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3021
|
+
}, z.core.$strip>>>;
|
|
2650
3022
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2651
3023
|
strategy: z.ZodEnum<{
|
|
2652
3024
|
file: "file";
|
|
@@ -2680,6 +3052,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2680
3052
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2681
3053
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2682
3054
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3055
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3056
|
+
entity: z.ZodString;
|
|
3057
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3058
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3059
|
+
}, z.core.$strip>>>;
|
|
2683
3060
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2684
3061
|
strategy: z.ZodEnum<{
|
|
2685
3062
|
file: "file";
|
|
@@ -2713,6 +3090,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2713
3090
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2714
3091
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2715
3092
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3093
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3094
|
+
entity: z.ZodString;
|
|
3095
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3096
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3097
|
+
}, z.core.$strip>>>;
|
|
2716
3098
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2717
3099
|
strategy: z.ZodEnum<{
|
|
2718
3100
|
file: "file";
|
|
@@ -2747,6 +3129,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2747
3129
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2748
3130
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2749
3131
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3132
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3133
|
+
entity: z.ZodString;
|
|
3134
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3135
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3136
|
+
}, z.core.$strip>>>;
|
|
2750
3137
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2751
3138
|
strategy: z.ZodEnum<{
|
|
2752
3139
|
file: "file";
|
|
@@ -2781,6 +3168,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2781
3168
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2782
3169
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2783
3170
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3171
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3172
|
+
entity: z.ZodString;
|
|
3173
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3174
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3175
|
+
}, z.core.$strip>>>;
|
|
2784
3176
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2785
3177
|
strategy: z.ZodEnum<{
|
|
2786
3178
|
file: "file";
|
|
@@ -2814,6 +3206,52 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2814
3206
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2815
3207
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2816
3208
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3209
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3210
|
+
entity: z.ZodString;
|
|
3211
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3212
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3213
|
+
}, z.core.$strip>>>;
|
|
3214
|
+
dataSource: z.ZodOptional<z.ZodObject<{
|
|
3215
|
+
strategy: z.ZodEnum<{
|
|
3216
|
+
file: "file";
|
|
3217
|
+
sample: "sample";
|
|
3218
|
+
ids: "ids";
|
|
3219
|
+
query: "query";
|
|
3220
|
+
recent: "recent";
|
|
3221
|
+
random: "random";
|
|
3222
|
+
}>;
|
|
3223
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
3224
|
+
}, z.core.$strip>>;
|
|
3225
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
3226
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3227
|
+
type: z.ZodLiteral<"searchText">;
|
|
3228
|
+
sourceColumns: z.ZodArray<z.ZodObject<{
|
|
3229
|
+
name: z.ZodString;
|
|
3230
|
+
caseInsensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3231
|
+
}, z.core.$strict>>;
|
|
3232
|
+
name: z.ZodString;
|
|
3233
|
+
desc: z.ZodOptional<z.ZodString>;
|
|
3234
|
+
nullable: z.ZodOptional<z.ZodBoolean>;
|
|
3235
|
+
toFilter: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3236
|
+
dbDefault: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3237
|
+
generated: z.ZodOptional<z.ZodObject<{
|
|
3238
|
+
type: z.ZodEnum<{
|
|
3239
|
+
STORED: "STORED";
|
|
3240
|
+
VIRTUAL: "VIRTUAL";
|
|
3241
|
+
}>;
|
|
3242
|
+
expression: z.ZodString;
|
|
3243
|
+
}, z.core.$strip>>;
|
|
3244
|
+
cone: z.ZodOptional<z.ZodObject<{
|
|
3245
|
+
note: z.ZodOptional<z.ZodString>;
|
|
3246
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3247
|
+
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
3248
|
+
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
3249
|
+
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3250
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3251
|
+
entity: z.ZodString;
|
|
3252
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3253
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3254
|
+
}, z.core.$strip>>>;
|
|
2817
3255
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2818
3256
|
strategy: z.ZodEnum<{
|
|
2819
3257
|
file: "file";
|
|
@@ -2851,6 +3289,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2851
3289
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2852
3290
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2853
3291
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3292
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3293
|
+
entity: z.ZodString;
|
|
3294
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3295
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3296
|
+
}, z.core.$strip>>>;
|
|
2854
3297
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2855
3298
|
strategy: z.ZodEnum<{
|
|
2856
3299
|
file: "file";
|
|
@@ -2884,6 +3327,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2884
3327
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2885
3328
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2886
3329
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3330
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3331
|
+
entity: z.ZodString;
|
|
3332
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3333
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3334
|
+
}, z.core.$strip>>>;
|
|
2887
3335
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2888
3336
|
strategy: z.ZodEnum<{
|
|
2889
3337
|
file: "file";
|
|
@@ -2917,6 +3365,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2917
3365
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2918
3366
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2919
3367
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3368
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3369
|
+
entity: z.ZodString;
|
|
3370
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3371
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3372
|
+
}, z.core.$strip>>>;
|
|
2920
3373
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2921
3374
|
strategy: z.ZodEnum<{
|
|
2922
3375
|
file: "file";
|
|
@@ -2967,6 +3420,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
2967
3420
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
2968
3421
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
2969
3422
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3423
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3424
|
+
entity: z.ZodString;
|
|
3425
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3426
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3427
|
+
}, z.core.$strip>>>;
|
|
2970
3428
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
2971
3429
|
strategy: z.ZodEnum<{
|
|
2972
3430
|
file: "file";
|
|
@@ -3003,6 +3461,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
3003
3461
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
3004
3462
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
3005
3463
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3464
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3465
|
+
entity: z.ZodString;
|
|
3466
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3467
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3468
|
+
}, z.core.$strip>>>;
|
|
3006
3469
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
3007
3470
|
strategy: z.ZodEnum<{
|
|
3008
3471
|
file: "file";
|
|
@@ -3052,6 +3515,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
3052
3515
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
3053
3516
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
3054
3517
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3518
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3519
|
+
entity: z.ZodString;
|
|
3520
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3521
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3522
|
+
}, z.core.$strip>>>;
|
|
3055
3523
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
3056
3524
|
strategy: z.ZodEnum<{
|
|
3057
3525
|
file: "file";
|
|
@@ -3103,6 +3571,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
3103
3571
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
3104
3572
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
3105
3573
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3574
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3575
|
+
entity: z.ZodString;
|
|
3576
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3577
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3578
|
+
}, z.core.$strip>>>;
|
|
3106
3579
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
3107
3580
|
strategy: z.ZodEnum<{
|
|
3108
3581
|
file: "file";
|
|
@@ -3135,6 +3608,16 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
3135
3608
|
vector_ip_ops: "vector_ip_ops";
|
|
3136
3609
|
vector_l2_ops: "vector_l2_ops";
|
|
3137
3610
|
}>>;
|
|
3611
|
+
opclass: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3612
|
+
vector_cosine_ops: "vector_cosine_ops";
|
|
3613
|
+
vector_ip_ops: "vector_ip_ops";
|
|
3614
|
+
vector_l2_ops: "vector_l2_ops";
|
|
3615
|
+
gin_trgm_ops: "gin_trgm_ops";
|
|
3616
|
+
gist_trgm_ops: "gist_trgm_ops";
|
|
3617
|
+
gin_bigm_ops: "gin_bigm_ops";
|
|
3618
|
+
pgroonga_varchar_full_text_search_ops_v2: "pgroonga_varchar_full_text_search_ops_v2";
|
|
3619
|
+
pgroonga_jsonb_full_text_search_ops_v2: "pgroonga_jsonb_full_text_search_ops_v2";
|
|
3620
|
+
}>, z.ZodString]>>;
|
|
3138
3621
|
}, z.core.$strip>>;
|
|
3139
3622
|
name: z.ZodString;
|
|
3140
3623
|
using: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3163,6 +3646,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
3163
3646
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
3164
3647
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
3165
3648
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3649
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3650
|
+
entity: z.ZodString;
|
|
3651
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3652
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3653
|
+
}, z.core.$strip>>>;
|
|
3166
3654
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
3167
3655
|
strategy: z.ZodEnum<{
|
|
3168
3656
|
file: "file";
|
|
@@ -3184,6 +3672,11 @@ export declare const TemplateOptions: z.ZodObject<{
|
|
|
3184
3672
|
fixtureGenerator: z.ZodOptional<z.ZodString>;
|
|
3185
3673
|
fixtureDefault: z.ZodOptional<z.ZodUnknown>;
|
|
3186
3674
|
fixtureStrategy: z.ZodOptional<z.ZodLiteral<"sequence">>;
|
|
3675
|
+
fixtureCompanions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3676
|
+
entity: z.ZodString;
|
|
3677
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3678
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
3679
|
+
}, z.core.$strip>>>;
|
|
3187
3680
|
dataSource: z.ZodOptional<z.ZodObject<{
|
|
3188
3681
|
strategy: z.ZodEnum<{
|
|
3189
3682
|
file: "file";
|