diff --git a/docs/api/DuetAPI.ObjectModel.Probe.html b/docs/api/DuetAPI.ObjectModel.Probe.html index 5d5a9101e..71f889aef 100644 --- a/docs/api/DuetAPI.ObjectModel.Probe.html +++ b/docs/api/DuetAPI.ObjectModel.Probe.html @@ -1791,7 +1791,7 @@
Property Value

TravelSpeed

-

Travel speed when probing multiple points (in mm/s)

+

Travel speed when probing multiple points (in mm/min)

Declaration
diff --git a/docs/api/DuetAPI.ObjectModel.RestorePoint.html b/docs/api/DuetAPI.ObjectModel.RestorePoint.html index a0e6dcf7b..60c3d5bf3 100644 --- a/docs/api/DuetAPI.ObjectModel.RestorePoint.html +++ b/docs/api/DuetAPI.ObjectModel.RestorePoint.html @@ -1593,30 +1593,6 @@
Property Value
- -

SpindleSpeeds

-

The spindle RPMs that were set, negative if anticlockwise direction

-
-
-
Declaration
-
-
public ModelCollection<float> SpindleSpeeds { get; }
-
-
Property Value
- - - - - - - - - - - - - -
TypeDescription
ModelCollection<System.Single>

ToolNumber

The tool number that was active

diff --git a/docs/api/DuetAPIClient.BaseCommandConnection.html b/docs/api/DuetAPIClient.BaseCommandConnection.html index 1d392b168..ac5a2ffc3 100644 --- a/docs/api/DuetAPIClient.BaseCommandConnection.html +++ b/docs/api/DuetAPIClient.BaseCommandConnection.html @@ -2514,6 +2514,78 @@
SuperUser
+ +

InvalidateChannel(CodeChannel, CancellationToken)

+

Invalidate all pending codes and files on the given channel

+
+
+
Declaration
+
+
public Task InvalidateChannel(CodeChannel channel, CancellationToken cancellationToken = default(CancellationToken))
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
CodeChannelchannel

Code channel where everything is supposed to be invalidated

+
System.Threading.CancellationTokencancellationToken

Optional cancellation token

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task

Asynchronous task

+
+
Remarks
+

This does NOT cancel the current code being executed by RRF!

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
System.Net.Sockets.SocketException

Command could not be processed

+
+
See Also
+
+
SuperUser
+

LockMachineModel(CancellationToken)

Lock the machine model for read/write access. diff --git a/docs/api/DuetAPIClient.CommandConnection.html b/docs/api/DuetAPIClient.CommandConnection.html index b10ad6d27..14b949d97 100644 --- a/docs/api/DuetAPIClient.CommandConnection.html +++ b/docs/api/DuetAPIClient.CommandConnection.html @@ -1423,6 +1423,9 @@

Inherited Members
BaseCommandConnection.InstallSystemPackage(String, CancellationToken)
+
+ BaseCommandConnection.InvalidateChannel(CodeChannel, CancellationToken) +
BaseCommandConnection.LockMachineModel(CancellationToken)
diff --git a/docs/api/DuetAPIClient.InterceptConnection.html b/docs/api/DuetAPIClient.InterceptConnection.html index 79a2b87b3..603e054f4 100644 --- a/docs/api/DuetAPIClient.InterceptConnection.html +++ b/docs/api/DuetAPIClient.InterceptConnection.html @@ -1423,6 +1423,9 @@
Inherited Members
BaseCommandConnection.InstallSystemPackage(String, CancellationToken)
+
+ BaseCommandConnection.InvalidateChannel(CodeChannel, CancellationToken) +
BaseCommandConnection.LockMachineModel(CancellationToken)
diff --git a/docs/api/DuetControlServer.SPI.Channel.Manager.html b/docs/api/DuetControlServer.SPI.Channel.Manager.html index 9c3bc6faa..c2a5c06b0 100644 --- a/docs/api/DuetControlServer.SPI.Channel.Manager.html +++ b/docs/api/DuetControlServer.SPI.Channel.Manager.html @@ -1513,14 +1513,32 @@
Returns
-

GetIdleChannel()

+

GetIdleChannel(CodeChannel)

Get a channel that is currently idle in order to process a priority code

Declaration
-
public async Task<CodeChannel> GetIdleChannel()
+
public async Task<CodeChannel> GetIdleChannel(CodeChannel preferredChannel)
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
CodeChannelpreferredChannel

Preferred code channel

+
Returns
diff --git a/docs/api/DuetControlServer.SPI.Interface.html b/docs/api/DuetControlServer.SPI.Interface.html index be3714c60..03d9bb3d1 100644 --- a/docs/api/DuetControlServer.SPI.Interface.html +++ b/docs/api/DuetControlServer.SPI.Interface.html @@ -1715,14 +1715,32 @@
Returns
-

GetIdleChannel()

+

GetIdleChannel(CodeChannel)

Get a channel that is currently idle in order to process a priority code

Declaration
-
public static Task<CodeChannel> GetIdleChannel()
+
public static Task<CodeChannel> GetIdleChannel(CodeChannel preferredChannel)
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
CodeChannelpreferredChannel

Preferred code channel

+
Returns
diff --git a/docs/api/DuetWebServer.Controllers.MachineController.html b/docs/api/DuetWebServer.Controllers.MachineController.html index 5f505e5c4..7a396b770 100644 --- a/docs/api/DuetWebServer.Controllers.MachineController.html +++ b/docs/api/DuetWebServer.Controllers.MachineController.html @@ -2484,6 +2484,42 @@
Returns
(500) Generic error occurred (502) Incompatible DCS version (503) DCS is unavailable

+ + + +
+ +

Model()

+

GET /machine/model

+
    +
  • and - +GET /machine/status +Retrieve the full object model as JSON.
  • +
+
+
+
Declaration
+
+
[HttpGet("model")]
+[HttpGet("status")]
+public async Task<IActionResult> Model()
+
+
Returns
+ + + + + + + + + + + @@ -2639,37 +2675,6 @@
Returns
(500) Generic error occurred (502) Incompatible DCS version (503) DCS is unavailable

- - - -
TypeDescription
System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.IActionResult>

HTTP status code: +(200) Object model as application/json +(500) Generic error +(502) Incompatible DCS version +(503) DCS is unavailable

- -

Status()

-

GET /machine/status -Retrieve the full object model as JSON.

