@elyx-code/project-logic-tree 0.0.6451 → 0.0.6453

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -507,6 +507,7 @@ export declare class ArgumentDeclarationState extends VersionedState implements
507
507
  getDataType(_changeSet?: ChangeSet | null): DataTypeState | null;
508
508
  setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): ArgumentDeclarationState;
509
509
  removeDataType(): ArgumentDeclarationState;
510
+ syncWithImplementation(changeSet?: ChangeSet | null): IChangeSet<ArgumentDeclarationState>;
510
511
  }
511
512
 
512
513
  export declare type ArgumentDeclarationTypesUnion = IArgumentDeclaration | IArgumentDeclarationTransfer | IArgumentDeclarationShallowTransfer | IArgumentDeclarationGenerationTarget;
@@ -784,9 +785,15 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
784
785
  };
785
786
  pathParameters: {
786
787
  id: string;
788
+ dataType: {
789
+ id: string;
790
+ };
787
791
  };
788
792
  queryParameters: {
789
793
  id: string;
794
+ dataType: {
795
+ id: string;
796
+ };
790
797
  };
791
798
  body: {
792
799
  id: string;
@@ -14618,6 +14625,7 @@ export declare class ReturnDeclarationState extends VersionedState implements IR
14618
14625
  getCounterparts(): ReturnDeclarationState[];
14619
14626
  inferDataTypeFromCounterparts(changeSet?: ChangeSet | null): ReturnDeclarationState;
14620
14627
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
14628
+ syncWithImplementation(changeSet?: ChangeSet | null): IChangeSet<ReturnDeclarationState>;
14621
14629
  }
14622
14630
 
14623
14631
  export declare type ReturnDeclarationTypesUnion = IReturnDeclaration | IReturnDeclarationTransfer | IReturnDeclarationShallowTransfer | IReturnDeclarationGenerationTarget;