@elyx-code/project-logic-tree 0.0.6161 → 0.0.6162

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.
Files changed (63) hide show
  1. package/dist/definitions/mock/default-mock/installed-projects/mock-third-party-project.d.ts +0 -1
  2. package/dist/definitions/types/event.d.ts +1 -4
  3. package/dist/definitions/types/function.d.ts +1 -4
  4. package/dist/definitions/types/loop.d.ts +1 -7
  5. package/dist/definitions/types/primitives.d.ts +8 -4
  6. package/dist/index.js +38870 -32143
  7. package/dist/index.umd.cjs +262 -260
  8. package/dist/tree/built-in/operations/definition-entity/validate-data.d.ts +7 -7
  9. package/dist/tree/state/action-descriptor/action-descriptor.d.ts +30 -24
  10. package/dist/tree/state/argument-declaration/argument-declaration.d.ts +32 -22
  11. package/dist/tree/state/argument-declaration/validation/validation-schema.d.ts +4 -4
  12. package/dist/tree/state/base.d.ts +26 -15
  13. package/dist/tree/state/break-statement/break-statement.d.ts +34 -25
  14. package/dist/tree/state/break-statement/validation/validation-schema.d.ts +4 -4
  15. package/dist/tree/state/built-in-base-entity/built-in-base-entity.d.ts +2 -14
  16. package/dist/tree/state/change-set.d.ts +71 -0
  17. package/dist/tree/state/change-set.test.d.ts +1 -0
  18. package/dist/tree/state/condition/condition.d.ts +36 -27
  19. package/dist/tree/state/condition/validation/validation-schema.d.ts +4 -4
  20. package/dist/tree/state/continue-statement/continue-statement.d.ts +34 -25
  21. package/dist/tree/state/continue-statement/validation/validation-schema.d.ts +4 -4
  22. package/dist/tree/state/data-type/data-type.d.ts +31 -22
  23. package/dist/tree/state/data-type/validation/validation-schema.d.ts +2657 -237
  24. package/dist/tree/state/definition-entity/definition-entity.d.ts +35 -25
  25. package/dist/tree/state/definition-entity/validation/validation-schema.d.ts +8 -8
  26. package/dist/tree/state/function-call/function-call.d.ts +39 -29
  27. package/dist/tree/state/function-call/validation/validation-schema.d.ts +4 -4
  28. package/dist/tree/state/function-declaration/function-declaration.d.ts +33 -24
  29. package/dist/tree/state/function-declaration/validation/validation-schema.d.ts +6 -6
  30. package/dist/tree/state/global-event/global-event.d.ts +30 -24
  31. package/dist/tree/state/global-event/validation/validation-schema.d.ts +4 -4
  32. package/dist/tree/state/index.d.ts +1 -0
  33. package/dist/tree/state/input-map/input-map.d.ts +31 -21
  34. package/dist/tree/state/input-map/validation/validation-schema.d.ts +8825 -1565
  35. package/dist/tree/state/installed-project/installed-project.d.ts +27 -21
  36. package/dist/tree/state/installed-project/validation/validation-schema.d.ts +4 -4
  37. package/dist/tree/state/internal-call/internal-call.d.ts +38 -29
  38. package/dist/tree/state/literal-value/literal-value.d.ts +35 -23
  39. package/dist/tree/state/literal-value/validation/validation-schema.d.ts +1976 -182
  40. package/dist/tree/state/loop/loop.d.ts +48 -39
  41. package/dist/tree/state/loop/validation/validation-schema.d.ts +4 -4
  42. package/dist/tree/state/operation/operation.d.ts +38 -29
  43. package/dist/tree/state/operation/validation/validation-schema.d.ts +4 -4
  44. package/dist/tree/state/output-map/output-map.d.ts +31 -21
  45. package/dist/tree/state/primitive-entity/primitive-entity.d.ts +0 -13
  46. package/dist/tree/state/project/project.d.ts +39 -24
  47. package/dist/tree/state/property/property.d.ts +32 -22
  48. package/dist/tree/state/return-declaration/return-declaration.d.ts +32 -22
  49. package/dist/tree/state/return-statement/return-statement.d.ts +34 -25
  50. package/dist/tree/state/return-statement/validation/validation-schema.d.ts +4 -4
  51. package/dist/tree/state/search/search.d.ts +36 -27
  52. package/dist/tree/state/search/validation/validation-schema.d.ts +4 -4
  53. package/dist/tree/state/types/index.d.ts +0 -26
  54. package/dist/tree/state/value-descriptor/value-descriptor.d.ts +30 -21
  55. package/dist/tree/state/variable-declaration/validation/validation-schema.d.ts +4 -4
  56. package/dist/tree/state/variable-declaration/variable-declaration.d.ts +40 -32
  57. package/dist/tree/state/variable-instance/validation/validation-schema.d.ts +4 -4
  58. package/dist/tree/state/variable-instance/variable-instance.d.ts +39 -28
  59. package/dist/tree/state/version.d.ts +1 -1
  60. package/dist/tree/utils/data-type.d.ts +2 -2
  61. package/dist/tree/utils/index.d.ts +2 -1
  62. package/dist/tree/utils/shared-data-structure-entity.d.ts +7 -7
  63. package/package.json +1 -1
@@ -110,7 +110,53 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
110
110
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
111
111
  type: z.ZodLiteral<EntityType.LiteralValue>;
112
112
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
113
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
113
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
114
+ id: z.ZodString;
115
+ type: z.ZodLiteral<EntityType.GenericReference>;
116
+ entityId: z.ZodString;
117
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
118
+ }, "strip", z.ZodTypeAny, {
119
+ id: string;
120
+ type: EntityType.GenericReference;
121
+ entityType: EntityType.DefinitionEntity;
122
+ entityId: string;
123
+ }, {
124
+ id: string;
125
+ type: EntityType.GenericReference;
126
+ entityType: EntityType.DefinitionEntity;
127
+ entityId: string;
128
+ }>, z.ZodObject<{
129
+ id: z.ZodString;
130
+ type: z.ZodLiteral<EntityType.GenericReference>;
131
+ entityId: z.ZodString;
132
+ entityType: z.ZodLiteral<EntityType.Operation>;
133
+ }, "strip", z.ZodTypeAny, {
134
+ id: string;
135
+ type: EntityType.GenericReference;
136
+ entityType: EntityType.Operation;
137
+ entityId: string;
138
+ }, {
139
+ id: string;
140
+ type: EntityType.GenericReference;
141
+ entityType: EntityType.Operation;
142
+ entityId: string;
143
+ }>, z.ZodObject<{
144
+ id: z.ZodString;
145
+ type: z.ZodLiteral<EntityType.GenericReference>;
146
+ entityId: z.ZodString;
147
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
148
+ }, "strip", z.ZodTypeAny, {
149
+ id: string;
150
+ type: EntityType.GenericReference;
151
+ entityType: EntityType.FunctionDeclaration;
152
+ entityId: string;
153
+ }, {
154
+ id: string;
155
+ type: EntityType.GenericReference;
156
+ entityType: EntityType.FunctionDeclaration;
157
+ entityId: string;
158
+ }>]>, "many">>;
159
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
114
160
  id: z.ZodString;
115
161
  type: z.ZodLiteral<EntityType.GenericReference>;
116
162
  entityId: z.ZodString;
@@ -511,7 +557,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
511
557
  id: string;
512
558
  type: EntityType.LiteralValue;
513
559
  name: import("@src/definitions").PrimitiveTypes.String;
