@elyx-code/project-logic-tree 0.0.6121 → 0.0.6122
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/definitions/built-in-base-entities/index.d.ts +1 -0
- package/dist/definitions/built-in-base-entities/operations/index.d.ts +1 -1
- package/dist/definitions/logic/definition-entity-to-zod-schema.d.ts +4 -0
- package/dist/definitions/logic/index.d.ts +1 -1
- package/dist/definitions/mock/default-mock/entities/alt-relational-database/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/alt-relational-database/properties.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/animal.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/back-account/account-owner-event.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/back-account/change-owner-of-account.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/back-account/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/back-account/properties.d.ts +3 -3
- package/dist/definitions/mock/default-mock/entities/base-table/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/base-table/properties.d.ts +5 -5
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/currency/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/currency/properties.d.ts +6 -6
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/properties.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/properties.d.ts +5 -5
- package/dist/definitions/mock/default-mock/entities/company/change-owner-of-company.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/company/company-changed-event/index.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/company/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/company/properties.d.ts +6 -6
- package/dist/definitions/mock/default-mock/entities/cron-job/entity.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/default-relational-database/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/default-relational-database/properties.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/employee.d.ts +6 -6
- package/dist/definitions/mock/default-mock/entities/get-all-bank-accounts-endpoint/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/properties.d.ts +3 -3
- package/dist/definitions/mock/default-mock/entities/person.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/plant.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/product.d.ts +5 -5
- package/dist/definitions/mock/default-mock/entities/user.d.ts +4 -4
- package/dist/definitions/types/action-descriptor.d.ts +4 -4
- package/dist/definitions/types/base-entity.d.ts +7 -7
- package/dist/definitions/types/base.d.ts +11 -5
- package/dist/definitions/types/data-type.d.ts +5 -7
- package/dist/definitions/types/definition-entity.d.ts +31 -0
- package/dist/definitions/types/function.d.ts +9 -4
- package/dist/definitions/types/generic-reference.d.ts +2 -2
- package/dist/definitions/types/index.d.ts +19 -19
- package/dist/definitions/types/primitives.d.ts +4 -4
- package/dist/definitions/types/project.d.ts +4 -4
- package/dist/definitions/types/property.d.ts +7 -4
- package/dist/definitions/types/return.d.ts +4 -0
- package/dist/index.js +9999 -10215
- package/dist/index.umd.cjs +212 -212
- package/dist/tree/built-in/operations/{custom-entity → definition-entity}/validate-data.d.ts +2 -2
- package/dist/tree/state/action-descriptor/action-descriptor.d.ts +4 -4
- package/dist/tree/state/action-descriptor/validation/validation-schema.d.ts +10 -10
- package/dist/tree/state/argument-declaration/argument-declaration.d.ts +1 -0
- package/dist/tree/state/built-in-base-entity/built-in-base-entity.d.ts +2 -2
- package/dist/tree/state/data-type/data-type.d.ts +4 -6
- package/dist/tree/state/data-type/validation/validation-schema.d.ts +186 -186
- package/dist/tree/state/definition-entity/definition-entity.d.ts +146 -0
- package/dist/tree/state/definition-entity/index.d.ts +1 -0
- package/dist/tree/state/definition-entity/validation/logic-validation.d.ts +9 -0
- package/dist/tree/state/definition-entity/validation/references.d.ts +5 -0
- package/dist/tree/state/{custom-entity → definition-entity}/validation/validation-schema.d.ts +54 -54
- package/dist/tree/state/function-declaration/function-declaration.d.ts +4 -4
- package/dist/tree/state/function-declaration/validation/validation-schema.d.ts +10 -10
- package/dist/tree/state/global-event/validation/validation-schema.d.ts +14 -14
- package/dist/tree/state/index.d.ts +1 -1
- package/dist/tree/state/input-map/validation/validation-schema.d.ts +504 -504
- package/dist/tree/state/literal-value/literal-value.d.ts +2 -2
- package/dist/tree/state/literal-value/validation/validation-schema.d.ts +131 -131
- package/dist/tree/state/project/project.d.ts +7 -7
- package/dist/tree/state/project/validation/validation-schema.d.ts +10 -10
- package/dist/tree/state/property/property.d.ts +5 -4
- package/dist/tree/state/property/validation/validation-schema.d.ts +10 -10
- package/dist/tree/state/return-declaration/return-declaration.d.ts +1 -0
- package/dist/tree/state/types/state.d.ts +5 -5
- package/dist/tree/state/types/validation.d.ts +12 -12
- package/dist/tree/state/validate.d.ts +2 -2
- package/dist/tree/state/variable-declaration/variable-declaration.d.ts +2 -0
- package/dist/tree/utils/data-type.d.ts +7 -7
- package/dist/tree/utils/index.d.ts +21 -21
- package/dist/tree/utils/names.d.ts +4 -4
- package/dist/tree/utils/shared-data-structure-entity.d.ts +13 -13
- package/package.json +1 -1
- package/dist/definitions/logic/custom-entity-to-zod-schema.d.ts +0 -4
- package/dist/definitions/types/custom-entity.d.ts +0 -31
- package/dist/tree/state/custom-entity/custom-entity.d.ts +0 -146
- package/dist/tree/state/custom-entity/index.d.ts +0 -1
- package/dist/tree/state/custom-entity/validation/logic-validation.d.ts +0 -9
- package/dist/tree/state/custom-entity/validation/references.d.ts +0 -5
- /package/dist/definitions/built-in-base-entities/operations/{custom-entity → definition-entity}/create-new.d.ts +0 -0
- /package/dist/definitions/built-in-base-entities/operations/{custom-entity → definition-entity}/index.d.ts +0 -0
- /package/dist/definitions/built-in-base-entities/operations/{custom-entity → definition-entity}/validate-data.d.ts +0 -0
- /package/dist/tree/built-in/operations/{custom-entity → definition-entity}/create-new.d.ts +0 -0
- /package/dist/tree/built-in/operations/{custom-entity → definition-entity}/index.d.ts +0 -0
- /package/dist/tree/built-in/operations/{custom-entity → definition-entity}/validate-data.test.d.ts +0 -0
- /package/dist/tree/state/{custom-entity/custom-entity.test.d.ts → definition-entity/definition-entity.test.d.ts} +0 -0
|
@@ -35,17 +35,17 @@ export declare function getDataTypeBaseSchema(): z.ZodObject<{
|
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
36
|
id: string;
|
|
37
37
|
type: EntityType.DataType;
|
|
38
|
+
constant: boolean;
|
|
38
39
|
isNullable: boolean;
|
|
39
40
|
isList: boolean;
|
|
40
|
-
constant: boolean;
|
|
41
41
|
asType: boolean;
|
|
42
42
|
options?: string[] | undefined;
|
|
43
43
|
}, {
|
|
44
44
|
id: string;
|
|
45
45
|
type: EntityType.DataType;
|
|
46
|
+
constant: boolean;
|
|
46
47
|
isNullable: boolean;
|
|
47
48
|
isList: boolean;
|
|
48
|
-
constant: boolean;
|
|
49
49
|
asType: boolean;
|
|
50
50
|
options?: string[] | undefined;
|
|
51
51
|
}>;
|
|
@@ -62,19 +62,19 @@ export declare function getDataTypeMetaSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
62
62
|
}>, "strip", z.ZodTypeAny, {
|
|
63
63
|
id: string;
|
|
64
64
|
type: EntityType.DataType;
|
|
65
|
+
constant: boolean;
|
|
65
66
|
version: number;
|
|
66
67
|
isNullable: boolean;
|
|
67
68
|
isList: boolean;
|
|
68
|
-
constant: boolean;
|
|
69
69
|
asType: boolean;
|
|
70
70
|
options?: string[] | undefined;
|
|
71
71
|
}, {
|
|
72
72
|
id: string;
|
|
73
73
|
type: EntityType.DataType;
|
|
74
|
+
constant: boolean;
|
|
74
75
|
version: number;
|
|
75
76
|
isNullable: boolean;
|
|
76
77
|
isList: boolean;
|
|
77
|
-
constant: boolean;
|
|
78
78
|
asType: boolean;
|
|
79
79
|
options?: string[] | undefined;
|
|
80
80
|
}>;
|
|
@@ -89,17 +89,17 @@ export declare function getDataTypeGenerationTargetSchema(): z.ZodObject<z.objec
|
|
|
89
89
|
}, {}>, "strip", z.ZodTypeAny, {
|
|
90
90
|
id: string;
|
|
91
91
|
type: EntityType.DataType;
|
|
92
|
+
constant: boolean;
|
|
92
93
|
isNullable: boolean;
|
|
93
94
|
isList: boolean;
|
|
94
|
-
constant: boolean;
|
|
95
95
|
asType: boolean;
|
|
96
96
|
options?: string[] | undefined;
|
|
97
97
|
}, {
|
|
98
98
|
id: string;
|
|
99
99
|
type: EntityType.DataType;
|
|
100
|
+
constant: boolean;
|
|
100
101
|
isNullable: boolean;
|
|
101
102
|
isList: boolean;
|
|
102
|
-
constant: boolean;
|
|
103
103
|
asType: boolean;
|
|
104
104
|
options?: string[] | undefined;
|
|
105
105
|
}>;
|
|
@@ -114,16 +114,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
114
114
|
id: z.ZodString;
|
|
115
115
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
116
116
|
entityId: z.ZodString;
|
|
117
|
-
entityType: z.ZodLiteral<EntityType.
|
|
117
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
118
118
|
}, "strip", z.ZodTypeAny, {
|
|
119
119
|
id: string;
|
|
120
120
|
type: EntityType.GenericReference;
|
|
121
|
-
entityType: EntityType.
|
|
121
|
+
entityType: EntityType.DefinitionEntity;
|
|
122
122
|
entityId: string;
|
|
123
123
|
}, {
|
|
124
124
|
id: string;
|
|
125
125
|
type: EntityType.GenericReference;
|
|
126
|
-
entityType: EntityType.
|
|
126
|
+
entityType: EntityType.DefinitionEntity;
|
|
127
127
|
entityId: string;
|
|
128
128
|
}>, z.ZodObject<{
|
|
129
129
|
id: z.ZodString;
|
|
@@ -514,7 +514,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
514
514
|
valueAsType: {
|
|
515
515
|
id: string;
|
|
516
516
|
type: EntityType.GenericReference;
|
|
517
|
-
entityType: EntityType.
|
|
517
|
+
entityType: EntityType.DefinitionEntity;
|
|
518
518
|
entityId: string;
|
|
519
519
|
} | {
|
|
520
520
|
id: string;
|
|
@@ -560,7 +560,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
560
560
|
valueAsType: {
|
|
561
561
|
id: string;
|
|
562
562
|
type: EntityType.GenericReference;
|
|
563
|
-
entityType: EntityType.
|
|
563
|
+
entityType: EntityType.DefinitionEntity;
|
|
564
564
|
entityId: string;
|
|
565
565
|
} | {
|
|
566
566
|
id: string;
|
|
@@ -609,16 +609,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
609
609
|
id: z.ZodString;
|
|
610
610
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
611
611
|
entityId: z.ZodString;
|
|
612
|
-
entityType: z.ZodLiteral<EntityType.
|
|
612
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
613
613
|
}, "strip", z.ZodTypeAny, {
|
|
614
614
|
id: string;
|
|
615
615
|
type: EntityType.GenericReference;
|
|
616
|
-
entityType: EntityType.
|
|
616
|
+
entityType: EntityType.DefinitionEntity;
|
|
617
617
|
entityId: string;
|
|
618
618
|
}, {
|
|
619
619
|
id: string;
|
|
620
620
|
type: EntityType.GenericReference;
|
|
621
|
-
entityType: EntityType.
|
|
621
|
+
entityType: EntityType.DefinitionEntity;
|
|
622
622
|
entityId: string;
|
|
623
623
|
}>, z.ZodObject<{
|
|
624
624
|
id: z.ZodString;
|
|
@@ -1009,7 +1009,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1009
1009
|
valueAsType: {
|
|
1010
1010
|
id: string;
|
|
1011
1011
|
type: EntityType.GenericReference;
|
|
1012
|
-
entityType: EntityType.
|
|
1012
|
+
entityType: EntityType.DefinitionEntity;
|
|
1013
1013
|
entityId: string;
|
|
1014
1014
|
} | {
|
|
1015
1015
|
id: string;
|
|
@@ -1055,7 +1055,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1055
1055
|
valueAsType: {
|
|
1056
1056
|
id: string;
|
|
1057
1057
|
type: EntityType.GenericReference;
|
|
1058
|
-
entityType: EntityType.
|
|
1058
|
+
entityType: EntityType.DefinitionEntity;
|
|
1059
1059
|
entityId: string;
|
|
1060
1060
|
} | {
|
|
1061
1061
|
id: string;
|
|
@@ -1104,16 +1104,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1104
1104
|
id: z.ZodString;
|
|
1105
1105
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
1106
1106
|
entityId: z.ZodString;
|
|
1107
|
-
entityType: z.ZodLiteral<EntityType.
|
|
1107
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
1108
1108
|
}, "strip", z.ZodTypeAny, {
|
|
1109
1109
|
id: string;
|
|
1110
1110
|
type: EntityType.GenericReference;
|
|
1111
|
-
entityType: EntityType.
|
|
1111
|
+
entityType: EntityType.DefinitionEntity;
|
|
1112
1112
|
entityId: string;
|
|
1113
1113
|
}, {
|
|
1114
1114
|
id: string;
|
|
1115
1115
|
type: EntityType.GenericReference;
|
|
1116
|
-
entityType: EntityType.
|
|
1116
|
+
entityType: EntityType.DefinitionEntity;
|
|
1117
1117
|
entityId: string;
|
|
1118
1118
|
}>, z.ZodObject<{
|
|
1119
1119
|
id: z.ZodString;
|
|
@@ -1457,7 +1457,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1457
1457
|
valueAsType: {
|
|
1458
1458
|
id: string;
|
|
1459
1459
|
type: EntityType.GenericReference;
|
|
1460
|
-
entityType: EntityType.
|
|
1460
|
+
entityType: EntityType.DefinitionEntity;
|
|
1461
1461
|
entityId: string;
|
|
1462
1462
|
} | {
|
|
1463
1463
|
id: string;
|
|
@@ -1495,7 +1495,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1495
1495
|
valueAsType: {
|
|
1496
1496
|
id: string;
|
|
1497
1497
|
type: EntityType.GenericReference;
|
|
1498
|
-
entityType: EntityType.
|
|
1498
|
+
entityType: EntityType.DefinitionEntity;
|
|
1499
1499
|
entityId: string;
|
|
1500
1500
|
} | {
|
|
1501
1501
|
id: string;
|
|
@@ -1536,16 +1536,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1536
1536
|
id: z.ZodString;
|
|
1537
1537
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
1538
1538
|
entityId: z.ZodString;
|
|
1539
|
-
entityType: z.ZodLiteral<EntityType.
|
|
1539
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
1540
1540
|
}, "strip", z.ZodTypeAny, {
|
|
1541
1541
|
id: string;
|
|
1542
1542
|
type: EntityType.GenericReference;
|
|
1543
|
-
entityType: EntityType.
|
|
1543
|
+
entityType: EntityType.DefinitionEntity;
|
|
1544
1544
|
entityId: string;
|
|
1545
1545
|
}, {
|
|
1546
1546
|
id: string;
|
|
1547
1547
|
type: EntityType.GenericReference;
|
|
1548
|
-
entityType: EntityType.
|
|
1548
|
+
entityType: EntityType.DefinitionEntity;
|
|
1549
1549
|
entityId: string;
|
|
1550
1550
|
}>, z.ZodObject<{
|
|
1551
1551
|
id: z.ZodString;
|
|
@@ -1870,7 +1870,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1870
1870
|
valueAsType: {
|
|
1871
1871
|
id: string;
|
|
1872
1872
|
type: EntityType.GenericReference;
|
|
1873
|
-
entityType: EntityType.
|
|
1873
|
+
entityType: EntityType.DefinitionEntity;
|
|
1874
1874
|
entityId: string;
|
|
1875
1875
|
} | {
|
|
1876
1876
|
id: string;
|
|
@@ -1904,7 +1904,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1904
1904
|
valueAsType: {
|
|
1905
1905
|
id: string;
|
|
1906
1906
|
type: EntityType.GenericReference;
|
|
1907
|
-
entityType: EntityType.
|
|
1907
|
+
entityType: EntityType.DefinitionEntity;
|
|
1908
1908
|
entityId: string;
|
|
1909
1909
|
} | {
|
|
1910
1910
|
id: string;
|
|
@@ -1941,16 +1941,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1941
1941
|
id: z.ZodString;
|
|
1942
1942
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
1943
1943
|
entityId: z.ZodString;
|
|
1944
|
-
entityType: z.ZodLiteral<EntityType.
|
|
1944
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
1945
1945
|
}, "strip", z.ZodTypeAny, {
|
|
1946
1946
|
id: string;
|
|
1947
1947
|
type: EntityType.GenericReference;
|
|
1948
|
-
entityType: EntityType.
|
|
1948
|
+
entityType: EntityType.DefinitionEntity;
|
|
1949
1949
|
entityId: string;
|
|
1950
1950
|
}, {
|
|
1951
1951
|
id: string;
|
|
1952
1952
|
type: EntityType.GenericReference;
|
|
1953
|
-
entityType: EntityType.
|
|
1953
|
+
entityType: EntityType.DefinitionEntity;
|
|
1954
1954
|
entityId: string;
|
|
1955
1955
|
}>, z.ZodObject<{
|
|
1956
1956
|
id: z.ZodString;
|
|
@@ -2357,7 +2357,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2357
2357
|
valueAsType: {
|
|
2358
2358
|
id: string;
|
|
2359
2359
|
type: EntityType.GenericReference;
|
|
2360
|
-
entityType: EntityType.
|
|
2360
|
+
entityType: EntityType.DefinitionEntity;
|
|
2361
2361
|
entityId: string;
|
|
2362
2362
|
} | {
|
|
2363
2363
|
id: string;
|
|
@@ -2407,7 +2407,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2407
2407
|
valueAsType: {
|
|
2408
2408
|
id: string;
|
|
2409
2409
|
type: EntityType.GenericReference;
|
|
2410
|
-
entityType: EntityType.
|
|
2410
|
+
entityType: EntityType.DefinitionEntity;
|
|
2411
2411
|
entityId: string;
|
|
2412
2412
|
} | {
|
|
2413
2413
|
id: string;
|
|
@@ -2460,16 +2460,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2460
2460
|
id: z.ZodString;
|
|
2461
2461
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
2462
2462
|
entityId: z.ZodString;
|
|
2463
|
-
entityType: z.ZodLiteral<EntityType.
|
|
2463
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
2464
2464
|
}, "strip", z.ZodTypeAny, {
|
|
2465
2465
|
id: string;
|
|
2466
2466
|
type: EntityType.GenericReference;
|
|
2467
|
-
entityType: EntityType.
|
|
2467
|
+
entityType: EntityType.DefinitionEntity;
|
|
2468
2468
|
entityId: string;
|
|
2469
2469
|
}, {
|
|
2470
2470
|
id: string;
|
|
2471
2471
|
type: EntityType.GenericReference;
|
|
2472
|
-
entityType: EntityType.
|
|
2472
|
+
entityType: EntityType.DefinitionEntity;
|
|
2473
2473
|
entityId: string;
|
|
2474
2474
|
}>, z.ZodObject<{
|
|
2475
2475
|
id: z.ZodString;
|
|
@@ -2794,7 +2794,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2794
2794
|
valueAsType: {
|
|
2795
2795
|
id: string;
|
|
2796
2796
|
type: EntityType.GenericReference;
|
|
2797
|
-
entityType: EntityType.
|
|
2797
|
+
entityType: EntityType.DefinitionEntity;
|
|
2798
2798
|
entityId: string;
|
|
2799
2799
|
} | {
|
|
2800
2800
|
id: string;
|
|
@@ -2828,7 +2828,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2828
2828
|
valueAsType: {
|
|
2829
2829
|
id: string;
|
|
2830
2830
|
type: EntityType.GenericReference;
|
|
2831
|
-
entityType: EntityType.
|
|
2831
|
+
entityType: EntityType.DefinitionEntity;
|
|
2832
2832
|
entityId: string;
|
|
2833
2833
|
} | {
|
|
2834
2834
|
id: string;
|
|
@@ -2865,16 +2865,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2865
2865
|
id: z.ZodString;
|
|
2866
2866
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
2867
2867
|
entityId: z.ZodString;
|
|
2868
|
-
entityType: z.ZodLiteral<EntityType.
|
|
2868
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
2869
2869
|
}, "strip", z.ZodTypeAny, {
|
|
2870
2870
|
id: string;
|
|
2871
2871
|
type: EntityType.GenericReference;
|
|
2872
|
-
entityType: EntityType.
|
|
2872
|
+
entityType: EntityType.DefinitionEntity;
|
|
2873
2873
|
entityId: string;
|
|
2874
2874
|
}, {
|
|
2875
2875
|
id: string;
|
|
2876
2876
|
type: EntityType.GenericReference;
|
|
2877
|
-
entityType: EntityType.
|
|
2877
|
+
entityType: EntityType.DefinitionEntity;
|
|
2878
2878
|
entityId: string;
|
|
2879
2879
|
}>, z.ZodObject<{
|
|
2880
2880
|
id: z.ZodString;
|
|
@@ -3199,7 +3199,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3199
3199
|
valueAsType: {
|
|
3200
3200
|
id: string;
|
|
3201
3201
|
type: EntityType.GenericReference;
|
|
3202
|
-
entityType: EntityType.
|
|
3202
|
+
entityType: EntityType.DefinitionEntity;
|
|
3203
3203
|
entityId: string;
|
|
3204
3204
|
} | {
|
|
3205
3205
|
id: string;
|
|
@@ -3233,7 +3233,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3233
3233
|
valueAsType: {
|
|
3234
3234
|
id: string;
|
|
3235
3235
|
type: EntityType.GenericReference;
|
|
3236
|
-
entityType: EntityType.
|
|
3236
|
+
entityType: EntityType.DefinitionEntity;
|
|
3237
3237
|
entityId: string;
|
|
3238
3238
|
} | {
|
|
3239
3239
|
id: string;
|
|
@@ -3270,16 +3270,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3270
3270
|
id: z.ZodString;
|
|
3271
3271
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
3272
3272
|
entityId: z.ZodString;
|
|
3273
|
-
entityType: z.ZodLiteral<EntityType.
|
|
3273
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
3274
3274
|
}, "strip", z.ZodTypeAny, {
|
|
3275
3275
|
id: string;
|
|
3276
3276
|
type: EntityType.GenericReference;
|
|
3277
|
-
entityType: EntityType.
|
|
3277
|
+
entityType: EntityType.DefinitionEntity;
|
|
3278
3278
|
entityId: string;
|
|
3279
3279
|
}, {
|
|
3280
3280
|
id: string;
|
|
3281
3281
|
type: EntityType.GenericReference;
|
|
3282
|
-
entityType: EntityType.
|
|
3282
|
+
entityType: EntityType.DefinitionEntity;
|
|
3283
3283
|
entityId: string;
|
|
3284
3284
|
}>, z.ZodObject<{
|
|
3285
3285
|
id: z.ZodString;
|
|
@@ -3604,7 +3604,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3604
3604
|
valueAsType: {
|
|
3605
3605
|
id: string;
|
|
3606
3606
|
type: EntityType.GenericReference;
|
|
3607
|
-
entityType: EntityType.
|
|
3607
|
+
entityType: EntityType.DefinitionEntity;
|
|
3608
3608
|
entityId: string;
|
|
3609
3609
|
} | {
|
|
3610
3610
|
id: string;
|
|
@@ -3638,7 +3638,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3638
3638
|
valueAsType: {
|
|
3639
3639
|
id: string;
|
|
3640
3640
|
type: EntityType.GenericReference;
|
|
3641
|
-
entityType: EntityType.
|
|
3641
|
+
entityType: EntityType.DefinitionEntity;
|
|
3642
3642
|
entityId: string;
|
|
3643
3643
|
} | {
|
|
3644
3644
|
id: string;
|
|
@@ -3675,16 +3675,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3675
3675
|
id: z.ZodString;
|
|
3676
3676
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
3677
3677
|
entityId: z.ZodString;
|
|
3678
|
-
entityType: z.ZodLiteral<EntityType.
|
|
3678
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
3679
3679
|
}, "strip", z.ZodTypeAny, {
|
|
3680
3680
|
id: string;
|
|
3681
3681
|
type: EntityType.GenericReference;
|
|
3682
|
-
entityType: EntityType.
|
|
3682
|
+
entityType: EntityType.DefinitionEntity;
|
|
3683
3683
|
entityId: string;
|
|
3684
3684
|
}, {
|
|
3685
3685
|
id: string;
|
|
3686
3686
|
type: EntityType.GenericReference;
|
|
3687
|
-
entityType: EntityType.
|
|
3687
|
+
entityType: EntityType.DefinitionEntity;
|
|
3688
3688
|
entityId: string;
|
|
3689
3689
|
}>, z.ZodObject<{
|
|
3690
3690
|
id: z.ZodString;
|
|
@@ -4025,7 +4025,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4025
4025
|
valueAsType: {
|
|
4026
4026
|
id: string;
|
|
4027
4027
|
type: EntityType.GenericReference;
|
|
4028
|
-
entityType: EntityType.
|
|
4028
|
+
entityType: EntityType.DefinitionEntity;
|
|
4029
4029
|
entityId: string;
|
|
4030
4030
|
} | {
|
|
4031
4031
|
id: string;
|
|
@@ -4063,7 +4063,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4063
4063
|
valueAsType: {
|
|
4064
4064
|
id: string;
|
|
4065
4065
|
type: EntityType.GenericReference;
|
|
4066
|
-
entityType: EntityType.
|
|
4066
|
+
entityType: EntityType.DefinitionEntity;
|
|
4067
4067
|
entityId: string;
|
|
4068
4068
|
} | {
|
|
4069
4069
|
id: string;
|
|
@@ -4104,16 +4104,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4104
4104
|
id: z.ZodString;
|
|
4105
4105
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4106
4106
|
entityId: z.ZodString;
|
|
4107
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4107
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4108
4108
|
}, "strip", z.ZodTypeAny, {
|
|
4109
4109
|
id: string;
|
|
4110
4110
|
type: EntityType.GenericReference;
|
|
4111
|
-
entityType: EntityType.
|
|
4111
|
+
entityType: EntityType.DefinitionEntity;
|
|
4112
4112
|
entityId: string;
|
|
4113
4113
|
}, {
|
|
4114
4114
|
id: string;
|
|
4115
4115
|
type: EntityType.GenericReference;
|
|
4116
|
-
entityType: EntityType.
|
|
4116
|
+
entityType: EntityType.DefinitionEntity;
|
|
4117
4117
|
entityId: string;
|
|
4118
4118
|
}>, z.ZodObject<{
|
|
4119
4119
|
id: z.ZodString;
|
|
@@ -4433,16 +4433,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4433
4433
|
id: z.ZodString;
|
|
4434
4434
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4435
4435
|
entityId: z.ZodString;
|
|
4436
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4436
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4437
4437
|
}, "strip", z.ZodTypeAny, {
|
|
4438
4438
|
id: string;
|
|
4439
4439
|
type: EntityType.GenericReference;
|
|
4440
|
-
entityType: EntityType.
|
|
4440
|
+
entityType: EntityType.DefinitionEntity;
|
|
4441
4441
|
entityId: string;
|
|
4442
4442
|
}, {
|
|
4443
4443
|
id: string;
|
|
4444
4444
|
type: EntityType.GenericReference;
|
|
4445
|
-
entityType: EntityType.
|
|
4445
|
+
entityType: EntityType.DefinitionEntity;
|
|
4446
4446
|
entityId: string;
|
|
4447
4447
|
}>;
|
|
4448
4448
|
autogeneration: z.ZodNull;
|
|
@@ -4453,7 +4453,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4453
4453
|
valueAsType: {
|
|
4454
4454
|
id: string;
|
|
4455
4455
|
type: EntityType.GenericReference;
|
|
4456
|
-
entityType: EntityType.
|
|
4456
|
+
entityType: EntityType.DefinitionEntity;
|
|
4457
4457
|
entityId: string;
|
|
4458
4458
|
} | {
|
|
4459
4459
|
id: string;
|
|
@@ -4482,7 +4482,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4482
4482
|
value: {
|
|
4483
4483
|
id: string;
|
|
4484
4484
|
type: EntityType.GenericReference;
|
|
4485
|
-
entityType: EntityType.
|
|
4485
|
+
entityType: EntityType.DefinitionEntity;
|
|
4486
4486
|
entityId: string;
|
|
4487
4487
|
};
|
|
4488
4488
|
}, {
|
|
@@ -4492,7 +4492,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4492
4492
|
valueAsType: {
|
|
4493
4493
|
id: string;
|
|
4494
4494
|
type: EntityType.GenericReference;
|
|
4495
|
-
entityType: EntityType.
|
|
4495
|
+
entityType: EntityType.DefinitionEntity;
|
|
4496
4496
|
entityId: string;
|
|
4497
4497
|
} | {
|
|
4498
4498
|
id: string;
|
|
@@ -4521,7 +4521,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4521
4521
|
value: {
|
|
4522
4522
|
id: string;
|
|
4523
4523
|
type: EntityType.GenericReference;
|
|
4524
|
-
entityType: EntityType.
|
|
4524
|
+
entityType: EntityType.DefinitionEntity;
|
|
4525
4525
|
entityId: string;
|
|
4526
4526
|
};
|
|
4527
4527
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -4534,16 +4534,16 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4534
4534
|
id: z.ZodString;
|
|
4535
4535
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4536
4536
|
entityId: z.ZodString;
|
|
4537
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4537
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4538
4538
|
}, "strip", z.ZodTypeAny, {
|
|
4539
4539
|
id: string;
|
|
4540
4540
|
type: EntityType.GenericReference;
|
|
4541
|
-
entityType: EntityType.
|
|
4541
|
+
entityType: EntityType.DefinitionEntity;
|
|
4542
4542
|
entityId: string;
|
|
4543
4543
|
}, {
|
|
4544
4544
|
id: string;
|
|
4545
4545
|
type: EntityType.GenericReference;
|
|
4546
|
-
entityType: EntityType.
|
|
4546
|
+
entityType: EntityType.DefinitionEntity;
|
|
4547
4547
|
entityId: string;
|
|
4548
4548
|
}>, z.ZodObject<{
|
|
4549
4549
|
id: z.ZodString;
|
|
@@ -4883,7 +4883,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4883
4883
|
valueAsType: {
|
|
4884
4884
|
id: string;
|
|
4885
4885
|
type: EntityType.GenericReference;
|
|
4886
|
-
entityType: EntityType.
|
|
4886
|
+
entityType: EntityType.DefinitionEntity;
|
|
4887
4887
|
entityId: string;
|
|
4888
4888
|
} | {
|
|
4889
4889
|
id: string;
|
|
@@ -4922,7 +4922,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4922
4922
|
valueAsType: {
|
|
4923
4923
|
id: string;
|
|
4924
4924
|
type: EntityType.GenericReference;
|
|
4925
|
-
entityType: EntityType.
|
|
4925
|
+
entityType: EntityType.DefinitionEntity;
|
|
4926
4926
|
entityId: string;
|
|
4927
4927
|
} | {
|
|
4928
4928
|
id: string;
|
|
@@ -4956,11 +4956,11 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4956
4956
|
};
|
|
4957
4957
|
}>]>>;
|
|
4958
4958
|
entity: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
4959
|
-
type: z.ZodLiteral<EntityType.
|
|
4959
|
+
type: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4960
4960
|
}, "strip", z.ZodTypeAny, {
|
|
4961
|
-
type: EntityType.
|
|
4961
|
+
type: EntityType.DefinitionEntity;
|
|
4962
4962
|
}, {
|
|
4963
|
-
type: EntityType.
|
|
4963
|
+
type: EntityType.DefinitionEntity;
|
|
4964
4964
|
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
|
|
4965
4965
|
type: z.ZodLiteral<EntityType.BuiltInBaseEntity>;
|
|
4966
4966
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5109,7 +5109,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5109
5109
|
} | {
|
|
5110
5110
|
type: EntityType.BuiltInBaseEntity;
|
|
5111
5111
|
} | {
|
|
5112
|
-
type: EntityType.
|
|
5112
|
+
type: EntityType.DefinitionEntity;
|
|
5113
5113
|
} | null;
|
|
5114
5114
|
parent: {
|
|
5115
5115
|
id: string;
|
|
@@ -5159,7 +5159,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5159
5159
|
valueAsType: {
|
|
5160
5160
|
id: string;
|
|
5161
5161
|
type: EntityType.GenericReference;
|
|
5162
|
-
entityType: EntityType.
|
|
5162
|
+
entityType: EntityType.DefinitionEntity;
|
|
5163
5163
|
entityId: string;
|
|
5164
5164
|
} | {
|
|
5165
5165
|
id: string;
|
|
@@ -5205,7 +5205,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5205
5205
|
valueAsType: {
|
|
5206
5206
|
id: string;
|
|
5207
5207
|
type: EntityType.GenericReference;
|
|
5208
|
-
entityType: EntityType.
|
|
5208
|
+
entityType: EntityType.DefinitionEntity;
|
|
5209
5209
|
entityId: string;
|
|
5210
5210
|
} | {
|
|
5211
5211
|
id: string;
|
|
@@ -5251,7 +5251,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5251
5251
|
valueAsType: {
|
|
5252
5252
|
id: string;
|
|
5253
5253
|
type: EntityType.GenericReference;
|
|
5254
|
-
entityType: EntityType.
|
|
5254
|
+
entityType: EntityType.DefinitionEntity;
|
|
5255
5255
|
entityId: string;
|
|
5256
5256
|
} | {
|
|
5257
5257
|
id: string;
|
|
@@ -5289,7 +5289,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5289
5289
|
valueAsType: {
|
|
5290
5290
|
id: string;
|
|
5291
5291
|
type: EntityType.GenericReference;
|
|
5292
|
-
entityType: EntityType.
|
|
5292
|
+
entityType: EntityType.DefinitionEntity;
|
|
5293
5293
|
entityId: string;
|
|
5294
5294
|
} | {
|
|
5295
5295
|
id: string;
|
|
@@ -5323,7 +5323,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5323
5323
|
valueAsType: {
|
|
5324
5324
|
id: string;
|
|
5325
5325
|
type: EntityType.GenericReference;
|
|
5326
|
-
entityType: EntityType.
|
|
5326
|
+
entityType: EntityType.DefinitionEntity;
|
|
5327
5327
|
entityId: string;
|
|
5328
5328
|
} | {
|
|
5329
5329
|
id: string;
|
|
@@ -5373,7 +5373,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5373
5373
|
valueAsType: {
|
|
5374
5374
|
id: string;
|
|
5375
5375
|
type: EntityType.GenericReference;
|
|
5376
|
-
entityType: EntityType.
|
|
5376
|
+
entityType: EntityType.DefinitionEntity;
|
|
5377
5377
|
entityId: string;
|
|
5378
5378
|
} | {
|
|
5379
5379
|
id: string;
|
|
@@ -5407,7 +5407,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5407
5407
|
valueAsType: {
|
|
5408
5408
|
id: string;
|
|
5409
5409
|
type: EntityType.GenericReference;
|
|
5410
|
-
entityType: EntityType.
|
|
5410
|
+
entityType: EntityType.DefinitionEntity;
|
|
5411
5411
|
entityId: string;
|
|
5412
5412
|
} | {
|
|
5413
5413
|
id: string;
|
|
@@ -5441,7 +5441,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5441
5441
|
valueAsType: {
|
|
5442
5442
|
id: string;
|
|
5443
5443
|
type: EntityType.GenericReference;
|
|
5444
|
-
entityType: EntityType.
|
|
5444
|
+
entityType: EntityType.DefinitionEntity;
|
|
5445
5445
|
entityId: string;
|
|
5446
5446
|
} | {
|
|
5447
5447
|
id: string;
|
|
@@ -5475,7 +5475,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5475
5475
|
valueAsType: {
|
|
5476
5476
|
id: string;
|
|
5477
5477
|
type: EntityType.GenericReference;
|
|
5478
|
-
entityType: EntityType.
|
|
5478
|
+
entityType: EntityType.DefinitionEntity;
|
|
5479
5479
|
entityId: string;
|
|
5480
5480
|
} | {
|
|
5481
5481
|
id: string;
|
|
@@ -5513,7 +5513,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5513
5513
|
valueAsType: {
|
|
5514
5514
|
id: string;
|
|
5515
5515
|
type: EntityType.GenericReference;
|
|
5516
|
-
entityType: EntityType.
|
|
5516
|
+
entityType: EntityType.DefinitionEntity;
|
|
5517
5517
|
entityId: string;
|
|
5518
5518
|
} | {
|
|
5519
5519
|
id: string;
|
|
@@ -5542,7 +5542,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5542
5542
|
value: {
|
|
5543
5543
|
id: string;
|
|
5544
5544
|
type: EntityType.GenericReference;
|
|
5545
|
-
entityType: EntityType.
|
|
5545
|
+
entityType: EntityType.DefinitionEntity;
|
|
5546
5546
|
entityId: string;
|
|
5547
5547
|
};
|
|
5548
5548
|
} | {
|
|
@@ -5552,7 +5552,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5552
5552
|
valueAsType: {
|
|
5553
5553
|
id: string;
|
|
5554
5554
|
type: EntityType.GenericReference;
|
|
5555
|
-
entityType: EntityType.
|
|
5555
|
+
entityType: EntityType.DefinitionEntity;
|
|
5556
5556
|
entityId: string;
|
|
5557
5557
|
} | {
|
|
5558
5558
|
id: string;
|
|
@@ -5593,7 +5593,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5593
5593
|
} | {
|
|
5594
5594
|
type: EntityType.BuiltInBaseEntity;
|
|
5595
5595
|
} | {
|
|
5596
|
-
type: EntityType.
|
|
5596
|
+
type: EntityType.DefinitionEntity;
|
|
5597
5597
|
} | null;
|
|
5598
5598
|
parent: {
|
|
5599
5599
|
id: string;
|
|
@@ -5643,7 +5643,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5643
5643
|
valueAsType: {
|
|
5644
5644
|
id: string;
|
|
5645
5645
|
type: EntityType.GenericReference;
|
|
5646
|
-
entityType: EntityType.
|
|
5646
|
+
entityType: EntityType.DefinitionEntity;
|
|
5647
5647
|
entityId: string;
|
|
5648
5648
|
} | {
|
|
5649
5649
|
id: string;
|
|
@@ -5689,7 +5689,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5689
5689
|
valueAsType: {
|
|
5690
5690
|
id: string;
|
|
5691
5691
|
type: EntityType.GenericReference;
|
|
5692
|
-
entityType: EntityType.
|
|
5692
|
+
entityType: EntityType.DefinitionEntity;
|
|
5693
5693
|
entityId: string;
|
|
5694
5694
|
} | {
|
|
5695
5695
|
id: string;
|
|
@@ -5735,7 +5735,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5735
5735
|
valueAsType: {
|
|
5736
5736
|
id: string;
|
|
5737
5737
|
type: EntityType.GenericReference;
|
|
5738
|
-
entityType: EntityType.
|
|
5738
|
+
entityType: EntityType.DefinitionEntity;
|
|
5739
5739
|
entityId: string;
|
|
5740
5740
|
} | {
|
|
5741
5741
|
id: string;
|
|
@@ -5773,7 +5773,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5773
5773
|
valueAsType: {
|
|
5774
5774
|
id: string;
|
|
5775
5775
|
type: EntityType.GenericReference;
|
|
5776
|
-
entityType: EntityType.
|
|
5776
|
+
entityType: EntityType.DefinitionEntity;
|
|
5777
5777
|
entityId: string;
|
|
5778
5778
|
} | {
|
|
5779
5779
|
id: string;
|
|
@@ -5807,7 +5807,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5807
5807
|
valueAsType: {
|
|
5808
5808
|
id: string;
|
|
5809
5809
|
type: EntityType.GenericReference;
|
|
5810
|
-
entityType: EntityType.
|
|
5810
|
+
entityType: EntityType.DefinitionEntity;
|
|
5811
5811
|
entityId: string;
|
|
5812
5812
|
} | {
|
|
5813
5813
|
id: string;
|
|
@@ -5857,7 +5857,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5857
5857
|
valueAsType: {
|
|
5858
5858
|
id: string;
|
|
5859
5859
|
type: EntityType.GenericReference;
|
|
5860
|
-
entityType: EntityType.
|
|
5860
|
+
entityType: EntityType.DefinitionEntity;
|
|
5861
5861
|
entityId: string;
|
|
5862
5862
|
} | {
|
|
5863
5863
|
id: string;
|
|
@@ -5891,7 +5891,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5891
5891
|
valueAsType: {
|
|
5892
5892
|
id: string;
|
|
5893
5893
|
type: EntityType.GenericReference;
|
|
5894
|
-
entityType: EntityType.
|
|
5894
|
+
entityType: EntityType.DefinitionEntity;
|
|
5895
5895
|
entityId: string;
|
|
5896
5896
|
} | {
|
|
5897
5897
|
id: string;
|
|
@@ -5925,7 +5925,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5925
5925
|
valueAsType: {
|
|
5926
5926
|
id: string;
|
|
5927
5927
|
type: EntityType.GenericReference;
|
|
5928
|
-
entityType: EntityType.
|
|
5928
|
+
entityType: EntityType.DefinitionEntity;
|
|
5929
5929
|
entityId: string;
|
|
5930
5930
|
} | {
|
|
5931
5931
|
id: string;
|
|
@@ -5959,7 +5959,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5959
5959
|
valueAsType: {
|
|
5960
5960
|
id: string;
|
|
5961
5961
|
type: EntityType.GenericReference;
|
|
5962
|
-
entityType: EntityType.
|
|
5962
|
+
entityType: EntityType.DefinitionEntity;
|
|
5963
5963
|
entityId: string;
|
|
5964
5964
|
} | {
|
|
5965
5965
|
id: string;
|
|
@@ -5997,7 +5997,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5997
5997
|
valueAsType: {
|
|
5998
5998
|
id: string;
|
|
5999
5999
|
type: EntityType.GenericReference;
|
|
6000
|
-
entityType: EntityType.
|
|
6000
|
+
entityType: EntityType.DefinitionEntity;
|
|
6001
6001
|
entityId: string;
|
|
6002
6002
|
} | {
|
|
6003
6003
|
id: string;
|
|
@@ -6026,7 +6026,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
6026
6026
|
value: {
|
|
6027
6027
|
id: string;
|
|
6028
6028
|
type: EntityType.GenericReference;
|
|
6029
|
-
entityType: EntityType.
|
|
6029
|
+
entityType: EntityType.DefinitionEntity;
|
|
6030
6030
|
entityId: string;
|
|
6031
6031
|
};
|
|
6032
6032
|
} | {
|
|
@@ -6036,7 +6036,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
|
|
|
6036
6036
|
valueAsType: {
|
|
6037
6037
|
id: string;
|
|
6038
6038
|
type: EntityType.GenericReference;
|
|
6039
|
-
entityType: EntityType.
|
|
6039
|
+
entityType: EntityType.DefinitionEntity;
|
|
6040
6040
|
entityId: string;
|
|
6041
6041
|
} | {
|
|
6042
6042
|
id: string;
|
|
@@ -6091,16 +6091,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6091
6091
|
id: z.ZodString;
|
|
6092
6092
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
6093
6093
|
entityId: z.ZodString;
|
|
6094
|
-
entityType: z.ZodLiteral<EntityType.
|
|
6094
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
6095
6095
|
}, "strip", z.ZodTypeAny, {
|
|
6096
6096
|
id: string;
|
|
6097
6097
|
type: EntityType.GenericReference;
|
|
6098
|
-
entityType: EntityType.
|
|
6098
|
+
entityType: EntityType.DefinitionEntity;
|
|
6099
6099
|
entityId: string;
|
|
6100
6100
|
}, {
|
|
6101
6101
|
id: string;
|
|
6102
6102
|
type: EntityType.GenericReference;
|
|
6103
|
-
entityType: EntityType.
|
|
6103
|
+
entityType: EntityType.DefinitionEntity;
|
|
6104
6104
|
entityId: string;
|
|
6105
6105
|
}>, z.ZodObject<{
|
|
6106
6106
|
id: z.ZodString;
|
|
@@ -6491,7 +6491,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6491
6491
|
valueAsType: {
|
|
6492
6492
|
id: string;
|
|
6493
6493
|
type: EntityType.GenericReference;
|
|
6494
|
-
entityType: EntityType.
|
|
6494
|
+
entityType: EntityType.DefinitionEntity;
|
|
6495
6495
|
entityId: string;
|
|
6496
6496
|
} | {
|
|
6497
6497
|
id: string;
|
|
@@ -6537,7 +6537,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6537
6537
|
valueAsType: {
|
|
6538
6538
|
id: string;
|
|
6539
6539
|
type: EntityType.GenericReference;
|
|
6540
|
-
entityType: EntityType.
|
|
6540
|
+
entityType: EntityType.DefinitionEntity;
|
|
6541
6541
|
entityId: string;
|
|
6542
6542
|
} | {
|
|
6543
6543
|
id: string;
|
|
@@ -6586,16 +6586,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6586
6586
|
id: z.ZodString;
|
|
6587
6587
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
6588
6588
|
entityId: z.ZodString;
|
|
6589
|
-
entityType: z.ZodLiteral<EntityType.
|
|
6589
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
6590
6590
|
}, "strip", z.ZodTypeAny, {
|
|
6591
6591
|
id: string;
|
|
6592
6592
|
type: EntityType.GenericReference;
|
|
6593
|
-
entityType: EntityType.
|
|
6593
|
+
entityType: EntityType.DefinitionEntity;
|
|
6594
6594
|
entityId: string;
|
|
6595
6595
|
}, {
|
|
6596
6596
|
id: string;
|
|
6597
6597
|
type: EntityType.GenericReference;
|
|
6598
|
-
entityType: EntityType.
|
|
6598
|
+
entityType: EntityType.DefinitionEntity;
|
|
6599
6599
|
entityId: string;
|
|
6600
6600
|
}>, z.ZodObject<{
|
|
6601
6601
|
id: z.ZodString;
|
|
@@ -6986,7 +6986,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6986
6986
|
valueAsType: {
|
|
6987
6987
|
id: string;
|
|
6988
6988
|
type: EntityType.GenericReference;
|
|
6989
|
-
entityType: EntityType.
|
|
6989
|
+
entityType: EntityType.DefinitionEntity;
|
|
6990
6990
|
entityId: string;
|
|
6991
6991
|
} | {
|
|
6992
6992
|
id: string;
|
|
@@ -7032,7 +7032,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7032
7032
|
valueAsType: {
|
|
7033
7033
|
id: string;
|
|
7034
7034
|
type: EntityType.GenericReference;
|
|
7035
|
-
entityType: EntityType.
|
|
7035
|
+
entityType: EntityType.DefinitionEntity;
|
|
7036
7036
|
entityId: string;
|
|
7037
7037
|
} | {
|
|
7038
7038
|
id: string;
|
|
@@ -7081,16 +7081,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7081
7081
|
id: z.ZodString;
|
|
7082
7082
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
7083
7083
|
entityId: z.ZodString;
|
|
7084
|
-
entityType: z.ZodLiteral<EntityType.
|
|
7084
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
7085
7085
|
}, "strip", z.ZodTypeAny, {
|
|
7086
7086
|
id: string;
|
|
7087
7087
|
type: EntityType.GenericReference;
|
|
7088
|
-
entityType: EntityType.
|
|
7088
|
+
entityType: EntityType.DefinitionEntity;
|
|
7089
7089
|
entityId: string;
|
|
7090
7090
|
}, {
|
|
7091
7091
|
id: string;
|
|
7092
7092
|
type: EntityType.GenericReference;
|
|
7093
|
-
entityType: EntityType.
|
|
7093
|
+
entityType: EntityType.DefinitionEntity;
|
|
7094
7094
|
entityId: string;
|
|
7095
7095
|
}>, z.ZodObject<{
|
|
7096
7096
|
id: z.ZodString;
|
|
@@ -7434,7 +7434,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7434
7434
|
valueAsType: {
|
|
7435
7435
|
id: string;
|
|
7436
7436
|
type: EntityType.GenericReference;
|
|
7437
|
-
entityType: EntityType.
|
|
7437
|
+
entityType: EntityType.DefinitionEntity;
|
|
7438
7438
|
entityId: string;
|
|
7439
7439
|
} | {
|
|
7440
7440
|
id: string;
|
|
@@ -7472,7 +7472,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7472
7472
|
valueAsType: {
|
|
7473
7473
|
id: string;
|
|
7474
7474
|
type: EntityType.GenericReference;
|
|
7475
|
-
entityType: EntityType.
|
|
7475
|
+
entityType: EntityType.DefinitionEntity;
|
|
7476
7476
|
entityId: string;
|
|
7477
7477
|
} | {
|
|
7478
7478
|
id: string;
|
|
@@ -7513,16 +7513,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7513
7513
|
id: z.ZodString;
|
|
7514
7514
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
7515
7515
|
entityId: z.ZodString;
|
|
7516
|
-
entityType: z.ZodLiteral<EntityType.
|
|
7516
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
7517
7517
|
}, "strip", z.ZodTypeAny, {
|
|
7518
7518
|
id: string;
|
|
7519
7519
|
type: EntityType.GenericReference;
|
|
7520
|
-
entityType: EntityType.
|
|
7520
|
+
entityType: EntityType.DefinitionEntity;
|
|
7521
7521
|
entityId: string;
|
|
7522
7522
|
}, {
|
|
7523
7523
|
id: string;
|
|
7524
7524
|
type: EntityType.GenericReference;
|
|
7525
|
-
entityType: EntityType.
|
|
7525
|
+
entityType: EntityType.DefinitionEntity;
|
|
7526
7526
|
entityId: string;
|
|
7527
7527
|
}>, z.ZodObject<{
|
|
7528
7528
|
id: z.ZodString;
|
|
@@ -7847,7 +7847,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7847
7847
|
valueAsType: {
|
|
7848
7848
|
id: string;
|
|
7849
7849
|
type: EntityType.GenericReference;
|
|
7850
|
-
entityType: EntityType.
|
|
7850
|
+
entityType: EntityType.DefinitionEntity;
|
|
7851
7851
|
entityId: string;
|
|
7852
7852
|
} | {
|
|
7853
7853
|
id: string;
|
|
@@ -7881,7 +7881,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7881
7881
|
valueAsType: {
|
|
7882
7882
|
id: string;
|
|
7883
7883
|
type: EntityType.GenericReference;
|
|
7884
|
-
entityType: EntityType.
|
|
7884
|
+
entityType: EntityType.DefinitionEntity;
|
|
7885
7885
|
entityId: string;
|
|
7886
7886
|
} | {
|
|
7887
7887
|
id: string;
|
|
@@ -7918,16 +7918,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7918
7918
|
id: z.ZodString;
|
|
7919
7919
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
7920
7920
|
entityId: z.ZodString;
|
|
7921
|
-
entityType: z.ZodLiteral<EntityType.
|
|
7921
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
7922
7922
|
}, "strip", z.ZodTypeAny, {
|
|
7923
7923
|
id: string;
|
|
7924
7924
|
type: EntityType.GenericReference;
|
|
7925
|
-
entityType: EntityType.
|
|
7925
|
+
entityType: EntityType.DefinitionEntity;
|
|
7926
7926
|
entityId: string;
|
|
7927
7927
|
}, {
|
|
7928
7928
|
id: string;
|
|
7929
7929
|
type: EntityType.GenericReference;
|
|
7930
|
-
entityType: EntityType.
|
|
7930
|
+
entityType: EntityType.DefinitionEntity;
|
|
7931
7931
|
entityId: string;
|
|
7932
7932
|
}>, z.ZodObject<{
|
|
7933
7933
|
id: z.ZodString;
|
|
@@ -8334,7 +8334,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8334
8334
|
valueAsType: {
|
|
8335
8335
|
id: string;
|
|
8336
8336
|
type: EntityType.GenericReference;
|
|
8337
|
-
entityType: EntityType.
|
|
8337
|
+
entityType: EntityType.DefinitionEntity;
|
|
8338
8338
|
entityId: string;
|
|
8339
8339
|
} | {
|
|
8340
8340
|
id: string;
|
|
@@ -8384,7 +8384,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8384
8384
|
valueAsType: {
|
|
8385
8385
|
id: string;
|
|
8386
8386
|
type: EntityType.GenericReference;
|
|
8387
|
-
entityType: EntityType.
|
|
8387
|
+
entityType: EntityType.DefinitionEntity;
|
|
8388
8388
|
entityId: string;
|
|
8389
8389
|
} | {
|
|
8390
8390
|
id: string;
|
|
@@ -8437,16 +8437,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8437
8437
|
id: z.ZodString;
|
|
8438
8438
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
8439
8439
|
entityId: z.ZodString;
|
|
8440
|
-
entityType: z.ZodLiteral<EntityType.
|
|
8440
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
8441
8441
|
}, "strip", z.ZodTypeAny, {
|
|
8442
8442
|
id: string;
|
|
8443
8443
|
type: EntityType.GenericReference;
|
|
8444
|
-
entityType: EntityType.
|
|
8444
|
+
entityType: EntityType.DefinitionEntity;
|
|
8445
8445
|
entityId: string;
|
|
8446
8446
|
}, {
|
|
8447
8447
|
id: string;
|
|
8448
8448
|
type: EntityType.GenericReference;
|
|
8449
|
-
entityType: EntityType.
|
|
8449
|
+
entityType: EntityType.DefinitionEntity;
|
|
8450
8450
|
entityId: string;
|
|
8451
8451
|
}>, z.ZodObject<{
|
|
8452
8452
|
id: z.ZodString;
|
|
@@ -8771,7 +8771,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8771
8771
|
valueAsType: {
|
|
8772
8772
|
id: string;
|
|
8773
8773
|
type: EntityType.GenericReference;
|
|
8774
|
-
entityType: EntityType.
|
|
8774
|
+
entityType: EntityType.DefinitionEntity;
|
|
8775
8775
|
entityId: string;
|
|
8776
8776
|
} | {
|
|
8777
8777
|
id: string;
|
|
@@ -8805,7 +8805,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8805
8805
|
valueAsType: {
|
|
8806
8806
|
id: string;
|
|
8807
8807
|
type: EntityType.GenericReference;
|
|
8808
|
-
entityType: EntityType.
|
|
8808
|
+
entityType: EntityType.DefinitionEntity;
|
|
8809
8809
|
entityId: string;
|
|
8810
8810
|
} | {
|
|
8811
8811
|
id: string;
|
|
@@ -8842,16 +8842,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8842
8842
|
id: z.ZodString;
|
|
8843
8843
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
8844
8844
|
entityId: z.ZodString;
|
|
8845
|
-
entityType: z.ZodLiteral<EntityType.
|
|
8845
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
8846
8846
|
}, "strip", z.ZodTypeAny, {
|
|
8847
8847
|
id: string;
|
|
8848
8848
|
type: EntityType.GenericReference;
|
|
8849
|
-
entityType: EntityType.
|
|
8849
|
+
entityType: EntityType.DefinitionEntity;
|
|
8850
8850
|
entityId: string;
|
|
8851
8851
|
}, {
|
|
8852
8852
|
id: string;
|
|
8853
8853
|
type: EntityType.GenericReference;
|
|
8854
|
-
entityType: EntityType.
|
|
8854
|
+
entityType: EntityType.DefinitionEntity;
|
|
8855
8855
|
entityId: string;
|
|
8856
8856
|
}>, z.ZodObject<{
|
|
8857
8857
|
id: z.ZodString;
|
|
@@ -9176,7 +9176,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9176
9176
|
valueAsType: {
|
|
9177
9177
|
id: string;
|
|
9178
9178
|
type: EntityType.GenericReference;
|
|
9179
|
-
entityType: EntityType.
|
|
9179
|
+
entityType: EntityType.DefinitionEntity;
|
|
9180
9180
|
entityId: string;
|
|
9181
9181
|
} | {
|
|
9182
9182
|
id: string;
|
|
@@ -9210,7 +9210,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9210
9210
|
valueAsType: {
|
|
9211
9211
|
id: string;
|
|
9212
9212
|
type: EntityType.GenericReference;
|
|
9213
|
-
entityType: EntityType.
|
|
9213
|
+
entityType: EntityType.DefinitionEntity;
|
|
9214
9214
|
entityId: string;
|
|
9215
9215
|
} | {
|
|
9216
9216
|
id: string;
|
|
@@ -9247,16 +9247,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9247
9247
|
id: z.ZodString;
|
|
9248
9248
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
9249
9249
|
entityId: z.ZodString;
|
|
9250
|
-
entityType: z.ZodLiteral<EntityType.
|
|
9250
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
9251
9251
|
}, "strip", z.ZodTypeAny, {
|
|
9252
9252
|
id: string;
|
|
9253
9253
|
type: EntityType.GenericReference;
|
|
9254
|
-
entityType: EntityType.
|
|
9254
|
+
entityType: EntityType.DefinitionEntity;
|
|
9255
9255
|
entityId: string;
|
|
9256
9256
|
}, {
|
|
9257
9257
|
id: string;
|
|
9258
9258
|
type: EntityType.GenericReference;
|
|
9259
|
-
entityType: EntityType.
|
|
9259
|
+
entityType: EntityType.DefinitionEntity;
|
|
9260
9260
|
entityId: string;
|
|
9261
9261
|
}>, z.ZodObject<{
|
|
9262
9262
|
id: z.ZodString;
|
|
@@ -9581,7 +9581,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9581
9581
|
valueAsType: {
|
|
9582
9582
|
id: string;
|
|
9583
9583
|
type: EntityType.GenericReference;
|
|
9584
|
-
entityType: EntityType.
|
|
9584
|
+
entityType: EntityType.DefinitionEntity;
|
|
9585
9585
|
entityId: string;
|
|
9586
9586
|
} | {
|
|
9587
9587
|
id: string;
|
|
@@ -9615,7 +9615,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9615
9615
|
valueAsType: {
|
|
9616
9616
|
id: string;
|
|
9617
9617
|
type: EntityType.GenericReference;
|
|
9618
|
-
entityType: EntityType.
|
|
9618
|
+
entityType: EntityType.DefinitionEntity;
|
|
9619
9619
|
entityId: string;
|
|
9620
9620
|
} | {
|
|
9621
9621
|
id: string;
|
|
@@ -9652,16 +9652,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9652
9652
|
id: z.ZodString;
|
|
9653
9653
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
9654
9654
|
entityId: z.ZodString;
|
|
9655
|
-
entityType: z.ZodLiteral<EntityType.
|
|
9655
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
9656
9656
|
}, "strip", z.ZodTypeAny, {
|
|
9657
9657
|
id: string;
|
|
9658
9658
|
type: EntityType.GenericReference;
|
|
9659
|
-
entityType: EntityType.
|
|
9659
|
+
entityType: EntityType.DefinitionEntity;
|
|
9660
9660
|
entityId: string;
|
|
9661
9661
|
}, {
|
|
9662
9662
|
id: string;
|
|
9663
9663
|
type: EntityType.GenericReference;
|
|
9664
|
-
entityType: EntityType.
|
|
9664
|
+
entityType: EntityType.DefinitionEntity;
|
|
9665
9665
|
entityId: string;
|
|
9666
9666
|
}>, z.ZodObject<{
|
|
9667
9667
|
id: z.ZodString;
|
|
@@ -10002,7 +10002,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10002
10002
|
valueAsType: {
|
|
10003
10003
|
id: string;
|
|
10004
10004
|
type: EntityType.GenericReference;
|
|
10005
|
-
entityType: EntityType.
|
|
10005
|
+
entityType: EntityType.DefinitionEntity;
|
|
10006
10006
|
entityId: string;
|
|
10007
10007
|
} | {
|
|
10008
10008
|
id: string;
|
|
@@ -10040,7 +10040,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10040
10040
|
valueAsType: {
|
|
10041
10041
|
id: string;
|
|
10042
10042
|
type: EntityType.GenericReference;
|
|
10043
|
-
entityType: EntityType.
|
|
10043
|
+
entityType: EntityType.DefinitionEntity;
|
|
10044
10044
|
entityId: string;
|
|
10045
10045
|
} | {
|
|
10046
10046
|
id: string;
|
|
@@ -10081,16 +10081,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10081
10081
|
id: z.ZodString;
|
|
10082
10082
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10083
10083
|
entityId: z.ZodString;
|
|
10084
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10084
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10085
10085
|
}, "strip", z.ZodTypeAny, {
|
|
10086
10086
|
id: string;
|
|
10087
10087
|
type: EntityType.GenericReference;
|
|
10088
|
-
entityType: EntityType.
|
|
10088
|
+
entityType: EntityType.DefinitionEntity;
|
|
10089
10089
|
entityId: string;
|
|
10090
10090
|
}, {
|
|
10091
10091
|
id: string;
|
|
10092
10092
|
type: EntityType.GenericReference;
|
|
10093
|
-
entityType: EntityType.
|
|
10093
|
+
entityType: EntityType.DefinitionEntity;
|
|
10094
10094
|
entityId: string;
|
|
10095
10095
|
}>, z.ZodObject<{
|
|
10096
10096
|
id: z.ZodString;
|
|
@@ -10410,16 +10410,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10410
10410
|
id: z.ZodString;
|
|
10411
10411
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10412
10412
|
entityId: z.ZodString;
|
|
10413
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10413
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10414
10414
|
}, "strip", z.ZodTypeAny, {
|
|
10415
10415
|
id: string;
|
|
10416
10416
|
type: EntityType.GenericReference;
|
|
10417
|
-
entityType: EntityType.
|
|
10417
|
+
entityType: EntityType.DefinitionEntity;
|
|
10418
10418
|
entityId: string;
|
|
10419
10419
|
}, {
|
|
10420
10420
|
id: string;
|
|
10421
10421
|
type: EntityType.GenericReference;
|
|
10422
|
-
entityType: EntityType.
|
|
10422
|
+
entityType: EntityType.DefinitionEntity;
|
|
10423
10423
|
entityId: string;
|
|
10424
10424
|
}>;
|
|
10425
10425
|
autogeneration: z.ZodNull;
|
|
@@ -10430,7 +10430,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10430
10430
|
valueAsType: {
|
|
10431
10431
|
id: string;
|
|
10432
10432
|
type: EntityType.GenericReference;
|
|
10433
|
-
entityType: EntityType.
|
|
10433
|
+
entityType: EntityType.DefinitionEntity;
|
|
10434
10434
|
entityId: string;
|
|
10435
10435
|
} | {
|
|
10436
10436
|
id: string;
|
|
@@ -10459,7 +10459,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10459
10459
|
value: {
|
|
10460
10460
|
id: string;
|
|
10461
10461
|
type: EntityType.GenericReference;
|
|
10462
|
-
entityType: EntityType.
|
|
10462
|
+
entityType: EntityType.DefinitionEntity;
|
|
10463
10463
|
entityId: string;
|
|
10464
10464
|
};
|
|
10465
10465
|
}, {
|
|
@@ -10469,7 +10469,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10469
10469
|
valueAsType: {
|
|
10470
10470
|
id: string;
|
|
10471
10471
|
type: EntityType.GenericReference;
|
|
10472
|
-
entityType: EntityType.
|
|
10472
|
+
entityType: EntityType.DefinitionEntity;
|
|
10473
10473
|
entityId: string;
|
|
10474
10474
|
} | {
|
|
10475
10475
|
id: string;
|
|
@@ -10498,7 +10498,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10498
10498
|
value: {
|
|
10499
10499
|
id: string;
|
|
10500
10500
|
type: EntityType.GenericReference;
|
|
10501
|
-
entityType: EntityType.
|
|
10501
|
+
entityType: EntityType.DefinitionEntity;
|
|
10502
10502
|
entityId: string;
|
|
10503
10503
|
};
|
|
10504
10504
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -10511,16 +10511,16 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10511
10511
|
id: z.ZodString;
|
|
10512
10512
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10513
10513
|
entityId: z.ZodString;
|
|
10514
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10514
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10515
10515
|
}, "strip", z.ZodTypeAny, {
|
|
10516
10516
|
id: string;
|
|
10517
10517
|
type: EntityType.GenericReference;
|
|
10518
|
-
entityType: EntityType.
|
|
10518
|
+
entityType: EntityType.DefinitionEntity;
|
|
10519
10519
|
entityId: string;
|
|
10520
10520
|
}, {
|
|
10521
10521
|
id: string;
|
|
10522
10522
|
type: EntityType.GenericReference;
|
|
10523
|
-
entityType: EntityType.
|
|
10523
|
+
entityType: EntityType.DefinitionEntity;
|
|
10524
10524
|
entityId: string;
|
|
10525
10525
|
}>, z.ZodObject<{
|
|
10526
10526
|
id: z.ZodString;
|
|
@@ -10860,7 +10860,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10860
10860
|
valueAsType: {
|
|
10861
10861
|
id: string;
|
|
10862
10862
|
type: EntityType.GenericReference;
|
|
10863
|
-
entityType: EntityType.
|
|
10863
|
+
entityType: EntityType.DefinitionEntity;
|
|
10864
10864
|
entityId: string;
|
|
10865
10865
|
} | {
|
|
10866
10866
|
id: string;
|
|
@@ -10899,7 +10899,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10899
10899
|
valueAsType: {
|
|
10900
10900
|
id: string;
|
|
10901
10901
|
type: EntityType.GenericReference;
|
|
10902
|
-
entityType: EntityType.
|
|
10902
|
+
entityType: EntityType.DefinitionEntity;
|
|
10903
10903
|
entityId: string;
|
|
10904
10904
|
} | {
|
|
10905
10905
|
id: string;
|
|
@@ -10933,11 +10933,11 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10933
10933
|
};
|
|
10934
10934
|
}>]>>;
|
|
10935
10935
|
entity: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
10936
|
-
type: z.ZodLiteral<EntityType.
|
|
10936
|
+
type: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10937
10937
|
}, "strip", z.ZodTypeAny, {
|
|
10938
|
-
type: EntityType.
|
|
10938
|
+
type: EntityType.DefinitionEntity;
|
|
10939
10939
|
}, {
|
|
10940
|
-
type: EntityType.
|
|
10940
|
+
type: EntityType.DefinitionEntity;
|
|
10941
10941
|
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
|
|
10942
10942
|
type: z.ZodLiteral<EntityType.BuiltInBaseEntity>;
|
|
10943
10943
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11088,8 +11088,9 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11088
11088
|
} | {
|
|
11089
11089
|
type: EntityType.BuiltInBaseEntity;
|
|
11090
11090
|
} | {
|
|
11091
|
-
type: EntityType.
|
|
11091
|
+
type: EntityType.DefinitionEntity;
|
|
11092
11092
|
} | null;
|
|
11093
|
+
constant: boolean;
|
|
11093
11094
|
parent: {
|
|
11094
11095
|
id: string;
|
|
11095
11096
|
type: EntityType.GenericReference;
|
|
@@ -11139,7 +11140,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11139
11140
|
valueAsType: {
|
|
11140
11141
|
id: string;
|
|
11141
11142
|
type: EntityType.GenericReference;
|
|
11142
|
-
entityType: EntityType.
|
|
11143
|
+
entityType: EntityType.DefinitionEntity;
|
|
11143
11144
|
entityId: string;
|
|
11144
11145
|
} | {
|
|
11145
11146
|
id: string;
|
|
@@ -11185,7 +11186,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11185
11186
|
valueAsType: {
|
|
11186
11187
|
id: string;
|
|
11187
11188
|
type: EntityType.GenericReference;
|
|
11188
|
-
entityType: EntityType.
|
|
11189
|
+
entityType: EntityType.DefinitionEntity;
|
|
11189
11190
|
entityId: string;
|
|
11190
11191
|
} | {
|
|
11191
11192
|
id: string;
|
|
@@ -11231,7 +11232,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11231
11232
|
valueAsType: {
|
|
11232
11233
|
id: string;
|
|
11233
11234
|
type: EntityType.GenericReference;
|
|
11234
|
-
entityType: EntityType.
|
|
11235
|
+
entityType: EntityType.DefinitionEntity;
|
|
11235
11236
|
entityId: string;
|
|
11236
11237
|
} | {
|
|
11237
11238
|
id: string;
|
|
@@ -11269,7 +11270,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11269
11270
|
valueAsType: {
|
|
11270
11271
|
id: string;
|
|
11271
11272
|
type: EntityType.GenericReference;
|
|
11272
|
-
entityType: EntityType.
|
|
11273
|
+
entityType: EntityType.DefinitionEntity;
|
|
11273
11274
|
entityId: string;
|
|
11274
11275
|
} | {
|
|
11275
11276
|
id: string;
|
|
@@ -11303,7 +11304,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11303
11304
|
valueAsType: {
|
|
11304
11305
|
id: string;
|
|
11305
11306
|
type: EntityType.GenericReference;
|
|
11306
|
-
entityType: EntityType.
|
|
11307
|
+
entityType: EntityType.DefinitionEntity;
|
|
11307
11308
|
entityId: string;
|
|
11308
11309
|
} | {
|
|
11309
11310
|
id: string;
|
|
@@ -11353,7 +11354,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11353
11354
|
valueAsType: {
|
|
11354
11355
|
id: string;
|
|
11355
11356
|
type: EntityType.GenericReference;
|
|
11356
|
-
entityType: EntityType.
|
|
11357
|
+
entityType: EntityType.DefinitionEntity;
|
|
11357
11358
|
entityId: string;
|
|
11358
11359
|
} | {
|
|
11359
11360
|
id: string;
|
|
@@ -11387,7 +11388,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11387
11388
|
valueAsType: {
|
|
11388
11389
|
id: string;
|
|
11389
11390
|
type: EntityType.GenericReference;
|
|
11390
|
-
entityType: EntityType.
|
|
11391
|
+
entityType: EntityType.DefinitionEntity;
|
|
11391
11392
|
entityId: string;
|
|
11392
11393
|
} | {
|
|
11393
11394
|
id: string;
|
|
@@ -11421,7 +11422,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11421
11422
|
valueAsType: {
|
|
11422
11423
|
id: string;
|
|
11423
11424
|
type: EntityType.GenericReference;
|
|
11424
|
-
entityType: EntityType.
|
|
11425
|
+
entityType: EntityType.DefinitionEntity;
|
|
11425
11426
|
entityId: string;
|
|
11426
11427
|
} | {
|
|
11427
11428
|
id: string;
|
|
@@ -11455,7 +11456,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11455
11456
|
valueAsType: {
|
|
11456
11457
|
id: string;
|
|
11457
11458
|
type: EntityType.GenericReference;
|
|
11458
|
-
entityType: EntityType.
|
|
11459
|
+
entityType: EntityType.DefinitionEntity;
|
|
11459
11460
|
entityId: string;
|
|
11460
11461
|
} | {
|
|
11461
11462
|
id: string;
|
|
@@ -11493,7 +11494,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11493
11494
|
valueAsType: {
|
|
11494
11495
|
id: string;
|
|
11495
11496
|
type: EntityType.GenericReference;
|
|
11496
|
-
entityType: EntityType.
|
|
11497
|
+
entityType: EntityType.DefinitionEntity;
|
|
11497
11498
|
entityId: string;
|
|
11498
11499
|
} | {
|
|
11499
11500
|
id: string;
|
|
@@ -11522,7 +11523,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11522
11523
|
value: {
|
|
11523
11524
|
id: string;
|
|
11524
11525
|
type: EntityType.GenericReference;
|
|
11525
|
-
entityType: EntityType.
|
|
11526
|
+
entityType: EntityType.DefinitionEntity;
|
|
11526
11527
|
entityId: string;
|
|
11527
11528
|
};
|
|
11528
11529
|
} | {
|
|
@@ -11532,7 +11533,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11532
11533
|
valueAsType: {
|
|
11533
11534
|
id: string;
|
|
11534
11535
|
type: EntityType.GenericReference;
|
|
11535
|
-
entityType: EntityType.
|
|
11536
|
+
entityType: EntityType.DefinitionEntity;
|
|
11536
11537
|
entityId: string;
|
|
11537
11538
|
} | {
|
|
11538
11539
|
id: string;
|
|
@@ -11567,7 +11568,6 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11567
11568
|
} | null;
|
|
11568
11569
|
isNullable: boolean;
|
|
11569
11570
|
isList: boolean;
|
|
11570
|
-
constant: boolean;
|
|
11571
11571
|
asType: boolean;
|
|
11572
11572
|
options?: string[] | undefined;
|
|
11573
11573
|
}, {
|
|
@@ -11580,8 +11580,9 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11580
11580
|
} | {
|
|
11581
11581
|
type: EntityType.BuiltInBaseEntity;
|
|
11582
11582
|
} | {
|
|
11583
|
-
type: EntityType.
|
|
11583
|
+
type: EntityType.DefinitionEntity;
|
|
11584
11584
|
} | null;
|
|
11585
|
+
constant: boolean;
|
|
11585
11586
|
parent: {
|
|
11586
11587
|
id: string;
|
|
11587
11588
|
type: EntityType.GenericReference;
|
|
@@ -11631,7 +11632,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11631
11632
|
valueAsType: {
|
|
11632
11633
|
id: string;
|
|
11633
11634
|
type: EntityType.GenericReference;
|
|
11634
|
-
entityType: EntityType.
|
|
11635
|
+
entityType: EntityType.DefinitionEntity;
|
|
11635
11636
|
entityId: string;
|
|
11636
11637
|
} | {
|
|
11637
11638
|
id: string;
|
|
@@ -11677,7 +11678,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11677
11678
|
valueAsType: {
|
|
11678
11679
|
id: string;
|
|
11679
11680
|
type: EntityType.GenericReference;
|
|
11680
|
-
entityType: EntityType.
|
|
11681
|
+
entityType: EntityType.DefinitionEntity;
|
|
11681
11682
|
entityId: string;
|
|
11682
11683
|
} | {
|
|
11683
11684
|
id: string;
|
|
@@ -11723,7 +11724,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11723
11724
|
valueAsType: {
|
|
11724
11725
|
id: string;
|
|
11725
11726
|
type: EntityType.GenericReference;
|
|
11726
|
-
entityType: EntityType.
|
|
11727
|
+
entityType: EntityType.DefinitionEntity;
|
|
11727
11728
|
entityId: string;
|
|
11728
11729
|
} | {
|
|
11729
11730
|
id: string;
|
|
@@ -11761,7 +11762,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11761
11762
|
valueAsType: {
|
|
11762
11763
|
id: string;
|
|
11763
11764
|
type: EntityType.GenericReference;
|
|
11764
|
-
entityType: EntityType.
|
|
11765
|
+
entityType: EntityType.DefinitionEntity;
|
|
11765
11766
|
entityId: string;
|
|
11766
11767
|
} | {
|
|
11767
11768
|
id: string;
|
|
@@ -11795,7 +11796,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11795
11796
|
valueAsType: {
|
|
11796
11797
|
id: string;
|
|
11797
11798
|
type: EntityType.GenericReference;
|
|
11798
|
-
entityType: EntityType.
|
|
11799
|
+
entityType: EntityType.DefinitionEntity;
|
|
11799
11800
|
entityId: string;
|
|
11800
11801
|
} | {
|
|
11801
11802
|
id: string;
|
|
@@ -11845,7 +11846,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11845
11846
|
valueAsType: {
|
|
11846
11847
|
id: string;
|
|
11847
11848
|
type: EntityType.GenericReference;
|
|
11848
|
-
entityType: EntityType.
|
|
11849
|
+
entityType: EntityType.DefinitionEntity;
|
|
11849
11850
|
entityId: string;
|
|
11850
11851
|
} | {
|
|
11851
11852
|
id: string;
|
|
@@ -11879,7 +11880,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11879
11880
|
valueAsType: {
|
|
11880
11881
|
id: string;
|
|
11881
11882
|
type: EntityType.GenericReference;
|
|
11882
|
-
entityType: EntityType.
|
|
11883
|
+
entityType: EntityType.DefinitionEntity;
|
|
11883
11884
|
entityId: string;
|
|
11884
11885
|
} | {
|
|
11885
11886
|
id: string;
|
|
@@ -11913,7 +11914,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11913
11914
|
valueAsType: {
|
|
11914
11915
|
id: string;
|
|
11915
11916
|
type: EntityType.GenericReference;
|
|
11916
|
-
entityType: EntityType.
|
|
11917
|
+
entityType: EntityType.DefinitionEntity;
|
|
11917
11918
|
entityId: string;
|
|
11918
11919
|
} | {
|
|
11919
11920
|
id: string;
|
|
@@ -11947,7 +11948,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11947
11948
|
valueAsType: {
|
|
11948
11949
|
id: string;
|
|
11949
11950
|
type: EntityType.GenericReference;
|
|
11950
|
-
entityType: EntityType.
|
|
11951
|
+
entityType: EntityType.DefinitionEntity;
|
|
11951
11952
|
entityId: string;
|
|
11952
11953
|
} | {
|
|
11953
11954
|
id: string;
|
|
@@ -11985,7 +11986,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11985
11986
|
valueAsType: {
|
|
11986
11987
|
id: string;
|
|
11987
11988
|
type: EntityType.GenericReference;
|
|
11988
|
-
entityType: EntityType.
|
|
11989
|
+
entityType: EntityType.DefinitionEntity;
|
|
11989
11990
|
entityId: string;
|
|
11990
11991
|
} | {
|
|
11991
11992
|
id: string;
|
|
@@ -12014,7 +12015,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12014
12015
|
value: {
|
|
12015
12016
|
id: string;
|
|
12016
12017
|
type: EntityType.GenericReference;
|
|
12017
|
-
entityType: EntityType.
|
|
12018
|
+
entityType: EntityType.DefinitionEntity;
|
|
12018
12019
|
entityId: string;
|
|
12019
12020
|
};
|
|
12020
12021
|
} | {
|
|
@@ -12024,7 +12025,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12024
12025
|
valueAsType: {
|
|
12025
12026
|
id: string;
|
|
12026
12027
|
type: EntityType.GenericReference;
|
|
12027
|
-
entityType: EntityType.
|
|
12028
|
+
entityType: EntityType.DefinitionEntity;
|
|
12028
12029
|
entityId: string;
|
|
12029
12030
|
} | {
|
|
12030
12031
|
id: string;
|
|
@@ -12059,7 +12060,6 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12059
12060
|
} | null;
|
|
12060
12061
|
isNullable: boolean;
|
|
12061
12062
|
isList: boolean;
|
|
12062
|
-
constant: boolean;
|
|
12063
12063
|
asType: boolean;
|
|
12064
12064
|
options?: string[] | undefined;
|
|
12065
12065
|
}>;
|