@remit/api-openapi-spec 0.0.31 → 0.0.33
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/openapi.json +17 -2
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -2693,8 +2693,18 @@
|
|
|
2693
2693
|
"/system/update": {
|
|
2694
2694
|
"get": {
|
|
2695
2695
|
"operationId": "SystemOperations_getSystemUpdate",
|
|
2696
|
-
"description": "Read the self-update resource: the running version, the outcome of the most recent manifest check, and the state of the current or last run. Owner-only, and absent (404) unless a manifest URL is configured (RFC 037 D7, D8).",
|
|
2697
|
-
"parameters": [
|
|
2696
|
+
"description": "Read the self-update resource: the running version, the outcome of the most recent manifest check, and the state of the current or last run. With `refresh=true`, records a check request on the control volume for the updater to pick up and answers with the stored state as it stands; the caller watches `check.lastCheckedAt` for the updater's answer. Owner-only, and absent (404) unless a manifest URL is configured (RFC 037 D7, D8).",
|
|
2697
|
+
"parameters": [
|
|
2698
|
+
{
|
|
2699
|
+
"name": "refresh",
|
|
2700
|
+
"in": "query",
|
|
2701
|
+
"required": false,
|
|
2702
|
+
"schema": {
|
|
2703
|
+
"type": "boolean"
|
|
2704
|
+
},
|
|
2705
|
+
"explode": false
|
|
2706
|
+
}
|
|
2707
|
+
],
|
|
2698
2708
|
"responses": {
|
|
2699
2709
|
"200": {
|
|
2700
2710
|
"description": "The request has succeeded.",
|
|
@@ -3394,6 +3404,11 @@
|
|
|
3394
3404
|
"format": "int32",
|
|
3395
3405
|
"description": "Number of mailboxes whose initial message sync has completed"
|
|
3396
3406
|
},
|
|
3407
|
+
"lastSyncAt": {
|
|
3408
|
+
"type": "integer",
|
|
3409
|
+
"format": "int64",
|
|
3410
|
+
"description": "When the account's most recent sync round started, stamped once per round by the worker. A client that triggered a sync compares this against the reading it took before triggering, so it confirms only on a round of its own rather than one already in flight."
|
|
3411
|
+
},
|
|
3397
3412
|
"mailboxes": {
|
|
3398
3413
|
"type": "array",
|
|
3399
3414
|
"items": {
|