514
- valueAsType: {
560
+ valueAsTypeSingle: {
515
561
  id: string;
516
562
  type: EntityType.GenericReference;
517
563
  entityType: EntityType.DefinitionEntity;
@@ -527,6 +573,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
527
573
  entityType: EntityType.FunctionDeclaration;
528
574
  entityId: string;
529
575
  } | null;
576
+ valueAsTypeList: ({
577
+ id: string;
578
+ type: EntityType.GenericReference;
579
+ entityType: EntityType.DefinitionEntity;
580
+ entityId: string;
581
+ } | {
582
+ id: string;
583
+ type: EntityType.GenericReference;
584
+ entityType: EntityType.Operation;
585
+ entityId: string;
586
+ } | {
587
+ id: string;
588
+ type: EntityType.GenericReference;
589
+ entityType: EntityType.FunctionDeclaration;
590
+ entityId: string;
591
+ })[] | null;
530
592
  parent: {
531
593
  id: string;
532
594
  type: EntityType.GenericReference;
@@ -557,7 +619,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
557
619
  id: string;
558
620
  type: EntityType.LiteralValue;
559
621
  name: import("@src/definitions").PrimitiveTypes.String;
560
- valueAsType: {
622
+ valueAsTypeSingle: {
561
623
  id: string;
562
624
  type: EntityType.GenericReference;
563
625
  entityType: EntityType.DefinitionEntity;
@@ -573,6 +635,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
573
635
  entityType: EntityType.FunctionDeclaration;
574
636
  entityId: string;
575
637
  } | null;
638
+ valueAsTypeList: ({
639
+ id: string;
640
+ type: EntityType.GenericReference;
641
+ entityType: EntityType.DefinitionEntity;
642
+ entityId: string;
643
+ } | {
644
+ id: string;
645
+ type: EntityType.GenericReference;
646
+ entityType: EntityType.Operation;
647
+ entityId: string;
648
+ } | {
649
+ id: string;
650
+ type: EntityType.GenericReference;
651
+ entityType: EntityType.FunctionDeclaration;
652
+ entityId: string;
653
+ })[] | null;
576
654
  parent: {
577
655
  id: string;
578
656
  type: EntityType.GenericReference;
@@ -605,7 +683,53 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
605
683
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
606
684
  type: z.ZodLiteral<EntityType.LiteralValue>;
607
685
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
608
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
686
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
687
+ id: z.ZodString;
688
+ type: z.ZodLiteral<EntityType.GenericReference>;
689
+ entityId: z.ZodString;
690
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
691
+ }, "strip", z.ZodTypeAny, {
692
+ id: string;
693
+ type: EntityType.GenericReference;
694
+ entityType: EntityType.DefinitionEntity;
695
+ entityId: string;
696
+ }, {
697
+ id: string;
698
+ type: EntityType.GenericReference;
699
+ entityType: EntityType.DefinitionEntity;
700
+ entityId: string;
701
+ }>, z.ZodObject<{
702
+ id: z.ZodString;
703
+ type: z.ZodLiteral<EntityType.GenericReference>;
704
+ entityId: z.ZodString;
705
+ entityType: z.ZodLiteral<EntityType.Operation>;
706
+ }, "strip", z.ZodTypeAny, {
707
+ id: string;
708
+ type: EntityType.GenericReference;
709
+ entityType: EntityType.Operation;
710
+ entityId: string;
711
+ }, {
712
+ id: string;
713
+ type: EntityType.GenericReference;
714
+ entityType: EntityType.Operation;
715
+ entityId: string;
716
+ }>, z.ZodObject<{
717
+ id: z.ZodString;
718
+ type: z.ZodLiteral<EntityType.GenericReference>;
719
+ entityId: z.ZodString;
720
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
721
+ }, "strip", z.ZodTypeAny, {
722
+ id: string;
723
+ type: EntityType.GenericReference;
724
+ entityType: EntityType.FunctionDeclaration;
725
+ entityId: string;
726
+ }, {
727
+ id: string;
728
+ type: EntityType.GenericReference;
729
+ entityType: EntityType.FunctionDeclaration;
730
+ entityId: string;
731
+ }>]>, "many">>;
732
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
609
733
  id: z.ZodString;
610
734
  type: z.ZodLiteral<EntityType.GenericReference>;
611
735
  entityId: z.ZodString;
@@ -1006,7 +1130,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1006
1130
  id: string;
1007
1131
  type: EntityType.LiteralValue;
1008
1132
  name: import("@src/definitions").PrimitiveTypes.Number;
1009
- valueAsType: {
1133
+ valueAsTypeSingle: {
1010
1134
  id: string;
1011
1135
  type: EntityType.GenericReference;
1012
1136
  entityType: EntityType.DefinitionEntity;
@@ -1022,6 +1146,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1022
1146
  entityType: EntityType.FunctionDeclaration;
1023
1147
  entityId: string;
1024
1148
  } | null;
1149
+ valueAsTypeList: ({
1150
+ id: string;
1151
+ type: EntityType.GenericReference;
1152
+ entityType: EntityType.DefinitionEntity;
1153
+ entityId: string;
1154
+ } | {
1155
+ id: string;
1156
+ type: EntityType.GenericReference;
1157
+ entityType: EntityType.Operation;
1158
+ entityId: string;
1159
+ } | {
1160
+ id: string;
1161
+ type: EntityType.GenericReference;
1162
+ entityType: EntityType.FunctionDeclaration;
1163
+ entityId: string;
1164
+ })[] | null;
1025
1165
  parent: {
1026
1166
  id: string;
1027
1167
  type: EntityType.GenericReference;
@@ -1052,7 +1192,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1052
1192
  id: string;
1053
1193
  type: EntityType.LiteralValue;
1054
1194
  name: import("@src/definitions").PrimitiveTypes.Number;
1055
- valueAsType: {
1195
+ valueAsTypeSingle: {
1056
1196
  id: string;
1057
1197
  type: EntityType.GenericReference;
1058
1198
  entityType: EntityType.DefinitionEntity;
@@ -1068,6 +1208,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1068
1208
  entityType: EntityType.FunctionDeclaration;
1069
1209
  entityId: string;
1070
1210
  } | null;
1211
+ valueAsTypeList: ({
1212
+ id: string;
1213
+ type: EntityType.GenericReference;
1214
+ entityType: EntityType.DefinitionEntity;
1215
+ entityId: string;
1216
+ } | {
1217
+ id: string;
1218
+ type: EntityType.GenericReference;
1219
+ entityType: EntityType.Operation;
1220
+ entityId: string;
1221
+ } | {
1222
+ id: string;
1223
+ type: EntityType.GenericReference;
1224
+ entityType: EntityType.FunctionDeclaration;
1225
+ entityId: string;
1226
+ })[] | null;
1071
1227
  parent: {
1072
1228
  id: string;
1073
1229
  type: EntityType.GenericReference;
@@ -1100,7 +1256,53 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1100
1256
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
1101
1257
  type: z.ZodLiteral<EntityType.LiteralValue>;
1102
1258
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
1103
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1259
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
1260
+ id: z.ZodString;
1261
+ type: z.ZodLiteral<EntityType.GenericReference>;
1262
+ entityId: z.ZodString;
1263
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
1264
+ }, "strip", z.ZodTypeAny, {
1265
+ id: string;
1266
+ type: EntityType.GenericReference;
1267
+ entityType: EntityType.DefinitionEntity;
1268
+ entityId: string;
1269
+ }, {
1270
+ id: string;
1271
+ type: EntityType.GenericReference;
1272
+ entityType: EntityType.DefinitionEntity;
1273
+ entityId: string;
1274
+ }>, z.ZodObject<{
1275
+ id: z.ZodString;
1276
+ type: z.ZodLiteral<EntityType.GenericReference>;
1277
+ entityId: z.ZodString;
1278
+ entityType: z.ZodLiteral<EntityType.Operation>;
1279
+ }, "strip", z.ZodTypeAny, {
1280
+ id: string;
1281
+ type: EntityType.GenericReference;
1282
+ entityType: EntityType.Operation;
1283
+ entityId: string;
1284
+ }, {
1285
+ id: string;
1286
+ type: EntityType.GenericReference;
1287
+ entityType: EntityType.Operation;
1288
+ entityId: string;
1289
+ }>, z.ZodObject<{
1290
+ id: z.ZodString;
1291
+ type: z.ZodLiteral<EntityType.GenericReference>;
1292
+ entityId: z.ZodString;
1293
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
1294
+ }, "strip", z.ZodTypeAny, {
1295
+ id: string;
1296
+ type: EntityType.GenericReference;
1297
+ entityType: EntityType.FunctionDeclaration;
1298
+ entityId: string;
1299
+ }, {
1300
+ id: string;
1301
+ type: EntityType.GenericReference;
1302
+ entityType: EntityType.FunctionDeclaration;
1303
+ entityId: string;
1304
+ }>]>, "many">>;
1305
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1104
1306
  id: z.ZodString;
1105
1307
  type: z.ZodLiteral<EntityType.GenericReference>;
1106
1308
  entityId: z.ZodString;
@@ -1454,7 +1656,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1454
1656
  id: string;
1455
1657
  type: EntityType.LiteralValue;
1456
1658
  name: import("@src/definitions").PrimitiveTypes.Boolean;
1457
- valueAsType: {
1659
+ valueAsTypeSingle: {
1458
1660
  id: string;
1459
1661
  type: EntityType.GenericReference;
1460
1662
  entityType: EntityType.DefinitionEntity;
@@ -1470,6 +1672,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1470
1672
  entityType: EntityType.FunctionDeclaration;
1471
1673
  entityId: string;
1472
1674
  } | null;
1675
+ valueAsTypeList: ({
1676
+ id: string;
1677
+ type: EntityType.GenericReference;
1678
+ entityType: EntityType.DefinitionEntity;
1679
+ entityId: string;
1680
+ } | {
1681
+ id: string;
1682
+ type: EntityType.GenericReference;
1683
+ entityType: EntityType.Operation;
1684
+ entityId: string;
1685
+ } | {
1686
+ id: string;
1687
+ type: EntityType.GenericReference;
1688
+ entityType: EntityType.FunctionDeclaration;
1689
+ entityId: string;
1690
+ })[] | null;
1473
1691
  parent: {
1474
1692
  id: string;
1475
1693
  type: EntityType.GenericReference;
@@ -1492,7 +1710,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1492
1710
  id: string;
1493
1711
  type: EntityType.LiteralValue;
1494
1712
  name: import("@src/definitions").PrimitiveTypes.Boolean;
1495
- valueAsType: {
1713
+ valueAsTypeSingle: {
1496
1714
  id: string;
1497
1715
  type: EntityType.GenericReference;
1498
1716
  entityType: EntityType.DefinitionEntity;
@@ -1508,6 +1726,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1508
1726
  entityType: EntityType.FunctionDeclaration;
1509
1727
  entityId: string;
1510
1728
  } | null;
1729
+ valueAsTypeList: ({
1730
+ id: string;
1731
+ type: EntityType.GenericReference;
1732
+ entityType: EntityType.DefinitionEntity;
1733
+ entityId: string;
1734
+ } | {
1735
+ id: string;
1736
+ type: EntityType.GenericReference;
1737
+ entityType: EntityType.Operation;
1738
+ entityId: string;
1739
+ } | {
1740
+ id: string;
1741
+ type: EntityType.GenericReference;
1742
+ entityType: EntityType.FunctionDeclaration;
1743
+ entityId: string;
1744
+ })[] | null;
1511
1745
  parent: {
1512
1746
  id: string;
1513
1747
  type: EntityType.GenericReference;
@@ -1532,7 +1766,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1532
1766
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
1533
1767
  type: z.ZodLiteral<EntityType.LiteralValue>;
1534
1768
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
1535
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1769
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
1536
1770
  id: z.ZodString;
1537
1771
  type: z.ZodLiteral<EntityType.GenericReference>;
1538
1772
  entityId: z.ZodString;
@@ -1577,38 +1811,84 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1577
1811
  type: EntityType.GenericReference;
1578
1812
  entityType: EntityType.FunctionDeclaration;
1579
1813
  entityId: string;
1580
- }>]>>;
1581
- autogeneration: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1582
- type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
1583
- rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
1584
- rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
1585
- }, {
1586
- type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
1587
- rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
1588
- rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
1589
- }>, {
1590
- rangeStart: z.ZodNullable<z.ZodNumber>;
1591
- rangeEnd: z.ZodNullable<z.ZodNumber>;
1592
- }>, {
1593
- rangeStart: z.ZodNumber;
1594
- rangeEnd: z.ZodNull;
1595
- }>, "strip", z.ZodTypeAny, {
1596
- type: import("@src/definitions").ValueAutogenerationType.Random;
1597
- rangeStart: number;
1598
- rangeEnd: null;
1599
- }, {
1600
- type: import("@src/definitions").ValueAutogenerationType.Random;
1601
- rangeStart: number;
1602
- rangeEnd: null;
1603
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1604
- type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
1605
- rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
1606
- rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
1814
+ }>]>, "many">>;
1815
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1816
+ id: z.ZodString;
1817
+ type: z.ZodLiteral<EntityType.GenericReference>;
1818
+ entityId: z.ZodString;
1819
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
1820
+ }, "strip", z.ZodTypeAny, {
1821
+ id: string;
1822
+ type: EntityType.GenericReference;
1823
+ entityType: EntityType.DefinitionEntity;
1824
+ entityId: string;
1607
1825
  }, {
1608
- type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
1609
- rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
1610
- rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
1611
- }>, {
1826
+ id: string;
1827
+ type: EntityType.GenericReference;
1828
+ entityType: EntityType.DefinitionEntity;
1829
+ entityId: string;
1830
+ }>, z.ZodObject<{
1831
+ id: z.ZodString;
1832
+ type: z.ZodLiteral<EntityType.GenericReference>;
1833
+ entityId: z.ZodString;
1834
+ entityType: z.ZodLiteral<EntityType.Operation>;
1835
+ }, "strip", z.ZodTypeAny, {
1836
+ id: string;
1837
+ type: EntityType.GenericReference;
1838
+ entityType: EntityType.Operation;
1839
+ entityId: string;
1840
+ }, {
1841
+ id: string;
1842
+ type: EntityType.GenericReference;
1843
+ entityType: EntityType.Operation;
1844
+ entityId: string;
1845
+ }>, z.ZodObject<{
1846
+ id: z.ZodString;
1847
+ type: z.ZodLiteral<EntityType.GenericReference>;
1848
+ entityId: z.ZodString;
1849
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
1850
+ }, "strip", z.ZodTypeAny, {
1851
+ id: string;
1852
+ type: EntityType.GenericReference;
1853
+ entityType: EntityType.FunctionDeclaration;
1854
+ entityId: string;
1855
+ }, {
1856
+ id: string;
1857
+ type: EntityType.GenericReference;
1858
+ entityType: EntityType.FunctionDeclaration;
1859
+ entityId: string;
1860
+ }>]>>;
1861
+ autogeneration: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1862
+ type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
1863
+ rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
1864
+ rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
1865
+ }, {
1866
+ type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
1867
+ rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
1868
+ rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
1869
+ }>, {
1870
+ rangeStart: z.ZodNullable<z.ZodNumber>;
1871
+ rangeEnd: z.ZodNullable<z.ZodNumber>;
1872
+ }>, {
1873
+ rangeStart: z.ZodNumber;
1874
+ rangeEnd: z.ZodNull;
1875
+ }>, "strip", z.ZodTypeAny, {
1876
+ type: import("@src/definitions").ValueAutogenerationType.Random;
1877
+ rangeStart: number;
1878
+ rangeEnd: null;
1879
+ }, {
1880
+ type: import("@src/definitions").ValueAutogenerationType.Random;
1881
+ rangeStart: number;
1882
+ rangeEnd: null;
1883
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1884
+ type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
1885
+ rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
1886
+ rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
1887
+ }, {
1888
+ type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
1889
+ rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
1890
+ rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
1891
+ }>, {
1612
1892
  rangeStart: z.ZodNullable<z.ZodNumber>;
1613
1893
  rangeEnd: z.ZodNullable<z.ZodNumber>;
1614
1894
  }>, {
@@ -1867,7 +2147,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1867
2147
  id: string;
1868
2148
  type: EntityType.LiteralValue;
1869
2149
  name: import("@src/definitions").PrimitiveTypes.Null;
1870
- valueAsType: {
2150
+ valueAsTypeSingle: {
1871
2151
  id: string;
1872
2152
  type: EntityType.GenericReference;
1873
2153
  entityType: EntityType.DefinitionEntity;
@@ -1883,6 +2163,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1883
2163
  entityType: EntityType.FunctionDeclaration;
1884
2164
  entityId: string;
1885
2165
  } | null;
2166
+ valueAsTypeList: ({
2167
+ id: string;
2168
+ type: EntityType.GenericReference;
2169
+ entityType: EntityType.DefinitionEntity;
2170
+ entityId: string;
2171
+ } | {
2172
+ id: string;
2173
+ type: EntityType.GenericReference;
2174
+ entityType: EntityType.Operation;
2175
+ entityId: string;
2176
+ } | {
2177
+ id: string;
2178
+ type: EntityType.GenericReference;
2179
+ entityType: EntityType.FunctionDeclaration;
2180
+ entityId: string;
2181
+ })[] | null;
1886
2182
  parent: {
1887
2183
  id: string;
1888
2184
  type: EntityType.GenericReference;
@@ -1901,7 +2197,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1901
2197
  id: string;
1902
2198
  type: EntityType.LiteralValue;
1903
2199
  name: import("@src/definitions").PrimitiveTypes.Null;
1904
- valueAsType: {
2200
+ valueAsTypeSingle: {
1905
2201
  id: string;
1906
2202
  type: EntityType.GenericReference;
1907
2203
  entityType: EntityType.DefinitionEntity;
@@ -1917,6 +2213,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1917
2213
  entityType: EntityType.FunctionDeclaration;
1918
2214
  entityId: string;
1919
2215
  } | null;
2216
+ valueAsTypeList: ({
2217
+ id: string;
2218
+ type: EntityType.GenericReference;
2219
+ entityType: EntityType.DefinitionEntity;
2220
+ entityId: string;
2221
+ } | {
2222
+ id: string;
2223
+ type: EntityType.GenericReference;
2224
+ entityType: EntityType.Operation;
2225
+ entityId: string;
2226
+ } | {
2227
+ id: string;
2228
+ type: EntityType.GenericReference;
2229
+ entityType: EntityType.FunctionDeclaration;
2230
+ entityId: string;
2231
+ })[] | null;
1920
2232
  parent: {
1921
2233
  id: string;
1922
2234
  type: EntityType.GenericReference;
@@ -1937,7 +2249,53 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
1937
2249
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
1938
2250
  type: z.ZodLiteral<EntityType.LiteralValue>;
1939
2251
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
1940
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
2252
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2253
+ id: z.ZodString;
2254
+ type: z.ZodLiteral<EntityType.GenericReference>;
2255
+ entityId: z.ZodString;
2256
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
2257
+ }, "strip", z.ZodTypeAny, {
2258
+ id: string;
2259
+ type: EntityType.GenericReference;
2260
+ entityType: EntityType.DefinitionEntity;
2261
+ entityId: string;
2262
+ }, {
2263
+ id: string;
2264
+ type: EntityType.GenericReference;
2265
+ entityType: EntityType.DefinitionEntity;
2266
+ entityId: string;
2267
+ }>, z.ZodObject<{
2268
+ id: z.ZodString;
2269
+ type: z.ZodLiteral<EntityType.GenericReference>;
2270
+ entityId: z.ZodString;
2271
+ entityType: z.ZodLiteral<EntityType.Operation>;
2272
+ }, "strip", z.ZodTypeAny, {
2273
+ id: string;
2274
+ type: EntityType.GenericReference;
2275
+ entityType: EntityType.Operation;
2276
+ entityId: string;
2277
+ }, {
2278
+ id: string;
2279
+ type: EntityType.GenericReference;
2280
+ entityType: EntityType.Operation;
2281
+ entityId: string;
2282
+ }>, z.ZodObject<{
2283
+ id: z.ZodString;
2284
+ type: z.ZodLiteral<EntityType.GenericReference>;
2285
+ entityId: z.ZodString;
2286
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
2287
+ }, "strip", z.ZodTypeAny, {
2288
+ id: string;
2289
+ type: EntityType.GenericReference;
2290
+ entityType: EntityType.FunctionDeclaration;
2291
+ entityId: string;
2292
+ }, {
2293
+ id: string;
2294
+ type: EntityType.GenericReference;
2295
+ entityType: EntityType.FunctionDeclaration;
2296
+ entityId: string;
2297
+ }>]>, "many">>;
2298
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1941
2299
  id: z.ZodString;
1942
2300
  type: z.ZodLiteral<EntityType.GenericReference>;
1943
2301
  entityId: z.ZodString;
@@ -2354,7 +2712,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2354
2712
  id: string;
2355
2713
  type: EntityType.LiteralValue;
2356
2714
  name: import("@src/definitions").PrimitiveTypes.Date;
2357
- valueAsType: {
2715
+ valueAsTypeSingle: {
2358
2716
  id: string;
2359
2717
  type: EntityType.GenericReference;
2360
2718
  entityType: EntityType.DefinitionEntity;
@@ -2370,6 +2728,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2370
2728
  entityType: EntityType.FunctionDeclaration;
2371
2729
  entityId: string;
2372
2730
  } | null;
2731
+ valueAsTypeList: ({
2732
+ id: string;
2733
+ type: EntityType.GenericReference;
2734
+ entityType: EntityType.DefinitionEntity;
2735
+ entityId: string;
2736
+ } | {
2737
+ id: string;
2738
+ type: EntityType.GenericReference;
2739
+ entityType: EntityType.Operation;
2740
+ entityId: string;
2741
+ } | {
2742
+ id: string;
2743
+ type: EntityType.GenericReference;
2744
+ entityType: EntityType.FunctionDeclaration;
2745
+ entityId: string;
2746
+ })[] | null;
2373
2747
  parent: {
2374
2748
  id: string;
2375
2749
  type: EntityType.GenericReference;
@@ -2404,7 +2778,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2404
2778
  id: string;
2405
2779
  type: EntityType.LiteralValue;
2406
2780
  name: import("@src/definitions").PrimitiveTypes.Date;
2407
- valueAsType: {
2781
+ valueAsTypeSingle: {
2408
2782
  id: string;
2409
2783
  type: EntityType.GenericReference;
2410
2784
  entityType: EntityType.DefinitionEntity;
@@ -2420,6 +2794,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2420
2794
  entityType: EntityType.FunctionDeclaration;
2421
2795
  entityId: string;
2422
2796
  } | null;
2797
+ valueAsTypeList: ({
2798
+ id: string;
2799
+ type: EntityType.GenericReference;
2800
+ entityType: EntityType.DefinitionEntity;
2801
+ entityId: string;
2802
+ } | {
2803
+ id: string;
2804
+ type: EntityType.GenericReference;
2805
+ entityType: EntityType.Operation;
2806
+ entityId: string;
2807
+ } | {
2808
+ id: string;
2809
+ type: EntityType.GenericReference;
2810
+ entityType: EntityType.FunctionDeclaration;
2811
+ entityId: string;
2812
+ })[] | null;
2423
2813
  parent: {
2424
2814
  id: string;
2425
2815
  type: EntityType.GenericReference;
@@ -2456,7 +2846,53 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2456
2846
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
2457
2847
  type: z.ZodLiteral<EntityType.LiteralValue>;
2458
2848
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
2459
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
2849
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2850
+ id: z.ZodString;
2851
+ type: z.ZodLiteral<EntityType.GenericReference>;
2852
+ entityId: z.ZodString;
2853
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
2854
+ }, "strip", z.ZodTypeAny, {
2855
+ id: string;
2856
+ type: EntityType.GenericReference;
2857
+ entityType: EntityType.DefinitionEntity;
2858
+ entityId: string;
2859
+ }, {
2860
+ id: string;
2861
+ type: EntityType.GenericReference;
2862
+ entityType: EntityType.DefinitionEntity;
2863
+ entityId: string;
2864
+ }>, z.ZodObject<{
2865
+ id: z.ZodString;
2866
+ type: z.ZodLiteral<EntityType.GenericReference>;
2867
+ entityId: z.ZodString;
2868
+ entityType: z.ZodLiteral<EntityType.Operation>;
2869
+ }, "strip", z.ZodTypeAny, {
2870
+ id: string;
2871
+ type: EntityType.GenericReference;
2872
+ entityType: EntityType.Operation;
2873
+ entityId: string;
2874
+ }, {
2875
+ id: string;
2876
+ type: EntityType.GenericReference;
2877
+ entityType: EntityType.Operation;
2878
+ entityId: string;
2879
+ }>, z.ZodObject<{
2880
+ id: z.ZodString;
2881
+ type: z.ZodLiteral<EntityType.GenericReference>;
2882
+ entityId: z.ZodString;
2883
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
2884
+ }, "strip", z.ZodTypeAny, {
2885
+ id: string;
2886
+ type: EntityType.GenericReference;
2887
+ entityType: EntityType.FunctionDeclaration;
2888
+ entityId: string;
2889
+ }, {
2890
+ id: string;
2891
+ type: EntityType.GenericReference;
2892
+ entityType: EntityType.FunctionDeclaration;
2893
+ entityId: string;
2894
+ }>]>, "many">>;
2895
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
2460
2896
  id: z.ZodString;
2461
2897
  type: z.ZodLiteral<EntityType.GenericReference>;
2462
2898
  entityId: z.ZodString;
@@ -2791,7 +3227,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2791
3227
  id: string;
2792
3228
  type: EntityType.LiteralValue;
2793
3229
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
2794
- valueAsType: {
3230
+ valueAsTypeSingle: {
2795
3231
  id: string;
2796
3232
  type: EntityType.GenericReference;
2797
3233
  entityType: EntityType.DefinitionEntity;
@@ -2807,6 +3243,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2807
3243
  entityType: EntityType.FunctionDeclaration;
2808
3244
  entityId: string;
2809
3245
  } | null;
3246
+ valueAsTypeList: ({
3247
+ id: string;
3248
+ type: EntityType.GenericReference;
3249
+ entityType: EntityType.DefinitionEntity;
3250
+ entityId: string;
3251
+ } | {
3252
+ id: string;
3253
+ type: EntityType.GenericReference;
3254
+ entityType: EntityType.Operation;
3255
+ entityId: string;
3256
+ } | {
3257
+ id: string;
3258
+ type: EntityType.GenericReference;
3259
+ entityType: EntityType.FunctionDeclaration;
3260
+ entityId: string;
3261
+ })[] | null;
2810
3262
  parent: {
2811
3263
  id: string;
2812
3264
  type: EntityType.GenericReference;
@@ -2825,7 +3277,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2825
3277
  id: string;
2826
3278
  type: EntityType.LiteralValue;
2827
3279
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
2828
- valueAsType: {
3280
+ valueAsTypeSingle: {
2829
3281
  id: string;
2830
3282
  type: EntityType.GenericReference;
2831
3283
  entityType: EntityType.DefinitionEntity;
@@ -2841,6 +3293,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2841
3293
  entityType: EntityType.FunctionDeclaration;
2842
3294
  entityId: string;
2843
3295
  } | null;
3296
+ valueAsTypeList: ({
3297
+ id: string;
3298
+ type: EntityType.GenericReference;
3299
+ entityType: EntityType.DefinitionEntity;
3300
+ entityId: string;
3301
+ } | {
3302
+ id: string;
3303
+ type: EntityType.GenericReference;
3304
+ entityType: EntityType.Operation;
3305
+ entityId: string;
3306
+ } | {
3307
+ id: string;
3308
+ type: EntityType.GenericReference;
3309
+ entityType: EntityType.FunctionDeclaration;
3310
+ entityId: string;
3311
+ })[] | null;
2844
3312
  parent: {
2845
3313
  id: string;
2846
3314
  type: EntityType.GenericReference;
@@ -2861,7 +3329,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2861
3329
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
2862
3330
  type: z.ZodLiteral<EntityType.LiteralValue>;
2863
3331
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
2864
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
3332
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2865
3333
  id: z.ZodString;
2866
3334
  type: z.ZodLiteral<EntityType.GenericReference>;
2867
3335
  entityId: z.ZodString;
@@ -2906,16 +3374,62 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
2906
3374
  type: EntityType.GenericReference;
2907
3375
  entityType: EntityType.FunctionDeclaration;
2908
3376
  entityId: string;
2909
- }>]>>;
2910
- autogeneration: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2911
- type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
2912
- rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
2913
- rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
3377
+ }>]>, "many">>;
3378
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
3379
+ id: z.ZodString;
3380
+ type: z.ZodLiteral<EntityType.GenericReference>;
3381
+ entityId: z.ZodString;
3382
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
3383
+ }, "strip", z.ZodTypeAny, {
3384
+ id: string;
3385
+ type: EntityType.GenericReference;
3386
+ entityType: EntityType.DefinitionEntity;
3387
+ entityId: string;
2914
3388
  }, {
2915
- type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
2916
- rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
2917
- rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
2918
- }>, {
3389
+ id: string;
3390
+ type: EntityType.GenericReference;
3391
+ entityType: EntityType.DefinitionEntity;
3392
+ entityId: string;
3393
+ }>, z.ZodObject<{
3394
+ id: z.ZodString;
3395
+ type: z.ZodLiteral<EntityType.GenericReference>;
3396
+ entityId: z.ZodString;
3397
+ entityType: z.ZodLiteral<EntityType.Operation>;
3398
+ }, "strip", z.ZodTypeAny, {
3399
+ id: string;
3400
+ type: EntityType.GenericReference;
3401
+ entityType: EntityType.Operation;
3402
+ entityId: string;
3403
+ }, {
3404
+ id: string;
3405
+ type: EntityType.GenericReference;
3406
+ entityType: EntityType.Operation;
3407
+ entityId: string;
3408
+ }>, z.ZodObject<{
3409
+ id: z.ZodString;
3410
+ type: z.ZodLiteral<EntityType.GenericReference>;
3411
+ entityId: z.ZodString;
3412
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
3413
+ }, "strip", z.ZodTypeAny, {
3414
+ id: string;
3415
+ type: EntityType.GenericReference;
3416
+ entityType: EntityType.FunctionDeclaration;
3417
+ entityId: string;
3418
+ }, {
3419
+ id: string;
3420
+ type: EntityType.GenericReference;
3421
+ entityType: EntityType.FunctionDeclaration;
3422
+ entityId: string;
3423
+ }>]>>;
3424
+ autogeneration: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3425
+ type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
3426
+ rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
3427
+ rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
3428
+ }, {
3429
+ type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
3430
+ rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
3431
+ rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
3432
+ }>, {
2919
3433
  rangeStart: z.ZodNullable<z.ZodNumber>;
2920
3434
  rangeEnd: z.ZodNullable<z.ZodNumber>;
2921
3435
  }>, {
@@ -3196,7 +3710,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3196
3710
  id: string;
3197
3711
  type: EntityType.LiteralValue;
3198
3712
  name: import("@src/definitions").PrimitiveTypes.Enum;
3199
- valueAsType: {
3713
+ valueAsTypeSingle: {
3200
3714
  id: string;
3201
3715
  type: EntityType.GenericReference;
3202
3716
  entityType: EntityType.DefinitionEntity;
@@ -3212,6 +3726,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3212
3726
  entityType: EntityType.FunctionDeclaration;
3213
3727
  entityId: string;
3214
3728
  } | null;
3729
+ valueAsTypeList: ({
3730
+ id: string;
3731
+ type: EntityType.GenericReference;
3732
+ entityType: EntityType.DefinitionEntity;
3733
+ entityId: string;
3734
+ } | {
3735
+ id: string;
3736
+ type: EntityType.GenericReference;
3737
+ entityType: EntityType.Operation;
3738
+ entityId: string;
3739
+ } | {
3740
+ id: string;
3741
+ type: EntityType.GenericReference;
3742
+ entityType: EntityType.FunctionDeclaration;
3743
+ entityId: string;
3744
+ })[] | null;
3215
3745
  parent: {
3216
3746
  id: string;
3217
3747
  type: EntityType.GenericReference;
@@ -3230,7 +3760,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3230
3760
  id: string;
3231
3761
  type: EntityType.LiteralValue;
3232
3762
  name: import("@src/definitions").PrimitiveTypes.Enum;
3233
- valueAsType: {
3763
+ valueAsTypeSingle: {
3234
3764
  id: string;
3235
3765
  type: EntityType.GenericReference;
3236
3766
  entityType: EntityType.DefinitionEntity;
@@ -3246,6 +3776,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3246
3776
  entityType: EntityType.FunctionDeclaration;
3247
3777
  entityId: string;
3248
3778
  } | null;
3779
+ valueAsTypeList: ({
3780
+ id: string;
3781
+ type: EntityType.GenericReference;
3782
+ entityType: EntityType.DefinitionEntity;
3783
+ entityId: string;
3784
+ } | {
3785
+ id: string;
3786
+ type: EntityType.GenericReference;
3787
+ entityType: EntityType.Operation;
3788
+ entityId: string;
3789
+ } | {
3790
+ id: string;
3791
+ type: EntityType.GenericReference;
3792
+ entityType: EntityType.FunctionDeclaration;
3793
+ entityId: string;
3794
+ })[] | null;
3249
3795
  parent: {
3250
3796
  id: string;
3251
3797
  type: EntityType.GenericReference;
@@ -3266,7 +3812,53 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3266
3812
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
3267
3813
  type: z.ZodLiteral<EntityType.LiteralValue>;
3268
3814
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
3269
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
3815
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
3816
+ id: z.ZodString;
3817
+ type: z.ZodLiteral<EntityType.GenericReference>;
3818
+ entityId: z.ZodString;
3819
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
3820
+ }, "strip", z.ZodTypeAny, {
3821
+ id: string;
3822
+ type: EntityType.GenericReference;
3823
+ entityType: EntityType.DefinitionEntity;
3824
+ entityId: string;
3825
+ }, {
3826
+ id: string;
3827
+ type: EntityType.GenericReference;
3828
+ entityType: EntityType.DefinitionEntity;
3829
+ entityId: string;
3830
+ }>, z.ZodObject<{
3831
+ id: z.ZodString;
3832
+ type: z.ZodLiteral<EntityType.GenericReference>;
3833
+ entityId: z.ZodString;
3834
+ entityType: z.ZodLiteral<EntityType.Operation>;
3835
+ }, "strip", z.ZodTypeAny, {
3836
+ id: string;
3837
+ type: EntityType.GenericReference;
3838
+ entityType: EntityType.Operation;
3839
+ entityId: string;
3840
+ }, {
3841
+ id: string;
3842
+ type: EntityType.GenericReference;
3843
+ entityType: EntityType.Operation;
3844
+ entityId: string;
3845
+ }>, z.ZodObject<{
3846
+ id: z.ZodString;
3847
+ type: z.ZodLiteral<EntityType.GenericReference>;
3848
+ entityId: z.ZodString;
3849
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
3850
+ }, "strip", z.ZodTypeAny, {
3851
+ id: string;
3852
+ type: EntityType.GenericReference;
3853
+ entityType: EntityType.FunctionDeclaration;
3854
+ entityId: string;
3855
+ }, {
3856
+ id: string;
3857
+ type: EntityType.GenericReference;
3858
+ entityType: EntityType.FunctionDeclaration;
3859
+ entityId: string;
3860
+ }>]>, "many">>;
3861
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
3270
3862
  id: z.ZodString;
3271
3863
  type: z.ZodLiteral<EntityType.GenericReference>;
3272
3864
  entityId: z.ZodString;
@@ -3601,7 +4193,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3601
4193
  id: string;
3602
4194
  type: EntityType.LiteralValue;
3603
4195
  name: import("@src/definitions").PrimitiveTypes.File;
3604
- valueAsType: {
4196
+ valueAsTypeSingle: {
3605
4197
  id: string;
3606
4198
  type: EntityType.GenericReference;
3607
4199
  entityType: EntityType.DefinitionEntity;
@@ -3617,6 +4209,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3617
4209
  entityType: EntityType.FunctionDeclaration;
3618
4210
  entityId: string;
3619
4211
  } | null;
4212
+ valueAsTypeList: ({
4213
+ id: string;
4214
+ type: EntityType.GenericReference;
4215
+ entityType: EntityType.DefinitionEntity;
4216
+ entityId: string;
4217
+ } | {
4218
+ id: string;
4219
+ type: EntityType.GenericReference;
4220
+ entityType: EntityType.Operation;
4221
+ entityId: string;
4222
+ } | {
4223
+ id: string;
4224
+ type: EntityType.GenericReference;
4225
+ entityType: EntityType.FunctionDeclaration;
4226
+ entityId: string;
4227
+ })[] | null;
3620
4228
  parent: {
3621
4229
  id: string;
3622
4230
  type: EntityType.GenericReference;
@@ -3635,7 +4243,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3635
4243
  id: string;
3636
4244
  type: EntityType.LiteralValue;
3637
4245
  name: import("@src/definitions").PrimitiveTypes.File;
3638
- valueAsType: {
4246
+ valueAsTypeSingle: {
3639
4247
  id: string;
3640
4248
  type: EntityType.GenericReference;
3641
4249
  entityType: EntityType.DefinitionEntity;
@@ -3651,6 +4259,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3651
4259
  entityType: EntityType.FunctionDeclaration;
3652
4260
  entityId: string;
3653
4261
  } | null;
4262
+ valueAsTypeList: ({
4263
+ id: string;
4264
+ type: EntityType.GenericReference;
4265
+ entityType: EntityType.DefinitionEntity;
4266
+ entityId: string;
4267
+ } | {
4268
+ id: string;
4269
+ type: EntityType.GenericReference;
4270
+ entityType: EntityType.Operation;
4271
+ entityId: string;
4272
+ } | {
4273
+ id: string;
4274
+ type: EntityType.GenericReference;
4275
+ entityType: EntityType.FunctionDeclaration;
4276
+ entityId: string;
4277
+ })[] | null;
3654
4278
  parent: {
3655
4279
  id: string;
3656
4280
  type: EntityType.GenericReference;
@@ -3671,7 +4295,53 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
3671
4295
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
3672
4296
  type: z.ZodLiteral<EntityType.LiteralValue>;
3673
4297
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
3674
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
4298
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
4299
+ id: z.ZodString;
4300
+ type: z.ZodLiteral<EntityType.GenericReference>;
4301
+ entityId: z.ZodString;
4302
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
4303
+ }, "strip", z.ZodTypeAny, {
4304
+ id: string;
4305
+ type: EntityType.GenericReference;
4306
+ entityType: EntityType.DefinitionEntity;
4307
+ entityId: string;
4308
+ }, {
4309
+ id: string;
4310
+ type: EntityType.GenericReference;
4311
+ entityType: EntityType.DefinitionEntity;
4312
+ entityId: string;
4313
+ }>, z.ZodObject<{
4314
+ id: z.ZodString;
4315
+ type: z.ZodLiteral<EntityType.GenericReference>;
4316
+ entityId: z.ZodString;
4317
+ entityType: z.ZodLiteral<EntityType.Operation>;
4318
+ }, "strip", z.ZodTypeAny, {
4319
+ id: string;
4320
+ type: EntityType.GenericReference;
4321
+ entityType: EntityType.Operation;
4322
+ entityId: string;
4323
+ }, {
4324
+ id: string;
4325
+ type: EntityType.GenericReference;
4326
+ entityType: EntityType.Operation;
4327
+ entityId: string;
4328
+ }>, z.ZodObject<{
4329
+ id: z.ZodString;
4330
+ type: z.ZodLiteral<EntityType.GenericReference>;
4331
+ entityId: z.ZodString;
4332
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
4333
+ }, "strip", z.ZodTypeAny, {
4334
+ id: string;
4335
+ type: EntityType.GenericReference;
4336
+ entityType: EntityType.FunctionDeclaration;
4337
+ entityId: string;
4338
+ }, {
4339
+ id: string;
4340
+ type: EntityType.GenericReference;
4341
+ entityType: EntityType.FunctionDeclaration;
4342
+ entityId: string;
4343
+ }>]>, "many">>;
4344
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
3675
4345
  id: z.ZodString;
3676
4346
  type: z.ZodLiteral<EntityType.GenericReference>;
3677
4347
  entityId: z.ZodString;
@@ -4022,7 +4692,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4022
4692
  id: string;
4023
4693
  type: EntityType.LiteralValue;
4024
4694
  name: import("@src/definitions").PrimitiveTypes.UUID;
4025
- valueAsType: {
4695
+ valueAsTypeSingle: {
4026
4696
  id: string;
4027
4697
  type: EntityType.GenericReference;
4028
4698
  entityType: EntityType.DefinitionEntity;
@@ -4038,6 +4708,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4038
4708
  entityType: EntityType.FunctionDeclaration;
4039
4709
  entityId: string;
4040
4710
  } | null;
4711
+ valueAsTypeList: ({
4712
+ id: string;
4713
+ type: EntityType.GenericReference;
4714
+ entityType: EntityType.DefinitionEntity;
4715
+ entityId: string;
4716
+ } | {
4717
+ id: string;
4718
+ type: EntityType.GenericReference;
4719
+ entityType: EntityType.Operation;
4720
+ entityId: string;
4721
+ } | {
4722
+ id: string;
4723
+ type: EntityType.GenericReference;
4724
+ entityType: EntityType.FunctionDeclaration;
4725
+ entityId: string;
4726
+ })[] | null;
4041
4727
  parent: {
4042
4728
  id: string;
4043
4729
  type: EntityType.GenericReference;
@@ -4060,7 +4746,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4060
4746
  id: string;
4061
4747
  type: EntityType.LiteralValue;
4062
4748
  name: import("@src/definitions").PrimitiveTypes.UUID;
4063
- valueAsType: {
4749
+ valueAsTypeSingle: {
4064
4750
  id: string;
4065
4751
  type: EntityType.GenericReference;
4066
4752
  entityType: EntityType.DefinitionEntity;
@@ -4076,6 +4762,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4076
4762
  entityType: EntityType.FunctionDeclaration;
4077
4763
  entityId: string;
4078
4764
  } | null;
4765
+ valueAsTypeList: ({
4766
+ id: string;
4767
+ type: EntityType.GenericReference;
4768
+ entityType: EntityType.DefinitionEntity;
4769
+ entityId: string;
4770
+ } | {
4771
+ id: string;
4772
+ type: EntityType.GenericReference;
4773
+ entityType: EntityType.Operation;
4774
+ entityId: string;
4775
+ } | {
4776
+ id: string;
4777
+ type: EntityType.GenericReference;
4778
+ entityType: EntityType.FunctionDeclaration;
4779
+ entityId: string;
4780
+ })[] | null;
4079
4781
  parent: {
4080
4782
  id: string;
4081
4783
  type: EntityType.GenericReference;
@@ -4100,7 +4802,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4100
4802
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
4101
4803
  type: z.ZodLiteral<EntityType.LiteralValue>;
4102
4804
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
4103
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
4805
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
4104
4806
  id: z.ZodString;
4105
4807
  type: z.ZodLiteral<EntityType.GenericReference>;
4106
4808
  entityId: z.ZodString;
@@ -4145,38 +4847,84 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4145
4847
  type: EntityType.GenericReference;
4146
4848
  entityType: EntityType.FunctionDeclaration;
4147
4849
  entityId: string;
4148
- }>]>>;
4149
- autogeneration: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
4150
- type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
4151
- rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
4152
- rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
4153
- }, {
4154
- type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
4155
- rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
4156
- rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
4157
- }>, {
4158
- rangeStart: z.ZodNullable<z.ZodNumber>;
4159
- rangeEnd: z.ZodNullable<z.ZodNumber>;
4160
- }>, {
4161
- rangeStart: z.ZodNumber;
4162
- rangeEnd: z.ZodNull;
4163
- }>, "strip", z.ZodTypeAny, {
4164
- type: import("@src/definitions").ValueAutogenerationType.Random;
4165
- rangeStart: number;
4166
- rangeEnd: null;
4167
- }, {
4168
- type: import("@src/definitions").ValueAutogenerationType.Random;
4169
- rangeStart: number;
4170
- rangeEnd: null;
4171
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
4172
- type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
4173
- rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
4174
- rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
4850
+ }>]>, "many">>;
4851
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
4852
+ id: z.ZodString;
4853
+ type: z.ZodLiteral<EntityType.GenericReference>;
4854
+ entityId: z.ZodString;
4855
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
4856
+ }, "strip", z.ZodTypeAny, {
4857
+ id: string;
4858
+ type: EntityType.GenericReference;
4859
+ entityType: EntityType.DefinitionEntity;
4860
+ entityId: string;
4175
4861
  }, {
4176
- type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
4177
- rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
4178
- rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
4179
- }>, {
4862
+ id: string;
4863
+ type: EntityType.GenericReference;
4864
+ entityType: EntityType.DefinitionEntity;
4865
+ entityId: string;
4866
+ }>, z.ZodObject<{
4867
+ id: z.ZodString;
4868
+ type: z.ZodLiteral<EntityType.GenericReference>;
4869
+ entityId: z.ZodString;
4870
+ entityType: z.ZodLiteral<EntityType.Operation>;
4871
+ }, "strip", z.ZodTypeAny, {
4872
+ id: string;
4873
+ type: EntityType.GenericReference;
4874
+ entityType: EntityType.Operation;
4875
+ entityId: string;
4876
+ }, {
4877
+ id: string;
4878
+ type: EntityType.GenericReference;
4879
+ entityType: EntityType.Operation;
4880
+ entityId: string;
4881
+ }>, z.ZodObject<{
4882
+ id: z.ZodString;
4883
+ type: z.ZodLiteral<EntityType.GenericReference>;
4884
+ entityId: z.ZodString;
4885
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
4886
+ }, "strip", z.ZodTypeAny, {
4887
+ id: string;
4888
+ type: EntityType.GenericReference;
4889
+ entityType: EntityType.FunctionDeclaration;
4890
+ entityId: string;
4891
+ }, {
4892
+ id: string;
4893
+ type: EntityType.GenericReference;
4894
+ entityType: EntityType.FunctionDeclaration;
4895
+ entityId: string;
4896
+ }>]>>;
4897
+ autogeneration: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
4898
+ type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
4899
+ rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
4900
+ rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
4901
+ }, {
4902
+ type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
4903
+ rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
4904
+ rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
4905
+ }>, {
4906
+ rangeStart: z.ZodNullable<z.ZodNumber>;
4907
+ rangeEnd: z.ZodNullable<z.ZodNumber>;
4908
+ }>, {
4909
+ rangeStart: z.ZodNumber;
4910
+ rangeEnd: z.ZodNull;
4911
+ }>, "strip", z.ZodTypeAny, {
4912
+ type: import("@src/definitions").ValueAutogenerationType.Random;
4913
+ rangeStart: number;
4914
+ rangeEnd: null;
4915
+ }, {
4916
+ type: import("@src/definitions").ValueAutogenerationType.Random;
4917
+ rangeStart: number;
4918
+ rangeEnd: null;
4919
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
4920
+ type: z.ZodEnum<[import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime, import("@src/definitions").ValueAutogenerationType.Random, import("@src/definitions").ValueAutogenerationType.Unique]>;
4921
+ rangeStart: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
4922
+ rangeEnd: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>>;
4923
+ }, {
4924
+ type: z.ZodLiteral<import("@src/definitions").ValueAutogenerationType.Random>;
4925
+ rangeStart: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
4926
+ rangeEnd: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodDate]>;
4927
+ }>, {
4180
4928
  rangeStart: z.ZodNullable<z.ZodNumber>;
4181
4929
  rangeEnd: z.ZodNullable<z.ZodNumber>;
4182
4930
  }>, {
@@ -4450,7 +5198,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4450
5198
  id: string;
4451
5199
  type: EntityType.LiteralValue;
4452
5200
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
4453
- valueAsType: {
5201
+ valueAsTypeSingle: {
4454
5202
  id: string;
4455
5203
  type: EntityType.GenericReference;
4456
5204
  entityType: EntityType.DefinitionEntity;
@@ -4466,6 +5214,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4466
5214
  entityType: EntityType.FunctionDeclaration;
4467
5215
  entityId: string;
4468
5216
  } | null;
5217
+ valueAsTypeList: ({
5218
+ id: string;
5219
+ type: EntityType.GenericReference;
5220
+ entityType: EntityType.DefinitionEntity;
5221
+ entityId: string;
5222
+ } | {
5223
+ id: string;
5224
+ type: EntityType.GenericReference;
5225
+ entityType: EntityType.Operation;
5226
+ entityId: string;
5227
+ } | {
5228
+ id: string;
5229
+ type: EntityType.GenericReference;
5230
+ entityType: EntityType.FunctionDeclaration;
5231
+ entityId: string;
5232
+ })[] | null;
4469
5233
  parent: {
4470
5234
  id: string;
4471
5235
  type: EntityType.GenericReference;
@@ -4489,7 +5253,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4489
5253
  id: string;
4490
5254
  type: EntityType.LiteralValue;
4491
5255
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
4492
- valueAsType: {
5256
+ valueAsTypeSingle: {
4493
5257
  id: string;
4494
5258
  type: EntityType.GenericReference;
4495
5259
  entityType: EntityType.DefinitionEntity;
@@ -4505,6 +5269,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4505
5269
  entityType: EntityType.FunctionDeclaration;
4506
5270
  entityId: string;
4507
5271
  } | null;
5272
+ valueAsTypeList: ({
5273
+ id: string;
5274
+ type: EntityType.GenericReference;
5275
+ entityType: EntityType.DefinitionEntity;
5276
+ entityId: string;
5277
+ } | {
5278
+ id: string;
5279
+ type: EntityType.GenericReference;
5280
+ entityType: EntityType.Operation;
5281
+ entityId: string;
5282
+ } | {
5283
+ id: string;
5284
+ type: EntityType.GenericReference;
5285
+ entityType: EntityType.FunctionDeclaration;
5286
+ entityId: string;
5287
+ })[] | null;
4508
5288
  parent: {
4509
5289
  id: string;
4510
5290
  type: EntityType.GenericReference;
@@ -4530,7 +5310,53 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4530
5310
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
4531
5311
  type: z.ZodLiteral<EntityType.LiteralValue>;
4532
5312
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
4533
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
5313
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
5314
+ id: z.ZodString;
5315
+ type: z.ZodLiteral<EntityType.GenericReference>;
5316
+ entityId: z.ZodString;
5317
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
5318
+ }, "strip", z.ZodTypeAny, {
5319
+ id: string;
5320
+ type: EntityType.GenericReference;
5321
+ entityType: EntityType.DefinitionEntity;
5322
+ entityId: string;
5323
+ }, {
5324
+ id: string;
5325
+ type: EntityType.GenericReference;
5326
+ entityType: EntityType.DefinitionEntity;
5327
+ entityId: string;
5328
+ }>, z.ZodObject<{
5329
+ id: z.ZodString;
5330
+ type: z.ZodLiteral<EntityType.GenericReference>;
5331
+ entityId: z.ZodString;
5332
+ entityType: z.ZodLiteral<EntityType.Operation>;
5333
+ }, "strip", z.ZodTypeAny, {
5334
+ id: string;
5335
+ type: EntityType.GenericReference;
5336
+ entityType: EntityType.Operation;
5337
+ entityId: string;
5338
+ }, {
5339
+ id: string;
5340
+ type: EntityType.GenericReference;
5341
+ entityType: EntityType.Operation;
5342
+ entityId: string;
5343
+ }>, z.ZodObject<{
5344
+ id: z.ZodString;
5345
+ type: z.ZodLiteral<EntityType.GenericReference>;
5346
+ entityId: z.ZodString;
5347
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
5348
+ }, "strip", z.ZodTypeAny, {
5349
+ id: string;
5350
+ type: EntityType.GenericReference;
5351
+ entityType: EntityType.FunctionDeclaration;
5352
+ entityId: string;
5353
+ }, {
5354
+ id: string;
5355
+ type: EntityType.GenericReference;
5356
+ entityType: EntityType.FunctionDeclaration;
5357
+ entityId: string;
5358
+ }>]>, "many">>;
5359
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
4534
5360
  id: z.ZodString;
4535
5361
  type: z.ZodLiteral<EntityType.GenericReference>;
4536
5362
  entityId: z.ZodString;
@@ -4880,7 +5706,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4880
5706
  id: string;
4881
5707
  type: EntityType.LiteralValue;
4882
5708
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
4883
- valueAsType: {
5709
+ valueAsTypeSingle: {
4884
5710
  id: string;
4885
5711
  type: EntityType.GenericReference;
4886
5712
  entityType: EntityType.DefinitionEntity;
@@ -4896,6 +5722,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4896
5722
  entityType: EntityType.FunctionDeclaration;
4897
5723
  entityId: string;
4898
5724
  } | null;
5725
+ valueAsTypeList: ({
5726
+ id: string;
5727
+ type: EntityType.GenericReference;
5728
+ entityType: EntityType.DefinitionEntity;
5729
+ entityId: string;
5730
+ } | {
5731
+ id: string;
5732
+ type: EntityType.GenericReference;
5733
+ entityType: EntityType.Operation;
5734
+ entityId: string;
5735
+ } | {
5736
+ id: string;
5737
+ type: EntityType.GenericReference;
5738
+ entityType: EntityType.FunctionDeclaration;
5739
+ entityId: string;
5740
+ })[] | null;
4899
5741
  parent: {
4900
5742
  id: string;
4901
5743
  type: EntityType.GenericReference;
@@ -4919,7 +5761,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4919
5761
  id: string;
4920
5762
  type: EntityType.LiteralValue;
4921
5763
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
4922
- valueAsType: {
5764
+ valueAsTypeSingle: {
4923
5765
  id: string;
4924
5766
  type: EntityType.GenericReference;
4925
5767
  entityType: EntityType.DefinitionEntity;
@@ -4935,6 +5777,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
4935
5777
  entityType: EntityType.FunctionDeclaration;
4936
5778
  entityId: string;
4937
5779
  } | null;
5780
+ valueAsTypeList: ({
5781
+ id: string;
5782
+ type: EntityType.GenericReference;
5783
+ entityType: EntityType.DefinitionEntity;
5784
+ entityId: string;
5785
+ } | {
5786
+ id: string;
5787
+ type: EntityType.GenericReference;
5788
+ entityType: EntityType.Operation;
5789
+ entityId: string;
5790
+ } | {
5791
+ id: string;
5792
+ type: EntityType.GenericReference;
5793
+ entityType: EntityType.FunctionDeclaration;
5794
+ entityId: string;
5795
+ })[] | null;
4938
5796
  parent: {
4939
5797
  id: string;
4940
5798
  type: EntityType.GenericReference;
@@ -5156,7 +6014,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5156
6014
  id: string;
5157
6015
  type: EntityType.LiteralValue;
5158
6016
  name: import("@src/definitions").PrimitiveTypes.String;
5159
- valueAsType: {
6017
+ valueAsTypeSingle: {
5160
6018
  id: string;
5161
6019
  type: EntityType.GenericReference;
5162
6020
  entityType: EntityType.DefinitionEntity;
@@ -5172,6 +6030,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5172
6030
  entityType: EntityType.FunctionDeclaration;
5173
6031
  entityId: string;
5174
6032
  } | null;
6033
+ valueAsTypeList: ({
6034
+ id: string;
6035
+ type: EntityType.GenericReference;
6036
+ entityType: EntityType.DefinitionEntity;
6037
+ entityId: string;
6038
+ } | {
6039
+ id: string;
6040
+ type: EntityType.GenericReference;
6041
+ entityType: EntityType.Operation;
6042
+ entityId: string;
6043
+ } | {
6044
+ id: string;
6045
+ type: EntityType.GenericReference;
6046
+ entityType: EntityType.FunctionDeclaration;
6047
+ entityId: string;
6048
+ })[] | null;
5175
6049
  parent: {
5176
6050
  id: string;
5177
6051
  type: EntityType.GenericReference;
@@ -5202,7 +6076,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5202
6076
  id: string;
5203
6077
  type: EntityType.LiteralValue;
5204
6078
  name: import("@src/definitions").PrimitiveTypes.Number;
5205
- valueAsType: {
6079
+ valueAsTypeSingle: {
5206
6080
  id: string;
5207
6081
  type: EntityType.GenericReference;
5208
6082
  entityType: EntityType.DefinitionEntity;
@@ -5218,6 +6092,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5218
6092
  entityType: EntityType.FunctionDeclaration;
5219
6093
  entityId: string;
5220
6094
  } | null;
6095
+ valueAsTypeList: ({
6096
+ id: string;
6097
+ type: EntityType.GenericReference;
6098
+ entityType: EntityType.DefinitionEntity;
6099
+ entityId: string;
6100
+ } | {
6101
+ id: string;
6102
+ type: EntityType.GenericReference;
6103
+ entityType: EntityType.Operation;
6104
+ entityId: string;
6105
+ } | {
6106
+ id: string;
6107
+ type: EntityType.GenericReference;
6108
+ entityType: EntityType.FunctionDeclaration;
6109
+ entityId: string;
6110
+ })[] | null;
5221
6111
  parent: {
5222
6112
  id: string;
5223
6113
  type: EntityType.GenericReference;
@@ -5248,7 +6138,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5248
6138
  id: string;
5249
6139
  type: EntityType.LiteralValue;
5250
6140
  name: import("@src/definitions").PrimitiveTypes.Boolean;
5251
- valueAsType: {
6141
+ valueAsTypeSingle: {
5252
6142
  id: string;
5253
6143
  type: EntityType.GenericReference;
5254
6144
  entityType: EntityType.DefinitionEntity;
@@ -5264,6 +6154,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5264
6154
  entityType: EntityType.FunctionDeclaration;
5265
6155
  entityId: string;
5266
6156
  } | null;
6157
+ valueAsTypeList: ({
6158
+ id: string;
6159
+ type: EntityType.GenericReference;
6160
+ entityType: EntityType.DefinitionEntity;
6161
+ entityId: string;
6162
+ } | {
6163
+ id: string;
6164
+ type: EntityType.GenericReference;
6165
+ entityType: EntityType.Operation;
6166
+ entityId: string;
6167
+ } | {
6168
+ id: string;
6169
+ type: EntityType.GenericReference;
6170
+ entityType: EntityType.FunctionDeclaration;
6171
+ entityId: string;
6172
+ })[] | null;
5267
6173
  parent: {
5268
6174
  id: string;
5269
6175
  type: EntityType.GenericReference;
@@ -5286,7 +6192,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5286
6192
  id: string;
5287
6193
  type: EntityType.LiteralValue;
5288
6194
  name: import("@src/definitions").PrimitiveTypes.Null;
5289
- valueAsType: {
6195
+ valueAsTypeSingle: {
5290
6196
  id: string;
5291
6197
  type: EntityType.GenericReference;
5292
6198
  entityType: EntityType.DefinitionEntity;
@@ -5302,6 +6208,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5302
6208
  entityType: EntityType.FunctionDeclaration;
5303
6209
  entityId: string;
5304
6210
  } | null;
6211
+ valueAsTypeList: ({
6212
+ id: string;
6213
+ type: EntityType.GenericReference;
6214
+ entityType: EntityType.DefinitionEntity;
6215
+ entityId: string;
6216
+ } | {
6217
+ id: string;
6218
+ type: EntityType.GenericReference;
6219
+ entityType: EntityType.Operation;
6220
+ entityId: string;
6221
+ } | {
6222
+ id: string;
6223
+ type: EntityType.GenericReference;
6224
+ entityType: EntityType.FunctionDeclaration;
6225
+ entityId: string;
6226
+ })[] | null;
5305
6227
  parent: {
5306
6228
  id: string;
5307
6229
  type: EntityType.GenericReference;
@@ -5320,7 +6242,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5320
6242
  id: string;
5321
6243
  type: EntityType.LiteralValue;
5322
6244
  name: import("@src/definitions").PrimitiveTypes.Date;
5323
- valueAsType: {
6245
+ valueAsTypeSingle: {
5324
6246
  id: string;
5325
6247
  type: EntityType.GenericReference;
5326
6248
  entityType: EntityType.DefinitionEntity;
@@ -5336,6 +6258,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5336
6258
  entityType: EntityType.FunctionDeclaration;
5337
6259
  entityId: string;
5338
6260
  } | null;
6261
+ valueAsTypeList: ({
6262
+ id: string;
6263
+ type: EntityType.GenericReference;
6264
+ entityType: EntityType.DefinitionEntity;
6265
+ entityId: string;
6266
+ } | {
6267
+ id: string;
6268
+ type: EntityType.GenericReference;
6269
+ entityType: EntityType.Operation;
6270
+ entityId: string;
6271
+ } | {
6272
+ id: string;
6273
+ type: EntityType.GenericReference;
6274
+ entityType: EntityType.FunctionDeclaration;
6275
+ entityId: string;
6276
+ })[] | null;
5339
6277
  parent: {
5340
6278
  id: string;
5341
6279
  type: EntityType.GenericReference;
@@ -5370,7 +6308,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5370
6308
  id: string;
5371
6309
  type: EntityType.LiteralValue;
5372
6310
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
5373
- valueAsType: {
6311
+ valueAsTypeSingle: {
5374
6312
  id: string;
5375
6313
  type: EntityType.GenericReference;
5376
6314
  entityType: EntityType.DefinitionEntity;
@@ -5386,6 +6324,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5386
6324
  entityType: EntityType.FunctionDeclaration;
5387
6325
  entityId: string;
5388
6326
  } | null;
6327
+ valueAsTypeList: ({
6328
+ id: string;
6329
+ type: EntityType.GenericReference;
6330
+ entityType: EntityType.DefinitionEntity;
6331
+ entityId: string;
6332
+ } | {
6333
+ id: string;
6334
+ type: EntityType.GenericReference;
6335
+ entityType: EntityType.Operation;
6336
+ entityId: string;
6337
+ } | {
6338
+ id: string;
6339
+ type: EntityType.GenericReference;
6340
+ entityType: EntityType.FunctionDeclaration;
6341
+ entityId: string;
6342
+ })[] | null;
5389
6343
  parent: {
5390
6344
  id: string;
5391
6345
  type: EntityType.GenericReference;
@@ -5404,7 +6358,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5404
6358
  id: string;
5405
6359
  type: EntityType.LiteralValue;
5406
6360
  name: import("@src/definitions").PrimitiveTypes.Enum;
5407
- valueAsType: {
6361
+ valueAsTypeSingle: {
5408
6362
  id: string;
5409
6363
  type: EntityType.GenericReference;
5410
6364
  entityType: EntityType.DefinitionEntity;
@@ -5420,17 +6374,33 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5420
6374
  entityType: EntityType.FunctionDeclaration;
5421
6375
  entityId: string;
5422
6376
  } | null;
5423
- parent: {
6377
+ valueAsTypeList: ({
5424
6378
  id: string;
5425
6379
  type: EntityType.GenericReference;
5426
- entityType: EntityType.InputMap;
6380
+ entityType: EntityType.DefinitionEntity;
5427
6381
  entityId: string;
5428
6382
  } | {
5429
6383
  id: string;
5430
6384
  type: EntityType.GenericReference;
5431
- entityType: EntityType.DataType;
6385
+ entityType: EntityType.Operation;
5432
6386
  entityId: string;
5433
- };
6387
+ } | {
6388
+ id: string;
6389
+ type: EntityType.GenericReference;
6390
+ entityType: EntityType.FunctionDeclaration;
6391
+ entityId: string;
6392
+ })[] | null;
6393
+ parent: {
6394
+ id: string;
6395
+ type: EntityType.GenericReference;
6396
+ entityType: EntityType.InputMap;
6397
+ entityId: string;
6398
+ } | {
6399
+ id: string;
6400
+ type: EntityType.GenericReference;
6401
+ entityType: EntityType.DataType;
6402
+ entityId: string;
6403
+ };
5434
6404
  version: number;
5435
6405
  autogeneration: null;
5436
6406
  value: string;
@@ -5438,7 +6408,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5438
6408
  id: string;
5439
6409
  type: EntityType.LiteralValue;
5440
6410
  name: import("@src/definitions").PrimitiveTypes.File;
5441
- valueAsType: {
6411
+ valueAsTypeSingle: {
5442
6412
  id: string;
5443
6413
  type: EntityType.GenericReference;
5444
6414
  entityType: EntityType.DefinitionEntity;
@@ -5454,6 +6424,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5454
6424
  entityType: EntityType.FunctionDeclaration;
5455
6425
  entityId: string;
5456
6426
  } | null;
6427
+ valueAsTypeList: ({
6428
+ id: string;
6429
+ type: EntityType.GenericReference;
6430
+ entityType: EntityType.DefinitionEntity;
6431
+ entityId: string;
6432
+ } | {
6433
+ id: string;
6434
+ type: EntityType.GenericReference;
6435
+ entityType: EntityType.Operation;
6436
+ entityId: string;
6437
+ } | {
6438
+ id: string;
6439
+ type: EntityType.GenericReference;
6440
+ entityType: EntityType.FunctionDeclaration;
6441
+ entityId: string;
6442
+ })[] | null;
5457
6443
  parent: {
5458
6444
  id: string;
5459
6445
  type: EntityType.GenericReference;
@@ -5472,7 +6458,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5472
6458
  id: string;
5473
6459
  type: EntityType.LiteralValue;
5474
6460
  name: import("@src/definitions").PrimitiveTypes.UUID;
5475
- valueAsType: {
6461
+ valueAsTypeSingle: {
5476
6462
  id: string;
5477
6463
  type: EntityType.GenericReference;
5478
6464
  entityType: EntityType.DefinitionEntity;
@@ -5488,6 +6474,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5488
6474
  entityType: EntityType.FunctionDeclaration;
5489
6475
  entityId: string;
5490
6476
  } | null;
6477
+ valueAsTypeList: ({
6478
+ id: string;
6479
+ type: EntityType.GenericReference;
6480
+ entityType: EntityType.DefinitionEntity;
6481
+ entityId: string;
6482
+ } | {
6483
+ id: string;
6484
+ type: EntityType.GenericReference;
6485
+ entityType: EntityType.Operation;
6486
+ entityId: string;
6487
+ } | {
6488
+ id: string;
6489
+ type: EntityType.GenericReference;
6490
+ entityType: EntityType.FunctionDeclaration;
6491
+ entityId: string;
6492
+ })[] | null;
5491
6493
  parent: {
5492
6494
  id: string;
5493
6495
  type: EntityType.GenericReference;
@@ -5510,7 +6512,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5510
6512
  id: string;
5511
6513
  type: EntityType.LiteralValue;
5512
6514
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
5513
- valueAsType: {
6515
+ valueAsTypeSingle: {
5514
6516
  id: string;
5515
6517
  type: EntityType.GenericReference;
5516
6518
  entityType: EntityType.DefinitionEntity;
@@ -5526,6 +6528,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5526
6528
  entityType: EntityType.FunctionDeclaration;
5527
6529
  entityId: string;
5528
6530
  } | null;
6531
+ valueAsTypeList: ({
6532
+ id: string;
6533
+ type: EntityType.GenericReference;
6534
+ entityType: EntityType.DefinitionEntity;
6535
+ entityId: string;
6536
+ } | {
6537
+ id: string;
6538
+ type: EntityType.GenericReference;
6539
+ entityType: EntityType.Operation;
6540
+ entityId: string;
6541
+ } | {
6542
+ id: string;
6543
+ type: EntityType.GenericReference;
6544
+ entityType: EntityType.FunctionDeclaration;
6545
+ entityId: string;
6546
+ })[] | null;
5529
6547
  parent: {
5530
6548
  id: string;
5531
6549
  type: EntityType.GenericReference;
@@ -5549,7 +6567,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5549
6567
  id: string;
5550
6568
  type: EntityType.LiteralValue;
5551
6569
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
5552
- valueAsType: {
6570
+ valueAsTypeSingle: {
5553
6571
  id: string;
5554
6572
  type: EntityType.GenericReference;
5555
6573
  entityType: EntityType.DefinitionEntity;
@@ -5565,6 +6583,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5565
6583
  entityType: EntityType.FunctionDeclaration;
5566
6584
  entityId: string;
5567
6585
  } | null;
6586
+ valueAsTypeList: ({
6587
+ id: string;
6588
+ type: EntityType.GenericReference;
6589
+ entityType: EntityType.DefinitionEntity;
6590
+ entityId: string;
6591
+ } | {
6592
+ id: string;
6593
+ type: EntityType.GenericReference;
6594
+ entityType: EntityType.Operation;
6595
+ entityId: string;
6596
+ } | {
6597
+ id: string;
6598
+ type: EntityType.GenericReference;
6599
+ entityType: EntityType.FunctionDeclaration;
6600
+ entityId: string;
6601
+ })[] | null;
5568
6602
  parent: {
5569
6603
  id: string;
5570
6604
  type: EntityType.GenericReference;
@@ -5640,7 +6674,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5640
6674
  id: string;
5641
6675
  type: EntityType.LiteralValue;
5642
6676
  name: import("@src/definitions").PrimitiveTypes.String;
5643
- valueAsType: {
6677
+ valueAsTypeSingle: {
5644
6678
  id: string;
5645
6679
  type: EntityType.GenericReference;
5646
6680
  entityType: EntityType.DefinitionEntity;
@@ -5656,6 +6690,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5656
6690
  entityType: EntityType.FunctionDeclaration;
5657
6691
  entityId: string;
5658
6692
  } | null;
6693
+ valueAsTypeList: ({
6694
+ id: string;
6695
+ type: EntityType.GenericReference;
6696
+ entityType: EntityType.DefinitionEntity;
6697
+ entityId: string;
6698
+ } | {
6699
+ id: string;
6700
+ type: EntityType.GenericReference;
6701
+ entityType: EntityType.Operation;
6702
+ entityId: string;
6703
+ } | {
6704
+ id: string;
6705
+ type: EntityType.GenericReference;
6706
+ entityType: EntityType.FunctionDeclaration;
6707
+ entityId: string;
6708
+ })[] | null;
5659
6709
  parent: {
5660
6710
  id: string;
5661
6711
  type: EntityType.GenericReference;
@@ -5686,7 +6736,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5686
6736
  id: string;
5687
6737
  type: EntityType.LiteralValue;
5688
6738
  name: import("@src/definitions").PrimitiveTypes.Number;
5689
- valueAsType: {
6739
+ valueAsTypeSingle: {
5690
6740
  id: string;
5691
6741
  type: EntityType.GenericReference;
5692
6742
  entityType: EntityType.DefinitionEntity;
@@ -5702,6 +6752,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5702
6752
  entityType: EntityType.FunctionDeclaration;
5703
6753
  entityId: string;
5704
6754
  } | null;
6755
+ valueAsTypeList: ({
6756
+ id: string;
6757
+ type: EntityType.GenericReference;
6758
+ entityType: EntityType.DefinitionEntity;
6759
+ entityId: string;
6760
+ } | {
6761
+ id: string;
6762
+ type: EntityType.GenericReference;
6763
+ entityType: EntityType.Operation;
6764
+ entityId: string;
6765
+ } | {
6766
+ id: string;
6767
+ type: EntityType.GenericReference;
6768
+ entityType: EntityType.FunctionDeclaration;
6769
+ entityId: string;
6770
+ })[] | null;
5705
6771
  parent: {
5706
6772
  id: string;
5707
6773
  type: EntityType.GenericReference;
@@ -5732,7 +6798,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5732
6798
  id: string;
5733
6799
  type: EntityType.LiteralValue;
5734
6800
  name: import("@src/definitions").PrimitiveTypes.Boolean;
5735
- valueAsType: {
6801
+ valueAsTypeSingle: {
5736
6802
  id: string;
5737
6803
  type: EntityType.GenericReference;
5738
6804
  entityType: EntityType.DefinitionEntity;
@@ -5748,6 +6814,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5748
6814
  entityType: EntityType.FunctionDeclaration;
5749
6815
  entityId: string;
5750
6816
  } | null;
6817
+ valueAsTypeList: ({
6818
+ id: string;
6819
+ type: EntityType.GenericReference;
6820
+ entityType: EntityType.DefinitionEntity;
6821
+ entityId: string;
6822
+ } | {
6823
+ id: string;
6824
+ type: EntityType.GenericReference;
6825
+ entityType: EntityType.Operation;
6826
+ entityId: string;
6827
+ } | {
6828
+ id: string;
6829
+ type: EntityType.GenericReference;
6830
+ entityType: EntityType.FunctionDeclaration;
6831
+ entityId: string;
6832
+ })[] | null;
5751
6833
  parent: {
5752
6834
  id: string;
5753
6835
  type: EntityType.GenericReference;
@@ -5770,7 +6852,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5770
6852
  id: string;
5771
6853
  type: EntityType.LiteralValue;
5772
6854
  name: import("@src/definitions").PrimitiveTypes.Null;
5773
- valueAsType: {
6855
+ valueAsTypeSingle: {
5774
6856
  id: string;
5775
6857
  type: EntityType.GenericReference;
5776
6858
  entityType: EntityType.DefinitionEntity;
@@ -5786,6 +6868,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5786
6868
  entityType: EntityType.FunctionDeclaration;
5787
6869
  entityId: string;
5788
6870
  } | null;
6871
+ valueAsTypeList: ({
6872
+ id: string;
6873
+ type: EntityType.GenericReference;
6874
+ entityType: EntityType.DefinitionEntity;
6875
+ entityId: string;
6876
+ } | {
6877
+ id: string;
6878
+ type: EntityType.GenericReference;
6879
+ entityType: EntityType.Operation;
6880
+ entityId: string;
6881
+ } | {
6882
+ id: string;
6883
+ type: EntityType.GenericReference;
6884
+ entityType: EntityType.FunctionDeclaration;
6885
+ entityId: string;
6886
+ })[] | null;
5789
6887
  parent: {
5790
6888
  id: string;
5791
6889
  type: EntityType.GenericReference;
@@ -5804,7 +6902,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5804
6902
  id: string;
5805
6903
  type: EntityType.LiteralValue;
5806
6904
  name: import("@src/definitions").PrimitiveTypes.Date;
5807
- valueAsType: {
6905
+ valueAsTypeSingle: {
5808
6906
  id: string;
5809
6907
  type: EntityType.GenericReference;
5810
6908
  entityType: EntityType.DefinitionEntity;
@@ -5820,6 +6918,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5820
6918
  entityType: EntityType.FunctionDeclaration;
5821
6919
  entityId: string;
5822
6920
  } | null;
6921
+ valueAsTypeList: ({
6922
+ id: string;
6923
+ type: EntityType.GenericReference;
6924
+ entityType: EntityType.DefinitionEntity;
6925
+ entityId: string;
6926
+ } | {
6927
+ id: string;
6928
+ type: EntityType.GenericReference;
6929
+ entityType: EntityType.Operation;
6930
+ entityId: string;
6931
+ } | {
6932
+ id: string;
6933
+ type: EntityType.GenericReference;
6934
+ entityType: EntityType.FunctionDeclaration;
6935
+ entityId: string;
6936
+ })[] | null;
5823
6937
  parent: {
5824
6938
  id: string;
5825
6939
  type: EntityType.GenericReference;
@@ -5854,7 +6968,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5854
6968
  id: string;
5855
6969
  type: EntityType.LiteralValue;
5856
6970
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
5857
- valueAsType: {
6971
+ valueAsTypeSingle: {
5858
6972
  id: string;
5859
6973
  type: EntityType.GenericReference;
5860
6974
  entityType: EntityType.DefinitionEntity;
@@ -5870,6 +6984,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5870
6984
  entityType: EntityType.FunctionDeclaration;
5871
6985
  entityId: string;
5872
6986
  } | null;
6987
+ valueAsTypeList: ({
6988
+ id: string;
6989
+ type: EntityType.GenericReference;
6990
+ entityType: EntityType.DefinitionEntity;
6991
+ entityId: string;
6992
+ } | {
6993
+ id: string;
6994
+ type: EntityType.GenericReference;
6995
+ entityType: EntityType.Operation;
6996
+ entityId: string;
6997
+ } | {
6998
+ id: string;
6999
+ type: EntityType.GenericReference;
7000
+ entityType: EntityType.FunctionDeclaration;
7001
+ entityId: string;
7002
+ })[] | null;
5873
7003
  parent: {
5874
7004
  id: string;
5875
7005
  type: EntityType.GenericReference;
@@ -5888,7 +7018,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5888
7018
  id: string;
5889
7019
  type: EntityType.LiteralValue;
5890
7020
  name: import("@src/definitions").PrimitiveTypes.Enum;
5891
- valueAsType: {
7021
+ valueAsTypeSingle: {
5892
7022
  id: string;
5893
7023
  type: EntityType.GenericReference;
5894
7024
  entityType: EntityType.DefinitionEntity;
@@ -5904,6 +7034,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5904
7034
  entityType: EntityType.FunctionDeclaration;
5905
7035
  entityId: string;
5906
7036
  } | null;
7037
+ valueAsTypeList: ({
7038
+ id: string;
7039
+ type: EntityType.GenericReference;
7040
+ entityType: EntityType.DefinitionEntity;
7041
+ entityId: string;
7042
+ } | {
7043
+ id: string;
7044
+ type: EntityType.GenericReference;
7045
+ entityType: EntityType.Operation;
7046
+ entityId: string;
7047
+ } | {
7048
+ id: string;
7049
+ type: EntityType.GenericReference;
7050
+ entityType: EntityType.FunctionDeclaration;
7051
+ entityId: string;
7052
+ })[] | null;
5907
7053
  parent: {
5908
7054
  id: string;
5909
7055
  type: EntityType.GenericReference;
@@ -5922,7 +7068,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5922
7068
  id: string;
5923
7069
  type: EntityType.LiteralValue;
5924
7070
  name: import("@src/definitions").PrimitiveTypes.File;
5925
- valueAsType: {
7071
+ valueAsTypeSingle: {
5926
7072
  id: string;
5927
7073
  type: EntityType.GenericReference;
5928
7074
  entityType: EntityType.DefinitionEntity;
@@ -5938,6 +7084,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5938
7084
  entityType: EntityType.FunctionDeclaration;
5939
7085
  entityId: string;
5940
7086
  } | null;
7087
+ valueAsTypeList: ({
7088
+ id: string;
7089
+ type: EntityType.GenericReference;
7090
+ entityType: EntityType.DefinitionEntity;
7091
+ entityId: string;
7092
+ } | {
7093
+ id: string;
7094
+ type: EntityType.GenericReference;
7095
+ entityType: EntityType.Operation;
7096
+ entityId: string;
7097
+ } | {
7098
+ id: string;
7099
+ type: EntityType.GenericReference;
7100
+ entityType: EntityType.FunctionDeclaration;
7101
+ entityId: string;
7102
+ })[] | null;
5941
7103
  parent: {
5942
7104
  id: string;
5943
7105
  type: EntityType.GenericReference;
@@ -5956,7 +7118,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5956
7118
  id: string;
5957
7119
  type: EntityType.LiteralValue;
5958
7120
  name: import("@src/definitions").PrimitiveTypes.UUID;
5959
- valueAsType: {
7121
+ valueAsTypeSingle: {
5960
7122
  id: string;
5961
7123
  type: EntityType.GenericReference;
5962
7124
  entityType: EntityType.DefinitionEntity;
@@ -5972,6 +7134,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5972
7134
  entityType: EntityType.FunctionDeclaration;
5973
7135
  entityId: string;
5974
7136
  } | null;
7137
+ valueAsTypeList: ({
7138
+ id: string;
7139
+ type: EntityType.GenericReference;
7140
+ entityType: EntityType.DefinitionEntity;
7141
+ entityId: string;
7142
+ } | {
7143
+ id: string;
7144
+ type: EntityType.GenericReference;
7145
+ entityType: EntityType.Operation;
7146
+ entityId: string;
7147
+ } | {
7148
+ id: string;
7149
+ type: EntityType.GenericReference;
7150
+ entityType: EntityType.FunctionDeclaration;
7151
+ entityId: string;
7152
+ })[] | null;
5975
7153
  parent: {
5976
7154
  id: string;
5977
7155
  type: EntityType.GenericReference;
@@ -5994,7 +7172,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
5994
7172
  id: string;
5995
7173
  type: EntityType.LiteralValue;
5996
7174
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
5997
- valueAsType: {
7175
+ valueAsTypeSingle: {
5998
7176
  id: string;
5999
7177
  type: EntityType.GenericReference;
6000
7178
  entityType: EntityType.DefinitionEntity;
@@ -6010,6 +7188,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
6010
7188
  entityType: EntityType.FunctionDeclaration;
6011
7189
  entityId: string;
6012
7190
  } | null;
7191
+ valueAsTypeList: ({
7192
+ id: string;
7193
+ type: EntityType.GenericReference;
7194
+ entityType: EntityType.DefinitionEntity;
7195
+ entityId: string;
7196
+ } | {
7197
+ id: string;
7198
+ type: EntityType.GenericReference;
7199
+ entityType: EntityType.Operation;
7200
+ entityId: string;
7201
+ } | {
7202
+ id: string;
7203
+ type: EntityType.GenericReference;
7204
+ entityType: EntityType.FunctionDeclaration;
7205
+ entityId: string;
7206
+ })[] | null;
6013
7207
  parent: {
6014
7208
  id: string;
6015
7209
  type: EntityType.GenericReference;
@@ -6033,7 +7227,7 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
6033
7227
  id: string;
6034
7228
  type: EntityType.LiteralValue;
6035
7229
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
6036
- valueAsType: {
7230
+ valueAsTypeSingle: {
6037
7231
  id: string;
6038
7232
  type: EntityType.GenericReference;
6039
7233
  entityType: EntityType.DefinitionEntity;
@@ -6049,6 +7243,22 @@ export declare function getDataTypeNestedEntitiesSchema(): z.ZodObject<{
6049
7243
  entityType: EntityType.FunctionDeclaration;
6050
7244
  entityId: string;
6051
7245
  } | null;
7246
+ valueAsTypeList: ({
7247
+ id: string;
7248
+ type: EntityType.GenericReference;
7249
+ entityType: EntityType.DefinitionEntity;
7250
+ entityId: string;
7251
+ } | {
7252
+ id: string;
7253
+ type: EntityType.GenericReference;
7254
+ entityType: EntityType.Operation;
7255
+ entityId: string;
7256
+ } | {
7257
+ id: string;
7258
+ type: EntityType.GenericReference;
7259
+ entityType: EntityType.FunctionDeclaration;
7260
+ entityId: string;
7261
+ })[] | null;
6052
7262
  parent: {
6053
7263
  id: string;
6054
7264
  type: EntityType.GenericReference;
@@ -6087,7 +7297,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
6087
7297
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
6088
7298
  type: z.ZodLiteral<EntityType.LiteralValue>;
6089
7299
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
6090
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
7300
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
7301
+ id: z.ZodString;
7302
+ type: z.ZodLiteral<EntityType.GenericReference>;
7303
+ entityId: z.ZodString;
7304
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
7305
+ }, "strip", z.ZodTypeAny, {
7306
+ id: string;
7307
+ type: EntityType.GenericReference;
7308
+ entityType: EntityType.DefinitionEntity;
7309
+ entityId: string;
7310
+ }, {
7311
+ id: string;
7312
+ type: EntityType.GenericReference;
7313
+ entityType: EntityType.DefinitionEntity;
7314
+ entityId: string;
7315
+ }>, z.ZodObject<{
7316
+ id: z.ZodString;
7317
+ type: z.ZodLiteral<EntityType.GenericReference>;
7318
+ entityId: z.ZodString;
7319
+ entityType: z.ZodLiteral<EntityType.Operation>;
7320
+ }, "strip", z.ZodTypeAny, {
7321
+ id: string;
7322
+ type: EntityType.GenericReference;
7323
+ entityType: EntityType.Operation;
7324
+ entityId: string;
7325
+ }, {
7326
+ id: string;
7327
+ type: EntityType.GenericReference;
7328
+ entityType: EntityType.Operation;
7329
+ entityId: string;
7330
+ }>, z.ZodObject<{
7331
+ id: z.ZodString;
7332
+ type: z.ZodLiteral<EntityType.GenericReference>;
7333
+ entityId: z.ZodString;
7334
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
7335
+ }, "strip", z.ZodTypeAny, {
7336
+ id: string;
7337
+ type: EntityType.GenericReference;
7338
+ entityType: EntityType.FunctionDeclaration;
7339
+ entityId: string;
7340
+ }, {
7341
+ id: string;
7342
+ type: EntityType.GenericReference;
7343
+ entityType: EntityType.FunctionDeclaration;
7344
+ entityId: string;
7345
+ }>]>, "many">>;
7346
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
6091
7347
  id: z.ZodString;
6092
7348
  type: z.ZodLiteral<EntityType.GenericReference>;
6093
7349
  entityId: z.ZodString;
@@ -6488,7 +7744,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
6488
7744
  id: string;
6489
7745
  type: EntityType.LiteralValue;
6490
7746
  name: import("@src/definitions").PrimitiveTypes.String;
6491
- valueAsType: {
7747
+ valueAsTypeSingle: {
6492
7748
  id: string;
6493
7749
  type: EntityType.GenericReference;
6494
7750
  entityType: EntityType.DefinitionEntity;
@@ -6504,6 +7760,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
6504
7760
  entityType: EntityType.FunctionDeclaration;
6505
7761
  entityId: string;
6506
7762
  } | null;
7763
+ valueAsTypeList: ({
7764
+ id: string;
7765
+ type: EntityType.GenericReference;
7766
+ entityType: EntityType.DefinitionEntity;
7767
+ entityId: string;
7768
+ } | {
7769
+ id: string;
7770
+ type: EntityType.GenericReference;
7771
+ entityType: EntityType.Operation;
7772
+ entityId: string;
7773
+ } | {
7774
+ id: string;
7775
+ type: EntityType.GenericReference;
7776
+ entityType: EntityType.FunctionDeclaration;
7777
+ entityId: string;
7778
+ })[] | null;
6507
7779
  parent: {
6508
7780
  id: string;
6509
7781
  type: EntityType.GenericReference;
@@ -6534,7 +7806,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
6534
7806
  id: string;
6535
7807
  type: EntityType.LiteralValue;
6536
7808
  name: import("@src/definitions").PrimitiveTypes.String;
6537
- valueAsType: {
7809
+ valueAsTypeSingle: {
6538
7810
  id: string;
6539
7811
  type: EntityType.GenericReference;
6540
7812
  entityType: EntityType.DefinitionEntity;
@@ -6550,6 +7822,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
6550
7822
  entityType: EntityType.FunctionDeclaration;
6551
7823
  entityId: string;
6552
7824
  } | null;
7825
+ valueAsTypeList: ({
7826
+ id: string;
7827
+ type: EntityType.GenericReference;
7828
+ entityType: EntityType.DefinitionEntity;
7829
+ entityId: string;
7830
+ } | {
7831
+ id: string;
7832
+ type: EntityType.GenericReference;
7833
+ entityType: EntityType.Operation;
7834
+ entityId: string;
7835
+ } | {
7836
+ id: string;
7837
+ type: EntityType.GenericReference;
7838
+ entityType: EntityType.FunctionDeclaration;
7839
+ entityId: string;
7840
+ })[] | null;
6553
7841
  parent: {
6554
7842
  id: string;
6555
7843
  type: EntityType.GenericReference;
@@ -6582,7 +7870,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
6582
7870
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
6583
7871
  type: z.ZodLiteral<EntityType.LiteralValue>;
6584
7872
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
6585
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
7873
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
7874
+ id: z.ZodString;
7875
+ type: z.ZodLiteral<EntityType.GenericReference>;
7876
+ entityId: z.ZodString;
7877
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
7878
+ }, "strip", z.ZodTypeAny, {
7879
+ id: string;
7880
+ type: EntityType.GenericReference;
7881
+ entityType: EntityType.DefinitionEntity;
7882
+ entityId: string;
7883
+ }, {
7884
+ id: string;
7885
+ type: EntityType.GenericReference;
7886
+ entityType: EntityType.DefinitionEntity;
7887
+ entityId: string;
7888
+ }>, z.ZodObject<{
7889
+ id: z.ZodString;
7890
+ type: z.ZodLiteral<EntityType.GenericReference>;
7891
+ entityId: z.ZodString;
7892
+ entityType: z.ZodLiteral<EntityType.Operation>;
7893
+ }, "strip", z.ZodTypeAny, {
7894
+ id: string;
7895
+ type: EntityType.GenericReference;
7896
+ entityType: EntityType.Operation;
7897
+ entityId: string;
7898
+ }, {
7899
+ id: string;
7900
+ type: EntityType.GenericReference;
7901
+ entityType: EntityType.Operation;
7902
+ entityId: string;
7903
+ }>, z.ZodObject<{
7904
+ id: z.ZodString;
7905
+ type: z.ZodLiteral<EntityType.GenericReference>;
7906
+ entityId: z.ZodString;
7907
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
7908
+ }, "strip", z.ZodTypeAny, {
7909
+ id: string;
7910
+ type: EntityType.GenericReference;
7911
+ entityType: EntityType.FunctionDeclaration;
7912
+ entityId: string;
7913
+ }, {
7914
+ id: string;
7915
+ type: EntityType.GenericReference;
7916
+ entityType: EntityType.FunctionDeclaration;
7917
+ entityId: string;
7918
+ }>]>, "many">>;
7919
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
6586
7920
  id: z.ZodString;
6587
7921
  type: z.ZodLiteral<EntityType.GenericReference>;
6588
7922
  entityId: z.ZodString;
@@ -6983,7 +8317,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
6983
8317
  id: string;
6984
8318
  type: EntityType.LiteralValue;
6985
8319
  name: import("@src/definitions").PrimitiveTypes.Number;
6986
- valueAsType: {
8320
+ valueAsTypeSingle: {
6987
8321
  id: string;
6988
8322
  type: EntityType.GenericReference;
6989
8323
  entityType: EntityType.DefinitionEntity;
@@ -6999,6 +8333,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
6999
8333
  entityType: EntityType.FunctionDeclaration;
7000
8334
  entityId: string;
7001
8335
  } | null;
8336
+ valueAsTypeList: ({
8337
+ id: string;
8338
+ type: EntityType.GenericReference;
8339
+ entityType: EntityType.DefinitionEntity;
8340
+ entityId: string;
8341
+ } | {
8342
+ id: string;
8343
+ type: EntityType.GenericReference;
8344
+ entityType: EntityType.Operation;
8345
+ entityId: string;
8346
+ } | {
8347
+ id: string;
8348
+ type: EntityType.GenericReference;
8349
+ entityType: EntityType.FunctionDeclaration;
8350
+ entityId: string;
8351
+ })[] | null;
7002
8352
  parent: {
7003
8353
  id: string;
7004
8354
  type: EntityType.GenericReference;
@@ -7029,7 +8379,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7029
8379
  id: string;
7030
8380
  type: EntityType.LiteralValue;
7031
8381
  name: import("@src/definitions").PrimitiveTypes.Number;
7032
- valueAsType: {
8382
+ valueAsTypeSingle: {
7033
8383
  id: string;
7034
8384
  type: EntityType.GenericReference;
7035
8385
  entityType: EntityType.DefinitionEntity;
@@ -7045,6 +8395,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7045
8395
  entityType: EntityType.FunctionDeclaration;
7046
8396
  entityId: string;
7047
8397
  } | null;
8398
+ valueAsTypeList: ({
8399
+ id: string;
8400
+ type: EntityType.GenericReference;
8401
+ entityType: EntityType.DefinitionEntity;
8402
+ entityId: string;
8403
+ } | {
8404
+ id: string;
8405
+ type: EntityType.GenericReference;
8406
+ entityType: EntityType.Operation;
8407
+ entityId: string;
8408
+ } | {
8409
+ id: string;
8410
+ type: EntityType.GenericReference;
8411
+ entityType: EntityType.FunctionDeclaration;
8412
+ entityId: string;
8413
+ })[] | null;
7048
8414
  parent: {
7049
8415
  id: string;
7050
8416
  type: EntityType.GenericReference;
@@ -7077,7 +8443,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7077
8443
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
7078
8444
  type: z.ZodLiteral<EntityType.LiteralValue>;
7079
8445
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
7080
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
8446
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
8447
+ id: z.ZodString;
8448
+ type: z.ZodLiteral<EntityType.GenericReference>;
8449
+ entityId: z.ZodString;
8450
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
8451
+ }, "strip", z.ZodTypeAny, {
8452
+ id: string;
8453
+ type: EntityType.GenericReference;
8454
+ entityType: EntityType.DefinitionEntity;
8455
+ entityId: string;
8456
+ }, {
8457
+ id: string;
8458
+ type: EntityType.GenericReference;
8459
+ entityType: EntityType.DefinitionEntity;
8460
+ entityId: string;
8461
+ }>, z.ZodObject<{
8462
+ id: z.ZodString;
8463
+ type: z.ZodLiteral<EntityType.GenericReference>;
8464
+ entityId: z.ZodString;
8465
+ entityType: z.ZodLiteral<EntityType.Operation>;
8466
+ }, "strip", z.ZodTypeAny, {
8467
+ id: string;
8468
+ type: EntityType.GenericReference;
8469
+ entityType: EntityType.Operation;
8470
+ entityId: string;
8471
+ }, {
8472
+ id: string;
8473
+ type: EntityType.GenericReference;
8474
+ entityType: EntityType.Operation;
8475
+ entityId: string;
8476
+ }>, z.ZodObject<{
8477
+ id: z.ZodString;
8478
+ type: z.ZodLiteral<EntityType.GenericReference>;
8479
+ entityId: z.ZodString;
8480
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
8481
+ }, "strip", z.ZodTypeAny, {
8482
+ id: string;
8483
+ type: EntityType.GenericReference;
8484
+ entityType: EntityType.FunctionDeclaration;
8485
+ entityId: string;
8486
+ }, {
8487
+ id: string;
8488
+ type: EntityType.GenericReference;
8489
+ entityType: EntityType.FunctionDeclaration;
8490
+ entityId: string;
8491
+ }>]>, "many">>;
8492
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
7081
8493
  id: z.ZodString;
7082
8494
  type: z.ZodLiteral<EntityType.GenericReference>;
7083
8495
  entityId: z.ZodString;
@@ -7431,7 +8843,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7431
8843
  id: string;
7432
8844
  type: EntityType.LiteralValue;
7433
8845
  name: import("@src/definitions").PrimitiveTypes.Boolean;
7434
- valueAsType: {
8846
+ valueAsTypeSingle: {
7435
8847
  id: string;
7436
8848
  type: EntityType.GenericReference;
7437
8849
  entityType: EntityType.DefinitionEntity;
@@ -7447,6 +8859,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7447
8859
  entityType: EntityType.FunctionDeclaration;
7448
8860
  entityId: string;
7449
8861
  } | null;
8862
+ valueAsTypeList: ({
8863
+ id: string;
8864
+ type: EntityType.GenericReference;
8865
+ entityType: EntityType.DefinitionEntity;
8866
+ entityId: string;
8867
+ } | {
8868
+ id: string;
8869
+ type: EntityType.GenericReference;
8870
+ entityType: EntityType.Operation;
8871
+ entityId: string;
8872
+ } | {
8873
+ id: string;
8874
+ type: EntityType.GenericReference;
8875
+ entityType: EntityType.FunctionDeclaration;
8876
+ entityId: string;
8877
+ })[] | null;
7450
8878
  parent: {
7451
8879
  id: string;
7452
8880
  type: EntityType.GenericReference;
@@ -7469,7 +8897,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7469
8897
  id: string;
7470
8898
  type: EntityType.LiteralValue;
7471
8899
  name: import("@src/definitions").PrimitiveTypes.Boolean;
7472
- valueAsType: {
8900
+ valueAsTypeSingle: {
7473
8901
  id: string;
7474
8902
  type: EntityType.GenericReference;
7475
8903
  entityType: EntityType.DefinitionEntity;
@@ -7485,6 +8913,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7485
8913
  entityType: EntityType.FunctionDeclaration;
7486
8914
  entityId: string;
7487
8915
  } | null;
8916
+ valueAsTypeList: ({
8917
+ id: string;
8918
+ type: EntityType.GenericReference;
8919
+ entityType: EntityType.DefinitionEntity;
8920
+ entityId: string;
8921
+ } | {
8922
+ id: string;
8923
+ type: EntityType.GenericReference;
8924
+ entityType: EntityType.Operation;
8925
+ entityId: string;
8926
+ } | {
8927
+ id: string;
8928
+ type: EntityType.GenericReference;
8929
+ entityType: EntityType.FunctionDeclaration;
8930
+ entityId: string;
8931
+ })[] | null;
7488
8932
  parent: {
7489
8933
  id: string;
7490
8934
  type: EntityType.GenericReference;
@@ -7509,7 +8953,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7509
8953
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
7510
8954
  type: z.ZodLiteral<EntityType.LiteralValue>;
7511
8955
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
7512
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
8956
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
8957
+ id: z.ZodString;
8958
+ type: z.ZodLiteral<EntityType.GenericReference>;
8959
+ entityId: z.ZodString;
8960
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
8961
+ }, "strip", z.ZodTypeAny, {
8962
+ id: string;
8963
+ type: EntityType.GenericReference;
8964
+ entityType: EntityType.DefinitionEntity;
8965
+ entityId: string;
8966
+ }, {
8967
+ id: string;
8968
+ type: EntityType.GenericReference;
8969
+ entityType: EntityType.DefinitionEntity;
8970
+ entityId: string;
8971
+ }>, z.ZodObject<{
8972
+ id: z.ZodString;
8973
+ type: z.ZodLiteral<EntityType.GenericReference>;
8974
+ entityId: z.ZodString;
8975
+ entityType: z.ZodLiteral<EntityType.Operation>;
8976
+ }, "strip", z.ZodTypeAny, {
8977
+ id: string;
8978
+ type: EntityType.GenericReference;
8979
+ entityType: EntityType.Operation;
8980
+ entityId: string;
8981
+ }, {
8982
+ id: string;
8983
+ type: EntityType.GenericReference;
8984
+ entityType: EntityType.Operation;
8985
+ entityId: string;
8986
+ }>, z.ZodObject<{
8987
+ id: z.ZodString;
8988
+ type: z.ZodLiteral<EntityType.GenericReference>;
8989
+ entityId: z.ZodString;
8990
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
8991
+ }, "strip", z.ZodTypeAny, {
8992
+ id: string;
8993
+ type: EntityType.GenericReference;
8994
+ entityType: EntityType.FunctionDeclaration;
8995
+ entityId: string;
8996
+ }, {
8997
+ id: string;
8998
+ type: EntityType.GenericReference;
8999
+ entityType: EntityType.FunctionDeclaration;
9000
+ entityId: string;
9001
+ }>]>, "many">>;
9002
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
7513
9003
  id: z.ZodString;
7514
9004
  type: z.ZodLiteral<EntityType.GenericReference>;
7515
9005
  entityId: z.ZodString;
@@ -7844,7 +9334,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7844
9334
  id: string;
7845
9335
  type: EntityType.LiteralValue;
7846
9336
  name: import("@src/definitions").PrimitiveTypes.Null;
7847
- valueAsType: {
9337
+ valueAsTypeSingle: {
7848
9338
  id: string;
7849
9339
  type: EntityType.GenericReference;
7850
9340
  entityType: EntityType.DefinitionEntity;
@@ -7860,6 +9350,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7860
9350
  entityType: EntityType.FunctionDeclaration;
7861
9351
  entityId: string;
7862
9352
  } | null;
9353
+ valueAsTypeList: ({
9354
+ id: string;
9355
+ type: EntityType.GenericReference;
9356
+ entityType: EntityType.DefinitionEntity;
9357
+ entityId: string;
9358
+ } | {
9359
+ id: string;
9360
+ type: EntityType.GenericReference;
9361
+ entityType: EntityType.Operation;
9362
+ entityId: string;
9363
+ } | {
9364
+ id: string;
9365
+ type: EntityType.GenericReference;
9366
+ entityType: EntityType.FunctionDeclaration;
9367
+ entityId: string;
9368
+ })[] | null;
7863
9369
  parent: {
7864
9370
  id: string;
7865
9371
  type: EntityType.GenericReference;
@@ -7878,7 +9384,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7878
9384
  id: string;
7879
9385
  type: EntityType.LiteralValue;
7880
9386
  name: import("@src/definitions").PrimitiveTypes.Null;
7881
- valueAsType: {
9387
+ valueAsTypeSingle: {
7882
9388
  id: string;
7883
9389
  type: EntityType.GenericReference;
7884
9390
  entityType: EntityType.DefinitionEntity;
@@ -7894,6 +9400,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7894
9400
  entityType: EntityType.FunctionDeclaration;
7895
9401
  entityId: string;
7896
9402
  } | null;
9403
+ valueAsTypeList: ({
9404
+ id: string;
9405
+ type: EntityType.GenericReference;
9406
+ entityType: EntityType.DefinitionEntity;
9407
+ entityId: string;
9408
+ } | {
9409
+ id: string;
9410
+ type: EntityType.GenericReference;
9411
+ entityType: EntityType.Operation;
9412
+ entityId: string;
9413
+ } | {
9414
+ id: string;
9415
+ type: EntityType.GenericReference;
9416
+ entityType: EntityType.FunctionDeclaration;
9417
+ entityId: string;
9418
+ })[] | null;
7897
9419
  parent: {
7898
9420
  id: string;
7899
9421
  type: EntityType.GenericReference;
@@ -7914,7 +9436,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
7914
9436
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
7915
9437
  type: z.ZodLiteral<EntityType.LiteralValue>;
7916
9438
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
7917
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
9439
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
9440
+ id: z.ZodString;
9441
+ type: z.ZodLiteral<EntityType.GenericReference>;
9442
+ entityId: z.ZodString;
9443
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
9444
+ }, "strip", z.ZodTypeAny, {
9445
+ id: string;
9446
+ type: EntityType.GenericReference;
9447
+ entityType: EntityType.DefinitionEntity;
9448
+ entityId: string;
9449
+ }, {
9450
+ id: string;
9451
+ type: EntityType.GenericReference;
9452
+ entityType: EntityType.DefinitionEntity;
9453
+ entityId: string;
9454
+ }>, z.ZodObject<{
9455
+ id: z.ZodString;
9456
+ type: z.ZodLiteral<EntityType.GenericReference>;
9457
+ entityId: z.ZodString;
9458
+ entityType: z.ZodLiteral<EntityType.Operation>;
9459
+ }, "strip", z.ZodTypeAny, {
9460
+ id: string;
9461
+ type: EntityType.GenericReference;
9462
+ entityType: EntityType.Operation;
9463
+ entityId: string;
9464
+ }, {
9465
+ id: string;
9466
+ type: EntityType.GenericReference;
9467
+ entityType: EntityType.Operation;
9468
+ entityId: string;
9469
+ }>, z.ZodObject<{
9470
+ id: z.ZodString;
9471
+ type: z.ZodLiteral<EntityType.GenericReference>;
9472
+ entityId: z.ZodString;
9473
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
9474
+ }, "strip", z.ZodTypeAny, {
9475
+ id: string;
9476
+ type: EntityType.GenericReference;
9477
+ entityType: EntityType.FunctionDeclaration;
9478
+ entityId: string;
9479
+ }, {
9480
+ id: string;
9481
+ type: EntityType.GenericReference;
9482
+ entityType: EntityType.FunctionDeclaration;
9483
+ entityId: string;
9484
+ }>]>, "many">>;
9485
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
7918
9486
  id: z.ZodString;
7919
9487
  type: z.ZodLiteral<EntityType.GenericReference>;
7920
9488
  entityId: z.ZodString;
@@ -8331,7 +9899,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8331
9899
  id: string;
8332
9900
  type: EntityType.LiteralValue;
8333
9901
  name: import("@src/definitions").PrimitiveTypes.Date;
8334
- valueAsType: {
9902
+ valueAsTypeSingle: {
8335
9903
  id: string;
8336
9904
  type: EntityType.GenericReference;
8337
9905
  entityType: EntityType.DefinitionEntity;
@@ -8347,6 +9915,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8347
9915
  entityType: EntityType.FunctionDeclaration;
8348
9916
  entityId: string;
8349
9917
  } | null;
9918
+ valueAsTypeList: ({
9919
+ id: string;
9920
+ type: EntityType.GenericReference;
9921
+ entityType: EntityType.DefinitionEntity;
9922
+ entityId: string;
9923
+ } | {
9924
+ id: string;
9925
+ type: EntityType.GenericReference;
9926
+ entityType: EntityType.Operation;
9927
+ entityId: string;
9928
+ } | {
9929
+ id: string;
9930
+ type: EntityType.GenericReference;
9931
+ entityType: EntityType.FunctionDeclaration;
9932
+ entityId: string;
9933
+ })[] | null;
8350
9934
  parent: {
8351
9935
  id: string;
8352
9936
  type: EntityType.GenericReference;
@@ -8381,7 +9965,23 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8381
9965
  id: string;
8382
9966
  type: EntityType.LiteralValue;
8383
9967
  name: import("@src/definitions").PrimitiveTypes.Date;
8384
- valueAsType: {
9968
+ valueAsTypeSingle: {
9969
+ id: string;
9970
+ type: EntityType.GenericReference;
9971
+ entityType: EntityType.DefinitionEntity;
9972
+ entityId: string;
9973
+ } | {
9974
+ id: string;
9975
+ type: EntityType.GenericReference;
9976
+ entityType: EntityType.Operation;
9977
+ entityId: string;
9978
+ } | {
9979
+ id: string;
9980
+ type: EntityType.GenericReference;
9981
+ entityType: EntityType.FunctionDeclaration;
9982
+ entityId: string;
9983
+ } | null;
9984
+ valueAsTypeList: ({
8385
9985
  id: string;
8386
9986
  type: EntityType.GenericReference;
8387
9987
  entityType: EntityType.DefinitionEntity;
@@ -8396,44 +9996,90 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8396
9996
  type: EntityType.GenericReference;
8397
9997
  entityType: EntityType.FunctionDeclaration;
8398
9998
  entityId: string;
8399
- } | null;
8400
- parent: {
8401
- id: string;
8402
- type: EntityType.GenericReference;
8403
- entityType: EntityType.InputMap;
8404
- entityId: string;
8405
- } | {
9999
+ })[] | null;
10000
+ parent: {
10001
+ id: string;
10002
+ type: EntityType.GenericReference;
10003
+ entityType: EntityType.InputMap;
10004
+ entityId: string;
10005
+ } | {
10006
+ id: string;
10007
+ type: EntityType.GenericReference;
10008
+ entityType: EntityType.DataType;
10009
+ entityId: string;
10010
+ };
10011
+ version: number;
10012
+ autogeneration: {
10013
+ type: import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime;
10014
+ rangeStart: null;
10015
+ rangeEnd: null;
10016
+ } | {
10017
+ type: import("@src/definitions").ValueAutogenerationType.Random;
10018
+ rangeStart: Date;
10019
+ rangeEnd: null;
10020
+ } | {
10021
+ type: import("@src/definitions").ValueAutogenerationType.Random;
10022
+ rangeStart: null;
10023
+ rangeEnd: Date;
10024
+ } | {
10025
+ type: import("@src/definitions").ValueAutogenerationType.Random;
10026
+ rangeStart: Date;
10027
+ rangeEnd: Date;
10028
+ } | null;
10029
+ value: Date;
10030
+ }>, z.ZodObject<z.objectUtil.extendShape<{
10031
+ id: z.ZodString;
10032
+ version: z.ZodNumber;
10033
+ name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
10034
+ type: z.ZodLiteral<EntityType.LiteralValue>;
10035
+ value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
10036
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
10037
+ id: z.ZodString;
10038
+ type: z.ZodLiteral<EntityType.GenericReference>;
10039
+ entityId: z.ZodString;
10040
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
10041
+ }, "strip", z.ZodTypeAny, {
10042
+ id: string;
10043
+ type: EntityType.GenericReference;
10044
+ entityType: EntityType.DefinitionEntity;
10045
+ entityId: string;
10046
+ }, {
10047
+ id: string;
10048
+ type: EntityType.GenericReference;
10049
+ entityType: EntityType.DefinitionEntity;
10050
+ entityId: string;
10051
+ }>, z.ZodObject<{
10052
+ id: z.ZodString;
10053
+ type: z.ZodLiteral<EntityType.GenericReference>;
10054
+ entityId: z.ZodString;
10055
+ entityType: z.ZodLiteral<EntityType.Operation>;
10056
+ }, "strip", z.ZodTypeAny, {
10057
+ id: string;
10058
+ type: EntityType.GenericReference;
10059
+ entityType: EntityType.Operation;
10060
+ entityId: string;
10061
+ }, {
10062
+ id: string;
10063
+ type: EntityType.GenericReference;
10064
+ entityType: EntityType.Operation;
10065
+ entityId: string;
10066
+ }>, z.ZodObject<{
10067
+ id: z.ZodString;
10068
+ type: z.ZodLiteral<EntityType.GenericReference>;
10069
+ entityId: z.ZodString;
10070
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
10071
+ }, "strip", z.ZodTypeAny, {
10072
+ id: string;
10073
+ type: EntityType.GenericReference;
10074
+ entityType: EntityType.FunctionDeclaration;
10075
+ entityId: string;
10076
+ }, {
8406
10077
  id: string;
8407
10078
  type: EntityType.GenericReference;
8408
- entityType: EntityType.DataType;
10079
+ entityType: EntityType.FunctionDeclaration;
8409
10080
  entityId: string;
8410
- };
8411
- version: number;
8412
- autogeneration: {
8413
- type: import("@src/definitions").ValueAutogenerationType.CurrentDateAndTime;
8414
- rangeStart: null;
8415
- rangeEnd: null;
8416
- } | {
8417
- type: import("@src/definitions").ValueAutogenerationType.Random;
8418
- rangeStart: Date;
8419
- rangeEnd: null;
8420
- } | {
8421
- type: import("@src/definitions").ValueAutogenerationType.Random;
8422
- rangeStart: null;
8423
- rangeEnd: Date;
8424
- } | {
8425
- type: import("@src/definitions").ValueAutogenerationType.Random;
8426
- rangeStart: Date;
8427
- rangeEnd: Date;
8428
- } | null;
8429
- value: Date;
8430
- }>, z.ZodObject<z.objectUtil.extendShape<{
8431
- id: z.ZodString;
8432
- version: z.ZodNumber;
8433
- name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
8434
- type: z.ZodLiteral<EntityType.LiteralValue>;
8435
- value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
8436
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
10081
+ }>]>, "many">>;
10082
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
8437
10083
  id: z.ZodString;
8438
10084
  type: z.ZodLiteral<EntityType.GenericReference>;
8439
10085
  entityId: z.ZodString;
@@ -8768,7 +10414,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8768
10414
  id: string;
8769
10415
  type: EntityType.LiteralValue;
8770
10416
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
8771
- valueAsType: {
10417
+ valueAsTypeSingle: {
8772
10418
  id: string;
8773
10419
  type: EntityType.GenericReference;
8774
10420
  entityType: EntityType.DefinitionEntity;
@@ -8784,6 +10430,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8784
10430
  entityType: EntityType.FunctionDeclaration;
8785
10431
  entityId: string;
8786
10432
  } | null;
10433
+ valueAsTypeList: ({
10434
+ id: string;
10435
+ type: EntityType.GenericReference;
10436
+ entityType: EntityType.DefinitionEntity;
10437
+ entityId: string;
10438
+ } | {
10439
+ id: string;
10440
+ type: EntityType.GenericReference;
10441
+ entityType: EntityType.Operation;
10442
+ entityId: string;
10443
+ } | {
10444
+ id: string;
10445
+ type: EntityType.GenericReference;
10446
+ entityType: EntityType.FunctionDeclaration;
10447
+ entityId: string;
10448
+ })[] | null;
8787
10449
  parent: {
8788
10450
  id: string;
8789
10451
  type: EntityType.GenericReference;
@@ -8802,7 +10464,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8802
10464
  id: string;
8803
10465
  type: EntityType.LiteralValue;
8804
10466
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
8805
- valueAsType: {
10467
+ valueAsTypeSingle: {
8806
10468
  id: string;
8807
10469
  type: EntityType.GenericReference;
8808
10470
  entityType: EntityType.DefinitionEntity;
@@ -8818,6 +10480,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8818
10480
  entityType: EntityType.FunctionDeclaration;
8819
10481
  entityId: string;
8820
10482
  } | null;
10483
+ valueAsTypeList: ({
10484
+ id: string;
10485
+ type: EntityType.GenericReference;
10486
+ entityType: EntityType.DefinitionEntity;
10487
+ entityId: string;
10488
+ } | {
10489
+ id: string;
10490
+ type: EntityType.GenericReference;
10491
+ entityType: EntityType.Operation;
10492
+ entityId: string;
10493
+ } | {
10494
+ id: string;
10495
+ type: EntityType.GenericReference;
10496
+ entityType: EntityType.FunctionDeclaration;
10497
+ entityId: string;
10498
+ })[] | null;
8821
10499
  parent: {
8822
10500
  id: string;
8823
10501
  type: EntityType.GenericReference;
@@ -8838,7 +10516,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
8838
10516
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
8839
10517
  type: z.ZodLiteral<EntityType.LiteralValue>;
8840
10518
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
8841
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
10519
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
10520
+ id: z.ZodString;
10521
+ type: z.ZodLiteral<EntityType.GenericReference>;
10522
+ entityId: z.ZodString;
10523
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
10524
+ }, "strip", z.ZodTypeAny, {
10525
+ id: string;
10526
+ type: EntityType.GenericReference;
10527
+ entityType: EntityType.DefinitionEntity;
10528
+ entityId: string;
10529
+ }, {
10530
+ id: string;
10531
+ type: EntityType.GenericReference;
10532
+ entityType: EntityType.DefinitionEntity;
10533
+ entityId: string;
10534
+ }>, z.ZodObject<{
10535
+ id: z.ZodString;
10536
+ type: z.ZodLiteral<EntityType.GenericReference>;
10537
+ entityId: z.ZodString;
10538
+ entityType: z.ZodLiteral<EntityType.Operation>;
10539
+ }, "strip", z.ZodTypeAny, {
10540
+ id: string;
10541
+ type: EntityType.GenericReference;
10542
+ entityType: EntityType.Operation;
10543
+ entityId: string;
10544
+ }, {
10545
+ id: string;
10546
+ type: EntityType.GenericReference;
10547
+ entityType: EntityType.Operation;
10548
+ entityId: string;
10549
+ }>, z.ZodObject<{
10550
+ id: z.ZodString;
10551
+ type: z.ZodLiteral<EntityType.GenericReference>;
10552
+ entityId: z.ZodString;
10553
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
10554
+ }, "strip", z.ZodTypeAny, {
10555
+ id: string;
10556
+ type: EntityType.GenericReference;
10557
+ entityType: EntityType.FunctionDeclaration;
10558
+ entityId: string;
10559
+ }, {
10560
+ id: string;
10561
+ type: EntityType.GenericReference;
10562
+ entityType: EntityType.FunctionDeclaration;
10563
+ entityId: string;
10564
+ }>]>, "many">>;
10565
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
8842
10566
  id: z.ZodString;
8843
10567
  type: z.ZodLiteral<EntityType.GenericReference>;
8844
10568
  entityId: z.ZodString;
@@ -9173,7 +10897,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9173
10897
  id: string;
9174
10898
  type: EntityType.LiteralValue;
9175
10899
  name: import("@src/definitions").PrimitiveTypes.Enum;
9176
- valueAsType: {
10900
+ valueAsTypeSingle: {
9177
10901
  id: string;
9178
10902
  type: EntityType.GenericReference;
9179
10903
  entityType: EntityType.DefinitionEntity;
@@ -9189,6 +10913,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9189
10913
  entityType: EntityType.FunctionDeclaration;
9190
10914
  entityId: string;
9191
10915
  } | null;
10916
+ valueAsTypeList: ({
10917
+ id: string;
10918
+ type: EntityType.GenericReference;
10919
+ entityType: EntityType.DefinitionEntity;
10920
+ entityId: string;
10921
+ } | {
10922
+ id: string;
10923
+ type: EntityType.GenericReference;
10924
+ entityType: EntityType.Operation;
10925
+ entityId: string;
10926
+ } | {
10927
+ id: string;
10928
+ type: EntityType.GenericReference;
10929
+ entityType: EntityType.FunctionDeclaration;
10930
+ entityId: string;
10931
+ })[] | null;
9192
10932
  parent: {
9193
10933
  id: string;
9194
10934
  type: EntityType.GenericReference;
@@ -9207,7 +10947,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9207
10947
  id: string;
9208
10948
  type: EntityType.LiteralValue;
9209
10949
  name: import("@src/definitions").PrimitiveTypes.Enum;
9210
- valueAsType: {
10950
+ valueAsTypeSingle: {
9211
10951
  id: string;
9212
10952
  type: EntityType.GenericReference;
9213
10953
  entityType: EntityType.DefinitionEntity;
@@ -9223,6 +10963,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9223
10963
  entityType: EntityType.FunctionDeclaration;
9224
10964
  entityId: string;
9225
10965
  } | null;
10966
+ valueAsTypeList: ({
10967
+ id: string;
10968
+ type: EntityType.GenericReference;
10969
+ entityType: EntityType.DefinitionEntity;
10970
+ entityId: string;
10971
+ } | {
10972
+ id: string;
10973
+ type: EntityType.GenericReference;
10974
+ entityType: EntityType.Operation;
10975
+ entityId: string;
10976
+ } | {
10977
+ id: string;
10978
+ type: EntityType.GenericReference;
10979
+ entityType: EntityType.FunctionDeclaration;
10980
+ entityId: string;
10981
+ })[] | null;
9226
10982
  parent: {
9227
10983
  id: string;
9228
10984
  type: EntityType.GenericReference;
@@ -9243,7 +10999,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9243
10999
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
9244
11000
  type: z.ZodLiteral<EntityType.LiteralValue>;
9245
11001
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
9246
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
11002
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
11003
+ id: z.ZodString;
11004
+ type: z.ZodLiteral<EntityType.GenericReference>;
11005
+ entityId: z.ZodString;
11006
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
11007
+ }, "strip", z.ZodTypeAny, {
11008
+ id: string;
11009
+ type: EntityType.GenericReference;
11010
+ entityType: EntityType.DefinitionEntity;
11011
+ entityId: string;
11012
+ }, {
11013
+ id: string;
11014
+ type: EntityType.GenericReference;
11015
+ entityType: EntityType.DefinitionEntity;
11016
+ entityId: string;
11017
+ }>, z.ZodObject<{
11018
+ id: z.ZodString;
11019
+ type: z.ZodLiteral<EntityType.GenericReference>;
11020
+ entityId: z.ZodString;
11021
+ entityType: z.ZodLiteral<EntityType.Operation>;
11022
+ }, "strip", z.ZodTypeAny, {
11023
+ id: string;
11024
+ type: EntityType.GenericReference;
11025
+ entityType: EntityType.Operation;
11026
+ entityId: string;
11027
+ }, {
11028
+ id: string;
11029
+ type: EntityType.GenericReference;
11030
+ entityType: EntityType.Operation;
11031
+ entityId: string;
11032
+ }>, z.ZodObject<{
11033
+ id: z.ZodString;
11034
+ type: z.ZodLiteral<EntityType.GenericReference>;
11035
+ entityId: z.ZodString;
11036
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
11037
+ }, "strip", z.ZodTypeAny, {
11038
+ id: string;
11039
+ type: EntityType.GenericReference;
11040
+ entityType: EntityType.FunctionDeclaration;
11041
+ entityId: string;
11042
+ }, {
11043
+ id: string;
11044
+ type: EntityType.GenericReference;
11045
+ entityType: EntityType.FunctionDeclaration;
11046
+ entityId: string;
11047
+ }>]>, "many">>;
11048
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
9247
11049
  id: z.ZodString;
9248
11050
  type: z.ZodLiteral<EntityType.GenericReference>;
9249
11051
  entityId: z.ZodString;
@@ -9578,7 +11380,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9578
11380
  id: string;
9579
11381
  type: EntityType.LiteralValue;
9580
11382
  name: import("@src/definitions").PrimitiveTypes.File;
9581
- valueAsType: {
11383
+ valueAsTypeSingle: {
9582
11384
  id: string;
9583
11385
  type: EntityType.GenericReference;
9584
11386
  entityType: EntityType.DefinitionEntity;
@@ -9594,6 +11396,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9594
11396
  entityType: EntityType.FunctionDeclaration;
9595
11397
  entityId: string;
9596
11398
  } | null;
11399
+ valueAsTypeList: ({
11400
+ id: string;
11401
+ type: EntityType.GenericReference;
11402
+ entityType: EntityType.DefinitionEntity;
11403
+ entityId: string;
11404
+ } | {
11405
+ id: string;
11406
+ type: EntityType.GenericReference;
11407
+ entityType: EntityType.Operation;
11408
+ entityId: string;
11409
+ } | {
11410
+ id: string;
11411
+ type: EntityType.GenericReference;
11412
+ entityType: EntityType.FunctionDeclaration;
11413
+ entityId: string;
11414
+ })[] | null;
9597
11415
  parent: {
9598
11416
  id: string;
9599
11417
  type: EntityType.GenericReference;
@@ -9612,7 +11430,23 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9612
11430
  id: string;
9613
11431
  type: EntityType.LiteralValue;
9614
11432
  name: import("@src/definitions").PrimitiveTypes.File;
9615
- valueAsType: {
11433
+ valueAsTypeSingle: {
11434
+ id: string;
11435
+ type: EntityType.GenericReference;
11436
+ entityType: EntityType.DefinitionEntity;
11437
+ entityId: string;
11438
+ } | {
11439
+ id: string;
11440
+ type: EntityType.GenericReference;
11441
+ entityType: EntityType.Operation;
11442
+ entityId: string;
11443
+ } | {
11444
+ id: string;
11445
+ type: EntityType.GenericReference;
11446
+ entityType: EntityType.FunctionDeclaration;
11447
+ entityId: string;
11448
+ } | null;
11449
+ valueAsTypeList: ({
9616
11450
  id: string;
9617
11451
  type: EntityType.GenericReference;
9618
11452
  entityType: EntityType.DefinitionEntity;
@@ -9622,33 +11456,79 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9622
11456
  type: EntityType.GenericReference;
9623
11457
  entityType: EntityType.Operation;
9624
11458
  entityId: string;
9625
- } | {
11459
+ } | {
11460
+ id: string;
11461
+ type: EntityType.GenericReference;
11462
+ entityType: EntityType.FunctionDeclaration;
11463
+ entityId: string;
11464
+ })[] | null;
11465
+ parent: {
11466
+ id: string;
11467
+ type: EntityType.GenericReference;
11468
+ entityType: EntityType.InputMap;
11469
+ entityId: string;
11470
+ } | {
11471
+ id: string;
11472
+ type: EntityType.GenericReference;
11473
+ entityType: EntityType.DataType;
11474
+ entityId: string;
11475
+ };
11476
+ version: number;
11477
+ autogeneration: null;
11478
+ value: string;
11479
+ }>, z.ZodObject<z.objectUtil.extendShape<{
11480
+ id: z.ZodString;
11481
+ version: z.ZodNumber;
11482
+ name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
11483
+ type: z.ZodLiteral<EntityType.LiteralValue>;
11484
+ value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
11485
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
11486
+ id: z.ZodString;
11487
+ type: z.ZodLiteral<EntityType.GenericReference>;
11488
+ entityId: z.ZodString;
11489
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
11490
+ }, "strip", z.ZodTypeAny, {
11491
+ id: string;
11492
+ type: EntityType.GenericReference;
11493
+ entityType: EntityType.DefinitionEntity;
11494
+ entityId: string;
11495
+ }, {
11496
+ id: string;
11497
+ type: EntityType.GenericReference;
11498
+ entityType: EntityType.DefinitionEntity;
11499
+ entityId: string;
11500
+ }>, z.ZodObject<{
11501
+ id: z.ZodString;
11502
+ type: z.ZodLiteral<EntityType.GenericReference>;
11503
+ entityId: z.ZodString;
11504
+ entityType: z.ZodLiteral<EntityType.Operation>;
11505
+ }, "strip", z.ZodTypeAny, {
11506
+ id: string;
11507
+ type: EntityType.GenericReference;
11508
+ entityType: EntityType.Operation;
11509
+ entityId: string;
11510
+ }, {
9626
11511
  id: string;
9627
11512
  type: EntityType.GenericReference;
9628
- entityType: EntityType.FunctionDeclaration;
11513
+ entityType: EntityType.Operation;
9629
11514
  entityId: string;
9630
- } | null;
9631
- parent: {
11515
+ }>, z.ZodObject<{
11516
+ id: z.ZodString;
11517
+ type: z.ZodLiteral<EntityType.GenericReference>;
11518
+ entityId: z.ZodString;
11519
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
11520
+ }, "strip", z.ZodTypeAny, {
9632
11521
  id: string;
9633
11522
  type: EntityType.GenericReference;
9634
- entityType: EntityType.InputMap;
11523
+ entityType: EntityType.FunctionDeclaration;
9635
11524
  entityId: string;
9636
- } | {
11525
+ }, {
9637
11526
  id: string;
9638
11527
  type: EntityType.GenericReference;
9639
- entityType: EntityType.DataType;
11528
+ entityType: EntityType.FunctionDeclaration;
9640
11529
  entityId: string;
9641
- };
9642
- version: number;
9643
- autogeneration: null;
9644
- value: string;
9645
- }>, z.ZodObject<z.objectUtil.extendShape<{
9646
- id: z.ZodString;
9647
- version: z.ZodNumber;
9648
- name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
9649
- type: z.ZodLiteral<EntityType.LiteralValue>;
9650
- value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
9651
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
11530
+ }>]>, "many">>;
11531
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
9652
11532
  id: z.ZodString;
9653
11533
  type: z.ZodLiteral<EntityType.GenericReference>;
9654
11534
  entityId: z.ZodString;
@@ -9999,7 +11879,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
9999
11879
  id: string;
10000
11880
  type: EntityType.LiteralValue;
10001
11881
  name: import("@src/definitions").PrimitiveTypes.UUID;
10002
- valueAsType: {
11882
+ valueAsTypeSingle: {
10003
11883
  id: string;
10004
11884
  type: EntityType.GenericReference;
10005
11885
  entityType: EntityType.DefinitionEntity;
@@ -10015,6 +11895,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10015
11895
  entityType: EntityType.FunctionDeclaration;
10016
11896
  entityId: string;
10017
11897
  } | null;
11898
+ valueAsTypeList: ({
11899
+ id: string;
11900
+ type: EntityType.GenericReference;
11901
+ entityType: EntityType.DefinitionEntity;
11902
+ entityId: string;
11903
+ } | {
11904
+ id: string;
11905
+ type: EntityType.GenericReference;
11906
+ entityType: EntityType.Operation;
11907
+ entityId: string;
11908
+ } | {
11909
+ id: string;
11910
+ type: EntityType.GenericReference;
11911
+ entityType: EntityType.FunctionDeclaration;
11912
+ entityId: string;
11913
+ })[] | null;
10018
11914
  parent: {
10019
11915
  id: string;
10020
11916
  type: EntityType.GenericReference;
@@ -10037,7 +11933,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10037
11933
  id: string;
10038
11934
  type: EntityType.LiteralValue;
10039
11935
  name: import("@src/definitions").PrimitiveTypes.UUID;
10040
- valueAsType: {
11936
+ valueAsTypeSingle: {
10041
11937
  id: string;
10042
11938
  type: EntityType.GenericReference;
10043
11939
  entityType: EntityType.DefinitionEntity;
@@ -10053,6 +11949,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10053
11949
  entityType: EntityType.FunctionDeclaration;
10054
11950
  entityId: string;
10055
11951
  } | null;
11952
+ valueAsTypeList: ({
11953
+ id: string;
11954
+ type: EntityType.GenericReference;
11955
+ entityType: EntityType.DefinitionEntity;
11956
+ entityId: string;
11957
+ } | {
11958
+ id: string;
11959
+ type: EntityType.GenericReference;
11960
+ entityType: EntityType.Operation;
11961
+ entityId: string;
11962
+ } | {
11963
+ id: string;
11964
+ type: EntityType.GenericReference;
11965
+ entityType: EntityType.FunctionDeclaration;
11966
+ entityId: string;
11967
+ })[] | null;
10056
11968
  parent: {
10057
11969
  id: string;
10058
11970
  type: EntityType.GenericReference;
@@ -10077,7 +11989,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10077
11989
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
10078
11990
  type: z.ZodLiteral<EntityType.LiteralValue>;
10079
11991
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
10080
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
11992
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
11993
+ id: z.ZodString;
11994
+ type: z.ZodLiteral<EntityType.GenericReference>;
11995
+ entityId: z.ZodString;
11996
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
11997
+ }, "strip", z.ZodTypeAny, {
11998
+ id: string;
11999
+ type: EntityType.GenericReference;
12000
+ entityType: EntityType.DefinitionEntity;
12001
+ entityId: string;
12002
+ }, {
12003
+ id: string;
12004
+ type: EntityType.GenericReference;
12005
+ entityType: EntityType.DefinitionEntity;
12006
+ entityId: string;
12007
+ }>, z.ZodObject<{
12008
+ id: z.ZodString;
12009
+ type: z.ZodLiteral<EntityType.GenericReference>;
12010
+ entityId: z.ZodString;
12011
+ entityType: z.ZodLiteral<EntityType.Operation>;
12012
+ }, "strip", z.ZodTypeAny, {
12013
+ id: string;
12014
+ type: EntityType.GenericReference;
12015
+ entityType: EntityType.Operation;
12016
+ entityId: string;
12017
+ }, {
12018
+ id: string;
12019
+ type: EntityType.GenericReference;
12020
+ entityType: EntityType.Operation;
12021
+ entityId: string;
12022
+ }>, z.ZodObject<{
12023
+ id: z.ZodString;
12024
+ type: z.ZodLiteral<EntityType.GenericReference>;
12025
+ entityId: z.ZodString;
12026
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
12027
+ }, "strip", z.ZodTypeAny, {
12028
+ id: string;
12029
+ type: EntityType.GenericReference;
12030
+ entityType: EntityType.FunctionDeclaration;
12031
+ entityId: string;
12032
+ }, {
12033
+ id: string;
12034
+ type: EntityType.GenericReference;
12035
+ entityType: EntityType.FunctionDeclaration;
12036
+ entityId: string;
12037
+ }>]>, "many">>;
12038
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
10081
12039
  id: z.ZodString;
10082
12040
  type: z.ZodLiteral<EntityType.GenericReference>;
10083
12041
  entityId: z.ZodString;
@@ -10427,7 +12385,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10427
12385
  id: string;
10428
12386
  type: EntityType.LiteralValue;
10429
12387
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
10430
- valueAsType: {
12388
+ valueAsTypeSingle: {
10431
12389
  id: string;
10432
12390
  type: EntityType.GenericReference;
10433
12391
  entityType: EntityType.DefinitionEntity;
@@ -10443,6 +12401,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10443
12401
  entityType: EntityType.FunctionDeclaration;
10444
12402
  entityId: string;
10445
12403
  } | null;
12404
+ valueAsTypeList: ({
12405
+ id: string;
12406
+ type: EntityType.GenericReference;
12407
+ entityType: EntityType.DefinitionEntity;
12408
+ entityId: string;
12409
+ } | {
12410
+ id: string;
12411
+ type: EntityType.GenericReference;
12412
+ entityType: EntityType.Operation;
12413
+ entityId: string;
12414
+ } | {
12415
+ id: string;
12416
+ type: EntityType.GenericReference;
12417
+ entityType: EntityType.FunctionDeclaration;
12418
+ entityId: string;
12419
+ })[] | null;
10446
12420
  parent: {
10447
12421
  id: string;
10448
12422
  type: EntityType.GenericReference;
@@ -10466,7 +12440,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10466
12440
  id: string;
10467
12441
  type: EntityType.LiteralValue;
10468
12442
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
10469
- valueAsType: {
12443
+ valueAsTypeSingle: {
10470
12444
  id: string;
10471
12445
  type: EntityType.GenericReference;
10472
12446
  entityType: EntityType.DefinitionEntity;
@@ -10482,6 +12456,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10482
12456
  entityType: EntityType.FunctionDeclaration;
10483
12457
  entityId: string;
10484
12458
  } | null;
12459
+ valueAsTypeList: ({
12460
+ id: string;
12461
+ type: EntityType.GenericReference;
12462
+ entityType: EntityType.DefinitionEntity;
12463
+ entityId: string;
12464
+ } | {
12465
+ id: string;
12466
+ type: EntityType.GenericReference;
12467
+ entityType: EntityType.Operation;
12468
+ entityId: string;
12469
+ } | {
12470
+ id: string;
12471
+ type: EntityType.GenericReference;
12472
+ entityType: EntityType.FunctionDeclaration;
12473
+ entityId: string;
12474
+ })[] | null;
10485
12475
  parent: {
10486
12476
  id: string;
10487
12477
  type: EntityType.GenericReference;
@@ -10507,7 +12497,53 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10507
12497
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
10508
12498
  type: z.ZodLiteral<EntityType.LiteralValue>;
10509
12499
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
10510
- valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
12500
+ valueAsTypeList: z.ZodNullable<z.ZodArray<z.ZodUnion<[z.ZodObject<{
12501
+ id: z.ZodString;
12502
+ type: z.ZodLiteral<EntityType.GenericReference>;
12503
+ entityId: z.ZodString;
12504
+ entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
12505
+ }, "strip", z.ZodTypeAny, {
12506
+ id: string;
12507
+ type: EntityType.GenericReference;
12508
+ entityType: EntityType.DefinitionEntity;
12509
+ entityId: string;
12510
+ }, {
12511
+ id: string;
12512
+ type: EntityType.GenericReference;
12513
+ entityType: EntityType.DefinitionEntity;
12514
+ entityId: string;
12515
+ }>, z.ZodObject<{
12516
+ id: z.ZodString;
12517
+ type: z.ZodLiteral<EntityType.GenericReference>;
12518
+ entityId: z.ZodString;
12519
+ entityType: z.ZodLiteral<EntityType.Operation>;
12520
+ }, "strip", z.ZodTypeAny, {
12521
+ id: string;
12522
+ type: EntityType.GenericReference;
12523
+ entityType: EntityType.Operation;
12524
+ entityId: string;
12525
+ }, {
12526
+ id: string;
12527
+ type: EntityType.GenericReference;
12528
+ entityType: EntityType.Operation;
12529
+ entityId: string;
12530
+ }>, z.ZodObject<{
12531
+ id: z.ZodString;
12532
+ type: z.ZodLiteral<EntityType.GenericReference>;
12533
+ entityId: z.ZodString;
12534
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
12535
+ }, "strip", z.ZodTypeAny, {
12536
+ id: string;
12537
+ type: EntityType.GenericReference;
12538
+ entityType: EntityType.FunctionDeclaration;
12539
+ entityId: string;
12540
+ }, {
12541
+ id: string;
12542
+ type: EntityType.GenericReference;
12543
+ entityType: EntityType.FunctionDeclaration;
12544
+ entityId: string;
12545
+ }>]>, "many">>;
12546
+ valueAsTypeSingle: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
10511
12547
  id: z.ZodString;
10512
12548
  type: z.ZodLiteral<EntityType.GenericReference>;
10513
12549
  entityId: z.ZodString;
@@ -10857,7 +12893,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10857
12893
  id: string;
10858
12894
  type: EntityType.LiteralValue;
10859
12895
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
10860
- valueAsType: {
12896
+ valueAsTypeSingle: {
10861
12897
  id: string;
10862
12898
  type: EntityType.GenericReference;
10863
12899
  entityType: EntityType.DefinitionEntity;
@@ -10873,6 +12909,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10873
12909
  entityType: EntityType.FunctionDeclaration;
10874
12910
  entityId: string;
10875
12911
  } | null;
12912
+ valueAsTypeList: ({
12913
+ id: string;
12914
+ type: EntityType.GenericReference;
12915
+ entityType: EntityType.DefinitionEntity;
12916
+ entityId: string;
12917
+ } | {
12918
+ id: string;
12919
+ type: EntityType.GenericReference;
12920
+ entityType: EntityType.Operation;
12921
+ entityId: string;
12922
+ } | {
12923
+ id: string;
12924
+ type: EntityType.GenericReference;
12925
+ entityType: EntityType.FunctionDeclaration;
12926
+ entityId: string;
12927
+ })[] | null;
10876
12928
  parent: {
10877
12929
  id: string;
10878
12930
  type: EntityType.GenericReference;
@@ -10896,7 +12948,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10896
12948
  id: string;
10897
12949
  type: EntityType.LiteralValue;
10898
12950
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
10899
- valueAsType: {
12951
+ valueAsTypeSingle: {
10900
12952
  id: string;
10901
12953
  type: EntityType.GenericReference;
10902
12954
  entityType: EntityType.DefinitionEntity;
@@ -10912,6 +12964,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
10912
12964
  entityType: EntityType.FunctionDeclaration;
10913
12965
  entityId: string;
10914
12966
  } | null;
12967
+ valueAsTypeList: ({
12968
+ id: string;
12969
+ type: EntityType.GenericReference;
12970
+ entityType: EntityType.DefinitionEntity;
12971
+ entityId: string;
12972
+ } | {
12973
+ id: string;
12974
+ type: EntityType.GenericReference;
12975
+ entityType: EntityType.Operation;
12976
+ entityId: string;
12977
+ } | {
12978
+ id: string;
12979
+ type: EntityType.GenericReference;
12980
+ entityType: EntityType.FunctionDeclaration;
12981
+ entityId: string;
12982
+ })[] | null;
10915
12983
  parent: {
10916
12984
  id: string;
10917
12985
  type: EntityType.GenericReference;
@@ -11137,7 +13205,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11137
13205
  id: string;
11138
13206
  type: EntityType.LiteralValue;
11139
13207
  name: import("@src/definitions").PrimitiveTypes.String;
11140
- valueAsType: {
13208
+ valueAsTypeSingle: {
11141
13209
  id: string;
11142
13210
  type: EntityType.GenericReference;
11143
13211
  entityType: EntityType.DefinitionEntity;
@@ -11153,6 +13221,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11153
13221
  entityType: EntityType.FunctionDeclaration;
11154
13222
  entityId: string;
11155
13223
  } | null;
13224
+ valueAsTypeList: ({
13225
+ id: string;
13226
+ type: EntityType.GenericReference;
13227
+ entityType: EntityType.DefinitionEntity;
13228
+ entityId: string;
13229
+ } | {
13230
+ id: string;
13231
+ type: EntityType.GenericReference;
13232
+ entityType: EntityType.Operation;
13233
+ entityId: string;
13234
+ } | {
13235
+ id: string;
13236
+ type: EntityType.GenericReference;
13237
+ entityType: EntityType.FunctionDeclaration;
13238
+ entityId: string;
13239
+ })[] | null;
11156
13240
  parent: {
11157
13241
  id: string;
11158
13242
  type: EntityType.GenericReference;
@@ -11183,7 +13267,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11183
13267
  id: string;
11184
13268
  type: EntityType.LiteralValue;
11185
13269
  name: import("@src/definitions").PrimitiveTypes.Number;
11186
- valueAsType: {
13270
+ valueAsTypeSingle: {
11187
13271
  id: string;
11188
13272
  type: EntityType.GenericReference;
11189
13273
  entityType: EntityType.DefinitionEntity;
@@ -11199,6 +13283,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11199
13283
  entityType: EntityType.FunctionDeclaration;
11200
13284
  entityId: string;
11201
13285
  } | null;
13286
+ valueAsTypeList: ({
13287
+ id: string;
13288
+ type: EntityType.GenericReference;
13289
+ entityType: EntityType.DefinitionEntity;
13290
+ entityId: string;
13291
+ } | {
13292
+ id: string;
13293
+ type: EntityType.GenericReference;
13294
+ entityType: EntityType.Operation;
13295
+ entityId: string;
13296
+ } | {
13297
+ id: string;
13298
+ type: EntityType.GenericReference;
13299
+ entityType: EntityType.FunctionDeclaration;
13300
+ entityId: string;
13301
+ })[] | null;
11202
13302
  parent: {
11203
13303
  id: string;
11204
13304
  type: EntityType.GenericReference;
@@ -11229,7 +13329,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11229
13329
  id: string;
11230
13330
  type: EntityType.LiteralValue;
11231
13331
  name: import("@src/definitions").PrimitiveTypes.Boolean;
11232
- valueAsType: {
13332
+ valueAsTypeSingle: {
11233
13333
  id: string;
11234
13334
  type: EntityType.GenericReference;
11235
13335
  entityType: EntityType.DefinitionEntity;
@@ -11245,6 +13345,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11245
13345
  entityType: EntityType.FunctionDeclaration;
11246
13346
  entityId: string;
11247
13347
  } | null;
13348
+ valueAsTypeList: ({
13349
+ id: string;
13350
+ type: EntityType.GenericReference;
13351
+ entityType: EntityType.DefinitionEntity;
13352
+ entityId: string;
13353
+ } | {
13354
+ id: string;
13355
+ type: EntityType.GenericReference;
13356
+ entityType: EntityType.Operation;
13357
+ entityId: string;
13358
+ } | {
13359
+ id: string;
13360
+ type: EntityType.GenericReference;
13361
+ entityType: EntityType.FunctionDeclaration;
13362
+ entityId: string;
13363
+ })[] | null;
11248
13364
  parent: {
11249
13365
  id: string;
11250
13366
  type: EntityType.GenericReference;
@@ -11267,7 +13383,23 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11267
13383
  id: string;
11268
13384
  type: EntityType.LiteralValue;
11269
13385
  name: import("@src/definitions").PrimitiveTypes.Null;
11270
- valueAsType: {
13386
+ valueAsTypeSingle: {
13387
+ id: string;
13388
+ type: EntityType.GenericReference;
13389
+ entityType: EntityType.DefinitionEntity;
13390
+ entityId: string;
13391
+ } | {
13392
+ id: string;
13393
+ type: EntityType.GenericReference;
13394
+ entityType: EntityType.Operation;
13395
+ entityId: string;
13396
+ } | {
13397
+ id: string;
13398
+ type: EntityType.GenericReference;
13399
+ entityType: EntityType.FunctionDeclaration;
13400
+ entityId: string;
13401
+ } | null;
13402
+ valueAsTypeList: ({
11271
13403
  id: string;
11272
13404
  type: EntityType.GenericReference;
11273
13405
  entityType: EntityType.DefinitionEntity;
@@ -11282,7 +13414,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11282
13414
  type: EntityType.GenericReference;
11283
13415
  entityType: EntityType.FunctionDeclaration;
11284
13416
  entityId: string;
11285
- } | null;
13417
+ })[] | null;
11286
13418
  parent: {
11287
13419
  id: string;
11288
13420
  type: EntityType.GenericReference;
@@ -11301,7 +13433,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11301
13433
  id: string;
11302
13434
  type: EntityType.LiteralValue;
11303
13435
  name: import("@src/definitions").PrimitiveTypes.Date;
11304
- valueAsType: {
13436
+ valueAsTypeSingle: {
11305
13437
  id: string;
11306
13438
  type: EntityType.GenericReference;
11307
13439
  entityType: EntityType.DefinitionEntity;
@@ -11317,6 +13449,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11317
13449
  entityType: EntityType.FunctionDeclaration;
11318
13450
  entityId: string;
11319
13451
  } | null;
13452
+ valueAsTypeList: ({
13453
+ id: string;
13454
+ type: EntityType.GenericReference;
13455
+ entityType: EntityType.DefinitionEntity;
13456
+ entityId: string;
13457
+ } | {
13458
+ id: string;
13459
+ type: EntityType.GenericReference;
13460
+ entityType: EntityType.Operation;
13461
+ entityId: string;
13462
+ } | {
13463
+ id: string;
13464
+ type: EntityType.GenericReference;
13465
+ entityType: EntityType.FunctionDeclaration;
13466
+ entityId: string;
13467
+ })[] | null;
11320
13468
  parent: {
11321
13469
  id: string;
11322
13470
  type: EntityType.GenericReference;
@@ -11351,7 +13499,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11351
13499
  id: string;
11352
13500
  type: EntityType.LiteralValue;
11353
13501
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
11354
- valueAsType: {
13502
+ valueAsTypeSingle: {
11355
13503
  id: string;
11356
13504
  type: EntityType.GenericReference;
11357
13505
  entityType: EntityType.DefinitionEntity;
@@ -11367,6 +13515,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11367
13515
  entityType: EntityType.FunctionDeclaration;
11368
13516
  entityId: string;
11369
13517
  } | null;
13518
+ valueAsTypeList: ({
13519
+ id: string;
13520
+ type: EntityType.GenericReference;
13521
+ entityType: EntityType.DefinitionEntity;
13522
+ entityId: string;
13523
+ } | {
13524
+ id: string;
13525
+ type: EntityType.GenericReference;
13526
+ entityType: EntityType.Operation;
13527
+ entityId: string;
13528
+ } | {
13529
+ id: string;
13530
+ type: EntityType.GenericReference;
13531
+ entityType: EntityType.FunctionDeclaration;
13532
+ entityId: string;
13533
+ })[] | null;
11370
13534
  parent: {
11371
13535
  id: string;
11372
13536
  type: EntityType.GenericReference;
@@ -11385,7 +13549,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11385
13549
  id: string;
11386
13550
  type: EntityType.LiteralValue;
11387
13551
  name: import("@src/definitions").PrimitiveTypes.Enum;
11388
- valueAsType: {
13552
+ valueAsTypeSingle: {
11389
13553
  id: string;
11390
13554
  type: EntityType.GenericReference;
11391
13555
  entityType: EntityType.DefinitionEntity;
@@ -11401,6 +13565,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11401
13565
  entityType: EntityType.FunctionDeclaration;
11402
13566
  entityId: string;
11403
13567
  } | null;
13568
+ valueAsTypeList: ({
13569
+ id: string;
13570
+ type: EntityType.GenericReference;
13571
+ entityType: EntityType.DefinitionEntity;
13572
+ entityId: string;
13573
+ } | {
13574
+ id: string;
13575
+ type: EntityType.GenericReference;
13576
+ entityType: EntityType.Operation;
13577
+ entityId: string;
13578
+ } | {
13579
+ id: string;
13580
+ type: EntityType.GenericReference;
13581
+ entityType: EntityType.FunctionDeclaration;
13582
+ entityId: string;
13583
+ })[] | null;
11404
13584
  parent: {
11405
13585
  id: string;
11406
13586
  type: EntityType.GenericReference;
@@ -11419,7 +13599,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11419
13599
  id: string;
11420
13600
  type: EntityType.LiteralValue;
11421
13601
  name: import("@src/definitions").PrimitiveTypes.File;
11422
- valueAsType: {
13602
+ valueAsTypeSingle: {
11423
13603
  id: string;
11424
13604
  type: EntityType.GenericReference;
11425
13605
  entityType: EntityType.DefinitionEntity;
@@ -11435,6 +13615,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11435
13615
  entityType: EntityType.FunctionDeclaration;
11436
13616
  entityId: string;
11437
13617
  } | null;
13618
+ valueAsTypeList: ({
13619
+ id: string;
13620
+ type: EntityType.GenericReference;
13621
+ entityType: EntityType.DefinitionEntity;
13622
+ entityId: string;
13623
+ } | {
13624
+ id: string;
13625
+ type: EntityType.GenericReference;
13626
+ entityType: EntityType.Operation;
13627
+ entityId: string;
13628
+ } | {
13629
+ id: string;
13630
+ type: EntityType.GenericReference;
13631
+ entityType: EntityType.FunctionDeclaration;
13632
+ entityId: string;
13633
+ })[] | null;
11438
13634
  parent: {
11439
13635
  id: string;
11440
13636
  type: EntityType.GenericReference;
@@ -11453,7 +13649,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11453
13649
  id: string;
11454
13650
  type: EntityType.LiteralValue;
11455
13651
  name: import("@src/definitions").PrimitiveTypes.UUID;
11456
- valueAsType: {
13652
+ valueAsTypeSingle: {
11457
13653
  id: string;
11458
13654
  type: EntityType.GenericReference;
11459
13655
  entityType: EntityType.DefinitionEntity;
@@ -11469,6 +13665,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11469
13665
  entityType: EntityType.FunctionDeclaration;
11470
13666
  entityId: string;
11471
13667
  } | null;
13668
+ valueAsTypeList: ({
13669
+ id: string;
13670
+ type: EntityType.GenericReference;
13671
+ entityType: EntityType.DefinitionEntity;
13672
+ entityId: string;
13673
+ } | {
13674
+ id: string;
13675
+ type: EntityType.GenericReference;
13676
+ entityType: EntityType.Operation;
13677
+ entityId: string;
13678
+ } | {
13679
+ id: string;
13680
+ type: EntityType.GenericReference;
13681
+ entityType: EntityType.FunctionDeclaration;
13682
+ entityId: string;
13683
+ })[] | null;
11472
13684
  parent: {
11473
13685
  id: string;
11474
13686
  type: EntityType.GenericReference;
@@ -11491,7 +13703,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11491
13703
  id: string;
11492
13704
  type: EntityType.LiteralValue;
11493
13705
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
11494
- valueAsType: {
13706
+ valueAsTypeSingle: {
11495
13707
  id: string;
11496
13708
  type: EntityType.GenericReference;
11497
13709
  entityType: EntityType.DefinitionEntity;
@@ -11507,6 +13719,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11507
13719
  entityType: EntityType.FunctionDeclaration;
11508
13720
  entityId: string;
11509
13721
  } | null;
13722
+ valueAsTypeList: ({
13723
+ id: string;
13724
+ type: EntityType.GenericReference;
13725
+ entityType: EntityType.DefinitionEntity;
13726
+ entityId: string;
13727
+ } | {
13728
+ id: string;
13729
+ type: EntityType.GenericReference;
13730
+ entityType: EntityType.Operation;
13731
+ entityId: string;
13732
+ } | {
13733
+ id: string;
13734
+ type: EntityType.GenericReference;
13735
+ entityType: EntityType.FunctionDeclaration;
13736
+ entityId: string;
13737
+ })[] | null;
11510
13738
  parent: {
11511
13739
  id: string;
11512
13740
  type: EntityType.GenericReference;
@@ -11530,7 +13758,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11530
13758
  id: string;
11531
13759
  type: EntityType.LiteralValue;
11532
13760
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
11533
- valueAsType: {
13761
+ valueAsTypeSingle: {
11534
13762
  id: string;
11535
13763
  type: EntityType.GenericReference;
11536
13764
  entityType: EntityType.DefinitionEntity;
@@ -11546,6 +13774,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11546
13774
  entityType: EntityType.FunctionDeclaration;
11547
13775
  entityId: string;
11548
13776
  } | null;
13777
+ valueAsTypeList: ({
13778
+ id: string;
13779
+ type: EntityType.GenericReference;
13780
+ entityType: EntityType.DefinitionEntity;
13781
+ entityId: string;
13782
+ } | {
13783
+ id: string;
13784
+ type: EntityType.GenericReference;
13785
+ entityType: EntityType.Operation;
13786
+ entityId: string;
13787
+ } | {
13788
+ id: string;
13789
+ type: EntityType.GenericReference;
13790
+ entityType: EntityType.FunctionDeclaration;
13791
+ entityId: string;
13792
+ })[] | null;
11549
13793
  parent: {
11550
13794
  id: string;
11551
13795
  type: EntityType.GenericReference;
@@ -11629,7 +13873,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11629
13873
  id: string;
11630
13874
  type: EntityType.LiteralValue;
11631
13875
  name: import("@src/definitions").PrimitiveTypes.String;
11632
- valueAsType: {
13876
+ valueAsTypeSingle: {
11633
13877
  id: string;
11634
13878
  type: EntityType.GenericReference;
11635
13879
  entityType: EntityType.DefinitionEntity;
@@ -11645,6 +13889,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11645
13889
  entityType: EntityType.FunctionDeclaration;
11646
13890
  entityId: string;
11647
13891
  } | null;
13892
+ valueAsTypeList: ({
13893
+ id: string;
13894
+ type: EntityType.GenericReference;
13895
+ entityType: EntityType.DefinitionEntity;
13896
+ entityId: string;
13897
+ } | {
13898
+ id: string;
13899
+ type: EntityType.GenericReference;
13900
+ entityType: EntityType.Operation;
13901
+ entityId: string;
13902
+ } | {
13903
+ id: string;
13904
+ type: EntityType.GenericReference;
13905
+ entityType: EntityType.FunctionDeclaration;
13906
+ entityId: string;
13907
+ })[] | null;
11648
13908
  parent: {
11649
13909
  id: string;
11650
13910
  type: EntityType.GenericReference;
@@ -11675,7 +13935,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11675
13935
  id: string;
11676
13936
  type: EntityType.LiteralValue;
11677
13937
  name: import("@src/definitions").PrimitiveTypes.Number;
11678
- valueAsType: {
13938
+ valueAsTypeSingle: {
11679
13939
  id: string;
11680
13940
  type: EntityType.GenericReference;
11681
13941
  entityType: EntityType.DefinitionEntity;
@@ -11691,6 +13951,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11691
13951
  entityType: EntityType.FunctionDeclaration;
11692
13952
  entityId: string;
11693
13953
  } | null;
13954
+ valueAsTypeList: ({
13955
+ id: string;
13956
+ type: EntityType.GenericReference;
13957
+ entityType: EntityType.DefinitionEntity;
13958
+ entityId: string;
13959
+ } | {
13960
+ id: string;
13961
+ type: EntityType.GenericReference;
13962
+ entityType: EntityType.Operation;
13963
+ entityId: string;
13964
+ } | {
13965
+ id: string;
13966
+ type: EntityType.GenericReference;
13967
+ entityType: EntityType.FunctionDeclaration;
13968
+ entityId: string;
13969
+ })[] | null;
11694
13970
  parent: {
11695
13971
  id: string;
11696
13972
  type: EntityType.GenericReference;
@@ -11721,7 +13997,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11721
13997
  id: string;
11722
13998
  type: EntityType.LiteralValue;
11723
13999
  name: import("@src/definitions").PrimitiveTypes.Boolean;
11724
- valueAsType: {
14000
+ valueAsTypeSingle: {
11725
14001
  id: string;
11726
14002
  type: EntityType.GenericReference;
11727
14003
  entityType: EntityType.DefinitionEntity;
@@ -11737,6 +14013,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11737
14013
  entityType: EntityType.FunctionDeclaration;
11738
14014
  entityId: string;
11739
14015
  } | null;
14016
+ valueAsTypeList: ({
14017
+ id: string;
14018
+ type: EntityType.GenericReference;
14019
+ entityType: EntityType.DefinitionEntity;
14020
+ entityId: string;
14021
+ } | {
14022
+ id: string;
14023
+ type: EntityType.GenericReference;
14024
+ entityType: EntityType.Operation;
14025
+ entityId: string;
14026
+ } | {
14027
+ id: string;
14028
+ type: EntityType.GenericReference;
14029
+ entityType: EntityType.FunctionDeclaration;
14030
+ entityId: string;
14031
+ })[] | null;
11740
14032
  parent: {
11741
14033
  id: string;
11742
14034
  type: EntityType.GenericReference;
@@ -11759,7 +14051,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11759
14051
  id: string;
11760
14052
  type: EntityType.LiteralValue;
11761
14053
  name: import("@src/definitions").PrimitiveTypes.Null;
11762
- valueAsType: {
14054
+ valueAsTypeSingle: {
11763
14055
  id: string;
11764
14056
  type: EntityType.GenericReference;
11765
14057
  entityType: EntityType.DefinitionEntity;
@@ -11775,6 +14067,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11775
14067
  entityType: EntityType.FunctionDeclaration;
11776
14068
  entityId: string;
11777
14069
  } | null;
14070
+ valueAsTypeList: ({
14071
+ id: string;
14072
+ type: EntityType.GenericReference;
14073
+ entityType: EntityType.DefinitionEntity;
14074
+ entityId: string;
14075
+ } | {
14076
+ id: string;
14077
+ type: EntityType.GenericReference;
14078
+ entityType: EntityType.Operation;
14079
+ entityId: string;
14080
+ } | {
14081
+ id: string;
14082
+ type: EntityType.GenericReference;
14083
+ entityType: EntityType.FunctionDeclaration;
14084
+ entityId: string;
14085
+ })[] | null;
11778
14086
  parent: {
11779
14087
  id: string;
11780
14088
  type: EntityType.GenericReference;
@@ -11793,7 +14101,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11793
14101
  id: string;
11794
14102
  type: EntityType.LiteralValue;
11795
14103
  name: import("@src/definitions").PrimitiveTypes.Date;
11796
- valueAsType: {
14104
+ valueAsTypeSingle: {
11797
14105
  id: string;
11798
14106
  type: EntityType.GenericReference;
11799
14107
  entityType: EntityType.DefinitionEntity;
@@ -11809,6 +14117,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11809
14117
  entityType: EntityType.FunctionDeclaration;
11810
14118
  entityId: string;
11811
14119
  } | null;
14120
+ valueAsTypeList: ({
14121
+ id: string;
14122
+ type: EntityType.GenericReference;
14123
+ entityType: EntityType.DefinitionEntity;
14124
+ entityId: string;
14125
+ } | {
14126
+ id: string;
14127
+ type: EntityType.GenericReference;
14128
+ entityType: EntityType.Operation;
14129
+ entityId: string;
14130
+ } | {
14131
+ id: string;
14132
+ type: EntityType.GenericReference;
14133
+ entityType: EntityType.FunctionDeclaration;
14134
+ entityId: string;
14135
+ })[] | null;
11812
14136
  parent: {
11813
14137
  id: string;
11814
14138
  type: EntityType.GenericReference;
@@ -11843,7 +14167,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11843
14167
  id: string;
11844
14168
  type: EntityType.LiteralValue;
11845
14169
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
11846
- valueAsType: {
14170
+ valueAsTypeSingle: {
11847
14171
  id: string;
11848
14172
  type: EntityType.GenericReference;
11849
14173
  entityType: EntityType.DefinitionEntity;
@@ -11859,6 +14183,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11859
14183
  entityType: EntityType.FunctionDeclaration;
11860
14184
  entityId: string;
11861
14185
  } | null;
14186
+ valueAsTypeList: ({
14187
+ id: string;
14188
+ type: EntityType.GenericReference;
14189
+ entityType: EntityType.DefinitionEntity;
14190
+ entityId: string;
14191
+ } | {
14192
+ id: string;
14193
+ type: EntityType.GenericReference;
14194
+ entityType: EntityType.Operation;
14195
+ entityId: string;
14196
+ } | {
14197
+ id: string;
14198
+ type: EntityType.GenericReference;
14199
+ entityType: EntityType.FunctionDeclaration;
14200
+ entityId: string;
14201
+ })[] | null;
11862
14202
  parent: {
11863
14203
  id: string;
11864
14204
  type: EntityType.GenericReference;
@@ -11877,7 +14217,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11877
14217
  id: string;
11878
14218
  type: EntityType.LiteralValue;
11879
14219
  name: import("@src/definitions").PrimitiveTypes.Enum;
11880
- valueAsType: {
14220
+ valueAsTypeSingle: {
11881
14221
  id: string;
11882
14222
  type: EntityType.GenericReference;
11883
14223
  entityType: EntityType.DefinitionEntity;
@@ -11893,6 +14233,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11893
14233
  entityType: EntityType.FunctionDeclaration;
11894
14234
  entityId: string;
11895
14235
  } | null;
14236
+ valueAsTypeList: ({
14237
+ id: string;
14238
+ type: EntityType.GenericReference;
14239
+ entityType: EntityType.DefinitionEntity;
14240
+ entityId: string;
14241
+ } | {
14242
+ id: string;
14243
+ type: EntityType.GenericReference;
14244
+ entityType: EntityType.Operation;
14245
+ entityId: string;
14246
+ } | {
14247
+ id: string;
14248
+ type: EntityType.GenericReference;
14249
+ entityType: EntityType.FunctionDeclaration;
14250
+ entityId: string;
14251
+ })[] | null;
11896
14252
  parent: {
11897
14253
  id: string;
11898
14254
  type: EntityType.GenericReference;
@@ -11911,7 +14267,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11911
14267
  id: string;
11912
14268
  type: EntityType.LiteralValue;
11913
14269
  name: import("@src/definitions").PrimitiveTypes.File;
11914
- valueAsType: {
14270
+ valueAsTypeSingle: {
11915
14271
  id: string;
11916
14272
  type: EntityType.GenericReference;
11917
14273
  entityType: EntityType.DefinitionEntity;
@@ -11927,6 +14283,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11927
14283
  entityType: EntityType.FunctionDeclaration;
11928
14284
  entityId: string;
11929
14285
  } | null;
14286
+ valueAsTypeList: ({
14287
+ id: string;
14288
+ type: EntityType.GenericReference;
14289
+ entityType: EntityType.DefinitionEntity;
14290
+ entityId: string;
14291
+ } | {
14292
+ id: string;
14293
+ type: EntityType.GenericReference;
14294
+ entityType: EntityType.Operation;
14295
+ entityId: string;
14296
+ } | {
14297
+ id: string;
14298
+ type: EntityType.GenericReference;
14299
+ entityType: EntityType.FunctionDeclaration;
14300
+ entityId: string;
14301
+ })[] | null;
11930
14302
  parent: {
11931
14303
  id: string;
11932
14304
  type: EntityType.GenericReference;
@@ -11945,7 +14317,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11945
14317
  id: string;
11946
14318
  type: EntityType.LiteralValue;
11947
14319
  name: import("@src/definitions").PrimitiveTypes.UUID;
11948
- valueAsType: {
14320
+ valueAsTypeSingle: {
11949
14321
  id: string;
11950
14322
  type: EntityType.GenericReference;
11951
14323
  entityType: EntityType.DefinitionEntity;
@@ -11961,6 +14333,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11961
14333
  entityType: EntityType.FunctionDeclaration;
11962
14334
  entityId: string;
11963
14335
  } | null;
14336
+ valueAsTypeList: ({
14337
+ id: string;
14338
+ type: EntityType.GenericReference;
14339
+ entityType: EntityType.DefinitionEntity;
14340
+ entityId: string;
14341
+ } | {
14342
+ id: string;
14343
+ type: EntityType.GenericReference;
14344
+ entityType: EntityType.Operation;
14345
+ entityId: string;
14346
+ } | {
14347
+ id: string;
14348
+ type: EntityType.GenericReference;
14349
+ entityType: EntityType.FunctionDeclaration;
14350
+ entityId: string;
14351
+ })[] | null;
11964
14352
  parent: {
11965
14353
  id: string;
11966
14354
  type: EntityType.GenericReference;
@@ -11983,7 +14371,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11983
14371
  id: string;
11984
14372
  type: EntityType.LiteralValue;
11985
14373
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
11986
- valueAsType: {
14374
+ valueAsTypeSingle: {
11987
14375
  id: string;
11988
14376
  type: EntityType.GenericReference;
11989
14377
  entityType: EntityType.DefinitionEntity;
@@ -11999,6 +14387,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
11999
14387
  entityType: EntityType.FunctionDeclaration;
12000
14388
  entityId: string;
12001
14389
  } | null;
14390
+ valueAsTypeList: ({
14391
+ id: string;
14392
+ type: EntityType.GenericReference;
14393
+ entityType: EntityType.DefinitionEntity;
14394
+ entityId: string;
14395
+ } | {
14396
+ id: string;
14397
+ type: EntityType.GenericReference;
14398
+ entityType: EntityType.Operation;
14399
+ entityId: string;
14400
+ } | {
14401
+ id: string;
14402
+ type: EntityType.GenericReference;
14403
+ entityType: EntityType.FunctionDeclaration;
14404
+ entityId: string;
14405
+ })[] | null;
12002
14406
  parent: {
12003
14407
  id: string;
12004
14408
  type: EntityType.GenericReference;
@@ -12022,7 +14426,7 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
12022
14426
  id: string;
12023
14427
  type: EntityType.LiteralValue;
12024
14428
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
12025
- valueAsType: {
14429
+ valueAsTypeSingle: {
12026
14430
  id: string;
12027
14431
  type: EntityType.GenericReference;
12028
14432
  entityType: EntityType.DefinitionEntity;
@@ -12038,6 +14442,22 @@ export declare function getDataTypeSchema(): z.ZodObject<z.objectUtil.extendShap
12038
14442
  entityType: EntityType.FunctionDeclaration;
12039
14443
  entityId: string;
12040
14444
  } | null;
14445
+ valueAsTypeList: ({
14446
+ id: string;
14447
+ type: EntityType.GenericReference;
14448
+ entityType: EntityType.DefinitionEntity;
14449
+ entityId: string;
14450
+ } | {
14451
+ id: string;
14452
+ type: EntityType.GenericReference;
14453
+ entityType: EntityType.Operation;
14454
+ entityId: string;
14455
+ } | {
14456
+ id: string;
14457
+ type: EntityType.GenericReference;
14458
+ entityType: EntityType.FunctionDeclaration;
14459
+ entityId: string;
14460
+ })[] | null;
12041
14461
  parent: {
12042
14462
  id: string;
12043
14463
  type: EntityType.GenericReference;