Skip to content

Commit 69d497f

Browse files
committed
fix(Assistant V1): Moved disabled field from CreateDialogNode to DialogNode
1 parent f38099c commit 69d497f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Scripts/Services/Assistant/v1/Models/CreateDialogNode.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,6 @@ public enum EventNameEnum
176176
[fsProperty("context")]
177177
public object Context { get; set; }
178178
/// <summary>
179-
/// Whether to consider the dialog node during runtime evaluation. Set to `true` to ignore the
180-
/// dialog node.
181-
/// </summary>
182-
[fsProperty("disabled")]
183-
public bool Disabled { get; set; }
184-
/// <summary>
185179
/// The metadata for the dialog node.
186180
/// </summary>
187181
/// <value>The metadata for the dialog node.</value>

Scripts/Services/Assistant/v1/Models/DialogNode.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,11 @@ public enum EventNameEnum
213213
[fsProperty("title")]
214214
public string Title { get; set; }
215215
/// <summary>
216+
/// For internal use only.
217+
/// </summary>
218+
[fsProperty("disabled")]
219+
public bool Disabled { get; set; }
220+
/// <summary>
216221
/// The location in the dialog context where output is stored.
217222
/// </summary>
218223
/// <value>The location in the dialog context where output is stored.</value>

0 commit comments

Comments
 (0)