@elyx-code/project-logic-tree 0.0.6120 → 0.0.6122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/definitions/built-in-base-entities/index.d.ts +1 -0
- package/dist/definitions/built-in-base-entities/operations/index.d.ts +1 -1
- package/dist/definitions/logic/definition-entity-to-zod-schema.d.ts +4 -0
- package/dist/definitions/logic/index.d.ts +1 -1
- package/dist/definitions/mock/default-mock/entities/alt-relational-database/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/alt-relational-database/properties.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/animal.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/back-account/account-owner-event.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/back-account/change-owner-of-account.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/back-account/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/back-account/properties.d.ts +3 -3
- package/dist/definitions/mock/default-mock/entities/base-table/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/base-table/properties.d.ts +5 -5
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/currency/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/currency/properties.d.ts +6 -6
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/properties.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/properties.d.ts +5 -5
- package/dist/definitions/mock/default-mock/entities/company/change-owner-of-company.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/company/company-changed-event/index.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/company/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/company/properties.d.ts +6 -6
- package/dist/definitions/mock/default-mock/entities/cron-job/entity.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/default-relational-database/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/default-relational-database/properties.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/employee.d.ts +6 -6
- package/dist/definitions/mock/default-mock/entities/get-all-bank-accounts-endpoint/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/entity.d.ts +2 -2
- package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/properties.d.ts +3 -3
- package/dist/definitions/mock/default-mock/entities/person.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/plant.d.ts +4 -4
- package/dist/definitions/mock/default-mock/entities/product.d.ts +5 -5
- package/dist/definitions/mock/default-mock/entities/user.d.ts +4 -4
- package/dist/definitions/types/action-descriptor.d.ts +4 -4
- package/dist/definitions/types/base-entity.d.ts +7 -7
- package/dist/definitions/types/base.d.ts +11 -5
- package/dist/definitions/types/data-type.d.ts +5 -7
- package/dist/definitions/types/definition-entity.d.ts +31 -0
- package/dist/definitions/types/function.d.ts +9 -4
- package/dist/definitions/types/generic-reference.d.ts +2 -2
- package/dist/definitions/types/index.d.ts +19 -19
- package/dist/definitions/types/primitives.d.ts +4 -4
- package/dist/definitions/types/project.d.ts +4 -4
- package/dist/definitions/types/property.d.ts +7 -4
- package/dist/definitions/types/return.d.ts +4 -0
- package/dist/index.js +10001 -10217
- package/dist/index.umd.cjs +212 -212
- package/dist/tree/built-in/operations/{custom-entity → definition-entity}/validate-data.d.ts +2 -2
- package/dist/tree/state/action-descriptor/action-descriptor.d.ts +4 -4
- package/dist/tree/state/action-descriptor/validation/validation-schema.d.ts +10 -10
- package/dist/tree/state/argument-declaration/argument-declaration.d.ts +1 -0
- package/dist/tree/state/built-in-base-entity/built-in-base-entity.d.ts +2 -2
- package/dist/tree/state/data-type/data-type.d.ts +4 -6
- package/dist/tree/state/data-type/validation/validation-schema.d.ts +186 -186
- package/dist/tree/state/definition-entity/definition-entity.d.ts +146 -0
- package/dist/tree/state/definition-entity/index.d.ts +1 -0
- package/dist/tree/state/definition-entity/validation/logic-validation.d.ts +9 -0
- package/dist/tree/state/definition-entity/validation/references.d.ts +5 -0
- package/dist/tree/state/{custom-entity → definition-entity}/validation/validation-schema.d.ts +54 -54
- package/dist/tree/state/function-declaration/function-declaration.d.ts +4 -4
- package/dist/tree/state/function-declaration/validation/validation-schema.d.ts +10 -10
- package/dist/tree/state/global-event/validation/validation-schema.d.ts +14 -14
- package/dist/tree/state/index.d.ts +1 -1
- package/dist/tree/state/input-map/validation/validation-schema.d.ts +504 -504
- package/dist/tree/state/literal-value/literal-value.d.ts +2 -2
- package/dist/tree/state/literal-value/validation/validation-schema.d.ts +131 -131
- package/dist/tree/state/project/project.d.ts +7 -7
- package/dist/tree/state/project/validation/validation-schema.d.ts +10 -10
- package/dist/tree/state/property/property.d.ts +5 -4
- package/dist/tree/state/property/validation/validation-schema.d.ts +10 -10
- package/dist/tree/state/return-declaration/return-declaration.d.ts +1 -0
- package/dist/tree/state/types/state.d.ts +5 -5
- package/dist/tree/state/types/validation.d.ts +12 -12
- package/dist/tree/state/validate.d.ts +2 -2
- package/dist/tree/state/variable-declaration/variable-declaration.d.ts +2 -0
- package/dist/tree/utils/data-type.d.ts +7 -7
- package/dist/tree/utils/index.d.ts +21 -21
- package/dist/tree/utils/names.d.ts +4 -4
- package/dist/tree/utils/shared-data-structure-entity.d.ts +13 -13
- package/package.json +1 -1
- package/dist/definitions/logic/custom-entity-to-zod-schema.d.ts +0 -4
- package/dist/definitions/types/custom-entity.d.ts +0 -31
- package/dist/tree/state/custom-entity/custom-entity.d.ts +0 -146
- package/dist/tree/state/custom-entity/index.d.ts +0 -1
- package/dist/tree/state/custom-entity/validation/logic-validation.d.ts +0 -9
- package/dist/tree/state/custom-entity/validation/references.d.ts +0 -5
- /package/dist/definitions/built-in-base-entities/operations/{custom-entity → definition-entity}/create-new.d.ts +0 -0
- /package/dist/definitions/built-in-base-entities/operations/{custom-entity → definition-entity}/index.d.ts +0 -0
- /package/dist/definitions/built-in-base-entities/operations/{custom-entity → definition-entity}/validate-data.d.ts +0 -0
- /package/dist/tree/built-in/operations/{custom-entity → definition-entity}/create-new.d.ts +0 -0
- /package/dist/tree/built-in/operations/{custom-entity → definition-entity}/index.d.ts +0 -0
- /package/dist/tree/built-in/operations/{custom-entity → definition-entity}/validate-data.test.d.ts +0 -0
- /package/dist/tree/state/{custom-entity/custom-entity.test.d.ts → definition-entity/definition-entity.test.d.ts} +0 -0
|
@@ -14,16 +14,16 @@ export declare function getLiteralValueAsTypeSchema(): z.ZodUnion<[z.ZodObject<{
|
|
|
14
14
|
id: z.ZodString;
|
|
15
15
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
16
16
|
entityId: z.ZodString;
|
|
17
|
-
entityType: z.ZodLiteral<EntityType.
|
|
17
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
19
|
id: string;
|
|
20
20
|
type: EntityType.GenericReference;
|
|
21
|
-
entityType: EntityType.
|
|
21
|
+
entityType: EntityType.DefinitionEntity;
|
|
22
22
|
entityId: string;
|
|
23
23
|
}, {
|
|
24
24
|
id: string;
|
|
25
25
|
type: EntityType.GenericReference;
|
|
26
|
-
entityType: EntityType.
|
|
26
|
+
entityType: EntityType.DefinitionEntity;
|
|
27
27
|
entityId: string;
|
|
28
28
|
}>, z.ZodObject<{
|
|
29
29
|
id: z.ZodString;
|
|
@@ -60,16 +60,16 @@ export declare function getLiteralValueAsTypeGenerationTargetSchemaSchema(): z.Z
|
|
|
60
60
|
id: z.ZodString;
|
|
61
61
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
62
62
|
entityId: z.ZodString;
|
|
63
|
-
entityType: z.ZodLiteral<EntityType.
|
|
63
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
65
|
id: string;
|
|
66
66
|
type: EntityType.GenericReference;
|
|
67
|
-
entityType: EntityType.
|
|
67
|
+
entityType: EntityType.DefinitionEntity;
|
|
68
68
|
entityId: string;
|
|
69
69
|
}, {
|
|
70
70
|
id: string;
|
|
71
71
|
type: EntityType.GenericReference;
|
|
72
|
-
entityType: EntityType.
|
|
72
|
+
entityType: EntityType.DefinitionEntity;
|
|
73
73
|
entityId: string;
|
|
74
74
|
}>, z.ZodObject<{
|
|
75
75
|
id: z.ZodString;
|
|
@@ -1208,16 +1208,16 @@ export declare function getLiteralValueGenericSchema(): z.ZodObject<{
|
|
|
1208
1208
|
id: z.ZodString;
|
|
1209
1209
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
1210
1210
|
entityId: z.ZodString;
|
|
1211
|
-
entityType: z.ZodLiteral<EntityType.
|
|
1211
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
1212
1212
|
}, "strip", z.ZodTypeAny, {
|
|
1213
1213
|
id: string;
|
|
1214
1214
|
type: EntityType.GenericReference;
|
|
1215
|
-
entityType: EntityType.
|
|
1215
|
+
entityType: EntityType.DefinitionEntity;
|
|
1216
1216
|
entityId: string;
|
|
1217
1217
|
}, {
|
|
1218
1218
|
id: string;
|
|
1219
1219
|
type: EntityType.GenericReference;
|
|
1220
|
-
entityType: EntityType.
|
|
1220
|
+
entityType: EntityType.DefinitionEntity;
|
|
1221
1221
|
entityId: string;
|
|
1222
1222
|
}>, z.ZodObject<{
|
|
1223
1223
|
id: z.ZodString;
|
|
@@ -1538,7 +1538,7 @@ export declare function getLiteralValueGenericSchema(): z.ZodObject<{
|
|
|
1538
1538
|
valueAsType: {
|
|
1539
1539
|
id: string;
|
|
1540
1540
|
type: EntityType.GenericReference;
|
|
1541
|
-
entityType: EntityType.
|
|
1541
|
+
entityType: EntityType.DefinitionEntity;
|
|
1542
1542
|
entityId: string;
|
|
1543
1543
|
} | {
|
|
1544
1544
|
id: string;
|
|
@@ -1620,7 +1620,7 @@ export declare function getLiteralValueGenericSchema(): z.ZodObject<{
|
|
|
1620
1620
|
valueAsType: {
|
|
1621
1621
|
id: string;
|
|
1622
1622
|
type: EntityType.GenericReference;
|
|
1623
|
-
entityType: EntityType.
|
|
1623
|
+
entityType: EntityType.DefinitionEntity;
|
|
1624
1624
|
entityId: string;
|
|
1625
1625
|
} | {
|
|
1626
1626
|
id: string;
|
|
@@ -1706,16 +1706,16 @@ export declare function getPrimitiveStringValueSchema(): z.ZodObject<z.objectUti
|
|
|
1706
1706
|
id: z.ZodString;
|
|
1707
1707
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
1708
1708
|
entityId: z.ZodString;
|
|
1709
|
-
entityType: z.ZodLiteral<EntityType.
|
|
1709
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
1710
1710
|
}, "strip", z.ZodTypeAny, {
|
|
1711
1711
|
id: string;
|
|
1712
1712
|
type: EntityType.GenericReference;
|
|
1713
|
-
entityType: EntityType.
|
|
1713
|
+
entityType: EntityType.DefinitionEntity;
|
|
1714
1714
|
entityId: string;
|
|
1715
1715
|
}, {
|
|
1716
1716
|
id: string;
|
|
1717
1717
|
type: EntityType.GenericReference;
|
|
1718
|
-
entityType: EntityType.
|
|
1718
|
+
entityType: EntityType.DefinitionEntity;
|
|
1719
1719
|
entityId: string;
|
|
1720
1720
|
}>, z.ZodObject<{
|
|
1721
1721
|
id: z.ZodString;
|
|
@@ -2106,7 +2106,7 @@ export declare function getPrimitiveStringValueSchema(): z.ZodObject<z.objectUti
|
|
|
2106
2106
|
valueAsType: {
|
|
2107
2107
|
id: string;
|
|
2108
2108
|
type: EntityType.GenericReference;
|
|
2109
|
-
entityType: EntityType.
|
|
2109
|
+
entityType: EntityType.DefinitionEntity;
|
|
2110
2110
|
entityId: string;
|
|
2111
2111
|
} | {
|
|
2112
2112
|
id: string;
|
|
@@ -2152,7 +2152,7 @@ export declare function getPrimitiveStringValueSchema(): z.ZodObject<z.objectUti
|
|
|
2152
2152
|
valueAsType: {
|
|
2153
2153
|
id: string;
|
|
2154
2154
|
type: EntityType.GenericReference;
|
|
2155
|
-
entityType: EntityType.
|
|
2155
|
+
entityType: EntityType.DefinitionEntity;
|
|
2156
2156
|
entityId: string;
|
|
2157
2157
|
} | {
|
|
2158
2158
|
id: string;
|
|
@@ -2202,16 +2202,16 @@ export declare function getPrimitiveNumberValueSchema(): z.ZodObject<z.objectUti
|
|
|
2202
2202
|
id: z.ZodString;
|
|
2203
2203
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
2204
2204
|
entityId: z.ZodString;
|
|
2205
|
-
entityType: z.ZodLiteral<EntityType.
|
|
2205
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
2206
2206
|
}, "strip", z.ZodTypeAny, {
|
|
2207
2207
|
id: string;
|
|
2208
2208
|
type: EntityType.GenericReference;
|
|
2209
|
-
entityType: EntityType.
|
|
2209
|
+
entityType: EntityType.DefinitionEntity;
|
|
2210
2210
|
entityId: string;
|
|
2211
2211
|
}, {
|
|
2212
2212
|
id: string;
|
|
2213
2213
|
type: EntityType.GenericReference;
|
|
2214
|
-
entityType: EntityType.
|
|
2214
|
+
entityType: EntityType.DefinitionEntity;
|
|
2215
2215
|
entityId: string;
|
|
2216
2216
|
}>, z.ZodObject<{
|
|
2217
2217
|
id: z.ZodString;
|
|
@@ -2602,7 +2602,7 @@ export declare function getPrimitiveNumberValueSchema(): z.ZodObject<z.objectUti
|
|
|
2602
2602
|
valueAsType: {
|
|
2603
2603
|
id: string;
|
|
2604
2604
|
type: EntityType.GenericReference;
|
|
2605
|
-
entityType: EntityType.
|
|
2605
|
+
entityType: EntityType.DefinitionEntity;
|
|
2606
2606
|
entityId: string;
|
|
2607
2607
|
} | {
|
|
2608
2608
|
id: string;
|
|
@@ -2648,7 +2648,7 @@ export declare function getPrimitiveNumberValueSchema(): z.ZodObject<z.objectUti
|
|
|
2648
2648
|
valueAsType: {
|
|
2649
2649
|
id: string;
|
|
2650
2650
|
type: EntityType.GenericReference;
|
|
2651
|
-
entityType: EntityType.
|
|
2651
|
+
entityType: EntityType.DefinitionEntity;
|
|
2652
2652
|
entityId: string;
|
|
2653
2653
|
} | {
|
|
2654
2654
|
id: string;
|
|
@@ -2698,16 +2698,16 @@ export declare function getPrimitiveBooleanValueSchema(): z.ZodObject<z.objectUt
|
|
|
2698
2698
|
id: z.ZodString;
|
|
2699
2699
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
2700
2700
|
entityId: z.ZodString;
|
|
2701
|
-
entityType: z.ZodLiteral<EntityType.
|
|
2701
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
2702
2702
|
}, "strip", z.ZodTypeAny, {
|
|
2703
2703
|
id: string;
|
|
2704
2704
|
type: EntityType.GenericReference;
|
|
2705
|
-
entityType: EntityType.
|
|
2705
|
+
entityType: EntityType.DefinitionEntity;
|
|
2706
2706
|
entityId: string;
|
|
2707
2707
|
}, {
|
|
2708
2708
|
id: string;
|
|
2709
2709
|
type: EntityType.GenericReference;
|
|
2710
|
-
entityType: EntityType.
|
|
2710
|
+
entityType: EntityType.DefinitionEntity;
|
|
2711
2711
|
entityId: string;
|
|
2712
2712
|
}>, z.ZodObject<{
|
|
2713
2713
|
id: z.ZodString;
|
|
@@ -3051,7 +3051,7 @@ export declare function getPrimitiveBooleanValueSchema(): z.ZodObject<z.objectUt
|
|
|
3051
3051
|
valueAsType: {
|
|
3052
3052
|
id: string;
|
|
3053
3053
|
type: EntityType.GenericReference;
|
|
3054
|
-
entityType: EntityType.
|
|
3054
|
+
entityType: EntityType.DefinitionEntity;
|
|
3055
3055
|
entityId: string;
|
|
3056
3056
|
} | {
|
|
3057
3057
|
id: string;
|
|
@@ -3089,7 +3089,7 @@ export declare function getPrimitiveBooleanValueSchema(): z.ZodObject<z.objectUt
|
|
|
3089
3089
|
valueAsType: {
|
|
3090
3090
|
id: string;
|
|
3091
3091
|
type: EntityType.GenericReference;
|
|
3092
|
-
entityType: EntityType.
|
|
3092
|
+
entityType: EntityType.DefinitionEntity;
|
|
3093
3093
|
entityId: string;
|
|
3094
3094
|
} | {
|
|
3095
3095
|
id: string;
|
|
@@ -3131,16 +3131,16 @@ export declare function getPrimitiveNullValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
3131
3131
|
id: z.ZodString;
|
|
3132
3132
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
3133
3133
|
entityId: z.ZodString;
|
|
3134
|
-
entityType: z.ZodLiteral<EntityType.
|
|
3134
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
3135
3135
|
}, "strip", z.ZodTypeAny, {
|
|
3136
3136
|
id: string;
|
|
3137
3137
|
type: EntityType.GenericReference;
|
|
3138
|
-
entityType: EntityType.
|
|
3138
|
+
entityType: EntityType.DefinitionEntity;
|
|
3139
3139
|
entityId: string;
|
|
3140
3140
|
}, {
|
|
3141
3141
|
id: string;
|
|
3142
3142
|
type: EntityType.GenericReference;
|
|
3143
|
-
entityType: EntityType.
|
|
3143
|
+
entityType: EntityType.DefinitionEntity;
|
|
3144
3144
|
entityId: string;
|
|
3145
3145
|
}>, z.ZodObject<{
|
|
3146
3146
|
id: z.ZodString;
|
|
@@ -3465,7 +3465,7 @@ export declare function getPrimitiveNullValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
3465
3465
|
valueAsType: {
|
|
3466
3466
|
id: string;
|
|
3467
3467
|
type: EntityType.GenericReference;
|
|
3468
|
-
entityType: EntityType.
|
|
3468
|
+
entityType: EntityType.DefinitionEntity;
|
|
3469
3469
|
entityId: string;
|
|
3470
3470
|
} | {
|
|
3471
3471
|
id: string;
|
|
@@ -3499,7 +3499,7 @@ export declare function getPrimitiveNullValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
3499
3499
|
valueAsType: {
|
|
3500
3500
|
id: string;
|
|
3501
3501
|
type: EntityType.GenericReference;
|
|
3502
|
-
entityType: EntityType.
|
|
3502
|
+
entityType: EntityType.DefinitionEntity;
|
|
3503
3503
|
entityId: string;
|
|
3504
3504
|
} | {
|
|
3505
3505
|
id: string;
|
|
@@ -3537,16 +3537,16 @@ export declare function getPrimitiveDateValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
3537
3537
|
id: z.ZodString;
|
|
3538
3538
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
3539
3539
|
entityId: z.ZodString;
|
|
3540
|
-
entityType: z.ZodLiteral<EntityType.
|
|
3540
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
3541
3541
|
}, "strip", z.ZodTypeAny, {
|
|
3542
3542
|
id: string;
|
|
3543
3543
|
type: EntityType.GenericReference;
|
|
3544
|
-
entityType: EntityType.
|
|
3544
|
+
entityType: EntityType.DefinitionEntity;
|
|
3545
3545
|
entityId: string;
|
|
3546
3546
|
}, {
|
|
3547
3547
|
id: string;
|
|
3548
3548
|
type: EntityType.GenericReference;
|
|
3549
|
-
entityType: EntityType.
|
|
3549
|
+
entityType: EntityType.DefinitionEntity;
|
|
3550
3550
|
entityId: string;
|
|
3551
3551
|
}>, z.ZodObject<{
|
|
3552
3552
|
id: z.ZodString;
|
|
@@ -3953,7 +3953,7 @@ export declare function getPrimitiveDateValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
3953
3953
|
valueAsType: {
|
|
3954
3954
|
id: string;
|
|
3955
3955
|
type: EntityType.GenericReference;
|
|
3956
|
-
entityType: EntityType.
|
|
3956
|
+
entityType: EntityType.DefinitionEntity;
|
|
3957
3957
|
entityId: string;
|
|
3958
3958
|
} | {
|
|
3959
3959
|
id: string;
|
|
@@ -4003,7 +4003,7 @@ export declare function getPrimitiveDateValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
4003
4003
|
valueAsType: {
|
|
4004
4004
|
id: string;
|
|
4005
4005
|
type: EntityType.GenericReference;
|
|
4006
|
-
entityType: EntityType.
|
|
4006
|
+
entityType: EntityType.DefinitionEntity;
|
|
4007
4007
|
entityId: string;
|
|
4008
4008
|
} | {
|
|
4009
4009
|
id: string;
|
|
@@ -4057,16 +4057,16 @@ export declare function getPrimitiveJSONValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
4057
4057
|
id: z.ZodString;
|
|
4058
4058
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4059
4059
|
entityId: z.ZodString;
|
|
4060
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4060
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4061
4061
|
}, "strip", z.ZodTypeAny, {
|
|
4062
4062
|
id: string;
|
|
4063
4063
|
type: EntityType.GenericReference;
|
|
4064
|
-
entityType: EntityType.
|
|
4064
|
+
entityType: EntityType.DefinitionEntity;
|
|
4065
4065
|
entityId: string;
|
|
4066
4066
|
}, {
|
|
4067
4067
|
id: string;
|
|
4068
4068
|
type: EntityType.GenericReference;
|
|
4069
|
-
entityType: EntityType.
|
|
4069
|
+
entityType: EntityType.DefinitionEntity;
|
|
4070
4070
|
entityId: string;
|
|
4071
4071
|
}>, z.ZodObject<{
|
|
4072
4072
|
id: z.ZodString;
|
|
@@ -4391,7 +4391,7 @@ export declare function getPrimitiveJSONValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
4391
4391
|
valueAsType: {
|
|
4392
4392
|
id: string;
|
|
4393
4393
|
type: EntityType.GenericReference;
|
|
4394
|
-
entityType: EntityType.
|
|
4394
|
+
entityType: EntityType.DefinitionEntity;
|
|
4395
4395
|
entityId: string;
|
|
4396
4396
|
} | {
|
|
4397
4397
|
id: string;
|
|
@@ -4425,7 +4425,7 @@ export declare function getPrimitiveJSONValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
4425
4425
|
valueAsType: {
|
|
4426
4426
|
id: string;
|
|
4427
4427
|
type: EntityType.GenericReference;
|
|
4428
|
-
entityType: EntityType.
|
|
4428
|
+
entityType: EntityType.DefinitionEntity;
|
|
4429
4429
|
entityId: string;
|
|
4430
4430
|
} | {
|
|
4431
4431
|
id: string;
|
|
@@ -4463,16 +4463,16 @@ export declare function getPrimitiveEnumValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
4463
4463
|
id: z.ZodString;
|
|
4464
4464
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4465
4465
|
entityId: z.ZodString;
|
|
4466
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4466
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4467
4467
|
}, "strip", z.ZodTypeAny, {
|
|
4468
4468
|
id: string;
|
|
4469
4469
|
type: EntityType.GenericReference;
|
|
4470
|
-
entityType: EntityType.
|
|
4470
|
+
entityType: EntityType.DefinitionEntity;
|
|
4471
4471
|
entityId: string;
|
|
4472
4472
|
}, {
|
|
4473
4473
|
id: string;
|
|
4474
4474
|
type: EntityType.GenericReference;
|
|
4475
|
-
entityType: EntityType.
|
|
4475
|
+
entityType: EntityType.DefinitionEntity;
|
|
4476
4476
|
entityId: string;
|
|
4477
4477
|
}>, z.ZodObject<{
|
|
4478
4478
|
id: z.ZodString;
|
|
@@ -4797,7 +4797,7 @@ export declare function getPrimitiveEnumValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
4797
4797
|
valueAsType: {
|
|
4798
4798
|
id: string;
|
|
4799
4799
|
type: EntityType.GenericReference;
|
|
4800
|
-
entityType: EntityType.
|
|
4800
|
+
entityType: EntityType.DefinitionEntity;
|
|
4801
4801
|
entityId: string;
|
|
4802
4802
|
} | {
|
|
4803
4803
|
id: string;
|
|
@@ -4831,7 +4831,7 @@ export declare function getPrimitiveEnumValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
4831
4831
|
valueAsType: {
|
|
4832
4832
|
id: string;
|
|
4833
4833
|
type: EntityType.GenericReference;
|
|
4834
|
-
entityType: EntityType.
|
|
4834
|
+
entityType: EntityType.DefinitionEntity;
|
|
4835
4835
|
entityId: string;
|
|
4836
4836
|
} | {
|
|
4837
4837
|
id: string;
|
|
@@ -4869,16 +4869,16 @@ export declare function getPrimitiveFileValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
4869
4869
|
id: z.ZodString;
|
|
4870
4870
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4871
4871
|
entityId: z.ZodString;
|
|
4872
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4872
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4873
4873
|
}, "strip", z.ZodTypeAny, {
|
|
4874
4874
|
id: string;
|
|
4875
4875
|
type: EntityType.GenericReference;
|
|
4876
|
-
entityType: EntityType.
|
|
4876
|
+
entityType: EntityType.DefinitionEntity;
|
|
4877
4877
|
entityId: string;
|
|
4878
4878
|
}, {
|
|
4879
4879
|
id: string;
|
|
4880
4880
|
type: EntityType.GenericReference;
|
|
4881
|
-
entityType: EntityType.
|
|
4881
|
+
entityType: EntityType.DefinitionEntity;
|
|
4882
4882
|
entityId: string;
|
|
4883
4883
|
}>, z.ZodObject<{
|
|
4884
4884
|
id: z.ZodString;
|
|
@@ -5203,7 +5203,7 @@ export declare function getPrimitiveFileValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
5203
5203
|
valueAsType: {
|
|
5204
5204
|
id: string;
|
|
5205
5205
|
type: EntityType.GenericReference;
|
|
5206
|
-
entityType: EntityType.
|
|
5206
|
+
entityType: EntityType.DefinitionEntity;
|
|
5207
5207
|
entityId: string;
|
|
5208
5208
|
} | {
|
|
5209
5209
|
id: string;
|
|
@@ -5237,7 +5237,7 @@ export declare function getPrimitiveFileValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
5237
5237
|
valueAsType: {
|
|
5238
5238
|
id: string;
|
|
5239
5239
|
type: EntityType.GenericReference;
|
|
5240
|
-
entityType: EntityType.
|
|
5240
|
+
entityType: EntityType.DefinitionEntity;
|
|
5241
5241
|
entityId: string;
|
|
5242
5242
|
} | {
|
|
5243
5243
|
id: string;
|
|
@@ -5275,16 +5275,16 @@ export declare function getPrimitiveUUIDValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
5275
5275
|
id: z.ZodString;
|
|
5276
5276
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
5277
5277
|
entityId: z.ZodString;
|
|
5278
|
-
entityType: z.ZodLiteral<EntityType.
|
|
5278
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
5279
5279
|
}, "strip", z.ZodTypeAny, {
|
|
5280
5280
|
id: string;
|
|
5281
5281
|
type: EntityType.GenericReference;
|
|
5282
|
-
entityType: EntityType.
|
|
5282
|
+
entityType: EntityType.DefinitionEntity;
|
|
5283
5283
|
entityId: string;
|
|
5284
5284
|
}, {
|
|
5285
5285
|
id: string;
|
|
5286
5286
|
type: EntityType.GenericReference;
|
|
5287
|
-
entityType: EntityType.
|
|
5287
|
+
entityType: EntityType.DefinitionEntity;
|
|
5288
5288
|
entityId: string;
|
|
5289
5289
|
}>, z.ZodObject<{
|
|
5290
5290
|
id: z.ZodString;
|
|
@@ -5625,7 +5625,7 @@ export declare function getPrimitiveUUIDValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
5625
5625
|
valueAsType: {
|
|
5626
5626
|
id: string;
|
|
5627
5627
|
type: EntityType.GenericReference;
|
|
5628
|
-
entityType: EntityType.
|
|
5628
|
+
entityType: EntityType.DefinitionEntity;
|
|
5629
5629
|
entityId: string;
|
|
5630
5630
|
} | {
|
|
5631
5631
|
id: string;
|
|
@@ -5663,7 +5663,7 @@ export declare function getPrimitiveUUIDValueSchema(): z.ZodObject<z.objectUtil.
|
|
|
5663
5663
|
valueAsType: {
|
|
5664
5664
|
id: string;
|
|
5665
5665
|
type: EntityType.GenericReference;
|
|
5666
|
-
entityType: EntityType.
|
|
5666
|
+
entityType: EntityType.DefinitionEntity;
|
|
5667
5667
|
entityId: string;
|
|
5668
5668
|
} | {
|
|
5669
5669
|
id: string;
|
|
@@ -5705,16 +5705,16 @@ export declare function getPrimitiveEntityTemplateValueSchema(): z.ZodObject<z.o
|
|
|
5705
5705
|
id: z.ZodString;
|
|
5706
5706
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
5707
5707
|
entityId: z.ZodString;
|
|
5708
|
-
entityType: z.ZodLiteral<EntityType.
|
|
5708
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
5709
5709
|
}, "strip", z.ZodTypeAny, {
|
|
5710
5710
|
id: string;
|
|
5711
5711
|
type: EntityType.GenericReference;
|
|
5712
|
-
entityType: EntityType.
|
|
5712
|
+
entityType: EntityType.DefinitionEntity;
|
|
5713
5713
|
entityId: string;
|
|
5714
5714
|
}, {
|
|
5715
5715
|
id: string;
|
|
5716
5716
|
type: EntityType.GenericReference;
|
|
5717
|
-
entityType: EntityType.
|
|
5717
|
+
entityType: EntityType.DefinitionEntity;
|
|
5718
5718
|
entityId: string;
|
|
5719
5719
|
}>, z.ZodObject<{
|
|
5720
5720
|
id: z.ZodString;
|
|
@@ -6034,16 +6034,16 @@ export declare function getPrimitiveEntityTemplateValueSchema(): z.ZodObject<z.o
|
|
|
6034
6034
|
id: z.ZodString;
|
|
6035
6035
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
6036
6036
|
entityId: z.ZodString;
|
|
6037
|
-
entityType: z.ZodLiteral<EntityType.
|
|
6037
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
6038
6038
|
}, "strip", z.ZodTypeAny, {
|
|
6039
6039
|
id: string;
|
|
6040
6040
|
type: EntityType.GenericReference;
|
|
6041
|
-
entityType: EntityType.
|
|
6041
|
+
entityType: EntityType.DefinitionEntity;
|
|
6042
6042
|
entityId: string;
|
|
6043
6043
|
}, {
|
|
6044
6044
|
id: string;
|
|
6045
6045
|
type: EntityType.GenericReference;
|
|
6046
|
-
entityType: EntityType.
|
|
6046
|
+
entityType: EntityType.DefinitionEntity;
|
|
6047
6047
|
entityId: string;
|
|
6048
6048
|
}>;
|
|
6049
6049
|
autogeneration: z.ZodNull;
|
|
@@ -6054,7 +6054,7 @@ export declare function getPrimitiveEntityTemplateValueSchema(): z.ZodObject<z.o
|
|
|
6054
6054
|
valueAsType: {
|
|
6055
6055
|
id: string;
|
|
6056
6056
|
type: EntityType.GenericReference;
|
|
6057
|
-
entityType: EntityType.
|
|
6057
|
+
entityType: EntityType.DefinitionEntity;
|
|
6058
6058
|
entityId: string;
|
|
6059
6059
|
} | {
|
|
6060
6060
|
id: string;
|
|
@@ -6083,7 +6083,7 @@ export declare function getPrimitiveEntityTemplateValueSchema(): z.ZodObject<z.o
|
|
|
6083
6083
|
value: {
|
|
6084
6084
|
id: string;
|
|
6085
6085
|
type: EntityType.GenericReference;
|
|
6086
|
-
entityType: EntityType.
|
|
6086
|
+
entityType: EntityType.DefinitionEntity;
|
|
6087
6087
|
entityId: string;
|
|
6088
6088
|
};
|
|
6089
6089
|
}, {
|
|
@@ -6093,7 +6093,7 @@ export declare function getPrimitiveEntityTemplateValueSchema(): z.ZodObject<z.o
|
|
|
6093
6093
|
valueAsType: {
|
|
6094
6094
|
id: string;
|
|
6095
6095
|
type: EntityType.GenericReference;
|
|
6096
|
-
entityType: EntityType.
|
|
6096
|
+
entityType: EntityType.DefinitionEntity;
|
|
6097
6097
|
entityId: string;
|
|
6098
6098
|
} | {
|
|
6099
6099
|
id: string;
|
|
@@ -6122,7 +6122,7 @@ export declare function getPrimitiveEntityTemplateValueSchema(): z.ZodObject<z.o
|
|
|
6122
6122
|
value: {
|
|
6123
6123
|
id: string;
|
|
6124
6124
|
type: EntityType.GenericReference;
|
|
6125
|
-
entityType: EntityType.
|
|
6125
|
+
entityType: EntityType.DefinitionEntity;
|
|
6126
6126
|
entityId: string;
|
|
6127
6127
|
};
|
|
6128
6128
|
}>;
|
|
@@ -6136,16 +6136,16 @@ export declare function getPrimitiveActionDescriptorValueSchema(): z.ZodObject<z
|
|
|
6136
6136
|
id: z.ZodString;
|
|
6137
6137
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
6138
6138
|
entityId: z.ZodString;
|
|
6139
|
-
entityType: z.ZodLiteral<EntityType.
|
|
6139
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
6140
6140
|
}, "strip", z.ZodTypeAny, {
|
|
6141
6141
|
id: string;
|
|
6142
6142
|
type: EntityType.GenericReference;
|
|
6143
|
-
entityType: EntityType.
|
|
6143
|
+
entityType: EntityType.DefinitionEntity;
|
|
6144
6144
|
entityId: string;
|
|
6145
6145
|
}, {
|
|
6146
6146
|
id: string;
|
|
6147
6147
|
type: EntityType.GenericReference;
|
|
6148
|
-
entityType: EntityType.
|
|
6148
|
+
entityType: EntityType.DefinitionEntity;
|
|
6149
6149
|
entityId: string;
|
|
6150
6150
|
}>, z.ZodObject<{
|
|
6151
6151
|
id: z.ZodString;
|
|
@@ -6485,7 +6485,7 @@ export declare function getPrimitiveActionDescriptorValueSchema(): z.ZodObject<z
|
|
|
6485
6485
|
valueAsType: {
|
|
6486
6486
|
id: string;
|
|
6487
6487
|
type: EntityType.GenericReference;
|
|
6488
|
-
entityType: EntityType.
|
|
6488
|
+
entityType: EntityType.DefinitionEntity;
|
|
6489
6489
|
entityId: string;
|
|
6490
6490
|
} | {
|
|
6491
6491
|
id: string;
|
|
@@ -6524,7 +6524,7 @@ export declare function getPrimitiveActionDescriptorValueSchema(): z.ZodObject<z
|
|
|
6524
6524
|
valueAsType: {
|
|
6525
6525
|
id: string;
|
|
6526
6526
|
type: EntityType.GenericReference;
|
|
6527
|
-
entityType: EntityType.
|
|
6527
|
+
entityType: EntityType.DefinitionEntity;
|
|
6528
6528
|
entityId: string;
|
|
6529
6529
|
} | {
|
|
6530
6530
|
id: string;
|
|
@@ -6567,16 +6567,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
6567
6567
|
id: z.ZodString;
|
|
6568
6568
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
6569
6569
|
entityId: z.ZodString;
|
|
6570
|
-
entityType: z.ZodLiteral<EntityType.
|
|
6570
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
6571
6571
|
}, "strip", z.ZodTypeAny, {
|
|
6572
6572
|
id: string;
|
|
6573
6573
|
type: EntityType.GenericReference;
|
|
6574
|
-
entityType: EntityType.
|
|
6574
|
+
entityType: EntityType.DefinitionEntity;
|
|
6575
6575
|
entityId: string;
|
|
6576
6576
|
}, {
|
|
6577
6577
|
id: string;
|
|
6578
6578
|
type: EntityType.GenericReference;
|
|
6579
|
-
entityType: EntityType.
|
|
6579
|
+
entityType: EntityType.DefinitionEntity;
|
|
6580
6580
|
entityId: string;
|
|
6581
6581
|
}>, z.ZodObject<{
|
|
6582
6582
|
id: z.ZodString;
|
|
@@ -6967,7 +6967,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
6967
6967
|
valueAsType: {
|
|
6968
6968
|
id: string;
|
|
6969
6969
|
type: EntityType.GenericReference;
|
|
6970
|
-
entityType: EntityType.
|
|
6970
|
+
entityType: EntityType.DefinitionEntity;
|
|
6971
6971
|
entityId: string;
|
|
6972
6972
|
} | {
|
|
6973
6973
|
id: string;
|
|
@@ -7013,7 +7013,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
7013
7013
|
valueAsType: {
|
|
7014
7014
|
id: string;
|
|
7015
7015
|
type: EntityType.GenericReference;
|
|
7016
|
-
entityType: EntityType.
|
|
7016
|
+
entityType: EntityType.DefinitionEntity;
|
|
7017
7017
|
entityId: string;
|
|
7018
7018
|
} | {
|
|
7019
7019
|
id: string;
|
|
@@ -7062,16 +7062,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
7062
7062
|
id: z.ZodString;
|
|
7063
7063
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
7064
7064
|
entityId: z.ZodString;
|
|
7065
|
-
entityType: z.ZodLiteral<EntityType.
|
|
7065
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
7066
7066
|
}, "strip", z.ZodTypeAny, {
|
|
7067
7067
|
id: string;
|
|
7068
7068
|
type: EntityType.GenericReference;
|
|
7069
|
-
entityType: EntityType.
|
|
7069
|
+
entityType: EntityType.DefinitionEntity;
|
|
7070
7070
|
entityId: string;
|
|
7071
7071
|
}, {
|
|
7072
7072
|
id: string;
|
|
7073
7073
|
type: EntityType.GenericReference;
|
|
7074
|
-
entityType: EntityType.
|
|
7074
|
+
entityType: EntityType.DefinitionEntity;
|
|
7075
7075
|
entityId: string;
|
|
7076
7076
|
}>, z.ZodObject<{
|
|
7077
7077
|
id: z.ZodString;
|
|
@@ -7462,7 +7462,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
7462
7462
|
valueAsType: {
|
|
7463
7463
|
id: string;
|
|
7464
7464
|
type: EntityType.GenericReference;
|
|
7465
|
-
entityType: EntityType.
|
|
7465
|
+
entityType: EntityType.DefinitionEntity;
|
|
7466
7466
|
entityId: string;
|
|
7467
7467
|
} | {
|
|
7468
7468
|
id: string;
|
|
@@ -7508,7 +7508,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
7508
7508
|
valueAsType: {
|
|
7509
7509
|
id: string;
|
|
7510
7510
|
type: EntityType.GenericReference;
|
|
7511
|
-
entityType: EntityType.
|
|
7511
|
+
entityType: EntityType.DefinitionEntity;
|
|
7512
7512
|
entityId: string;
|
|
7513
7513
|
} | {
|
|
7514
7514
|
id: string;
|
|
@@ -7557,16 +7557,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
7557
7557
|
id: z.ZodString;
|
|
7558
7558
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
7559
7559
|
entityId: z.ZodString;
|
|
7560
|
-
entityType: z.ZodLiteral<EntityType.
|
|
7560
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
7561
7561
|
}, "strip", z.ZodTypeAny, {
|
|
7562
7562
|
id: string;
|
|
7563
7563
|
type: EntityType.GenericReference;
|
|
7564
|
-
entityType: EntityType.
|
|
7564
|
+
entityType: EntityType.DefinitionEntity;
|
|
7565
7565
|
entityId: string;
|
|
7566
7566
|
}, {
|
|
7567
7567
|
id: string;
|
|
7568
7568
|
type: EntityType.GenericReference;
|
|
7569
|
-
entityType: EntityType.
|
|
7569
|
+
entityType: EntityType.DefinitionEntity;
|
|
7570
7570
|
entityId: string;
|
|
7571
7571
|
}>, z.ZodObject<{
|
|
7572
7572
|
id: z.ZodString;
|
|
@@ -7910,7 +7910,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
7910
7910
|
valueAsType: {
|
|
7911
7911
|
id: string;
|
|
7912
7912
|
type: EntityType.GenericReference;
|
|
7913
|
-
entityType: EntityType.
|
|
7913
|
+
entityType: EntityType.DefinitionEntity;
|
|
7914
7914
|
entityId: string;
|
|
7915
7915
|
} | {
|
|
7916
7916
|
id: string;
|
|
@@ -7948,7 +7948,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
7948
7948
|
valueAsType: {
|
|
7949
7949
|
id: string;
|
|
7950
7950
|
type: EntityType.GenericReference;
|
|
7951
|
-
entityType: EntityType.
|
|
7951
|
+
entityType: EntityType.DefinitionEntity;
|
|
7952
7952
|
entityId: string;
|
|
7953
7953
|
} | {
|
|
7954
7954
|
id: string;
|
|
@@ -7989,16 +7989,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
7989
7989
|
id: z.ZodString;
|
|
7990
7990
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
7991
7991
|
entityId: z.ZodString;
|
|
7992
|
-
entityType: z.ZodLiteral<EntityType.
|
|
7992
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
7993
7993
|
}, "strip", z.ZodTypeAny, {
|
|
7994
7994
|
id: string;
|
|
7995
7995
|
type: EntityType.GenericReference;
|
|
7996
|
-
entityType: EntityType.
|
|
7996
|
+
entityType: EntityType.DefinitionEntity;
|
|
7997
7997
|
entityId: string;
|
|
7998
7998
|
}, {
|
|
7999
7999
|
id: string;
|
|
8000
8000
|
type: EntityType.GenericReference;
|
|
8001
|
-
entityType: EntityType.
|
|
8001
|
+
entityType: EntityType.DefinitionEntity;
|
|
8002
8002
|
entityId: string;
|
|
8003
8003
|
}>, z.ZodObject<{
|
|
8004
8004
|
id: z.ZodString;
|
|
@@ -8323,7 +8323,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
8323
8323
|
valueAsType: {
|
|
8324
8324
|
id: string;
|
|
8325
8325
|
type: EntityType.GenericReference;
|
|
8326
|
-
entityType: EntityType.
|
|
8326
|
+
entityType: EntityType.DefinitionEntity;
|
|
8327
8327
|
entityId: string;
|
|
8328
8328
|
} | {
|
|
8329
8329
|
id: string;
|
|
@@ -8357,7 +8357,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
8357
8357
|
valueAsType: {
|
|
8358
8358
|
id: string;
|
|
8359
8359
|
type: EntityType.GenericReference;
|
|
8360
|
-
entityType: EntityType.
|
|
8360
|
+
entityType: EntityType.DefinitionEntity;
|
|
8361
8361
|
entityId: string;
|
|
8362
8362
|
} | {
|
|
8363
8363
|
id: string;
|
|
@@ -8394,16 +8394,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
8394
8394
|
id: z.ZodString;
|
|
8395
8395
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
8396
8396
|
entityId: z.ZodString;
|
|
8397
|
-
entityType: z.ZodLiteral<EntityType.
|
|
8397
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
8398
8398
|
}, "strip", z.ZodTypeAny, {
|
|
8399
8399
|
id: string;
|
|
8400
8400
|
type: EntityType.GenericReference;
|
|
8401
|
-
entityType: EntityType.
|
|
8401
|
+
entityType: EntityType.DefinitionEntity;
|
|
8402
8402
|
entityId: string;
|
|
8403
8403
|
}, {
|
|
8404
8404
|
id: string;
|
|
8405
8405
|
type: EntityType.GenericReference;
|
|
8406
|
-
entityType: EntityType.
|
|
8406
|
+
entityType: EntityType.DefinitionEntity;
|
|
8407
8407
|
entityId: string;
|
|
8408
8408
|
}>, z.ZodObject<{
|
|
8409
8409
|
id: z.ZodString;
|
|
@@ -8810,7 +8810,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
8810
8810
|
valueAsType: {
|
|
8811
8811
|
id: string;
|
|
8812
8812
|
type: EntityType.GenericReference;
|
|
8813
|
-
entityType: EntityType.
|
|
8813
|
+
entityType: EntityType.DefinitionEntity;
|
|
8814
8814
|
entityId: string;
|
|
8815
8815
|
} | {
|
|
8816
8816
|
id: string;
|
|
@@ -8860,7 +8860,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
8860
8860
|
valueAsType: {
|
|
8861
8861
|
id: string;
|
|
8862
8862
|
type: EntityType.GenericReference;
|
|
8863
|
-
entityType: EntityType.
|
|
8863
|
+
entityType: EntityType.DefinitionEntity;
|
|
8864
8864
|
entityId: string;
|
|
8865
8865
|
} | {
|
|
8866
8866
|
id: string;
|
|
@@ -8913,16 +8913,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
8913
8913
|
id: z.ZodString;
|
|
8914
8914
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
8915
8915
|
entityId: z.ZodString;
|
|
8916
|
-
entityType: z.ZodLiteral<EntityType.
|
|
8916
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
8917
8917
|
}, "strip", z.ZodTypeAny, {
|
|
8918
8918
|
id: string;
|
|
8919
8919
|
type: EntityType.GenericReference;
|
|
8920
|
-
entityType: EntityType.
|
|
8920
|
+
entityType: EntityType.DefinitionEntity;
|
|
8921
8921
|
entityId: string;
|
|
8922
8922
|
}, {
|
|
8923
8923
|
id: string;
|
|
8924
8924
|
type: EntityType.GenericReference;
|
|
8925
|
-
entityType: EntityType.
|
|
8925
|
+
entityType: EntityType.DefinitionEntity;
|
|
8926
8926
|
entityId: string;
|
|
8927
8927
|
}>, z.ZodObject<{
|
|
8928
8928
|
id: z.ZodString;
|
|
@@ -9247,7 +9247,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
9247
9247
|
valueAsType: {
|
|
9248
9248
|
id: string;
|
|
9249
9249
|
type: EntityType.GenericReference;
|
|
9250
|
-
entityType: EntityType.
|
|
9250
|
+
entityType: EntityType.DefinitionEntity;
|
|
9251
9251
|
entityId: string;
|
|
9252
9252
|
} | {
|
|
9253
9253
|
id: string;
|
|
@@ -9281,7 +9281,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
9281
9281
|
valueAsType: {
|
|
9282
9282
|
id: string;
|
|
9283
9283
|
type: EntityType.GenericReference;
|
|
9284
|
-
entityType: EntityType.
|
|
9284
|
+
entityType: EntityType.DefinitionEntity;
|
|
9285
9285
|
entityId: string;
|
|
9286
9286
|
} | {
|
|
9287
9287
|
id: string;
|
|
@@ -9318,16 +9318,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
9318
9318
|
id: z.ZodString;
|
|
9319
9319
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
9320
9320
|
entityId: z.ZodString;
|
|
9321
|
-
entityType: z.ZodLiteral<EntityType.
|
|
9321
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
9322
9322
|
}, "strip", z.ZodTypeAny, {
|
|
9323
9323
|
id: string;
|
|
9324
9324
|
type: EntityType.GenericReference;
|
|
9325
|
-
entityType: EntityType.
|
|
9325
|
+
entityType: EntityType.DefinitionEntity;
|
|
9326
9326
|
entityId: string;
|
|
9327
9327
|
}, {
|
|
9328
9328
|
id: string;
|
|
9329
9329
|
type: EntityType.GenericReference;
|
|
9330
|
-
entityType: EntityType.
|
|
9330
|
+
entityType: EntityType.DefinitionEntity;
|
|
9331
9331
|
entityId: string;
|
|
9332
9332
|
}>, z.ZodObject<{
|
|
9333
9333
|
id: z.ZodString;
|
|
@@ -9652,7 +9652,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
9652
9652
|
valueAsType: {
|
|
9653
9653
|
id: string;
|
|
9654
9654
|
type: EntityType.GenericReference;
|
|
9655
|
-
entityType: EntityType.
|
|
9655
|
+
entityType: EntityType.DefinitionEntity;
|
|
9656
9656
|
entityId: string;
|
|
9657
9657
|
} | {
|
|
9658
9658
|
id: string;
|
|
@@ -9686,7 +9686,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
9686
9686
|
valueAsType: {
|
|
9687
9687
|
id: string;
|
|
9688
9688
|
type: EntityType.GenericReference;
|
|
9689
|
-
entityType: EntityType.
|
|
9689
|
+
entityType: EntityType.DefinitionEntity;
|
|
9690
9690
|
entityId: string;
|
|
9691
9691
|
} | {
|
|
9692
9692
|
id: string;
|
|
@@ -9723,16 +9723,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
9723
9723
|
id: z.ZodString;
|
|
9724
9724
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
9725
9725
|
entityId: z.ZodString;
|
|
9726
|
-
entityType: z.ZodLiteral<EntityType.
|
|
9726
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
9727
9727
|
}, "strip", z.ZodTypeAny, {
|
|
9728
9728
|
id: string;
|
|
9729
9729
|
type: EntityType.GenericReference;
|
|
9730
|
-
entityType: EntityType.
|
|
9730
|
+
entityType: EntityType.DefinitionEntity;
|
|
9731
9731
|
entityId: string;
|
|
9732
9732
|
}, {
|
|
9733
9733
|
id: string;
|
|
9734
9734
|
type: EntityType.GenericReference;
|
|
9735
|
-
entityType: EntityType.
|
|
9735
|
+
entityType: EntityType.DefinitionEntity;
|
|
9736
9736
|
entityId: string;
|
|
9737
9737
|
}>, z.ZodObject<{
|
|
9738
9738
|
id: z.ZodString;
|
|
@@ -10057,7 +10057,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10057
10057
|
valueAsType: {
|
|
10058
10058
|
id: string;
|
|
10059
10059
|
type: EntityType.GenericReference;
|
|
10060
|
-
entityType: EntityType.
|
|
10060
|
+
entityType: EntityType.DefinitionEntity;
|
|
10061
10061
|
entityId: string;
|
|
10062
10062
|
} | {
|
|
10063
10063
|
id: string;
|
|
@@ -10091,7 +10091,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10091
10091
|
valueAsType: {
|
|
10092
10092
|
id: string;
|
|
10093
10093
|
type: EntityType.GenericReference;
|
|
10094
|
-
entityType: EntityType.
|
|
10094
|
+
entityType: EntityType.DefinitionEntity;
|
|
10095
10095
|
entityId: string;
|
|
10096
10096
|
} | {
|
|
10097
10097
|
id: string;
|
|
@@ -10128,16 +10128,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10128
10128
|
id: z.ZodString;
|
|
10129
10129
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10130
10130
|
entityId: z.ZodString;
|
|
10131
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10131
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10132
10132
|
}, "strip", z.ZodTypeAny, {
|
|
10133
10133
|
id: string;
|
|
10134
10134
|
type: EntityType.GenericReference;
|
|
10135
|
-
entityType: EntityType.
|
|
10135
|
+
entityType: EntityType.DefinitionEntity;
|
|
10136
10136
|
entityId: string;
|
|
10137
10137
|
}, {
|
|
10138
10138
|
id: string;
|
|
10139
10139
|
type: EntityType.GenericReference;
|
|
10140
|
-
entityType: EntityType.
|
|
10140
|
+
entityType: EntityType.DefinitionEntity;
|
|
10141
10141
|
entityId: string;
|
|
10142
10142
|
}>, z.ZodObject<{
|
|
10143
10143
|
id: z.ZodString;
|
|
@@ -10478,7 +10478,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10478
10478
|
valueAsType: {
|
|
10479
10479
|
id: string;
|
|
10480
10480
|
type: EntityType.GenericReference;
|
|
10481
|
-
entityType: EntityType.
|
|
10481
|
+
entityType: EntityType.DefinitionEntity;
|
|
10482
10482
|
entityId: string;
|
|
10483
10483
|
} | {
|
|
10484
10484
|
id: string;
|
|
@@ -10516,7 +10516,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10516
10516
|
valueAsType: {
|
|
10517
10517
|
id: string;
|
|
10518
10518
|
type: EntityType.GenericReference;
|
|
10519
|
-
entityType: EntityType.
|
|
10519
|
+
entityType: EntityType.DefinitionEntity;
|
|
10520
10520
|
entityId: string;
|
|
10521
10521
|
} | {
|
|
10522
10522
|
id: string;
|
|
@@ -10557,16 +10557,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10557
10557
|
id: z.ZodString;
|
|
10558
10558
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10559
10559
|
entityId: z.ZodString;
|
|
10560
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10560
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10561
10561
|
}, "strip", z.ZodTypeAny, {
|
|
10562
10562
|
id: string;
|
|
10563
10563
|
type: EntityType.GenericReference;
|
|
10564
|
-
entityType: EntityType.
|
|
10564
|
+
entityType: EntityType.DefinitionEntity;
|
|
10565
10565
|
entityId: string;
|
|
10566
10566
|
}, {
|
|
10567
10567
|
id: string;
|
|
10568
10568
|
type: EntityType.GenericReference;
|
|
10569
|
-
entityType: EntityType.
|
|
10569
|
+
entityType: EntityType.DefinitionEntity;
|
|
10570
10570
|
entityId: string;
|
|
10571
10571
|
}>, z.ZodObject<{
|
|
10572
10572
|
id: z.ZodString;
|
|
@@ -10886,16 +10886,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10886
10886
|
id: z.ZodString;
|
|
10887
10887
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10888
10888
|
entityId: z.ZodString;
|
|
10889
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10889
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10890
10890
|
}, "strip", z.ZodTypeAny, {
|
|
10891
10891
|
id: string;
|
|
10892
10892
|
type: EntityType.GenericReference;
|
|
10893
|
-
entityType: EntityType.
|
|
10893
|
+
entityType: EntityType.DefinitionEntity;
|
|
10894
10894
|
entityId: string;
|
|
10895
10895
|
}, {
|
|
10896
10896
|
id: string;
|
|
10897
10897
|
type: EntityType.GenericReference;
|
|
10898
|
-
entityType: EntityType.
|
|
10898
|
+
entityType: EntityType.DefinitionEntity;
|
|
10899
10899
|
entityId: string;
|
|
10900
10900
|
}>;
|
|
10901
10901
|
autogeneration: z.ZodNull;
|
|
@@ -10906,7 +10906,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10906
10906
|
valueAsType: {
|
|
10907
10907
|
id: string;
|
|
10908
10908
|
type: EntityType.GenericReference;
|
|
10909
|
-
entityType: EntityType.
|
|
10909
|
+
entityType: EntityType.DefinitionEntity;
|
|
10910
10910
|
entityId: string;
|
|
10911
10911
|
} | {
|
|
10912
10912
|
id: string;
|
|
@@ -10935,7 +10935,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10935
10935
|
value: {
|
|
10936
10936
|
id: string;
|
|
10937
10937
|
type: EntityType.GenericReference;
|
|
10938
|
-
entityType: EntityType.
|
|
10938
|
+
entityType: EntityType.DefinitionEntity;
|
|
10939
10939
|
entityId: string;
|
|
10940
10940
|
};
|
|
10941
10941
|
}, {
|
|
@@ -10945,7 +10945,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10945
10945
|
valueAsType: {
|
|
10946
10946
|
id: string;
|
|
10947
10947
|
type: EntityType.GenericReference;
|
|
10948
|
-
entityType: EntityType.
|
|
10948
|
+
entityType: EntityType.DefinitionEntity;
|
|
10949
10949
|
entityId: string;
|
|
10950
10950
|
} | {
|
|
10951
10951
|
id: string;
|
|
@@ -10974,7 +10974,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10974
10974
|
value: {
|
|
10975
10975
|
id: string;
|
|
10976
10976
|
type: EntityType.GenericReference;
|
|
10977
|
-
entityType: EntityType.
|
|
10977
|
+
entityType: EntityType.DefinitionEntity;
|
|
10978
10978
|
entityId: string;
|
|
10979
10979
|
};
|
|
10980
10980
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -10987,16 +10987,16 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
10987
10987
|
id: z.ZodString;
|
|
10988
10988
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10989
10989
|
entityId: z.ZodString;
|
|
10990
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10990
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10991
10991
|
}, "strip", z.ZodTypeAny, {
|
|
10992
10992
|
id: string;
|
|
10993
10993
|
type: EntityType.GenericReference;
|
|
10994
|
-
entityType: EntityType.
|
|
10994
|
+
entityType: EntityType.DefinitionEntity;
|
|
10995
10995
|
entityId: string;
|
|
10996
10996
|
}, {
|
|
10997
10997
|
id: string;
|
|
10998
10998
|
type: EntityType.GenericReference;
|
|
10999
|
-
entityType: EntityType.
|
|
10999
|
+
entityType: EntityType.DefinitionEntity;
|
|
11000
11000
|
entityId: string;
|
|
11001
11001
|
}>, z.ZodObject<{
|
|
11002
11002
|
id: z.ZodString;
|
|
@@ -11336,7 +11336,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
11336
11336
|
valueAsType: {
|
|
11337
11337
|
id: string;
|
|
11338
11338
|
type: EntityType.GenericReference;
|
|
11339
|
-
entityType: EntityType.
|
|
11339
|
+
entityType: EntityType.DefinitionEntity;
|
|
11340
11340
|
entityId: string;
|
|
11341
11341
|
} | {
|
|
11342
11342
|
id: string;
|
|
@@ -11375,7 +11375,7 @@ export declare function getLiteralValueSchema(): z.ZodUnion<[z.ZodObject<z.objec
|
|
|
11375
11375
|
valueAsType: {
|
|
11376
11376
|
id: string;
|
|
11377
11377
|
type: EntityType.GenericReference;
|
|
11378
|
-
entityType: EntityType.
|
|
11378
|
+
entityType: EntityType.DefinitionEntity;
|
|
11379
11379
|
entityId: string;
|
|
11380
11380
|
} | {
|
|
11381
11381
|
id: string;
|