Skip to content

Commit

Permalink
feat: replace programIDs with diagramID (CV3-364) (#452)
Browse files Browse the repository at this point in the history
<!-- You can erase any parts of this template not applicable to your Pull Request. -->

**Fixes or implements CV3-364**

### Brief description. What is this change?

<!-- Build up some context for your teammates on the changes made here and potential tradeoffs made and/or highlight any topics for discussion -->
  • Loading branch information
viniciusdacal committed Sep 19, 2023
1 parent 9058e8f commit 1e8dab0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/base-types/src/models/version/prototype.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { BaseCommand, Intent, PrototypeModel, Slot } from '../base';

export interface PrototypeStackFrame<Command extends BaseCommand = BaseCommand> {
nodeID?: Nullable<string>;
programID: string;
diagramID: string;

storage?: AnyRecord;
commands?: Command[];
Expand Down
2 changes: 1 addition & 1 deletion packages/base-types/src/runtimeLogs/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface PathReference {
/** A reference to a flow (frame) on the canvas. */
export interface FlowReference {
name: string | null;
programID: string;
diagramID: string;
}

/** A common interface for representing a before & after change of a value. */
Expand Down

0 comments on commit 1e8dab0

Please sign in to comment.