Skip to content

Commit

Permalink
Merge pull request #27 from bettyblocks/button-components-to-tsx-TMPL…
Browse files Browse the repository at this point in the history
…T-1493

fix: add endpointId to page parameters
  • Loading branch information
benjamin-rocks authored Jun 22, 2022
2 parents a46a80c + 757f497 commit 911da15
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/prefabs/types/interactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@ export interface ParameterOptionWithComponentRef {
}

export interface ParameterOptionWithPageId {
name: string,
pageId: string,
id: string,
paramters?: Record<string, string>
name?: string;
pageId: string;
id?: string,
endpointId?: string,
parameters?: {name: string, value: string}[]
}

export type PrefabInteractionParameter =
Expand Down

0 comments on commit 911da15

Please sign in to comment.