@superblocksteam/shared 0.9175.0 → 0.9177.0
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/package.json +1 -1
- package/src/types/page/event.ts +3 -3
package/package.json
CHANGED
package/src/types/page/event.ts
CHANGED
|
@@ -138,13 +138,13 @@ export type ValidStepDef =
|
|
|
138
138
|
| {
|
|
139
139
|
id: string;
|
|
140
140
|
type: TriggerStepType.SET_STATE_VAR;
|
|
141
|
-
state: SelectedStateVarProps;
|
|
142
|
-
value: string;
|
|
141
|
+
state: SelectedStateVarProps; // TODO: this should be optional
|
|
142
|
+
value: string; // TODO: this should be optional
|
|
143
143
|
}
|
|
144
144
|
| {
|
|
145
145
|
id: string;
|
|
146
146
|
type: TriggerStepType.RESET_STATE_VAR;
|
|
147
|
-
state: SelectedStateVarProps;
|
|
147
|
+
state: SelectedStateVarProps; // TODO: this should be optional
|
|
148
148
|
}
|
|
149
149
|
| {
|
|
150
150
|
id: string;
|