@elyx-code/project-logic-tree 0.0.6109 → 0.0.6111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/dist/definitions/built-in-base-entities/entities/endpoint.d.ts +8 -8
  2. package/dist/definitions/built-in-base-entities/entities/persisted/properties.d.ts +1 -0
  3. package/dist/definitions/built-in-base-entities/entities/relational-database/entity.d.ts +13 -7
  4. package/dist/definitions/built-in-base-entities/loops/counted/loop.d.ts +3 -3
  5. package/dist/definitions/built-in-base-entities/operations/http-request/http-request.d.ts +7 -7
  6. package/dist/definitions/built-in-base-entities/operations/string/join-strings.d.ts +3 -3
  7. package/dist/definitions/built-in-base-entities/primitive-entities.d.ts +2 -2
  8. package/dist/definitions/logic/value-autogeneration/value-autogeneration.d.ts +2 -2
  9. package/dist/definitions/mock/default-mock/entities/alt-relational-database/properties.d.ts +6 -5
  10. package/dist/definitions/mock/default-mock/entities/animal.d.ts +2 -2
  11. package/dist/definitions/mock/default-mock/entities/base-table/properties.d.ts +7 -6
  12. package/dist/definitions/mock/default-mock/entities/company/properties.d.ts +2 -2
  13. package/dist/definitions/mock/default-mock/entities/default-relational-database/properties.d.ts +13 -9
  14. package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/endpoint-reached-event.d.ts +5 -5
  15. package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/properties.d.ts +3 -3
  16. package/dist/definitions/mock/default-mock/entities/plant.d.ts +3 -2
  17. package/dist/definitions/mock/default-mock/entities/product.d.ts +5 -3
  18. package/dist/definitions/mock/default-mock/entities/user.d.ts +4 -3
  19. package/dist/definitions/mock/default-mock/functions/abort-execution/long-wait-return-statement.d.ts +2 -2
  20. package/dist/definitions/mock/default-mock/functions/abort-execution/small-wait-return-statement.d.ts +2 -2
  21. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/function-list-variable.d.ts +2 -2
  22. package/dist/definitions/mock/default-mock/functions/current-time.d.ts +2 -2
  23. package/dist/definitions/mock/default-mock/functions/do-math/index.d.ts +3 -3
  24. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/person-not-found-return-error.d.ts +2 -2
  25. package/dist/definitions/mock/default-mock/loops/global-test-iterate-over-string/loop.d.ts +2 -2
  26. package/dist/definitions/mock/default-mock/variables/global-data-mapping/employee-dto/company-employee-mapped-DTO.d.ts +2 -2
  27. package/dist/definitions/mock/default-mock/variables/isTestEnv.d.ts +2 -2
  28. package/dist/definitions/mock/default-mock/variables/lastTimestamp.d.ts +2 -2
  29. package/dist/definitions/types/action-descriptor.d.ts +4 -1
  30. package/dist/definitions/types/base.d.ts +5 -2
  31. package/dist/definitions/types/data-type.d.ts +4 -7
  32. package/dist/definitions/types/generic-reference.d.ts +2 -2
  33. package/dist/definitions/types/index.d.ts +13 -13
  34. package/dist/definitions/types/input-output-map.d.ts +7 -4
  35. package/dist/definitions/types/primitives.d.ts +39 -43
  36. package/dist/definitions/types/property.d.ts +3 -1
  37. package/dist/definitions/types/variable.d.ts +4 -1
  38. package/dist/index.js +13052 -12795
  39. package/dist/index.umd.cjs +194 -182
  40. package/dist/tree/state/argument-declaration/argument-declaration.d.ts +4 -2
  41. package/dist/tree/state/argument-declaration/validation/validation-schema.d.ts +12 -12
  42. package/dist/tree/state/base.d.ts +2 -2
  43. package/dist/tree/state/built-in-base-entity/validation-schema.d.ts +10 -10
  44. package/dist/tree/state/custom-entity/validation/validation-schema.d.ts +12 -12
  45. package/dist/tree/state/data-type/data-type.d.ts +5 -8
  46. package/dist/tree/state/data-type/validation/validation-schema.d.ts +110 -110
  47. package/dist/tree/state/index.d.ts +1 -1
  48. package/dist/tree/state/input-map/input-map.d.ts +4 -4
  49. package/dist/tree/state/input-map/validation/validation-schema.d.ts +330 -330
  50. package/dist/tree/state/literal-value/index.d.ts +1 -0
  51. package/dist/tree/state/literal-value/literal-value.d.ts +103 -0
  52. package/dist/tree/state/literal-value/validation/logic-validation.d.ts +4 -0
  53. package/dist/tree/state/literal-value/validation/references.d.ts +5 -0
  54. package/dist/tree/state/{primitive-value → literal-value}/validation/validation-schema.d.ts +94 -94
  55. package/dist/tree/state/output-map/output-map.d.ts +4 -2
  56. package/dist/tree/state/primitive-entity/validation/validation-schema.d.ts +10 -10
  57. package/dist/tree/state/property/property.d.ts +4 -2
  58. package/dist/tree/state/property/validation/validation-schema.d.ts +12 -12
  59. package/dist/tree/state/return-declaration/return-declaration.d.ts +4 -2
  60. package/dist/tree/state/return-declaration/validation/validation-schema.d.ts +12 -12
  61. package/dist/tree/state/types/state.d.ts +4 -4
  62. package/dist/tree/state/value-descriptor/validation/validation-schema.d.ts +2 -2
  63. package/dist/tree/state/value-descriptor/value-descriptor.d.ts +4 -2
  64. package/dist/tree/state/variable-declaration/validation/validation-schema.d.ts +64 -64
  65. package/dist/tree/state/variable-declaration/variable-declaration.d.ts +5 -3
  66. package/dist/tree/state/variable-instance/validation/validation-schema.d.ts +64 -64
  67. package/dist/tree/state/variable-instance/variable-instance.d.ts +4 -2
  68. package/package.json +1 -1
  69. package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping.d.ts +0 -0
  70. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/return-variables-chain.d.ts +0 -0
  71. package/dist/tree/state/primitive-value/index.d.ts +0 -1
  72. package/dist/tree/state/primitive-value/primitive-value.d.ts +0 -97
  73. package/dist/tree/state/primitive-value/validation/logic-validation.d.ts +0 -4
  74. package/dist/tree/state/primitive-value/validation/references.d.ts +0 -5
@@ -84,7 +84,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
84
84
  id: z.ZodString;
85
85
  version: z.ZodNumber;
86
86
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
87
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
87
+ type: z.ZodLiteral<EntityType.LiteralValue>;
88
88
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
89
89
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
90
90
  id: z.ZodString;
@@ -485,7 +485,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
485
485
  }>]>>;
