@elyx-code/project-logic-tree 0.0.6121 → 0.0.6123
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 +14011 -14157
- package/dist/index.umd.cjs +220 -220
- 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 +22 -22
- package/dist/tree/utils/names.d.ts +4 -4
- package/dist/tree/utils/shared-data-structure-entity.d.ts +13 -13
- package/dist/tree/utils/traverser.d.ts +10 -8
- 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
|
@@ -90,16 +90,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
90
90
|
id: z.ZodString;
|
|
91
91
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
92
92
|
entityId: z.ZodString;
|
|
93
|
-
entityType: z.ZodLiteral<EntityType.
|
|
93
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
95
|
id: string;
|
|
96
96
|
type: EntityType.GenericReference;
|
|
97
|
-
entityType: EntityType.
|
|
97
|
+
entityType: EntityType.DefinitionEntity;
|
|
98
98
|
entityId: string;
|
|
99
99
|
}, {
|
|
100
100
|
id: string;
|
|
101
101
|
type: EntityType.GenericReference;
|
|
102
|
-
entityType: EntityType.
|
|
102
|
+
entityType: EntityType.DefinitionEntity;
|
|
103
103
|
entityId: string;
|
|
104
104
|
}>, z.ZodObject<{
|
|
105
105
|
id: z.ZodString;
|
|
@@ -490,7 +490,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
490
490
|
valueAsType: {
|
|
491
491
|
id: string;
|
|
492
492
|
type: EntityType.GenericReference;
|
|
493
|
-
entityType: EntityType.
|
|
493
|
+
entityType: EntityType.DefinitionEntity;
|
|
494
494
|
entityId: string;
|
|
495
495
|
} | {
|
|
496
496
|
id: string;
|
|
@@ -536,7 +536,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
536
536
|
valueAsType: {
|
|
537
537
|
id: string;
|
|
538
538
|
type: EntityType.GenericReference;
|
|
539
|
-
entityType: EntityType.
|
|
539
|
+
entityType: EntityType.DefinitionEntity;
|
|
540
540
|
entityId: string;
|
|
541
541
|
} | {
|
|
542
542
|
id: string;
|
|
@@ -585,16 +585,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
585
585
|
id: z.ZodString;
|
|
586
586
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
587
587
|
entityId: z.ZodString;
|
|
588
|
-
entityType: z.ZodLiteral<EntityType.
|
|
588
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
589
589
|
}, "strip", z.ZodTypeAny, {
|
|
590
590
|
id: string;
|
|
591
591
|
type: EntityType.GenericReference;
|
|
592
|
-
entityType: EntityType.
|
|
592
|
+
entityType: EntityType.DefinitionEntity;
|
|
593
593
|
entityId: string;
|
|
594
594
|
}, {
|
|
595
595
|
id: string;
|
|
596
596
|
type: EntityType.GenericReference;
|
|
597
|
-
entityType: EntityType.
|
|
597
|
+
entityType: EntityType.DefinitionEntity;
|
|
598
598
|
entityId: string;
|
|
599
599
|
}>, z.ZodObject<{
|
|
600
600
|
id: z.ZodString;
|
|
@@ -985,7 +985,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
985
985
|
valueAsType: {
|
|
986
986
|
id: string;
|
|
987
987
|
type: EntityType.GenericReference;
|
|
988
|
-
entityType: EntityType.
|
|
988
|
+
entityType: EntityType.DefinitionEntity;
|
|
989
989
|
entityId: string;
|
|
990
990
|
} | {
|
|
991
991
|
id: string;
|
|
@@ -1031,7 +1031,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1031
1031
|
valueAsType: {
|
|
1032
1032
|
id: string;
|
|
1033
1033
|
type: EntityType.GenericReference;
|
|
1034
|
-
entityType: EntityType.
|
|
1034
|
+
entityType: EntityType.DefinitionEntity;
|
|
1035
1035
|
entityId: string;
|
|
1036
1036
|
} | {
|
|
1037
1037
|
id: string;
|
|
@@ -1080,16 +1080,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1080
1080
|
id: z.ZodString;
|
|
1081
1081
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
1082
1082
|
entityId: z.ZodString;
|
|
1083
|
-
entityType: z.ZodLiteral<EntityType.
|
|
1083
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
1084
1084
|
}, "strip", z.ZodTypeAny, {
|
|
1085
1085
|
id: string;
|
|
1086
1086
|
type: EntityType.GenericReference;
|
|
1087
|
-
entityType: EntityType.
|
|
1087
|
+
entityType: EntityType.DefinitionEntity;
|
|
1088
1088
|
entityId: string;
|
|
1089
1089
|
}, {
|
|
1090
1090
|
id: string;
|
|
1091
1091
|
type: EntityType.GenericReference;
|
|
1092
|
-
entityType: EntityType.
|
|
1092
|
+
entityType: EntityType.DefinitionEntity;
|
|
1093
1093
|
entityId: string;
|
|
1094
1094
|
}>, z.ZodObject<{
|
|
1095
1095
|
id: z.ZodString;
|
|
@@ -1433,7 +1433,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1433
1433
|
valueAsType: {
|
|
1434
1434
|
id: string;
|
|
1435
1435
|
type: EntityType.GenericReference;
|
|
1436
|
-
entityType: EntityType.
|
|
1436
|
+
entityType: EntityType.DefinitionEntity;
|
|
1437
1437
|
entityId: string;
|
|
1438
1438
|
} | {
|
|
1439
1439
|
id: string;
|
|
@@ -1471,7 +1471,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1471
1471
|
valueAsType: {
|
|
1472
1472
|
id: string;
|
|
1473
1473
|
type: EntityType.GenericReference;
|
|
1474
|
-
entityType: EntityType.
|
|
1474
|
+
entityType: EntityType.DefinitionEntity;
|
|
1475
1475
|
entityId: string;
|
|
1476
1476
|
} | {
|
|
1477
1477
|
id: string;
|
|
@@ -1512,16 +1512,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1512
1512
|
id: z.ZodString;
|
|
1513
1513
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
1514
1514
|
entityId: z.ZodString;
|
|
1515
|
-
entityType: z.ZodLiteral<EntityType.
|
|
1515
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
1516
1516
|
}, "strip", z.ZodTypeAny, {
|
|
1517
1517
|
id: string;
|
|
1518
1518
|
type: EntityType.GenericReference;
|
|
1519
|
-
entityType: EntityType.
|
|
1519
|
+
entityType: EntityType.DefinitionEntity;
|
|
1520
1520
|
entityId: string;
|
|
1521
1521
|
}, {
|
|
1522
1522
|
id: string;
|
|
1523
1523
|
type: EntityType.GenericReference;
|
|
1524
|
-
entityType: EntityType.
|
|
1524
|
+
entityType: EntityType.DefinitionEntity;
|
|
1525
1525
|
entityId: string;
|
|
1526
1526
|
}>, z.ZodObject<{
|
|
1527
1527
|
id: z.ZodString;
|
|
@@ -1846,7 +1846,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1846
1846
|
valueAsType: {
|
|
1847
1847
|
id: string;
|
|
1848
1848
|
type: EntityType.GenericReference;
|
|
1849
|
-
entityType: EntityType.
|
|
1849
|
+
entityType: EntityType.DefinitionEntity;
|
|
1850
1850
|
entityId: string;
|
|
1851
1851
|
} | {
|
|
1852
1852
|
id: string;
|
|
@@ -1880,7 +1880,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1880
1880
|
valueAsType: {
|
|
1881
1881
|
id: string;
|
|
1882
1882
|
type: EntityType.GenericReference;
|
|
1883
|
-
entityType: EntityType.
|
|
1883
|
+
entityType: EntityType.DefinitionEntity;
|
|
1884
1884
|
entityId: string;
|
|
1885
1885
|
} | {
|
|
1886
1886
|
id: string;
|
|
@@ -1917,16 +1917,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1917
1917
|
id: z.ZodString;
|
|
1918
1918
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
1919
1919
|
entityId: z.ZodString;
|
|
1920
|
-
entityType: z.ZodLiteral<EntityType.
|
|
1920
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
1921
1921
|
}, "strip", z.ZodTypeAny, {
|
|
1922
1922
|
id: string;
|
|
1923
1923
|
type: EntityType.GenericReference;
|
|
1924
|
-
entityType: EntityType.
|
|
1924
|
+
entityType: EntityType.DefinitionEntity;
|
|
1925
1925
|
entityId: string;
|
|
1926
1926
|
}, {
|
|
1927
1927
|
id: string;
|
|
1928
1928
|
type: EntityType.GenericReference;
|
|
1929
|
-
entityType: EntityType.
|
|
1929
|
+
entityType: EntityType.DefinitionEntity;
|
|
1930
1930
|
entityId: string;
|
|
1931
1931
|
}>, z.ZodObject<{
|
|
1932
1932
|
id: z.ZodString;
|
|
@@ -2333,7 +2333,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2333
2333
|
valueAsType: {
|
|
2334
2334
|
id: string;
|
|
2335
2335
|
type: EntityType.GenericReference;
|
|
2336
|
-
entityType: EntityType.
|
|
2336
|
+
entityType: EntityType.DefinitionEntity;
|
|
2337
2337
|
entityId: string;
|
|
2338
2338
|
} | {
|
|
2339
2339
|
id: string;
|
|
@@ -2383,7 +2383,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2383
2383
|
valueAsType: {
|
|
2384
2384
|
id: string;
|
|
2385
2385
|
type: EntityType.GenericReference;
|
|
2386
|
-
entityType: EntityType.
|
|
2386
|
+
entityType: EntityType.DefinitionEntity;
|
|
2387
2387
|
entityId: string;
|
|
2388
2388
|
} | {
|
|
2389
2389
|
id: string;
|
|
@@ -2436,16 +2436,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2436
2436
|
id: z.ZodString;
|
|
2437
2437
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
2438
2438
|
entityId: z.ZodString;
|
|
2439
|
-
entityType: z.ZodLiteral<EntityType.
|
|
2439
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
2440
2440
|
}, "strip", z.ZodTypeAny, {
|
|
2441
2441
|
id: string;
|
|
2442
2442
|
type: EntityType.GenericReference;
|
|
2443
|
-
entityType: EntityType.
|
|
2443
|
+
entityType: EntityType.DefinitionEntity;
|
|
2444
2444
|
entityId: string;
|
|
2445
2445
|
}, {
|
|
2446
2446
|
id: string;
|
|
2447
2447
|
type: EntityType.GenericReference;
|
|
2448
|
-
entityType: EntityType.
|
|
2448
|
+
entityType: EntityType.DefinitionEntity;
|
|
2449
2449
|
entityId: string;
|
|
2450
2450
|
}>, z.ZodObject<{
|
|
2451
2451
|
id: z.ZodString;
|
|
@@ -2770,7 +2770,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2770
2770
|
valueAsType: {
|
|
2771
2771
|
id: string;
|
|
2772
2772
|
type: EntityType.GenericReference;
|
|
2773
|
-
entityType: EntityType.
|
|
2773
|
+
entityType: EntityType.DefinitionEntity;
|
|
2774
2774
|
entityId: string;
|
|
2775
2775
|
} | {
|
|
2776
2776
|
id: string;
|
|
@@ -2804,7 +2804,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2804
2804
|
valueAsType: {
|
|
2805
2805
|
id: string;
|
|
2806
2806
|
type: EntityType.GenericReference;
|
|
2807
|
-
entityType: EntityType.
|
|
2807
|
+
entityType: EntityType.DefinitionEntity;
|
|
2808
2808
|
entityId: string;
|
|
2809
2809
|
} | {
|
|
2810
2810
|
id: string;
|
|
@@ -2841,16 +2841,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
2841
2841
|
id: z.ZodString;
|
|
2842
2842
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
2843
2843
|
entityId: z.ZodString;
|
|
2844
|
-
entityType: z.ZodLiteral<EntityType.
|
|
2844
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
2845
2845
|
}, "strip", z.ZodTypeAny, {
|
|
2846
2846
|
id: string;
|
|
2847
2847
|
type: EntityType.GenericReference;
|
|
2848
|
-
entityType: EntityType.
|
|
2848
|
+
entityType: EntityType.DefinitionEntity;
|
|
2849
2849
|
entityId: string;
|
|
2850
2850
|
}, {
|
|
2851
2851
|
id: string;
|
|
2852
2852
|
type: EntityType.GenericReference;
|
|
2853
|
-
entityType: EntityType.
|
|
2853
|
+
entityType: EntityType.DefinitionEntity;
|
|
2854
2854
|
entityId: string;
|
|
2855
2855
|
}>, z.ZodObject<{
|
|
2856
2856
|
id: z.ZodString;
|
|
@@ -3175,7 +3175,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3175
3175
|
valueAsType: {
|
|
3176
3176
|
id: string;
|
|
3177
3177
|
type: EntityType.GenericReference;
|
|
3178
|
-
entityType: EntityType.
|
|
3178
|
+
entityType: EntityType.DefinitionEntity;
|
|
3179
3179
|
entityId: string;
|
|
3180
3180
|
} | {
|
|
3181
3181
|
id: string;
|
|
@@ -3209,7 +3209,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3209
3209
|
valueAsType: {
|
|
3210
3210
|
id: string;
|
|
3211
3211
|
type: EntityType.GenericReference;
|
|
3212
|
-
entityType: EntityType.
|
|
3212
|
+
entityType: EntityType.DefinitionEntity;
|
|
3213
3213
|
entityId: string;
|
|
3214
3214
|
} | {
|
|
3215
3215
|
id: string;
|
|
@@ -3246,16 +3246,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3246
3246
|
id: z.ZodString;
|
|
3247
3247
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
3248
3248
|
entityId: z.ZodString;
|
|
3249
|
-
entityType: z.ZodLiteral<EntityType.
|
|
3249
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
3250
3250
|
}, "strip", z.ZodTypeAny, {
|
|
3251
3251
|
id: string;
|
|
3252
3252
|
type: EntityType.GenericReference;
|
|
3253
|
-
entityType: EntityType.
|
|
3253
|
+
entityType: EntityType.DefinitionEntity;
|
|
3254
3254
|
entityId: string;
|
|
3255
3255
|
}, {
|
|
3256
3256
|
id: string;
|
|
3257
3257
|
type: EntityType.GenericReference;
|
|
3258
|
-
entityType: EntityType.
|
|
3258
|
+
entityType: EntityType.DefinitionEntity;
|
|
3259
3259
|
entityId: string;
|
|
3260
3260
|
}>, z.ZodObject<{
|
|
3261
3261
|
id: z.ZodString;
|
|
@@ -3580,7 +3580,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3580
3580
|
valueAsType: {
|
|
3581
3581
|
id: string;
|
|
3582
3582
|
type: EntityType.GenericReference;
|
|
3583
|
-
entityType: EntityType.
|
|
3583
|
+
entityType: EntityType.DefinitionEntity;
|
|
3584
3584
|
entityId: string;
|
|
3585
3585
|
} | {
|
|
3586
3586
|
id: string;
|
|
@@ -3614,7 +3614,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3614
3614
|
valueAsType: {
|
|
3615
3615
|
id: string;
|
|
3616
3616
|
type: EntityType.GenericReference;
|
|
3617
|
-
entityType: EntityType.
|
|
3617
|
+
entityType: EntityType.DefinitionEntity;
|
|
3618
3618
|
entityId: string;
|
|
3619
3619
|
} | {
|
|
3620
3620
|
id: string;
|
|
@@ -3651,16 +3651,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
3651
3651
|
id: z.ZodString;
|
|
3652
3652
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
3653
3653
|
entityId: z.ZodString;
|
|
3654
|
-
entityType: z.ZodLiteral<EntityType.
|
|
3654
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
3655
3655
|
}, "strip", z.ZodTypeAny, {
|
|
3656
3656
|
id: string;
|
|
3657
3657
|
type: EntityType.GenericReference;
|
|
3658
|
-
entityType: EntityType.
|
|
3658
|
+
entityType: EntityType.DefinitionEntity;
|
|
3659
3659
|
entityId: string;
|
|
3660
3660
|
}, {
|
|
3661
3661
|
id: string;
|
|
3662
3662
|
type: EntityType.GenericReference;
|
|
3663
|
-
entityType: EntityType.
|
|
3663
|
+
entityType: EntityType.DefinitionEntity;
|
|
3664
3664
|
entityId: string;
|
|
3665
3665
|
}>, z.ZodObject<{
|
|
3666
3666
|
id: z.ZodString;
|
|
@@ -4001,7 +4001,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4001
4001
|
valueAsType: {
|
|
4002
4002
|
id: string;
|
|
4003
4003
|
type: EntityType.GenericReference;
|
|
4004
|
-
entityType: EntityType.
|
|
4004
|
+
entityType: EntityType.DefinitionEntity;
|
|
4005
4005
|
entityId: string;
|
|
4006
4006
|
} | {
|
|
4007
4007
|
id: string;
|
|
@@ -4039,7 +4039,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4039
4039
|
valueAsType: {
|
|
4040
4040
|
id: string;
|
|
4041
4041
|
type: EntityType.GenericReference;
|
|
4042
|
-
entityType: EntityType.
|
|
4042
|
+
entityType: EntityType.DefinitionEntity;
|
|
4043
4043
|
entityId: string;
|
|
4044
4044
|
} | {
|
|
4045
4045
|
id: string;
|
|
@@ -4080,16 +4080,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4080
4080
|
id: z.ZodString;
|
|
4081
4081
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4082
4082
|
entityId: z.ZodString;
|
|
4083
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4083
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4084
4084
|
}, "strip", z.ZodTypeAny, {
|
|
4085
4085
|
id: string;
|
|
4086
4086
|
type: EntityType.GenericReference;
|
|
4087
|
-
entityType: EntityType.
|
|
4087
|
+
entityType: EntityType.DefinitionEntity;
|
|
4088
4088
|
entityId: string;
|
|
4089
4089
|
}, {
|
|
4090
4090
|
id: string;
|
|
4091
4091
|
type: EntityType.GenericReference;
|
|
4092
|
-
entityType: EntityType.
|
|
4092
|
+
entityType: EntityType.DefinitionEntity;
|
|
4093
4093
|
entityId: string;
|
|
4094
4094
|
}>, z.ZodObject<{
|
|
4095
4095
|
id: z.ZodString;
|
|
@@ -4409,16 +4409,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4409
4409
|
id: z.ZodString;
|
|
4410
4410
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4411
4411
|
entityId: z.ZodString;
|
|
4412
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4412
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4413
4413
|
}, "strip", z.ZodTypeAny, {
|
|
4414
4414
|
id: string;
|
|
4415
4415
|
type: EntityType.GenericReference;
|
|
4416
|
-
entityType: EntityType.
|
|
4416
|
+
entityType: EntityType.DefinitionEntity;
|
|
4417
4417
|
entityId: string;
|
|
4418
4418
|
}, {
|
|
4419
4419
|
id: string;
|
|
4420
4420
|
type: EntityType.GenericReference;
|
|
4421
|
-
entityType: EntityType.
|
|
4421
|
+
entityType: EntityType.DefinitionEntity;
|
|
4422
4422
|
entityId: string;
|
|
4423
4423
|
}>;
|
|
4424
4424
|
autogeneration: z.ZodNull;
|
|
@@ -4429,7 +4429,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4429
4429
|
valueAsType: {
|
|
4430
4430
|
id: string;
|
|
4431
4431
|
type: EntityType.GenericReference;
|
|
4432
|
-
entityType: EntityType.
|
|
4432
|
+
entityType: EntityType.DefinitionEntity;
|
|
4433
4433
|
entityId: string;
|
|
4434
4434
|
} | {
|
|
4435
4435
|
id: string;
|
|
@@ -4458,7 +4458,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4458
4458
|
value: {
|
|
4459
4459
|
id: string;
|
|
4460
4460
|
type: EntityType.GenericReference;
|
|
4461
|
-
entityType: EntityType.
|
|
4461
|
+
entityType: EntityType.DefinitionEntity;
|
|
4462
4462
|
entityId: string;
|
|
4463
4463
|
};
|
|
4464
4464
|
}, {
|
|
@@ -4468,7 +4468,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4468
4468
|
valueAsType: {
|
|
4469
4469
|
id: string;
|
|
4470
4470
|
type: EntityType.GenericReference;
|
|
4471
|
-
entityType: EntityType.
|
|
4471
|
+
entityType: EntityType.DefinitionEntity;
|
|
4472
4472
|
entityId: string;
|
|
4473
4473
|
} | {
|
|
4474
4474
|
id: string;
|
|
@@ -4497,7 +4497,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4497
4497
|
value: {
|
|
4498
4498
|
id: string;
|
|
4499
4499
|
type: EntityType.GenericReference;
|
|
4500
|
-
entityType: EntityType.
|
|
4500
|
+
entityType: EntityType.DefinitionEntity;
|
|
4501
4501
|
entityId: string;
|
|
4502
4502
|
};
|
|
4503
4503
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -4510,16 +4510,16 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4510
4510
|
id: z.ZodString;
|
|
4511
4511
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
4512
4512
|
entityId: z.ZodString;
|
|
4513
|
-
entityType: z.ZodLiteral<EntityType.
|
|
4513
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
4514
4514
|
}, "strip", z.ZodTypeAny, {
|
|
4515
4515
|
id: string;
|
|
4516
4516
|
type: EntityType.GenericReference;
|
|
4517
|
-
entityType: EntityType.
|
|
4517
|
+
entityType: EntityType.DefinitionEntity;
|
|
4518
4518
|
entityId: string;
|
|
4519
4519
|
}, {
|
|
4520
4520
|
id: string;
|
|
4521
4521
|
type: EntityType.GenericReference;
|
|
4522
|
-
entityType: EntityType.
|
|
4522
|
+
entityType: EntityType.DefinitionEntity;
|
|
4523
4523
|
entityId: string;
|
|
4524
4524
|
}>, z.ZodObject<{
|
|
4525
4525
|
id: z.ZodString;
|
|
@@ -4859,7 +4859,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4859
4859
|
valueAsType: {
|
|
4860
4860
|
id: string;
|
|
4861
4861
|
type: EntityType.GenericReference;
|
|
4862
|
-
entityType: EntityType.
|
|
4862
|
+
entityType: EntityType.DefinitionEntity;
|
|
4863
4863
|
entityId: string;
|
|
4864
4864
|
} | {
|
|
4865
4865
|
id: string;
|
|
@@ -4898,7 +4898,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
4898
4898
|
valueAsType: {
|
|
4899
4899
|
id: string;
|
|
4900
4900
|
type: EntityType.GenericReference;
|
|
4901
|
-
entityType: EntityType.
|
|
4901
|
+
entityType: EntityType.DefinitionEntity;
|
|
4902
4902
|
entityId: string;
|
|
4903
4903
|
} | {
|
|
4904
4904
|
id: string;
|
|
@@ -5217,7 +5217,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5217
5217
|
valueAsType: {
|
|
5218
5218
|
id: string;
|
|
5219
5219
|
type: EntityType.GenericReference;
|
|
5220
|
-
entityType: EntityType.
|
|
5220
|
+
entityType: EntityType.DefinitionEntity;
|
|
5221
5221
|
entityId: string;
|
|
5222
5222
|
} | {
|
|
5223
5223
|
id: string;
|
|
@@ -5263,7 +5263,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5263
5263
|
valueAsType: {
|
|
5264
5264
|
id: string;
|
|
5265
5265
|
type: EntityType.GenericReference;
|
|
5266
|
-
entityType: EntityType.
|
|
5266
|
+
entityType: EntityType.DefinitionEntity;
|
|
5267
5267
|
entityId: string;
|
|
5268
5268
|
} | {
|
|
5269
5269
|
id: string;
|
|
@@ -5309,7 +5309,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5309
5309
|
valueAsType: {
|
|
5310
5310
|
id: string;
|
|
5311
5311
|
type: EntityType.GenericReference;
|
|
5312
|
-
entityType: EntityType.
|
|
5312
|
+
entityType: EntityType.DefinitionEntity;
|
|
5313
5313
|
entityId: string;
|
|
5314
5314
|
} | {
|
|
5315
5315
|
id: string;
|
|
@@ -5347,7 +5347,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5347
5347
|
valueAsType: {
|
|
5348
5348
|
id: string;
|
|
5349
5349
|
type: EntityType.GenericReference;
|
|
5350
|
-
entityType: EntityType.
|
|
5350
|
+
entityType: EntityType.DefinitionEntity;
|
|
5351
5351
|
entityId: string;
|
|
5352
5352
|
} | {
|
|
5353
5353
|
id: string;
|
|
@@ -5381,7 +5381,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5381
5381
|
valueAsType: {
|
|
5382
5382
|
id: string;
|
|
5383
5383
|
type: EntityType.GenericReference;
|
|
5384
|
-
entityType: EntityType.
|
|
5384
|
+
entityType: EntityType.DefinitionEntity;
|
|
5385
5385
|
entityId: string;
|
|
5386
5386
|
} | {
|
|
5387
5387
|
id: string;
|
|
@@ -5431,7 +5431,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5431
5431
|
valueAsType: {
|
|
5432
5432
|
id: string;
|
|
5433
5433
|
type: EntityType.GenericReference;
|
|
5434
|
-
entityType: EntityType.
|
|
5434
|
+
entityType: EntityType.DefinitionEntity;
|
|
5435
5435
|
entityId: string;
|
|
5436
5436
|
} | {
|
|
5437
5437
|
id: string;
|
|
@@ -5465,7 +5465,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5465
5465
|
valueAsType: {
|
|
5466
5466
|
id: string;
|
|
5467
5467
|
type: EntityType.GenericReference;
|
|
5468
|
-
entityType: EntityType.
|
|
5468
|
+
entityType: EntityType.DefinitionEntity;
|
|
5469
5469
|
entityId: string;
|
|
5470
5470
|
} | {
|
|
5471
5471
|
id: string;
|
|
@@ -5499,7 +5499,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5499
5499
|
valueAsType: {
|
|
5500
5500
|
id: string;
|
|
5501
5501
|
type: EntityType.GenericReference;
|
|
5502
|
-
entityType: EntityType.
|
|
5502
|
+
entityType: EntityType.DefinitionEntity;
|
|
5503
5503
|
entityId: string;
|
|
5504
5504
|
} | {
|
|
5505
5505
|
id: string;
|
|
@@ -5533,7 +5533,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5533
5533
|
valueAsType: {
|
|
5534
5534
|
id: string;
|
|
5535
5535
|
type: EntityType.GenericReference;
|
|
5536
|
-
entityType: EntityType.
|
|
5536
|
+
entityType: EntityType.DefinitionEntity;
|
|
5537
5537
|
entityId: string;
|
|
5538
5538
|
} | {
|
|
5539
5539
|
id: string;
|
|
@@ -5571,7 +5571,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5571
5571
|
valueAsType: {
|
|
5572
5572
|
id: string;
|
|
5573
5573
|
type: EntityType.GenericReference;
|
|
5574
|
-
entityType: EntityType.
|
|
5574
|
+
entityType: EntityType.DefinitionEntity;
|
|
5575
5575
|
entityId: string;
|
|
5576
5576
|
} | {
|
|
5577
5577
|
id: string;
|
|
@@ -5600,7 +5600,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5600
5600
|
value: {
|
|
5601
5601
|
id: string;
|
|
5602
5602
|
type: EntityType.GenericReference;
|
|
5603
|
-
entityType: EntityType.
|
|
5603
|
+
entityType: EntityType.DefinitionEntity;
|
|
5604
5604
|
entityId: string;
|
|
5605
5605
|
};
|
|
5606
5606
|
} | {
|
|
@@ -5610,7 +5610,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5610
5610
|
valueAsType: {
|
|
5611
5611
|
id: string;
|
|
5612
5612
|
type: EntityType.GenericReference;
|
|
5613
|
-
entityType: EntityType.
|
|
5613
|
+
entityType: EntityType.DefinitionEntity;
|
|
5614
5614
|
entityId: string;
|
|
5615
5615
|
} | {
|
|
5616
5616
|
id: string;
|
|
@@ -5722,7 +5722,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5722
5722
|
valueAsType: {
|
|
5723
5723
|
id: string;
|
|
5724
5724
|
type: EntityType.GenericReference;
|
|
5725
|
-
entityType: EntityType.
|
|
5725
|
+
entityType: EntityType.DefinitionEntity;
|
|
5726
5726
|
entityId: string;
|
|
5727
5727
|
} | {
|
|
5728
5728
|
id: string;
|
|
@@ -5768,7 +5768,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5768
5768
|
valueAsType: {
|
|
5769
5769
|
id: string;
|
|
5770
5770
|
type: EntityType.GenericReference;
|
|
5771
|
-
entityType: EntityType.
|
|
5771
|
+
entityType: EntityType.DefinitionEntity;
|
|
5772
5772
|
entityId: string;
|
|
5773
5773
|
} | {
|
|
5774
5774
|
id: string;
|
|
@@ -5814,7 +5814,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5814
5814
|
valueAsType: {
|
|
5815
5815
|
id: string;
|
|
5816
5816
|
type: EntityType.GenericReference;
|
|
5817
|
-
entityType: EntityType.
|
|
5817
|
+
entityType: EntityType.DefinitionEntity;
|
|
5818
5818
|
entityId: string;
|
|
5819
5819
|
} | {
|
|
5820
5820
|
id: string;
|
|
@@ -5852,7 +5852,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5852
5852
|
valueAsType: {
|
|
5853
5853
|
id: string;
|
|
5854
5854
|
type: EntityType.GenericReference;
|
|
5855
|
-
entityType: EntityType.
|
|
5855
|
+
entityType: EntityType.DefinitionEntity;
|
|
5856
5856
|
entityId: string;
|
|
5857
5857
|
} | {
|
|
5858
5858
|
id: string;
|
|
@@ -5886,7 +5886,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5886
5886
|
valueAsType: {
|
|
5887
5887
|
id: string;
|
|
5888
5888
|
type: EntityType.GenericReference;
|
|
5889
|
-
entityType: EntityType.
|
|
5889
|
+
entityType: EntityType.DefinitionEntity;
|
|
5890
5890
|
entityId: string;
|
|
5891
5891
|
} | {
|
|
5892
5892
|
id: string;
|
|
@@ -5936,7 +5936,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5936
5936
|
valueAsType: {
|
|
5937
5937
|
id: string;
|
|
5938
5938
|
type: EntityType.GenericReference;
|
|
5939
|
-
entityType: EntityType.
|
|
5939
|
+
entityType: EntityType.DefinitionEntity;
|
|
5940
5940
|
entityId: string;
|
|
5941
5941
|
} | {
|
|
5942
5942
|
id: string;
|
|
@@ -5970,7 +5970,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5970
5970
|
valueAsType: {
|
|
5971
5971
|
id: string;
|
|
5972
5972
|
type: EntityType.GenericReference;
|
|
5973
|
-
entityType: EntityType.
|
|
5973
|
+
entityType: EntityType.DefinitionEntity;
|
|
5974
5974
|
entityId: string;
|
|
5975
5975
|
} | {
|
|
5976
5976
|
id: string;
|
|
@@ -6004,7 +6004,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
6004
6004
|
valueAsType: {
|
|
6005
6005
|
id: string;
|
|
6006
6006
|
type: EntityType.GenericReference;
|
|
6007
|
-
entityType: EntityType.
|
|
6007
|
+
entityType: EntityType.DefinitionEntity;
|
|
6008
6008
|
entityId: string;
|
|
6009
6009
|
} | {
|
|
6010
6010
|
id: string;
|
|
@@ -6038,7 +6038,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
6038
6038
|
valueAsType: {
|
|
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;
|
|
@@ -6076,7 +6076,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
6076
6076
|
valueAsType: {
|
|
6077
6077
|
id: string;
|
|
6078
6078
|
type: EntityType.GenericReference;
|
|
6079
|
-
entityType: EntityType.
|
|
6079
|
+
entityType: EntityType.DefinitionEntity;
|
|
6080
6080
|
entityId: string;
|
|
6081
6081
|
} | {
|
|
6082
6082
|
id: string;
|
|
@@ -6105,7 +6105,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
6105
6105
|
value: {
|
|
6106
6106
|
id: string;
|
|
6107
6107
|
type: EntityType.GenericReference;
|
|
6108
|
-
entityType: EntityType.
|
|
6108
|
+
entityType: EntityType.DefinitionEntity;
|
|
6109
6109
|
entityId: string;
|
|
6110
6110
|
};
|
|
6111
6111
|
} | {
|
|
@@ -6115,7 +6115,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
6115
6115
|
valueAsType: {
|
|
6116
6116
|
id: string;
|
|
6117
6117
|
type: EntityType.GenericReference;
|
|
6118
|
-
entityType: EntityType.
|
|
6118
|
+
entityType: EntityType.DefinitionEntity;
|
|
6119
6119
|
entityId: string;
|
|
6120
6120
|
} | {
|
|
6121
6121
|
id: string;
|
|
@@ -6183,16 +6183,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6183
6183
|
id: z.ZodString;
|
|
6184
6184
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
6185
6185
|
entityId: z.ZodString;
|
|
6186
|
-
entityType: z.ZodLiteral<EntityType.
|
|
6186
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
6187
6187
|
}, "strip", z.ZodTypeAny, {
|
|
6188
6188
|
id: string;
|
|
6189
6189
|
type: EntityType.GenericReference;
|
|
6190
|
-
entityType: EntityType.
|
|
6190
|
+
entityType: EntityType.DefinitionEntity;
|
|
6191
6191
|
entityId: string;
|
|
6192
6192
|
}, {
|
|
6193
6193
|
id: string;
|
|
6194
6194
|
type: EntityType.GenericReference;
|
|
6195
|
-
entityType: EntityType.
|
|
6195
|
+
entityType: EntityType.DefinitionEntity;
|
|
6196
6196
|
entityId: string;
|
|
6197
6197
|
}>, z.ZodObject<{
|
|
6198
6198
|
id: z.ZodString;
|
|
@@ -6583,7 +6583,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6583
6583
|
valueAsType: {
|
|
6584
6584
|
id: string;
|
|
6585
6585
|
type: EntityType.GenericReference;
|
|
6586
|
-
entityType: EntityType.
|
|
6586
|
+
entityType: EntityType.DefinitionEntity;
|
|
6587
6587
|
entityId: string;
|
|
6588
6588
|
} | {
|
|
6589
6589
|
id: string;
|
|
@@ -6629,7 +6629,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6629
6629
|
valueAsType: {
|
|
6630
6630
|
id: string;
|
|
6631
6631
|
type: EntityType.GenericReference;
|
|
6632
|
-
entityType: EntityType.
|
|
6632
|
+
entityType: EntityType.DefinitionEntity;
|
|
6633
6633
|
entityId: string;
|
|
6634
6634
|
} | {
|
|
6635
6635
|
id: string;
|
|
@@ -6678,16 +6678,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
6678
6678
|
id: z.ZodString;
|
|
6679
6679
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
6680
6680
|
entityId: z.ZodString;
|
|
6681
|
-
entityType: z.ZodLiteral<EntityType.
|
|
6681
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
6682
6682
|
}, "strip", z.ZodTypeAny, {
|
|
6683
6683
|
id: string;
|
|
6684
6684
|
type: EntityType.GenericReference;
|
|
6685
|
-
entityType: EntityType.
|
|
6685
|
+
entityType: EntityType.DefinitionEntity;
|
|
6686
6686
|
entityId: string;
|
|
6687
6687
|
}, {
|
|
6688
6688
|
id: string;
|
|
6689
6689
|
type: EntityType.GenericReference;
|
|
6690
|
-
entityType: EntityType.
|
|
6690
|
+
entityType: EntityType.DefinitionEntity;
|
|
6691
6691
|
entityId: string;
|
|
6692
6692
|
}>, z.ZodObject<{
|
|
6693
6693
|
id: z.ZodString;
|
|
@@ -7078,7 +7078,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7078
7078
|
valueAsType: {
|
|
7079
7079
|
id: string;
|
|
7080
7080
|
type: EntityType.GenericReference;
|
|
7081
|
-
entityType: EntityType.
|
|
7081
|
+
entityType: EntityType.DefinitionEntity;
|
|
7082
7082
|
entityId: string;
|
|
7083
7083
|
} | {
|
|
7084
7084
|
id: string;
|
|
@@ -7124,7 +7124,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7124
7124
|
valueAsType: {
|
|
7125
7125
|
id: string;
|
|
7126
7126
|
type: EntityType.GenericReference;
|
|
7127
|
-
entityType: EntityType.
|
|
7127
|
+
entityType: EntityType.DefinitionEntity;
|
|
7128
7128
|
entityId: string;
|
|
7129
7129
|
} | {
|
|
7130
7130
|
id: string;
|
|
@@ -7173,16 +7173,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7173
7173
|
id: z.ZodString;
|
|
7174
7174
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
7175
7175
|
entityId: z.ZodString;
|
|
7176
|
-
entityType: z.ZodLiteral<EntityType.
|
|
7176
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
7177
7177
|
}, "strip", z.ZodTypeAny, {
|
|
7178
7178
|
id: string;
|
|
7179
7179
|
type: EntityType.GenericReference;
|
|
7180
|
-
entityType: EntityType.
|
|
7180
|
+
entityType: EntityType.DefinitionEntity;
|
|
7181
7181
|
entityId: string;
|
|
7182
7182
|
}, {
|
|
7183
7183
|
id: string;
|
|
7184
7184
|
type: EntityType.GenericReference;
|
|
7185
|
-
entityType: EntityType.
|
|
7185
|
+
entityType: EntityType.DefinitionEntity;
|
|
7186
7186
|
entityId: string;
|
|
7187
7187
|
}>, z.ZodObject<{
|
|
7188
7188
|
id: z.ZodString;
|
|
@@ -7526,7 +7526,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7526
7526
|
valueAsType: {
|
|
7527
7527
|
id: string;
|
|
7528
7528
|
type: EntityType.GenericReference;
|
|
7529
|
-
entityType: EntityType.
|
|
7529
|
+
entityType: EntityType.DefinitionEntity;
|
|
7530
7530
|
entityId: string;
|
|
7531
7531
|
} | {
|
|
7532
7532
|
id: string;
|
|
@@ -7564,7 +7564,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7564
7564
|
valueAsType: {
|
|
7565
7565
|
id: string;
|
|
7566
7566
|
type: EntityType.GenericReference;
|
|
7567
|
-
entityType: EntityType.
|
|
7567
|
+
entityType: EntityType.DefinitionEntity;
|
|
7568
7568
|
entityId: string;
|
|
7569
7569
|
} | {
|
|
7570
7570
|
id: string;
|
|
@@ -7605,16 +7605,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7605
7605
|
id: z.ZodString;
|
|
7606
7606
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
7607
7607
|
entityId: z.ZodString;
|
|
7608
|
-
entityType: z.ZodLiteral<EntityType.
|
|
7608
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
7609
7609
|
}, "strip", z.ZodTypeAny, {
|
|
7610
7610
|
id: string;
|
|
7611
7611
|
type: EntityType.GenericReference;
|
|
7612
|
-
entityType: EntityType.
|
|
7612
|
+
entityType: EntityType.DefinitionEntity;
|
|
7613
7613
|
entityId: string;
|
|
7614
7614
|
}, {
|
|
7615
7615
|
id: string;
|
|
7616
7616
|
type: EntityType.GenericReference;
|
|
7617
|
-
entityType: EntityType.
|
|
7617
|
+
entityType: EntityType.DefinitionEntity;
|
|
7618
7618
|
entityId: string;
|
|
7619
7619
|
}>, z.ZodObject<{
|
|
7620
7620
|
id: z.ZodString;
|
|
@@ -7939,7 +7939,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7939
7939
|
valueAsType: {
|
|
7940
7940
|
id: string;
|
|
7941
7941
|
type: EntityType.GenericReference;
|
|
7942
|
-
entityType: EntityType.
|
|
7942
|
+
entityType: EntityType.DefinitionEntity;
|
|
7943
7943
|
entityId: string;
|
|
7944
7944
|
} | {
|
|
7945
7945
|
id: string;
|
|
@@ -7973,7 +7973,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
7973
7973
|
valueAsType: {
|
|
7974
7974
|
id: string;
|
|
7975
7975
|
type: EntityType.GenericReference;
|
|
7976
|
-
entityType: EntityType.
|
|
7976
|
+
entityType: EntityType.DefinitionEntity;
|
|
7977
7977
|
entityId: string;
|
|
7978
7978
|
} | {
|
|
7979
7979
|
id: string;
|
|
@@ -8010,16 +8010,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8010
8010
|
id: z.ZodString;
|
|
8011
8011
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
8012
8012
|
entityId: z.ZodString;
|
|
8013
|
-
entityType: z.ZodLiteral<EntityType.
|
|
8013
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
8014
8014
|
}, "strip", z.ZodTypeAny, {
|
|
8015
8015
|
id: string;
|
|
8016
8016
|
type: EntityType.GenericReference;
|
|
8017
|
-
entityType: EntityType.
|
|
8017
|
+
entityType: EntityType.DefinitionEntity;
|
|
8018
8018
|
entityId: string;
|
|
8019
8019
|
}, {
|
|
8020
8020
|
id: string;
|
|
8021
8021
|
type: EntityType.GenericReference;
|
|
8022
|
-
entityType: EntityType.
|
|
8022
|
+
entityType: EntityType.DefinitionEntity;
|
|
8023
8023
|
entityId: string;
|
|
8024
8024
|
}>, z.ZodObject<{
|
|
8025
8025
|
id: z.ZodString;
|
|
@@ -8426,7 +8426,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8426
8426
|
valueAsType: {
|
|
8427
8427
|
id: string;
|
|
8428
8428
|
type: EntityType.GenericReference;
|
|
8429
|
-
entityType: EntityType.
|
|
8429
|
+
entityType: EntityType.DefinitionEntity;
|
|
8430
8430
|
entityId: string;
|
|
8431
8431
|
} | {
|
|
8432
8432
|
id: string;
|
|
@@ -8476,7 +8476,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8476
8476
|
valueAsType: {
|
|
8477
8477
|
id: string;
|
|
8478
8478
|
type: EntityType.GenericReference;
|
|
8479
|
-
entityType: EntityType.
|
|
8479
|
+
entityType: EntityType.DefinitionEntity;
|
|
8480
8480
|
entityId: string;
|
|
8481
8481
|
} | {
|
|
8482
8482
|
id: string;
|
|
@@ -8529,16 +8529,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8529
8529
|
id: z.ZodString;
|
|
8530
8530
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
8531
8531
|
entityId: z.ZodString;
|
|
8532
|
-
entityType: z.ZodLiteral<EntityType.
|
|
8532
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
8533
8533
|
}, "strip", z.ZodTypeAny, {
|
|
8534
8534
|
id: string;
|
|
8535
8535
|
type: EntityType.GenericReference;
|
|
8536
|
-
entityType: EntityType.
|
|
8536
|
+
entityType: EntityType.DefinitionEntity;
|
|
8537
8537
|
entityId: string;
|
|
8538
8538
|
}, {
|
|
8539
8539
|
id: string;
|
|
8540
8540
|
type: EntityType.GenericReference;
|
|
8541
|
-
entityType: EntityType.
|
|
8541
|
+
entityType: EntityType.DefinitionEntity;
|
|
8542
8542
|
entityId: string;
|
|
8543
8543
|
}>, z.ZodObject<{
|
|
8544
8544
|
id: z.ZodString;
|
|
@@ -8863,7 +8863,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8863
8863
|
valueAsType: {
|
|
8864
8864
|
id: string;
|
|
8865
8865
|
type: EntityType.GenericReference;
|
|
8866
|
-
entityType: EntityType.
|
|
8866
|
+
entityType: EntityType.DefinitionEntity;
|
|
8867
8867
|
entityId: string;
|
|
8868
8868
|
} | {
|
|
8869
8869
|
id: string;
|
|
@@ -8897,7 +8897,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8897
8897
|
valueAsType: {
|
|
8898
8898
|
id: string;
|
|
8899
8899
|
type: EntityType.GenericReference;
|
|
8900
|
-
entityType: EntityType.
|
|
8900
|
+
entityType: EntityType.DefinitionEntity;
|
|
8901
8901
|
entityId: string;
|
|
8902
8902
|
} | {
|
|
8903
8903
|
id: string;
|
|
@@ -8934,16 +8934,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
8934
8934
|
id: z.ZodString;
|
|
8935
8935
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
8936
8936
|
entityId: z.ZodString;
|
|
8937
|
-
entityType: z.ZodLiteral<EntityType.
|
|
8937
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
8938
8938
|
}, "strip", z.ZodTypeAny, {
|
|
8939
8939
|
id: string;
|
|
8940
8940
|
type: EntityType.GenericReference;
|
|
8941
|
-
entityType: EntityType.
|
|
8941
|
+
entityType: EntityType.DefinitionEntity;
|
|
8942
8942
|
entityId: string;
|
|
8943
8943
|
}, {
|
|
8944
8944
|
id: string;
|
|
8945
8945
|
type: EntityType.GenericReference;
|
|
8946
|
-
entityType: EntityType.
|
|
8946
|
+
entityType: EntityType.DefinitionEntity;
|
|
8947
8947
|
entityId: string;
|
|
8948
8948
|
}>, z.ZodObject<{
|
|
8949
8949
|
id: z.ZodString;
|
|
@@ -9268,7 +9268,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9268
9268
|
valueAsType: {
|
|
9269
9269
|
id: string;
|
|
9270
9270
|
type: EntityType.GenericReference;
|
|
9271
|
-
entityType: EntityType.
|
|
9271
|
+
entityType: EntityType.DefinitionEntity;
|
|
9272
9272
|
entityId: string;
|
|
9273
9273
|
} | {
|
|
9274
9274
|
id: string;
|
|
@@ -9302,7 +9302,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9302
9302
|
valueAsType: {
|
|
9303
9303
|
id: string;
|
|
9304
9304
|
type: EntityType.GenericReference;
|
|
9305
|
-
entityType: EntityType.
|
|
9305
|
+
entityType: EntityType.DefinitionEntity;
|
|
9306
9306
|
entityId: string;
|
|
9307
9307
|
} | {
|
|
9308
9308
|
id: string;
|
|
@@ -9339,16 +9339,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9339
9339
|
id: z.ZodString;
|
|
9340
9340
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
9341
9341
|
entityId: z.ZodString;
|
|
9342
|
-
entityType: z.ZodLiteral<EntityType.
|
|
9342
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
9343
9343
|
}, "strip", z.ZodTypeAny, {
|
|
9344
9344
|
id: string;
|
|
9345
9345
|
type: EntityType.GenericReference;
|
|
9346
|
-
entityType: EntityType.
|
|
9346
|
+
entityType: EntityType.DefinitionEntity;
|
|
9347
9347
|
entityId: string;
|
|
9348
9348
|
}, {
|
|
9349
9349
|
id: string;
|
|
9350
9350
|
type: EntityType.GenericReference;
|
|
9351
|
-
entityType: EntityType.
|
|
9351
|
+
entityType: EntityType.DefinitionEntity;
|
|
9352
9352
|
entityId: string;
|
|
9353
9353
|
}>, z.ZodObject<{
|
|
9354
9354
|
id: z.ZodString;
|
|
@@ -9673,7 +9673,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9673
9673
|
valueAsType: {
|
|
9674
9674
|
id: string;
|
|
9675
9675
|
type: EntityType.GenericReference;
|
|
9676
|
-
entityType: EntityType.
|
|
9676
|
+
entityType: EntityType.DefinitionEntity;
|
|
9677
9677
|
entityId: string;
|
|
9678
9678
|
} | {
|
|
9679
9679
|
id: string;
|
|
@@ -9707,7 +9707,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9707
9707
|
valueAsType: {
|
|
9708
9708
|
id: string;
|
|
9709
9709
|
type: EntityType.GenericReference;
|
|
9710
|
-
entityType: EntityType.
|
|
9710
|
+
entityType: EntityType.DefinitionEntity;
|
|
9711
9711
|
entityId: string;
|
|
9712
9712
|
} | {
|
|
9713
9713
|
id: string;
|
|
@@ -9744,16 +9744,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
9744
9744
|
id: z.ZodString;
|
|
9745
9745
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
9746
9746
|
entityId: z.ZodString;
|
|
9747
|
-
entityType: z.ZodLiteral<EntityType.
|
|
9747
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
9748
9748
|
}, "strip", z.ZodTypeAny, {
|
|
9749
9749
|
id: string;
|
|
9750
9750
|
type: EntityType.GenericReference;
|
|
9751
|
-
entityType: EntityType.
|
|
9751
|
+
entityType: EntityType.DefinitionEntity;
|
|
9752
9752
|
entityId: string;
|
|
9753
9753
|
}, {
|
|
9754
9754
|
id: string;
|
|
9755
9755
|
type: EntityType.GenericReference;
|
|
9756
|
-
entityType: EntityType.
|
|
9756
|
+
entityType: EntityType.DefinitionEntity;
|
|
9757
9757
|
entityId: string;
|
|
9758
9758
|
}>, z.ZodObject<{
|
|
9759
9759
|
id: z.ZodString;
|
|
@@ -10094,7 +10094,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10094
10094
|
valueAsType: {
|
|
10095
10095
|
id: string;
|
|
10096
10096
|
type: EntityType.GenericReference;
|
|
10097
|
-
entityType: EntityType.
|
|
10097
|
+
entityType: EntityType.DefinitionEntity;
|
|
10098
10098
|
entityId: string;
|
|
10099
10099
|
} | {
|
|
10100
10100
|
id: string;
|
|
@@ -10132,7 +10132,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10132
10132
|
valueAsType: {
|
|
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;
|
|
@@ -10173,16 +10173,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10173
10173
|
id: z.ZodString;
|
|
10174
10174
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10175
10175
|
entityId: z.ZodString;
|
|
10176
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10176
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10177
10177
|
}, "strip", z.ZodTypeAny, {
|
|
10178
10178
|
id: string;
|
|
10179
10179
|
type: EntityType.GenericReference;
|
|
10180
|
-
entityType: EntityType.
|
|
10180
|
+
entityType: EntityType.DefinitionEntity;
|
|
10181
10181
|
entityId: string;
|
|
10182
10182
|
}, {
|
|
10183
10183
|
id: string;
|
|
10184
10184
|
type: EntityType.GenericReference;
|
|
10185
|
-
entityType: EntityType.
|
|
10185
|
+
entityType: EntityType.DefinitionEntity;
|
|
10186
10186
|
entityId: string;
|
|
10187
10187
|
}>, z.ZodObject<{
|
|
10188
10188
|
id: z.ZodString;
|
|
@@ -10502,16 +10502,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10502
10502
|
id: z.ZodString;
|
|
10503
10503
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10504
10504
|
entityId: z.ZodString;
|
|
10505
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10505
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10506
10506
|
}, "strip", z.ZodTypeAny, {
|
|
10507
10507
|
id: string;
|
|
10508
10508
|
type: EntityType.GenericReference;
|
|
10509
|
-
entityType: EntityType.
|
|
10509
|
+
entityType: EntityType.DefinitionEntity;
|
|
10510
10510
|
entityId: string;
|
|
10511
10511
|
}, {
|
|
10512
10512
|
id: string;
|
|
10513
10513
|
type: EntityType.GenericReference;
|
|
10514
|
-
entityType: EntityType.
|
|
10514
|
+
entityType: EntityType.DefinitionEntity;
|
|
10515
10515
|
entityId: string;
|
|
10516
10516
|
}>;
|
|
10517
10517
|
autogeneration: z.ZodNull;
|
|
@@ -10522,7 +10522,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10522
10522
|
valueAsType: {
|
|
10523
10523
|
id: string;
|
|
10524
10524
|
type: EntityType.GenericReference;
|
|
10525
|
-
entityType: EntityType.
|
|
10525
|
+
entityType: EntityType.DefinitionEntity;
|
|
10526
10526
|
entityId: string;
|
|
10527
10527
|
} | {
|
|
10528
10528
|
id: string;
|
|
@@ -10551,7 +10551,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10551
10551
|
value: {
|
|
10552
10552
|
id: string;
|
|
10553
10553
|
type: EntityType.GenericReference;
|
|
10554
|
-
entityType: EntityType.
|
|
10554
|
+
entityType: EntityType.DefinitionEntity;
|
|
10555
10555
|
entityId: string;
|
|
10556
10556
|
};
|
|
10557
10557
|
}, {
|
|
@@ -10561,7 +10561,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10561
10561
|
valueAsType: {
|
|
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;
|
|
@@ -10590,7 +10590,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10590
10590
|
value: {
|
|
10591
10591
|
id: string;
|
|
10592
10592
|
type: EntityType.GenericReference;
|
|
10593
|
-
entityType: EntityType.
|
|
10593
|
+
entityType: EntityType.DefinitionEntity;
|
|
10594
10594
|
entityId: string;
|
|
10595
10595
|
};
|
|
10596
10596
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -10603,16 +10603,16 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10603
10603
|
id: z.ZodString;
|
|
10604
10604
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
10605
10605
|
entityId: z.ZodString;
|
|
10606
|
-
entityType: z.ZodLiteral<EntityType.
|
|
10606
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
10607
10607
|
}, "strip", z.ZodTypeAny, {
|
|
10608
10608
|
id: string;
|
|
10609
10609
|
type: EntityType.GenericReference;
|
|
10610
|
-
entityType: EntityType.
|
|
10610
|
+
entityType: EntityType.DefinitionEntity;
|
|
10611
10611
|
entityId: string;
|
|
10612
10612
|
}, {
|
|
10613
10613
|
id: string;
|
|
10614
10614
|
type: EntityType.GenericReference;
|
|
10615
|
-
entityType: EntityType.
|
|
10615
|
+
entityType: EntityType.DefinitionEntity;
|
|
10616
10616
|
entityId: string;
|
|
10617
10617
|
}>, z.ZodObject<{
|
|
10618
10618
|
id: z.ZodString;
|
|
@@ -10952,7 +10952,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10952
10952
|
valueAsType: {
|
|
10953
10953
|
id: string;
|
|
10954
10954
|
type: EntityType.GenericReference;
|
|
10955
|
-
entityType: EntityType.
|
|
10955
|
+
entityType: EntityType.DefinitionEntity;
|
|
10956
10956
|
entityId: string;
|
|
10957
10957
|
} | {
|
|
10958
10958
|
id: string;
|
|
@@ -10991,7 +10991,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
10991
10991
|
valueAsType: {
|
|
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;
|
|
@@ -11313,7 +11313,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11313
11313
|
valueAsType: {
|
|
11314
11314
|
id: string;
|
|
11315
11315
|
type: EntityType.GenericReference;
|
|
11316
|
-
entityType: EntityType.
|
|
11316
|
+
entityType: EntityType.DefinitionEntity;
|
|
11317
11317
|
entityId: string;
|
|
11318
11318
|
} | {
|
|
11319
11319
|
id: string;
|
|
@@ -11359,7 +11359,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11359
11359
|
valueAsType: {
|
|
11360
11360
|
id: string;
|
|
11361
11361
|
type: EntityType.GenericReference;
|
|
11362
|
-
entityType: EntityType.
|
|
11362
|
+
entityType: EntityType.DefinitionEntity;
|
|
11363
11363
|
entityId: string;
|
|
11364
11364
|
} | {
|
|
11365
11365
|
id: string;
|
|
@@ -11405,7 +11405,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11405
11405
|
valueAsType: {
|
|
11406
11406
|
id: string;
|
|
11407
11407
|
type: EntityType.GenericReference;
|
|
11408
|
-
entityType: EntityType.
|
|
11408
|
+
entityType: EntityType.DefinitionEntity;
|
|
11409
11409
|
entityId: string;
|
|
11410
11410
|
} | {
|
|
11411
11411
|
id: string;
|
|
@@ -11443,7 +11443,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11443
11443
|
valueAsType: {
|
|
11444
11444
|
id: string;
|
|
11445
11445
|
type: EntityType.GenericReference;
|
|
11446
|
-
entityType: EntityType.
|
|
11446
|
+
entityType: EntityType.DefinitionEntity;
|
|
11447
11447
|
entityId: string;
|
|
11448
11448
|
} | {
|
|
11449
11449
|
id: string;
|
|
@@ -11477,7 +11477,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11477
11477
|
valueAsType: {
|
|
11478
11478
|
id: string;
|
|
11479
11479
|
type: EntityType.GenericReference;
|
|
11480
|
-
entityType: EntityType.
|
|
11480
|
+
entityType: EntityType.DefinitionEntity;
|
|
11481
11481
|
entityId: string;
|
|
11482
11482
|
} | {
|
|
11483
11483
|
id: string;
|
|
@@ -11527,7 +11527,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11527
11527
|
valueAsType: {
|
|
11528
11528
|
id: string;
|
|
11529
11529
|
type: EntityType.GenericReference;
|
|
11530
|
-
entityType: EntityType.
|
|
11530
|
+
entityType: EntityType.DefinitionEntity;
|
|
11531
11531
|
entityId: string;
|
|
11532
11532
|
} | {
|
|
11533
11533
|
id: string;
|
|
@@ -11561,7 +11561,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11561
11561
|
valueAsType: {
|
|
11562
11562
|
id: string;
|
|
11563
11563
|
type: EntityType.GenericReference;
|
|
11564
|
-
entityType: EntityType.
|
|
11564
|
+
entityType: EntityType.DefinitionEntity;
|
|
11565
11565
|
entityId: string;
|
|
11566
11566
|
} | {
|
|
11567
11567
|
id: string;
|
|
@@ -11595,7 +11595,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11595
11595
|
valueAsType: {
|
|
11596
11596
|
id: string;
|
|
11597
11597
|
type: EntityType.GenericReference;
|
|
11598
|
-
entityType: EntityType.
|
|
11598
|
+
entityType: EntityType.DefinitionEntity;
|
|
11599
11599
|
entityId: string;
|
|
11600
11600
|
} | {
|
|
11601
11601
|
id: string;
|
|
@@ -11629,7 +11629,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11629
11629
|
valueAsType: {
|
|
11630
11630
|
id: string;
|
|
11631
11631
|
type: EntityType.GenericReference;
|
|
11632
|
-
entityType: EntityType.
|
|
11632
|
+
entityType: EntityType.DefinitionEntity;
|
|
11633
11633
|
entityId: string;
|
|
11634
11634
|
} | {
|
|
11635
11635
|
id: string;
|
|
@@ -11667,7 +11667,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11667
11667
|
valueAsType: {
|
|
11668
11668
|
id: string;
|
|
11669
11669
|
type: EntityType.GenericReference;
|
|
11670
|
-
entityType: EntityType.
|
|
11670
|
+
entityType: EntityType.DefinitionEntity;
|
|
11671
11671
|
entityId: string;
|
|
11672
11672
|
} | {
|
|
11673
11673
|
id: string;
|
|
@@ -11696,7 +11696,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11696
11696
|
value: {
|
|
11697
11697
|
id: string;
|
|
11698
11698
|
type: EntityType.GenericReference;
|
|
11699
|
-
entityType: EntityType.
|
|
11699
|
+
entityType: EntityType.DefinitionEntity;
|
|
11700
11700
|
entityId: string;
|
|
11701
11701
|
};
|
|
11702
11702
|
} | {
|
|
@@ -11706,7 +11706,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11706
11706
|
valueAsType: {
|
|
11707
11707
|
id: string;
|
|
11708
11708
|
type: EntityType.GenericReference;
|
|
11709
|
-
entityType: EntityType.
|
|
11709
|
+
entityType: EntityType.DefinitionEntity;
|
|
11710
11710
|
entityId: string;
|
|
11711
11711
|
} | {
|
|
11712
11712
|
id: string;
|
|
@@ -11824,7 +11824,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11824
11824
|
valueAsType: {
|
|
11825
11825
|
id: string;
|
|
11826
11826
|
type: EntityType.GenericReference;
|
|
11827
|
-
entityType: EntityType.
|
|
11827
|
+
entityType: EntityType.DefinitionEntity;
|
|
11828
11828
|
entityId: string;
|
|
11829
11829
|
} | {
|
|
11830
11830
|
id: string;
|
|
@@ -11870,7 +11870,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11870
11870
|
valueAsType: {
|
|
11871
11871
|
id: string;
|
|
11872
11872
|
type: EntityType.GenericReference;
|
|
11873
|
-
entityType: EntityType.
|
|
11873
|
+
entityType: EntityType.DefinitionEntity;
|
|
11874
11874
|
entityId: string;
|
|
11875
11875
|
} | {
|
|
11876
11876
|
id: string;
|
|
@@ -11916,7 +11916,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11916
11916
|
valueAsType: {
|
|
11917
11917
|
id: string;
|
|
11918
11918
|
type: EntityType.GenericReference;
|
|
11919
|
-
entityType: EntityType.
|
|
11919
|
+
entityType: EntityType.DefinitionEntity;
|
|
11920
11920
|
entityId: string;
|
|
11921
11921
|
} | {
|
|
11922
11922
|
id: string;
|
|
@@ -11954,7 +11954,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11954
11954
|
valueAsType: {
|
|
11955
11955
|
id: string;
|
|
11956
11956
|
type: EntityType.GenericReference;
|
|
11957
|
-
entityType: EntityType.
|
|
11957
|
+
entityType: EntityType.DefinitionEntity;
|
|
11958
11958
|
entityId: string;
|
|
11959
11959
|
} | {
|
|
11960
11960
|
id: string;
|
|
@@ -11988,7 +11988,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11988
11988
|
valueAsType: {
|
|
11989
11989
|
id: string;
|
|
11990
11990
|
type: EntityType.GenericReference;
|
|
11991
|
-
entityType: EntityType.
|
|
11991
|
+
entityType: EntityType.DefinitionEntity;
|
|
11992
11992
|
entityId: string;
|
|
11993
11993
|
} | {
|
|
11994
11994
|
id: string;
|
|
@@ -12038,7 +12038,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12038
12038
|
valueAsType: {
|
|
12039
12039
|
id: string;
|
|
12040
12040
|
type: EntityType.GenericReference;
|
|
12041
|
-
entityType: EntityType.
|
|
12041
|
+
entityType: EntityType.DefinitionEntity;
|
|
12042
12042
|
entityId: string;
|
|
12043
12043
|
} | {
|
|
12044
12044
|
id: string;
|
|
@@ -12072,7 +12072,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12072
12072
|
valueAsType: {
|
|
12073
12073
|
id: string;
|
|
12074
12074
|
type: EntityType.GenericReference;
|
|
12075
|
-
entityType: EntityType.
|
|
12075
|
+
entityType: EntityType.DefinitionEntity;
|
|
12076
12076
|
entityId: string;
|
|
12077
12077
|
} | {
|
|
12078
12078
|
id: string;
|
|
@@ -12106,7 +12106,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12106
12106
|
valueAsType: {
|
|
12107
12107
|
id: string;
|
|
12108
12108
|
type: EntityType.GenericReference;
|
|
12109
|
-
entityType: EntityType.
|
|
12109
|
+
entityType: EntityType.DefinitionEntity;
|
|
12110
12110
|
entityId: string;
|
|
12111
12111
|
} | {
|
|
12112
12112
|
id: string;
|
|
@@ -12140,7 +12140,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12140
12140
|
valueAsType: {
|
|
12141
12141
|
id: string;
|
|
12142
12142
|
type: EntityType.GenericReference;
|
|
12143
|
-
entityType: EntityType.
|
|
12143
|
+
entityType: EntityType.DefinitionEntity;
|
|
12144
12144
|
entityId: string;
|
|
12145
12145
|
} | {
|
|
12146
12146
|
id: string;
|
|
@@ -12178,7 +12178,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12178
12178
|
valueAsType: {
|
|
12179
12179
|
id: string;
|
|
12180
12180
|
type: EntityType.GenericReference;
|
|
12181
|
-
entityType: EntityType.
|
|
12181
|
+
entityType: EntityType.DefinitionEntity;
|
|
12182
12182
|
entityId: string;
|
|
12183
12183
|
} | {
|
|
12184
12184
|
id: string;
|
|
@@ -12207,7 +12207,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12207
12207
|
value: {
|
|
12208
12208
|
id: string;
|
|
12209
12209
|
type: EntityType.GenericReference;
|
|
12210
|
-
entityType: EntityType.
|
|
12210
|
+
entityType: EntityType.DefinitionEntity;
|
|
12211
12211
|
entityId: string;
|
|
12212
12212
|
};
|
|
12213
12213
|
} | {
|
|
@@ -12217,7 +12217,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12217
12217
|
valueAsType: {
|
|
12218
12218
|
id: string;
|
|
12219
12219
|
type: EntityType.GenericReference;
|
|
12220
|
-
entityType: EntityType.
|
|
12220
|
+
entityType: EntityType.DefinitionEntity;
|
|
12221
12221
|
entityId: string;
|
|
12222
12222
|
} | {
|
|
12223
12223
|
id: string;
|
|
@@ -12296,16 +12296,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
12296
12296
|
id: z.ZodString;
|
|
12297
12297
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
12298
12298
|
entityId: z.ZodString;
|
|
12299
|
-
entityType: z.ZodLiteral<EntityType.
|
|
12299
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
12300
12300
|
}, "strip", z.ZodTypeAny, {
|
|
12301
12301
|
id: string;
|
|
12302
12302
|
type: EntityType.GenericReference;
|
|
12303
|
-
entityType: EntityType.
|
|
12303
|
+
entityType: EntityType.DefinitionEntity;
|
|
12304
12304
|
entityId: string;
|
|
12305
12305
|
}, {
|
|
12306
12306
|
id: string;
|
|
12307
12307
|
type: EntityType.GenericReference;
|
|
12308
|
-
entityType: EntityType.
|
|
12308
|
+
entityType: EntityType.DefinitionEntity;
|
|
12309
12309
|
entityId: string;
|
|
12310
12310
|
}>, z.ZodObject<{
|
|
12311
12311
|
id: z.ZodString;
|
|
@@ -12696,7 +12696,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
12696
12696
|
valueAsType: {
|
|
12697
12697
|
id: string;
|
|
12698
12698
|
type: EntityType.GenericReference;
|
|
12699
|
-
entityType: EntityType.
|
|
12699
|
+
entityType: EntityType.DefinitionEntity;
|
|
12700
12700
|
entityId: string;
|
|
12701
12701
|
} | {
|
|
12702
12702
|
id: string;
|
|
@@ -12742,7 +12742,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
12742
12742
|
valueAsType: {
|
|
12743
12743
|
id: string;
|
|
12744
12744
|
type: EntityType.GenericReference;
|
|
12745
|
-
entityType: EntityType.
|
|
12745
|
+
entityType: EntityType.DefinitionEntity;
|
|
12746
12746
|
entityId: string;
|
|
12747
12747
|
} | {
|
|
12748
12748
|
id: string;
|
|
@@ -12791,16 +12791,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
12791
12791
|
id: z.ZodString;
|
|
12792
12792
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
12793
12793
|
entityId: z.ZodString;
|
|
12794
|
-
entityType: z.ZodLiteral<EntityType.
|
|
12794
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
12795
12795
|
}, "strip", z.ZodTypeAny, {
|
|
12796
12796
|
id: string;
|
|
12797
12797
|
type: EntityType.GenericReference;
|
|
12798
|
-
entityType: EntityType.
|
|
12798
|
+
entityType: EntityType.DefinitionEntity;
|
|
12799
12799
|
entityId: string;
|
|
12800
12800
|
}, {
|
|
12801
12801
|
id: string;
|
|
12802
12802
|
type: EntityType.GenericReference;
|
|
12803
|
-
entityType: EntityType.
|
|
12803
|
+
entityType: EntityType.DefinitionEntity;
|
|
12804
12804
|
entityId: string;
|
|
12805
12805
|
}>, z.ZodObject<{
|
|
12806
12806
|
id: z.ZodString;
|
|
@@ -13191,7 +13191,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
13191
13191
|
valueAsType: {
|
|
13192
13192
|
id: string;
|
|
13193
13193
|
type: EntityType.GenericReference;
|
|
13194
|
-
entityType: EntityType.
|
|
13194
|
+
entityType: EntityType.DefinitionEntity;
|
|
13195
13195
|
entityId: string;
|
|
13196
13196
|
} | {
|
|
13197
13197
|
id: string;
|
|
@@ -13237,7 +13237,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
13237
13237
|
valueAsType: {
|
|
13238
13238
|
id: string;
|
|
13239
13239
|
type: EntityType.GenericReference;
|
|
13240
|
-
entityType: EntityType.
|
|
13240
|
+
entityType: EntityType.DefinitionEntity;
|
|
13241
13241
|
entityId: string;
|
|
13242
13242
|
} | {
|
|
13243
13243
|
id: string;
|
|
@@ -13286,16 +13286,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
13286
13286
|
id: z.ZodString;
|
|
13287
13287
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
13288
13288
|
entityId: z.ZodString;
|
|
13289
|
-
entityType: z.ZodLiteral<EntityType.
|
|
13289
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
13290
13290
|
}, "strip", z.ZodTypeAny, {
|
|
13291
13291
|
id: string;
|
|
13292
13292
|
type: EntityType.GenericReference;
|
|
13293
|
-
entityType: EntityType.
|
|
13293
|
+
entityType: EntityType.DefinitionEntity;
|
|
13294
13294
|
entityId: string;
|
|
13295
13295
|
}, {
|
|
13296
13296
|
id: string;
|
|
13297
13297
|
type: EntityType.GenericReference;
|
|
13298
|
-
entityType: EntityType.
|
|
13298
|
+
entityType: EntityType.DefinitionEntity;
|
|
13299
13299
|
entityId: string;
|
|
13300
13300
|
}>, z.ZodObject<{
|
|
13301
13301
|
id: z.ZodString;
|
|
@@ -13639,7 +13639,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
13639
13639
|
valueAsType: {
|
|
13640
13640
|
id: string;
|
|
13641
13641
|
type: EntityType.GenericReference;
|
|
13642
|
-
entityType: EntityType.
|
|
13642
|
+
entityType: EntityType.DefinitionEntity;
|
|
13643
13643
|
entityId: string;
|
|
13644
13644
|
} | {
|
|
13645
13645
|
id: string;
|
|
@@ -13677,7 +13677,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
13677
13677
|
valueAsType: {
|
|
13678
13678
|
id: string;
|
|
13679
13679
|
type: EntityType.GenericReference;
|
|
13680
|
-
entityType: EntityType.
|
|
13680
|
+
entityType: EntityType.DefinitionEntity;
|
|
13681
13681
|
entityId: string;
|
|
13682
13682
|
} | {
|
|
13683
13683
|
id: string;
|
|
@@ -13718,16 +13718,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
13718
13718
|
id: z.ZodString;
|
|
13719
13719
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
13720
13720
|
entityId: z.ZodString;
|
|
13721
|
-
entityType: z.ZodLiteral<EntityType.
|
|
13721
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
13722
13722
|
}, "strip", z.ZodTypeAny, {
|
|
13723
13723
|
id: string;
|
|
13724
13724
|
type: EntityType.GenericReference;
|
|
13725
|
-
entityType: EntityType.
|
|
13725
|
+
entityType: EntityType.DefinitionEntity;
|
|
13726
13726
|
entityId: string;
|
|
13727
13727
|
}, {
|
|
13728
13728
|
id: string;
|
|
13729
13729
|
type: EntityType.GenericReference;
|
|
13730
|
-
entityType: EntityType.
|
|
13730
|
+
entityType: EntityType.DefinitionEntity;
|
|
13731
13731
|
entityId: string;
|
|
13732
13732
|
}>, z.ZodObject<{
|
|
13733
13733
|
id: z.ZodString;
|
|
@@ -14052,7 +14052,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
14052
14052
|
valueAsType: {
|
|
14053
14053
|
id: string;
|
|
14054
14054
|
type: EntityType.GenericReference;
|
|
14055
|
-
entityType: EntityType.
|
|
14055
|
+
entityType: EntityType.DefinitionEntity;
|
|
14056
14056
|
entityId: string;
|
|
14057
14057
|
} | {
|
|
14058
14058
|
id: string;
|
|
@@ -14086,7 +14086,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
14086
14086
|
valueAsType: {
|
|
14087
14087
|
id: string;
|
|
14088
14088
|
type: EntityType.GenericReference;
|
|
14089
|
-
entityType: EntityType.
|
|
14089
|
+
entityType: EntityType.DefinitionEntity;
|
|
14090
14090
|
entityId: string;
|
|
14091
14091
|
} | {
|
|
14092
14092
|
id: string;
|
|
@@ -14123,16 +14123,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
14123
14123
|
id: z.ZodString;
|
|
14124
14124
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
14125
14125
|
entityId: z.ZodString;
|
|
14126
|
-
entityType: z.ZodLiteral<EntityType.
|
|
14126
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
14127
14127
|
}, "strip", z.ZodTypeAny, {
|
|
14128
14128
|
id: string;
|
|
14129
14129
|
type: EntityType.GenericReference;
|
|
14130
|
-
entityType: EntityType.
|
|
14130
|
+
entityType: EntityType.DefinitionEntity;
|
|
14131
14131
|
entityId: string;
|
|
14132
14132
|
}, {
|
|
14133
14133
|
id: string;
|
|
14134
14134
|
type: EntityType.GenericReference;
|
|
14135
|
-
entityType: EntityType.
|
|
14135
|
+
entityType: EntityType.DefinitionEntity;
|
|
14136
14136
|
entityId: string;
|
|
14137
14137
|
}>, z.ZodObject<{
|
|
14138
14138
|
id: z.ZodString;
|
|
@@ -14539,7 +14539,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
14539
14539
|
valueAsType: {
|
|
14540
14540
|
id: string;
|
|
14541
14541
|
type: EntityType.GenericReference;
|
|
14542
|
-
entityType: EntityType.
|
|
14542
|
+
entityType: EntityType.DefinitionEntity;
|
|
14543
14543
|
entityId: string;
|
|
14544
14544
|
} | {
|
|
14545
14545
|
id: string;
|
|
@@ -14589,7 +14589,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
14589
14589
|
valueAsType: {
|
|
14590
14590
|
id: string;
|
|
14591
14591
|
type: EntityType.GenericReference;
|
|
14592
|
-
entityType: EntityType.
|
|
14592
|
+
entityType: EntityType.DefinitionEntity;
|
|
14593
14593
|
entityId: string;
|
|
14594
14594
|
} | {
|
|
14595
14595
|
id: string;
|
|
@@ -14642,16 +14642,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
14642
14642
|
id: z.ZodString;
|
|
14643
14643
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
14644
14644
|
entityId: z.ZodString;
|
|
14645
|
-
entityType: z.ZodLiteral<EntityType.
|
|
14645
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
14646
14646
|
}, "strip", z.ZodTypeAny, {
|
|
14647
14647
|
id: string;
|
|
14648
14648
|
type: EntityType.GenericReference;
|
|
14649
|
-
entityType: EntityType.
|
|
14649
|
+
entityType: EntityType.DefinitionEntity;
|
|
14650
14650
|
entityId: string;
|
|
14651
14651
|
}, {
|
|
14652
14652
|
id: string;
|
|
14653
14653
|
type: EntityType.GenericReference;
|
|
14654
|
-
entityType: EntityType.
|
|
14654
|
+
entityType: EntityType.DefinitionEntity;
|
|
14655
14655
|
entityId: string;
|
|
14656
14656
|
}>, z.ZodObject<{
|
|
14657
14657
|
id: z.ZodString;
|
|
@@ -14976,7 +14976,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
14976
14976
|
valueAsType: {
|
|
14977
14977
|
id: string;
|
|
14978
14978
|
type: EntityType.GenericReference;
|
|
14979
|
-
entityType: EntityType.
|
|
14979
|
+
entityType: EntityType.DefinitionEntity;
|
|
14980
14980
|
entityId: string;
|
|
14981
14981
|
} | {
|
|
14982
14982
|
id: string;
|
|
@@ -15010,7 +15010,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
15010
15010
|
valueAsType: {
|
|
15011
15011
|
id: string;
|
|
15012
15012
|
type: EntityType.GenericReference;
|
|
15013
|
-
entityType: EntityType.
|
|
15013
|
+
entityType: EntityType.DefinitionEntity;
|
|
15014
15014
|
entityId: string;
|
|
15015
15015
|
} | {
|
|
15016
15016
|
id: string;
|
|
@@ -15047,16 +15047,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
15047
15047
|
id: z.ZodString;
|
|
15048
15048
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
15049
15049
|
entityId: z.ZodString;
|
|
15050
|
-
entityType: z.ZodLiteral<EntityType.
|
|
15050
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
15051
15051
|
}, "strip", z.ZodTypeAny, {
|
|
15052
15052
|
id: string;
|
|
15053
15053
|
type: EntityType.GenericReference;
|
|
15054
|
-
entityType: EntityType.
|
|
15054
|
+
entityType: EntityType.DefinitionEntity;
|
|
15055
15055
|
entityId: string;
|
|
15056
15056
|
}, {
|
|
15057
15057
|
id: string;
|
|
15058
15058
|
type: EntityType.GenericReference;
|
|
15059
|
-
entityType: EntityType.
|
|
15059
|
+
entityType: EntityType.DefinitionEntity;
|
|
15060
15060
|
entityId: string;
|
|
15061
15061
|
}>, z.ZodObject<{
|
|
15062
15062
|
id: z.ZodString;
|
|
@@ -15381,7 +15381,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
15381
15381
|
valueAsType: {
|
|
15382
15382
|
id: string;
|
|
15383
15383
|
type: EntityType.GenericReference;
|
|
15384
|
-
entityType: EntityType.
|
|
15384
|
+
entityType: EntityType.DefinitionEntity;
|
|
15385
15385
|
entityId: string;
|
|
15386
15386
|
} | {
|
|
15387
15387
|
id: string;
|
|
@@ -15415,7 +15415,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
15415
15415
|
valueAsType: {
|
|
15416
15416
|
id: string;
|
|
15417
15417
|
type: EntityType.GenericReference;
|
|
15418
|
-
entityType: EntityType.
|
|
15418
|
+
entityType: EntityType.DefinitionEntity;
|
|
15419
15419
|
entityId: string;
|
|
15420
15420
|
} | {
|
|
15421
15421
|
id: string;
|
|
@@ -15452,16 +15452,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
15452
15452
|
id: z.ZodString;
|
|
15453
15453
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
15454
15454
|
entityId: z.ZodString;
|
|
15455
|
-
entityType: z.ZodLiteral<EntityType.
|
|
15455
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
15456
15456
|
}, "strip", z.ZodTypeAny, {
|
|
15457
15457
|
id: string;
|
|
15458
15458
|
type: EntityType.GenericReference;
|
|
15459
|
-
entityType: EntityType.
|
|
15459
|
+
entityType: EntityType.DefinitionEntity;
|
|
15460
15460
|
entityId: string;
|
|
15461
15461
|
}, {
|
|
15462
15462
|
id: string;
|
|
15463
15463
|
type: EntityType.GenericReference;
|
|
15464
|
-
entityType: EntityType.
|
|
15464
|
+
entityType: EntityType.DefinitionEntity;
|
|
15465
15465
|
entityId: string;
|
|
15466
15466
|
}>, z.ZodObject<{
|
|
15467
15467
|
id: z.ZodString;
|
|
@@ -15786,7 +15786,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
15786
15786
|
valueAsType: {
|
|
15787
15787
|
id: string;
|
|
15788
15788
|
type: EntityType.GenericReference;
|
|
15789
|
-
entityType: EntityType.
|
|
15789
|
+
entityType: EntityType.DefinitionEntity;
|
|
15790
15790
|
entityId: string;
|
|
15791
15791
|
} | {
|
|
15792
15792
|
id: string;
|
|
@@ -15820,7 +15820,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
15820
15820
|
valueAsType: {
|
|
15821
15821
|
id: string;
|
|
15822
15822
|
type: EntityType.GenericReference;
|
|
15823
|
-
entityType: EntityType.
|
|
15823
|
+
entityType: EntityType.DefinitionEntity;
|
|
15824
15824
|
entityId: string;
|
|
15825
15825
|
} | {
|
|
15826
15826
|
id: string;
|
|
@@ -15857,16 +15857,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
15857
15857
|
id: z.ZodString;
|
|
15858
15858
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
15859
15859
|
entityId: z.ZodString;
|
|
15860
|
-
entityType: z.ZodLiteral<EntityType.
|
|
15860
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
15861
15861
|
}, "strip", z.ZodTypeAny, {
|
|
15862
15862
|
id: string;
|
|
15863
15863
|
type: EntityType.GenericReference;
|
|
15864
|
-
entityType: EntityType.
|
|
15864
|
+
entityType: EntityType.DefinitionEntity;
|
|
15865
15865
|
entityId: string;
|
|
15866
15866
|
}, {
|
|
15867
15867
|
id: string;
|
|
15868
15868
|
type: EntityType.GenericReference;
|
|
15869
|
-
entityType: EntityType.
|
|
15869
|
+
entityType: EntityType.DefinitionEntity;
|
|
15870
15870
|
entityId: string;
|
|
15871
15871
|
}>, z.ZodObject<{
|
|
15872
15872
|
id: z.ZodString;
|
|
@@ -16207,7 +16207,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16207
16207
|
valueAsType: {
|
|
16208
16208
|
id: string;
|
|
16209
16209
|
type: EntityType.GenericReference;
|
|
16210
|
-
entityType: EntityType.
|
|
16210
|
+
entityType: EntityType.DefinitionEntity;
|
|
16211
16211
|
entityId: string;
|
|
16212
16212
|
} | {
|
|
16213
16213
|
id: string;
|
|
@@ -16245,7 +16245,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16245
16245
|
valueAsType: {
|
|
16246
16246
|
id: string;
|
|
16247
16247
|
type: EntityType.GenericReference;
|
|
16248
|
-
entityType: EntityType.
|
|
16248
|
+
entityType: EntityType.DefinitionEntity;
|
|
16249
16249
|
entityId: string;
|
|
16250
16250
|
} | {
|
|
16251
16251
|
id: string;
|
|
@@ -16286,16 +16286,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16286
16286
|
id: z.ZodString;
|
|
16287
16287
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
16288
16288
|
entityId: z.ZodString;
|
|
16289
|
-
entityType: z.ZodLiteral<EntityType.
|
|
16289
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
16290
16290
|
}, "strip", z.ZodTypeAny, {
|
|
16291
16291
|
id: string;
|
|
16292
16292
|
type: EntityType.GenericReference;
|
|
16293
|
-
entityType: EntityType.
|
|
16293
|
+
entityType: EntityType.DefinitionEntity;
|
|
16294
16294
|
entityId: string;
|
|
16295
16295
|
}, {
|
|
16296
16296
|
id: string;
|
|
16297
16297
|
type: EntityType.GenericReference;
|
|
16298
|
-
entityType: EntityType.
|
|
16298
|
+
entityType: EntityType.DefinitionEntity;
|
|
16299
16299
|
entityId: string;
|
|
16300
16300
|
}>, z.ZodObject<{
|
|
16301
16301
|
id: z.ZodString;
|
|
@@ -16615,16 +16615,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16615
16615
|
id: z.ZodString;
|
|
16616
16616
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
16617
16617
|
entityId: z.ZodString;
|
|
16618
|
-
entityType: z.ZodLiteral<EntityType.
|
|
16618
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
16619
16619
|
}, "strip", z.ZodTypeAny, {
|
|
16620
16620
|
id: string;
|
|
16621
16621
|
type: EntityType.GenericReference;
|
|
16622
|
-
entityType: EntityType.
|
|
16622
|
+
entityType: EntityType.DefinitionEntity;
|
|
16623
16623
|
entityId: string;
|
|
16624
16624
|
}, {
|
|
16625
16625
|
id: string;
|
|
16626
16626
|
type: EntityType.GenericReference;
|
|
16627
|
-
entityType: EntityType.
|
|
16627
|
+
entityType: EntityType.DefinitionEntity;
|
|
16628
16628
|
entityId: string;
|
|
16629
16629
|
}>;
|
|
16630
16630
|
autogeneration: z.ZodNull;
|
|
@@ -16635,7 +16635,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16635
16635
|
valueAsType: {
|
|
16636
16636
|
id: string;
|
|
16637
16637
|
type: EntityType.GenericReference;
|
|
16638
|
-
entityType: EntityType.
|
|
16638
|
+
entityType: EntityType.DefinitionEntity;
|
|
16639
16639
|
entityId: string;
|
|
16640
16640
|
} | {
|
|
16641
16641
|
id: string;
|
|
@@ -16664,7 +16664,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16664
16664
|
value: {
|
|
16665
16665
|
id: string;
|
|
16666
16666
|
type: EntityType.GenericReference;
|
|
16667
|
-
entityType: EntityType.
|
|
16667
|
+
entityType: EntityType.DefinitionEntity;
|
|
16668
16668
|
entityId: string;
|
|
16669
16669
|
};
|
|
16670
16670
|
}, {
|
|
@@ -16674,7 +16674,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16674
16674
|
valueAsType: {
|
|
16675
16675
|
id: string;
|
|
16676
16676
|
type: EntityType.GenericReference;
|
|
16677
|
-
entityType: EntityType.
|
|
16677
|
+
entityType: EntityType.DefinitionEntity;
|
|
16678
16678
|
entityId: string;
|
|
16679
16679
|
} | {
|
|
16680
16680
|
id: string;
|
|
@@ -16703,7 +16703,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16703
16703
|
value: {
|
|
16704
16704
|
id: string;
|
|
16705
16705
|
type: EntityType.GenericReference;
|
|
16706
|
-
entityType: EntityType.
|
|
16706
|
+
entityType: EntityType.DefinitionEntity;
|
|
16707
16707
|
entityId: string;
|
|
16708
16708
|
};
|
|
16709
16709
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -16716,16 +16716,16 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
16716
16716
|
id: z.ZodString;
|
|
16717
16717
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
16718
16718
|
entityId: z.ZodString;
|
|
16719
|
-
entityType: z.ZodLiteral<EntityType.
|
|
16719
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
16720
16720
|
}, "strip", z.ZodTypeAny, {
|
|
16721
16721
|
id: string;
|
|
16722
16722
|
type: EntityType.GenericReference;
|
|
16723
|
-
entityType: EntityType.
|
|
16723
|
+
entityType: EntityType.DefinitionEntity;
|
|
16724
16724
|
entityId: string;
|
|
16725
16725
|
}, {
|
|
16726
16726
|
id: string;
|
|
16727
16727
|
type: EntityType.GenericReference;
|
|
16728
|
-
entityType: EntityType.
|
|
16728
|
+
entityType: EntityType.DefinitionEntity;
|
|
16729
16729
|
entityId: string;
|
|
16730
16730
|
}>, z.ZodObject<{
|
|
16731
16731
|
id: z.ZodString;
|
|
@@ -17065,7 +17065,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17065
17065
|
valueAsType: {
|
|
17066
17066
|
id: string;
|
|
17067
17067
|
type: EntityType.GenericReference;
|
|
17068
|
-
entityType: EntityType.
|
|
17068
|
+
entityType: EntityType.DefinitionEntity;
|
|
17069
17069
|
entityId: string;
|
|
17070
17070
|
} | {
|
|
17071
17071
|
id: string;
|
|
@@ -17104,7 +17104,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17104
17104
|
valueAsType: {
|
|
17105
17105
|
id: string;
|
|
17106
17106
|
type: EntityType.GenericReference;
|
|
17107
|
-
entityType: EntityType.
|
|
17107
|
+
entityType: EntityType.DefinitionEntity;
|
|
17108
17108
|
entityId: string;
|
|
17109
17109
|
} | {
|
|
17110
17110
|
id: string;
|
|
@@ -17240,7 +17240,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17240
17240
|
valueAsType: {
|
|
17241
17241
|
id: string;
|
|
17242
17242
|
type: EntityType.GenericReference;
|
|
17243
|
-
entityType: EntityType.
|
|
17243
|
+
entityType: EntityType.DefinitionEntity;
|
|
17244
17244
|
entityId: string;
|
|
17245
17245
|
} | {
|
|
17246
17246
|
id: string;
|
|
@@ -17286,7 +17286,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17286
17286
|
valueAsType: {
|
|
17287
17287
|
id: string;
|
|
17288
17288
|
type: EntityType.GenericReference;
|
|
17289
|
-
entityType: EntityType.
|
|
17289
|
+
entityType: EntityType.DefinitionEntity;
|
|
17290
17290
|
entityId: string;
|
|
17291
17291
|
} | {
|
|
17292
17292
|
id: string;
|
|
@@ -17332,7 +17332,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17332
17332
|
valueAsType: {
|
|
17333
17333
|
id: string;
|
|
17334
17334
|
type: EntityType.GenericReference;
|
|
17335
|
-
entityType: EntityType.
|
|
17335
|
+
entityType: EntityType.DefinitionEntity;
|
|
17336
17336
|
entityId: string;
|
|
17337
17337
|
} | {
|
|
17338
17338
|
id: string;
|
|
@@ -17370,7 +17370,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17370
17370
|
valueAsType: {
|
|
17371
17371
|
id: string;
|
|
17372
17372
|
type: EntityType.GenericReference;
|
|
17373
|
-
entityType: EntityType.
|
|
17373
|
+
entityType: EntityType.DefinitionEntity;
|
|
17374
17374
|
entityId: string;
|
|
17375
17375
|
} | {
|
|
17376
17376
|
id: string;
|
|
@@ -17404,7 +17404,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17404
17404
|
valueAsType: {
|
|
17405
17405
|
id: string;
|
|
17406
17406
|
type: EntityType.GenericReference;
|
|
17407
|
-
entityType: EntityType.
|
|
17407
|
+
entityType: EntityType.DefinitionEntity;
|
|
17408
17408
|
entityId: string;
|
|
17409
17409
|
} | {
|
|
17410
17410
|
id: string;
|
|
@@ -17454,7 +17454,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17454
17454
|
valueAsType: {
|
|
17455
17455
|
id: string;
|
|
17456
17456
|
type: EntityType.GenericReference;
|
|
17457
|
-
entityType: EntityType.
|
|
17457
|
+
entityType: EntityType.DefinitionEntity;
|
|
17458
17458
|
entityId: string;
|
|
17459
17459
|
} | {
|
|
17460
17460
|
id: string;
|
|
@@ -17488,7 +17488,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17488
17488
|
valueAsType: {
|
|
17489
17489
|
id: string;
|
|
17490
17490
|
type: EntityType.GenericReference;
|
|
17491
|
-
entityType: EntityType.
|
|
17491
|
+
entityType: EntityType.DefinitionEntity;
|
|
17492
17492
|
entityId: string;
|
|
17493
17493
|
} | {
|
|
17494
17494
|
id: string;
|
|
@@ -17522,7 +17522,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17522
17522
|
valueAsType: {
|
|
17523
17523
|
id: string;
|
|
17524
17524
|
type: EntityType.GenericReference;
|
|
17525
|
-
entityType: EntityType.
|
|
17525
|
+
entityType: EntityType.DefinitionEntity;
|
|
17526
17526
|
entityId: string;
|
|
17527
17527
|
} | {
|
|
17528
17528
|
id: string;
|
|
@@ -17556,7 +17556,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17556
17556
|
valueAsType: {
|
|
17557
17557
|
id: string;
|
|
17558
17558
|
type: EntityType.GenericReference;
|
|
17559
|
-
entityType: EntityType.
|
|
17559
|
+
entityType: EntityType.DefinitionEntity;
|
|
17560
17560
|
entityId: string;
|
|
17561
17561
|
} | {
|
|
17562
17562
|
id: string;
|
|
@@ -17594,7 +17594,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17594
17594
|
valueAsType: {
|
|
17595
17595
|
id: string;
|
|
17596
17596
|
type: EntityType.GenericReference;
|
|
17597
|
-
entityType: EntityType.
|
|
17597
|
+
entityType: EntityType.DefinitionEntity;
|
|
17598
17598
|
entityId: string;
|
|
17599
17599
|
} | {
|
|
17600
17600
|
id: string;
|
|
@@ -17623,7 +17623,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17623
17623
|
value: {
|
|
17624
17624
|
id: string;
|
|
17625
17625
|
type: EntityType.GenericReference;
|
|
17626
|
-
entityType: EntityType.
|
|
17626
|
+
entityType: EntityType.DefinitionEntity;
|
|
17627
17627
|
entityId: string;
|
|
17628
17628
|
};
|
|
17629
17629
|
} | {
|
|
@@ -17633,7 +17633,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17633
17633
|
valueAsType: {
|
|
17634
17634
|
id: string;
|
|
17635
17635
|
type: EntityType.GenericReference;
|
|
17636
|
-
entityType: EntityType.
|
|
17636
|
+
entityType: EntityType.DefinitionEntity;
|
|
17637
17637
|
entityId: string;
|
|
17638
17638
|
} | {
|
|
17639
17639
|
id: string;
|
|
@@ -17703,7 +17703,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17703
17703
|
valueAsType: {
|
|
17704
17704
|
id: string;
|
|
17705
17705
|
type: EntityType.GenericReference;
|
|
17706
|
-
entityType: EntityType.
|
|
17706
|
+
entityType: EntityType.DefinitionEntity;
|
|
17707
17707
|
entityId: string;
|
|
17708
17708
|
} | {
|
|
17709
17709
|
id: string;
|
|
@@ -17749,7 +17749,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17749
17749
|
valueAsType: {
|
|
17750
17750
|
id: string;
|
|
17751
17751
|
type: EntityType.GenericReference;
|
|
17752
|
-
entityType: EntityType.
|
|
17752
|
+
entityType: EntityType.DefinitionEntity;
|
|
17753
17753
|
entityId: string;
|
|
17754
17754
|
} | {
|
|
17755
17755
|
id: string;
|
|
@@ -17795,7 +17795,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17795
17795
|
valueAsType: {
|
|
17796
17796
|
id: string;
|
|
17797
17797
|
type: EntityType.GenericReference;
|
|
17798
|
-
entityType: EntityType.
|
|
17798
|
+
entityType: EntityType.DefinitionEntity;
|
|
17799
17799
|
entityId: string;
|
|
17800
17800
|
} | {
|
|
17801
17801
|
id: string;
|
|
@@ -17833,7 +17833,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17833
17833
|
valueAsType: {
|
|
17834
17834
|
id: string;
|
|
17835
17835
|
type: EntityType.GenericReference;
|
|
17836
|
-
entityType: EntityType.
|
|
17836
|
+
entityType: EntityType.DefinitionEntity;
|
|
17837
17837
|
entityId: string;
|
|
17838
17838
|
} | {
|
|
17839
17839
|
id: string;
|
|
@@ -17867,7 +17867,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17867
17867
|
valueAsType: {
|
|
17868
17868
|
id: string;
|
|
17869
17869
|
type: EntityType.GenericReference;
|
|
17870
|
-
entityType: EntityType.
|
|
17870
|
+
entityType: EntityType.DefinitionEntity;
|
|
17871
17871
|
entityId: string;
|
|
17872
17872
|
} | {
|
|
17873
17873
|
id: string;
|
|
@@ -17917,7 +17917,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17917
17917
|
valueAsType: {
|
|
17918
17918
|
id: string;
|
|
17919
17919
|
type: EntityType.GenericReference;
|
|
17920
|
-
entityType: EntityType.
|
|
17920
|
+
entityType: EntityType.DefinitionEntity;
|
|
17921
17921
|
entityId: string;
|
|
17922
17922
|
} | {
|
|
17923
17923
|
id: string;
|
|
@@ -17951,7 +17951,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17951
17951
|
valueAsType: {
|
|
17952
17952
|
id: string;
|
|
17953
17953
|
type: EntityType.GenericReference;
|
|
17954
|
-
entityType: EntityType.
|
|
17954
|
+
entityType: EntityType.DefinitionEntity;
|
|
17955
17955
|
entityId: string;
|
|
17956
17956
|
} | {
|
|
17957
17957
|
id: string;
|
|
@@ -17985,7 +17985,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17985
17985
|
valueAsType: {
|
|
17986
17986
|
id: string;
|
|
17987
17987
|
type: EntityType.GenericReference;
|
|
17988
|
-
entityType: EntityType.
|
|
17988
|
+
entityType: EntityType.DefinitionEntity;
|
|
17989
17989
|
entityId: string;
|
|
17990
17990
|
} | {
|
|
17991
17991
|
id: string;
|
|
@@ -18019,7 +18019,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
18019
18019
|
valueAsType: {
|
|
18020
18020
|
id: string;
|
|
18021
18021
|
type: EntityType.GenericReference;
|
|
18022
|
-
entityType: EntityType.
|
|
18022
|
+
entityType: EntityType.DefinitionEntity;
|
|
18023
18023
|
entityId: string;
|
|
18024
18024
|
} | {
|
|
18025
18025
|
id: string;
|
|
@@ -18057,7 +18057,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
18057
18057
|
valueAsType: {
|
|
18058
18058
|
id: string;
|
|
18059
18059
|
type: EntityType.GenericReference;
|
|
18060
|
-
entityType: EntityType.
|
|
18060
|
+
entityType: EntityType.DefinitionEntity;
|
|
18061
18061
|
entityId: string;
|
|
18062
18062
|
} | {
|
|
18063
18063
|
id: string;
|
|
@@ -18086,7 +18086,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
18086
18086
|
value: {
|
|
18087
18087
|
id: string;
|
|
18088
18088
|
type: EntityType.GenericReference;
|
|
18089
|
-
entityType: EntityType.
|
|
18089
|
+
entityType: EntityType.DefinitionEntity;
|
|
18090
18090
|
entityId: string;
|
|
18091
18091
|
};
|
|
18092
18092
|
} | {
|
|
@@ -18096,7 +18096,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
18096
18096
|
valueAsType: {
|
|
18097
18097
|
id: string;
|
|
18098
18098
|
type: EntityType.GenericReference;
|
|
18099
|
-
entityType: EntityType.
|
|
18099
|
+
entityType: EntityType.DefinitionEntity;
|
|
18100
18100
|
entityId: string;
|
|
18101
18101
|
} | {
|
|
18102
18102
|
id: string;
|
|
@@ -18164,16 +18164,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
18164
18164
|
id: z.ZodString;
|
|
18165
18165
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
18166
18166
|
entityId: z.ZodString;
|
|
18167
|
-
entityType: z.ZodLiteral<EntityType.
|
|
18167
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
18168
18168
|
}, "strip", z.ZodTypeAny, {
|
|
18169
18169
|
id: string;
|
|
18170
18170
|
type: EntityType.GenericReference;
|
|
18171
|
-
entityType: EntityType.
|
|
18171
|
+
entityType: EntityType.DefinitionEntity;
|
|
18172
18172
|
entityId: string;
|
|
18173
18173
|
}, {
|
|
18174
18174
|
id: string;
|
|
18175
18175
|
type: EntityType.GenericReference;
|
|
18176
|
-
entityType: EntityType.
|
|
18176
|
+
entityType: EntityType.DefinitionEntity;
|
|
18177
18177
|
entityId: string;
|
|
18178
18178
|
}>, z.ZodObject<{
|
|
18179
18179
|
id: z.ZodString;
|
|
@@ -18564,7 +18564,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
18564
18564
|
valueAsType: {
|
|
18565
18565
|
id: string;
|
|
18566
18566
|
type: EntityType.GenericReference;
|
|
18567
|
-
entityType: EntityType.
|
|
18567
|
+
entityType: EntityType.DefinitionEntity;
|
|
18568
18568
|
entityId: string;
|
|
18569
18569
|
} | {
|
|
18570
18570
|
id: string;
|
|
@@ -18610,7 +18610,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
18610
18610
|
valueAsType: {
|
|
18611
18611
|
id: string;
|
|
18612
18612
|
type: EntityType.GenericReference;
|
|
18613
|
-
entityType: EntityType.
|
|
18613
|
+
entityType: EntityType.DefinitionEntity;
|
|
18614
18614
|
entityId: string;
|
|
18615
18615
|
} | {
|
|
18616
18616
|
id: string;
|
|
@@ -18659,16 +18659,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
18659
18659
|
id: z.ZodString;
|
|
18660
18660
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
18661
18661
|
entityId: z.ZodString;
|
|
18662
|
-
entityType: z.ZodLiteral<EntityType.
|
|
18662
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
18663
18663
|
}, "strip", z.ZodTypeAny, {
|
|
18664
18664
|
id: string;
|
|
18665
18665
|
type: EntityType.GenericReference;
|
|
18666
|
-
entityType: EntityType.
|
|
18666
|
+
entityType: EntityType.DefinitionEntity;
|
|
18667
18667
|
entityId: string;
|
|
18668
18668
|
}, {
|
|
18669
18669
|
id: string;
|
|
18670
18670
|
type: EntityType.GenericReference;
|
|
18671
|
-
entityType: EntityType.
|
|
18671
|
+
entityType: EntityType.DefinitionEntity;
|
|
18672
18672
|
entityId: string;
|
|
18673
18673
|
}>, z.ZodObject<{
|
|
18674
18674
|
id: z.ZodString;
|
|
@@ -19059,7 +19059,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19059
19059
|
valueAsType: {
|
|
19060
19060
|
id: string;
|
|
19061
19061
|
type: EntityType.GenericReference;
|
|
19062
|
-
entityType: EntityType.
|
|
19062
|
+
entityType: EntityType.DefinitionEntity;
|
|
19063
19063
|
entityId: string;
|
|
19064
19064
|
} | {
|
|
19065
19065
|
id: string;
|
|
@@ -19105,7 +19105,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19105
19105
|
valueAsType: {
|
|
19106
19106
|
id: string;
|
|
19107
19107
|
type: EntityType.GenericReference;
|
|
19108
|
-
entityType: EntityType.
|
|
19108
|
+
entityType: EntityType.DefinitionEntity;
|
|
19109
19109
|
entityId: string;
|
|
19110
19110
|
} | {
|
|
19111
19111
|
id: string;
|
|
@@ -19154,16 +19154,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19154
19154
|
id: z.ZodString;
|
|
19155
19155
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
19156
19156
|
entityId: z.ZodString;
|
|
19157
|
-
entityType: z.ZodLiteral<EntityType.
|
|
19157
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
19158
19158
|
}, "strip", z.ZodTypeAny, {
|
|
19159
19159
|
id: string;
|
|
19160
19160
|
type: EntityType.GenericReference;
|
|
19161
|
-
entityType: EntityType.
|
|
19161
|
+
entityType: EntityType.DefinitionEntity;
|
|
19162
19162
|
entityId: string;
|
|
19163
19163
|
}, {
|
|
19164
19164
|
id: string;
|
|
19165
19165
|
type: EntityType.GenericReference;
|
|
19166
|
-
entityType: EntityType.
|
|
19166
|
+
entityType: EntityType.DefinitionEntity;
|
|
19167
19167
|
entityId: string;
|
|
19168
19168
|
}>, z.ZodObject<{
|
|
19169
19169
|
id: z.ZodString;
|
|
@@ -19507,7 +19507,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19507
19507
|
valueAsType: {
|
|
19508
19508
|
id: string;
|
|
19509
19509
|
type: EntityType.GenericReference;
|
|
19510
|
-
entityType: EntityType.
|
|
19510
|
+
entityType: EntityType.DefinitionEntity;
|
|
19511
19511
|
entityId: string;
|
|
19512
19512
|
} | {
|
|
19513
19513
|
id: string;
|
|
@@ -19545,7 +19545,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19545
19545
|
valueAsType: {
|
|
19546
19546
|
id: string;
|
|
19547
19547
|
type: EntityType.GenericReference;
|
|
19548
|
-
entityType: EntityType.
|
|
19548
|
+
entityType: EntityType.DefinitionEntity;
|
|
19549
19549
|
entityId: string;
|
|
19550
19550
|
} | {
|
|
19551
19551
|
id: string;
|
|
@@ -19586,16 +19586,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19586
19586
|
id: z.ZodString;
|
|
19587
19587
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
19588
19588
|
entityId: z.ZodString;
|
|
19589
|
-
entityType: z.ZodLiteral<EntityType.
|
|
19589
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
19590
19590
|
}, "strip", z.ZodTypeAny, {
|
|
19591
19591
|
id: string;
|
|
19592
19592
|
type: EntityType.GenericReference;
|
|
19593
|
-
entityType: EntityType.
|
|
19593
|
+
entityType: EntityType.DefinitionEntity;
|
|
19594
19594
|
entityId: string;
|
|
19595
19595
|
}, {
|
|
19596
19596
|
id: string;
|
|
19597
19597
|
type: EntityType.GenericReference;
|
|
19598
|
-
entityType: EntityType.
|
|
19598
|
+
entityType: EntityType.DefinitionEntity;
|
|
19599
19599
|
entityId: string;
|
|
19600
19600
|
}>, z.ZodObject<{
|
|
19601
19601
|
id: z.ZodString;
|
|
@@ -19920,7 +19920,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19920
19920
|
valueAsType: {
|
|
19921
19921
|
id: string;
|
|
19922
19922
|
type: EntityType.GenericReference;
|
|
19923
|
-
entityType: EntityType.
|
|
19923
|
+
entityType: EntityType.DefinitionEntity;
|
|
19924
19924
|
entityId: string;
|
|
19925
19925
|
} | {
|
|
19926
19926
|
id: string;
|
|
@@ -19954,7 +19954,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19954
19954
|
valueAsType: {
|
|
19955
19955
|
id: string;
|
|
19956
19956
|
type: EntityType.GenericReference;
|
|
19957
|
-
entityType: EntityType.
|
|
19957
|
+
entityType: EntityType.DefinitionEntity;
|
|
19958
19958
|
entityId: string;
|
|
19959
19959
|
} | {
|
|
19960
19960
|
id: string;
|
|
@@ -19991,16 +19991,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
19991
19991
|
id: z.ZodString;
|
|
19992
19992
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
19993
19993
|
entityId: z.ZodString;
|
|
19994
|
-
entityType: z.ZodLiteral<EntityType.
|
|
19994
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
19995
19995
|
}, "strip", z.ZodTypeAny, {
|
|
19996
19996
|
id: string;
|
|
19997
19997
|
type: EntityType.GenericReference;
|
|
19998
|
-
entityType: EntityType.
|
|
19998
|
+
entityType: EntityType.DefinitionEntity;
|
|
19999
19999
|
entityId: string;
|
|
20000
20000
|
}, {
|
|
20001
20001
|
id: string;
|
|
20002
20002
|
type: EntityType.GenericReference;
|
|
20003
|
-
entityType: EntityType.
|
|
20003
|
+
entityType: EntityType.DefinitionEntity;
|
|
20004
20004
|
entityId: string;
|
|
20005
20005
|
}>, z.ZodObject<{
|
|
20006
20006
|
id: z.ZodString;
|
|
@@ -20407,7 +20407,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
20407
20407
|
valueAsType: {
|
|
20408
20408
|
id: string;
|
|
20409
20409
|
type: EntityType.GenericReference;
|
|
20410
|
-
entityType: EntityType.
|
|
20410
|
+
entityType: EntityType.DefinitionEntity;
|
|
20411
20411
|
entityId: string;
|
|
20412
20412
|
} | {
|
|
20413
20413
|
id: string;
|
|
@@ -20457,7 +20457,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
20457
20457
|
valueAsType: {
|
|
20458
20458
|
id: string;
|
|
20459
20459
|
type: EntityType.GenericReference;
|
|
20460
|
-
entityType: EntityType.
|
|
20460
|
+
entityType: EntityType.DefinitionEntity;
|
|
20461
20461
|
entityId: string;
|
|
20462
20462
|
} | {
|
|
20463
20463
|
id: string;
|
|
@@ -20510,16 +20510,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
20510
20510
|
id: z.ZodString;
|
|
20511
20511
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
20512
20512
|
entityId: z.ZodString;
|
|
20513
|
-
entityType: z.ZodLiteral<EntityType.
|
|
20513
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
20514
20514
|
}, "strip", z.ZodTypeAny, {
|
|
20515
20515
|
id: string;
|
|
20516
20516
|
type: EntityType.GenericReference;
|
|
20517
|
-
entityType: EntityType.
|
|
20517
|
+
entityType: EntityType.DefinitionEntity;
|
|
20518
20518
|
entityId: string;
|
|
20519
20519
|
}, {
|
|
20520
20520
|
id: string;
|
|
20521
20521
|
type: EntityType.GenericReference;
|
|
20522
|
-
entityType: EntityType.
|
|
20522
|
+
entityType: EntityType.DefinitionEntity;
|
|
20523
20523
|
entityId: string;
|
|
20524
20524
|
}>, z.ZodObject<{
|
|
20525
20525
|
id: z.ZodString;
|
|
@@ -20844,7 +20844,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
20844
20844
|
valueAsType: {
|
|
20845
20845
|
id: string;
|
|
20846
20846
|
type: EntityType.GenericReference;
|
|
20847
|
-
entityType: EntityType.
|
|
20847
|
+
entityType: EntityType.DefinitionEntity;
|
|
20848
20848
|
entityId: string;
|
|
20849
20849
|
} | {
|
|
20850
20850
|
id: string;
|
|
@@ -20878,7 +20878,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
20878
20878
|
valueAsType: {
|
|
20879
20879
|
id: string;
|
|
20880
20880
|
type: EntityType.GenericReference;
|
|
20881
|
-
entityType: EntityType.
|
|
20881
|
+
entityType: EntityType.DefinitionEntity;
|
|
20882
20882
|
entityId: string;
|
|
20883
20883
|
} | {
|
|
20884
20884
|
id: string;
|
|
@@ -20915,16 +20915,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
20915
20915
|
id: z.ZodString;
|
|
20916
20916
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
20917
20917
|
entityId: z.ZodString;
|
|
20918
|
-
entityType: z.ZodLiteral<EntityType.
|
|
20918
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
20919
20919
|
}, "strip", z.ZodTypeAny, {
|
|
20920
20920
|
id: string;
|
|
20921
20921
|
type: EntityType.GenericReference;
|
|
20922
|
-
entityType: EntityType.
|
|
20922
|
+
entityType: EntityType.DefinitionEntity;
|
|
20923
20923
|
entityId: string;
|
|
20924
20924
|
}, {
|
|
20925
20925
|
id: string;
|
|
20926
20926
|
type: EntityType.GenericReference;
|
|
20927
|
-
entityType: EntityType.
|
|
20927
|
+
entityType: EntityType.DefinitionEntity;
|
|
20928
20928
|
entityId: string;
|
|
20929
20929
|
}>, z.ZodObject<{
|
|
20930
20930
|
id: z.ZodString;
|
|
@@ -21249,7 +21249,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
21249
21249
|
valueAsType: {
|
|
21250
21250
|
id: string;
|
|
21251
21251
|
type: EntityType.GenericReference;
|
|
21252
|
-
entityType: EntityType.
|
|
21252
|
+
entityType: EntityType.DefinitionEntity;
|
|
21253
21253
|
entityId: string;
|
|
21254
21254
|
} | {
|
|
21255
21255
|
id: string;
|
|
@@ -21283,7 +21283,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
21283
21283
|
valueAsType: {
|
|
21284
21284
|
id: string;
|
|
21285
21285
|
type: EntityType.GenericReference;
|
|
21286
|
-
entityType: EntityType.
|
|
21286
|
+
entityType: EntityType.DefinitionEntity;
|
|
21287
21287
|
entityId: string;
|
|
21288
21288
|
} | {
|
|
21289
21289
|
id: string;
|
|
@@ -21320,16 +21320,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
21320
21320
|
id: z.ZodString;
|
|
21321
21321
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
21322
21322
|
entityId: z.ZodString;
|
|
21323
|
-
entityType: z.ZodLiteral<EntityType.
|
|
21323
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
21324
21324
|
}, "strip", z.ZodTypeAny, {
|
|
21325
21325
|
id: string;
|
|
21326
21326
|
type: EntityType.GenericReference;
|
|
21327
|
-
entityType: EntityType.
|
|
21327
|
+
entityType: EntityType.DefinitionEntity;
|
|
21328
21328
|
entityId: string;
|
|
21329
21329
|
}, {
|
|
21330
21330
|
id: string;
|
|
21331
21331
|
type: EntityType.GenericReference;
|
|
21332
|
-
entityType: EntityType.
|
|
21332
|
+
entityType: EntityType.DefinitionEntity;
|
|
21333
21333
|
entityId: string;
|
|
21334
21334
|
}>, z.ZodObject<{
|
|
21335
21335
|
id: z.ZodString;
|
|
@@ -21654,7 +21654,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
21654
21654
|
valueAsType: {
|
|
21655
21655
|
id: string;
|
|
21656
21656
|
type: EntityType.GenericReference;
|
|
21657
|
-
entityType: EntityType.
|
|
21657
|
+
entityType: EntityType.DefinitionEntity;
|
|
21658
21658
|
entityId: string;
|
|
21659
21659
|
} | {
|
|
21660
21660
|
id: string;
|
|
@@ -21688,7 +21688,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
21688
21688
|
valueAsType: {
|
|
21689
21689
|
id: string;
|
|
21690
21690
|
type: EntityType.GenericReference;
|
|
21691
|
-
entityType: EntityType.
|
|
21691
|
+
entityType: EntityType.DefinitionEntity;
|
|
21692
21692
|
entityId: string;
|
|
21693
21693
|
} | {
|
|
21694
21694
|
id: string;
|
|
@@ -21725,16 +21725,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
21725
21725
|
id: z.ZodString;
|
|
21726
21726
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
21727
21727
|
entityId: z.ZodString;
|
|
21728
|
-
entityType: z.ZodLiteral<EntityType.
|
|
21728
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
21729
21729
|
}, "strip", z.ZodTypeAny, {
|
|
21730
21730
|
id: string;
|
|
21731
21731
|
type: EntityType.GenericReference;
|
|
21732
|
-
entityType: EntityType.
|
|
21732
|
+
entityType: EntityType.DefinitionEntity;
|
|
21733
21733
|
entityId: string;
|
|
21734
21734
|
}, {
|
|
21735
21735
|
id: string;
|
|
21736
21736
|
type: EntityType.GenericReference;
|
|
21737
|
-
entityType: EntityType.
|
|
21737
|
+
entityType: EntityType.DefinitionEntity;
|
|
21738
21738
|
entityId: string;
|
|
21739
21739
|
}>, z.ZodObject<{
|
|
21740
21740
|
id: z.ZodString;
|
|
@@ -22075,7 +22075,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22075
22075
|
valueAsType: {
|
|
22076
22076
|
id: string;
|
|
22077
22077
|
type: EntityType.GenericReference;
|
|
22078
|
-
entityType: EntityType.
|
|
22078
|
+
entityType: EntityType.DefinitionEntity;
|
|
22079
22079
|
entityId: string;
|
|
22080
22080
|
} | {
|
|
22081
22081
|
id: string;
|
|
@@ -22113,7 +22113,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22113
22113
|
valueAsType: {
|
|
22114
22114
|
id: string;
|
|
22115
22115
|
type: EntityType.GenericReference;
|
|
22116
|
-
entityType: EntityType.
|
|
22116
|
+
entityType: EntityType.DefinitionEntity;
|
|
22117
22117
|
entityId: string;
|
|
22118
22118
|
} | {
|
|
22119
22119
|
id: string;
|
|
@@ -22154,16 +22154,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22154
22154
|
id: z.ZodString;
|
|
22155
22155
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
22156
22156
|
entityId: z.ZodString;
|
|
22157
|
-
entityType: z.ZodLiteral<EntityType.
|
|
22157
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
22158
22158
|
}, "strip", z.ZodTypeAny, {
|
|
22159
22159
|
id: string;
|
|
22160
22160
|
type: EntityType.GenericReference;
|
|
22161
|
-
entityType: EntityType.
|
|
22161
|
+
entityType: EntityType.DefinitionEntity;
|
|
22162
22162
|
entityId: string;
|
|
22163
22163
|
}, {
|
|
22164
22164
|
id: string;
|
|
22165
22165
|
type: EntityType.GenericReference;
|
|
22166
|
-
entityType: EntityType.
|
|
22166
|
+
entityType: EntityType.DefinitionEntity;
|
|
22167
22167
|
entityId: string;
|
|
22168
22168
|
}>, z.ZodObject<{
|
|
22169
22169
|
id: z.ZodString;
|
|
@@ -22483,16 +22483,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22483
22483
|
id: z.ZodString;
|
|
22484
22484
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
22485
22485
|
entityId: z.ZodString;
|
|
22486
|
-
entityType: z.ZodLiteral<EntityType.
|
|
22486
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
22487
22487
|
}, "strip", z.ZodTypeAny, {
|
|
22488
22488
|
id: string;
|
|
22489
22489
|
type: EntityType.GenericReference;
|
|
22490
|
-
entityType: EntityType.
|
|
22490
|
+
entityType: EntityType.DefinitionEntity;
|
|
22491
22491
|
entityId: string;
|
|
22492
22492
|
}, {
|
|
22493
22493
|
id: string;
|
|
22494
22494
|
type: EntityType.GenericReference;
|
|
22495
|
-
entityType: EntityType.
|
|
22495
|
+
entityType: EntityType.DefinitionEntity;
|
|
22496
22496
|
entityId: string;
|
|
22497
22497
|
}>;
|
|
22498
22498
|
autogeneration: z.ZodNull;
|
|
@@ -22503,7 +22503,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22503
22503
|
valueAsType: {
|
|
22504
22504
|
id: string;
|
|
22505
22505
|
type: EntityType.GenericReference;
|
|
22506
|
-
entityType: EntityType.
|
|
22506
|
+
entityType: EntityType.DefinitionEntity;
|
|
22507
22507
|
entityId: string;
|
|
22508
22508
|
} | {
|
|
22509
22509
|
id: string;
|
|
@@ -22532,7 +22532,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22532
22532
|
value: {
|
|
22533
22533
|
id: string;
|
|
22534
22534
|
type: EntityType.GenericReference;
|
|
22535
|
-
entityType: EntityType.
|
|
22535
|
+
entityType: EntityType.DefinitionEntity;
|
|
22536
22536
|
entityId: string;
|
|
22537
22537
|
};
|
|
22538
22538
|
}, {
|
|
@@ -22542,7 +22542,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22542
22542
|
valueAsType: {
|
|
22543
22543
|
id: string;
|
|
22544
22544
|
type: EntityType.GenericReference;
|
|
22545
|
-
entityType: EntityType.
|
|
22545
|
+
entityType: EntityType.DefinitionEntity;
|
|
22546
22546
|
entityId: string;
|
|
22547
22547
|
} | {
|
|
22548
22548
|
id: string;
|
|
@@ -22571,7 +22571,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22571
22571
|
value: {
|
|
22572
22572
|
id: string;
|
|
22573
22573
|
type: EntityType.GenericReference;
|
|
22574
|
-
entityType: EntityType.
|
|
22574
|
+
entityType: EntityType.DefinitionEntity;
|
|
22575
22575
|
entityId: string;
|
|
22576
22576
|
};
|
|
22577
22577
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -22584,16 +22584,16 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22584
22584
|
id: z.ZodString;
|
|
22585
22585
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
22586
22586
|
entityId: z.ZodString;
|
|
22587
|
-
entityType: z.ZodLiteral<EntityType.
|
|
22587
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
22588
22588
|
}, "strip", z.ZodTypeAny, {
|
|
22589
22589
|
id: string;
|
|
22590
22590
|
type: EntityType.GenericReference;
|
|
22591
|
-
entityType: EntityType.
|
|
22591
|
+
entityType: EntityType.DefinitionEntity;
|
|
22592
22592
|
entityId: string;
|
|
22593
22593
|
}, {
|
|
22594
22594
|
id: string;
|
|
22595
22595
|
type: EntityType.GenericReference;
|
|
22596
|
-
entityType: EntityType.
|
|
22596
|
+
entityType: EntityType.DefinitionEntity;
|
|
22597
22597
|
entityId: string;
|
|
22598
22598
|
}>, z.ZodObject<{
|
|
22599
22599
|
id: z.ZodString;
|
|
@@ -22933,7 +22933,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22933
22933
|
valueAsType: {
|
|
22934
22934
|
id: string;
|
|
22935
22935
|
type: EntityType.GenericReference;
|
|
22936
|
-
entityType: EntityType.
|
|
22936
|
+
entityType: EntityType.DefinitionEntity;
|
|
22937
22937
|
entityId: string;
|
|
22938
22938
|
} | {
|
|
22939
22939
|
id: string;
|
|
@@ -22972,7 +22972,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
22972
22972
|
valueAsType: {
|
|
22973
22973
|
id: string;
|
|
22974
22974
|
type: EntityType.GenericReference;
|
|
22975
|
-
entityType: EntityType.
|
|
22975
|
+
entityType: EntityType.DefinitionEntity;
|
|
22976
22976
|
entityId: string;
|
|
22977
22977
|
} | {
|
|
22978
22978
|
id: string;
|
|
@@ -23111,7 +23111,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23111
23111
|
valueAsType: {
|
|
23112
23112
|
id: string;
|
|
23113
23113
|
type: EntityType.GenericReference;
|
|
23114
|
-
entityType: EntityType.
|
|
23114
|
+
entityType: EntityType.DefinitionEntity;
|
|
23115
23115
|
entityId: string;
|
|
23116
23116
|
} | {
|
|
23117
23117
|
id: string;
|
|
@@ -23157,7 +23157,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23157
23157
|
valueAsType: {
|
|
23158
23158
|
id: string;
|
|
23159
23159
|
type: EntityType.GenericReference;
|
|
23160
|
-
entityType: EntityType.
|
|
23160
|
+
entityType: EntityType.DefinitionEntity;
|
|
23161
23161
|
entityId: string;
|
|
23162
23162
|
} | {
|
|
23163
23163
|
id: string;
|
|
@@ -23203,7 +23203,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23203
23203
|
valueAsType: {
|
|
23204
23204
|
id: string;
|
|
23205
23205
|
type: EntityType.GenericReference;
|
|
23206
|
-
entityType: EntityType.
|
|
23206
|
+
entityType: EntityType.DefinitionEntity;
|
|
23207
23207
|
entityId: string;
|
|
23208
23208
|
} | {
|
|
23209
23209
|
id: string;
|
|
@@ -23241,7 +23241,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23241
23241
|
valueAsType: {
|
|
23242
23242
|
id: string;
|
|
23243
23243
|
type: EntityType.GenericReference;
|
|
23244
|
-
entityType: EntityType.
|
|
23244
|
+
entityType: EntityType.DefinitionEntity;
|
|
23245
23245
|
entityId: string;
|
|
23246
23246
|
} | {
|
|
23247
23247
|
id: string;
|
|
@@ -23275,7 +23275,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23275
23275
|
valueAsType: {
|
|
23276
23276
|
id: string;
|
|
23277
23277
|
type: EntityType.GenericReference;
|
|
23278
|
-
entityType: EntityType.
|
|
23278
|
+
entityType: EntityType.DefinitionEntity;
|
|
23279
23279
|
entityId: string;
|
|
23280
23280
|
} | {
|
|
23281
23281
|
id: string;
|
|
@@ -23325,7 +23325,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23325
23325
|
valueAsType: {
|
|
23326
23326
|
id: string;
|
|
23327
23327
|
type: EntityType.GenericReference;
|
|
23328
|
-
entityType: EntityType.
|
|
23328
|
+
entityType: EntityType.DefinitionEntity;
|
|
23329
23329
|
entityId: string;
|
|
23330
23330
|
} | {
|
|
23331
23331
|
id: string;
|
|
@@ -23359,7 +23359,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23359
23359
|
valueAsType: {
|
|
23360
23360
|
id: string;
|
|
23361
23361
|
type: EntityType.GenericReference;
|
|
23362
|
-
entityType: EntityType.
|
|
23362
|
+
entityType: EntityType.DefinitionEntity;
|
|
23363
23363
|
entityId: string;
|
|
23364
23364
|
} | {
|
|
23365
23365
|
id: string;
|
|
@@ -23393,7 +23393,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23393
23393
|
valueAsType: {
|
|
23394
23394
|
id: string;
|
|
23395
23395
|
type: EntityType.GenericReference;
|
|
23396
|
-
entityType: EntityType.
|
|
23396
|
+
entityType: EntityType.DefinitionEntity;
|
|
23397
23397
|
entityId: string;
|
|
23398
23398
|
} | {
|
|
23399
23399
|
id: string;
|
|
@@ -23427,7 +23427,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23427
23427
|
valueAsType: {
|
|
23428
23428
|
id: string;
|
|
23429
23429
|
type: EntityType.GenericReference;
|
|
23430
|
-
entityType: EntityType.
|
|
23430
|
+
entityType: EntityType.DefinitionEntity;
|
|
23431
23431
|
entityId: string;
|
|
23432
23432
|
} | {
|
|
23433
23433
|
id: string;
|
|
@@ -23465,7 +23465,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23465
23465
|
valueAsType: {
|
|
23466
23466
|
id: string;
|
|
23467
23467
|
type: EntityType.GenericReference;
|
|
23468
|
-
entityType: EntityType.
|
|
23468
|
+
entityType: EntityType.DefinitionEntity;
|
|
23469
23469
|
entityId: string;
|
|
23470
23470
|
} | {
|
|
23471
23471
|
id: string;
|
|
@@ -23494,7 +23494,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23494
23494
|
value: {
|
|
23495
23495
|
id: string;
|
|
23496
23496
|
type: EntityType.GenericReference;
|
|
23497
|
-
entityType: EntityType.
|
|
23497
|
+
entityType: EntityType.DefinitionEntity;
|
|
23498
23498
|
entityId: string;
|
|
23499
23499
|
};
|
|
23500
23500
|
} | {
|
|
@@ -23504,7 +23504,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23504
23504
|
valueAsType: {
|
|
23505
23505
|
id: string;
|
|
23506
23506
|
type: EntityType.GenericReference;
|
|
23507
|
-
entityType: EntityType.
|
|
23507
|
+
entityType: EntityType.DefinitionEntity;
|
|
23508
23508
|
entityId: string;
|
|
23509
23509
|
} | {
|
|
23510
23510
|
id: string;
|
|
@@ -23580,7 +23580,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23580
23580
|
valueAsType: {
|
|
23581
23581
|
id: string;
|
|
23582
23582
|
type: EntityType.GenericReference;
|
|
23583
|
-
entityType: EntityType.
|
|
23583
|
+
entityType: EntityType.DefinitionEntity;
|
|
23584
23584
|
entityId: string;
|
|
23585
23585
|
} | {
|
|
23586
23586
|
id: string;
|
|
@@ -23626,7 +23626,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23626
23626
|
valueAsType: {
|
|
23627
23627
|
id: string;
|
|
23628
23628
|
type: EntityType.GenericReference;
|
|
23629
|
-
entityType: EntityType.
|
|
23629
|
+
entityType: EntityType.DefinitionEntity;
|
|
23630
23630
|
entityId: string;
|
|
23631
23631
|
} | {
|
|
23632
23632
|
id: string;
|
|
@@ -23672,7 +23672,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23672
23672
|
valueAsType: {
|
|
23673
23673
|
id: string;
|
|
23674
23674
|
type: EntityType.GenericReference;
|
|
23675
|
-
entityType: EntityType.
|
|
23675
|
+
entityType: EntityType.DefinitionEntity;
|
|
23676
23676
|
entityId: string;
|
|
23677
23677
|
} | {
|
|
23678
23678
|
id: string;
|
|
@@ -23710,7 +23710,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23710
23710
|
valueAsType: {
|
|
23711
23711
|
id: string;
|
|
23712
23712
|
type: EntityType.GenericReference;
|
|
23713
|
-
entityType: EntityType.
|
|
23713
|
+
entityType: EntityType.DefinitionEntity;
|
|
23714
23714
|
entityId: string;
|
|
23715
23715
|
} | {
|
|
23716
23716
|
id: string;
|
|
@@ -23744,7 +23744,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23744
23744
|
valueAsType: {
|
|
23745
23745
|
id: string;
|
|
23746
23746
|
type: EntityType.GenericReference;
|
|
23747
|
-
entityType: EntityType.
|
|
23747
|
+
entityType: EntityType.DefinitionEntity;
|
|
23748
23748
|
entityId: string;
|
|
23749
23749
|
} | {
|
|
23750
23750
|
id: string;
|
|
@@ -23794,7 +23794,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23794
23794
|
valueAsType: {
|
|
23795
23795
|
id: string;
|
|
23796
23796
|
type: EntityType.GenericReference;
|
|
23797
|
-
entityType: EntityType.
|
|
23797
|
+
entityType: EntityType.DefinitionEntity;
|
|
23798
23798
|
entityId: string;
|
|
23799
23799
|
} | {
|
|
23800
23800
|
id: string;
|
|
@@ -23828,7 +23828,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23828
23828
|
valueAsType: {
|
|
23829
23829
|
id: string;
|
|
23830
23830
|
type: EntityType.GenericReference;
|
|
23831
|
-
entityType: EntityType.
|
|
23831
|
+
entityType: EntityType.DefinitionEntity;
|
|
23832
23832
|
entityId: string;
|
|
23833
23833
|
} | {
|
|
23834
23834
|
id: string;
|
|
@@ -23862,7 +23862,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23862
23862
|
valueAsType: {
|
|
23863
23863
|
id: string;
|
|
23864
23864
|
type: EntityType.GenericReference;
|
|
23865
|
-
entityType: EntityType.
|
|
23865
|
+
entityType: EntityType.DefinitionEntity;
|
|
23866
23866
|
entityId: string;
|
|
23867
23867
|
} | {
|
|
23868
23868
|
id: string;
|
|
@@ -23896,7 +23896,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23896
23896
|
valueAsType: {
|
|
23897
23897
|
id: string;
|
|
23898
23898
|
type: EntityType.GenericReference;
|
|
23899
|
-
entityType: EntityType.
|
|
23899
|
+
entityType: EntityType.DefinitionEntity;
|
|
23900
23900
|
entityId: string;
|
|
23901
23901
|
} | {
|
|
23902
23902
|
id: string;
|
|
@@ -23934,7 +23934,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23934
23934
|
valueAsType: {
|
|
23935
23935
|
id: string;
|
|
23936
23936
|
type: EntityType.GenericReference;
|
|
23937
|
-
entityType: EntityType.
|
|
23937
|
+
entityType: EntityType.DefinitionEntity;
|
|
23938
23938
|
entityId: string;
|
|
23939
23939
|
} | {
|
|
23940
23940
|
id: string;
|
|
@@ -23963,7 +23963,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23963
23963
|
value: {
|
|
23964
23964
|
id: string;
|
|
23965
23965
|
type: EntityType.GenericReference;
|
|
23966
|
-
entityType: EntityType.
|
|
23966
|
+
entityType: EntityType.DefinitionEntity;
|
|
23967
23967
|
entityId: string;
|
|
23968
23968
|
};
|
|
23969
23969
|
} | {
|
|
@@ -23973,7 +23973,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23973
23973
|
valueAsType: {
|
|
23974
23974
|
id: string;
|
|
23975
23975
|
type: EntityType.GenericReference;
|
|
23976
|
-
entityType: EntityType.
|
|
23976
|
+
entityType: EntityType.DefinitionEntity;
|
|
23977
23977
|
entityId: string;
|
|
23978
23978
|
} | {
|
|
23979
23979
|
id: string;
|
|
@@ -24052,16 +24052,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
24052
24052
|
id: z.ZodString;
|
|
24053
24053
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
24054
24054
|
entityId: z.ZodString;
|
|
24055
|
-
entityType: z.ZodLiteral<EntityType.
|
|
24055
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
24056
24056
|
}, "strip", z.ZodTypeAny, {
|
|
24057
24057
|
id: string;
|
|
24058
24058
|
type: EntityType.GenericReference;
|
|
24059
|
-
entityType: EntityType.
|
|
24059
|
+
entityType: EntityType.DefinitionEntity;
|
|
24060
24060
|
entityId: string;
|
|
24061
24061
|
}, {
|
|
24062
24062
|
id: string;
|
|
24063
24063
|
type: EntityType.GenericReference;
|
|
24064
|
-
entityType: EntityType.
|
|
24064
|
+
entityType: EntityType.DefinitionEntity;
|
|
24065
24065
|
entityId: string;
|
|
24066
24066
|
}>, z.ZodObject<{
|
|
24067
24067
|
id: z.ZodString;
|
|
@@ -24452,7 +24452,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
24452
24452
|
valueAsType: {
|
|
24453
24453
|
id: string;
|
|
24454
24454
|
type: EntityType.GenericReference;
|
|
24455
|
-
entityType: EntityType.
|
|
24455
|
+
entityType: EntityType.DefinitionEntity;
|
|
24456
24456
|
entityId: string;
|
|
24457
24457
|
} | {
|
|
24458
24458
|
id: string;
|
|
@@ -24498,7 +24498,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
24498
24498
|
valueAsType: {
|
|
24499
24499
|
id: string;
|
|
24500
24500
|
type: EntityType.GenericReference;
|
|
24501
|
-
entityType: EntityType.
|
|
24501
|
+
entityType: EntityType.DefinitionEntity;
|
|
24502
24502
|
entityId: string;
|
|
24503
24503
|
} | {
|
|
24504
24504
|
id: string;
|
|
@@ -24547,16 +24547,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
24547
24547
|
id: z.ZodString;
|
|
24548
24548
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
24549
24549
|
entityId: z.ZodString;
|
|
24550
|
-
entityType: z.ZodLiteral<EntityType.
|
|
24550
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
24551
24551
|
}, "strip", z.ZodTypeAny, {
|
|
24552
24552
|
id: string;
|
|
24553
24553
|
type: EntityType.GenericReference;
|
|
24554
|
-
entityType: EntityType.
|
|
24554
|
+
entityType: EntityType.DefinitionEntity;
|
|
24555
24555
|
entityId: string;
|
|
24556
24556
|
}, {
|
|
24557
24557
|
id: string;
|
|
24558
24558
|
type: EntityType.GenericReference;
|
|
24559
|
-
entityType: EntityType.
|
|
24559
|
+
entityType: EntityType.DefinitionEntity;
|
|
24560
24560
|
entityId: string;
|
|
24561
24561
|
}>, z.ZodObject<{
|
|
24562
24562
|
id: z.ZodString;
|
|
@@ -24947,7 +24947,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
24947
24947
|
valueAsType: {
|
|
24948
24948
|
id: string;
|
|
24949
24949
|
type: EntityType.GenericReference;
|
|
24950
|
-
entityType: EntityType.
|
|
24950
|
+
entityType: EntityType.DefinitionEntity;
|
|
24951
24951
|
entityId: string;
|
|
24952
24952
|
} | {
|
|
24953
24953
|
id: string;
|
|
@@ -24993,7 +24993,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
24993
24993
|
valueAsType: {
|
|
24994
24994
|
id: string;
|
|
24995
24995
|
type: EntityType.GenericReference;
|
|
24996
|
-
entityType: EntityType.
|
|
24996
|
+
entityType: EntityType.DefinitionEntity;
|
|
24997
24997
|
entityId: string;
|
|
24998
24998
|
} | {
|
|
24999
24999
|
id: string;
|
|
@@ -25042,16 +25042,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
25042
25042
|
id: z.ZodString;
|
|
25043
25043
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
25044
25044
|
entityId: z.ZodString;
|
|
25045
|
-
entityType: z.ZodLiteral<EntityType.
|
|
25045
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
25046
25046
|
}, "strip", z.ZodTypeAny, {
|
|
25047
25047
|
id: string;
|
|
25048
25048
|
type: EntityType.GenericReference;
|
|
25049
|
-
entityType: EntityType.
|
|
25049
|
+
entityType: EntityType.DefinitionEntity;
|
|
25050
25050
|
entityId: string;
|
|
25051
25051
|
}, {
|
|
25052
25052
|
id: string;
|
|
25053
25053
|
type: EntityType.GenericReference;
|
|
25054
|
-
entityType: EntityType.
|
|
25054
|
+
entityType: EntityType.DefinitionEntity;
|
|
25055
25055
|
entityId: string;
|
|
25056
25056
|
}>, z.ZodObject<{
|
|
25057
25057
|
id: z.ZodString;
|
|
@@ -25395,7 +25395,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
25395
25395
|
valueAsType: {
|
|
25396
25396
|
id: string;
|
|
25397
25397
|
type: EntityType.GenericReference;
|
|
25398
|
-
entityType: EntityType.
|
|
25398
|
+
entityType: EntityType.DefinitionEntity;
|
|
25399
25399
|
entityId: string;
|
|
25400
25400
|
} | {
|
|
25401
25401
|
id: string;
|
|
@@ -25433,7 +25433,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
25433
25433
|
valueAsType: {
|
|
25434
25434
|
id: string;
|
|
25435
25435
|
type: EntityType.GenericReference;
|
|
25436
|
-
entityType: EntityType.
|
|
25436
|
+
entityType: EntityType.DefinitionEntity;
|
|
25437
25437
|
entityId: string;
|
|
25438
25438
|
} | {
|
|
25439
25439
|
id: string;
|
|
@@ -25474,16 +25474,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
25474
25474
|
id: z.ZodString;
|
|
25475
25475
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
25476
25476
|
entityId: z.ZodString;
|
|
25477
|
-
entityType: z.ZodLiteral<EntityType.
|
|
25477
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
25478
25478
|
}, "strip", z.ZodTypeAny, {
|
|
25479
25479
|
id: string;
|
|
25480
25480
|
type: EntityType.GenericReference;
|
|
25481
|
-
entityType: EntityType.
|
|
25481
|
+
entityType: EntityType.DefinitionEntity;
|
|
25482
25482
|
entityId: string;
|
|
25483
25483
|
}, {
|
|
25484
25484
|
id: string;
|
|
25485
25485
|
type: EntityType.GenericReference;
|
|
25486
|
-
entityType: EntityType.
|
|
25486
|
+
entityType: EntityType.DefinitionEntity;
|
|
25487
25487
|
entityId: string;
|
|
25488
25488
|
}>, z.ZodObject<{
|
|
25489
25489
|
id: z.ZodString;
|
|
@@ -25808,7 +25808,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
25808
25808
|
valueAsType: {
|
|
25809
25809
|
id: string;
|
|
25810
25810
|
type: EntityType.GenericReference;
|
|
25811
|
-
entityType: EntityType.
|
|
25811
|
+
entityType: EntityType.DefinitionEntity;
|
|
25812
25812
|
entityId: string;
|
|
25813
25813
|
} | {
|
|
25814
25814
|
id: string;
|
|
@@ -25842,7 +25842,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
25842
25842
|
valueAsType: {
|
|
25843
25843
|
id: string;
|
|
25844
25844
|
type: EntityType.GenericReference;
|
|
25845
|
-
entityType: EntityType.
|
|
25845
|
+
entityType: EntityType.DefinitionEntity;
|
|
25846
25846
|
entityId: string;
|
|
25847
25847
|
} | {
|
|
25848
25848
|
id: string;
|
|
@@ -25879,16 +25879,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
25879
25879
|
id: z.ZodString;
|
|
25880
25880
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
25881
25881
|
entityId: z.ZodString;
|
|
25882
|
-
entityType: z.ZodLiteral<EntityType.
|
|
25882
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
25883
25883
|
}, "strip", z.ZodTypeAny, {
|
|
25884
25884
|
id: string;
|
|
25885
25885
|
type: EntityType.GenericReference;
|
|
25886
|
-
entityType: EntityType.
|
|
25886
|
+
entityType: EntityType.DefinitionEntity;
|
|
25887
25887
|
entityId: string;
|
|
25888
25888
|
}, {
|
|
25889
25889
|
id: string;
|
|
25890
25890
|
type: EntityType.GenericReference;
|
|
25891
|
-
entityType: EntityType.
|
|
25891
|
+
entityType: EntityType.DefinitionEntity;
|
|
25892
25892
|
entityId: string;
|
|
25893
25893
|
}>, z.ZodObject<{
|
|
25894
25894
|
id: z.ZodString;
|
|
@@ -26295,7 +26295,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
26295
26295
|
valueAsType: {
|
|
26296
26296
|
id: string;
|
|
26297
26297
|
type: EntityType.GenericReference;
|
|
26298
|
-
entityType: EntityType.
|
|
26298
|
+
entityType: EntityType.DefinitionEntity;
|
|
26299
26299
|
entityId: string;
|
|
26300
26300
|
} | {
|
|
26301
26301
|
id: string;
|
|
@@ -26345,7 +26345,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
26345
26345
|
valueAsType: {
|
|
26346
26346
|
id: string;
|
|
26347
26347
|
type: EntityType.GenericReference;
|
|
26348
|
-
entityType: EntityType.
|
|
26348
|
+
entityType: EntityType.DefinitionEntity;
|
|
26349
26349
|
entityId: string;
|
|
26350
26350
|
} | {
|
|
26351
26351
|
id: string;
|
|
@@ -26398,16 +26398,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
26398
26398
|
id: z.ZodString;
|
|
26399
26399
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
26400
26400
|
entityId: z.ZodString;
|
|
26401
|
-
entityType: z.ZodLiteral<EntityType.
|
|
26401
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
26402
26402
|
}, "strip", z.ZodTypeAny, {
|
|
26403
26403
|
id: string;
|
|
26404
26404
|
type: EntityType.GenericReference;
|
|
26405
|
-
entityType: EntityType.
|
|
26405
|
+
entityType: EntityType.DefinitionEntity;
|
|
26406
26406
|
entityId: string;
|
|
26407
26407
|
}, {
|
|
26408
26408
|
id: string;
|
|
26409
26409
|
type: EntityType.GenericReference;
|
|
26410
|
-
entityType: EntityType.
|
|
26410
|
+
entityType: EntityType.DefinitionEntity;
|
|
26411
26411
|
entityId: string;
|
|
26412
26412
|
}>, z.ZodObject<{
|
|
26413
26413
|
id: z.ZodString;
|
|
@@ -26732,7 +26732,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
26732
26732
|
valueAsType: {
|
|
26733
26733
|
id: string;
|
|
26734
26734
|
type: EntityType.GenericReference;
|
|
26735
|
-
entityType: EntityType.
|
|
26735
|
+
entityType: EntityType.DefinitionEntity;
|
|
26736
26736
|
entityId: string;
|
|
26737
26737
|
} | {
|
|
26738
26738
|
id: string;
|
|
@@ -26766,7 +26766,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
26766
26766
|
valueAsType: {
|
|
26767
26767
|
id: string;
|
|
26768
26768
|
type: EntityType.GenericReference;
|
|
26769
|
-
entityType: EntityType.
|
|
26769
|
+
entityType: EntityType.DefinitionEntity;
|
|
26770
26770
|
entityId: string;
|
|
26771
26771
|
} | {
|
|
26772
26772
|
id: string;
|
|
@@ -26803,16 +26803,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
26803
26803
|
id: z.ZodString;
|
|
26804
26804
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
26805
26805
|
entityId: z.ZodString;
|
|
26806
|
-
entityType: z.ZodLiteral<EntityType.
|
|
26806
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
26807
26807
|
}, "strip", z.ZodTypeAny, {
|
|
26808
26808
|
id: string;
|
|
26809
26809
|
type: EntityType.GenericReference;
|
|
26810
|
-
entityType: EntityType.
|
|
26810
|
+
entityType: EntityType.DefinitionEntity;
|
|
26811
26811
|
entityId: string;
|
|
26812
26812
|
}, {
|
|
26813
26813
|
id: string;
|
|
26814
26814
|
type: EntityType.GenericReference;
|
|
26815
|
-
entityType: EntityType.
|
|
26815
|
+
entityType: EntityType.DefinitionEntity;
|
|
26816
26816
|
entityId: string;
|
|
26817
26817
|
}>, z.ZodObject<{
|
|
26818
26818
|
id: z.ZodString;
|
|
@@ -27137,7 +27137,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
27137
27137
|
valueAsType: {
|
|
27138
27138
|
id: string;
|
|
27139
27139
|
type: EntityType.GenericReference;
|
|
27140
|
-
entityType: EntityType.
|
|
27140
|
+
entityType: EntityType.DefinitionEntity;
|
|
27141
27141
|
entityId: string;
|
|
27142
27142
|
} | {
|
|
27143
27143
|
id: string;
|
|
@@ -27171,7 +27171,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
27171
27171
|
valueAsType: {
|
|
27172
27172
|
id: string;
|
|
27173
27173
|
type: EntityType.GenericReference;
|
|
27174
|
-
entityType: EntityType.
|
|
27174
|
+
entityType: EntityType.DefinitionEntity;
|
|
27175
27175
|
entityId: string;
|
|
27176
27176
|
} | {
|
|
27177
27177
|
id: string;
|
|
@@ -27208,16 +27208,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
27208
27208
|
id: z.ZodString;
|
|
27209
27209
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
27210
27210
|
entityId: z.ZodString;
|
|
27211
|
-
entityType: z.ZodLiteral<EntityType.
|
|
27211
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
27212
27212
|
}, "strip", z.ZodTypeAny, {
|
|
27213
27213
|
id: string;
|
|
27214
27214
|
type: EntityType.GenericReference;
|
|
27215
|
-
entityType: EntityType.
|
|
27215
|
+
entityType: EntityType.DefinitionEntity;
|
|
27216
27216
|
entityId: string;
|
|
27217
27217
|
}, {
|
|
27218
27218
|
id: string;
|
|
27219
27219
|
type: EntityType.GenericReference;
|
|
27220
|
-
entityType: EntityType.
|
|
27220
|
+
entityType: EntityType.DefinitionEntity;
|
|
27221
27221
|
entityId: string;
|
|
27222
27222
|
}>, z.ZodObject<{
|
|
27223
27223
|
id: z.ZodString;
|
|
@@ -27542,7 +27542,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
27542
27542
|
valueAsType: {
|
|
27543
27543
|
id: string;
|
|
27544
27544
|
type: EntityType.GenericReference;
|
|
27545
|
-
entityType: EntityType.
|
|
27545
|
+
entityType: EntityType.DefinitionEntity;
|
|
27546
27546
|
entityId: string;
|
|
27547
27547
|
} | {
|
|
27548
27548
|
id: string;
|
|
@@ -27576,7 +27576,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
27576
27576
|
valueAsType: {
|
|
27577
27577
|
id: string;
|
|
27578
27578
|
type: EntityType.GenericReference;
|
|
27579
|
-
entityType: EntityType.
|
|
27579
|
+
entityType: EntityType.DefinitionEntity;
|
|
27580
27580
|
entityId: string;
|
|
27581
27581
|
} | {
|
|
27582
27582
|
id: string;
|
|
@@ -27613,16 +27613,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
27613
27613
|
id: z.ZodString;
|
|
27614
27614
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
27615
27615
|
entityId: z.ZodString;
|
|
27616
|
-
entityType: z.ZodLiteral<EntityType.
|
|
27616
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
27617
27617
|
}, "strip", z.ZodTypeAny, {
|
|
27618
27618
|
id: string;
|
|
27619
27619
|
type: EntityType.GenericReference;
|
|
27620
|
-
entityType: EntityType.
|
|
27620
|
+
entityType: EntityType.DefinitionEntity;
|
|
27621
27621
|
entityId: string;
|
|
27622
27622
|
}, {
|
|
27623
27623
|
id: string;
|
|
27624
27624
|
type: EntityType.GenericReference;
|
|
27625
|
-
entityType: EntityType.
|
|
27625
|
+
entityType: EntityType.DefinitionEntity;
|
|
27626
27626
|
entityId: string;
|
|
27627
27627
|
}>, z.ZodObject<{
|
|
27628
27628
|
id: z.ZodString;
|
|
@@ -27963,7 +27963,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
27963
27963
|
valueAsType: {
|
|
27964
27964
|
id: string;
|
|
27965
27965
|
type: EntityType.GenericReference;
|
|
27966
|
-
entityType: EntityType.
|
|
27966
|
+
entityType: EntityType.DefinitionEntity;
|
|
27967
27967
|
entityId: string;
|
|
27968
27968
|
} | {
|
|
27969
27969
|
id: string;
|
|
@@ -28001,7 +28001,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28001
28001
|
valueAsType: {
|
|
28002
28002
|
id: string;
|
|
28003
28003
|
type: EntityType.GenericReference;
|
|
28004
|
-
entityType: EntityType.
|
|
28004
|
+
entityType: EntityType.DefinitionEntity;
|
|
28005
28005
|
entityId: string;
|
|
28006
28006
|
} | {
|
|
28007
28007
|
id: string;
|
|
@@ -28042,16 +28042,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28042
28042
|
id: z.ZodString;
|
|
28043
28043
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
28044
28044
|
entityId: z.ZodString;
|
|
28045
|
-
entityType: z.ZodLiteral<EntityType.
|
|
28045
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
28046
28046
|
}, "strip", z.ZodTypeAny, {
|
|
28047
28047
|
id: string;
|
|
28048
28048
|
type: EntityType.GenericReference;
|
|
28049
|
-
entityType: EntityType.
|
|
28049
|
+
entityType: EntityType.DefinitionEntity;
|
|
28050
28050
|
entityId: string;
|
|
28051
28051
|
}, {
|
|
28052
28052
|
id: string;
|
|
28053
28053
|
type: EntityType.GenericReference;
|
|
28054
|
-
entityType: EntityType.
|
|
28054
|
+
entityType: EntityType.DefinitionEntity;
|
|
28055
28055
|
entityId: string;
|
|
28056
28056
|
}>, z.ZodObject<{
|
|
28057
28057
|
id: z.ZodString;
|
|
@@ -28371,16 +28371,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28371
28371
|
id: z.ZodString;
|
|
28372
28372
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
28373
28373
|
entityId: z.ZodString;
|
|
28374
|
-
entityType: z.ZodLiteral<EntityType.
|
|
28374
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
28375
28375
|
}, "strip", z.ZodTypeAny, {
|
|
28376
28376
|
id: string;
|
|
28377
28377
|
type: EntityType.GenericReference;
|
|
28378
|
-
entityType: EntityType.
|
|
28378
|
+
entityType: EntityType.DefinitionEntity;
|
|
28379
28379
|
entityId: string;
|
|
28380
28380
|
}, {
|
|
28381
28381
|
id: string;
|
|
28382
28382
|
type: EntityType.GenericReference;
|
|
28383
|
-
entityType: EntityType.
|
|
28383
|
+
entityType: EntityType.DefinitionEntity;
|
|
28384
28384
|
entityId: string;
|
|
28385
28385
|
}>;
|
|
28386
28386
|
autogeneration: z.ZodNull;
|
|
@@ -28391,7 +28391,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28391
28391
|
valueAsType: {
|
|
28392
28392
|
id: string;
|
|
28393
28393
|
type: EntityType.GenericReference;
|
|
28394
|
-
entityType: EntityType.
|
|
28394
|
+
entityType: EntityType.DefinitionEntity;
|
|
28395
28395
|
entityId: string;
|
|
28396
28396
|
} | {
|
|
28397
28397
|
id: string;
|
|
@@ -28420,7 +28420,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28420
28420
|
value: {
|
|
28421
28421
|
id: string;
|
|
28422
28422
|
type: EntityType.GenericReference;
|
|
28423
|
-
entityType: EntityType.
|
|
28423
|
+
entityType: EntityType.DefinitionEntity;
|
|
28424
28424
|
entityId: string;
|
|
28425
28425
|
};
|
|
28426
28426
|
}, {
|
|
@@ -28430,7 +28430,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28430
28430
|
valueAsType: {
|
|
28431
28431
|
id: string;
|
|
28432
28432
|
type: EntityType.GenericReference;
|
|
28433
|
-
entityType: EntityType.
|
|
28433
|
+
entityType: EntityType.DefinitionEntity;
|
|
28434
28434
|
entityId: string;
|
|
28435
28435
|
} | {
|
|
28436
28436
|
id: string;
|
|
@@ -28459,7 +28459,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28459
28459
|
value: {
|
|
28460
28460
|
id: string;
|
|
28461
28461
|
type: EntityType.GenericReference;
|
|
28462
|
-
entityType: EntityType.
|
|
28462
|
+
entityType: EntityType.DefinitionEntity;
|
|
28463
28463
|
entityId: string;
|
|
28464
28464
|
};
|
|
28465
28465
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -28472,16 +28472,16 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28472
28472
|
id: z.ZodString;
|
|
28473
28473
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
28474
28474
|
entityId: z.ZodString;
|
|
28475
|
-
entityType: z.ZodLiteral<EntityType.
|
|
28475
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
28476
28476
|
}, "strip", z.ZodTypeAny, {
|
|
28477
28477
|
id: string;
|
|
28478
28478
|
type: EntityType.GenericReference;
|
|
28479
|
-
entityType: EntityType.
|
|
28479
|
+
entityType: EntityType.DefinitionEntity;
|
|
28480
28480
|
entityId: string;
|
|
28481
28481
|
}, {
|
|
28482
28482
|
id: string;
|
|
28483
28483
|
type: EntityType.GenericReference;
|
|
28484
|
-
entityType: EntityType.
|
|
28484
|
+
entityType: EntityType.DefinitionEntity;
|
|
28485
28485
|
entityId: string;
|
|
28486
28486
|
}>, z.ZodObject<{
|
|
28487
28487
|
id: z.ZodString;
|
|
@@ -28821,7 +28821,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28821
28821
|
valueAsType: {
|
|
28822
28822
|
id: string;
|
|
28823
28823
|
type: EntityType.GenericReference;
|
|
28824
|
-
entityType: EntityType.
|
|
28824
|
+
entityType: EntityType.DefinitionEntity;
|
|
28825
28825
|
entityId: string;
|
|
28826
28826
|
} | {
|
|
28827
28827
|
id: string;
|
|
@@ -28860,7 +28860,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
28860
28860
|
valueAsType: {
|
|
28861
28861
|
id: string;
|
|
28862
28862
|
type: EntityType.GenericReference;
|
|
28863
|
-
entityType: EntityType.
|
|
28863
|
+
entityType: EntityType.DefinitionEntity;
|
|
28864
28864
|
entityId: string;
|
|
28865
28865
|
} | {
|
|
28866
28866
|
id: string;
|
|
@@ -29116,7 +29116,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29116
29116
|
valueAsType: {
|
|
29117
29117
|
id: string;
|
|
29118
29118
|
type: EntityType.GenericReference;
|
|
29119
|
-
entityType: EntityType.
|
|
29119
|
+
entityType: EntityType.DefinitionEntity;
|
|
29120
29120
|
entityId: string;
|
|
29121
29121
|
} | {
|
|
29122
29122
|
id: string;
|
|
@@ -29162,7 +29162,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29162
29162
|
valueAsType: {
|
|
29163
29163
|
id: string;
|
|
29164
29164
|
type: EntityType.GenericReference;
|
|
29165
|
-
entityType: EntityType.
|
|
29165
|
+
entityType: EntityType.DefinitionEntity;
|
|
29166
29166
|
entityId: string;
|
|
29167
29167
|
} | {
|
|
29168
29168
|
id: string;
|
|
@@ -29208,7 +29208,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29208
29208
|
valueAsType: {
|
|
29209
29209
|
id: string;
|
|
29210
29210
|
type: EntityType.GenericReference;
|
|
29211
|
-
entityType: EntityType.
|
|
29211
|
+
entityType: EntityType.DefinitionEntity;
|
|
29212
29212
|
entityId: string;
|
|
29213
29213
|
} | {
|
|
29214
29214
|
id: string;
|
|
@@ -29246,7 +29246,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29246
29246
|
valueAsType: {
|
|
29247
29247
|
id: string;
|
|
29248
29248
|
type: EntityType.GenericReference;
|
|
29249
|
-
entityType: EntityType.
|
|
29249
|
+
entityType: EntityType.DefinitionEntity;
|
|
29250
29250
|
entityId: string;
|
|
29251
29251
|
} | {
|
|
29252
29252
|
id: string;
|
|
@@ -29280,7 +29280,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29280
29280
|
valueAsType: {
|
|
29281
29281
|
id: string;
|
|
29282
29282
|
type: EntityType.GenericReference;
|
|
29283
|
-
entityType: EntityType.
|
|
29283
|
+
entityType: EntityType.DefinitionEntity;
|
|
29284
29284
|
entityId: string;
|
|
29285
29285
|
} | {
|
|
29286
29286
|
id: string;
|
|
@@ -29330,7 +29330,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29330
29330
|
valueAsType: {
|
|
29331
29331
|
id: string;
|
|
29332
29332
|
type: EntityType.GenericReference;
|
|
29333
|
-
entityType: EntityType.
|
|
29333
|
+
entityType: EntityType.DefinitionEntity;
|
|
29334
29334
|
entityId: string;
|
|
29335
29335
|
} | {
|
|
29336
29336
|
id: string;
|
|
@@ -29364,7 +29364,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29364
29364
|
valueAsType: {
|
|
29365
29365
|
id: string;
|
|
29366
29366
|
type: EntityType.GenericReference;
|
|
29367
|
-
entityType: EntityType.
|
|
29367
|
+
entityType: EntityType.DefinitionEntity;
|
|
29368
29368
|
entityId: string;
|
|
29369
29369
|
} | {
|
|
29370
29370
|
id: string;
|
|
@@ -29398,7 +29398,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29398
29398
|
valueAsType: {
|
|
29399
29399
|
id: string;
|
|
29400
29400
|
type: EntityType.GenericReference;
|
|
29401
|
-
entityType: EntityType.
|
|
29401
|
+
entityType: EntityType.DefinitionEntity;
|
|
29402
29402
|
entityId: string;
|
|
29403
29403
|
} | {
|
|
29404
29404
|
id: string;
|
|
@@ -29432,7 +29432,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29432
29432
|
valueAsType: {
|
|
29433
29433
|
id: string;
|
|
29434
29434
|
type: EntityType.GenericReference;
|
|
29435
|
-
entityType: EntityType.
|
|
29435
|
+
entityType: EntityType.DefinitionEntity;
|
|
29436
29436
|
entityId: string;
|
|
29437
29437
|
} | {
|
|
29438
29438
|
id: string;
|
|
@@ -29470,7 +29470,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29470
29470
|
valueAsType: {
|
|
29471
29471
|
id: string;
|
|
29472
29472
|
type: EntityType.GenericReference;
|
|
29473
|
-
entityType: EntityType.
|
|
29473
|
+
entityType: EntityType.DefinitionEntity;
|
|
29474
29474
|
entityId: string;
|
|
29475
29475
|
} | {
|
|
29476
29476
|
id: string;
|
|
@@ -29499,7 +29499,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29499
29499
|
value: {
|
|
29500
29500
|
id: string;
|
|
29501
29501
|
type: EntityType.GenericReference;
|
|
29502
|
-
entityType: EntityType.
|
|
29502
|
+
entityType: EntityType.DefinitionEntity;
|
|
29503
29503
|
entityId: string;
|
|
29504
29504
|
};
|
|
29505
29505
|
} | {
|
|
@@ -29509,7 +29509,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29509
29509
|
valueAsType: {
|
|
29510
29510
|
id: string;
|
|
29511
29511
|
type: EntityType.GenericReference;
|
|
29512
|
-
entityType: EntityType.
|
|
29512
|
+
entityType: EntityType.DefinitionEntity;
|
|
29513
29513
|
entityId: string;
|
|
29514
29514
|
} | {
|
|
29515
29515
|
id: string;
|
|
@@ -29609,7 +29609,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29609
29609
|
valueAsType: {
|
|
29610
29610
|
id: string;
|
|
29611
29611
|
type: EntityType.GenericReference;
|
|
29612
|
-
entityType: EntityType.
|
|
29612
|
+
entityType: EntityType.DefinitionEntity;
|
|
29613
29613
|
entityId: string;
|
|
29614
29614
|
} | {
|
|
29615
29615
|
id: string;
|
|
@@ -29655,7 +29655,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29655
29655
|
valueAsType: {
|
|
29656
29656
|
id: string;
|
|
29657
29657
|
type: EntityType.GenericReference;
|
|
29658
|
-
entityType: EntityType.
|
|
29658
|
+
entityType: EntityType.DefinitionEntity;
|
|
29659
29659
|
entityId: string;
|
|
29660
29660
|
} | {
|
|
29661
29661
|
id: string;
|
|
@@ -29701,7 +29701,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29701
29701
|
valueAsType: {
|
|
29702
29702
|
id: string;
|
|
29703
29703
|
type: EntityType.GenericReference;
|
|
29704
|
-
entityType: EntityType.
|
|
29704
|
+
entityType: EntityType.DefinitionEntity;
|
|
29705
29705
|
entityId: string;
|
|
29706
29706
|
} | {
|
|
29707
29707
|
id: string;
|
|
@@ -29739,7 +29739,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29739
29739
|
valueAsType: {
|
|
29740
29740
|
id: string;
|
|
29741
29741
|
type: EntityType.GenericReference;
|
|
29742
|
-
entityType: EntityType.
|
|
29742
|
+
entityType: EntityType.DefinitionEntity;
|
|
29743
29743
|
entityId: string;
|
|
29744
29744
|
} | {
|
|
29745
29745
|
id: string;
|
|
@@ -29773,7 +29773,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29773
29773
|
valueAsType: {
|
|
29774
29774
|
id: string;
|
|
29775
29775
|
type: EntityType.GenericReference;
|
|
29776
|
-
entityType: EntityType.
|
|
29776
|
+
entityType: EntityType.DefinitionEntity;
|
|
29777
29777
|
entityId: string;
|
|
29778
29778
|
} | {
|
|
29779
29779
|
id: string;
|
|
@@ -29823,7 +29823,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29823
29823
|
valueAsType: {
|
|
29824
29824
|
id: string;
|
|
29825
29825
|
type: EntityType.GenericReference;
|
|
29826
|
-
entityType: EntityType.
|
|
29826
|
+
entityType: EntityType.DefinitionEntity;
|
|
29827
29827
|
entityId: string;
|
|
29828
29828
|
} | {
|
|
29829
29829
|
id: string;
|
|
@@ -29857,7 +29857,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29857
29857
|
valueAsType: {
|
|
29858
29858
|
id: string;
|
|
29859
29859
|
type: EntityType.GenericReference;
|
|
29860
|
-
entityType: EntityType.
|
|
29860
|
+
entityType: EntityType.DefinitionEntity;
|
|
29861
29861
|
entityId: string;
|
|
29862
29862
|
} | {
|
|
29863
29863
|
id: string;
|
|
@@ -29891,7 +29891,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29891
29891
|
valueAsType: {
|
|
29892
29892
|
id: string;
|
|
29893
29893
|
type: EntityType.GenericReference;
|
|
29894
|
-
entityType: EntityType.
|
|
29894
|
+
entityType: EntityType.DefinitionEntity;
|
|
29895
29895
|
entityId: string;
|
|
29896
29896
|
} | {
|
|
29897
29897
|
id: string;
|
|
@@ -29925,7 +29925,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29925
29925
|
valueAsType: {
|
|
29926
29926
|
id: string;
|
|
29927
29927
|
type: EntityType.GenericReference;
|
|
29928
|
-
entityType: EntityType.
|
|
29928
|
+
entityType: EntityType.DefinitionEntity;
|
|
29929
29929
|
entityId: string;
|
|
29930
29930
|
} | {
|
|
29931
29931
|
id: string;
|
|
@@ -29963,7 +29963,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29963
29963
|
valueAsType: {
|
|
29964
29964
|
id: string;
|
|
29965
29965
|
type: EntityType.GenericReference;
|
|
29966
|
-
entityType: EntityType.
|
|
29966
|
+
entityType: EntityType.DefinitionEntity;
|
|
29967
29967
|
entityId: string;
|
|
29968
29968
|
} | {
|
|
29969
29969
|
id: string;
|
|
@@ -29992,7 +29992,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29992
29992
|
value: {
|
|
29993
29993
|
id: string;
|
|
29994
29994
|
type: EntityType.GenericReference;
|
|
29995
|
-
entityType: EntityType.
|
|
29995
|
+
entityType: EntityType.DefinitionEntity;
|
|
29996
29996
|
entityId: string;
|
|
29997
29997
|
};
|
|
29998
29998
|
} | {
|
|
@@ -30002,7 +30002,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
30002
30002
|
valueAsType: {
|
|
30003
30003
|
id: string;
|
|
30004
30004
|
type: EntityType.GenericReference;
|
|
30005
|
-
entityType: EntityType.
|
|
30005
|
+
entityType: EntityType.DefinitionEntity;
|
|
30006
30006
|
entityId: string;
|
|
30007
30007
|
} | {
|
|
30008
30008
|
id: string;
|
|
@@ -30070,16 +30070,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
30070
30070
|
id: z.ZodString;
|
|
30071
30071
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
30072
30072
|
entityId: z.ZodString;
|
|
30073
|
-
entityType: z.ZodLiteral<EntityType.
|
|
30073
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
30074
30074
|
}, "strip", z.ZodTypeAny, {
|
|
30075
30075
|
id: string;
|
|
30076
30076
|
type: EntityType.GenericReference;
|
|
30077
|
-
entityType: EntityType.
|
|
30077
|
+
entityType: EntityType.DefinitionEntity;
|
|
30078
30078
|
entityId: string;
|
|
30079
30079
|
}, {
|
|
30080
30080
|
id: string;
|
|
30081
30081
|
type: EntityType.GenericReference;
|
|
30082
|
-
entityType: EntityType.
|
|
30082
|
+
entityType: EntityType.DefinitionEntity;
|
|
30083
30083
|
entityId: string;
|
|
30084
30084
|
}>, z.ZodObject<{
|
|
30085
30085
|
id: z.ZodString;
|
|
@@ -30470,7 +30470,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
30470
30470
|
valueAsType: {
|
|
30471
30471
|
id: string;
|
|
30472
30472
|
type: EntityType.GenericReference;
|
|
30473
|
-
entityType: EntityType.
|
|
30473
|
+
entityType: EntityType.DefinitionEntity;
|
|
30474
30474
|
entityId: string;
|
|
30475
30475
|
} | {
|
|
30476
30476
|
id: string;
|
|
@@ -30516,7 +30516,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
30516
30516
|
valueAsType: {
|
|
30517
30517
|
id: string;
|
|
30518
30518
|
type: EntityType.GenericReference;
|
|
30519
|
-
entityType: EntityType.
|
|
30519
|
+
entityType: EntityType.DefinitionEntity;
|
|
30520
30520
|
entityId: string;
|
|
30521
30521
|
} | {
|
|
30522
30522
|
id: string;
|
|
@@ -30565,16 +30565,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
30565
30565
|
id: z.ZodString;
|
|
30566
30566
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
30567
30567
|
entityId: z.ZodString;
|
|
30568
|
-
entityType: z.ZodLiteral<EntityType.
|
|
30568
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
30569
30569
|
}, "strip", z.ZodTypeAny, {
|
|
30570
30570
|
id: string;
|
|
30571
30571
|
type: EntityType.GenericReference;
|
|
30572
|
-
entityType: EntityType.
|
|
30572
|
+
entityType: EntityType.DefinitionEntity;
|
|
30573
30573
|
entityId: string;
|
|
30574
30574
|
}, {
|
|
30575
30575
|
id: string;
|
|
30576
30576
|
type: EntityType.GenericReference;
|
|
30577
|
-
entityType: EntityType.
|
|
30577
|
+
entityType: EntityType.DefinitionEntity;
|
|
30578
30578
|
entityId: string;
|
|
30579
30579
|
}>, z.ZodObject<{
|
|
30580
30580
|
id: z.ZodString;
|
|
@@ -30965,7 +30965,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
30965
30965
|
valueAsType: {
|
|
30966
30966
|
id: string;
|
|
30967
30967
|
type: EntityType.GenericReference;
|
|
30968
|
-
entityType: EntityType.
|
|
30968
|
+
entityType: EntityType.DefinitionEntity;
|
|
30969
30969
|
entityId: string;
|
|
30970
30970
|
} | {
|
|
30971
30971
|
id: string;
|
|
@@ -31011,7 +31011,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
31011
31011
|
valueAsType: {
|
|
31012
31012
|
id: string;
|
|
31013
31013
|
type: EntityType.GenericReference;
|
|
31014
|
-
entityType: EntityType.
|
|
31014
|
+
entityType: EntityType.DefinitionEntity;
|
|
31015
31015
|
entityId: string;
|
|
31016
31016
|
} | {
|
|
31017
31017
|
id: string;
|
|
@@ -31060,16 +31060,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
31060
31060
|
id: z.ZodString;
|
|
31061
31061
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
31062
31062
|
entityId: z.ZodString;
|
|
31063
|
-
entityType: z.ZodLiteral<EntityType.
|
|
31063
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
31064
31064
|
}, "strip", z.ZodTypeAny, {
|
|
31065
31065
|
id: string;
|
|
31066
31066
|
type: EntityType.GenericReference;
|
|
31067
|
-
entityType: EntityType.
|
|
31067
|
+
entityType: EntityType.DefinitionEntity;
|
|
31068
31068
|
entityId: string;
|
|
31069
31069
|
}, {
|
|
31070
31070
|
id: string;
|
|
31071
31071
|
type: EntityType.GenericReference;
|
|
31072
|
-
entityType: EntityType.
|
|
31072
|
+
entityType: EntityType.DefinitionEntity;
|
|
31073
31073
|
entityId: string;
|
|
31074
31074
|
}>, z.ZodObject<{
|
|
31075
31075
|
id: z.ZodString;
|
|
@@ -31413,7 +31413,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
31413
31413
|
valueAsType: {
|
|
31414
31414
|
id: string;
|
|
31415
31415
|
type: EntityType.GenericReference;
|
|
31416
|
-
entityType: EntityType.
|
|
31416
|
+
entityType: EntityType.DefinitionEntity;
|
|
31417
31417
|
entityId: string;
|
|
31418
31418
|
} | {
|
|
31419
31419
|
id: string;
|
|
@@ -31451,7 +31451,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
31451
31451
|
valueAsType: {
|
|
31452
31452
|
id: string;
|
|
31453
31453
|
type: EntityType.GenericReference;
|
|
31454
|
-
entityType: EntityType.
|
|
31454
|
+
entityType: EntityType.DefinitionEntity;
|
|
31455
31455
|
entityId: string;
|
|
31456
31456
|
} | {
|
|
31457
31457
|
id: string;
|
|
@@ -31492,16 +31492,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
31492
31492
|
id: z.ZodString;
|
|
31493
31493
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
31494
31494
|
entityId: z.ZodString;
|
|
31495
|
-
entityType: z.ZodLiteral<EntityType.
|
|
31495
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
31496
31496
|
}, "strip", z.ZodTypeAny, {
|
|
31497
31497
|
id: string;
|
|
31498
31498
|
type: EntityType.GenericReference;
|
|
31499
|
-
entityType: EntityType.
|
|
31499
|
+
entityType: EntityType.DefinitionEntity;
|
|
31500
31500
|
entityId: string;
|
|
31501
31501
|
}, {
|
|
31502
31502
|
id: string;
|
|
31503
31503
|
type: EntityType.GenericReference;
|
|
31504
|
-
entityType: EntityType.
|
|
31504
|
+
entityType: EntityType.DefinitionEntity;
|
|
31505
31505
|
entityId: string;
|
|
31506
31506
|
}>, z.ZodObject<{
|
|
31507
31507
|
id: z.ZodString;
|
|
@@ -31826,7 +31826,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
31826
31826
|
valueAsType: {
|
|
31827
31827
|
id: string;
|
|
31828
31828
|
type: EntityType.GenericReference;
|
|
31829
|
-
entityType: EntityType.
|
|
31829
|
+
entityType: EntityType.DefinitionEntity;
|
|
31830
31830
|
entityId: string;
|
|
31831
31831
|
} | {
|
|
31832
31832
|
id: string;
|
|
@@ -31860,7 +31860,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
31860
31860
|
valueAsType: {
|
|
31861
31861
|
id: string;
|
|
31862
31862
|
type: EntityType.GenericReference;
|
|
31863
|
-
entityType: EntityType.
|
|
31863
|
+
entityType: EntityType.DefinitionEntity;
|
|
31864
31864
|
entityId: string;
|
|
31865
31865
|
} | {
|
|
31866
31866
|
id: string;
|
|
@@ -31897,16 +31897,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
31897
31897
|
id: z.ZodString;
|
|
31898
31898
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
31899
31899
|
entityId: z.ZodString;
|
|
31900
|
-
entityType: z.ZodLiteral<EntityType.
|
|
31900
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
31901
31901
|
}, "strip", z.ZodTypeAny, {
|
|
31902
31902
|
id: string;
|
|
31903
31903
|
type: EntityType.GenericReference;
|
|
31904
|
-
entityType: EntityType.
|
|
31904
|
+
entityType: EntityType.DefinitionEntity;
|
|
31905
31905
|
entityId: string;
|
|
31906
31906
|
}, {
|
|
31907
31907
|
id: string;
|
|
31908
31908
|
type: EntityType.GenericReference;
|
|
31909
|
-
entityType: EntityType.
|
|
31909
|
+
entityType: EntityType.DefinitionEntity;
|
|
31910
31910
|
entityId: string;
|
|
31911
31911
|
}>, z.ZodObject<{
|
|
31912
31912
|
id: z.ZodString;
|
|
@@ -32313,7 +32313,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
32313
32313
|
valueAsType: {
|
|
32314
32314
|
id: string;
|
|
32315
32315
|
type: EntityType.GenericReference;
|
|
32316
|
-
entityType: EntityType.
|
|
32316
|
+
entityType: EntityType.DefinitionEntity;
|
|
32317
32317
|
entityId: string;
|
|
32318
32318
|
} | {
|
|
32319
32319
|
id: string;
|
|
@@ -32363,7 +32363,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
32363
32363
|
valueAsType: {
|
|
32364
32364
|
id: string;
|
|
32365
32365
|
type: EntityType.GenericReference;
|
|
32366
|
-
entityType: EntityType.
|
|
32366
|
+
entityType: EntityType.DefinitionEntity;
|
|
32367
32367
|
entityId: string;
|
|
32368
32368
|
} | {
|
|
32369
32369
|
id: string;
|
|
@@ -32416,16 +32416,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
32416
32416
|
id: z.ZodString;
|
|
32417
32417
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
32418
32418
|
entityId: z.ZodString;
|
|
32419
|
-
entityType: z.ZodLiteral<EntityType.
|
|
32419
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
32420
32420
|
}, "strip", z.ZodTypeAny, {
|
|
32421
32421
|
id: string;
|
|
32422
32422
|
type: EntityType.GenericReference;
|
|
32423
|
-
entityType: EntityType.
|
|
32423
|
+
entityType: EntityType.DefinitionEntity;
|
|
32424
32424
|
entityId: string;
|
|
32425
32425
|
}, {
|
|
32426
32426
|
id: string;
|
|
32427
32427
|
type: EntityType.GenericReference;
|
|
32428
|
-
entityType: EntityType.
|
|
32428
|
+
entityType: EntityType.DefinitionEntity;
|
|
32429
32429
|
entityId: string;
|
|
32430
32430
|
}>, z.ZodObject<{
|
|
32431
32431
|
id: z.ZodString;
|
|
@@ -32750,7 +32750,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
32750
32750
|
valueAsType: {
|
|
32751
32751
|
id: string;
|
|
32752
32752
|
type: EntityType.GenericReference;
|
|
32753
|
-
entityType: EntityType.
|
|
32753
|
+
entityType: EntityType.DefinitionEntity;
|
|
32754
32754
|
entityId: string;
|
|
32755
32755
|
} | {
|
|
32756
32756
|
id: string;
|
|
@@ -32784,7 +32784,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
32784
32784
|
valueAsType: {
|
|
32785
32785
|
id: string;
|
|
32786
32786
|
type: EntityType.GenericReference;
|
|
32787
|
-
entityType: EntityType.
|
|
32787
|
+
entityType: EntityType.DefinitionEntity;
|
|
32788
32788
|
entityId: string;
|
|
32789
32789
|
} | {
|
|
32790
32790
|
id: string;
|
|
@@ -32821,16 +32821,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
32821
32821
|
id: z.ZodString;
|
|
32822
32822
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
32823
32823
|
entityId: z.ZodString;
|
|
32824
|
-
entityType: z.ZodLiteral<EntityType.
|
|
32824
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
32825
32825
|
}, "strip", z.ZodTypeAny, {
|
|
32826
32826
|
id: string;
|
|
32827
32827
|
type: EntityType.GenericReference;
|
|
32828
|
-
entityType: EntityType.
|
|
32828
|
+
entityType: EntityType.DefinitionEntity;
|
|
32829
32829
|
entityId: string;
|
|
32830
32830
|
}, {
|
|
32831
32831
|
id: string;
|
|
32832
32832
|
type: EntityType.GenericReference;
|
|
32833
|
-
entityType: EntityType.
|
|
32833
|
+
entityType: EntityType.DefinitionEntity;
|
|
32834
32834
|
entityId: string;
|
|
32835
32835
|
}>, z.ZodObject<{
|
|
32836
32836
|
id: z.ZodString;
|
|
@@ -33155,7 +33155,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
33155
33155
|
valueAsType: {
|
|
33156
33156
|
id: string;
|
|
33157
33157
|
type: EntityType.GenericReference;
|
|
33158
|
-
entityType: EntityType.
|
|
33158
|
+
entityType: EntityType.DefinitionEntity;
|
|
33159
33159
|
entityId: string;
|
|
33160
33160
|
} | {
|
|
33161
33161
|
id: string;
|
|
@@ -33189,7 +33189,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
33189
33189
|
valueAsType: {
|
|
33190
33190
|
id: string;
|
|
33191
33191
|
type: EntityType.GenericReference;
|
|
33192
|
-
entityType: EntityType.
|
|
33192
|
+
entityType: EntityType.DefinitionEntity;
|
|
33193
33193
|
entityId: string;
|
|
33194
33194
|
} | {
|
|
33195
33195
|
id: string;
|
|
@@ -33226,16 +33226,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
33226
33226
|
id: z.ZodString;
|
|
33227
33227
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
33228
33228
|
entityId: z.ZodString;
|
|
33229
|
-
entityType: z.ZodLiteral<EntityType.
|
|
33229
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
33230
33230
|
}, "strip", z.ZodTypeAny, {
|
|
33231
33231
|
id: string;
|
|
33232
33232
|
type: EntityType.GenericReference;
|
|
33233
|
-
entityType: EntityType.
|
|
33233
|
+
entityType: EntityType.DefinitionEntity;
|
|
33234
33234
|
entityId: string;
|
|
33235
33235
|
}, {
|
|
33236
33236
|
id: string;
|
|
33237
33237
|
type: EntityType.GenericReference;
|
|
33238
|
-
entityType: EntityType.
|
|
33238
|
+
entityType: EntityType.DefinitionEntity;
|
|
33239
33239
|
entityId: string;
|
|
33240
33240
|
}>, z.ZodObject<{
|
|
33241
33241
|
id: z.ZodString;
|
|
@@ -33560,7 +33560,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
33560
33560
|
valueAsType: {
|
|
33561
33561
|
id: string;
|
|
33562
33562
|
type: EntityType.GenericReference;
|
|
33563
|
-
entityType: EntityType.
|
|
33563
|
+
entityType: EntityType.DefinitionEntity;
|
|
33564
33564
|
entityId: string;
|
|
33565
33565
|
} | {
|
|
33566
33566
|
id: string;
|
|
@@ -33594,7 +33594,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
33594
33594
|
valueAsType: {
|
|
33595
33595
|
id: string;
|
|
33596
33596
|
type: EntityType.GenericReference;
|
|
33597
|
-
entityType: EntityType.
|
|
33597
|
+
entityType: EntityType.DefinitionEntity;
|
|
33598
33598
|
entityId: string;
|
|
33599
33599
|
} | {
|
|
33600
33600
|
id: string;
|
|
@@ -33631,16 +33631,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
33631
33631
|
id: z.ZodString;
|
|
33632
33632
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
33633
33633
|
entityId: z.ZodString;
|
|
33634
|
-
entityType: z.ZodLiteral<EntityType.
|
|
33634
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
33635
33635
|
}, "strip", z.ZodTypeAny, {
|
|
33636
33636
|
id: string;
|
|
33637
33637
|
type: EntityType.GenericReference;
|
|
33638
|
-
entityType: EntityType.
|
|
33638
|
+
entityType: EntityType.DefinitionEntity;
|
|
33639
33639
|
entityId: string;
|
|
33640
33640
|
}, {
|
|
33641
33641
|
id: string;
|
|
33642
33642
|
type: EntityType.GenericReference;
|
|
33643
|
-
entityType: EntityType.
|
|
33643
|
+
entityType: EntityType.DefinitionEntity;
|
|
33644
33644
|
entityId: string;
|
|
33645
33645
|
}>, z.ZodObject<{
|
|
33646
33646
|
id: z.ZodString;
|
|
@@ -33981,7 +33981,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
33981
33981
|
valueAsType: {
|
|
33982
33982
|
id: string;
|
|
33983
33983
|
type: EntityType.GenericReference;
|
|
33984
|
-
entityType: EntityType.
|
|
33984
|
+
entityType: EntityType.DefinitionEntity;
|
|
33985
33985
|
entityId: string;
|
|
33986
33986
|
} | {
|
|
33987
33987
|
id: string;
|
|
@@ -34019,7 +34019,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34019
34019
|
valueAsType: {
|
|
34020
34020
|
id: string;
|
|
34021
34021
|
type: EntityType.GenericReference;
|
|
34022
|
-
entityType: EntityType.
|
|
34022
|
+
entityType: EntityType.DefinitionEntity;
|
|
34023
34023
|
entityId: string;
|
|
34024
34024
|
} | {
|
|
34025
34025
|
id: string;
|
|
@@ -34060,16 +34060,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34060
34060
|
id: z.ZodString;
|
|
34061
34061
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
34062
34062
|
entityId: z.ZodString;
|
|
34063
|
-
entityType: z.ZodLiteral<EntityType.
|
|
34063
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
34064
34064
|
}, "strip", z.ZodTypeAny, {
|
|
34065
34065
|
id: string;
|
|
34066
34066
|
type: EntityType.GenericReference;
|
|
34067
|
-
entityType: EntityType.
|
|
34067
|
+
entityType: EntityType.DefinitionEntity;
|
|
34068
34068
|
entityId: string;
|
|
34069
34069
|
}, {
|
|
34070
34070
|
id: string;
|
|
34071
34071
|
type: EntityType.GenericReference;
|
|
34072
|
-
entityType: EntityType.
|
|
34072
|
+
entityType: EntityType.DefinitionEntity;
|
|
34073
34073
|
entityId: string;
|
|
34074
34074
|
}>, z.ZodObject<{
|
|
34075
34075
|
id: z.ZodString;
|
|
@@ -34389,16 +34389,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34389
34389
|
id: z.ZodString;
|
|
34390
34390
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
34391
34391
|
entityId: z.ZodString;
|
|
34392
|
-
entityType: z.ZodLiteral<EntityType.
|
|
34392
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
34393
34393
|
}, "strip", z.ZodTypeAny, {
|
|
34394
34394
|
id: string;
|
|
34395
34395
|
type: EntityType.GenericReference;
|
|
34396
|
-
entityType: EntityType.
|
|
34396
|
+
entityType: EntityType.DefinitionEntity;
|
|
34397
34397
|
entityId: string;
|
|
34398
34398
|
}, {
|
|
34399
34399
|
id: string;
|
|
34400
34400
|
type: EntityType.GenericReference;
|
|
34401
|
-
entityType: EntityType.
|
|
34401
|
+
entityType: EntityType.DefinitionEntity;
|
|
34402
34402
|
entityId: string;
|
|
34403
34403
|
}>;
|
|
34404
34404
|
autogeneration: z.ZodNull;
|
|
@@ -34409,7 +34409,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34409
34409
|
valueAsType: {
|
|
34410
34410
|
id: string;
|
|
34411
34411
|
type: EntityType.GenericReference;
|
|
34412
|
-
entityType: EntityType.
|
|
34412
|
+
entityType: EntityType.DefinitionEntity;
|
|
34413
34413
|
entityId: string;
|
|
34414
34414
|
} | {
|
|
34415
34415
|
id: string;
|
|
@@ -34438,7 +34438,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34438
34438
|
value: {
|
|
34439
34439
|
id: string;
|
|
34440
34440
|
type: EntityType.GenericReference;
|
|
34441
|
-
entityType: EntityType.
|
|
34441
|
+
entityType: EntityType.DefinitionEntity;
|
|
34442
34442
|
entityId: string;
|
|
34443
34443
|
};
|
|
34444
34444
|
}, {
|
|
@@ -34448,7 +34448,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34448
34448
|
valueAsType: {
|
|
34449
34449
|
id: string;
|
|
34450
34450
|
type: EntityType.GenericReference;
|
|
34451
|
-
entityType: EntityType.
|
|
34451
|
+
entityType: EntityType.DefinitionEntity;
|
|
34452
34452
|
entityId: string;
|
|
34453
34453
|
} | {
|
|
34454
34454
|
id: string;
|
|
@@ -34477,7 +34477,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34477
34477
|
value: {
|
|
34478
34478
|
id: string;
|
|
34479
34479
|
type: EntityType.GenericReference;
|
|
34480
|
-
entityType: EntityType.
|
|
34480
|
+
entityType: EntityType.DefinitionEntity;
|
|
34481
34481
|
entityId: string;
|
|
34482
34482
|
};
|
|
34483
34483
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -34490,16 +34490,16 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34490
34490
|
id: z.ZodString;
|
|
34491
34491
|
type: z.ZodLiteral<EntityType.GenericReference>;
|
|
34492
34492
|
entityId: z.ZodString;
|
|
34493
|
-
entityType: z.ZodLiteral<EntityType.
|
|
34493
|
+
entityType: z.ZodLiteral<EntityType.DefinitionEntity>;
|
|
34494
34494
|
}, "strip", z.ZodTypeAny, {
|
|
34495
34495
|
id: string;
|
|
34496
34496
|
type: EntityType.GenericReference;
|
|
34497
|
-
entityType: EntityType.
|
|
34497
|
+
entityType: EntityType.DefinitionEntity;
|
|
34498
34498
|
entityId: string;
|
|
34499
34499
|
}, {
|
|
34500
34500
|
id: string;
|
|
34501
34501
|
type: EntityType.GenericReference;
|
|
34502
|
-
entityType: EntityType.
|
|
34502
|
+
entityType: EntityType.DefinitionEntity;
|
|
34503
34503
|
entityId: string;
|
|
34504
34504
|
}>, z.ZodObject<{
|
|
34505
34505
|
id: z.ZodString;
|
|
@@ -34839,7 +34839,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34839
34839
|
valueAsType: {
|
|
34840
34840
|
id: string;
|
|
34841
34841
|
type: EntityType.GenericReference;
|
|
34842
|
-
entityType: EntityType.
|
|
34842
|
+
entityType: EntityType.DefinitionEntity;
|
|
34843
34843
|
entityId: string;
|
|
34844
34844
|
} | {
|
|
34845
34845
|
id: string;
|
|
@@ -34878,7 +34878,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
34878
34878
|
valueAsType: {
|
|
34879
34879
|
id: string;
|
|
34880
34880
|
type: EntityType.GenericReference;
|
|
34881
|
-
entityType: EntityType.
|
|
34881
|
+
entityType: EntityType.DefinitionEntity;
|
|
34882
34882
|
entityId: string;
|
|
34883
34883
|
} | {
|
|
34884
34884
|
id: string;
|
|
@@ -35137,7 +35137,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35137
35137
|
valueAsType: {
|
|
35138
35138
|
id: string;
|
|
35139
35139
|
type: EntityType.GenericReference;
|
|
35140
|
-
entityType: EntityType.
|
|
35140
|
+
entityType: EntityType.DefinitionEntity;
|
|
35141
35141
|
entityId: string;
|
|
35142
35142
|
} | {
|
|
35143
35143
|
id: string;
|
|
@@ -35183,7 +35183,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35183
35183
|
valueAsType: {
|
|
35184
35184
|
id: string;
|
|
35185
35185
|
type: EntityType.GenericReference;
|
|
35186
|
-
entityType: EntityType.
|
|
35186
|
+
entityType: EntityType.DefinitionEntity;
|
|
35187
35187
|
entityId: string;
|
|
35188
35188
|
} | {
|
|
35189
35189
|
id: string;
|
|
@@ -35229,7 +35229,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35229
35229
|
valueAsType: {
|
|
35230
35230
|
id: string;
|
|
35231
35231
|
type: EntityType.GenericReference;
|
|
35232
|
-
entityType: EntityType.
|
|
35232
|
+
entityType: EntityType.DefinitionEntity;
|
|
35233
35233
|
entityId: string;
|
|
35234
35234
|
} | {
|
|
35235
35235
|
id: string;
|
|
@@ -35267,7 +35267,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35267
35267
|
valueAsType: {
|
|
35268
35268
|
id: string;
|
|
35269
35269
|
type: EntityType.GenericReference;
|
|
35270
|
-
entityType: EntityType.
|
|
35270
|
+
entityType: EntityType.DefinitionEntity;
|
|
35271
35271
|
entityId: string;
|
|
35272
35272
|
} | {
|
|
35273
35273
|
id: string;
|
|
@@ -35301,7 +35301,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35301
35301
|
valueAsType: {
|
|
35302
35302
|
id: string;
|
|
35303
35303
|
type: EntityType.GenericReference;
|
|
35304
|
-
entityType: EntityType.
|
|
35304
|
+
entityType: EntityType.DefinitionEntity;
|
|
35305
35305
|
entityId: string;
|
|
35306
35306
|
} | {
|
|
35307
35307
|
id: string;
|
|
@@ -35351,7 +35351,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35351
35351
|
valueAsType: {
|
|
35352
35352
|
id: string;
|
|
35353
35353
|
type: EntityType.GenericReference;
|
|
35354
|
-
entityType: EntityType.
|
|
35354
|
+
entityType: EntityType.DefinitionEntity;
|
|
35355
35355
|
entityId: string;
|
|
35356
35356
|
} | {
|
|
35357
35357
|
id: string;
|
|
@@ -35385,7 +35385,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35385
35385
|
valueAsType: {
|
|
35386
35386
|
id: string;
|
|
35387
35387
|
type: EntityType.GenericReference;
|
|
35388
|
-
entityType: EntityType.
|
|
35388
|
+
entityType: EntityType.DefinitionEntity;
|
|
35389
35389
|
entityId: string;
|
|
35390
35390
|
} | {
|
|
35391
35391
|
id: string;
|
|
@@ -35419,7 +35419,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35419
35419
|
valueAsType: {
|
|
35420
35420
|
id: string;
|
|
35421
35421
|
type: EntityType.GenericReference;
|
|
35422
|
-
entityType: EntityType.
|
|
35422
|
+
entityType: EntityType.DefinitionEntity;
|
|
35423
35423
|
entityId: string;
|
|
35424
35424
|
} | {
|
|
35425
35425
|
id: string;
|
|
@@ -35453,7 +35453,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35453
35453
|
valueAsType: {
|
|
35454
35454
|
id: string;
|
|
35455
35455
|
type: EntityType.GenericReference;
|
|
35456
|
-
entityType: EntityType.
|
|
35456
|
+
entityType: EntityType.DefinitionEntity;
|
|
35457
35457
|
entityId: string;
|
|
35458
35458
|
} | {
|
|
35459
35459
|
id: string;
|
|
@@ -35491,7 +35491,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35491
35491
|
valueAsType: {
|
|
35492
35492
|
id: string;
|
|
35493
35493
|
type: EntityType.GenericReference;
|
|
35494
|
-
entityType: EntityType.
|
|
35494
|
+
entityType: EntityType.DefinitionEntity;
|
|
35495
35495
|
entityId: string;
|
|
35496
35496
|
} | {
|
|
35497
35497
|
id: string;
|
|
@@ -35520,7 +35520,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35520
35520
|
value: {
|
|
35521
35521
|
id: string;
|
|
35522
35522
|
type: EntityType.GenericReference;
|
|
35523
|
-
entityType: EntityType.
|
|
35523
|
+
entityType: EntityType.DefinitionEntity;
|
|
35524
35524
|
entityId: string;
|
|
35525
35525
|
};
|
|
35526
35526
|
} | {
|
|
@@ -35530,7 +35530,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35530
35530
|
valueAsType: {
|
|
35531
35531
|
id: string;
|
|
35532
35532
|
type: EntityType.GenericReference;
|
|
35533
|
-
entityType: EntityType.
|
|
35533
|
+
entityType: EntityType.DefinitionEntity;
|
|
35534
35534
|
entityId: string;
|
|
35535
35535
|
} | {
|
|
35536
35536
|
id: string;
|
|
@@ -35636,7 +35636,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35636
35636
|
valueAsType: {
|
|
35637
35637
|
id: string;
|
|
35638
35638
|
type: EntityType.GenericReference;
|
|
35639
|
-
entityType: EntityType.
|
|
35639
|
+
entityType: EntityType.DefinitionEntity;
|
|
35640
35640
|
entityId: string;
|
|
35641
35641
|
} | {
|
|
35642
35642
|
id: string;
|
|
@@ -35682,7 +35682,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35682
35682
|
valueAsType: {
|
|
35683
35683
|
id: string;
|
|
35684
35684
|
type: EntityType.GenericReference;
|
|
35685
|
-
entityType: EntityType.
|
|
35685
|
+
entityType: EntityType.DefinitionEntity;
|
|
35686
35686
|
entityId: string;
|
|
35687
35687
|
} | {
|
|
35688
35688
|
id: string;
|
|
@@ -35728,7 +35728,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35728
35728
|
valueAsType: {
|
|
35729
35729
|
id: string;
|
|
35730
35730
|
type: EntityType.GenericReference;
|
|
35731
|
-
entityType: EntityType.
|
|
35731
|
+
entityType: EntityType.DefinitionEntity;
|
|
35732
35732
|
entityId: string;
|
|
35733
35733
|
} | {
|
|
35734
35734
|
id: string;
|
|
@@ -35766,7 +35766,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35766
35766
|
valueAsType: {
|
|
35767
35767
|
id: string;
|
|
35768
35768
|
type: EntityType.GenericReference;
|
|
35769
|
-
entityType: EntityType.
|
|
35769
|
+
entityType: EntityType.DefinitionEntity;
|
|
35770
35770
|
entityId: string;
|
|
35771
35771
|
} | {
|
|
35772
35772
|
id: string;
|
|
@@ -35800,7 +35800,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35800
35800
|
valueAsType: {
|
|
35801
35801
|
id: string;
|
|
35802
35802
|
type: EntityType.GenericReference;
|
|
35803
|
-
entityType: EntityType.
|
|
35803
|
+
entityType: EntityType.DefinitionEntity;
|
|
35804
35804
|
entityId: string;
|
|
35805
35805
|
} | {
|
|
35806
35806
|
id: string;
|
|
@@ -35850,7 +35850,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35850
35850
|
valueAsType: {
|
|
35851
35851
|
id: string;
|
|
35852
35852
|
type: EntityType.GenericReference;
|
|
35853
|
-
entityType: EntityType.
|
|
35853
|
+
entityType: EntityType.DefinitionEntity;
|
|
35854
35854
|
entityId: string;
|
|
35855
35855
|
} | {
|
|
35856
35856
|
id: string;
|
|
@@ -35884,7 +35884,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35884
35884
|
valueAsType: {
|
|
35885
35885
|
id: string;
|
|
35886
35886
|
type: EntityType.GenericReference;
|
|
35887
|
-
entityType: EntityType.
|
|
35887
|
+
entityType: EntityType.DefinitionEntity;
|
|
35888
35888
|
entityId: string;
|
|
35889
35889
|
} | {
|
|
35890
35890
|
id: string;
|
|
@@ -35918,7 +35918,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35918
35918
|
valueAsType: {
|
|
35919
35919
|
id: string;
|
|
35920
35920
|
type: EntityType.GenericReference;
|
|
35921
|
-
entityType: EntityType.
|
|
35921
|
+
entityType: EntityType.DefinitionEntity;
|
|
35922
35922
|
entityId: string;
|
|
35923
35923
|
} | {
|
|
35924
35924
|
id: string;
|
|
@@ -35952,7 +35952,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35952
35952
|
valueAsType: {
|
|
35953
35953
|
id: string;
|
|
35954
35954
|
type: EntityType.GenericReference;
|
|
35955
|
-
entityType: EntityType.
|
|
35955
|
+
entityType: EntityType.DefinitionEntity;
|
|
35956
35956
|
entityId: string;
|
|
35957
35957
|
} | {
|
|
35958
35958
|
id: string;
|
|
@@ -35990,7 +35990,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35990
35990
|
valueAsType: {
|
|
35991
35991
|
id: string;
|
|
35992
35992
|
type: EntityType.GenericReference;
|
|
35993
|
-
entityType: EntityType.
|
|
35993
|
+
entityType: EntityType.DefinitionEntity;
|
|
35994
35994
|
entityId: string;
|
|
35995
35995
|
} | {
|
|
35996
35996
|
id: string;
|
|
@@ -36019,7 +36019,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
36019
36019
|
value: {
|
|
36020
36020
|
id: string;
|
|
36021
36021
|
type: EntityType.GenericReference;
|
|
36022
|
-
entityType: EntityType.
|
|
36022
|
+
entityType: EntityType.DefinitionEntity;
|
|
36023
36023
|
entityId: string;
|
|
36024
36024
|
};
|
|
36025
36025
|
} | {
|
|
@@ -36029,7 +36029,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
36029
36029
|
valueAsType: {
|
|
36030
36030
|
id: string;
|
|
36031
36031
|
type: EntityType.GenericReference;
|
|
36032
|
-
entityType: EntityType.
|
|
36032
|
+
entityType: EntityType.DefinitionEntity;
|
|
36033
36033
|
entityId: string;
|
|
36034
36034
|
} | {
|
|
36035
36035
|
id: string;
|