Add the "force sync" action

This commit is contained in:
Jonas Lochmann
2020-09-14 02:00:00 +02:00
parent e8cc9fd5e6
commit bdc4879806
12 changed files with 279 additions and 45 deletions
+18
View File
@@ -1413,6 +1413,21 @@ const definitions = {
"type"
]
},
"SerializedForceSyncAction": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"FORCE_SYNC"
]
}
},
"additionalProperties": false,
"required": [
"type"
]
},
"SerializedRemoveInstalledAppsAction": {
"type": "object",
"properties": {
@@ -2537,6 +2552,9 @@ export const isSerializedAppLogicAction: (value: object) => value is SerializedA
{
"$ref": "#/definitions/SerializedAddUsedTimeActionVersion2"
},
{
"$ref": "#/definitions/SerializedForceSyncAction"
},
{
"$ref": "#/definitions/SerializedRemoveInstalledAppsAction"
},