@elyx-code/project-logic-tree 0.0.6693 → 0.0.6695

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 (4) hide show
  1. package/dist/index.cjs +173 -175
  2. package/dist/index.d.ts +29 -2
  3. package/dist/index.js +122955 -122918
  4. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -989,12 +989,24 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
989
989
  properties: {
990
990
  method: {
991
991
  id: string;
992
+ dataType: {
993
+ id: string;
994
+ };
995
+ defaultValue: {
996
+ id: string;
997
+ };
992
998
  };
993
999
  path: {
994
1000
  id: string;
1001
+ dataType: {
1002
+ id: string;
1003
+ };
995
1004
  };
996
1005
  cors: {
997
1006
  id: string;
1007
+ dataType: {
1008
+ id: string;
1009
+ };
998
1010
  };
999
1011
  };
1000
1012
  methods: {
@@ -1003,21 +1015,36 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
1003
1015
  inputs: {
1004
1016
  headers: {
1005
1017
  id: string;
1018
+ dataType: {
1019
+ id: string;
1020
+ };
1021
+ defaultValue: {
1022
+ id: string;
1023
+ };
1006
1024
  };
1007
1025
  pathParameters: {
1008
1026
  id: string;
1009
1027
  dataType: {
1010
1028
  id: string;
1011
1029
  };
1030
+ defaultValue: {
1031
+ id: string;
1032
+ };
1012
1033
  };
1013
1034
  queryParameters: {
1014
1035
  id: string;
1015
1036
  dataType: {
1016
1037
  id: string;
1017
1038
  };
1039
+ defaultValue: {
1040
+ id: string;
1041
+ };
1018
1042
  };
1019
1043
  body: {
1020
1044
  id: string;
1045
+ dataType: {
1046
+ id: string;
1047
+ };
1021
1048
  };
1022
1049
  };
1023
1050
  dataType: {
@@ -11756,7 +11783,7 @@ export declare class DefinitionEntityState extends UserManagedVersionedState imp
11756
11783
  removeAllPropertiesImplement(changeSet?: ChangeSet | null): DefinitionEntityState;
11757
11784
  }
11758
11785
 
11759
- export declare function definitionEntityToZodSchema(entity: IDefinitionEntity): z.ZodObject<any>;
11786
+ export declare function definitionEntityToZodSchema(entity: DefinitionEntityState, asCodeNameKeys?: boolean): z.ZodObject<any>;
11760
11787
 
11761
11788
  export declare type DefinitionEntityTypesUnion = IDefinitionEntity | IDefinitionEntityTransfer | IDefinitionEntityShallowTransfer | IDefinitionEntityGenerationTarget;
11762
11789
 
@@ -29689,7 +29716,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
29689
29716
  implementAsInputMap(changeSet: (ChangeSet | null) | undefined, newParent: PassThroughCallableEntityState | TerminationEntityState, newId?: string): InputMapState;
29690
29717
  }
29691
29718
 
29692
- export declare function propertyToZodSchema(property: IProperty): z.ZodType<any>;
29719
+ export declare function propertyToZodSchema(property: PropertyState): z.ZodType<any>;
29693
29720
 
29694
29721
  export declare type PropertyTypesUnion = IProperty | IPropertyTransfer | IPropertyShallowTransfer | IPropertyGenerationTarget;
29695
29722