@elyx-code/project-logic-tree 0.0.6422 → 0.0.6423

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
@@ -816,6 +816,17 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
816
816
  id: string;
817
817
  };
818
818
  };
819
+ methods: {
820
+ save: {
821
+ id: BuiltInFunctionIds;
822
+ };
823
+ update: {
824
+ id: BuiltInFunctionIds;
825
+ };
826
+ delete: {
827
+ id: BuiltInFunctionIds;
828
+ };
829
+ };
819
830
  };
820
831
  BUILT_IN_RELATIONAL_DATABASE_ENTITY: {
821
832
  id: BaseEntityNames;
@@ -1494,6 +1505,7 @@ export declare type BuiltInElementTypesUnion = BuiltInElement | BuiltInElementTr
1494
1505
  export declare enum BuiltInFunctionIds {
1495
1506
  DeletePersistedEntity = "base-delete-persisted-entity",
1496
1507
  SavePersistedEntity = "base-save-persisted-entity",
1508
+ UpdatePersistedEntity = "base-update-persisted-entity",
1497
1509
  AbortExecution = "base-abort-execution"
1498
1510
  }
1499
1511
 
@@ -2562,6 +2574,7 @@ export declare const DEFAULT_MODULE_IDS: {
2562
2574
  SEARCH_NODE_IMPLEMENTATION: string;
2563
2575
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__ABORT_EXECUTION: string;
2564
2576
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__SAVE_PERSISTED_ENTITY: string;
2577
+ BUILT_IN_FUNCTION_IMPLEMENTATIONS__UPDATE_PERSISTED_ENTITY: string;
2565
2578
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__DELETE_PERSISTED_ENTITY: string;
2566
2579
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__HTTP_REQUEST: string;
2567
2580
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__VALIDATE_ENTITY: string;