@remit/ui 0.0.81 → 0.0.82

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/ui",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src"
@@ -18,10 +18,9 @@ export interface ReleaseInfo {
18
18
  export type UpdatePhase = "preparing" | "restarting" | "reconnecting";
19
19
 
20
20
  /**
21
- * Identifies one update attempt. The client hands this back after the restart
22
- * to ask what became of the run it started its own memory of the operation
23
- * does not survive the operation. Without it a reload mid-update cannot tell an
24
- * update in flight from an ordinary server blip.
21
+ * Identifies one update attempt. The server reports it for as long as the run
22
+ * is the current or last one, which is how a client tells the run it asked for
23
+ * from a later one, and an update in flight from an ordinary server blip.
25
24
  */
26
25
  export type UpdateRunId = string;
27
26