-
-
-
Declaration
-
-
[HttpGet("status")]
-public async Task<IActionResult> Status()
-
-
Returns
- - - - - - - - - - - diff --git a/docs/manifest.json b/docs/manifest.json index 6368f9dd4..140894256 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1,6 +1,6 @@ { "homepages": [], - "source_base_path": "C:/Users/ch-ha/Source/repos/DuetSoftwareFramework/src/Documentation", + "source_base_path": "C:/Users/ch-ha/source/repos/Duet3D/DuetSoftwareFramework-stable/src/Documentation", "xrefmap": "xrefmap.yml", "files": [ { @@ -12,7 +12,7 @@ "hash": "2rTeevhq6X4Favmmc5AAggPhblcNjJXyJbNAPKtE7nc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -24,7 +24,7 @@ "hash": "lCScCS5ZrnNHQdZb9dKWAm2Oqu6WPLl6xEaylBe7GC0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -36,7 +36,7 @@ "hash": "pnhcxx2IBHZWecaS1TUnZBFM2/lTuzuvHzgpbjIp9jg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -48,7 +48,7 @@ "hash": "VjjVRU0ma9RCFWKdocXhWZ86V3WlRDYxPEVUHyOdsmc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -60,7 +60,7 @@ "hash": "PTKYCp043f7lKanyH1Q5HVTuIA8eNAZ/8BxCWkGSBNU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -72,7 +72,7 @@ "hash": "BnQCXz/2gCrsgywR6Jn+JjCeSwzM9dS83rX8Helft1o=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -84,7 +84,7 @@ "hash": "kv7iJj4Q0ht86qViELNdZfp82Th5S6qqNp85aTrOayM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -96,7 +96,7 @@ "hash": "aLBg8glUekaQCZRYUecB1qw8lXNOS3Ph+FSROvLKZXE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -108,7 +108,7 @@ "hash": "NgGvlIFWogHOafxEEVvh0kzanAj+wWmjbxlTgTP432Q=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -120,7 +120,7 @@ "hash": "D0kn5nXKS+R73vHd7kkgDf+tjwetfKQ4XbtSfwZ4za8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -132,7 +132,7 @@ "hash": "8UnSUzHNfX5GU3Yb7FEfQ51xVLCy2Jv6yy9lAFNI/Q0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -144,7 +144,7 @@ "hash": "KBEHImhmJob7yaFoi/ZvH9uOWQLE22VNNjCh2Dt/NCE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -156,7 +156,7 @@ "hash": "PmSFh2P72k1QZUteuFN3PM15L20bmaezqVYf+7jgkGM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -168,7 +168,7 @@ "hash": "SApotdQ36D2TW5MnWaxX96iY9/bIgVxedshOhtpE5Yc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -180,7 +180,7 @@ "hash": "v5V2lm5RWITDUsVeYVLU8fIy5IPBIARJpv/vsfHyKMQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -192,7 +192,7 @@ "hash": "AH8B+VYwjqtScTn8GltxXt5x6jjumR3n8g06z+Ekxx4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -204,7 +204,7 @@ "hash": "LGu0csfXNUBYAELHJTqBDSTsR9g4wSgOil/QgPP7x7Y=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -216,7 +216,7 @@ "hash": "rwlM36PhOFiUEMPPC/K6zlUIcDtNCADUcf/+tlIk5KU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -228,7 +228,7 @@ "hash": "eI3Pmcfcpt82L6zZ2ctnmqotXBgGomejuXkzfO1vw7s=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -240,7 +240,7 @@ "hash": "tlMktIE1HiGkhIsmQMcbbg7wFiSjIGRUtn1OBMpT5S8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -252,7 +252,7 @@ "hash": "iPXIFFUnz96HR0OUdIKypLscGV0eObP/+BGvIliwuu4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -264,7 +264,7 @@ "hash": "FN2IROa0xbdwa9yMcRFZkDXn9KFmcTNmeraz/PFPhEk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -276,7 +276,7 @@ "hash": "N4WCqmdKwvn/s3DrreNia5iNlSPQCF0y1BLhsqQIeJA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -288,7 +288,7 @@ "hash": "1vBEuOGgpTeWleLM81qsweMp/OYbyimdcrhwApgbAdM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -300,7 +300,7 @@ "hash": "abSy6KrZp+DMrLvx43cVakHoFu0e3rtsu90eXriYA0E=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -312,7 +312,7 @@ "hash": "f5H3Naz3ioydgcbUZQzQMs64RmsK5VPdcDnSFKCVi2I=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -324,7 +324,7 @@ "hash": "mL1B3dsNlDPzl3srXqs2VLjZjZ2Dx1MfwpaaIkGxEoM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -336,7 +336,7 @@ "hash": "aOb+u6Jrp4F9r1mdHxVYmfInMqZ/yvnqD+m3UhlcbJU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -348,7 +348,7 @@ "hash": "BZrtnUTXZhFze8UvMem9FuyP4F8H52zEK76VZl24JK8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -360,7 +360,7 @@ "hash": "84Zgps5yqYGIdXP5kYlzXMC62xfGev7kRti6daZT1Yc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -372,7 +372,7 @@ "hash": "JK2AuGmkClgAs42b2Zd83G5YoOGjQcP+wr6JqTAg8eo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -384,7 +384,7 @@ "hash": "m4eG1MeFJRn/yA048nrWLUd0cUE8gqSU2RUF1zpyv8w=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -396,7 +396,7 @@ "hash": "rPQ7PRhQy6hYOL/ho3F//rfNwH9k/ygVjfNVffmoiE4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -408,7 +408,7 @@ "hash": "iE9LEJ3rQiZy8wr0TwKPXF8qzSc9W+XLM8MVZNy1kbk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -420,7 +420,7 @@ "hash": "YIbD56IfsYJyGA3dg8Z59nfWKkqP9zoRf79DEKEHBAA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -432,7 +432,7 @@ "hash": "qbVjF1gbYzfXjWEV3bx5v64vohTyhQ10arrKFVmRLaE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -444,7 +444,7 @@ "hash": "c0ohpAh85CYnL/RjTBRA+5HWJtdUvaKNKmAQOSzCwy0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -456,7 +456,7 @@ "hash": "5vyTqMSDJb61dCtl6gHhwr5NfpAGHUzcZVY+EjxudXs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -468,7 +468,7 @@ "hash": "lsLj1G8jFDuflSVHMHFFPJh5NgR8iq7SAG08te7ufqs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -480,7 +480,7 @@ "hash": "xOhWAeSM/9omsPVCEUHwSYR+RyXyekd0TtAzpC4RRNA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -492,7 +492,7 @@ "hash": "PgyfhxR3wEKGCm8cn/AeqdKD8BeMJ4t/s/ze7REkvcg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -504,7 +504,7 @@ "hash": "kwCtwMAgU+BiApr+abvtd0pJwNFVCFH0kuC8Hvefipg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -516,7 +516,7 @@ "hash": "aWH+sty/mZ4GtoWAp1TMtDc913rN/g9Y0eC5GZ0wy3g=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -528,7 +528,7 @@ "hash": "uApmwZmeAi7sZui+yBKPiZ05VGKlTaNLkT7nMaSCzjY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -540,7 +540,7 @@ "hash": "qM7rBchhC3Kg6KR2V4ASv1xE9gYr9nNrShXAriGzNHU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -552,7 +552,7 @@ "hash": "TGRqaHe1CSsQa/UtDRx6yFOKZfyIf4f49EbqlhjCkZY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -564,7 +564,7 @@ "hash": "MX8YAdzjbWtqfCHPVcuCBWay1KHOWjotfg0CTsH8wUM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -576,7 +576,7 @@ "hash": "MW0oGooXxGedeprr3VK/c/hI4IDvM2JsNubxVzpujes=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -588,7 +588,7 @@ "hash": "xcdzUHAxc0zVBCL2yj/QNMlxe09ZDYVldOR5T0a5J5U=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -600,7 +600,7 @@ "hash": "/0s2V4uB3sU+OKQv/UAwUF0lH6aVIEjtMhI+auJVfoM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -612,7 +612,7 @@ "hash": "6SiCJRU/Ow0TUjOJaHSqfBxdzv/NMqxEcqANjpWFHS0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -624,7 +624,7 @@ "hash": "25z/rs2+JgY6PHqJiDEv7skc4u7T4b9/g/M1n6QJkW0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -636,7 +636,7 @@ "hash": "fXJkWcJxqMhLzs+2rGbGsfXVMC+jN6NsYNJE8cIeoWc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -648,7 +648,7 @@ "hash": "7AafFOZGe1zWuSk5nLWC9UC6sdj2mjS3hocy6ZmkOmY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -660,7 +660,7 @@ "hash": "g/EcJGlq8MXl0+zK+/BFY7/2VJQIHHrWQW7JEciqbQM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -672,7 +672,7 @@ "hash": "fZqTHnPBptgc51RGgdztiFerPEjIbruVh09DlzjPrS0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -684,7 +684,7 @@ "hash": "jF7BXUq80szkfpqrMVZW235FnQssyKUhn3xQ/Uc1in4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -696,7 +696,7 @@ "hash": "7+bPz+D0kE92q3EpRmOizR89UayiPQcFxoKeKtxyH7U=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -708,7 +708,7 @@ "hash": "Cz7VyEo7FM6S+nb1WvhfeAIGp754t9Fian90wg//Gcs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -720,7 +720,7 @@ "hash": "1ppf6ay42nSNUFcEX/iJvNHFlRRHKrsMRIpnfh1xpAg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -732,7 +732,7 @@ "hash": "pG1Dr0+LWfIeQxGcZjBxcVc84zOm3j8Xvh/u6JNeCUs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -744,7 +744,7 @@ "hash": "LvmtBAQHNxjkIbQgtij5KlHeI0JrU1nVydi3lYf/yaU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -756,7 +756,7 @@ "hash": "bdTRNY+XmC3ZIVrzd/I++phGBB5kkid0WGMkkCwt6y4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -768,7 +768,7 @@ "hash": "/IBLMJEWhPdvPnwKiPTIT45qJzTWRBezYRaapgUfC/w=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -780,7 +780,7 @@ "hash": "XimNTczjGLaYX2x42CIaiE3xYtIuao6fevR8iLKD9M0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -792,7 +792,7 @@ "hash": "FH1eRpVnol2aOY4xIH6dhQpzclBOSwBSZveujf9O7Pc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -804,7 +804,7 @@ "hash": "NlJmvJFPZymG2M5m5/pyA52CRZK3WdcStDnJde37SCQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -816,7 +816,7 @@ "hash": "mps9HkxP4BKMyzMPagj34rBwRaidthYdyHyNjPkXHVQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -828,7 +828,7 @@ "hash": "dHLtckc0mYlExCqr76PnaF4x2By1h5My4oCUFI8LrVs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -840,7 +840,7 @@ "hash": "JhEMK217z2gduv5veblyocWkWgfr9blYhUB39WUrd+Q=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -852,7 +852,7 @@ "hash": "TzZ22Md2vVOUEjgpysIBaRa4TzH0hJTJrWnjiupdcRM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -864,7 +864,7 @@ "hash": "uPfYCLpbzqjiDgdrmV1ohAhrsDPY+7Ho7cOnfzGISxI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -876,7 +876,7 @@ "hash": "XKKUT1KYZ5hIibQHIefkQimRVz9kmewlnMKaofaO5UI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -888,7 +888,7 @@ "hash": "b8amPJu3atzRs7Jy3bdrJNzGJqctnrAnOoiL4CtlGDA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -900,7 +900,7 @@ "hash": "X74TYL3Q3gGTjqZqI4OsVKP/NhmOBCjCyRk0uswWWXo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -912,7 +912,7 @@ "hash": "J+yuLV3bq25wWt0WoeYlnvN0zZKv5mTTJcXkWgaeBG4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -924,7 +924,7 @@ "hash": "ppFDL7e+I+v02PQ2JTx+QLitoEBRdjrJMfnCoWKLSWI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -936,7 +936,7 @@ "hash": "ZyQlN6fU6CMnKUXdElEpTbljDu3fGMHqkV/vxZu2bcU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -948,7 +948,7 @@ "hash": "3AFZRapc12PA/hPNBdXP5oFWkLXzmwPwxeBTlEfZd2g=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -960,7 +960,7 @@ "hash": "Up6/UHDqXgXNw48nU6Xa2hg4z1N7bXU3y62iIzAjvJM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -972,7 +972,7 @@ "hash": "GccdtDOAjn6EFhNg6TjZVNxMcYM0YWYnR+kVdiCxGwY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -984,7 +984,7 @@ "hash": "GD6hGMAHdAHvUfHUnfgtPv0ztr8/RLu6F1uZiZ4k5xE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -996,7 +996,7 @@ "hash": "ppIguzYkEAwr1FpxvyPzHvEvdaFqCOJY0fy1jn5bgBE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1008,7 +1008,7 @@ "hash": "YBtMV/7hO1BFNpebrFBdF8gWSsdWpigYH4dAtROJBHA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1020,7 +1020,7 @@ "hash": "znj3m9UMWGeRDgjC9f8zru2N4ncrb9zN50gVE+io8e0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1032,7 +1032,7 @@ "hash": "a6xI88q/x+DxrogYTuH9W3E2Zr1XBOuMpjUsiMNR+eM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1044,7 +1044,7 @@ "hash": "EFH4u4iHnAXqVzLeDFwCeSJR9kq4lGJnc+v3VCQSHks=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1056,7 +1056,7 @@ "hash": "72Edls4dhJdWSSMFBGKbfzPzvLWRo+0jJ5k+LzUUO+s=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1068,7 +1068,7 @@ "hash": "cUNFYYoaSLp6PGJX6Q9hUKJE0Ex9IxRz70HjaJ/vmXQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1080,7 +1080,7 @@ "hash": "JjyfmVA6HwBYSkk5oic7pdJv4Brxxd4fOnlmwyYndD4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1092,7 +1092,7 @@ "hash": "IKCv0nIxP6dMCC3MtCbBe8BRhaS1+6Kjih3LKxC+MKM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1104,7 +1104,7 @@ "hash": "s4N30VH1SShBeypmgfvvs1mobmiqdDcvddwptzsXoVY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1116,7 +1116,7 @@ "hash": "cgcspaqBfN/pisGIBlfGUE+YZ3B1uFVexfcqz/g6fuM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1128,7 +1128,7 @@ "hash": "0cNpj7uvOslrv5xruXML3sOclePNHBfPv8XPvo9kHDc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1140,7 +1140,7 @@ "hash": "+pyVAU7IpAjZZXrb/aMQQDJ0hXbLW5Df5zrr41SgCOc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1152,7 +1152,7 @@ "hash": "Hb702IUg0019ERtyF6umm/UYwwrfdlxTgNSZWXqGCvg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1164,7 +1164,7 @@ "hash": "vt4RDiBdxqkG7zdawPqtn+h2s5QKoPQ5gj6BagTqy6w=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1176,7 +1176,7 @@ "hash": "SwQ8VvX3GF30i/P7UdcnsNczpW41pun1QN1MgMelwxA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1188,7 +1188,7 @@ "hash": "IgYht+2fJuloOBvbCHzluHYjdc99FCRXN7GYPaxZOU4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1200,7 +1200,7 @@ "hash": "rjORw5/D8dAt+/c/23Wa1v8hvDH2s6zjmoniXqfeAQQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1212,7 +1212,7 @@ "hash": "4qSbj5fjDVbSJ/iToHwFWzcmjx+RV8AOOujawuMcWFM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1224,7 +1224,7 @@ "hash": "ngZd7FMqAkiN1HbFOwQDx7rPiQro3RfCa1LBcfdtU1I=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1236,7 +1236,7 @@ "hash": "7rvs4O7Kq6P4IdMFMOiMLtrBG3vdC8Rb7mJavKEGaJc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1248,7 +1248,7 @@ "hash": "DjDcXveW2a7YQti/akz+/CCFeoJ8uDNlBvTHhzxCmxI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1260,7 +1260,7 @@ "hash": "15ySRvPGciJdnjuPG1gqsyZbxCCYNvCHIegMmvn3VXY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1272,7 +1272,7 @@ "hash": "KKzuoZSmjtD36uJcMw6D3kBC6xNOvXTEMDy36Ulk5es=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1284,7 +1284,7 @@ "hash": "XZwUBNYxzHAVAyMltt213dO9VXkUjNBzAZNp2pLrJOU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1296,7 +1296,7 @@ "hash": "H41bewMbHLbyk6iMzI4eGplDLBgrzMXkaZYzzHWsbI0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1308,7 +1308,7 @@ "hash": "ZOqjAeXzHpBcDMpBzxgrjI4rC/xb2wm8ywSozPPnBeE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1320,7 +1320,7 @@ "hash": "cJxbAYirHPZiBXZYtZSmmgkRk12FDWOBhbn67NsP24g=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1332,7 +1332,7 @@ "hash": "LmeuC+H2TBuxV8La3Ym7gwcuRxTvvSiUTwWSvBFKRTw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1344,7 +1344,7 @@ "hash": "gPwGsWp8XBDGKm8FRajVJhcuQDeaFhwIWPxVnXom1rI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1356,7 +1356,7 @@ "hash": "QS5xo+d+4z9jSD/wiIVqpuzlMMr4Jia8e/0Zr2fTmBU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1368,7 +1368,7 @@ "hash": "XLzFqVXiS+lPLST51SU4AxbmW/+gB9qCjIjb/13F+dE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1380,7 +1380,7 @@ "hash": "g4yTgSZWLVsxw4QWXBkCeYS40pIlXMxadqQdHozZy2g=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1392,7 +1392,7 @@ "hash": "MCHZLYJpPZlP2TaGZDl/2GahGPXBoUsRl4VAGio4xAU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1404,7 +1404,7 @@ "hash": "dRwWDNbyUY2VU7WWoIfRGFqi6In9HcVk1n1pDQ1W8FA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1416,7 +1416,7 @@ "hash": "wSe5SjyerGd1fLcv1BTBG0B591djeE6ayGtd0Co64tY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1428,7 +1428,7 @@ "hash": "BMEQyUqrWoN7Etgs6lq0/iTCvEQ6PGRPr0dsVCmDDxI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1440,7 +1440,7 @@ "hash": "4FGPuvdY0ey8r8qw/MGzHhknOth2vEDkW8kwYU7TxcM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1452,7 +1452,7 @@ "hash": "d3XurWPqd6Ri/CDJksgqieG/WK1NO6L9iT0UvO/ELNk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1464,7 +1464,7 @@ "hash": "zCHTLFu9K6hPOJx8j/6RWxg6+9GixrIuMWA0YxZBaRs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1476,7 +1476,7 @@ "hash": "3nTVYSTtH5vkQhjdzPoasiFLhA2msptse6W2ZtYqKck=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1488,7 +1488,7 @@ "hash": "1NrF4ZKUbR2IhAxc0WrT5fZPVH0Ig7DlsoeD9lU6Yic=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1500,7 +1500,7 @@ "hash": "LsEjWUe5/DjMu+nkWXK0LMdKx5NHY1Xg8w+BxJc1/+0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1512,7 +1512,7 @@ "hash": "rwMNUzyX6Bh3ZDRnM/ifnECrlJXkfaVE1gNYI6nlV9E=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1524,7 +1524,7 @@ "hash": "i/xDsPi44Bo7E3Us8qN5g0SpX8h9sNlbR+xgGOZqqcw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1536,7 +1536,7 @@ "hash": "kKGQj+ZSlCpX0brxKOgqUjrtjtBU3SVcDEMazqVCUtQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1548,7 +1548,7 @@ "hash": "Xn/Z/wNDhlIyMYdmpqb3oC/1YCQnDtYG1ICTq+2FQoo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1560,7 +1560,7 @@ "hash": "Vqr5qYRH8iNDBIProDJqX5npLpR4hUe52r7YsaDbJhQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1572,7 +1572,7 @@ "hash": "s5SBoj3GwgOGb/+L9R3/sz+HZKt0KUHrCN8BMlksZ44=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1584,7 +1584,7 @@ "hash": "G/cREF2l7CEmV4/ZHYxl9GTt2AePZDhZ96bUOVAKXCk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1596,7 +1596,7 @@ "hash": "RUoeX8dQM9usgHKrwf1TxOU9FdbvZ8pTrIUvRktk+7w=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1608,7 +1608,7 @@ "hash": "mlNXyRGoKKII/CEwvyysx9m7gsZJqmzqJfw8DwkgEdk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1620,7 +1620,7 @@ "hash": "KROAaKFWIhgm6IUxqRw0sav83SI7Thq39SXw6ACJAdY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1632,7 +1632,7 @@ "hash": "P1Wh3Q6xEqzrsbAs4bg345mGCvWyy/uthsnxvjyH3xA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1644,7 +1644,7 @@ "hash": "oAblVINdtU/yqiRHPfdNGXMOGo3o1v1yhFcRpHdgDIo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1656,7 +1656,7 @@ "hash": "NIel7jVNKysYI4qsN4FZdXGeR8d2iJLtLaSR8iuUjBg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1668,7 +1668,7 @@ "hash": "A1DKTCuah7h6+ZidZqPvzIAnjeCLpHDm7Vu2xGolQ/w=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1680,7 +1680,7 @@ "hash": "JWUXvnjmv18OgxuZP5/Y12qv+JIXA/zfY+NL8JbT9TQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1692,7 +1692,7 @@ "hash": "kvNMl9Knnm5vbR+OT2qQKmiYIP0vJ6/DjvB/0+jC3GA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1704,7 +1704,7 @@ "hash": "IPc2JM+OMb+ur14qiJyVFxt0+gL98yhY3wxBlwVoEi0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1716,7 +1716,7 @@ "hash": "8MIZrQgr/qEpKGtzfKxJ9Q1kTuSHaFA5lMDzatk/3Iw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1728,7 +1728,7 @@ "hash": "+wC0ZYXrbqlY33CrxYONs4uqZkvPJEkVB/UyrlhHnBc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1740,7 +1740,7 @@ "hash": "sNekOFOe00VSZ9x0ocMU9RvYHs8rU4quqzKGlvjOMsg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1752,7 +1752,7 @@ "hash": "Iy3VrP3SPqPL/nGoj6QmGRrsDNKYWKnXyIFagV/Oi7A=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1764,7 +1764,7 @@ "hash": "aapqmmhTmbFxzKPWm/yZpeZOsXGRustBHnFlW36Pm68=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1776,7 +1776,7 @@ "hash": "2gL2hjKO2iiaaFEJaSwN5P+ews5A0KGOY0WeDX7U66M=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1788,7 +1788,7 @@ "hash": "XAoN0/WMBiJMA4oAzdBqGI2ACQAiLRqT7owOHD2sfEY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1800,7 +1800,7 @@ "hash": "dhDKuEtbeETIK9/ZtIBnYpAF4imfbHH032fsYTF227w=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1812,7 +1812,7 @@ "hash": "crYR2c4fHP5RfSC73Se0O9L7ugMIpbmqJOXfNYuVbCI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1824,7 +1824,7 @@ "hash": "Io+NsC37Za6K5QWTaA/TxKKYl/rghAPeQ0IgxyFkFs0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1836,7 +1836,7 @@ "hash": "DQdbvV1NW31BUpunAgRzC+ekEutHMJEiHsmchjjhSHU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1848,7 +1848,7 @@ "hash": "j4gOKNNG6GyLNWE3iQXD+dtFdWGN5YNw0kuAxvDHJp8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1860,7 +1860,7 @@ "hash": "u2sCzdF0oUmSkr0NjAE6lQvIklmqp9Du5ZQicL5Gm3k=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1872,7 +1872,7 @@ "hash": "aPtNFBnXveyBy1xDkQxbrI5g5MuYlY4QqRD4Ps9OeGc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1884,7 +1884,7 @@ "hash": "JKLULlg12NclTESKQMO5ZSQGuzkKQ0OMU5vl68TwIPk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1896,7 +1896,7 @@ "hash": "OuteUHFQCQUP38/zM71rSP9PIE6HUqjXTmb/Fj3JRqQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1908,7 +1908,7 @@ "hash": "awUHMPNXaJeiF6Z2RxrbtVercicSYUFb46bVo4YAnjM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1920,7 +1920,7 @@ "hash": "6nsx9vGRhSSMjBFT/+RsZlJdz42ef/iLEwdvxGYO4oo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1932,7 +1932,7 @@ "hash": "Ur7vlbb5h6FBdnRLIxNRvlRG+t1r16mnUJ1QoX746ts=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1944,7 +1944,7 @@ "hash": "tvi4VXYwTHYq3JBffmt+WjkcX77c5M0kGk3yqlrw/SE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1956,7 +1956,7 @@ "hash": "TaukyKpv7CgqndmD/2Flsv5zasNrjpgSirBEl/Pa4zM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1968,7 +1968,7 @@ "hash": "3rCZ1PvMLZW0ZEFhS8+WuwGetjdVQPdt4UuTGYK3cCQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1980,7 +1980,7 @@ "hash": "5pqydCt4U6pexHVoofni4j+gbeoSJem73PrSdz6KOSY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1992,7 +1992,7 @@ "hash": "doArzbjkIyST0XxLhGkTfcorOd43AtOwdcTNfjVUZws=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2004,7 +2004,7 @@ "hash": "JxusyEUpX+xk/fbA/QemvGnBjCjXVdFVfAIeID7kkZE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2016,7 +2016,7 @@ "hash": "luCJuRs2ZK8x1V1r5Uxu8zCe9tPGLUfWVPEb1B+JbQY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2025,10 +2025,10 @@ "output": { ".html": { "relative_path": "api/DuetAPI.ObjectModel.Probe.html", - "hash": "DW+bu5eL4FiexcTC4LLLERCbe6CY7jMG5UHdasxy2Lo=" + "hash": "zQdUSfSaz24WOzyYkDLuz4HaAf4+eVaJcG26G1aJ0Vc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2040,7 +2040,7 @@ "hash": "fZ7lb8833J1m82SaUsKCVpYAOSvu9zmnL3+eDEUBWIA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2052,7 +2052,7 @@ "hash": "36GkWYXoKtxx0yhhs8HzGomgOF53dg2DXxzHHEbySno=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2064,7 +2064,7 @@ "hash": "qQQTxJVT5n4NIOtTHtDRqpmDXa6hVl7S5ImXZyV8zek=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2076,7 +2076,7 @@ "hash": "TjB1KC7EV6X8Y/f+BKEEZ3hQXG5/SzFeYl8jlqNH958=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2088,7 +2088,7 @@ "hash": "Cv/c3UVRkIYFBPaCCvyElzPKrHWo1alIEsA3D5TVQso=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2097,10 +2097,10 @@ "output": { ".html": { "relative_path": "api/DuetAPI.ObjectModel.RestorePoint.html", - "hash": "5Y2rAYf3a96ZYdmTAFzBkSQ2q5qEMt+UWk5RbzRbu1g=" + "hash": "noRc6oTTQFSPa7DesyGrCBkpy5clwtUVMEzt6+gBx38=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2112,7 +2112,7 @@ "hash": "Pydk/Klumj+Pa7jte9zo/ohj1Y+A7m3dvY5dcLpbDok=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2124,7 +2124,7 @@ "hash": "MPCB7SkOnygdWN/sHcjq8Zl6TBmR4GbtB0gFXKwPulo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2136,7 +2136,7 @@ "hash": "DATycnN6myIOdsRMa+DLvxeVOH2YePtjAKngi82rNMQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2148,7 +2148,7 @@ "hash": "BtWIz8DWNFL/Wy8YjIg7NLFZs7xBH+9QdNoBZBWXNDk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2160,7 +2160,7 @@ "hash": "aADVTrvMHyx49jweVcjO/h01HCTS2eMFFd5ZMR7zJdU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2172,7 +2172,7 @@ "hash": "/TZM2wQZdXLHGb9ObAl8FvyiSe1lJZkiKknmioBKiMQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2184,7 +2184,7 @@ "hash": "0RO/HZAuwuhjOTr1QRSWeuueFC0Cd3F29SeL0EzFRgc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2196,7 +2196,7 @@ "hash": "a2OFYm10PDxbNOgkrpnplHs+9VoUFXfiLIljRLgdG0Y=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2208,7 +2208,7 @@ "hash": "567cuSXCQ4uGWPnJM9lggVsRfkxmMr6AsJkhtQTE1m4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2220,7 +2220,7 @@ "hash": "EHR4EAHG81oafsxH2wmlsQkhob8lgv9j8Dog/NsZqX8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2232,7 +2232,7 @@ "hash": "uhE2Kjd3Mt0ZKl2HmuKklxNtf19OObg8HxTLOvRezHY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2244,7 +2244,7 @@ "hash": "+WA/0PrZwZwWoz41P0N9tJGSg5NJbhBfP/8P62MN+Jw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2256,7 +2256,7 @@ "hash": "4NAkrBAjGb27niETtXEpo/nWuzRha1AIusY4708DDCQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2268,7 +2268,7 @@ "hash": "7NLaXIsMzBewvAxKnNWI6dVwF6umwCnvia4nQ82iiQo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2280,7 +2280,7 @@ "hash": "1C1VKy3RxbUrUKljfhGh4lOgOc9hOlz4WcYi/EM2Anc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2292,7 +2292,7 @@ "hash": "UlWpT8uIC8EaX5LpLnKNVtM8Vc9Xb1hDaXtiKOilRgA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2304,7 +2304,7 @@ "hash": "Da8elUj58QVSUZhKu8mbJOjgS5XBkk+1xJ0tq5djG4w=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2316,7 +2316,7 @@ "hash": "X5chKQp/tHQ2n93OS8dNcuWDru7E+6iKD/0Tc/pCj9c=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2328,7 +2328,7 @@ "hash": "+HFev3njvg4s8IbsctoNoPxiX9UsWrMcezyNPSVW+AM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2340,7 +2340,7 @@ "hash": "aeUYDe3yXfc4bODeVI29T25iSGEQlc9GTB//WBneR3U=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2352,7 +2352,7 @@ "hash": "R6DUt/vJlnFhQ0ouGYpHN12eXGH5DpST+3B4QsQY1YU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2364,7 +2364,7 @@ "hash": "JwyC8Ht1DSeJ8Wr9NR9tSqdFMoV77SusVbjOX5BmnY8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2376,7 +2376,7 @@ "hash": "ASEgAOyODHXSuzo4DUg6tsBxaN812LrGcLeOZa1LFdk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2388,7 +2388,7 @@ "hash": "8XjHERru0FCAlHUFeRBT4S/G0UkXjC89SkeI8fsJnaM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2400,7 +2400,7 @@ "hash": "itPUStzas9yt2cfQplr7niqEYF7RjsqlZtqxJJSct3g=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2412,7 +2412,7 @@ "hash": "Mx424UozrorjLZDA2ekbS5nXkBaNx3CWgogdJW/O9Is=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2424,7 +2424,7 @@ "hash": "WmNY3pH0xftMmsYKxBO1kFbai2fa623jfgo90fKzWC0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2436,7 +2436,7 @@ "hash": "0zJaq+XWxDMEQscSENBEHaYS4iWx4i6X6xqBdjVIqtE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2448,7 +2448,7 @@ "hash": "XReCUnBoG2Roy8BknIiUPm6FsaBSj8K3A5sCOyr714o=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2460,7 +2460,7 @@ "hash": "PMbbAWS7s9KDQocST3PZs7W2cDI/VYJqkcn8AozdnGw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2472,7 +2472,7 @@ "hash": "pRXFBI56hLxQrQU7mQyJ9R6/Q0vmRqVDsnlUe9JFhI4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2484,7 +2484,7 @@ "hash": "rqwIDK5CJgCPocidlzaaUXTPk0BYtn96boIbmfnFFig=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2496,7 +2496,7 @@ "hash": "OZbu0KVD+nUe73VPSAv9Oi4erOLNS2D94vmOhKTuihQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2508,7 +2508,7 @@ "hash": "8EsFtxYi153z3hUE/8MhrDwiEOvNe8ZjozZuTLmxbAY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2520,7 +2520,7 @@ "hash": "HWyTMe20VwxyuTxGs/j/khjk194sYYYJp99pkfijqyQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2532,7 +2532,7 @@ "hash": "HVXFuXmmUWL5sMOs2uZVIX4dklYsbC1idgcndeNH+z0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2544,7 +2544,7 @@ "hash": "RV/r2xe0SO91PWSNOwA/tg9jNFNl0XRd02HiBKvXHtE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2556,7 +2556,7 @@ "hash": "ZP3OH5WCERuxAe5Ojsu5Jytn/zdIjs6+8dCpvHMU6Mo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2568,7 +2568,7 @@ "hash": "OxHJt1+L3j/MJpivGvD2TW4UmC0xbstMiyszC1YI8Es=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2580,7 +2580,7 @@ "hash": "WUWapKEfUWm1XIYSOX969EG+iUOPt3uptSQknJ1ItZ4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2592,7 +2592,7 @@ "hash": "XKh9yhWi243mCzr7tF4IyjJtF7MtBqJD201/3vG35cU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2601,10 +2601,10 @@ "output": { ".html": { "relative_path": "api/DuetAPIClient.BaseCommandConnection.html", - "hash": "Zd1wMwAyqJdAVOob6yMwSSvfq8f33cSuRj4vUjWzYsE=" + "hash": "7TDKdewuSuy7IWRqYjbTX/MRcfOMIJuQBNIQXQ6FGPk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2616,7 +2616,7 @@ "hash": "y05xlZ5RmfZNleiELN1j48KuKcGUEAnyuwIFQp+kkMI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2628,7 +2628,7 @@ "hash": "FmaIU5dv/J4ccZZ6/gXW6S/R4myE4TiyW7bYp5qUjEQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2637,10 +2637,10 @@ "output": { ".html": { "relative_path": "api/DuetAPIClient.CommandConnection.html", - "hash": "FywTxpeMfJAounVYRtQu5cLTtSNtcwH0hZylJSs88bE=" + "hash": "a6CiJFcH1iAv4g5MGAqa8OnoPdcoDDGfU9dKqh/UfyY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2652,7 +2652,7 @@ "hash": "B55wsh2qRTraa7+nd+Tc/hq4AyRHLjm83faHZQOzW7E=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2664,7 +2664,7 @@ "hash": "iA/yrMiRB9WrD1hDhyCpNYTUVPy6R/ekmvUNt0XnBL0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2676,7 +2676,7 @@ "hash": "KiGanSZMtzhVq8yGg7+1si3S6rzho2Yvgc0oMAOWEZU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2685,10 +2685,10 @@ "output": { ".html": { "relative_path": "api/DuetAPIClient.InterceptConnection.html", - "hash": "IH0KNZN0bJ7m5r9efpeHnTp4RJVhiZ3OrCLRTo7fT4k=" + "hash": "JSvXUx36wsvFOSNMOPDbDMSuepJXr5IVeD0xVKmQwAU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2700,7 +2700,7 @@ "hash": "pk8GRwvdDquAhURD/hwtrfZokZD/wbISF09cBD6+qnk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2712,7 +2712,7 @@ "hash": "RqcpMZf/AB9bTds1piqzztHzvAE7/CA8DOfxHmAFok4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2724,7 +2724,7 @@ "hash": "4wl5HNkQ++0SloATaaLCGHsdLwQ6H5tQk4OqyjmfkA4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2736,7 +2736,7 @@ "hash": "T0AQTZPd61QnvgwkXofRRNrSSXNNT34R+myaxySGSZE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2748,7 +2748,7 @@ "hash": "pTo23/2s5lkPcKSqPfkRzgOhiFjdfyQF0xzSrEeqlaY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2760,7 +2760,7 @@ "hash": "nwQZ2JIjPqa8qFZDObamlprxz76wyCuunAC7FhffGmE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2772,7 +2772,7 @@ "hash": "3FqlGBIwNCpqs5u7L5JThf2L9uX0aW3cxLGZYPP0efg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2784,7 +2784,7 @@ "hash": "8xu44K8zTuxpb07gPHolJ7vwlhtyHrIou6mW6bfD6IA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2796,7 +2796,7 @@ "hash": "ZBcjLdtBKE+/XNcF5EQUny2/xSFS62R0dbh+nPoO/2Y=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2808,7 +2808,7 @@ "hash": "qlYXlJTbhZtFJsUFCy0I10yUM8oOSLQ2oGJViRn2jS4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2820,7 +2820,7 @@ "hash": "4Ml/Y5x/NpYsfwtw+LjtPzn/5BBHD0Giz2wXfID3a8k=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2832,7 +2832,7 @@ "hash": "JQ1qnUX2r8vJzby1Gg9sSGdYr868vu244jtEavc3gK4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2844,7 +2844,7 @@ "hash": "mQRqzTLZXx64DpBU76mm0/4SRO+yc0rfaAUvSPV1xKE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2856,7 +2856,7 @@ "hash": "M8Ij9vcxLP4S1eSTNXlMtD/LCnfgPT6URgHPAukb79s=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2868,7 +2868,7 @@ "hash": "H4nqfsAWSt24XdSNDC6L+ILQNG61lTwWBJgcGX97JLs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2880,7 +2880,7 @@ "hash": "EPAvD74d3WDf9/NT4yTlbyo33v+AxnlSqaJRzWfK46c=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2892,7 +2892,7 @@ "hash": "+Ep6Qkqa578vrRwoWk9v948R2it0wkoP3W2zb9/P3rA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2904,7 +2904,7 @@ "hash": "xXyOVQe5JhJmRtG1R6HEjopWn1brjY6bmSq2XGHlf9M=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2916,7 +2916,7 @@ "hash": "+nw7t3Z8iN85ANpMfI5bbP5PJ58MmXa7Nw2jI3BJuOE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2928,7 +2928,7 @@ "hash": "nriEsP8RdwazaERziAL64bReh1SaC64E3/ALEUV7f+k=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2940,7 +2940,7 @@ "hash": "Qjbw54cxwaE9/KKTtH8qnC8AW8WDpTsIn+dM7JTm0HQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2952,7 +2952,7 @@ "hash": "pzPsOjX7MKfFDr8+niAtxdrtobzOcR4ppWe1F14A4Io=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2964,7 +2964,7 @@ "hash": "6UI8LAtBHGNBCp2jr1G4wk8jgIuYYuwhJRaI4T/zAng=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2976,7 +2976,7 @@ "hash": "C6FmJFW2gclTd2q9FqTz+pT0+NQxhIJNvXOjCmYeFe8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2988,7 +2988,7 @@ "hash": "CdtMZqqDysMn2SQWzYWeDDkkdRJ3lbmtQpXD1UyIcw4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3000,7 +3000,7 @@ "hash": "v4SOqsQN+D9SfEcbQm8go7+yJv494ndwrhwUHk898Rg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3012,7 +3012,7 @@ "hash": "nIX7A1T1DUWmo6jBSZyZMsC9mzFQ2Bft3eKEizJhiCo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3024,7 +3024,7 @@ "hash": "yqBIbFZjRguXIYCBuU2EC9MEXejUaV1cToEeXDHdR98=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3036,7 +3036,7 @@ "hash": "r4pATpykALFq9W7f6MfhIPI4wBQQerKS7juAd/n1JCM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3048,7 +3048,7 @@ "hash": "psJvjXcoBRdRaQehIpNXsM0jgtRbTPy2UMnA60d0270=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3060,7 +3060,7 @@ "hash": "rXmIj/rW6yp7q3nJbbblyOFcEjgvewQ8rv2XYfBByzE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3072,7 +3072,7 @@ "hash": "0ti0mXbvcgIc0Bho0Gk4qN3YFCuvhCdBKB3lLH43hg8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3084,7 +3084,7 @@ "hash": "+ABFqW82jC677KJhm10n1csUrZKtiKxo7I45WPrlRRw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3096,7 +3096,7 @@ "hash": "kqdyeUBvaJHQ4pUwlbe2EW+9b90qsVo1HvHBYEnTQu8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3108,7 +3108,7 @@ "hash": "JK36or2JQXhIrBqWM4Y72aQSrZpBE2BTHSr0P/3b5KE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3120,7 +3120,7 @@ "hash": "YhsUfjeQquoJ0HmB2HRNFDBq8G8nHNzkAF3m+LKRGpQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3132,7 +3132,7 @@ "hash": "qu1roSupxJ/68+APKNTzdR2hTCNsh2CFJ+xgYQxPQ6Q=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3144,7 +3144,7 @@ "hash": "EwX0bqPOQZt8u711SLabMC9PSQWvvoYNs6xxKPrlDSU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3156,7 +3156,7 @@ "hash": "jQp+Bez81JLszht/1k4q+m4WwKdMJ8pcClnmQfq2Sa4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3168,7 +3168,7 @@ "hash": "+wjo62EGceyvGElG7rvLKXRFRkoZOQL6kPYDJb/llh8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3180,7 +3180,7 @@ "hash": "xhxL0tXipbZVXzBg48bW7upWTXNkuLOTBPsuBhvbv8Q=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3192,7 +3192,7 @@ "hash": "d+LS8v+axcia+P//UEZemZJ/ZfE2dsisS8caDamu2rE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3204,7 +3204,7 @@ "hash": "EOomP4iO0GMLmolTHvm6RNFGMBezSct+7KN/ucqhSRo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3216,7 +3216,7 @@ "hash": "AaOCEJIjRLYwqYCLyPCEfNqpuJQepff7hoiwvEuaw+o=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3228,7 +3228,7 @@ "hash": "ASPNX9Bnu63Nga39195sdi6p6gbMIWFenolh4nhAPb4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3240,7 +3240,7 @@ "hash": "VLY+s5JbAurF2dwJiGKo/sMRRhTshAkqbW00FGV4QV4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3252,7 +3252,7 @@ "hash": "kQEFwcsiqTpn+vOCU1sPUJYDGCD1IvVPtMZSwktNIKg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3264,7 +3264,7 @@ "hash": "qKDZRu+3OaqH1U/NlNzRXtO7kUP1NyFTJxsnOdCdVC0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3276,7 +3276,7 @@ "hash": "RNAgYp+NWXFmBECf8qGOqCqdOMO8E9kXDzueoabKuz8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3288,7 +3288,7 @@ "hash": "NL+Kw68YHvPgYt+EnGjBAyWl3oP8Pncz/NSnM7TN9y8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3300,7 +3300,7 @@ "hash": "+VdtMxxvk1hYSwSjVw9MJXHwXZV79Q/VQBVIqd1C8IU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3312,7 +3312,7 @@ "hash": "4lsIBuHPzfeO7jU3u0BWlZ+eTNoY3ikElkFms6HuQSg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3324,7 +3324,7 @@ "hash": "T6TGxvBPxwDNT0/d66/aWi5+L6jDveBBYsZo1cB1XrA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3336,7 +3336,7 @@ "hash": "cBYl70gx9NOgQzY1srElCrbZG0zURv8JNkvqCiR/VDI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3348,7 +3348,7 @@ "hash": "ju8wvHOgAG+7jvwOZhsAp3nCLkDawK8axqb+8e5M0pI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3360,7 +3360,7 @@ "hash": "0H4GN5Av7kzMjbGdbgIVeajXwJi3q8C6KLPsbyddRFI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3372,7 +3372,7 @@ "hash": "tlP+eYrUPCbY0X4CtVq0LDjkGeB+qCVwpz2MV90PA0s=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3384,7 +3384,7 @@ "hash": "PEA07lKAu8t8G5gC0bA3E9mW84X7hqAZVho3zMAegD4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3396,7 +3396,7 @@ "hash": "L3SB04dl4y4e+JKpuyeYcoKt3+1uWPI+BaSgWR5CpFw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3408,7 +3408,7 @@ "hash": "3rtWE2ErsW8DGGzzhIdJzP8N/5Hz9+s6WMyMvx/mScM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3420,7 +3420,7 @@ "hash": "yj0Ga3CpdgzSmnGhxWE+2w7sjoQz0ewge4JEPWDXdQc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3432,7 +3432,7 @@ "hash": "0FbUuCeq7oQg3ATerU5dO2+cot/KH5iQk0Gdfrcr0As=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3444,7 +3444,7 @@ "hash": "iemVphU2d1P0stN000U81unRB5+nhoV9Ei5kwRfng1k=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3456,7 +3456,7 @@ "hash": "wcQTDazsbQSToxqnH6bfiN0u9oZO/Pd6phLiwHVpb+c=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3468,7 +3468,7 @@ "hash": "lPPOOeOTEbdqLL7WDampO18w9iY4VZUxzb9Z2rOUEoQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3480,7 +3480,7 @@ "hash": "Wgg2anN8SJOwbmo5jeqg9zaOh6Y9WIZAL8n9VUYam/k=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3492,7 +3492,7 @@ "hash": "mNMziVkHvev8498J+96+H/WK7C7hBP5ZoWD0tEe9dSE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3504,7 +3504,7 @@ "hash": "tbUlwyfgrVr8mjacD85UGBvRJM17gxBRfPgLwXyOWPk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3516,7 +3516,7 @@ "hash": "IwSeXflLzlyYN8cR9iI7TMkv+kyzsVGPn/UHy7r+qAM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3528,7 +3528,7 @@ "hash": "4znJCWZ0CFJ8a9TcPg+aSWF+f8IjiwIgQLo/1aDNffo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3540,7 +3540,7 @@ "hash": "lY4uM2hXzqcEanyi7XYjsKtw+FhY4P6rpOu6Utc4mM8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3552,7 +3552,7 @@ "hash": "IhJWKJnyeekWay1mI5IK6pXPVzdnj9lMgdD0BOmKHqQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3564,7 +3564,7 @@ "hash": "Hd7G0pU5oNrk+M9rgUA8beeJlvckUyzADq4a+TbPLeQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3576,7 +3576,7 @@ "hash": "S0T0EMYcE+3+tTPvZpdrEW6w/BJEX1m90QSX8BAYJ2Y=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3588,7 +3588,7 @@ "hash": "93e/DOgylaSAvSRS6mhPqZO5TcZbEvzD+XGa18yIG10=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3600,7 +3600,7 @@ "hash": "ps+wuIvy/l77+LZk2KlxjtW/PfRyjxaJ79rxoDNHI9E=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3612,7 +3612,7 @@ "hash": "e9r6Yjn0H5N6Pzg2WrBNa6UbbEQgRSWVecoLxo+dK+k=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3624,7 +3624,7 @@ "hash": "+iXcPWliiDKtnm7aByqAkprgaOIvGPzEt3PNmR70xCQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3633,10 +3633,10 @@ "output": { ".html": { "relative_path": "api/DuetControlServer.SPI.Channel.Manager.html", - "hash": "cGTfXa7cjCb6vhtNdUQLiGbw1YKKXUSD6n9iFbV6q+k=" + "hash": "22p8NKKokNeW0EaUF+QPe6K9utafstccNwxSCKxcsZo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3648,7 +3648,7 @@ "hash": "8TnzPf3oLovaW0WQq/Z2KItkCR96w0arIX7oEfxAlmg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3660,7 +3660,7 @@ "hash": "LCshDxUtOEu68OxJtFLih5WsO/rWEYuLncQD+jcjPDY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3672,7 +3672,7 @@ "hash": "FSW586gLWMbG4uIxhSf7s326PO3AtIWr+rdfJ/LQtPw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3684,7 +3684,7 @@ "hash": "gT8ifrznscGgYnGbPbYPq5m+YQCy+EN/N/xvZz2YMnk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3696,7 +3696,7 @@ "hash": "epPcqN57yOOLPA5d53nsrfgZD3wkJ2ZvuP6q3ArkDHY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3708,7 +3708,7 @@ "hash": "V1zXZmq94rUVFPeadY1Axf3Dmj4UADr+W/TKqAucJqQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3720,7 +3720,7 @@ "hash": "IkU9YlavN4r9/AEL4CbQtPyghpkSvZN9wUoSHjb+RC4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3732,7 +3732,7 @@ "hash": "d6y8atw29f0agPmSkDexw+qIwozqBqyP0TNHRND9pP4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3744,7 +3744,7 @@ "hash": "iTY3qZ71WqAfPW/dCJUk06vQFYxdpArfnyVBXxUmI+Q=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3756,7 +3756,7 @@ "hash": "RWFThqsK5S5llHye1pNnAoZoJ2YGq+RQClUegcIGmTE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3768,7 +3768,7 @@ "hash": "DxKTnzaBTHFaDaaVrC+azxgGYpBza9zmHd6lm7yQTYI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3780,7 +3780,7 @@ "hash": "S/E7b8KgxvHIh98bYmGpaH91TcpByIUGE48BzRugptY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3792,7 +3792,7 @@ "hash": "Z9TvT8glcqdQLUlp2EyilTwWVutcZrp6MMD8RUqQiWg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3804,7 +3804,7 @@ "hash": "MaFO5s7H8SuvieS7xQ2Sjc1sgL0vA4w434ElaKyWLJ0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3816,7 +3816,7 @@ "hash": "M+iAp3uWvmiCKtUhUswSmt+w13kmhjk4OE6SIHKv+hw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3828,7 +3828,7 @@ "hash": "RTvwkgAqGvKc5OQQFuBXbv6fF5+1cBYyFJgJREYN0ZI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3840,7 +3840,7 @@ "hash": "vQDqSLvvflrhQb6QntRhBhyQsj2wTbAoilMepAlby7w=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3852,7 +3852,7 @@ "hash": "iBCZQFw3ZPc8g/SjhUgJZ0WcEMCkGpkWzEdOuOXHIUY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3864,7 +3864,7 @@ "hash": "3OYbjqKXAwJXWJpkvEDD9frgdFoH589fv6qlThxKUwg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3876,7 +3876,7 @@ "hash": "e2cqDv0Md0iekjImLDHR/rVbvkD1JsM8sgVBbN7aHXo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3888,7 +3888,7 @@ "hash": "0QYc39ZBznVIJDzxuzMIw9oM7nKZiMpKvKR/jS9wLPA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3900,7 +3900,7 @@ "hash": "zd9W5ctkOysx2U/du5IqnMhoM7iAHgegx1dJSBt5in4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3912,7 +3912,7 @@ "hash": "1+TmAZZPSvn+rRC4sQkVaajlji5KZ31UUgImrjN6Fz0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3924,7 +3924,7 @@ "hash": "9DaJ3eDmKAKbNvMc4yWnRGO92nczPC0Zv4fU3L4qaQs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3936,7 +3936,7 @@ "hash": "A8k15GLoEKq31nZOM2pe4wqeS4srx8RUNj6n4nmOPJY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3948,7 +3948,7 @@ "hash": "o3gMYmZDJzJjxAre5d/bv/D2W97eQ80Yx9L++3qzoQ8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3960,7 +3960,7 @@ "hash": "eP3n+bJLa9c2WMt9AemjlZ8xrpEkRZzuBuZhzFMukVc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3972,7 +3972,7 @@ "hash": "MRdj/CLO5SCgy+Ey1pXX5qb7S0MElPWQ52tcNKmrngo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3984,7 +3984,7 @@ "hash": "lR5tq6oP5wMUmkKxI+JYuDsYLea6lJ5yrIo+pfKokl8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3996,7 +3996,7 @@ "hash": "Ka+W81Y4w06CGb2L7AT6Mmi1wGPgYMkC98OQXOLmPL4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4008,7 +4008,7 @@ "hash": "+v4CutldXN85NvdrIhSYhg7gLadthghs5Rmlho/xTJ0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4020,7 +4020,7 @@ "hash": "Utphh/qknsDt9iyG/coV05+PpsH7ZsN/qMSk2/uGGxQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4032,7 +4032,7 @@ "hash": "w4h+qxfTcrktnhPdAfr/wYEWBW02ZBe6OvKatEFNm+g=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4044,7 +4044,7 @@ "hash": "hZwh2utMRCr9VXQagqnuc3Uagjzd9Ya4ahT0DGqUTZ0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4056,7 +4056,7 @@ "hash": "oAPsfNslZZQW6GzW+L8LSJ6xpY/6cNTPM16fJfBZFKA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4068,7 +4068,7 @@ "hash": "ItlT0tduo/ansyke7ttdOi0w3ApFpIKQLzvGF85Lrk8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4080,7 +4080,7 @@ "hash": "IFQH9oTUNejMJhYVjZI2sYyKaNTBzZHdOgS+1v1uDg0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4092,7 +4092,7 @@ "hash": "J04FZKUNhnbLIrom9n66uQqHrz5hRXnHntmhgwdupxY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4104,7 +4104,7 @@ "hash": "IbyU5C/1KZ6G/WAQifm85HPBct5K3CB75jNV0O+N6QU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4116,7 +4116,7 @@ "hash": "rvYR1JKyAwiN+0rQqhJ/2N4HGYO0bb8pNJnpexu1WlI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4128,7 +4128,7 @@ "hash": "ZawTr9tRuln2uyxTB04At2Ezqg9tQly0xjvP++Fbmbw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4140,7 +4140,7 @@ "hash": "4o0s9P+Q3/YcuK32oBuio0gW0NccRIWtHTzkVD1iImI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4152,7 +4152,7 @@ "hash": "0yIih36CcxDMNbzppGcaiT5NLRWfSqfmw7K9naxIwnw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4164,7 +4164,7 @@ "hash": "MaLqRfKvaNF5XOzcv68MUXDqRrUinqaYQIW3tTHrU5I=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4176,7 +4176,7 @@ "hash": "oH087IEEbo+Kj1lin8GUx2eOE2kPBYkkbBFPut+hYBI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4188,7 +4188,7 @@ "hash": "YELKNv4t5mHHklMh99Yy9HLFh4DT8E4jOgN1J6OuzZk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4200,7 +4200,7 @@ "hash": "x0zaZLx4awwUwy6rEei3kBUNMLb21ueUZswCBdH8afQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4212,7 +4212,7 @@ "hash": "BHrFywwznOhvi8EKh/fiXrEahTEvi447gj0c4WVx7cM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4224,7 +4224,7 @@ "hash": "rZLLP45imiPzl2J8tLpcT6cIBFv5fj7feORkx/dr9lM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4236,7 +4236,7 @@ "hash": "ROFYU2KuSm5B3alTasQBZSHLlFkCPqVhwsb/NhP5QR8=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4245,10 +4245,10 @@ "output": { ".html": { "relative_path": "api/DuetControlServer.SPI.Interface.html", - "hash": "4XY8qsWVGlcWYqQRzZC9Uwgd4VdIbvQQuP7FRJ9/c68=" + "hash": "7qhqNT9fVT0lyZvq1i8uR/Y/2IxRAbUGTeQbpZ2lWNM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4260,7 +4260,7 @@ "hash": "I6RDQgB2IPvDJZug91go03F3RwNRTPX4K06K0keAx/o=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4272,7 +4272,7 @@ "hash": "opgECepff1GhfbUcCiz6ic2dISuMUS954wZBijndSLQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4284,7 +4284,7 @@ "hash": "VCywyWzxPIWWLuZNsPqHF/PPqerG8urDX0epCcxJHPo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4296,7 +4296,7 @@ "hash": "RNWcoAfhJUsDcwo+XyMAaNjaznCjmoD7juouz1FfE+g=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4308,7 +4308,7 @@ "hash": "XzMQMMNHO6O7WIMCEw/vbY0Ox89gTIUmjbL0q4WmSlY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4320,7 +4320,7 @@ "hash": "5ZChD17B4pTPcwC6prJ7Bfxt5Hxb8DEg4+w+wDrt8YU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4332,7 +4332,7 @@ "hash": "PYYMpKq2wkpHznLLk5MxOaO6C+z6CXTOqyGt1V34Yfk=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4344,7 +4344,7 @@ "hash": "y7dSY+ftc0nlf5OHcQtMF7jWJDlvr/6AWDCp7135E70=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4356,7 +4356,7 @@ "hash": "dVfOKKz8C67PpmpXVXWNNMa8Nh57ejl/MBi66LPjstI=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4368,7 +4368,7 @@ "hash": "r0rQx20hQi9iMYQrRltIY7OOAgtw54p+5AfWoDurDsU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4380,7 +4380,7 @@ "hash": "hfVnlOBJ9kaXjfp4cepW4JIwUTj3XTgd7l2EmBWxmpw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4392,7 +4392,7 @@ "hash": "2U8hXXwg0p6DEr0zLEYJbU/DqxzxeRgqIqfFTfYJhII=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4404,7 +4404,7 @@ "hash": "UC8eL3emaDXG+phhbTzjfnI+1GjlNaLm8/RjolYkAEY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4416,7 +4416,7 @@ "hash": "lYV7uPYugWgw8E7XDB7pTghcE7Ei7pHUeV8rfbA7Dx4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4428,7 +4428,7 @@ "hash": "rta+rDHEpH6PP57hxhtY+F74Ustscx25zMVAOQ/mixw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4440,7 +4440,7 @@ "hash": "NB9v9AZ84IWIuTGis+PJY4xh8SNs274YBn69yrDE1TM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4452,7 +4452,7 @@ "hash": "3nouz0bTJbT/NyfXeFI7Z5IaNKSKfyoY1xjxE0gN/FM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4461,10 +4461,10 @@ "output": { ".html": { "relative_path": "api/DuetWebServer.Controllers.MachineController.html", - "hash": "UdCYikrs8XeczdDcCpPXCs9W1UfHxLbl+KMaCWy/4ns=" + "hash": "ATq9mENIWWFdH10C19Rxn0p545+x39Fx3QQfdNvLfvU=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4476,7 +4476,7 @@ "hash": "M9eTV1MtxPo65PMEp3zaEjw6ZSheD14ud3/GORfBLXs=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4488,7 +4488,7 @@ "hash": "K+RbzIn8YbhAN2AQsn0Q/7VdAFZ2802REV6z+1x4baQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4500,7 +4500,7 @@ "hash": "ocy5oJ6QpIMrMS/CV3B9uO7rB3bD1QjSxB16A7ne0cY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4512,7 +4512,7 @@ "hash": "QZynQYF9x37BuDOukIkwF1bkBU4XpeNk48jqij1NveQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4524,7 +4524,7 @@ "hash": "CH2Io0pkJs6Sz+Jampr+EMf9vpK8gPhnLro/c7JVtm4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4536,7 +4536,7 @@ "hash": "Ysz93mUnasKCUwpUQC5akCZ/CkzEJYCekI8xiRyaI2U=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4548,7 +4548,7 @@ "hash": "XU8Bz2ztbD31GsNrhH+qv8/z9LSeX8BBpWuWkdl1mYw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4560,7 +4560,7 @@ "hash": "fugzY6qWRqBUvBNTB3+ms879qeNyFqzgT0ri/FX3zWg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4572,7 +4572,7 @@ "hash": "YBLwREPiolI7wzfd873+mWDq/elxUWjc0iftLJ/Cir4=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4584,7 +4584,7 @@ "hash": "ZJikwg1Tm6GCCmb26w419YsmZmtDlq2Mmt6Yia6ImWY=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4596,7 +4596,7 @@ "hash": "3Yil1TekXohA+1L6Y9AQ8Mxzt+ufZFmKJBdvqe01gZo=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4608,7 +4608,7 @@ "hash": "Xsu8NG+m//1hX8wmSlNUY9yBeK+tW9qhmsK2RRI5LdA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4620,7 +4620,7 @@ "hash": "LDTcbuGjPYNhiDvxIm+/9C686QJGu5fUhAm1eV0JTJA=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4632,7 +4632,7 @@ "hash": "YAo+H+0c+oEjT5b0+Oas+k2MtLIenlB4+7QI2sCWopM=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4644,7 +4644,7 @@ "hash": "x6z0e+nRQxaUJnQ4Kd3kwWz2xmbnXpcSoNKBbi1MpHc=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4656,7 +4656,7 @@ "hash": "i8dNXj/eDnYfjE03YeJdWhKs2p316wHj6786PpA+Qxg=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4668,7 +4668,7 @@ "hash": "HqRGfmVDRS3FpmwHs0cqDSUFS94+diFrhNvnGIF+akE=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4680,7 +4680,7 @@ "hash": "X1eiz6X7PvmxruLxbKuIx+JKs2Fb8LkV5+TY8OrioR0=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4692,7 +4692,7 @@ "hash": "duMFhAVKv+XdU+cshzc/HnMGRqwX0g4NkGTu/v+kqSQ=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4704,19 +4704,7 @@ "hash": "H5XM1Nz105i3MLOSb4q6hKYMyf+CA7qQ/ZKqi8HuS0M=" } }, - "is_incremental": true, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "api/index.md", - "output": { - ".html": { - "relative_path": "api/index.html", - "hash": "Uvr6tBpB7gcxkC728lpljEQ543wvyk0LX4fTKMV7Zek=" - } - }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4728,7 +4716,7 @@ "hash": "ay0FyUf8dO9uQdjBIZq7TCkvYfpedrnVHnlAn5znksw=" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4747,23 +4735,25 @@ "incremental_info": [ { "status": { - "can_incremental": true, + "can_incremental": false, + "details": "Cannot build incrementally because last build info is missing.", "incrementalPhase": "build", "total_file_count": 0, - "skipped_file_count": 0 + "skipped_file_count": 0, + "full_build_reason_code": "NoAvailableBuildCache" }, "processors": { "ConceptualDocumentProcessor": { - "can_incremental": true, + "can_incremental": false, "incrementalPhase": "build", - "total_file_count": 3, - "skipped_file_count": 2 + "total_file_count": 2, + "skipped_file_count": 0 }, "ManagedReferenceDocumentProcessor": { - "can_incremental": true, + "can_incremental": false, "incrementalPhase": "build", "total_file_count": 392, - "skipped_file_count": 392 + "skipped_file_count": 0 }, "TocDocumentProcessor": { "can_incremental": false, @@ -4776,8 +4766,8 @@ }, { "status": { - "can_incremental": true, - "details": "Can support incremental post processing.", + "can_incremental": false, + "details": "Cannot support incremental post processing, the reason is: last post processor info is null.", "incrementalPhase": "postProcessing", "total_file_count": 0, "skipped_file_count": 0 diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index a536b67b4..fd479f647 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -11360,19 +11360,6 @@ references: isSpec: "True" fullName: DuetAPI.ObjectModel.RestorePoint.LaserPwm nameWithType: RestorePoint.LaserPwm -- uid: DuetAPI.ObjectModel.RestorePoint.SpindleSpeeds - name: SpindleSpeeds - href: api/DuetAPI.ObjectModel.RestorePoint.html#DuetAPI_ObjectModel_RestorePoint_SpindleSpeeds - commentId: P:DuetAPI.ObjectModel.RestorePoint.SpindleSpeeds - fullName: DuetAPI.ObjectModel.RestorePoint.SpindleSpeeds - nameWithType: RestorePoint.SpindleSpeeds -- uid: DuetAPI.ObjectModel.RestorePoint.SpindleSpeeds* - name: SpindleSpeeds - href: api/DuetAPI.ObjectModel.RestorePoint.html#DuetAPI_ObjectModel_RestorePoint_SpindleSpeeds_ - commentId: Overload:DuetAPI.ObjectModel.RestorePoint.SpindleSpeeds - isSpec: "True" - fullName: DuetAPI.ObjectModel.RestorePoint.SpindleSpeeds - nameWithType: RestorePoint.SpindleSpeeds - uid: DuetAPI.ObjectModel.RestorePoint.ToolNumber name: ToolNumber href: api/DuetAPI.ObjectModel.RestorePoint.html#DuetAPI_ObjectModel_RestorePoint_ToolNumber @@ -14245,6 +14232,19 @@ references: isSpec: "True" fullName: DuetAPIClient.BaseCommandConnection.InstallSystemPackage nameWithType: BaseCommandConnection.InstallSystemPackage +- uid: DuetAPIClient.BaseCommandConnection.InvalidateChannel(DuetAPI.CodeChannel,System.Threading.CancellationToken) + name: InvalidateChannel(CodeChannel, CancellationToken) + href: api/DuetAPIClient.BaseCommandConnection.html#DuetAPIClient_BaseCommandConnection_InvalidateChannel_DuetAPI_CodeChannel_System_Threading_CancellationToken_ + commentId: M:DuetAPIClient.BaseCommandConnection.InvalidateChannel(DuetAPI.CodeChannel,System.Threading.CancellationToken) + fullName: DuetAPIClient.BaseCommandConnection.InvalidateChannel(DuetAPI.CodeChannel, System.Threading.CancellationToken) + nameWithType: BaseCommandConnection.InvalidateChannel(CodeChannel, CancellationToken) +- uid: DuetAPIClient.BaseCommandConnection.InvalidateChannel* + name: InvalidateChannel + href: api/DuetAPIClient.BaseCommandConnection.html#DuetAPIClient_BaseCommandConnection_InvalidateChannel_ + commentId: Overload:DuetAPIClient.BaseCommandConnection.InvalidateChannel + isSpec: "True" + fullName: DuetAPIClient.BaseCommandConnection.InvalidateChannel + nameWithType: BaseCommandConnection.InvalidateChannel - uid: DuetAPIClient.BaseCommandConnection.LockMachineModel(System.Threading.CancellationToken) name: LockMachineModel(CancellationToken) href: api/DuetAPIClient.BaseCommandConnection.html#DuetAPIClient_BaseCommandConnection_LockMachineModel_System_Threading_CancellationToken_ @@ -19840,12 +19840,12 @@ references: isSpec: "True" fullName: DuetControlServer.SPI.Channel.Manager.Diagnostics nameWithType: Manager.Diagnostics -- uid: DuetControlServer.SPI.Channel.Manager.GetIdleChannel - name: GetIdleChannel() - href: api/DuetControlServer.SPI.Channel.Manager.html#DuetControlServer_SPI_Channel_Manager_GetIdleChannel - commentId: M:DuetControlServer.SPI.Channel.Manager.GetIdleChannel - fullName: DuetControlServer.SPI.Channel.Manager.GetIdleChannel() - nameWithType: Manager.GetIdleChannel() +- uid: DuetControlServer.SPI.Channel.Manager.GetIdleChannel(DuetAPI.CodeChannel) + name: GetIdleChannel(CodeChannel) + href: api/DuetControlServer.SPI.Channel.Manager.html#DuetControlServer_SPI_Channel_Manager_GetIdleChannel_DuetAPI_CodeChannel_ + commentId: M:DuetControlServer.SPI.Channel.Manager.GetIdleChannel(DuetAPI.CodeChannel) + fullName: DuetControlServer.SPI.Channel.Manager.GetIdleChannel(DuetAPI.CodeChannel) + nameWithType: Manager.GetIdleChannel(CodeChannel) - uid: DuetControlServer.SPI.Channel.Manager.GetIdleChannel* name: GetIdleChannel href: api/DuetControlServer.SPI.Channel.Manager.html#DuetControlServer_SPI_Channel_Manager_GetIdleChannel_ @@ -23218,12 +23218,12 @@ references: isSpec: "True" fullName: DuetControlServer.SPI.Interface.Flush nameWithType: Interface.Flush -- uid: DuetControlServer.SPI.Interface.GetIdleChannel - name: GetIdleChannel() - href: api/DuetControlServer.SPI.Interface.html#DuetControlServer_SPI_Interface_GetIdleChannel - commentId: M:DuetControlServer.SPI.Interface.GetIdleChannel - fullName: DuetControlServer.SPI.Interface.GetIdleChannel() - nameWithType: Interface.GetIdleChannel() +- uid: DuetControlServer.SPI.Interface.GetIdleChannel(DuetAPI.CodeChannel) + name: GetIdleChannel(CodeChannel) + href: api/DuetControlServer.SPI.Interface.html#DuetControlServer_SPI_Interface_GetIdleChannel_DuetAPI_CodeChannel_ + commentId: M:DuetControlServer.SPI.Interface.GetIdleChannel(DuetAPI.CodeChannel) + fullName: DuetControlServer.SPI.Interface.GetIdleChannel(DuetAPI.CodeChannel) + nameWithType: Interface.GetIdleChannel(CodeChannel) - uid: DuetControlServer.SPI.Interface.GetIdleChannel* name: GetIdleChannel href: api/DuetControlServer.SPI.Interface.html#DuetControlServer_SPI_Interface_GetIdleChannel_ @@ -24700,6 +24700,19 @@ references: isSpec: "True" fullName: DuetWebServer.Controllers.MachineController.InstallSystemPackage nameWithType: MachineController.InstallSystemPackage +- uid: DuetWebServer.Controllers.MachineController.Model + name: Model() + href: api/DuetWebServer.Controllers.MachineController.html#DuetWebServer_Controllers_MachineController_Model + commentId: M:DuetWebServer.Controllers.MachineController.Model + fullName: DuetWebServer.Controllers.MachineController.Model() + nameWithType: MachineController.Model() +- uid: DuetWebServer.Controllers.MachineController.Model* + name: Model + href: api/DuetWebServer.Controllers.MachineController.html#DuetWebServer_Controllers_MachineController_Model_ + commentId: Overload:DuetWebServer.Controllers.MachineController.Model + isSpec: "True" + fullName: DuetWebServer.Controllers.MachineController.Model + nameWithType: MachineController.Model - uid: DuetWebServer.Controllers.MachineController.MoveFileOrDirectory(System.String,System.String,System.Boolean) name: MoveFileOrDirectory(String, String, Boolean) href: api/DuetWebServer.Controllers.MachineController.html#DuetWebServer_Controllers_MachineController_MoveFileOrDirectory_System_String_System_String_System_Boolean_ @@ -24752,19 +24765,6 @@ references: isSpec: "True" fullName: DuetWebServer.Controllers.MachineController.StartPlugin nameWithType: MachineController.StartPlugin -- uid: DuetWebServer.Controllers.MachineController.Status - name: Status() - href: api/DuetWebServer.Controllers.MachineController.html#DuetWebServer_Controllers_MachineController_Status - commentId: M:DuetWebServer.Controllers.MachineController.Status - fullName: DuetWebServer.Controllers.MachineController.Status() - nameWithType: MachineController.Status() -- uid: DuetWebServer.Controllers.MachineController.Status* - name: Status - href: api/DuetWebServer.Controllers.MachineController.html#DuetWebServer_Controllers_MachineController_Status_ - commentId: Overload:DuetWebServer.Controllers.MachineController.Status - isSpec: "True" - fullName: DuetWebServer.Controllers.MachineController.Status - nameWithType: MachineController.Status - uid: DuetWebServer.Controllers.MachineController.StopPlugin name: StopPlugin() href: api/DuetWebServer.Controllers.MachineController.html#DuetWebServer_Controllers_MachineController_StopPlugin
TypeDescription
System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.IActionResult>

HTTP status code: -(200) Machine object model as application/json -(500) Generic error -(502) Incompatible DCS version -(503) DCS is unavailable