@elyx-code/project-logic-tree 0.0.6983 → 0.0.6985

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
@@ -11967,7 +11967,7 @@ export declare enum BaseValueDescriptorIds {
11967
11967
  removeTest(options: YieldOptions & {
11968
11968
  skipValidate?: boolean;
11969
11969
  }): Promise<ITest>;
11970
- copyEntities(entities: UserManagedElementShallowTransfer[], options?: YieldOptions): Promise<ChangeSet>;
11970
+ copyEntities(payload: ICanvasCopyPayload, options?: YieldOptions): Promise<ChangeSet>;
11971
11971
  resolveInitialChildrenPositions(parent: CanvasEntityState | null, children: CanvasEntityState[], changeSet: ChangeSet | null): CanvasEntityState[];
11972
11972
  publish(): Promise<void>;
11973
11973
  loadGivenPublication(publicationId: string): Promise<IPublication>;
@@ -18177,6 +18177,11 @@ export declare enum BaseValueDescriptorIds {
18177
18177
  calledByEntry: (EntryPointEntity | EntryPointEntityTransfer | EntryPointEntityReference)[];
18178
18178
  }
18179
18179
 
18180
+ export declare interface ICanvasCopyPayload {
18181
+ elyx_entities: UserManagedElementShallowTransfer[];
18182
+ elyx_project_id: string;
18183
+ }
18184
+
18180
18185
  export declare interface IChangeSet<TSelf extends {
18181
18186
  id: string;
18182
18187
  type: EntityType;
@@ -18647,7 +18652,7 @@ export declare enum BaseValueDescriptorIds {
18647
18652
  removeTest(options: YieldOptions & {
18648
18653
  skipValidate?: boolean;
18649
18654
  }): Promise<ITest>;
18650
- copyEntities(entities: UserManagedElementShallowTransfer[], options?: YieldOptions): Promise<ChangeSet>;
18655
+ copyEntities(payload: ICanvasCopyPayload, options: YieldOptions): Promise<ChangeSet>;
18651
18656
  resolveInitialChildrenPositions(parent: CanvasEntityState | null, children: CanvasEntityState[], changeSet: ChangeSet | null): CanvasEntityState[];
18652
18657
  publish(): Promise<void>;
18653
18658
  loadGivenPublication(publicationId: string): Promise<IPublication>;