@elyx-code/project-logic-tree 0.0.6352 → 0.0.6354

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
@@ -20,6 +20,7 @@ import { PostgresqlOperatorExpr } from 'sql-parser-cst';
20
20
  import { Program } from 'sql-parser-cst';
21
21
  import { ProjectPublicationEventName } from '@elyx-code/definitions';
22
22
  import { PublicationStatus } from '@elyx-code/definitions';
23
+ import { PublicationStepStatus } from '@elyx-code/definitions';
23
24
  import { PublishingSequenceStep } from '@elyx-code/definitions';
24
25
  import { SafeParseReturnType } from 'zod';
25
26
  import { SelectClause } from 'sql-parser-cst';
@@ -1168,6 +1169,14 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
1168
1169
  };
1169
1170
  };
1170
1171
  };
1172
+ empty: {
1173
+ id: StandaloneOperatorTypes;
1174
+ inputs: {
1175
+ leftHand: {
1176
+ id: string;
1177
+ };
1178
+ };
1179
+ };
1171
1180
  };
1172
1181
  "global-event": {
1173
1182
  GLOBAL_EVENT_PROJECT_PUBLICATION_COMPLETED: {
@@ -2651,6 +2660,12 @@ export declare type ElementTypesUnion = ProjectTypesUnion | InstalledProjectType
2651
2660
 
2652
2661
  export declare function emitSideEffects(changeSet: ChangeSet): ChangeSet;
2653
2662
 
2663
+ export declare const emptyCondition: IActionDescriptorTransfer;
2664
+
2665
+ export declare const emptyConditionArgument: IValueDescriptorTransfer;
2666
+
2667
+ export declare const emptyConditionRef: IActionDescriptorReference;
2668
+
2654
2669
  export declare const endpointBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
2655
2670
 
2656
2671
  export declare const endpointBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
@@ -12635,16 +12650,6 @@ export declare class PublicationRun implements IPublication {
12635
12650
  initResources(): Promise<void>;
12636
12651
  setSteps(steps: IDeploymentStepDefinition[], emittedAt: string): void;
12637
12652
  addStep(step: IDeploymentStepDefinition, emittedAt: string): void;
12638
- /**
12639
- * Reorder this.steps so that:
12640
- * - each step appears after all of its dependencies,
12641
- * - unrelated steps keep their relative order (by old index),
12642
- * - and indexes are reassigned consecutively (0,1,2…).
12643
- *
12644
- * Throws if there is a cycle in the dependency graph.
12645
- */
12646
- orderSteps(): void;
12647
- getNextParallelizableSteps(): PublicationStep[];
12648
12653
  onUpdate(message: ILiveMessageDTO): void;
12649
12654
  }
12650
12655
 
@@ -12656,10 +12661,10 @@ export declare class PublicationStep implements IDeploymentStepDefinition<Infras
12656
12661
  dependency: string[];
12657
12662
  lastEvent: ProjectPublicationEventName | null;
12658
12663
  lasEventTimestamp: string | null;
12659
- status: PublicationStatus;
12664
+ status: PublicationStepStatus;
12660
12665
  publicationRun: PublicationRun;
12661
12666
  resource: ExplicitInfrastructureResource | ImplicitGlobalInfrastructureResource;
12662
- constructor(stepType: PublishingSequenceStep, id: string, resourceType: InfrastructureResourceType, initialStatus: PublicationStatus, dependency: string[], index: number, lasEventTimestamp: string, publicationRun: PublicationRun, resource: ExplicitInfrastructureResource | ImplicitGlobalInfrastructureResource);
12667
+ constructor(stepType: PublishingSequenceStep, id: string, resourceType: InfrastructureResourceType, initialStatus: PublicationStepStatus, dependency: string[], index: number, lasEventTimestamp: string, publicationRun: PublicationRun, resource: ExplicitInfrastructureResource | ImplicitGlobalInfrastructureResource);
12663
12668
  toJSON(): IDeploymentStepDefinition;
12664
12669
  update(step: IDeploymentStepDefinition): Promise<void>;
12665
12670
  }