File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,6 +60,11 @@ <h1><a href="index.html" class="link">Architect Scripting</a></h1>
6060
6161 <section>
6262 <article class="readme"><h2>Change Log</h2>
63+ <h1>0.64.2</h1>
64+ <h4>Bug Fixes</h4>
65+ <ul>
66+ <li>We made internal stability and memory management improvements to the Architect Scripting network value cache.</li>
67+ </ul>
6368<h1>0.64.1</h1>
6469<h4>Improvements</h4>
6570<ul>
Original file line number Diff line number Diff line change @@ -12111,6 +12111,8 @@ <h5 class="subsection-title">Properties:</h5>
1211112111 <th>Type</th>
1211212112
1211312113
12114+ <th>Attributes</th>
12115+
1211412116
1211512117
1211612118
@@ -12136,6 +12138,12 @@ <h5 class="subsection-title">Properties:</h5>
1213612138 </td>
1213712139
1213812140
12141+ <td class="attributes">
12142+
12143+
12144+
12145+ </td>
12146+
1213912147
1214012148
1214112149
@@ -12159,6 +12167,14 @@ <h5 class="subsection-title">Properties:</h5>
1215912167 </td>
1216012168
1216112169
12170+ <td class="attributes">
12171+
12172+ <optional><br>
12173+
12174+
12175+
12176+ </td>
12177+
1216212178
1216312179
1216412180
Original file line number Diff line number Diff line change @@ -2972,11 +2972,11 @@ declare type NameAndIdType = {
29722972/**
29732973 * The type definition for stub flow creation information
29742974 * @property division - The name of the division to create the stub flow
2975- * @property defaultLanguage - The default language for the stub flow
2975+ * @property [ defaultLanguage] - The default language for the stub flow
29762976 */
29772977declare type StubCreationInfoType = {
29782978 division: string;
2979- defaultLanguage: string;
2979+ defaultLanguage? : string;
29802980};
29812981
29822982/**
You can’t perform that action at this time.
0 commit comments