486
486
  }>, "strip", z.ZodTypeAny, {
487
487
  id: string;
488
- type: EntityType.PrimitiveValue;
488
+ type: EntityType.LiteralValue;
489
489
  name: import("@src/definitions").PrimitiveTypes.String;
490
490
  valueAsType: {
491
491
  id: string;
@@ -531,7 +531,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
531
531
  value: string;
532
532
  }, {
533
533
  id: string;
534
- type: EntityType.PrimitiveValue;
534
+ type: EntityType.LiteralValue;
535
535
  name: import("@src/definitions").PrimitiveTypes.String;
536
536
  valueAsType: {
537
537
  id: string;
@@ -579,7 +579,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
579
579
  id: z.ZodString;
580
580
  version: z.ZodNumber;
581
581
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
582
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
582
+ type: z.ZodLiteral<EntityType.LiteralValue>;
583
583
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
584
584
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
585
585
  id: z.ZodString;
@@ -980,7 +980,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
980
980
  }>]>>;
981
981
  }>, "strip", z.ZodTypeAny, {
982
982
  id: string;
983
- type: EntityType.PrimitiveValue;
983
+ type: EntityType.LiteralValue;
984
984
  name: import("@src/definitions").PrimitiveTypes.Number;
985
985
  valueAsType: {
986
986
  id: string;
@@ -1026,7 +1026,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
1026
1026
  value: number;
1027
1027
  }, {
1028
1028
  id: string;
1029
- type: EntityType.PrimitiveValue;
1029
+ type: EntityType.LiteralValue;
1030
1030
  name: import("@src/definitions").PrimitiveTypes.Number;
1031
1031
  valueAsType: {
1032
1032
  id: string;
@@ -1074,7 +1074,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
1074
1074
  id: z.ZodString;
1075
1075
  version: z.ZodNumber;
1076
1076
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
1077
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
1077
+ type: z.ZodLiteral<EntityType.LiteralValue>;
1078
1078
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
1079
1079
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1080
1080
  id: z.ZodString;
@@ -1428,7 +1428,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
1428
1428
  }>>;
1429
1429
  }>, "strip", z.ZodTypeAny, {
1430
1430
  id: string;
1431
- type: EntityType.PrimitiveValue;
1431
+ type: EntityType.LiteralValue;
1432
1432
  name: import("@src/definitions").PrimitiveTypes.Boolean;
1433
1433
  valueAsType: {
1434
1434
  id: string;
@@ -1466,7 +1466,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
1466
1466
  value: boolean;
1467
1467
  }, {
1468
1468
  id: string;
1469
- type: EntityType.PrimitiveValue;
1469
+ type: EntityType.LiteralValue;
1470
1470
  name: import("@src/definitions").PrimitiveTypes.Boolean;
1471
1471
  valueAsType: {
1472
1472
  id: string;
@@ -1506,7 +1506,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
1506
1506
  id: z.ZodString;
1507
1507
  version: z.ZodNumber;
1508
1508
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
1509
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
1509
+ type: z.ZodLiteral<EntityType.LiteralValue>;
1510
1510
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
1511
1511
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1512
1512
  id: z.ZodString;
@@ -1841,7 +1841,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
1841
1841
  autogeneration: z.ZodNull;
1842
1842
  }>, "strip", z.ZodTypeAny, {
1843
1843
  id: string;
1844
- type: EntityType.PrimitiveValue;
1844
+ type: EntityType.LiteralValue;
1845
1845
  name: import("@src/definitions").PrimitiveTypes.Null;
1846
1846
  valueAsType: {
1847
1847
  id: string;
@@ -1875,7 +1875,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
1875
1875
  value: null;
1876
1876
  }, {
1877
1877
  id: string;
1878
- type: EntityType.PrimitiveValue;
1878
+ type: EntityType.LiteralValue;
1879
1879
  name: import("@src/definitions").PrimitiveTypes.Null;
1880
1880
  valueAsType: {
1881
1881
  id: string;
@@ -1911,7 +1911,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
1911
1911
  id: z.ZodString;
1912
1912
  version: z.ZodNumber;
1913
1913
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
1914
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
1914
+ type: z.ZodLiteral<EntityType.LiteralValue>;
1915
1915
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
1916
1916
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1917
1917
  id: z.ZodString;
@@ -2328,7 +2328,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
2328
2328
  }>]>>;
2329
2329
  }>, "strip", z.ZodTypeAny, {
2330
2330
  id: string;
2331
- type: EntityType.PrimitiveValue;
2331
+ type: EntityType.LiteralValue;
2332
2332
  name: import("@src/definitions").PrimitiveTypes.Date;
2333
2333
  valueAsType: {
2334
2334
  id: string;
@@ -2378,7 +2378,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
2378
2378
  value: Date;
2379
2379
  }, {
2380
2380
  id: string;
2381
- type: EntityType.PrimitiveValue;
2381
+ type: EntityType.LiteralValue;
2382
2382
  name: import("@src/definitions").PrimitiveTypes.Date;
2383
2383
  valueAsType: {
2384
2384
  id: string;
@@ -2430,7 +2430,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
2430
2430
  id: z.ZodString;
2431
2431
  version: z.ZodNumber;
2432
2432
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
2433
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
2433
+ type: z.ZodLiteral<EntityType.LiteralValue>;
2434
2434
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
2435
2435
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
2436
2436
  id: z.ZodString;
@@ -2765,7 +2765,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
2765
2765
  autogeneration: z.ZodNull;
2766
2766
  }>, "strip", z.ZodTypeAny, {
2767
2767
  id: string;
2768
- type: EntityType.PrimitiveValue;
2768
+ type: EntityType.LiteralValue;
2769
2769
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
2770
2770
  valueAsType: {
2771
2771
  id: string;
@@ -2799,7 +2799,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
2799
2799
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
2800
2800
  }, {
2801
2801
  id: string;
2802
- type: EntityType.PrimitiveValue;
2802
+ type: EntityType.LiteralValue;
2803
2803
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
2804
2804
  valueAsType: {
2805
2805
  id: string;
@@ -2835,7 +2835,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
2835
2835
  id: z.ZodString;
2836
2836
  version: z.ZodNumber;
2837
2837
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
2838
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
2838
+ type: z.ZodLiteral<EntityType.LiteralValue>;
2839
2839
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
2840
2840
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
2841
2841
  id: z.ZodString;
@@ -3170,7 +3170,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
3170
3170
  autogeneration: z.ZodNull;
3171
3171
  }>, "strip", z.ZodTypeAny, {
3172
3172
  id: string;
3173
- type: EntityType.PrimitiveValue;
3173
+ type: EntityType.LiteralValue;
3174
3174
  name: import("@src/definitions").PrimitiveTypes.Enum;
3175
3175
  valueAsType: {
3176
3176
  id: string;
@@ -3204,7 +3204,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
3204
3204
  value: string;
3205
3205
  }, {
3206
3206
  id: string;
3207
- type: EntityType.PrimitiveValue;
3207
+ type: EntityType.LiteralValue;
3208
3208
  name: import("@src/definitions").PrimitiveTypes.Enum;
3209
3209
  valueAsType: {
3210
3210
  id: string;
@@ -3240,7 +3240,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
3240
3240
  id: z.ZodString;
3241
3241
  version: z.ZodNumber;
3242
3242
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
3243
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
3243
+ type: z.ZodLiteral<EntityType.LiteralValue>;
3244
3244
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
3245
3245
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
3246
3246
  id: z.ZodString;
@@ -3575,7 +3575,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
3575
3575
  autogeneration: z.ZodNull;
3576
3576
  }>, "strip", z.ZodTypeAny, {
3577
3577
  id: string;
3578
- type: EntityType.PrimitiveValue;
3578
+ type: EntityType.LiteralValue;
3579
3579
  name: import("@src/definitions").PrimitiveTypes.File;
3580
3580
  valueAsType: {
3581
3581
  id: string;
@@ -3609,7 +3609,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
3609
3609
  value: string;
3610
3610
  }, {
3611
3611
  id: string;
3612
- type: EntityType.PrimitiveValue;
3612
+ type: EntityType.LiteralValue;
3613
3613
  name: import("@src/definitions").PrimitiveTypes.File;
3614
3614
  valueAsType: {
3615
3615
  id: string;
@@ -3645,7 +3645,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
3645
3645
  id: z.ZodString;
3646
3646
  version: z.ZodNumber;
3647
3647
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
3648
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
3648
+ type: z.ZodLiteral<EntityType.LiteralValue>;
3649
3649
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
3650
3650
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
3651
3651
  id: z.ZodString;
@@ -3996,7 +3996,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
3996
3996
  }>>;
3997
3997
  }>, "strip", z.ZodTypeAny, {
3998
3998
  id: string;
3999
- type: EntityType.PrimitiveValue;
3999
+ type: EntityType.LiteralValue;
4000
4000
  name: import("@src/definitions").PrimitiveTypes.UUID;
4001
4001
  valueAsType: {
4002
4002
  id: string;
@@ -4034,7 +4034,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
4034
4034
  value: string;
4035
4035
  }, {
4036
4036
  id: string;
4037
- type: EntityType.PrimitiveValue;
4037
+ type: EntityType.LiteralValue;
4038
4038
  name: import("@src/definitions").PrimitiveTypes.UUID;
4039
4039
  valueAsType: {
4040
4040
  id: string;
@@ -4074,7 +4074,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
4074
4074
  id: z.ZodString;
4075
4075
  version: z.ZodNumber;
4076
4076
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
4077
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
4077
+ type: z.ZodLiteral<EntityType.LiteralValue>;
4078
4078
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
4079
4079
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
4080
4080
  id: z.ZodString;
@@ -4424,7 +4424,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
4424
4424
  autogeneration: z.ZodNull;
4425
4425
  }>, "strip", z.ZodTypeAny, {
4426
4426
  id: string;
4427
- type: EntityType.PrimitiveValue;
4427
+ type: EntityType.LiteralValue;
4428
4428
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
4429
4429
  valueAsType: {
4430
4430
  id: string;
@@ -4463,7 +4463,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
4463
4463
  };
4464
4464
  }, {
4465
4465
  id: string;
4466
- type: EntityType.PrimitiveValue;
4466
+ type: EntityType.LiteralValue;
4467
4467
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
4468
4468
  valueAsType: {
4469
4469
  id: string;
@@ -4504,7 +4504,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
4504
4504
  id: z.ZodString;
4505
4505
  version: z.ZodNumber;
4506
4506
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
4507
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
4507
+ type: z.ZodLiteral<EntityType.LiteralValue>;
4508
4508
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
4509
4509
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
4510
4510
  id: z.ZodString;
@@ -4854,7 +4854,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
4854
4854
  autogeneration: z.ZodNull;
4855
4855
  }>, "strip", z.ZodTypeAny, {
4856
4856
  id: string;
4857
- type: EntityType.PrimitiveValue;
4857
+ type: EntityType.LiteralValue;
4858
4858
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
4859
4859
  valueAsType: {
4860
4860
  id: string;
@@ -4893,7 +4893,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
4893
4893
  };
4894
4894
  }, {
4895
4895
  id: string;
4896
- type: EntityType.PrimitiveValue;
4896
+ type: EntityType.LiteralValue;
4897
4897
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
4898
4898
  valueAsType: {
4899
4899
  id: string;
@@ -5212,7 +5212,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5212
5212
  };
5213
5213
  defaultValue: {
5214
5214
  id: string;
5215
- type: EntityType.PrimitiveValue;
5215
+ type: EntityType.LiteralValue;
5216
5216
  name: import("@src/definitions").PrimitiveTypes.String;
5217
5217
  valueAsType: {
5218
5218
  id: string;
@@ -5258,7 +5258,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5258
5258
  value: string;
5259
5259
  } | {
5260
5260
  id: string;
5261
- type: EntityType.PrimitiveValue;
5261
+ type: EntityType.LiteralValue;
5262
5262
  name: import("@src/definitions").PrimitiveTypes.Number;
5263
5263
  valueAsType: {
5264
5264
  id: string;
@@ -5304,7 +5304,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5304
5304
  value: number;
5305
5305
  } | {
5306
5306
  id: string;
5307
- type: EntityType.PrimitiveValue;
5307
+ type: EntityType.LiteralValue;
5308
5308
  name: import("@src/definitions").PrimitiveTypes.Boolean;
5309
5309
  valueAsType: {
5310
5310
  id: string;
@@ -5342,7 +5342,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5342
5342
  value: boolean;
5343
5343
  } | {
5344
5344
  id: string;
5345
- type: EntityType.PrimitiveValue;
5345
+ type: EntityType.LiteralValue;
5346
5346
  name: import("@src/definitions").PrimitiveTypes.Null;
5347
5347
  valueAsType: {
5348
5348
  id: string;
@@ -5376,7 +5376,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5376
5376
  value: null;
5377
5377
  } | {
5378
5378
  id: string;
5379
- type: EntityType.PrimitiveValue;
5379
+ type: EntityType.LiteralValue;
5380
5380
  name: import("@src/definitions").PrimitiveTypes.Date;
5381
5381
  valueAsType: {
5382
5382
  id: string;
@@ -5426,7 +5426,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5426
5426
  value: Date;
5427
5427
  } | {
5428
5428
  id: string;
5429
- type: EntityType.PrimitiveValue;
5429
+ type: EntityType.LiteralValue;
5430
5430
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
5431
5431
  valueAsType: {
5432
5432
  id: string;
@@ -5460,7 +5460,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5460
5460
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
5461
5461
  } | {
5462
5462
  id: string;
5463
- type: EntityType.PrimitiveValue;
5463
+ type: EntityType.LiteralValue;
5464
5464
  name: import("@src/definitions").PrimitiveTypes.Enum;
5465
5465
  valueAsType: {
5466
5466
  id: string;
@@ -5494,7 +5494,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5494
5494
  value: string;
5495
5495
  } | {
5496
5496
  id: string;
5497
- type: EntityType.PrimitiveValue;
5497
+ type: EntityType.LiteralValue;
5498
5498
  name: import("@src/definitions").PrimitiveTypes.File;
5499
5499
  valueAsType: {
5500
5500
  id: string;
@@ -5528,7 +5528,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5528
5528
  value: string;
5529
5529
  } | {
5530
5530
  id: string;
5531
- type: EntityType.PrimitiveValue;
5531
+ type: EntityType.LiteralValue;
5532
5532
  name: import("@src/definitions").PrimitiveTypes.UUID;
5533
5533
  valueAsType: {
5534
5534
  id: string;
@@ -5566,7 +5566,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5566
5566
  value: string;
5567
5567
  } | {
5568
5568
  id: string;
5569
- type: EntityType.PrimitiveValue;
5569
+ type: EntityType.LiteralValue;
5570
5570
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
5571
5571
  valueAsType: {
5572
5572
  id: string;
@@ -5605,7 +5605,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5605
5605
  };
5606
5606
  } | {
5607
5607
  id: string;
5608
- type: EntityType.PrimitiveValue;
5608
+ type: EntityType.LiteralValue;
5609
5609
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
5610
5610
  valueAsType: {
5611
5611
  id: string;
@@ -5717,7 +5717,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5717
5717
  };
5718
5718
  defaultValue: {
5719
5719
  id: string;
5720
- type: EntityType.PrimitiveValue;
5720
+ type: EntityType.LiteralValue;
5721
5721
  name: import("@src/definitions").PrimitiveTypes.String;
5722
5722
  valueAsType: {
5723
5723
  id: string;
@@ -5763,7 +5763,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5763
5763
  value: string;
5764
5764
  } | {
5765
5765
  id: string;
5766
- type: EntityType.PrimitiveValue;
5766
+ type: EntityType.LiteralValue;
5767
5767
  name: import("@src/definitions").PrimitiveTypes.Number;
5768
5768
  valueAsType: {
5769
5769
  id: string;
@@ -5809,7 +5809,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5809
5809
  value: number;
5810
5810
  } | {
5811
5811
  id: string;
5812
- type: EntityType.PrimitiveValue;
5812
+ type: EntityType.LiteralValue;
5813
5813
  name: import("@src/definitions").PrimitiveTypes.Boolean;
5814
5814
  valueAsType: {
5815
5815
  id: string;
@@ -5847,7 +5847,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5847
5847
  value: boolean;
5848
5848
  } | {
5849
5849
  id: string;
5850
- type: EntityType.PrimitiveValue;
5850
+ type: EntityType.LiteralValue;
5851
5851
  name: import("@src/definitions").PrimitiveTypes.Null;
5852
5852
  valueAsType: {
5853
5853
  id: string;
@@ -5881,7 +5881,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5881
5881
  value: null;
5882
5882
  } | {
5883
5883
  id: string;
5884
- type: EntityType.PrimitiveValue;
5884
+ type: EntityType.LiteralValue;
5885
5885
  name: import("@src/definitions").PrimitiveTypes.Date;
5886
5886
  valueAsType: {
5887
5887
  id: string;
@@ -5931,7 +5931,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5931
5931
  value: Date;
5932
5932
  } | {
5933
5933
  id: string;
5934
- type: EntityType.PrimitiveValue;
5934
+ type: EntityType.LiteralValue;
5935
5935
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
5936
5936
  valueAsType: {
5937
5937
  id: string;
@@ -5965,7 +5965,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5965
5965
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
5966
5966
  } | {
5967
5967
  id: string;
5968
- type: EntityType.PrimitiveValue;
5968
+ type: EntityType.LiteralValue;
5969
5969
  name: import("@src/definitions").PrimitiveTypes.Enum;
5970
5970
  valueAsType: {
5971
5971
  id: string;
@@ -5999,7 +5999,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
5999
5999
  value: string;
6000
6000
  } | {
6001
6001
  id: string;
6002
- type: EntityType.PrimitiveValue;
6002
+ type: EntityType.LiteralValue;
6003
6003
  name: import("@src/definitions").PrimitiveTypes.File;
6004
6004
  valueAsType: {
6005
6005
  id: string;
@@ -6033,7 +6033,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
6033
6033
  value: string;
6034
6034
  } | {
6035
6035
  id: string;
6036
- type: EntityType.PrimitiveValue;
6036
+ type: EntityType.LiteralValue;
6037
6037
  name: import("@src/definitions").PrimitiveTypes.UUID;
6038
6038
  valueAsType: {
6039
6039
  id: string;
@@ -6071,7 +6071,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
6071
6071
  value: string;
6072
6072
  } | {
6073
6073
  id: string;
6074
- type: EntityType.PrimitiveValue;
6074
+ type: EntityType.LiteralValue;
6075
6075
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
6076
6076
  valueAsType: {
6077
6077
  id: string;
@@ -6110,7 +6110,7 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
6110
6110
  };
6111
6111
  } | {
6112
6112
  id: string;
6113
- type: EntityType.PrimitiveValue;
6113
+ type: EntityType.LiteralValue;
6114
6114
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
6115
6115
  valueAsType: {
6116
6116
  id: string;
@@ -6177,7 +6177,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
6177
6177
  id: z.ZodString;
6178
6178
  version: z.ZodNumber;
6179
6179
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
6180
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
6180
+ type: z.ZodLiteral<EntityType.LiteralValue>;
6181
6181
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
6182
6182
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
6183
6183
  id: z.ZodString;
@@ -6578,7 +6578,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
6578
6578
  }>]>>;
6579
6579
  }>, "strip", z.ZodTypeAny, {
6580
6580
  id: string;
6581
- type: EntityType.PrimitiveValue;
6581
+ type: EntityType.LiteralValue;
6582
6582
  name: import("@src/definitions").PrimitiveTypes.String;
6583
6583
  valueAsType: {
6584
6584
  id: string;
@@ -6624,7 +6624,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
6624
6624
  value: string;
6625
6625
  }, {
6626
6626
  id: string;
6627
- type: EntityType.PrimitiveValue;
6627
+ type: EntityType.LiteralValue;
6628
6628
  name: import("@src/definitions").PrimitiveTypes.String;
6629
6629
  valueAsType: {
6630
6630
  id: string;
@@ -6672,7 +6672,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
6672
6672
  id: z.ZodString;
6673
6673
  version: z.ZodNumber;
6674
6674
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
6675
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
6675
+ type: z.ZodLiteral<EntityType.LiteralValue>;
6676
6676
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
6677
6677
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
6678
6678
  id: z.ZodString;
@@ -7073,7 +7073,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
7073
7073
  }>]>>;
7074
7074
  }>, "strip", z.ZodTypeAny, {
7075
7075
  id: string;
7076
- type: EntityType.PrimitiveValue;
7076
+ type: EntityType.LiteralValue;
7077
7077
  name: import("@src/definitions").PrimitiveTypes.Number;
7078
7078
  valueAsType: {
7079
7079
  id: string;
@@ -7119,7 +7119,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
7119
7119
  value: number;
7120
7120
  }, {
7121
7121
  id: string;
7122
- type: EntityType.PrimitiveValue;
7122
+ type: EntityType.LiteralValue;
7123
7123
  name: import("@src/definitions").PrimitiveTypes.Number;
7124
7124
  valueAsType: {
7125
7125
  id: string;
@@ -7167,7 +7167,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
7167
7167
  id: z.ZodString;
7168
7168
  version: z.ZodNumber;
7169
7169
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
7170
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
7170
+ type: z.ZodLiteral<EntityType.LiteralValue>;
7171
7171
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
7172
7172
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
7173
7173
  id: z.ZodString;
@@ -7521,7 +7521,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
7521
7521
  }>>;
7522
7522
  }>, "strip", z.ZodTypeAny, {
7523
7523
  id: string;
7524
- type: EntityType.PrimitiveValue;
7524
+ type: EntityType.LiteralValue;
7525
7525
  name: import("@src/definitions").PrimitiveTypes.Boolean;
7526
7526
  valueAsType: {
7527
7527
  id: string;
@@ -7559,7 +7559,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
7559
7559
  value: boolean;
7560
7560
  }, {
7561
7561
  id: string;
7562
- type: EntityType.PrimitiveValue;
7562
+ type: EntityType.LiteralValue;
7563
7563
  name: import("@src/definitions").PrimitiveTypes.Boolean;
7564
7564
  valueAsType: {
7565
7565
  id: string;
@@ -7599,7 +7599,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
7599
7599
  id: z.ZodString;
7600
7600
  version: z.ZodNumber;
7601
7601
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
7602
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
7602
+ type: z.ZodLiteral<EntityType.LiteralValue>;
7603
7603
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
7604
7604
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
7605
7605
  id: z.ZodString;
@@ -7934,7 +7934,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
7934
7934
  autogeneration: z.ZodNull;
7935
7935
  }>, "strip", z.ZodTypeAny, {
7936
7936
  id: string;
7937
- type: EntityType.PrimitiveValue;
7937
+ type: EntityType.LiteralValue;
7938
7938
  name: import("@src/definitions").PrimitiveTypes.Null;
7939
7939
  valueAsType: {
7940
7940
  id: string;
@@ -7968,7 +7968,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
7968
7968
  value: null;
7969
7969
  }, {
7970
7970
  id: string;
7971
- type: EntityType.PrimitiveValue;
7971
+ type: EntityType.LiteralValue;
7972
7972
  name: import("@src/definitions").PrimitiveTypes.Null;
7973
7973
  valueAsType: {
7974
7974
  id: string;
@@ -8004,7 +8004,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
8004
8004
  id: z.ZodString;
8005
8005
  version: z.ZodNumber;
8006
8006
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
8007
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
8007
+ type: z.ZodLiteral<EntityType.LiteralValue>;
8008
8008
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
8009
8009
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
8010
8010
  id: z.ZodString;
@@ -8421,7 +8421,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
8421
8421
  }>]>>;
8422
8422
  }>, "strip", z.ZodTypeAny, {
8423
8423
  id: string;
8424
- type: EntityType.PrimitiveValue;
8424
+ type: EntityType.LiteralValue;
8425
8425
  name: import("@src/definitions").PrimitiveTypes.Date;
8426
8426
  valueAsType: {
8427
8427
  id: string;
@@ -8471,7 +8471,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
8471
8471
  value: Date;
8472
8472
  }, {
8473
8473
  id: string;
8474
- type: EntityType.PrimitiveValue;
8474
+ type: EntityType.LiteralValue;
8475
8475
  name: import("@src/definitions").PrimitiveTypes.Date;
8476
8476
  valueAsType: {
8477
8477
  id: string;
@@ -8523,7 +8523,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
8523
8523
  id: z.ZodString;
8524
8524
  version: z.ZodNumber;
8525
8525
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
8526
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
8526
+ type: z.ZodLiteral<EntityType.LiteralValue>;
8527
8527
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
8528
8528
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
8529
8529
  id: z.ZodString;
@@ -8858,7 +8858,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
8858
8858
  autogeneration: z.ZodNull;
8859
8859
  }>, "strip", z.ZodTypeAny, {
8860
8860
  id: string;
8861
- type: EntityType.PrimitiveValue;
8861
+ type: EntityType.LiteralValue;
8862
8862
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
8863
8863
  valueAsType: {
8864
8864
  id: string;
@@ -8892,7 +8892,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
8892
8892
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
8893
8893
  }, {
8894
8894
  id: string;
8895
- type: EntityType.PrimitiveValue;
8895
+ type: EntityType.LiteralValue;
8896
8896
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
8897
8897
  valueAsType: {
8898
8898
  id: string;
@@ -8928,7 +8928,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
8928
8928
  id: z.ZodString;
8929
8929
  version: z.ZodNumber;
8930
8930
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
8931
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
8931
+ type: z.ZodLiteral<EntityType.LiteralValue>;
8932
8932
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
8933
8933
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
8934
8934
  id: z.ZodString;
@@ -9263,7 +9263,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
9263
9263
  autogeneration: z.ZodNull;
9264
9264
  }>, "strip", z.ZodTypeAny, {
9265
9265
  id: string;
9266
- type: EntityType.PrimitiveValue;
9266
+ type: EntityType.LiteralValue;
9267
9267
  name: import("@src/definitions").PrimitiveTypes.Enum;
9268
9268
  valueAsType: {
9269
9269
  id: string;
@@ -9297,7 +9297,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
9297
9297
  value: string;
9298
9298
  }, {
9299
9299
  id: string;
9300
- type: EntityType.PrimitiveValue;
9300
+ type: EntityType.LiteralValue;
9301
9301
  name: import("@src/definitions").PrimitiveTypes.Enum;
9302
9302
  valueAsType: {
9303
9303
  id: string;
@@ -9333,7 +9333,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
9333
9333
  id: z.ZodString;
9334
9334
  version: z.ZodNumber;
9335
9335
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
9336
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
9336
+ type: z.ZodLiteral<EntityType.LiteralValue>;
9337
9337
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
9338
9338
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
9339
9339
  id: z.ZodString;
@@ -9668,7 +9668,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
9668
9668
  autogeneration: z.ZodNull;
9669
9669
  }>, "strip", z.ZodTypeAny, {
9670
9670
  id: string;
9671
- type: EntityType.PrimitiveValue;
9671
+ type: EntityType.LiteralValue;
9672
9672
  name: import("@src/definitions").PrimitiveTypes.File;
9673
9673
  valueAsType: {
9674
9674
  id: string;
@@ -9702,7 +9702,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
9702
9702
  value: string;
9703
9703
  }, {
9704
9704
  id: string;
9705
- type: EntityType.PrimitiveValue;
9705
+ type: EntityType.LiteralValue;
9706
9706
  name: import("@src/definitions").PrimitiveTypes.File;
9707
9707
  valueAsType: {
9708
9708
  id: string;
@@ -9738,7 +9738,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
9738
9738
  id: z.ZodString;
9739
9739
  version: z.ZodNumber;
9740
9740
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
9741
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
9741
+ type: z.ZodLiteral<EntityType.LiteralValue>;
9742
9742
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
9743
9743
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
9744
9744
  id: z.ZodString;
@@ -10089,7 +10089,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
10089
10089
  }>>;
10090
10090
  }>, "strip", z.ZodTypeAny, {
10091
10091
  id: string;
10092
- type: EntityType.PrimitiveValue;
10092
+ type: EntityType.LiteralValue;
10093
10093
  name: import("@src/definitions").PrimitiveTypes.UUID;
10094
10094
  valueAsType: {
10095
10095
  id: string;
@@ -10127,7 +10127,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
10127
10127
  value: string;
10128
10128
  }, {
10129
10129
  id: string;
10130
- type: EntityType.PrimitiveValue;
10130
+ type: EntityType.LiteralValue;
10131
10131
  name: import("@src/definitions").PrimitiveTypes.UUID;
10132
10132
  valueAsType: {
10133
10133
  id: string;
@@ -10167,7 +10167,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
10167
10167
  id: z.ZodString;
10168
10168
  version: z.ZodNumber;
10169
10169
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
10170
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
10170
+ type: z.ZodLiteral<EntityType.LiteralValue>;
10171
10171
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
10172
10172
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
10173
10173
  id: z.ZodString;
@@ -10517,7 +10517,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
10517
10517
  autogeneration: z.ZodNull;
10518
10518
  }>, "strip", z.ZodTypeAny, {
10519
10519
  id: string;
10520
- type: EntityType.PrimitiveValue;
10520
+ type: EntityType.LiteralValue;
10521
10521
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
10522
10522
  valueAsType: {
10523
10523
  id: string;
@@ -10556,7 +10556,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
10556
10556
  };
10557
10557
  }, {
10558
10558
  id: string;
10559
- type: EntityType.PrimitiveValue;
10559
+ type: EntityType.LiteralValue;
10560
10560
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
10561
10561
  valueAsType: {
10562
10562
  id: string;
@@ -10597,7 +10597,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
10597
10597
  id: z.ZodString;
10598
10598
  version: z.ZodNumber;
10599
10599
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
10600
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
10600
+ type: z.ZodLiteral<EntityType.LiteralValue>;
10601
10601
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
10602
10602
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
10603
10603
  id: z.ZodString;
@@ -10947,7 +10947,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
10947
10947
  autogeneration: z.ZodNull;
10948
10948
  }>, "strip", z.ZodTypeAny, {
10949
10949
  id: string;
10950
- type: EntityType.PrimitiveValue;
10950
+ type: EntityType.LiteralValue;
10951
10951
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
10952
10952
  valueAsType: {
10953
10953
  id: string;
@@ -10986,7 +10986,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
10986
10986
  };
10987
10987
  }, {
10988
10988
  id: string;
10989
- type: EntityType.PrimitiveValue;
10989
+ type: EntityType.LiteralValue;
10990
10990
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
10991
10991
  valueAsType: {
10992
10992
  id: string;
@@ -11308,7 +11308,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11308
11308
  version: number;
11309
11309
  defaultValue: {
11310
11310
  id: string;
11311
- type: EntityType.PrimitiveValue;
11311
+ type: EntityType.LiteralValue;
11312
11312
  name: import("@src/definitions").PrimitiveTypes.String;
11313
11313
  valueAsType: {
11314
11314
  id: string;
@@ -11354,7 +11354,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11354
11354
  value: string;
11355
11355
  } | {
11356
11356
  id: string;
11357
- type: EntityType.PrimitiveValue;
11357
+ type: EntityType.LiteralValue;
11358
11358
  name: import("@src/definitions").PrimitiveTypes.Number;
11359
11359
  valueAsType: {
11360
11360
  id: string;
@@ -11400,7 +11400,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11400
11400
  value: number;
11401
11401
  } | {
11402
11402
  id: string;
11403
- type: EntityType.PrimitiveValue;
11403
+ type: EntityType.LiteralValue;
11404
11404
  name: import("@src/definitions").PrimitiveTypes.Boolean;
11405
11405
  valueAsType: {
11406
11406
  id: string;
@@ -11438,7 +11438,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11438
11438
  value: boolean;
11439
11439
  } | {
11440
11440
  id: string;
11441
- type: EntityType.PrimitiveValue;
11441
+ type: EntityType.LiteralValue;
11442
11442
  name: import("@src/definitions").PrimitiveTypes.Null;
11443
11443
  valueAsType: {
11444
11444
  id: string;
@@ -11472,7 +11472,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11472
11472
  value: null;
11473
11473
  } | {
11474
11474
  id: string;
11475
- type: EntityType.PrimitiveValue;
11475
+ type: EntityType.LiteralValue;
11476
11476
  name: import("@src/definitions").PrimitiveTypes.Date;
11477
11477
  valueAsType: {
11478
11478
  id: string;
@@ -11522,7 +11522,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11522
11522
  value: Date;
11523
11523
  } | {
11524
11524
  id: string;
11525
- type: EntityType.PrimitiveValue;
11525
+ type: EntityType.LiteralValue;
11526
11526
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
11527
11527
  valueAsType: {
11528
11528
  id: string;
@@ -11556,7 +11556,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11556
11556
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
11557
11557
  } | {
11558
11558
  id: string;
11559
- type: EntityType.PrimitiveValue;
11559
+ type: EntityType.LiteralValue;
11560
11560
  name: import("@src/definitions").PrimitiveTypes.Enum;
11561
11561
  valueAsType: {
11562
11562
  id: string;
@@ -11590,7 +11590,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11590
11590
  value: string;
11591
11591
  } | {
11592
11592
  id: string;
11593
- type: EntityType.PrimitiveValue;
11593
+ type: EntityType.LiteralValue;
11594
11594
  name: import("@src/definitions").PrimitiveTypes.File;
11595
11595
  valueAsType: {
11596
11596
  id: string;
@@ -11624,7 +11624,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11624
11624
  value: string;
11625
11625
  } | {
11626
11626
  id: string;
11627
- type: EntityType.PrimitiveValue;
11627
+ type: EntityType.LiteralValue;
11628
11628
  name: import("@src/definitions").PrimitiveTypes.UUID;
11629
11629
  valueAsType: {
11630
11630
  id: string;
@@ -11662,7 +11662,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11662
11662
  value: string;
11663
11663
  } | {
11664
11664
  id: string;
11665
- type: EntityType.PrimitiveValue;
11665
+ type: EntityType.LiteralValue;
11666
11666
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
11667
11667
  valueAsType: {
11668
11668
  id: string;
@@ -11701,7 +11701,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11701
11701
  };
11702
11702
  } | {
11703
11703
  id: string;
11704
- type: EntityType.PrimitiveValue;
11704
+ type: EntityType.LiteralValue;
11705
11705
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
11706
11706
  valueAsType: {
11707
11707
  id: string;
@@ -11819,7 +11819,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11819
11819
  version: number;
11820
11820
  defaultValue: {
11821
11821
  id: string;
11822
- type: EntityType.PrimitiveValue;
11822
+ type: EntityType.LiteralValue;
11823
11823
  name: import("@src/definitions").PrimitiveTypes.String;
11824
11824
  valueAsType: {
11825
11825
  id: string;
@@ -11865,7 +11865,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11865
11865
  value: string;
11866
11866
  } | {
11867
11867
  id: string;
11868
- type: EntityType.PrimitiveValue;
11868
+ type: EntityType.LiteralValue;
11869
11869
  name: import("@src/definitions").PrimitiveTypes.Number;
11870
11870
  valueAsType: {
11871
11871
  id: string;
@@ -11911,7 +11911,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11911
11911
  value: number;
11912
11912
  } | {
11913
11913
  id: string;
11914
- type: EntityType.PrimitiveValue;
11914
+ type: EntityType.LiteralValue;
11915
11915
  name: import("@src/definitions").PrimitiveTypes.Boolean;
11916
11916
  valueAsType: {
11917
11917
  id: string;
@@ -11949,7 +11949,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11949
11949
  value: boolean;
11950
11950
  } | {
11951
11951
  id: string;
11952
- type: EntityType.PrimitiveValue;
11952
+ type: EntityType.LiteralValue;
11953
11953
  name: import("@src/definitions").PrimitiveTypes.Null;
11954
11954
  valueAsType: {
11955
11955
  id: string;
@@ -11983,7 +11983,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
11983
11983
  value: null;
11984
11984
  } | {
11985
11985
  id: string;
11986
- type: EntityType.PrimitiveValue;
11986
+ type: EntityType.LiteralValue;
11987
11987
  name: import("@src/definitions").PrimitiveTypes.Date;
11988
11988
  valueAsType: {
11989
11989
  id: string;
@@ -12033,7 +12033,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
12033
12033
  value: Date;
12034
12034
  } | {
12035
12035
  id: string;
12036
- type: EntityType.PrimitiveValue;
12036
+ type: EntityType.LiteralValue;
12037
12037
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
12038
12038
  valueAsType: {
12039
12039
  id: string;
@@ -12067,7 +12067,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
12067
12067
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
12068
12068
  } | {
12069
12069
  id: string;
12070
- type: EntityType.PrimitiveValue;
12070
+ type: EntityType.LiteralValue;
12071
12071
  name: import("@src/definitions").PrimitiveTypes.Enum;
12072
12072
  valueAsType: {
12073
12073
  id: string;
@@ -12101,7 +12101,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
12101
12101
  value: string;
12102
12102
  } | {
12103
12103
  id: string;
12104
- type: EntityType.PrimitiveValue;
12104
+ type: EntityType.LiteralValue;
12105
12105
  name: import("@src/definitions").PrimitiveTypes.File;
12106
12106
  valueAsType: {
12107
12107
  id: string;
@@ -12135,7 +12135,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
12135
12135
  value: string;
12136
12136
  } | {
12137
12137
  id: string;
12138
- type: EntityType.PrimitiveValue;
12138
+ type: EntityType.LiteralValue;
12139
12139
  name: import("@src/definitions").PrimitiveTypes.UUID;
12140
12140
  valueAsType: {
12141
12141
  id: string;
@@ -12173,7 +12173,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
12173
12173
  value: string;
12174
12174
  } | {
12175
12175
  id: string;
12176
- type: EntityType.PrimitiveValue;
12176
+ type: EntityType.LiteralValue;
12177
12177
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
12178
12178
  valueAsType: {
12179
12179
  id: string;
@@ -12212,7 +12212,7 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
12212
12212
  };
12213
12213
  } | {
12214
12214
  id: string;
12215
- type: EntityType.PrimitiveValue;
12215
+ type: EntityType.LiteralValue;
12216
12216
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
12217
12217
  valueAsType: {
12218
12218
  id: string;
@@ -12290,7 +12290,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
12290
12290
  id: z.ZodString;
12291
12291
  version: z.ZodNumber;
12292
12292
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
12293
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
12293
+ type: z.ZodLiteral<EntityType.LiteralValue>;
12294
12294
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
12295
12295
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
12296
12296
  id: z.ZodString;
@@ -12691,7 +12691,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
12691
12691
  }>]>>;
12692
12692
  }>, "strip", z.ZodTypeAny, {
12693
12693
  id: string;
12694
- type: EntityType.PrimitiveValue;
12694
+ type: EntityType.LiteralValue;
12695
12695
  name: import("@src/definitions").PrimitiveTypes.String;
12696
12696
  valueAsType: {
12697
12697
  id: string;
@@ -12737,7 +12737,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
12737
12737
  value: string;
12738
12738
  }, {
12739
12739
  id: string;
12740
- type: EntityType.PrimitiveValue;
12740
+ type: EntityType.LiteralValue;
12741
12741
  name: import("@src/definitions").PrimitiveTypes.String;
12742
12742
  valueAsType: {
12743
12743
  id: string;
@@ -12785,7 +12785,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
12785
12785
  id: z.ZodString;
12786
12786
  version: z.ZodNumber;
12787
12787
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
12788
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
12788
+ type: z.ZodLiteral<EntityType.LiteralValue>;
12789
12789
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
12790
12790
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
12791
12791
  id: z.ZodString;
@@ -13186,7 +13186,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
13186
13186
  }>]>>;
13187
13187
  }>, "strip", z.ZodTypeAny, {
13188
13188
  id: string;
13189
- type: EntityType.PrimitiveValue;
13189
+ type: EntityType.LiteralValue;
13190
13190
  name: import("@src/definitions").PrimitiveTypes.Number;
13191
13191
  valueAsType: {
13192
13192
  id: string;
@@ -13232,7 +13232,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
13232
13232
  value: number;
13233
13233
  }, {
13234
13234
  id: string;
13235
- type: EntityType.PrimitiveValue;
13235
+ type: EntityType.LiteralValue;
13236
13236
  name: import("@src/definitions").PrimitiveTypes.Number;
13237
13237
  valueAsType: {
13238
13238
  id: string;
@@ -13280,7 +13280,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
13280
13280
  id: z.ZodString;
13281
13281
  version: z.ZodNumber;
13282
13282
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
13283
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
13283
+ type: z.ZodLiteral<EntityType.LiteralValue>;
13284
13284
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
13285
13285
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
13286
13286
  id: z.ZodString;
@@ -13634,7 +13634,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
13634
13634
  }>>;
13635
13635
  }>, "strip", z.ZodTypeAny, {
13636
13636
  id: string;
13637
- type: EntityType.PrimitiveValue;
13637
+ type: EntityType.LiteralValue;
13638
13638
  name: import("@src/definitions").PrimitiveTypes.Boolean;
13639
13639
  valueAsType: {
13640
13640
  id: string;
@@ -13672,7 +13672,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
13672
13672
  value: boolean;
13673
13673
  }, {
13674
13674
  id: string;
13675
- type: EntityType.PrimitiveValue;
13675
+ type: EntityType.LiteralValue;
13676
13676
  name: import("@src/definitions").PrimitiveTypes.Boolean;
13677
13677
  valueAsType: {
13678
13678
  id: string;
@@ -13712,7 +13712,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
13712
13712
  id: z.ZodString;
13713
13713
  version: z.ZodNumber;
13714
13714
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
13715
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
13715
+ type: z.ZodLiteral<EntityType.LiteralValue>;
13716
13716
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
13717
13717
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
13718
13718
  id: z.ZodString;
@@ -14047,7 +14047,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
14047
14047
  autogeneration: z.ZodNull;
14048
14048
  }>, "strip", z.ZodTypeAny, {
14049
14049
  id: string;
14050
- type: EntityType.PrimitiveValue;
14050
+ type: EntityType.LiteralValue;
14051
14051
  name: import("@src/definitions").PrimitiveTypes.Null;
14052
14052
  valueAsType: {
14053
14053
  id: string;
@@ -14081,7 +14081,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
14081
14081
  value: null;
14082
14082
  }, {
14083
14083
  id: string;
14084
- type: EntityType.PrimitiveValue;
14084
+ type: EntityType.LiteralValue;
14085
14085
  name: import("@src/definitions").PrimitiveTypes.Null;
14086
14086
  valueAsType: {
14087
14087
  id: string;
@@ -14117,7 +14117,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
14117
14117
  id: z.ZodString;
14118
14118
  version: z.ZodNumber;
14119
14119
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
14120
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
14120
+ type: z.ZodLiteral<EntityType.LiteralValue>;
14121
14121
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
14122
14122
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
14123
14123
  id: z.ZodString;
@@ -14534,7 +14534,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
14534
14534
  }>]>>;
14535
14535
  }>, "strip", z.ZodTypeAny, {
14536
14536
  id: string;
14537
- type: EntityType.PrimitiveValue;
14537
+ type: EntityType.LiteralValue;
14538
14538
  name: import("@src/definitions").PrimitiveTypes.Date;
14539
14539
  valueAsType: {
14540
14540
  id: string;
@@ -14584,7 +14584,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
14584
14584
  value: Date;
14585
14585
  }, {
14586
14586
  id: string;
14587
- type: EntityType.PrimitiveValue;
14587
+ type: EntityType.LiteralValue;
14588
14588
  name: import("@src/definitions").PrimitiveTypes.Date;
14589
14589
  valueAsType: {
14590
14590
  id: string;
@@ -14636,7 +14636,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
14636
14636
  id: z.ZodString;
14637
14637
  version: z.ZodNumber;
14638
14638
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
14639
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
14639
+ type: z.ZodLiteral<EntityType.LiteralValue>;
14640
14640
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
14641
14641
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
14642
14642
  id: z.ZodString;
@@ -14971,7 +14971,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
14971
14971
  autogeneration: z.ZodNull;
14972
14972
  }>, "strip", z.ZodTypeAny, {
14973
14973
  id: string;
14974
- type: EntityType.PrimitiveValue;
14974
+ type: EntityType.LiteralValue;
14975
14975
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
14976
14976
  valueAsType: {
14977
14977
  id: string;
@@ -15005,7 +15005,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
15005
15005
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
15006
15006
  }, {
15007
15007
  id: string;
15008
- type: EntityType.PrimitiveValue;
15008
+ type: EntityType.LiteralValue;
15009
15009
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
15010
15010
  valueAsType: {
15011
15011
  id: string;
@@ -15041,7 +15041,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
15041
15041
  id: z.ZodString;
15042
15042
  version: z.ZodNumber;
15043
15043
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
15044
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
15044
+ type: z.ZodLiteral<EntityType.LiteralValue>;
15045
15045
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
15046
15046
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
15047
15047
  id: z.ZodString;
@@ -15376,7 +15376,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
15376
15376
  autogeneration: z.ZodNull;
15377
15377
  }>, "strip", z.ZodTypeAny, {
15378
15378
  id: string;
15379
- type: EntityType.PrimitiveValue;
15379
+ type: EntityType.LiteralValue;
15380
15380
  name: import("@src/definitions").PrimitiveTypes.Enum;
15381
15381
  valueAsType: {
15382
15382
  id: string;
@@ -15410,7 +15410,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
15410
15410
  value: string;
15411
15411
  }, {
15412
15412
  id: string;
15413
- type: EntityType.PrimitiveValue;
15413
+ type: EntityType.LiteralValue;
15414
15414
  name: import("@src/definitions").PrimitiveTypes.Enum;
15415
15415
  valueAsType: {
15416
15416
  id: string;
@@ -15446,7 +15446,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
15446
15446
  id: z.ZodString;
15447
15447
  version: z.ZodNumber;
15448
15448
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
15449
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
15449
+ type: z.ZodLiteral<EntityType.LiteralValue>;
15450
15450
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
15451
15451
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
15452
15452
  id: z.ZodString;
@@ -15781,7 +15781,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
15781
15781
  autogeneration: z.ZodNull;
15782
15782
  }>, "strip", z.ZodTypeAny, {
15783
15783
  id: string;
15784
- type: EntityType.PrimitiveValue;
15784
+ type: EntityType.LiteralValue;
15785
15785
  name: import("@src/definitions").PrimitiveTypes.File;
15786
15786
  valueAsType: {
15787
15787
  id: string;
@@ -15815,7 +15815,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
15815
15815
  value: string;
15816
15816
  }, {
15817
15817
  id: string;
15818
- type: EntityType.PrimitiveValue;
15818
+ type: EntityType.LiteralValue;
15819
15819
  name: import("@src/definitions").PrimitiveTypes.File;
15820
15820
  valueAsType: {
15821
15821
  id: string;
@@ -15851,7 +15851,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
15851
15851
  id: z.ZodString;
15852
15852
  version: z.ZodNumber;
15853
15853
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
15854
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
15854
+ type: z.ZodLiteral<EntityType.LiteralValue>;
15855
15855
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
15856
15856
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
15857
15857
  id: z.ZodString;
@@ -16202,7 +16202,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
16202
16202
  }>>;
16203
16203
  }>, "strip", z.ZodTypeAny, {
16204
16204
  id: string;
16205
- type: EntityType.PrimitiveValue;
16205
+ type: EntityType.LiteralValue;
16206
16206
  name: import("@src/definitions").PrimitiveTypes.UUID;
16207
16207
  valueAsType: {
16208
16208
  id: string;
@@ -16240,7 +16240,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
16240
16240
  value: string;
16241
16241
  }, {
16242
16242
  id: string;
16243
- type: EntityType.PrimitiveValue;
16243
+ type: EntityType.LiteralValue;
16244
16244
  name: import("@src/definitions").PrimitiveTypes.UUID;
16245
16245
  valueAsType: {
16246
16246
  id: string;
@@ -16280,7 +16280,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
16280
16280
  id: z.ZodString;
16281
16281
  version: z.ZodNumber;
16282
16282
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
16283
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
16283
+ type: z.ZodLiteral<EntityType.LiteralValue>;
16284
16284
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
16285
16285
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
16286
16286
  id: z.ZodString;
@@ -16630,7 +16630,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
16630
16630
  autogeneration: z.ZodNull;
16631
16631
  }>, "strip", z.ZodTypeAny, {
16632
16632
  id: string;
16633
- type: EntityType.PrimitiveValue;
16633
+ type: EntityType.LiteralValue;
16634
16634
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
16635
16635
  valueAsType: {
16636
16636
  id: string;
@@ -16669,7 +16669,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
16669
16669
  };
16670
16670
  }, {
16671
16671
  id: string;
16672
- type: EntityType.PrimitiveValue;
16672
+ type: EntityType.LiteralValue;
16673
16673
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
16674
16674
  valueAsType: {
16675
16675
  id: string;
@@ -16710,7 +16710,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
16710
16710
  id: z.ZodString;
16711
16711
  version: z.ZodNumber;
16712
16712
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
16713
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
16713
+ type: z.ZodLiteral<EntityType.LiteralValue>;
16714
16714
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
16715
16715
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
16716
16716
  id: z.ZodString;
@@ -17060,7 +17060,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17060
17060
  autogeneration: z.ZodNull;
17061
17061
  }>, "strip", z.ZodTypeAny, {
17062
17062
  id: string;
17063
- type: EntityType.PrimitiveValue;
17063
+ type: EntityType.LiteralValue;
17064
17064
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
17065
17065
  valueAsType: {
17066
17066
  id: string;
@@ -17099,7 +17099,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17099
17099
  };
17100
17100
  }, {
17101
17101
  id: string;
17102
- type: EntityType.PrimitiveValue;
17102
+ type: EntityType.LiteralValue;
17103
17103
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
17104
17104
  valueAsType: {
17105
17105
  id: string;
@@ -17235,7 +17235,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17235
17235
  };
17236
17236
  defaultValue: {
17237
17237
  id: string;
17238
- type: EntityType.PrimitiveValue;
17238
+ type: EntityType.LiteralValue;
17239
17239
  name: import("@src/definitions").PrimitiveTypes.String;
17240
17240
  valueAsType: {
17241
17241
  id: string;
@@ -17281,7 +17281,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17281
17281
  value: string;
17282
17282
  } | {
17283
17283
  id: string;
17284
- type: EntityType.PrimitiveValue;
17284
+ type: EntityType.LiteralValue;
17285
17285
  name: import("@src/definitions").PrimitiveTypes.Number;
17286
17286
  valueAsType: {
17287
17287
  id: string;
@@ -17327,7 +17327,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17327
17327
  value: number;
17328
17328
  } | {
17329
17329
  id: string;
17330
- type: EntityType.PrimitiveValue;
17330
+ type: EntityType.LiteralValue;
17331
17331
  name: import("@src/definitions").PrimitiveTypes.Boolean;
17332
17332
  valueAsType: {
17333
17333
  id: string;
@@ -17365,7 +17365,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17365
17365
  value: boolean;
17366
17366
  } | {
17367
17367
  id: string;
17368
- type: EntityType.PrimitiveValue;
17368
+ type: EntityType.LiteralValue;
17369
17369
  name: import("@src/definitions").PrimitiveTypes.Null;
17370
17370
  valueAsType: {
17371
17371
  id: string;
@@ -17399,7 +17399,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17399
17399
  value: null;
17400
17400
  } | {
17401
17401
  id: string;
17402
- type: EntityType.PrimitiveValue;
17402
+ type: EntityType.LiteralValue;
17403
17403
  name: import("@src/definitions").PrimitiveTypes.Date;
17404
17404
  valueAsType: {
17405
17405
  id: string;
@@ -17449,7 +17449,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17449
17449
  value: Date;
17450
17450
  } | {
17451
17451
  id: string;
17452
- type: EntityType.PrimitiveValue;
17452
+ type: EntityType.LiteralValue;
17453
17453
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
17454
17454
  valueAsType: {
17455
17455
  id: string;
@@ -17483,7 +17483,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17483
17483
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
17484
17484
  } | {
17485
17485
  id: string;
17486
- type: EntityType.PrimitiveValue;
17486
+ type: EntityType.LiteralValue;
17487
17487
  name: import("@src/definitions").PrimitiveTypes.Enum;
17488
17488
  valueAsType: {
17489
17489
  id: string;
@@ -17517,7 +17517,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17517
17517
  value: string;
17518
17518
  } | {
17519
17519
  id: string;
17520
- type: EntityType.PrimitiveValue;
17520
+ type: EntityType.LiteralValue;
17521
17521
  name: import("@src/definitions").PrimitiveTypes.File;
17522
17522
  valueAsType: {
17523
17523
  id: string;
@@ -17551,7 +17551,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17551
17551
  value: string;
17552
17552
  } | {
17553
17553
  id: string;
17554
- type: EntityType.PrimitiveValue;
17554
+ type: EntityType.LiteralValue;
17555
17555
  name: import("@src/definitions").PrimitiveTypes.UUID;
17556
17556
  valueAsType: {
17557
17557
  id: string;
@@ -17589,7 +17589,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17589
17589
  value: string;
17590
17590
  } | {
17591
17591
  id: string;
17592
- type: EntityType.PrimitiveValue;
17592
+ type: EntityType.LiteralValue;
17593
17593
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
17594
17594
  valueAsType: {
17595
17595
  id: string;
@@ -17628,7 +17628,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17628
17628
  };
17629
17629
  } | {
17630
17630
  id: string;
17631
- type: EntityType.PrimitiveValue;
17631
+ type: EntityType.LiteralValue;
17632
17632
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
17633
17633
  valueAsType: {
17634
17634
  id: string;
@@ -17698,7 +17698,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17698
17698
  };
17699
17699
  defaultValue: {
17700
17700
  id: string;
17701
- type: EntityType.PrimitiveValue;
17701
+ type: EntityType.LiteralValue;
17702
17702
  name: import("@src/definitions").PrimitiveTypes.String;
17703
17703
  valueAsType: {
17704
17704
  id: string;
@@ -17744,7 +17744,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17744
17744
  value: string;
17745
17745
  } | {
17746
17746
  id: string;
17747
- type: EntityType.PrimitiveValue;
17747
+ type: EntityType.LiteralValue;
17748
17748
  name: import("@src/definitions").PrimitiveTypes.Number;
17749
17749
  valueAsType: {
17750
17750
  id: string;
@@ -17790,7 +17790,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17790
17790
  value: number;
17791
17791
  } | {
17792
17792
  id: string;
17793
- type: EntityType.PrimitiveValue;
17793
+ type: EntityType.LiteralValue;
17794
17794
  name: import("@src/definitions").PrimitiveTypes.Boolean;
17795
17795
  valueAsType: {
17796
17796
  id: string;
@@ -17828,7 +17828,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17828
17828
  value: boolean;
17829
17829
  } | {
17830
17830
  id: string;
17831
- type: EntityType.PrimitiveValue;
17831
+ type: EntityType.LiteralValue;
17832
17832
  name: import("@src/definitions").PrimitiveTypes.Null;
17833
17833
  valueAsType: {
17834
17834
  id: string;
@@ -17862,7 +17862,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17862
17862
  value: null;
17863
17863
  } | {
17864
17864
  id: string;
17865
- type: EntityType.PrimitiveValue;
17865
+ type: EntityType.LiteralValue;
17866
17866
  name: import("@src/definitions").PrimitiveTypes.Date;
17867
17867
  valueAsType: {
17868
17868
  id: string;
@@ -17912,7 +17912,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17912
17912
  value: Date;
17913
17913
  } | {
17914
17914
  id: string;
17915
- type: EntityType.PrimitiveValue;
17915
+ type: EntityType.LiteralValue;
17916
17916
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
17917
17917
  valueAsType: {
17918
17918
  id: string;
@@ -17946,7 +17946,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17946
17946
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
17947
17947
  } | {
17948
17948
  id: string;
17949
- type: EntityType.PrimitiveValue;
17949
+ type: EntityType.LiteralValue;
17950
17950
  name: import("@src/definitions").PrimitiveTypes.Enum;
17951
17951
  valueAsType: {
17952
17952
  id: string;
@@ -17980,7 +17980,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
17980
17980
  value: string;
17981
17981
  } | {
17982
17982
  id: string;
17983
- type: EntityType.PrimitiveValue;
17983
+ type: EntityType.LiteralValue;
17984
17984
  name: import("@src/definitions").PrimitiveTypes.File;
17985
17985
  valueAsType: {
17986
17986
  id: string;
@@ -18014,7 +18014,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
18014
18014
  value: string;
18015
18015
  } | {
18016
18016
  id: string;
18017
- type: EntityType.PrimitiveValue;
18017
+ type: EntityType.LiteralValue;
18018
18018
  name: import("@src/definitions").PrimitiveTypes.UUID;
18019
18019
  valueAsType: {
18020
18020
  id: string;
@@ -18052,7 +18052,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
18052
18052
  value: string;
18053
18053
  } | {
18054
18054
  id: string;
18055
- type: EntityType.PrimitiveValue;
18055
+ type: EntityType.LiteralValue;
18056
18056
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
18057
18057
  valueAsType: {
18058
18058
  id: string;
@@ -18091,7 +18091,7 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
18091
18091
  };
18092
18092
  } | {
18093
18093
  id: string;
18094
- type: EntityType.PrimitiveValue;
18094
+ type: EntityType.LiteralValue;
18095
18095
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
18096
18096
  valueAsType: {
18097
18097
  id: string;
@@ -18158,7 +18158,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
18158
18158
  id: z.ZodString;
18159
18159
  version: z.ZodNumber;
18160
18160
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
18161
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
18161
+ type: z.ZodLiteral<EntityType.LiteralValue>;
18162
18162
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
18163
18163
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
18164
18164
  id: z.ZodString;
@@ -18559,7 +18559,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
18559
18559
  }>]>>;
18560
18560
  }>, "strip", z.ZodTypeAny, {
18561
18561
  id: string;
18562
- type: EntityType.PrimitiveValue;
18562
+ type: EntityType.LiteralValue;
18563
18563
  name: import("@src/definitions").PrimitiveTypes.String;
18564
18564
  valueAsType: {
18565
18565
  id: string;
@@ -18605,7 +18605,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
18605
18605
  value: string;
18606
18606
  }, {
18607
18607
  id: string;
18608
- type: EntityType.PrimitiveValue;
18608
+ type: EntityType.LiteralValue;
18609
18609
  name: import("@src/definitions").PrimitiveTypes.String;
18610
18610
  valueAsType: {
18611
18611
  id: string;
@@ -18653,7 +18653,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
18653
18653
  id: z.ZodString;
18654
18654
  version: z.ZodNumber;
18655
18655
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
18656
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
18656
+ type: z.ZodLiteral<EntityType.LiteralValue>;
18657
18657
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
18658
18658
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
18659
18659
  id: z.ZodString;
@@ -19054,7 +19054,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19054
19054
  }>]>>;
19055
19055
  }>, "strip", z.ZodTypeAny, {
19056
19056
  id: string;
19057
- type: EntityType.PrimitiveValue;
19057
+ type: EntityType.LiteralValue;
19058
19058
  name: import("@src/definitions").PrimitiveTypes.Number;
19059
19059
  valueAsType: {
19060
19060
  id: string;
@@ -19100,7 +19100,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19100
19100
  value: number;
19101
19101
  }, {
19102
19102
  id: string;
19103
- type: EntityType.PrimitiveValue;
19103
+ type: EntityType.LiteralValue;
19104
19104
  name: import("@src/definitions").PrimitiveTypes.Number;
19105
19105
  valueAsType: {
19106
19106
  id: string;
@@ -19148,7 +19148,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19148
19148
  id: z.ZodString;
19149
19149
  version: z.ZodNumber;
19150
19150
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
19151
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
19151
+ type: z.ZodLiteral<EntityType.LiteralValue>;
19152
19152
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
19153
19153
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
19154
19154
  id: z.ZodString;
@@ -19502,7 +19502,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19502
19502
  }>>;
19503
19503
  }>, "strip", z.ZodTypeAny, {
19504
19504
  id: string;
19505
- type: EntityType.PrimitiveValue;
19505
+ type: EntityType.LiteralValue;
19506
19506
  name: import("@src/definitions").PrimitiveTypes.Boolean;
19507
19507
  valueAsType: {
19508
19508
  id: string;
@@ -19540,7 +19540,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19540
19540
  value: boolean;
19541
19541
  }, {
19542
19542
  id: string;
19543
- type: EntityType.PrimitiveValue;
19543
+ type: EntityType.LiteralValue;
19544
19544
  name: import("@src/definitions").PrimitiveTypes.Boolean;
19545
19545
  valueAsType: {
19546
19546
  id: string;
@@ -19580,7 +19580,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19580
19580
  id: z.ZodString;
19581
19581
  version: z.ZodNumber;
19582
19582
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
19583
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
19583
+ type: z.ZodLiteral<EntityType.LiteralValue>;
19584
19584
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
19585
19585
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
19586
19586
  id: z.ZodString;
@@ -19915,7 +19915,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19915
19915
  autogeneration: z.ZodNull;
19916
19916
  }>, "strip", z.ZodTypeAny, {
19917
19917
  id: string;
19918
- type: EntityType.PrimitiveValue;
19918
+ type: EntityType.LiteralValue;
19919
19919
  name: import("@src/definitions").PrimitiveTypes.Null;
19920
19920
  valueAsType: {
19921
19921
  id: string;
@@ -19949,7 +19949,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19949
19949
  value: null;
19950
19950
  }, {
19951
19951
  id: string;
19952
- type: EntityType.PrimitiveValue;
19952
+ type: EntityType.LiteralValue;
19953
19953
  name: import("@src/definitions").PrimitiveTypes.Null;
19954
19954
  valueAsType: {
19955
19955
  id: string;
@@ -19985,7 +19985,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
19985
19985
  id: z.ZodString;
19986
19986
  version: z.ZodNumber;
19987
19987
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
19988
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
19988
+ type: z.ZodLiteral<EntityType.LiteralValue>;
19989
19989
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
19990
19990
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
19991
19991
  id: z.ZodString;
@@ -20402,7 +20402,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
20402
20402
  }>]>>;
20403
20403
  }>, "strip", z.ZodTypeAny, {
20404
20404
  id: string;
20405
- type: EntityType.PrimitiveValue;
20405
+ type: EntityType.LiteralValue;
20406
20406
  name: import("@src/definitions").PrimitiveTypes.Date;
20407
20407
  valueAsType: {
20408
20408
  id: string;
@@ -20452,7 +20452,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
20452
20452
  value: Date;
20453
20453
  }, {
20454
20454
  id: string;
20455
- type: EntityType.PrimitiveValue;
20455
+ type: EntityType.LiteralValue;
20456
20456
  name: import("@src/definitions").PrimitiveTypes.Date;
20457
20457
  valueAsType: {
20458
20458
  id: string;
@@ -20504,7 +20504,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
20504
20504
  id: z.ZodString;
20505
20505
  version: z.ZodNumber;
20506
20506
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
20507
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
20507
+ type: z.ZodLiteral<EntityType.LiteralValue>;
20508
20508
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
20509
20509
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
20510
20510
  id: z.ZodString;
@@ -20839,7 +20839,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
20839
20839
  autogeneration: z.ZodNull;
20840
20840
  }>, "strip", z.ZodTypeAny, {
20841
20841
  id: string;
20842
- type: EntityType.PrimitiveValue;
20842
+ type: EntityType.LiteralValue;
20843
20843
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
20844
20844
  valueAsType: {
20845
20845
  id: string;
@@ -20873,7 +20873,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
20873
20873
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
20874
20874
  }, {
20875
20875
  id: string;
20876
- type: EntityType.PrimitiveValue;
20876
+ type: EntityType.LiteralValue;
20877
20877
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
20878
20878
  valueAsType: {
20879
20879
  id: string;
@@ -20909,7 +20909,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
20909
20909
  id: z.ZodString;
20910
20910
  version: z.ZodNumber;
20911
20911
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
20912
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
20912
+ type: z.ZodLiteral<EntityType.LiteralValue>;
20913
20913
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
20914
20914
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
20915
20915
  id: z.ZodString;
@@ -21244,7 +21244,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
21244
21244
  autogeneration: z.ZodNull;
21245
21245
  }>, "strip", z.ZodTypeAny, {
21246
21246
  id: string;
21247
- type: EntityType.PrimitiveValue;
21247
+ type: EntityType.LiteralValue;
21248
21248
  name: import("@src/definitions").PrimitiveTypes.Enum;
21249
21249
  valueAsType: {
21250
21250
  id: string;
@@ -21278,7 +21278,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
21278
21278
  value: string;
21279
21279
  }, {
21280
21280
  id: string;
21281
- type: EntityType.PrimitiveValue;
21281
+ type: EntityType.LiteralValue;
21282
21282
  name: import("@src/definitions").PrimitiveTypes.Enum;
21283
21283
  valueAsType: {
21284
21284
  id: string;
@@ -21314,7 +21314,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
21314
21314
  id: z.ZodString;
21315
21315
  version: z.ZodNumber;
21316
21316
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
21317
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
21317
+ type: z.ZodLiteral<EntityType.LiteralValue>;
21318
21318
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
21319
21319
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
21320
21320
  id: z.ZodString;
@@ -21649,7 +21649,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
21649
21649
  autogeneration: z.ZodNull;
21650
21650
  }>, "strip", z.ZodTypeAny, {
21651
21651
  id: string;
21652
- type: EntityType.PrimitiveValue;
21652
+ type: EntityType.LiteralValue;
21653
21653
  name: import("@src/definitions").PrimitiveTypes.File;
21654
21654
  valueAsType: {
21655
21655
  id: string;
@@ -21683,7 +21683,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
21683
21683
  value: string;
21684
21684
  }, {
21685
21685
  id: string;
21686
- type: EntityType.PrimitiveValue;
21686
+ type: EntityType.LiteralValue;
21687
21687
  name: import("@src/definitions").PrimitiveTypes.File;
21688
21688
  valueAsType: {
21689
21689
  id: string;
@@ -21719,7 +21719,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
21719
21719
  id: z.ZodString;
21720
21720
  version: z.ZodNumber;
21721
21721
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
21722
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
21722
+ type: z.ZodLiteral<EntityType.LiteralValue>;
21723
21723
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
21724
21724
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
21725
21725
  id: z.ZodString;
@@ -22070,7 +22070,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
22070
22070
  }>>;
22071
22071
  }>, "strip", z.ZodTypeAny, {
22072
22072
  id: string;
22073
- type: EntityType.PrimitiveValue;
22073
+ type: EntityType.LiteralValue;
22074
22074
  name: import("@src/definitions").PrimitiveTypes.UUID;
22075
22075
  valueAsType: {
22076
22076
  id: string;
@@ -22108,7 +22108,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
22108
22108
  value: string;
22109
22109
  }, {
22110
22110
  id: string;
22111
- type: EntityType.PrimitiveValue;
22111
+ type: EntityType.LiteralValue;
22112
22112
  name: import("@src/definitions").PrimitiveTypes.UUID;
22113
22113
  valueAsType: {
22114
22114
  id: string;
@@ -22148,7 +22148,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
22148
22148
  id: z.ZodString;
22149
22149
  version: z.ZodNumber;
22150
22150
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
22151
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
22151
+ type: z.ZodLiteral<EntityType.LiteralValue>;
22152
22152
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
22153
22153
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
22154
22154
  id: z.ZodString;
@@ -22498,7 +22498,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
22498
22498
  autogeneration: z.ZodNull;
22499
22499
  }>, "strip", z.ZodTypeAny, {
22500
22500
  id: string;
22501
- type: EntityType.PrimitiveValue;
22501
+ type: EntityType.LiteralValue;
22502
22502
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
22503
22503
  valueAsType: {
22504
22504
  id: string;
@@ -22537,7 +22537,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
22537
22537
  };
22538
22538
  }, {
22539
22539
  id: string;
22540
- type: EntityType.PrimitiveValue;
22540
+ type: EntityType.LiteralValue;
22541
22541
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
22542
22542
  valueAsType: {
22543
22543
  id: string;
@@ -22578,7 +22578,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
22578
22578
  id: z.ZodString;
22579
22579
  version: z.ZodNumber;
22580
22580
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
22581
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
22581
+ type: z.ZodLiteral<EntityType.LiteralValue>;
22582
22582
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
22583
22583
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
22584
22584
  id: z.ZodString;
@@ -22928,7 +22928,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
22928
22928
  autogeneration: z.ZodNull;
22929
22929
  }>, "strip", z.ZodTypeAny, {
22930
22930
  id: string;
22931
- type: EntityType.PrimitiveValue;
22931
+ type: EntityType.LiteralValue;
22932
22932
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
22933
22933
  valueAsType: {
22934
22934
  id: string;
@@ -22967,7 +22967,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
22967
22967
  };
22968
22968
  }, {
22969
22969
  id: string;
22970
- type: EntityType.PrimitiveValue;
22970
+ type: EntityType.LiteralValue;
22971
22971
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
22972
22972
  valueAsType: {
22973
22973
  id: string;
@@ -23106,7 +23106,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23106
23106
  version: number;
23107
23107
  defaultValue: {
23108
23108
  id: string;
23109
- type: EntityType.PrimitiveValue;
23109
+ type: EntityType.LiteralValue;
23110
23110
  name: import("@src/definitions").PrimitiveTypes.String;
23111
23111
  valueAsType: {
23112
23112
  id: string;
@@ -23152,7 +23152,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23152
23152
  value: string;
23153
23153
  } | {
23154
23154
  id: string;
23155
- type: EntityType.PrimitiveValue;
23155
+ type: EntityType.LiteralValue;
23156
23156
  name: import("@src/definitions").PrimitiveTypes.Number;
23157
23157
  valueAsType: {
23158
23158
  id: string;
@@ -23198,7 +23198,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23198
23198
  value: number;
23199
23199
  } | {
23200
23200
  id: string;
23201
- type: EntityType.PrimitiveValue;
23201
+ type: EntityType.LiteralValue;
23202
23202
  name: import("@src/definitions").PrimitiveTypes.Boolean;
23203
23203
  valueAsType: {
23204
23204
  id: string;
@@ -23236,7 +23236,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23236
23236
  value: boolean;
23237
23237
  } | {
23238
23238
  id: string;
23239
- type: EntityType.PrimitiveValue;
23239
+ type: EntityType.LiteralValue;
23240
23240
  name: import("@src/definitions").PrimitiveTypes.Null;
23241
23241
  valueAsType: {
23242
23242
  id: string;
@@ -23270,7 +23270,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23270
23270
  value: null;
23271
23271
  } | {
23272
23272
  id: string;
23273
- type: EntityType.PrimitiveValue;
23273
+ type: EntityType.LiteralValue;
23274
23274
  name: import("@src/definitions").PrimitiveTypes.Date;
23275
23275
  valueAsType: {
23276
23276
  id: string;
@@ -23320,7 +23320,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23320
23320
  value: Date;
23321
23321
  } | {
23322
23322
  id: string;
23323
- type: EntityType.PrimitiveValue;
23323
+ type: EntityType.LiteralValue;
23324
23324
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
23325
23325
  valueAsType: {
23326
23326
  id: string;
@@ -23354,7 +23354,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23354
23354
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
23355
23355
  } | {
23356
23356
  id: string;
23357
- type: EntityType.PrimitiveValue;
23357
+ type: EntityType.LiteralValue;
23358
23358
  name: import("@src/definitions").PrimitiveTypes.Enum;
23359
23359
  valueAsType: {
23360
23360
  id: string;
@@ -23388,7 +23388,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23388
23388
  value: string;
23389
23389
  } | {
23390
23390
  id: string;
23391
- type: EntityType.PrimitiveValue;
23391
+ type: EntityType.LiteralValue;
23392
23392
  name: import("@src/definitions").PrimitiveTypes.File;
23393
23393
  valueAsType: {
23394
23394
  id: string;
@@ -23422,7 +23422,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23422
23422
  value: string;
23423
23423
  } | {
23424
23424
  id: string;
23425
- type: EntityType.PrimitiveValue;
23425
+ type: EntityType.LiteralValue;
23426
23426
  name: import("@src/definitions").PrimitiveTypes.UUID;
23427
23427
  valueAsType: {
23428
23428
  id: string;
@@ -23460,7 +23460,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23460
23460
  value: string;
23461
23461
  } | {
23462
23462
  id: string;
23463
- type: EntityType.PrimitiveValue;
23463
+ type: EntityType.LiteralValue;
23464
23464
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
23465
23465
  valueAsType: {
23466
23466
  id: string;
@@ -23499,7 +23499,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23499
23499
  };
23500
23500
  } | {
23501
23501
  id: string;
23502
- type: EntityType.PrimitiveValue;
23502
+ type: EntityType.LiteralValue;
23503
23503
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
23504
23504
  valueAsType: {
23505
23505
  id: string;
@@ -23575,7 +23575,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23575
23575
  version: number;
23576
23576
  defaultValue: {
23577
23577
  id: string;
23578
- type: EntityType.PrimitiveValue;
23578
+ type: EntityType.LiteralValue;
23579
23579
  name: import("@src/definitions").PrimitiveTypes.String;
23580
23580
  valueAsType: {
23581
23581
  id: string;
@@ -23621,7 +23621,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23621
23621
  value: string;
23622
23622
  } | {
23623
23623
  id: string;
23624
- type: EntityType.PrimitiveValue;
23624
+ type: EntityType.LiteralValue;
23625
23625
  name: import("@src/definitions").PrimitiveTypes.Number;
23626
23626
  valueAsType: {
23627
23627
  id: string;
@@ -23667,7 +23667,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23667
23667
  value: number;
23668
23668
  } | {
23669
23669
  id: string;
23670
- type: EntityType.PrimitiveValue;
23670
+ type: EntityType.LiteralValue;
23671
23671
  name: import("@src/definitions").PrimitiveTypes.Boolean;
23672
23672
  valueAsType: {
23673
23673
  id: string;
@@ -23705,7 +23705,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23705
23705
  value: boolean;
23706
23706
  } | {
23707
23707
  id: string;
23708
- type: EntityType.PrimitiveValue;
23708
+ type: EntityType.LiteralValue;
23709
23709
  name: import("@src/definitions").PrimitiveTypes.Null;
23710
23710
  valueAsType: {
23711
23711
  id: string;
@@ -23739,7 +23739,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23739
23739
  value: null;
23740
23740
  } | {
23741
23741
  id: string;
23742
- type: EntityType.PrimitiveValue;
23742
+ type: EntityType.LiteralValue;
23743
23743
  name: import("@src/definitions").PrimitiveTypes.Date;
23744
23744
  valueAsType: {
23745
23745
  id: string;
@@ -23789,7 +23789,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23789
23789
  value: Date;
23790
23790
  } | {
23791
23791
  id: string;
23792
- type: EntityType.PrimitiveValue;
23792
+ type: EntityType.LiteralValue;
23793
23793
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
23794
23794
  valueAsType: {
23795
23795
  id: string;
@@ -23823,7 +23823,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23823
23823
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
23824
23824
  } | {
23825
23825
  id: string;
23826
- type: EntityType.PrimitiveValue;
23826
+ type: EntityType.LiteralValue;
23827
23827
  name: import("@src/definitions").PrimitiveTypes.Enum;
23828
23828
  valueAsType: {
23829
23829
  id: string;
@@ -23857,7 +23857,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23857
23857
  value: string;
23858
23858
  } | {
23859
23859
  id: string;
23860
- type: EntityType.PrimitiveValue;
23860
+ type: EntityType.LiteralValue;
23861
23861
  name: import("@src/definitions").PrimitiveTypes.File;
23862
23862
  valueAsType: {
23863
23863
  id: string;
@@ -23891,7 +23891,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23891
23891
  value: string;
23892
23892
  } | {
23893
23893
  id: string;
23894
- type: EntityType.PrimitiveValue;
23894
+ type: EntityType.LiteralValue;
23895
23895
  name: import("@src/definitions").PrimitiveTypes.UUID;
23896
23896
  valueAsType: {
23897
23897
  id: string;
@@ -23929,7 +23929,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23929
23929
  value: string;
23930
23930
  } | {
23931
23931
  id: string;
23932
- type: EntityType.PrimitiveValue;
23932
+ type: EntityType.LiteralValue;
23933
23933
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
23934
23934
  valueAsType: {
23935
23935
  id: string;
@@ -23968,7 +23968,7 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
23968
23968
  };
23969
23969
  } | {
23970
23970
  id: string;
23971
- type: EntityType.PrimitiveValue;
23971
+ type: EntityType.LiteralValue;
23972
23972
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
23973
23973
  valueAsType: {
23974
23974
  id: string;
@@ -24046,7 +24046,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
24046
24046
  id: z.ZodString;
24047
24047
  version: z.ZodNumber;
24048
24048
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
24049
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
24049
+ type: z.ZodLiteral<EntityType.LiteralValue>;
24050
24050
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
24051
24051
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
24052
24052
  id: z.ZodString;
@@ -24447,7 +24447,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
24447
24447
  }>]>>;
24448
24448
  }>, "strip", z.ZodTypeAny, {
24449
24449
  id: string;
24450
- type: EntityType.PrimitiveValue;
24450
+ type: EntityType.LiteralValue;
24451
24451
  name: import("@src/definitions").PrimitiveTypes.String;
24452
24452
  valueAsType: {
24453
24453
  id: string;
@@ -24493,7 +24493,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
24493
24493
  value: string;
24494
24494
  }, {
24495
24495
  id: string;
24496
- type: EntityType.PrimitiveValue;
24496
+ type: EntityType.LiteralValue;
24497
24497
  name: import("@src/definitions").PrimitiveTypes.String;
24498
24498
  valueAsType: {
24499
24499
  id: string;
@@ -24541,7 +24541,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
24541
24541
  id: z.ZodString;
24542
24542
  version: z.ZodNumber;
24543
24543
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
24544
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
24544
+ type: z.ZodLiteral<EntityType.LiteralValue>;
24545
24545
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
24546
24546
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
24547
24547
  id: z.ZodString;
@@ -24942,7 +24942,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
24942
24942
  }>]>>;
24943
24943
  }>, "strip", z.ZodTypeAny, {
24944
24944
  id: string;
24945
- type: EntityType.PrimitiveValue;
24945
+ type: EntityType.LiteralValue;
24946
24946
  name: import("@src/definitions").PrimitiveTypes.Number;
24947
24947
  valueAsType: {
24948
24948
  id: string;
@@ -24988,7 +24988,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
24988
24988
  value: number;
24989
24989
  }, {
24990
24990
  id: string;
24991
- type: EntityType.PrimitiveValue;
24991
+ type: EntityType.LiteralValue;
24992
24992
  name: import("@src/definitions").PrimitiveTypes.Number;
24993
24993
  valueAsType: {
24994
24994
  id: string;
@@ -25036,7 +25036,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
25036
25036
  id: z.ZodString;
25037
25037
  version: z.ZodNumber;
25038
25038
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
25039
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
25039
+ type: z.ZodLiteral<EntityType.LiteralValue>;
25040
25040
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
25041
25041
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
25042
25042
  id: z.ZodString;
@@ -25390,7 +25390,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
25390
25390
  }>>;
25391
25391
  }>, "strip", z.ZodTypeAny, {
25392
25392
  id: string;
25393
- type: EntityType.PrimitiveValue;
25393
+ type: EntityType.LiteralValue;
25394
25394
  name: import("@src/definitions").PrimitiveTypes.Boolean;
25395
25395
  valueAsType: {
25396
25396
  id: string;
@@ -25428,7 +25428,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
25428
25428
  value: boolean;
25429
25429
  }, {
25430
25430
  id: string;
25431
- type: EntityType.PrimitiveValue;
25431
+ type: EntityType.LiteralValue;
25432
25432
  name: import("@src/definitions").PrimitiveTypes.Boolean;
25433
25433
  valueAsType: {
25434
25434
  id: string;
@@ -25468,7 +25468,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
25468
25468
  id: z.ZodString;
25469
25469
  version: z.ZodNumber;
25470
25470
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
25471
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
25471
+ type: z.ZodLiteral<EntityType.LiteralValue>;
25472
25472
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
25473
25473
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
25474
25474
  id: z.ZodString;
@@ -25803,7 +25803,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
25803
25803
  autogeneration: z.ZodNull;
25804
25804
  }>, "strip", z.ZodTypeAny, {
25805
25805
  id: string;
25806
- type: EntityType.PrimitiveValue;
25806
+ type: EntityType.LiteralValue;
25807
25807
  name: import("@src/definitions").PrimitiveTypes.Null;
25808
25808
  valueAsType: {
25809
25809
  id: string;
@@ -25837,7 +25837,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
25837
25837
  value: null;
25838
25838
  }, {
25839
25839
  id: string;
25840
- type: EntityType.PrimitiveValue;
25840
+ type: EntityType.LiteralValue;
25841
25841
  name: import("@src/definitions").PrimitiveTypes.Null;
25842
25842
  valueAsType: {
25843
25843
  id: string;
@@ -25873,7 +25873,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
25873
25873
  id: z.ZodString;
25874
25874
  version: z.ZodNumber;
25875
25875
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
25876
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
25876
+ type: z.ZodLiteral<EntityType.LiteralValue>;
25877
25877
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
25878
25878
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
25879
25879
  id: z.ZodString;
@@ -26290,7 +26290,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
26290
26290
  }>]>>;
26291
26291
  }>, "strip", z.ZodTypeAny, {
26292
26292
  id: string;
26293
- type: EntityType.PrimitiveValue;
26293
+ type: EntityType.LiteralValue;
26294
26294
  name: import("@src/definitions").PrimitiveTypes.Date;
26295
26295
  valueAsType: {
26296
26296
  id: string;
@@ -26340,7 +26340,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
26340
26340
  value: Date;
26341
26341
  }, {
26342
26342
  id: string;
26343
- type: EntityType.PrimitiveValue;
26343
+ type: EntityType.LiteralValue;
26344
26344
  name: import("@src/definitions").PrimitiveTypes.Date;
26345
26345
  valueAsType: {
26346
26346
  id: string;
@@ -26392,7 +26392,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
26392
26392
  id: z.ZodString;
26393
26393
  version: z.ZodNumber;
26394
26394
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
26395
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
26395
+ type: z.ZodLiteral<EntityType.LiteralValue>;
26396
26396
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
26397
26397
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
26398
26398
  id: z.ZodString;
@@ -26727,7 +26727,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
26727
26727
  autogeneration: z.ZodNull;
26728
26728
  }>, "strip", z.ZodTypeAny, {
26729
26729
  id: string;
26730
- type: EntityType.PrimitiveValue;
26730
+ type: EntityType.LiteralValue;
26731
26731
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
26732
26732
  valueAsType: {
26733
26733
  id: string;
@@ -26761,7 +26761,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
26761
26761
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
26762
26762
  }, {
26763
26763
  id: string;
26764
- type: EntityType.PrimitiveValue;
26764
+ type: EntityType.LiteralValue;
26765
26765
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
26766
26766
  valueAsType: {
26767
26767
  id: string;
@@ -26797,7 +26797,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
26797
26797
  id: z.ZodString;
26798
26798
  version: z.ZodNumber;
26799
26799
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
26800
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
26800
+ type: z.ZodLiteral<EntityType.LiteralValue>;
26801
26801
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
26802
26802
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
26803
26803
  id: z.ZodString;
@@ -27132,7 +27132,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
27132
27132
  autogeneration: z.ZodNull;
27133
27133
  }>, "strip", z.ZodTypeAny, {
27134
27134
  id: string;
27135
- type: EntityType.PrimitiveValue;
27135
+ type: EntityType.LiteralValue;
27136
27136
  name: import("@src/definitions").PrimitiveTypes.Enum;
27137
27137
  valueAsType: {
27138
27138
  id: string;
@@ -27166,7 +27166,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
27166
27166
  value: string;
27167
27167
  }, {
27168
27168
  id: string;
27169
- type: EntityType.PrimitiveValue;
27169
+ type: EntityType.LiteralValue;
27170
27170
  name: import("@src/definitions").PrimitiveTypes.Enum;
27171
27171
  valueAsType: {
27172
27172
  id: string;
@@ -27202,7 +27202,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
27202
27202
  id: z.ZodString;
27203
27203
  version: z.ZodNumber;
27204
27204
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
27205
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
27205
+ type: z.ZodLiteral<EntityType.LiteralValue>;
27206
27206
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
27207
27207
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
27208
27208
  id: z.ZodString;
@@ -27537,7 +27537,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
27537
27537
  autogeneration: z.ZodNull;
27538
27538
  }>, "strip", z.ZodTypeAny, {
27539
27539
  id: string;
27540
- type: EntityType.PrimitiveValue;
27540
+ type: EntityType.LiteralValue;
27541
27541
  name: import("@src/definitions").PrimitiveTypes.File;
27542
27542
  valueAsType: {
27543
27543
  id: string;
@@ -27571,7 +27571,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
27571
27571
  value: string;
27572
27572
  }, {
27573
27573
  id: string;
27574
- type: EntityType.PrimitiveValue;
27574
+ type: EntityType.LiteralValue;
27575
27575
  name: import("@src/definitions").PrimitiveTypes.File;
27576
27576
  valueAsType: {
27577
27577
  id: string;
@@ -27607,7 +27607,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
27607
27607
  id: z.ZodString;
27608
27608
  version: z.ZodNumber;
27609
27609
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
27610
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
27610
+ type: z.ZodLiteral<EntityType.LiteralValue>;
27611
27611
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
27612
27612
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
27613
27613
  id: z.ZodString;
@@ -27958,7 +27958,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
27958
27958
  }>>;
27959
27959
  }>, "strip", z.ZodTypeAny, {
27960
27960
  id: string;
27961
- type: EntityType.PrimitiveValue;
27961
+ type: EntityType.LiteralValue;
27962
27962
  name: import("@src/definitions").PrimitiveTypes.UUID;
27963
27963
  valueAsType: {
27964
27964
  id: string;
@@ -27996,7 +27996,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
27996
27996
  value: string;
27997
27997
  }, {
27998
27998
  id: string;
27999
- type: EntityType.PrimitiveValue;
27999
+ type: EntityType.LiteralValue;
28000
28000
  name: import("@src/definitions").PrimitiveTypes.UUID;
28001
28001
  valueAsType: {
28002
28002
  id: string;
@@ -28036,7 +28036,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
28036
28036
  id: z.ZodString;
28037
28037
  version: z.ZodNumber;
28038
28038
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
28039
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
28039
+ type: z.ZodLiteral<EntityType.LiteralValue>;
28040
28040
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
28041
28041
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
28042
28042
  id: z.ZodString;
@@ -28386,7 +28386,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
28386
28386
  autogeneration: z.ZodNull;
28387
28387
  }>, "strip", z.ZodTypeAny, {
28388
28388
  id: string;
28389
- type: EntityType.PrimitiveValue;
28389
+ type: EntityType.LiteralValue;
28390
28390
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
28391
28391
  valueAsType: {
28392
28392
  id: string;
@@ -28425,7 +28425,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
28425
28425
  };
28426
28426
  }, {
28427
28427
  id: string;
28428
- type: EntityType.PrimitiveValue;
28428
+ type: EntityType.LiteralValue;
28429
28429
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
28430
28430
  valueAsType: {
28431
28431
  id: string;
@@ -28466,7 +28466,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
28466
28466
  id: z.ZodString;
28467
28467
  version: z.ZodNumber;
28468
28468
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
28469
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
28469
+ type: z.ZodLiteral<EntityType.LiteralValue>;
28470
28470
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
28471
28471
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
28472
28472
  id: z.ZodString;
@@ -28816,7 +28816,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
28816
28816
  autogeneration: z.ZodNull;
28817
28817
  }>, "strip", z.ZodTypeAny, {
28818
28818
  id: string;
28819
- type: EntityType.PrimitiveValue;
28819
+ type: EntityType.LiteralValue;
28820
28820
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
28821
28821
  valueAsType: {
28822
28822
  id: string;
@@ -28855,7 +28855,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
28855
28855
  };
28856
28856
  }, {
28857
28857
  id: string;
28858
- type: EntityType.PrimitiveValue;
28858
+ type: EntityType.LiteralValue;
28859
28859
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
28860
28860
  valueAsType: {
28861
28861
  id: string;
@@ -29111,7 +29111,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29111
29111
  };
29112
29112
  defaultValue: {
29113
29113
  id: string;
29114
- type: EntityType.PrimitiveValue;
29114
+ type: EntityType.LiteralValue;
29115
29115
  name: import("@src/definitions").PrimitiveTypes.String;
29116
29116
  valueAsType: {
29117
29117
  id: string;
@@ -29157,7 +29157,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29157
29157
  value: string;
29158
29158
  } | {
29159
29159
  id: string;
29160
- type: EntityType.PrimitiveValue;
29160
+ type: EntityType.LiteralValue;
29161
29161
  name: import("@src/definitions").PrimitiveTypes.Number;
29162
29162
  valueAsType: {
29163
29163
  id: string;
@@ -29203,7 +29203,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29203
29203
  value: number;
29204
29204
  } | {
29205
29205
  id: string;
29206
- type: EntityType.PrimitiveValue;
29206
+ type: EntityType.LiteralValue;
29207
29207
  name: import("@src/definitions").PrimitiveTypes.Boolean;
29208
29208
  valueAsType: {
29209
29209
  id: string;
@@ -29241,7 +29241,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29241
29241
  value: boolean;
29242
29242
  } | {
29243
29243
  id: string;
29244
- type: EntityType.PrimitiveValue;
29244
+ type: EntityType.LiteralValue;
29245
29245
  name: import("@src/definitions").PrimitiveTypes.Null;
29246
29246
  valueAsType: {
29247
29247
  id: string;
@@ -29275,7 +29275,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29275
29275
  value: null;
29276
29276
  } | {
29277
29277
  id: string;
29278
- type: EntityType.PrimitiveValue;
29278
+ type: EntityType.LiteralValue;
29279
29279
  name: import("@src/definitions").PrimitiveTypes.Date;
29280
29280
  valueAsType: {
29281
29281
  id: string;
@@ -29325,7 +29325,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29325
29325
  value: Date;
29326
29326
  } | {
29327
29327
  id: string;
29328
- type: EntityType.PrimitiveValue;
29328
+ type: EntityType.LiteralValue;
29329
29329
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
29330
29330
  valueAsType: {
29331
29331
  id: string;
@@ -29359,7 +29359,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29359
29359
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
29360
29360
  } | {
29361
29361
  id: string;
29362
- type: EntityType.PrimitiveValue;
29362
+ type: EntityType.LiteralValue;
29363
29363
  name: import("@src/definitions").PrimitiveTypes.Enum;
29364
29364
  valueAsType: {
29365
29365
  id: string;
@@ -29393,7 +29393,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29393
29393
  value: string;
29394
29394
  } | {
29395
29395
  id: string;
29396
- type: EntityType.PrimitiveValue;
29396
+ type: EntityType.LiteralValue;
29397
29397
  name: import("@src/definitions").PrimitiveTypes.File;
29398
29398
  valueAsType: {
29399
29399
  id: string;
@@ -29427,7 +29427,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29427
29427
  value: string;
29428
29428
  } | {
29429
29429
  id: string;
29430
- type: EntityType.PrimitiveValue;
29430
+ type: EntityType.LiteralValue;
29431
29431
  name: import("@src/definitions").PrimitiveTypes.UUID;
29432
29432
  valueAsType: {
29433
29433
  id: string;
@@ -29465,7 +29465,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29465
29465
  value: string;
29466
29466
  } | {
29467
29467
  id: string;
29468
- type: EntityType.PrimitiveValue;
29468
+ type: EntityType.LiteralValue;
29469
29469
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
29470
29470
  valueAsType: {
29471
29471
  id: string;
@@ -29504,7 +29504,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29504
29504
  };
29505
29505
  } | {
29506
29506
  id: string;
29507
- type: EntityType.PrimitiveValue;
29507
+ type: EntityType.LiteralValue;
29508
29508
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
29509
29509
  valueAsType: {
29510
29510
  id: string;
@@ -29604,7 +29604,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29604
29604
  };
29605
29605
  defaultValue: {
29606
29606
  id: string;
29607
- type: EntityType.PrimitiveValue;
29607
+ type: EntityType.LiteralValue;
29608
29608
  name: import("@src/definitions").PrimitiveTypes.String;
29609
29609
  valueAsType: {
29610
29610
  id: string;
@@ -29650,7 +29650,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29650
29650
  value: string;
29651
29651
  } | {
29652
29652
  id: string;
29653
- type: EntityType.PrimitiveValue;
29653
+ type: EntityType.LiteralValue;
29654
29654
  name: import("@src/definitions").PrimitiveTypes.Number;
29655
29655
  valueAsType: {
29656
29656
  id: string;
@@ -29696,7 +29696,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29696
29696
  value: number;
29697
29697
  } | {
29698
29698
  id: string;
29699
- type: EntityType.PrimitiveValue;
29699
+ type: EntityType.LiteralValue;
29700
29700
  name: import("@src/definitions").PrimitiveTypes.Boolean;
29701
29701
  valueAsType: {
29702
29702
  id: string;
@@ -29734,7 +29734,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29734
29734
  value: boolean;
29735
29735
  } | {
29736
29736
  id: string;
29737
- type: EntityType.PrimitiveValue;
29737
+ type: EntityType.LiteralValue;
29738
29738
  name: import("@src/definitions").PrimitiveTypes.Null;
29739
29739
  valueAsType: {
29740
29740
  id: string;
@@ -29768,7 +29768,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29768
29768
  value: null;
29769
29769
  } | {
29770
29770
  id: string;
29771
- type: EntityType.PrimitiveValue;
29771
+ type: EntityType.LiteralValue;
29772
29772
  name: import("@src/definitions").PrimitiveTypes.Date;
29773
29773
  valueAsType: {
29774
29774
  id: string;
@@ -29818,7 +29818,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29818
29818
  value: Date;
29819
29819
  } | {
29820
29820
  id: string;
29821
- type: EntityType.PrimitiveValue;
29821
+ type: EntityType.LiteralValue;
29822
29822
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
29823
29823
  valueAsType: {
29824
29824
  id: string;
@@ -29852,7 +29852,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29852
29852
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
29853
29853
  } | {
29854
29854
  id: string;
29855
- type: EntityType.PrimitiveValue;
29855
+ type: EntityType.LiteralValue;
29856
29856
  name: import("@src/definitions").PrimitiveTypes.Enum;
29857
29857
  valueAsType: {
29858
29858
  id: string;
@@ -29886,7 +29886,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29886
29886
  value: string;
29887
29887
  } | {
29888
29888
  id: string;
29889
- type: EntityType.PrimitiveValue;
29889
+ type: EntityType.LiteralValue;
29890
29890
  name: import("@src/definitions").PrimitiveTypes.File;
29891
29891
  valueAsType: {
29892
29892
  id: string;
@@ -29920,7 +29920,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29920
29920
  value: string;
29921
29921
  } | {
29922
29922
  id: string;
29923
- type: EntityType.PrimitiveValue;
29923
+ type: EntityType.LiteralValue;
29924
29924
  name: import("@src/definitions").PrimitiveTypes.UUID;
29925
29925
  valueAsType: {
29926
29926
  id: string;
@@ -29958,7 +29958,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29958
29958
  value: string;
29959
29959
  } | {
29960
29960
  id: string;
29961
- type: EntityType.PrimitiveValue;
29961
+ type: EntityType.LiteralValue;
29962
29962
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
29963
29963
  valueAsType: {
29964
29964
  id: string;
@@ -29997,7 +29997,7 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
29997
29997
  };
29998
29998
  } | {
29999
29999
  id: string;
30000
- type: EntityType.PrimitiveValue;
30000
+ type: EntityType.LiteralValue;
30001
30001
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
30002
30002
  valueAsType: {
30003
30003
  id: string;
@@ -30064,7 +30064,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
30064
30064
  id: z.ZodString;
30065
30065
  version: z.ZodNumber;
30066
30066
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
30067
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
30067
+ type: z.ZodLiteral<EntityType.LiteralValue>;
30068
30068
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
30069
30069
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
30070
30070
  id: z.ZodString;
@@ -30465,7 +30465,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
30465
30465
  }>]>>;
30466
30466
  }>, "strip", z.ZodTypeAny, {
30467
30467
  id: string;
30468
- type: EntityType.PrimitiveValue;
30468
+ type: EntityType.LiteralValue;
30469
30469
  name: import("@src/definitions").PrimitiveTypes.String;
30470
30470
  valueAsType: {
30471
30471
  id: string;
@@ -30511,7 +30511,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
30511
30511
  value: string;
30512
30512
  }, {
30513
30513
  id: string;
30514
- type: EntityType.PrimitiveValue;
30514
+ type: EntityType.LiteralValue;
30515
30515
  name: import("@src/definitions").PrimitiveTypes.String;
30516
30516
  valueAsType: {
30517
30517
  id: string;
@@ -30559,7 +30559,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
30559
30559
  id: z.ZodString;
30560
30560
  version: z.ZodNumber;
30561
30561
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
30562
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
30562
+ type: z.ZodLiteral<EntityType.LiteralValue>;
30563
30563
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
30564
30564
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
30565
30565
  id: z.ZodString;
@@ -30960,7 +30960,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
30960
30960
  }>]>>;
30961
30961
  }>, "strip", z.ZodTypeAny, {
30962
30962
  id: string;
30963
- type: EntityType.PrimitiveValue;
30963
+ type: EntityType.LiteralValue;
30964
30964
  name: import("@src/definitions").PrimitiveTypes.Number;
30965
30965
  valueAsType: {
30966
30966
  id: string;
@@ -31006,7 +31006,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
31006
31006
  value: number;
31007
31007
  }, {
31008
31008
  id: string;
31009
- type: EntityType.PrimitiveValue;
31009
+ type: EntityType.LiteralValue;
31010
31010
  name: import("@src/definitions").PrimitiveTypes.Number;
31011
31011
  valueAsType: {
31012
31012
  id: string;
@@ -31054,7 +31054,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
31054
31054
  id: z.ZodString;
31055
31055
  version: z.ZodNumber;
31056
31056
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
31057
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
31057
+ type: z.ZodLiteral<EntityType.LiteralValue>;
31058
31058
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
31059
31059
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
31060
31060
  id: z.ZodString;
@@ -31408,7 +31408,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
31408
31408
  }>>;
31409
31409
  }>, "strip", z.ZodTypeAny, {
31410
31410
  id: string;
31411
- type: EntityType.PrimitiveValue;
31411
+ type: EntityType.LiteralValue;
31412
31412
  name: import("@src/definitions").PrimitiveTypes.Boolean;
31413
31413
  valueAsType: {
31414
31414
  id: string;
@@ -31446,7 +31446,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
31446
31446
  value: boolean;
31447
31447
  }, {
31448
31448
  id: string;
31449
- type: EntityType.PrimitiveValue;
31449
+ type: EntityType.LiteralValue;
31450
31450
  name: import("@src/definitions").PrimitiveTypes.Boolean;
31451
31451
  valueAsType: {
31452
31452
  id: string;
@@ -31486,7 +31486,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
31486
31486
  id: z.ZodString;
31487
31487
  version: z.ZodNumber;
31488
31488
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
31489
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
31489
+ type: z.ZodLiteral<EntityType.LiteralValue>;
31490
31490
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
31491
31491
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
31492
31492
  id: z.ZodString;
@@ -31821,7 +31821,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
31821
31821
  autogeneration: z.ZodNull;
31822
31822
  }>, "strip", z.ZodTypeAny, {
31823
31823
  id: string;
31824
- type: EntityType.PrimitiveValue;
31824
+ type: EntityType.LiteralValue;
31825
31825
  name: import("@src/definitions").PrimitiveTypes.Null;
31826
31826
  valueAsType: {
31827
31827
  id: string;
@@ -31855,7 +31855,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
31855
31855
  value: null;
31856
31856
  }, {
31857
31857
  id: string;
31858
- type: EntityType.PrimitiveValue;
31858
+ type: EntityType.LiteralValue;
31859
31859
  name: import("@src/definitions").PrimitiveTypes.Null;
31860
31860
  valueAsType: {
31861
31861
  id: string;
@@ -31891,7 +31891,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
31891
31891
  id: z.ZodString;
31892
31892
  version: z.ZodNumber;
31893
31893
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
31894
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
31894
+ type: z.ZodLiteral<EntityType.LiteralValue>;
31895
31895
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
31896
31896
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
31897
31897
  id: z.ZodString;
@@ -32308,7 +32308,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
32308
32308
  }>]>>;
32309
32309
  }>, "strip", z.ZodTypeAny, {
32310
32310
  id: string;
32311
- type: EntityType.PrimitiveValue;
32311
+ type: EntityType.LiteralValue;
32312
32312
  name: import("@src/definitions").PrimitiveTypes.Date;
32313
32313
  valueAsType: {
32314
32314
  id: string;
@@ -32358,7 +32358,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
32358
32358
  value: Date;
32359
32359
  }, {
32360
32360
  id: string;
32361
- type: EntityType.PrimitiveValue;
32361
+ type: EntityType.LiteralValue;
32362
32362
  name: import("@src/definitions").PrimitiveTypes.Date;
32363
32363
  valueAsType: {
32364
32364
  id: string;
@@ -32410,7 +32410,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
32410
32410
  id: z.ZodString;
32411
32411
  version: z.ZodNumber;
32412
32412
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
32413
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
32413
+ type: z.ZodLiteral<EntityType.LiteralValue>;
32414
32414
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
32415
32415
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
32416
32416
  id: z.ZodString;
@@ -32745,7 +32745,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
32745
32745
  autogeneration: z.ZodNull;
32746
32746
  }>, "strip", z.ZodTypeAny, {
32747
32747
  id: string;
32748
- type: EntityType.PrimitiveValue;
32748
+ type: EntityType.LiteralValue;
32749
32749
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
32750
32750
  valueAsType: {
32751
32751
  id: string;
@@ -32779,7 +32779,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
32779
32779
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
32780
32780
  }, {
32781
32781
  id: string;
32782
- type: EntityType.PrimitiveValue;
32782
+ type: EntityType.LiteralValue;
32783
32783
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
32784
32784
  valueAsType: {
32785
32785
  id: string;
@@ -32815,7 +32815,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
32815
32815
  id: z.ZodString;
32816
32816
  version: z.ZodNumber;
32817
32817
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
32818
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
32818
+ type: z.ZodLiteral<EntityType.LiteralValue>;
32819
32819
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
32820
32820
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
32821
32821
  id: z.ZodString;
@@ -33150,7 +33150,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
33150
33150
  autogeneration: z.ZodNull;
33151
33151
  }>, "strip", z.ZodTypeAny, {
33152
33152
  id: string;
33153
- type: EntityType.PrimitiveValue;
33153
+ type: EntityType.LiteralValue;
33154
33154
  name: import("@src/definitions").PrimitiveTypes.Enum;
33155
33155
  valueAsType: {
33156
33156
  id: string;
@@ -33184,7 +33184,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
33184
33184
  value: string;
33185
33185
  }, {
33186
33186
  id: string;
33187
- type: EntityType.PrimitiveValue;
33187
+ type: EntityType.LiteralValue;
33188
33188
  name: import("@src/definitions").PrimitiveTypes.Enum;
33189
33189
  valueAsType: {
33190
33190
  id: string;
@@ -33220,7 +33220,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
33220
33220
  id: z.ZodString;
33221
33221
  version: z.ZodNumber;
33222
33222
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
33223
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
33223
+ type: z.ZodLiteral<EntityType.LiteralValue>;
33224
33224
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
33225
33225
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
33226
33226
  id: z.ZodString;
@@ -33555,7 +33555,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
33555
33555
  autogeneration: z.ZodNull;
33556
33556
  }>, "strip", z.ZodTypeAny, {
33557
33557
  id: string;
33558
- type: EntityType.PrimitiveValue;
33558
+ type: EntityType.LiteralValue;
33559
33559
  name: import("@src/definitions").PrimitiveTypes.File;
33560
33560
  valueAsType: {
33561
33561
  id: string;
@@ -33589,7 +33589,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
33589
33589
  value: string;
33590
33590
  }, {
33591
33591
  id: string;
33592
- type: EntityType.PrimitiveValue;
33592
+ type: EntityType.LiteralValue;
33593
33593
  name: import("@src/definitions").PrimitiveTypes.File;
33594
33594
  valueAsType: {
33595
33595
  id: string;
@@ -33625,7 +33625,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
33625
33625
  id: z.ZodString;
33626
33626
  version: z.ZodNumber;
33627
33627
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
33628
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
33628
+ type: z.ZodLiteral<EntityType.LiteralValue>;
33629
33629
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
33630
33630
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
33631
33631
  id: z.ZodString;
@@ -33976,7 +33976,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
33976
33976
  }>>;
33977
33977
  }>, "strip", z.ZodTypeAny, {
33978
33978
  id: string;
33979
- type: EntityType.PrimitiveValue;
33979
+ type: EntityType.LiteralValue;
33980
33980
  name: import("@src/definitions").PrimitiveTypes.UUID;
33981
33981
  valueAsType: {
33982
33982
  id: string;
@@ -34014,7 +34014,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
34014
34014
  value: string;
34015
34015
  }, {
34016
34016
  id: string;
34017
- type: EntityType.PrimitiveValue;
34017
+ type: EntityType.LiteralValue;
34018
34018
  name: import("@src/definitions").PrimitiveTypes.UUID;
34019
34019
  valueAsType: {
34020
34020
  id: string;
@@ -34054,7 +34054,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
34054
34054
  id: z.ZodString;
34055
34055
  version: z.ZodNumber;
34056
34056
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
34057
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
34057
+ type: z.ZodLiteral<EntityType.LiteralValue>;
34058
34058
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
34059
34059
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
34060
34060
  id: z.ZodString;
@@ -34404,7 +34404,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
34404
34404
  autogeneration: z.ZodNull;
34405
34405
  }>, "strip", z.ZodTypeAny, {
34406
34406
  id: string;
34407
- type: EntityType.PrimitiveValue;
34407
+ type: EntityType.LiteralValue;
34408
34408
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
34409
34409
  valueAsType: {
34410
34410
  id: string;
@@ -34443,7 +34443,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
34443
34443
  };
34444
34444
  }, {
34445
34445
  id: string;
34446
- type: EntityType.PrimitiveValue;
34446
+ type: EntityType.LiteralValue;
34447
34447
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
34448
34448
  valueAsType: {
34449
34449
  id: string;
@@ -34484,7 +34484,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
34484
34484
  id: z.ZodString;
34485
34485
  version: z.ZodNumber;
34486
34486
  name: z.ZodEnum<[import("@src/definitions").PrimitiveTypes.String, import("@src/definitions").PrimitiveTypes.Number, import("@src/definitions").PrimitiveTypes.Boolean, import("@src/definitions").PrimitiveTypes.Null, import("@src/definitions").PrimitiveTypes.Date, import("@src/definitions").PrimitiveTypes.KeyValue, import("@src/definitions").PrimitiveTypes.Enum, import("@src/definitions").PrimitiveTypes.File, import("@src/definitions").PrimitiveTypes.UUID, import("@src/definitions").PrimitiveTypes.EntityTemplate, import("@src/definitions").PrimitiveTypes.ActionDescriptor]>;
34487
- type: z.ZodLiteral<EntityType.PrimitiveValue>;
34487
+ type: z.ZodLiteral<EntityType.LiteralValue>;
34488
34488
  value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>>]>, "many">]>]>;
34489
34489
  valueAsType: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
34490
34490
  id: z.ZodString;
@@ -34834,7 +34834,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
34834
34834
  autogeneration: z.ZodNull;
34835
34835
  }>, "strip", z.ZodTypeAny, {
34836
34836
  id: string;
34837
- type: EntityType.PrimitiveValue;
34837
+ type: EntityType.LiteralValue;
34838
34838
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
34839
34839
  valueAsType: {
34840
34840
  id: string;
@@ -34873,7 +34873,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
34873
34873
  };
34874
34874
  }, {
34875
34875
  id: string;
34876
- type: EntityType.PrimitiveValue;
34876
+ type: EntityType.LiteralValue;
34877
34877
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
34878
34878
  valueAsType: {
34879
34879
  id: string;
@@ -35132,7 +35132,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35132
35132
  version: number;
35133
35133
  defaultValue: {
35134
35134
  id: string;
35135
- type: EntityType.PrimitiveValue;
35135
+ type: EntityType.LiteralValue;
35136
35136
  name: import("@src/definitions").PrimitiveTypes.String;
35137
35137
  valueAsType: {
35138
35138
  id: string;
@@ -35178,7 +35178,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35178
35178
  value: string;
35179
35179
  } | {
35180
35180
  id: string;
35181
- type: EntityType.PrimitiveValue;
35181
+ type: EntityType.LiteralValue;
35182
35182
  name: import("@src/definitions").PrimitiveTypes.Number;
35183
35183
  valueAsType: {
35184
35184
  id: string;
@@ -35224,7 +35224,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35224
35224
  value: number;
35225
35225
  } | {
35226
35226
  id: string;
35227
- type: EntityType.PrimitiveValue;
35227
+ type: EntityType.LiteralValue;
35228
35228
  name: import("@src/definitions").PrimitiveTypes.Boolean;
35229
35229
  valueAsType: {
35230
35230
  id: string;
@@ -35262,7 +35262,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35262
35262
  value: boolean;
35263
35263
  } | {
35264
35264
  id: string;
35265
- type: EntityType.PrimitiveValue;
35265
+ type: EntityType.LiteralValue;
35266
35266
  name: import("@src/definitions").PrimitiveTypes.Null;
35267
35267
  valueAsType: {
35268
35268
  id: string;
@@ -35296,7 +35296,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35296
35296
  value: null;
35297
35297
  } | {
35298
35298
  id: string;
35299
- type: EntityType.PrimitiveValue;
35299
+ type: EntityType.LiteralValue;
35300
35300
  name: import("@src/definitions").PrimitiveTypes.Date;
35301
35301
  valueAsType: {
35302
35302
  id: string;
@@ -35346,7 +35346,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35346
35346
  value: Date;
35347
35347
  } | {
35348
35348
  id: string;
35349
- type: EntityType.PrimitiveValue;
35349
+ type: EntityType.LiteralValue;
35350
35350
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
35351
35351
  valueAsType: {
35352
35352
  id: string;
@@ -35380,7 +35380,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35380
35380
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
35381
35381
  } | {
35382
35382
  id: string;
35383
- type: EntityType.PrimitiveValue;
35383
+ type: EntityType.LiteralValue;
35384
35384
  name: import("@src/definitions").PrimitiveTypes.Enum;
35385
35385
  valueAsType: {
35386
35386
  id: string;
@@ -35414,7 +35414,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35414
35414
  value: string;
35415
35415
  } | {
35416
35416
  id: string;
35417
- type: EntityType.PrimitiveValue;
35417
+ type: EntityType.LiteralValue;
35418
35418
  name: import("@src/definitions").PrimitiveTypes.File;
35419
35419
  valueAsType: {
35420
35420
  id: string;
@@ -35448,7 +35448,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35448
35448
  value: string;
35449
35449
  } | {
35450
35450
  id: string;
35451
- type: EntityType.PrimitiveValue;
35451
+ type: EntityType.LiteralValue;
35452
35452
  name: import("@src/definitions").PrimitiveTypes.UUID;
35453
35453
  valueAsType: {
35454
35454
  id: string;
@@ -35486,7 +35486,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35486
35486
  value: string;
35487
35487
  } | {
35488
35488
  id: string;
35489
- type: EntityType.PrimitiveValue;
35489
+ type: EntityType.LiteralValue;
35490
35490
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
35491
35491
  valueAsType: {
35492
35492
  id: string;
@@ -35525,7 +35525,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35525
35525
  };
35526
35526
  } | {
35527
35527
  id: string;
35528
- type: EntityType.PrimitiveValue;
35528
+ type: EntityType.LiteralValue;
35529
35529
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
35530
35530
  valueAsType: {
35531
35531
  id: string;
@@ -35631,7 +35631,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35631
35631
  version: number;
35632
35632
  defaultValue: {
35633
35633
  id: string;
35634
- type: EntityType.PrimitiveValue;
35634
+ type: EntityType.LiteralValue;
35635
35635
  name: import("@src/definitions").PrimitiveTypes.String;
35636
35636
  valueAsType: {
35637
35637
  id: string;
@@ -35677,7 +35677,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35677
35677
  value: string;
35678
35678
  } | {
35679
35679
  id: string;
35680
- type: EntityType.PrimitiveValue;
35680
+ type: EntityType.LiteralValue;
35681
35681
  name: import("@src/definitions").PrimitiveTypes.Number;
35682
35682
  valueAsType: {
35683
35683
  id: string;
@@ -35723,7 +35723,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35723
35723
  value: number;
35724
35724
  } | {
35725
35725
  id: string;
35726
- type: EntityType.PrimitiveValue;
35726
+ type: EntityType.LiteralValue;
35727
35727
  name: import("@src/definitions").PrimitiveTypes.Boolean;
35728
35728
  valueAsType: {
35729
35729
  id: string;
@@ -35761,7 +35761,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35761
35761
  value: boolean;
35762
35762
  } | {
35763
35763
  id: string;
35764
- type: EntityType.PrimitiveValue;
35764
+ type: EntityType.LiteralValue;
35765
35765
  name: import("@src/definitions").PrimitiveTypes.Null;
35766
35766
  valueAsType: {
35767
35767
  id: string;
@@ -35795,7 +35795,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35795
35795
  value: null;
35796
35796
  } | {
35797
35797
  id: string;
35798
- type: EntityType.PrimitiveValue;
35798
+ type: EntityType.LiteralValue;
35799
35799
  name: import("@src/definitions").PrimitiveTypes.Date;
35800
35800
  valueAsType: {
35801
35801
  id: string;
@@ -35845,7 +35845,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35845
35845
  value: Date;
35846
35846
  } | {
35847
35847
  id: string;
35848
- type: EntityType.PrimitiveValue;
35848
+ type: EntityType.LiteralValue;
35849
35849
  name: import("@src/definitions").PrimitiveTypes.KeyValue;
35850
35850
  valueAsType: {
35851
35851
  id: string;
@@ -35879,7 +35879,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35879
35879
  value: string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | (string | number | boolean | Date | Record<string, string | number | boolean | Date | null> | null)[] | null;
35880
35880
  } | {
35881
35881
  id: string;
35882
- type: EntityType.PrimitiveValue;
35882
+ type: EntityType.LiteralValue;
35883
35883
  name: import("@src/definitions").PrimitiveTypes.Enum;
35884
35884
  valueAsType: {
35885
35885
  id: string;
@@ -35913,7 +35913,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35913
35913
  value: string;
35914
35914
  } | {
35915
35915
  id: string;
35916
- type: EntityType.PrimitiveValue;
35916
+ type: EntityType.LiteralValue;
35917
35917
  name: import("@src/definitions").PrimitiveTypes.File;
35918
35918
  valueAsType: {
35919
35919
  id: string;
@@ -35947,7 +35947,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35947
35947
  value: string;
35948
35948
  } | {
35949
35949
  id: string;
35950
- type: EntityType.PrimitiveValue;
35950
+ type: EntityType.LiteralValue;
35951
35951
  name: import("@src/definitions").PrimitiveTypes.UUID;
35952
35952
  valueAsType: {
35953
35953
  id: string;
@@ -35985,7 +35985,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
35985
35985
  value: string;
35986
35986
  } | {
35987
35987
  id: string;
35988
- type: EntityType.PrimitiveValue;
35988
+ type: EntityType.LiteralValue;
35989
35989
  name: import("@src/definitions").PrimitiveTypes.EntityTemplate;
35990
35990
  valueAsType: {
35991
35991
  id: string;
@@ -36024,7 +36024,7 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
36024
36024
  };
36025
36025
  } | {
36026
36026
  id: string;
36027
- type: EntityType.PrimitiveValue;
36027
+ type: EntityType.LiteralValue;
36028
36028
  name: import("@src/definitions").PrimitiveTypes.ActionDescriptor;
36029
36029
  valueAsType: {
36030
36030
  id: string;