mirror of
https://codeberg.org/timelimit/timelimit-server.git
synced 2026-08-31 19:03:45 +02:00
Compare commits
91
Commits
2022-09-22
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d269e33524 | ||
|
|
e907a98c5c | ||
|
|
7df7790288 | ||
|
|
1aee08f409 | ||
|
|
85cd9f3bb0 | ||
|
|
52bde0bc23 | ||
|
|
1e5e74659e | ||
|
|
893f3664cf | ||
|
|
ccfbf97d36 | ||
|
|
bf338f4aff | ||
|
|
91cb44d244 | ||
|
|
235115168f | ||
|
|
b2bcc3715f | ||
|
|
2f35b969bf | ||
|
|
48d6a061f8 | ||
|
|
0b6ece0d28 | ||
|
|
271b27ffe9 | ||
|
|
b80b74b072 | ||
|
|
190ae54602 | ||
|
|
eb87d331b3 | ||
|
|
5a6f37e4c7 | ||
|
|
bd4b5b206b | ||
|
|
a8db1ec1a9 | ||
|
|
3aed2010c7 | ||
|
|
510c61bafd | ||
|
|
6fefd4cf18 | ||
|
|
bedaa955b5 | ||
|
|
a13656b27d | ||
|
|
abb2d1657e | ||
|
|
47c4e866bf | ||
|
|
65f1f8a410 | ||
|
|
c6c0051f82 | ||
|
|
6935c0811c | ||
|
|
66001b547f | ||
|
|
c574fccda7 | ||
|
|
2cfa0babe1 | ||
|
|
2f2d932d10 | ||
|
|
1215c0c8a2 | ||
|
|
93337e5e08 | ||
|
|
e871188661 | ||
|
|
ac9f655c44 | ||
|
|
717d8f243a | ||
|
|
6189601459 | ||
|
|
569e5ce62d | ||
|
|
6220cc6bb9 | ||
|
|
33d9fd732f | ||
|
|
764f240707 | ||
|
|
b392ca295a | ||
|
|
f5fc8e6cd6 | ||
|
|
9c2048af64 | ||
|
|
b69271f7df | ||
|
|
97d2730b20 | ||
|
|
0346197c23 | ||
|
|
a7ed01af74 | ||
|
|
f77d91ff56 | ||
|
|
2d035da0da | ||
|
|
2d73cba90e | ||
|
|
1918c74277 | ||
|
|
e55d1fd1a9 | ||
|
|
f10b79a023 | ||
|
|
2c401288a3 | ||
|
|
89f3325a18 | ||
|
|
7aaad00881 | ||
|
|
c7e4cfc9f9 | ||
|
|
12ed5d73cd | ||
|
|
4df809a306 | ||
|
|
8ec0781859 | ||
|
|
376a2cc624 | ||
|
|
e14237be7d | ||
|
|
4183ea615a | ||
|
|
e46f5bea3f | ||
|
|
05fac79849 | ||
|
|
1e5da1b95e | ||
|
|
dc5e2baebd | ||
|
|
73465ebe6e | ||
|
|
98ee0fe94e | ||
|
|
d9a032823e | ||
|
|
ae044c19d6 | ||
|
|
41758c32f2 | ||
|
|
38b113c9e8 | ||
|
|
83619eb98e | ||
|
|
89e9b85bda | ||
|
|
f5198c7c0b | ||
|
|
9b8caccfbd | ||
|
|
747be7cf7d | ||
|
|
fe1ce74ff3 | ||
|
|
4ab97d7bf3 | ||
|
|
d1cc48a208 | ||
|
|
58a6359a3e | ||
|
|
35acd05d08 | ||
|
|
00ce5853d8 |
@@ -1,3 +0,0 @@
|
|||||||
node_modules
|
|
||||||
build
|
|
||||||
scripts
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
parser: '@typescript-eslint/parser',
|
|
||||||
plugins: [
|
|
||||||
'@typescript-eslint',
|
|
||||||
],
|
|
||||||
extends: [
|
|
||||||
'eslint:recommended',
|
|
||||||
'plugin:@typescript-eslint/recommended',
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
node: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
+3
-3
@@ -1,15 +1,15 @@
|
|||||||
FROM node:16-alpine
|
FROM node:24-alpine
|
||||||
|
|
||||||
# Create app directories
|
# Create app directories
|
||||||
RUN mkdir -p /usr/src/app
|
RUN mkdir -p /usr/src/app
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
# Install app dependencies
|
# Install app dependencies
|
||||||
COPY package.json package-lock.json tsconfig.json .eslintignore .eslintrc.js Readme.md /usr/src/app/
|
COPY package.json package-lock.json tsconfig.json eslint.config.mjs Readme.md /usr/src/app/
|
||||||
COPY src/ /usr/src/app/src/
|
COPY src/ /usr/src/app/src/
|
||||||
COPY scripts/ /usr/src/app/scripts/
|
COPY scripts/ /usr/src/app/scripts/
|
||||||
COPY other/ /usr/src/app/other/
|
COPY other/ /usr/src/app/other/
|
||||||
RUN mkdir -p docs/schema && npm install --no-optional && npm run build && npm prune --production && rm -rf ./src
|
RUN mkdir -p docs/schema && npm install --exclude=optional && npm run build && npm prune --omit=dev && rm -rf ./src
|
||||||
|
|
||||||
# Start the App
|
# Start the App
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|||||||
@@ -89,3 +89,46 @@ If there was nothing found for the mail address: HTTP status code 409 Conflict
|
|||||||
### see
|
### see
|
||||||
|
|
||||||
- [premium concept](../concept/premium.md)
|
- [premium concept](../concept/premium.md)
|
||||||
|
|
||||||
|
## POST /admin/unlock-premium-v2
|
||||||
|
|
||||||
|
Use this to unlock all features for one user for a specified duration.
|
||||||
|
|
||||||
|
### request
|
||||||
|
|
||||||
|
request properties: ``purchaseToken``, ``purchaseId`` and ``dryRun``
|
||||||
|
|
||||||
|
- ``purchasetoken`` is a string which the client shows at the purchase screen
|
||||||
|
- ``purchaseId`` is the ID that is used at the bill
|
||||||
|
- ``dryRun`` is a boolean
|
||||||
|
- setting true will skip the actual unlocking
|
||||||
|
- false will add a four week tolerance to the token expiry to permit checking now and unlocking later
|
||||||
|
- ``type`` is a string and must be ``year``, ``month`` or ``unpaid14``
|
||||||
|
|
||||||
|
### response
|
||||||
|
|
||||||
|
The response contains the following properties:
|
||||||
|
|
||||||
|
- ``ok`` (boolean)
|
||||||
|
- ``error``
|
||||||
|
- string
|
||||||
|
- set if and only if ``ok`` is false
|
||||||
|
- possible values
|
||||||
|
- ``token invalid``
|
||||||
|
- ``illegal state``
|
||||||
|
- ``purchase id already used``
|
||||||
|
- ``detail``
|
||||||
|
- optional string
|
||||||
|
- should be shown to the support
|
||||||
|
- ``lastPurchase``
|
||||||
|
- optional object
|
||||||
|
- should be shown to the support
|
||||||
|
- ``wasAlreadyExecuted`` (boolean, set if and only if ``ok`` is true)
|
||||||
|
- ``mail`` (string, set if and only if ``ok`` is true)
|
||||||
|
|
||||||
|
If the request was malformed: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
Using the same ``purchaseId`` twice results in:
|
||||||
|
|
||||||
|
- ``wasAlreadyExecuted`` if the familyId is unchanged
|
||||||
|
- ``error`` = ``purchase id already used`` otherwise
|
||||||
|
|||||||
@@ -41,6 +41,10 @@ If a whitelist was configured and the mail address is not within it: ``{"mailAdd
|
|||||||
|
|
||||||
If a blacklist was configured and the mail server is within it: ``{"mailServerBlacklisted": true}``
|
If a blacklist was configured and the mail server is within it: ``{"mailServerBlacklisted": true}``
|
||||||
|
|
||||||
|
If a temporarily blacklist was configured and the mail server is within it (used in case of known mail delivery issues): ``{"mailServerBlacklistedTemporarily": true}``
|
||||||
|
|
||||||
|
If the client is suspicious: ``{"blockedForIntegrityReasons": true}``
|
||||||
|
|
||||||
On success: a object with a ``mailLoginToken`` of the type string
|
On success: a object with a ``mailLoginToken`` of the type string
|
||||||
|
|
||||||
#### example response
|
#### example response
|
||||||
|
|||||||
+1
-2
@@ -16,8 +16,7 @@ On a invalid request body: HTTP status code 400 Bad request
|
|||||||
|
|
||||||
On a invalid add device token: HTTP status code 401 Unauthorized
|
On a invalid add device token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
On success: a JSON object with the properties ``deviceAuthToken`` and ``ownDeviceId``,
|
On success: object with ``deviceAuthToken`` (string), ``ownDeviceId`` (string) and ``data`` (like a ``/sync/pull-status`` response)
|
||||||
both of the type string
|
|
||||||
|
|
||||||
## POST /child/update-primary-device
|
## POST /child/update-primary-device
|
||||||
|
|
||||||
|
|||||||
+26
-2
@@ -44,7 +44,7 @@ If the mail auth token is invalid/ expired: HTTP status code 401 Unauthorized
|
|||||||
|
|
||||||
If there is already a user with the mail address of the mail auth token: HTTP status code 409 Conflict
|
If there is already a user with the mail address of the mail auth token: HTTP status code 409 Conflict
|
||||||
|
|
||||||
On success: object with ``deviceAuthToken`` (string) and ``ownDeviceId`` (string)
|
On success: object with ``deviceAuthToken`` (string), ``ownDeviceId`` (string) and ``data`` (like a ``/sync/pull-status`` response)
|
||||||
|
|
||||||
## POST /parent/sign-in-into-family
|
## POST /parent/sign-in-into-family
|
||||||
|
|
||||||
@@ -60,7 +60,7 @@ On a invalid request body: HTTP status code 400 Bad Request
|
|||||||
|
|
||||||
If there is no user with the mail address of the mail auth token: HTTP status code 409 Conflict
|
If there is no user with the mail address of the mail auth token: HTTP status code 409 Conflict
|
||||||
|
|
||||||
On success: object with ``deviceAuthToken`` (string) and ``ownDeviceId`` (string)
|
On success: object with ``deviceAuthToken`` (string), ``ownDeviceId`` (string) and ``data`` (like a ``/sync/pull-status`` response)
|
||||||
|
|
||||||
## POST /parent/can-recover-password
|
## POST /parent/can-recover-password
|
||||||
|
|
||||||
@@ -194,3 +194,27 @@ If the ``secondPasswordHash`` is invalid: HTTP status code 401 Unauthorized
|
|||||||
If the server does not support this request: HTTP status code 404
|
If the server does not support this request: HTTP status code 404
|
||||||
|
|
||||||
On success: ``{"token": "some string"}``; you should not make any assumptions about the token string
|
On success: ``{"token": "some string"}``; you should not make any assumptions about the token string
|
||||||
|
|
||||||
|
## POST /parent/delete-account
|
||||||
|
|
||||||
|
Use this to delete an account. This includes the complete family registration
|
||||||
|
with users and devices. Due to that, all parents with a linked mail address
|
||||||
|
have to authenticate this action.
|
||||||
|
|
||||||
|
## request
|
||||||
|
|
||||||
|
see [this JSON schema](../schema/deleteaccountpayload.md)
|
||||||
|
|
||||||
|
## response
|
||||||
|
|
||||||
|
On success: HTTP status code 200
|
||||||
|
|
||||||
|
On a invalid request body: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
On unknown device auth token: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On missing parent authentication: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
On unrelated parent authentication: HTTP status code 401 Unauthorized
|
||||||
|
|
||||||
|
If a newer endpoint must be used/the client is too old: HTTP status code 410 Gone
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ Use this before a purchase to check if a purchase is possible.
|
|||||||
|
|
||||||
see [this JSON schema](../schema/candopurchaserequest.md)
|
see [this JSON schema](../schema/candopurchaserequest.md)
|
||||||
|
|
||||||
|
Note that ``type`` is not used at all.
|
||||||
|
|
||||||
### response
|
### response
|
||||||
|
|
||||||
On a invalid request body: HTTP status code 400 Bad request
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|||||||
@@ -14,8 +14,7 @@
|
|||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": [
|
"required": [
|
||||||
"deviceAuthToken",
|
"deviceAuthToken"
|
||||||
"type"
|
|
||||||
],
|
],
|
||||||
"definitions": {},
|
"definitions": {},
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
|||||||
@@ -18,6 +18,9 @@
|
|||||||
},
|
},
|
||||||
"parentName": {
|
"parentName": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"clientLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"deviceAuthToken": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"mailAuthTokens": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"deviceAuthToken",
|
||||||
|
"mailAuthTokens"
|
||||||
|
],
|
||||||
|
"definitions": {},
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"title": "DeleteAccountPayload",
|
||||||
|
"$id": "https://timelimit.io/DeleteAccountPayload"
|
||||||
|
}
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"additionalProperties": false,
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"purpose": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"purchase"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"familyId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"userId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"mail": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"exp": {
|
||||||
|
"type": "number"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"exp",
|
||||||
|
"familyId",
|
||||||
|
"mail",
|
||||||
|
"purpose",
|
||||||
|
"userId"
|
||||||
|
],
|
||||||
|
"definitions": {},
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"title": "IdentityTokenPayload",
|
||||||
|
"$id": "https://timelimit.io/IdentityTokenPayload"
|
||||||
|
}
|
||||||
+10
-56
@@ -14,8 +14,12 @@
|
|||||||
|
|
||||||
* [CreateRegisterDeviceTokenRequest](./createregisterdevicetokenrequest.md) – `https://timelimit.io/CreateRegisterDeviceTokenRequest`
|
* [CreateRegisterDeviceTokenRequest](./createregisterdevicetokenrequest.md) – `https://timelimit.io/CreateRegisterDeviceTokenRequest`
|
||||||
|
|
||||||
|
* [DeleteAccountPayload](./deleteaccountpayload.md) – `https://timelimit.io/DeleteAccountPayload`
|
||||||
|
|
||||||
* [FinishPurchaseByGooglePlayRequest](./finishpurchasebygoogleplayrequest.md) – `https://timelimit.io/FinishPurchaseByGooglePlayRequest`
|
* [FinishPurchaseByGooglePlayRequest](./finishpurchasebygoogleplayrequest.md) – `https://timelimit.io/FinishPurchaseByGooglePlayRequest`
|
||||||
|
|
||||||
|
* [IdentityTokenPayload](./identitytokenpayload.md) – `https://timelimit.io/IdentityTokenPayload`
|
||||||
|
|
||||||
* [LinkParentMailAddressRequest](./linkparentmailaddressrequest.md) – `https://timelimit.io/LinkParentMailAddressRequest`
|
* [LinkParentMailAddressRequest](./linkparentmailaddressrequest.md) – `https://timelimit.io/LinkParentMailAddressRequest`
|
||||||
|
|
||||||
* [MailAuthTokenRequestBody](./mailauthtokenrequestbody.md) – `https://timelimit.io/MailAuthTokenRequestBody`
|
* [MailAuthTokenRequestBody](./mailauthtokenrequestbody.md) – `https://timelimit.io/MailAuthTokenRequestBody`
|
||||||
@@ -126,6 +130,8 @@
|
|||||||
|
|
||||||
* [SerializedMarkTaskPendingAction](./serializedapplogicaction-definitions-serializedmarktaskpendingaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPendingAction`
|
* [SerializedMarkTaskPendingAction](./serializedapplogicaction-definitions-serializedmarktaskpendingaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPendingAction`
|
||||||
|
|
||||||
|
* [SerializedPingAction](./serializedapplogicaction-definitions-serializedpingaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction`
|
||||||
|
|
||||||
* [SerializedRemoveCategoryAppsAction](./serializedparentaction-definitions-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction`
|
* [SerializedRemoveCategoryAppsAction](./serializedparentaction-definitions-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction`
|
||||||
|
|
||||||
* [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction`
|
* [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction`
|
||||||
@@ -234,6 +240,8 @@
|
|||||||
|
|
||||||
* [ServerKeyResponse](./serverdatastatus-definitions-serverkeyresponse.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerKeyResponse`
|
* [ServerKeyResponse](./serverdatastatus-definitions-serverkeyresponse.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerKeyResponse`
|
||||||
|
|
||||||
|
* [ServerPing](./serverdatastatus-definitions-serverping.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerPing`
|
||||||
|
|
||||||
* [ServerSessionDurationItem](./serverdatastatus-definitions-serversessiondurationitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerSessionDurationItem`
|
* [ServerSessionDurationItem](./serverdatastatus-definitions-serversessiondurationitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerSessionDurationItem`
|
||||||
|
|
||||||
* [ServerTimeLimitRule](./serverdatastatus-definitions-servertimelimitrule.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule`
|
* [ServerTimeLimitRule](./serverdatastatus-definitions-servertimelimitrule.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule`
|
||||||
@@ -266,39 +274,13 @@
|
|||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail`
|
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail`
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps`
|
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories`
|
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail`
|
|
||||||
|
|
||||||
* [Untitled object in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items`
|
|
||||||
|
|
||||||
* [Untitled object in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items`
|
* [Untitled object in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items`
|
||||||
|
|
||||||
### Arrays
|
### Arrays
|
||||||
|
|
||||||
* [Untitled array in ClientPushChangesRequest](./clientpushchangesrequest-properties-actions.md) – `https://timelimit.io/ClientPushChangesRequest#/properties/actions`
|
* [Untitled array in ClientPushChangesRequest](./clientpushchangesrequest-properties-actions.md) – `https://timelimit.io/ClientPushChangesRequest#/properties/actions`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
* [Untitled array in DeleteAccountPayload](./deleteaccountpayload-properties-mailauthtokens.md) – `https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as/items`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl/items`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
||||||
|
|
||||||
@@ -326,12 +308,6 @@
|
|||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames`
|
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverdevicelist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverdevicelist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-devices2.md) – `https://timelimit.io/ServerDataStatus#/properties/devices2`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-devices2.md) – `https://timelimit.io/ServerDataStatus#/properties/devices2`
|
||||||
@@ -374,29 +350,7 @@
|
|||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-kr.md) – `https://timelimit.io/ServerDataStatus#/properties/kr`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-kr.md) – `https://timelimit.io/ServerDataStatus#/properties/kr`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-u2fdata-properties-d.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fData/properties/d`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-pings.md) – `https://timelimit.io/ServerDataStatus#/properties/pings`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverdevicelist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-activities.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorybasedata-properties-networks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/networks`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorybasedata-properties-atw.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/atw`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-times.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/times`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-sessiondurations.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/sessionDurations`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedtimelimitrules-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules/properties/rules`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorytasks-properties-tasks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryTasks/properties/tasks`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serveruserlist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList/properties/data`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-u2fdata-properties-d.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fData/properties/d`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-u2fdata-properties-d.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fData/properties/d`
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,9 @@
|
|||||||
},
|
},
|
||||||
"deviceName": {
|
"deviceName": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"clientLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
{
|
{
|
||||||
"$ref": "#/definitions/SerializedMarkTaskPendingAction"
|
"$ref": "#/definitions/SerializedMarkTaskPendingAction"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/SerializedPingAction"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"$ref": "#/definitions/SerializedUpdateInstalledAppsAction"
|
"$ref": "#/definitions/SerializedUpdateInstalledAppsAction"
|
||||||
},
|
},
|
||||||
@@ -309,6 +312,43 @@
|
|||||||
],
|
],
|
||||||
"title": "SerializedMarkTaskPendingAction"
|
"title": "SerializedMarkTaskPendingAction"
|
||||||
},
|
},
|
||||||
|
"SerializedPingAction": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"PING"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"deviceId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"event": {
|
||||||
|
"$ref": "#/definitions/PingEvent"
|
||||||
|
},
|
||||||
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"deviceId",
|
||||||
|
"event",
|
||||||
|
"token",
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"title": "SerializedPingAction"
|
||||||
|
},
|
||||||
|
"PingEvent": {
|
||||||
|
"enum": [
|
||||||
|
"clear",
|
||||||
|
"ping",
|
||||||
|
"pong"
|
||||||
|
],
|
||||||
|
"type": "string",
|
||||||
|
"title": "PingEvent"
|
||||||
|
},
|
||||||
"SerializedUpdateInstalledAppsAction": {
|
"SerializedUpdateInstalledAppsAction": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@@ -545,6 +585,12 @@
|
|||||||
},
|
},
|
||||||
"addedManipulationFlags": {
|
"addedManipulationFlags": {
|
||||||
"type": "number"
|
"type": "number"
|
||||||
|
},
|
||||||
|
"platformType": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"platformLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
@@ -410,6 +410,9 @@
|
|||||||
},
|
},
|
||||||
"perDay": {
|
"perDay": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"e": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -1458,6 +1461,9 @@
|
|||||||
},
|
},
|
||||||
"perDay": {
|
"perDay": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"e": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
@@ -67,6 +67,12 @@
|
|||||||
"$ref": "#/definitions/ServerKeyResponse"
|
"$ref": "#/definitions/ServerKeyResponse"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"pings": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerPing"
|
||||||
|
}
|
||||||
|
},
|
||||||
"dh": {
|
"dh": {
|
||||||
"$ref": "#/definitions/ServerDhKey"
|
"$ref": "#/definitions/ServerDhKey"
|
||||||
},
|
},
|
||||||
@@ -212,6 +218,12 @@
|
|||||||
},
|
},
|
||||||
"pk": {
|
"pk": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"pType": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"pLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -240,6 +252,7 @@
|
|||||||
"model",
|
"model",
|
||||||
"name",
|
"name",
|
||||||
"networkTime",
|
"networkTime",
|
||||||
|
"pLevel",
|
||||||
"qOrLater",
|
"qOrLater",
|
||||||
"reboot",
|
"reboot",
|
||||||
"rebootIsManipulation",
|
"rebootIsManipulation",
|
||||||
@@ -920,6 +933,31 @@
|
|||||||
],
|
],
|
||||||
"title": "ServerKeyResponse"
|
"title": "ServerKeyResponse"
|
||||||
},
|
},
|
||||||
|
"ServerPing": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"deviceId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"enum": [
|
||||||
|
"ping",
|
||||||
|
"pong"
|
||||||
|
],
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"deviceId",
|
||||||
|
"token",
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"title": "ServerPing"
|
||||||
|
},
|
||||||
"ServerDhKey": {
|
"ServerDhKey": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|||||||
@@ -9,6 +9,9 @@
|
|||||||
},
|
},
|
||||||
"deviceName": {
|
"deviceName": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"clientLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ https://timelimit.io/CanDoPurchaseRequest
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :---------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :---------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type) | `string` | Required | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-type.md "https://timelimit.io/CanDoPurchaseRequest#/properties/type") |
|
| [type](#type) | `string` | Optional | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-type.md "https://timelimit.io/CanDoPurchaseRequest#/properties/type") |
|
||||||
| [deviceAuthToken](#deviceauthtoken) | `string` | Required | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-deviceauthtoken.md "https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken") |
|
| [deviceAuthToken](#deviceauthtoken) | `string` | Required | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-deviceauthtoken.md "https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken") |
|
||||||
|
|
||||||
## type
|
## type
|
||||||
@@ -27,7 +27,7 @@ https://timelimit.io/CanDoPurchaseRequest
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in CreateFamilyByMailTokenRequest Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/clientLevel
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [CreateFamilyByMailTokenRequest.schema.json\*](CreateFamilyByMailTokenRequest.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## clientLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
@@ -24,6 +24,7 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
| [deviceName](#devicename) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-devicename.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/deviceName") |
|
| [deviceName](#devicename) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-devicename.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/deviceName") |
|
||||||
| [timeZone](#timezone) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-timezone.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/timeZone") |
|
| [timeZone](#timezone) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-timezone.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/timeZone") |
|
||||||
| [parentName](#parentname) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-parentname.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentName") |
|
| [parentName](#parentname) | `string` | Required | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-parentname.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentName") |
|
||||||
|
| [clientLevel](#clientlevel) | `number` | Optional | cannot be null | [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-clientlevel.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/clientLevel") |
|
||||||
|
|
||||||
## mailAuthToken
|
## mailAuthToken
|
||||||
|
|
||||||
@@ -133,6 +134,24 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
|
|
||||||
`string`
|
`string`
|
||||||
|
|
||||||
|
## clientLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`clientLevel`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-clientlevel.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/clientLevel")
|
||||||
|
|
||||||
|
### clientLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
# CreateFamilyByMailTokenRequest Definitions
|
# CreateFamilyByMailTokenRequest Definitions
|
||||||
|
|
||||||
## Definitions group PlaintextParentPassword
|
## Definitions group PlaintextParentPassword
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled undefined type in DeleteAccountPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/DeleteAccountPayload#/definitions
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [DeleteAccountPayload.schema.json\*](DeleteAccountPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## definitions Type
|
||||||
|
|
||||||
|
unknown
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in DeleteAccountPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/DeleteAccountPayload#/properties/deviceAuthToken
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [DeleteAccountPayload.schema.json\*](DeleteAccountPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## deviceAuthToken Type
|
||||||
|
|
||||||
|
`string`
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in DeleteAccountPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens/items
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [DeleteAccountPayload.schema.json\*](DeleteAccountPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## items Type
|
||||||
|
|
||||||
|
`string`
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled array in DeleteAccountPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [DeleteAccountPayload.schema.json\*](DeleteAccountPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## mailAuthTokens Type
|
||||||
|
|
||||||
|
`string[]`
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
# DeleteAccountPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/DeleteAccountPayload
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [DeleteAccountPayload.schema.json](DeleteAccountPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## DeleteAccountPayload Type
|
||||||
|
|
||||||
|
`object` ([DeleteAccountPayload](deleteaccountpayload.md))
|
||||||
|
|
||||||
|
# DeleteAccountPayload Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :---------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [deviceAuthToken](#deviceauthtoken) | `string` | Required | cannot be null | [DeleteAccountPayload](deleteaccountpayload-properties-deviceauthtoken.md "https://timelimit.io/DeleteAccountPayload#/properties/deviceAuthToken") |
|
||||||
|
| [mailAuthTokens](#mailauthtokens) | `array` | Required | cannot be null | [DeleteAccountPayload](deleteaccountpayload-properties-mailauthtokens.md "https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens") |
|
||||||
|
|
||||||
|
## deviceAuthToken
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`deviceAuthToken`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [DeleteAccountPayload](deleteaccountpayload-properties-deviceauthtoken.md "https://timelimit.io/DeleteAccountPayload#/properties/deviceAuthToken")
|
||||||
|
|
||||||
|
### deviceAuthToken Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## mailAuthTokens
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`mailAuthTokens`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string[]`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [DeleteAccountPayload](deleteaccountpayload-properties-mailauthtokens.md "https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens")
|
||||||
|
|
||||||
|
### mailAuthTokens Type
|
||||||
|
|
||||||
|
`string[]`
|
||||||
|
|
||||||
|
# DeleteAccountPayload Definitions
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled undefined type in IdentityTokenPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/IdentityTokenPayload#/definitions
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [IdentityTokenPayload.schema.json\*](IdentityTokenPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## definitions Type
|
||||||
|
|
||||||
|
unknown
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in IdentityTokenPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/IdentityTokenPayload#/properties/exp
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [IdentityTokenPayload.schema.json\*](IdentityTokenPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## exp Type
|
||||||
|
|
||||||
|
`number`
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in IdentityTokenPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/IdentityTokenPayload#/properties/familyId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [IdentityTokenPayload.schema.json\*](IdentityTokenPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## familyId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in IdentityTokenPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/IdentityTokenPayload#/properties/mail
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [IdentityTokenPayload.schema.json\*](IdentityTokenPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## mail Type
|
||||||
|
|
||||||
|
`string`
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
# Untitled string in IdentityTokenPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/IdentityTokenPayload#/properties/purpose
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [IdentityTokenPayload.schema.json\*](IdentityTokenPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## purpose Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## purpose Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :----------- | :---------- |
|
||||||
|
| `"purchase"` | |
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in IdentityTokenPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/IdentityTokenPayload#/properties/userId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [IdentityTokenPayload.schema.json\*](IdentityTokenPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## userId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
@@ -0,0 +1,125 @@
|
|||||||
|
# IdentityTokenPayload Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/IdentityTokenPayload
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | Yes | Unknown status | No | Forbidden | Forbidden | none | [IdentityTokenPayload.schema.json](IdentityTokenPayload.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## IdentityTokenPayload Type
|
||||||
|
|
||||||
|
`object` ([IdentityTokenPayload](identitytokenpayload.md))
|
||||||
|
|
||||||
|
# IdentityTokenPayload Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :-------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [purpose](#purpose) | `string` | Required | cannot be null | [IdentityTokenPayload](identitytokenpayload-properties-purpose.md "https://timelimit.io/IdentityTokenPayload#/properties/purpose") |
|
||||||
|
| [familyId](#familyid) | `string` | Required | cannot be null | [IdentityTokenPayload](identitytokenpayload-properties-familyid.md "https://timelimit.io/IdentityTokenPayload#/properties/familyId") |
|
||||||
|
| [userId](#userid) | `string` | Required | cannot be null | [IdentityTokenPayload](identitytokenpayload-properties-userid.md "https://timelimit.io/IdentityTokenPayload#/properties/userId") |
|
||||||
|
| [mail](#mail) | `string` | Required | cannot be null | [IdentityTokenPayload](identitytokenpayload-properties-mail.md "https://timelimit.io/IdentityTokenPayload#/properties/mail") |
|
||||||
|
| [exp](#exp) | `number` | Required | cannot be null | [IdentityTokenPayload](identitytokenpayload-properties-exp.md "https://timelimit.io/IdentityTokenPayload#/properties/exp") |
|
||||||
|
|
||||||
|
## purpose
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`purpose`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-purpose.md "https://timelimit.io/IdentityTokenPayload#/properties/purpose")
|
||||||
|
|
||||||
|
### purpose Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### purpose Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :----------- | :---------- |
|
||||||
|
| `"purchase"` | |
|
||||||
|
|
||||||
|
## familyId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`familyId`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-familyid.md "https://timelimit.io/IdentityTokenPayload#/properties/familyId")
|
||||||
|
|
||||||
|
### familyId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## userId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`userId`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-userid.md "https://timelimit.io/IdentityTokenPayload#/properties/userId")
|
||||||
|
|
||||||
|
### userId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## mail
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`mail`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-mail.md "https://timelimit.io/IdentityTokenPayload#/properties/mail")
|
||||||
|
|
||||||
|
### mail Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## exp
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`exp`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-exp.md "https://timelimit.io/IdentityTokenPayload#/properties/exp")
|
||||||
|
|
||||||
|
### exp Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
|
# IdentityTokenPayload Definitions
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in RegisterChildDeviceRequest Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/RegisterChildDeviceRequest#/properties/clientLevel
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [RegisterChildDeviceRequest.schema.json\*](RegisterChildDeviceRequest.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## clientLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
@@ -21,6 +21,7 @@ https://timelimit.io/RegisterChildDeviceRequest
|
|||||||
| [registerToken](#registertoken) | `string` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-properties-registertoken.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/registerToken") |
|
| [registerToken](#registertoken) | `string` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-properties-registertoken.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/registerToken") |
|
||||||
| [childDevice](#childdevice) | `object` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/childDevice") |
|
| [childDevice](#childdevice) | `object` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/childDevice") |
|
||||||
| [deviceName](#devicename) | `string` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-properties-devicename.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/deviceName") |
|
| [deviceName](#devicename) | `string` | Required | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-properties-devicename.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/deviceName") |
|
||||||
|
| [clientLevel](#clientlevel) | `number` | Optional | cannot be null | [RegisterChildDeviceRequest](registerchilddevicerequest-properties-clientlevel.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/clientLevel") |
|
||||||
|
|
||||||
## registerToken
|
## registerToken
|
||||||
|
|
||||||
@@ -76,6 +77,24 @@ https://timelimit.io/RegisterChildDeviceRequest
|
|||||||
|
|
||||||
`string`
|
`string`
|
||||||
|
|
||||||
|
## clientLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`clientLevel`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-clientlevel.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/clientLevel")
|
||||||
|
|
||||||
|
### clientLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
# RegisterChildDeviceRequest Definitions
|
# RegisterChildDeviceRequest Definitions
|
||||||
|
|
||||||
## Definitions group NewDeviceInfo
|
## Definitions group NewDeviceInfo
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
# PingEvent Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/PingEvent
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## PingEvent Type
|
||||||
|
|
||||||
|
`string` ([PingEvent](serializedapplogicaction-definitions-pingevent.md))
|
||||||
|
|
||||||
|
## PingEvent Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------- | :---------- |
|
||||||
|
| `"clear"` | |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in SerializedAppLogicAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/deviceId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
+25
@@ -0,0 +1,25 @@
|
|||||||
|
# PingEvent Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/event
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## event Type
|
||||||
|
|
||||||
|
`string` ([PingEvent](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md))
|
||||||
|
|
||||||
|
## event Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------- | :---------- |
|
||||||
|
| `"clear"` | |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in SerializedAppLogicAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/token
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## token Type
|
||||||
|
|
||||||
|
`string`
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
# Untitled string in SerializedAppLogicAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/type
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## type Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## type Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------- | :---------- |
|
||||||
|
| `"PING"` | |
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
# SerializedPingAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## SerializedPingAction Type
|
||||||
|
|
||||||
|
`object` ([SerializedPingAction](serializedapplogicaction-definitions-serializedpingaction.md))
|
||||||
|
|
||||||
|
# SerializedPingAction Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :-------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/type") |
|
||||||
|
| [deviceId](#deviceid) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/deviceId") |
|
||||||
|
| [event](#event) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/event") |
|
||||||
|
| [token](#token) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-token.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/token") |
|
||||||
|
|
||||||
|
## type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`type`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/type")
|
||||||
|
|
||||||
|
### type Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### type Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------- | :---------- |
|
||||||
|
| `"PING"` | |
|
||||||
|
|
||||||
|
## deviceId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`deviceId`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/deviceId")
|
||||||
|
|
||||||
|
### deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## event
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`event`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string` ([PingEvent](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md))
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/event")
|
||||||
|
|
||||||
|
### event Type
|
||||||
|
|
||||||
|
`string` ([PingEvent](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md))
|
||||||
|
|
||||||
|
### event Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------- | :---------- |
|
||||||
|
| `"clear"` | |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
|
|
||||||
|
## token
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`token`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-token.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/token")
|
||||||
|
|
||||||
|
### token Type
|
||||||
|
|
||||||
|
`string`
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in SerializedAppLogicAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformLevel
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## platformLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in SerializedAppLogicAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformType
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## platformType Type
|
||||||
|
|
||||||
|
`string`
|
||||||
+38
@@ -28,6 +28,8 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
| [didReboot](#didreboot) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot") |
|
| [didReboot](#didreboot) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot") |
|
||||||
| [isQOrLaterNow](#isqorlaternow) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow") |
|
| [isQOrLaterNow](#isqorlaternow) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow") |
|
||||||
| [addedManipulationFlags](#addedmanipulationflags) | `number` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-addedmanipulationflags.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/addedManipulationFlags") |
|
| [addedManipulationFlags](#addedmanipulationflags) | `number` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-addedmanipulationflags.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/addedManipulationFlags") |
|
||||||
|
| [platformType](#platformtype) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformtype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformType") |
|
||||||
|
| [platformLevel](#platformlevel) | `number` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformLevel") |
|
||||||
|
|
||||||
## type
|
## type
|
||||||
|
|
||||||
@@ -257,3 +259,39 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
### addedManipulationFlags Type
|
### addedManipulationFlags Type
|
||||||
|
|
||||||
`number`
|
`number`
|
||||||
|
|
||||||
|
## platformType
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`platformType`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformtype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformType")
|
||||||
|
|
||||||
|
### platformType Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## platformLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`platformLevel`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformLevel")
|
||||||
|
|
||||||
|
### platformLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|||||||
@@ -30,6 +30,8 @@ any of
|
|||||||
|
|
||||||
* [SerializedMarkTaskPendingAction](serializedapplogicaction-definitions-serializedmarktaskpendingaction.md "check type definition")
|
* [SerializedMarkTaskPendingAction](serializedapplogicaction-definitions-serializedmarktaskpendingaction.md "check type definition")
|
||||||
|
|
||||||
|
* [SerializedPingAction](serializedapplogicaction-definitions-serializedpingaction.md "check type definition")
|
||||||
|
|
||||||
* [SerializedUpdateInstalledAppsAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction.md "check type definition")
|
* [SerializedUpdateInstalledAppsAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction.md "check type definition")
|
||||||
|
|
||||||
* [SerializedRemoveInstalledAppsAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md "check type definition")
|
* [SerializedRemoveInstalledAppsAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md "check type definition")
|
||||||
@@ -688,6 +690,122 @@ Reference this group by using
|
|||||||
|
|
||||||
`string`
|
`string`
|
||||||
|
|
||||||
|
## Definitions group SerializedPingAction
|
||||||
|
|
||||||
|
Reference this group by using
|
||||||
|
|
||||||
|
```json
|
||||||
|
{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction"}
|
||||||
|
```
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :-------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [type](#type-7) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/type") |
|
||||||
|
| [deviceId](#deviceid) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/deviceId") |
|
||||||
|
| [event](#event) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/event") |
|
||||||
|
| [token](#token) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-token.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/token") |
|
||||||
|
|
||||||
|
### type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`type`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/type")
|
||||||
|
|
||||||
|
#### type Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
#### type Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------- | :---------- |
|
||||||
|
| `"PING"` | |
|
||||||
|
|
||||||
|
### deviceId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`deviceId`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/deviceId")
|
||||||
|
|
||||||
|
#### deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### event
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`event`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string` ([PingEvent](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md))
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/event")
|
||||||
|
|
||||||
|
#### event Type
|
||||||
|
|
||||||
|
`string` ([PingEvent](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md))
|
||||||
|
|
||||||
|
#### event Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------- | :---------- |
|
||||||
|
| `"clear"` | |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
|
|
||||||
|
### token
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`token`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-token.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/token")
|
||||||
|
|
||||||
|
#### token Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## Definitions group PingEvent
|
||||||
|
|
||||||
|
Reference this group by using
|
||||||
|
|
||||||
|
```json
|
||||||
|
{"$ref":"https://timelimit.io/SerializedAppLogicAction#/definitions/PingEvent"}
|
||||||
|
```
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :------- | :--- | :------- | :------- | :--------- |
|
||||||
|
|
||||||
## Definitions group SerializedUpdateInstalledAppsAction
|
## Definitions group SerializedUpdateInstalledAppsAction
|
||||||
|
|
||||||
Reference this group by using
|
Reference this group by using
|
||||||
@@ -698,7 +816,7 @@ Reference this group by using
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :-------------- | :-------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :-------------- | :-------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type-7) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/type") |
|
| [type](#type-8) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/type") |
|
||||||
| [b](#b) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-b.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/b") |
|
| [b](#b) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-b.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/b") |
|
||||||
| [d](#d-1) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/d") |
|
| [d](#d-1) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/d") |
|
||||||
| [w](#w) | `boolean` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-w.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/w") |
|
| [w](#w) | `boolean` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-w.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/w") |
|
||||||
@@ -793,7 +911,7 @@ Reference this group by using
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :---------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :---------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type-8) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type") |
|
| [type](#type-9) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type") |
|
||||||
| [packageNames](#packagenames) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames") |
|
| [packageNames](#packagenames) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames") |
|
||||||
|
|
||||||
### type
|
### type
|
||||||
@@ -850,9 +968,9 @@ Reference this group by using
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :-------------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :-------------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type-9) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/type") |
|
| [type](#type-10) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/type") |
|
||||||
| [dsn](#dsn-1) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-dsn.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/dsn") |
|
| [dsn](#dsn-1) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-dsn.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/dsn") |
|
||||||
| [deviceId](#deviceid) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/deviceId") |
|
| [deviceId](#deviceid-1) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/deviceId") |
|
||||||
| [categoryId](#categoryid-1) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/categoryId") |
|
| [categoryId](#categoryid-1) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/categoryId") |
|
||||||
| [dataType](#datatype) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-datatype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/dataType") |
|
| [dataType](#datatype) | `number` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-datatype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/dataType") |
|
||||||
| [tempKey](#tempkey-1) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-tempkey.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/tempKey") |
|
| [tempKey](#tempkey-1) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-tempkey.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/tempKey") |
|
||||||
@@ -1002,7 +1120,7 @@ Reference this group by using
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :--------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :--------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type-10) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type") |
|
| [type](#type-11) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type") |
|
||||||
|
|
||||||
### type
|
### type
|
||||||
|
|
||||||
@@ -1040,7 +1158,7 @@ Reference this group by using
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :--------------- | :------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :--------------- | :------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type-11) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type") |
|
| [type](#type-12) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type") |
|
||||||
|
|
||||||
### type
|
### type
|
||||||
|
|
||||||
@@ -1078,7 +1196,7 @@ Reference this group by using
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :-------------------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :-------------------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type-12) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type") |
|
| [type](#type-13) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type") |
|
||||||
| [removed](#removed) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed") |
|
| [removed](#removed) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed") |
|
||||||
| [updatedOrAdded](#updatedoradded) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded") |
|
| [updatedOrAdded](#updatedoradded) | `array` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded") |
|
||||||
|
|
||||||
@@ -1230,7 +1348,7 @@ Reference this group by using
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :---------------------------------------------------------- | :-------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :---------------------------------------------------------- | :-------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type-13) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type") |
|
| [type](#type-14) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type") |
|
||||||
| [protectionLevel](#protectionlevel) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel") |
|
| [protectionLevel](#protectionlevel) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel") |
|
||||||
| [usageStats](#usagestats) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats") |
|
| [usageStats](#usagestats) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats") |
|
||||||
| [notificationAccess](#notificationaccess) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess") |
|
| [notificationAccess](#notificationaccess) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess") |
|
||||||
@@ -1240,6 +1358,8 @@ Reference this group by using
|
|||||||
| [didReboot](#didreboot) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot") |
|
| [didReboot](#didreboot) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot") |
|
||||||
| [isQOrLaterNow](#isqorlaternow) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow") |
|
| [isQOrLaterNow](#isqorlaternow) | `boolean` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow") |
|
||||||
| [addedManipulationFlags](#addedmanipulationflags) | `number` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-addedmanipulationflags.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/addedManipulationFlags") |
|
| [addedManipulationFlags](#addedmanipulationflags) | `number` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-addedmanipulationflags.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/addedManipulationFlags") |
|
||||||
|
| [platformType](#platformtype) | `string` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformtype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformType") |
|
||||||
|
| [platformLevel](#platformlevel) | `number` | Optional | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformLevel") |
|
||||||
|
|
||||||
### type
|
### type
|
||||||
|
|
||||||
@@ -1470,6 +1590,42 @@ Reference this group by using
|
|||||||
|
|
||||||
`number`
|
`number`
|
||||||
|
|
||||||
|
### platformType
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`platformType`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformtype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformType")
|
||||||
|
|
||||||
|
#### platformType Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### platformLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`platformLevel`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformLevel")
|
||||||
|
|
||||||
|
#### platformLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
## Definitions group SerializedUploadDevicePublicKeyAction
|
## Definitions group SerializedUploadDevicePublicKeyAction
|
||||||
|
|
||||||
Reference this group by using
|
Reference this group by using
|
||||||
@@ -1480,7 +1636,7 @@ Reference this group by using
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :--------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :--------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type-14) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction/properties/type") |
|
| [type](#type-15) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction/properties/type") |
|
||||||
| [key](#key) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction-properties-key.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction/properties/key") |
|
| [key](#key) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction-properties-key.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction/properties/key") |
|
||||||
|
|
||||||
### type
|
### type
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# EncryptableParentPassword Schema
|
# EncryptableParentPassword Schema
|
||||||
|
|
||||||
```txt
|
```txt
|
||||||
https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword
|
https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
@@ -10,11 +10,11 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------------ |
|
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------------ |
|
||||||
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") |
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") |
|
||||||
|
|
||||||
## newPassword Type
|
## EncryptableParentPassword Type
|
||||||
|
|
||||||
`object` ([EncryptableParentPassword](serializedparentaction-definitions-encryptableparentpassword.md))
|
`object` ([EncryptableParentPassword](serializedparentaction-definitions-encryptableparentpassword.md))
|
||||||
|
|
||||||
# newPassword Properties
|
# EncryptableParentPassword Properties
|
||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :------------------------ | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :------------------------ | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
|||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in SerializedParentAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/e
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## e Type
|
||||||
|
|
||||||
|
`number`
|
||||||
@@ -28,6 +28,7 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule
|
|||||||
| [dur](#dur) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-dur.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/dur") |
|
| [dur](#dur) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-dur.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/dur") |
|
||||||
| [pause](#pause) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-pause.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/pause") |
|
| [pause](#pause) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-pause.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/pause") |
|
||||||
| [perDay](#perday) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-perday.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/perDay") |
|
| [perDay](#perday) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-perday.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/perDay") |
|
||||||
|
| [e](#e) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-e.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/e") |
|
||||||
|
|
||||||
## ruleId
|
## ruleId
|
||||||
|
|
||||||
@@ -208,3 +209,21 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule
|
|||||||
### perDay Type
|
### perDay Type
|
||||||
|
|
||||||
`boolean`
|
`boolean`
|
||||||
|
|
||||||
|
## e
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`e`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-e.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/e")
|
||||||
|
|
||||||
|
### e Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in SerializedParentAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/e
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## e Type
|
||||||
|
|
||||||
|
`number`
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in SerializedParentAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/expiresAt
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## expiresAt Type
|
||||||
|
|
||||||
|
`number`
|
||||||
@@ -28,6 +28,7 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelim
|
|||||||
| [dur](#dur) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-dur.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/dur") |
|
| [dur](#dur) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-dur.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/dur") |
|
||||||
| [pause](#pause) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-pause.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/pause") |
|
| [pause](#pause) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-pause.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/pause") |
|
||||||
| [perDay](#perday) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-perday.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/perDay") |
|
| [perDay](#perday) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-perday.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/perDay") |
|
||||||
|
| [e](#e) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-e.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/e") |
|
||||||
|
|
||||||
## type
|
## type
|
||||||
|
|
||||||
@@ -216,3 +217,21 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelim
|
|||||||
### perDay Type
|
### perDay Type
|
||||||
|
|
||||||
`boolean`
|
`boolean`
|
||||||
|
|
||||||
|
## e
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`e`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-e.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/e")
|
||||||
|
|
||||||
|
### e Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|||||||
@@ -899,6 +899,7 @@ Reference this group by using
|
|||||||
| [dur](#dur) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-dur.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/dur") |
|
| [dur](#dur) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-dur.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/dur") |
|
||||||
| [pause](#pause) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-pause.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/pause") |
|
| [pause](#pause) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-pause.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/pause") |
|
||||||
| [perDay](#perday) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-perday.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/perDay") |
|
| [perDay](#perday) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-perday.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/perDay") |
|
||||||
|
| [e](#e) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-e.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/e") |
|
||||||
|
|
||||||
### ruleId
|
### ruleId
|
||||||
|
|
||||||
@@ -1080,6 +1081,24 @@ Reference this group by using
|
|||||||
|
|
||||||
`boolean`
|
`boolean`
|
||||||
|
|
||||||
|
### e
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`e`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule-properties-e.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule/properties/e")
|
||||||
|
|
||||||
|
#### e Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
## Definitions group SerializedDeleteCategoryAction
|
## Definitions group SerializedDeleteCategoryAction
|
||||||
|
|
||||||
Reference this group by using
|
Reference this group by using
|
||||||
@@ -4397,6 +4416,7 @@ Reference this group by using
|
|||||||
| [dur](#dur-1) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-dur.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/dur") |
|
| [dur](#dur-1) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-dur.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/dur") |
|
||||||
| [pause](#pause-1) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-pause.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/pause") |
|
| [pause](#pause-1) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-pause.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/pause") |
|
||||||
| [perDay](#perday-1) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-perday.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/perDay") |
|
| [perDay](#perday-1) | `boolean` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-perday.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/perDay") |
|
||||||
|
| [e](#e-1) | `number` | Optional | cannot be null | [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-e.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/e") |
|
||||||
|
|
||||||
### type
|
### type
|
||||||
|
|
||||||
@@ -4586,6 +4606,24 @@ Reference this group by using
|
|||||||
|
|
||||||
`boolean`
|
`boolean`
|
||||||
|
|
||||||
|
### e
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`e`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedupdatetimelimitruleaction-properties-e.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction/properties/e")
|
||||||
|
|
||||||
|
#### e Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
## Definitions group SerializedUpdateUserFlagsAction
|
## Definitions group SerializedUpdateUserFlagsAction
|
||||||
|
|
||||||
Reference this group by using
|
Reference this group by using
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pLevel
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## pLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pType
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## pType Type
|
||||||
|
|
||||||
|
`string`
|
||||||
@@ -50,6 +50,8 @@ https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData
|
|||||||
| [qOrLater](#qorlater) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-qorlater.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/qOrLater") |
|
| [qOrLater](#qorlater) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-qorlater.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/qOrLater") |
|
||||||
| [mFlags](#mflags) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-mflags.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/mFlags") |
|
| [mFlags](#mflags) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-mflags.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/mFlags") |
|
||||||
| [pk](#pk) | `string` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-pk.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pk") |
|
| [pk](#pk) | `string` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-pk.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pk") |
|
||||||
|
| [pType](#ptype) | `string` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-ptype.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pType") |
|
||||||
|
| [pLevel](#plevel) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-plevel.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pLevel") |
|
||||||
|
|
||||||
## deviceId
|
## deviceId
|
||||||
|
|
||||||
@@ -718,3 +720,39 @@ https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData
|
|||||||
### pk Type
|
### pk Type
|
||||||
|
|
||||||
`string`
|
`string`
|
||||||
|
|
||||||
|
## pType
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`pType`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-ptype.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pType")
|
||||||
|
|
||||||
|
### pType Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## pLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`pLevel`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-plevel.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pLevel")
|
||||||
|
|
||||||
|
### pLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/deviceId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/token
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## token Type
|
||||||
|
|
||||||
|
`string`
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
# Untitled string in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/type
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## type Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## type Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------- | :---------- |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
# ServerPing Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/definitions/ServerPing
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## ServerPing Type
|
||||||
|
|
||||||
|
`object` ([ServerPing](serverdatastatus-definitions-serverping.md))
|
||||||
|
|
||||||
|
# ServerPing Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :-------------------- | :------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [deviceId](#deviceid) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverping-properties-deviceid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/deviceId") |
|
||||||
|
| [token](#token) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverping-properties-token.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/token") |
|
||||||
|
| [type](#type) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverping-properties-type.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/type") |
|
||||||
|
|
||||||
|
## deviceId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`deviceId`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverping-properties-deviceid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/deviceId")
|
||||||
|
|
||||||
|
### deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## token
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`token`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverping-properties-token.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/token")
|
||||||
|
|
||||||
|
### token Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`type`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverping-properties-type.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/type")
|
||||||
|
|
||||||
|
### type Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### type Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------- | :---------- |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled array in ServerDataStatus Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/ServerDataStatus#/properties/pings
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------ |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [ServerDataStatus.schema.json\*](ServerDataStatus.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## pings Type
|
||||||
|
|
||||||
|
`object[]` ([ServerPing](serverdatastatus-definitions-serverping.md))
|
||||||
@@ -30,6 +30,7 @@ https://timelimit.io/ServerDataStatus
|
|||||||
| [users](#users) | `object` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serveruserlist.md "https://timelimit.io/ServerDataStatus#/properties/users") |
|
| [users](#users) | `object` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serveruserlist.md "https://timelimit.io/ServerDataStatus#/properties/users") |
|
||||||
| [krq](#krq) | `array` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-properties-krq.md "https://timelimit.io/ServerDataStatus#/properties/krq") |
|
| [krq](#krq) | `array` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-properties-krq.md "https://timelimit.io/ServerDataStatus#/properties/krq") |
|
||||||
| [kr](#kr) | `array` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-properties-kr.md "https://timelimit.io/ServerDataStatus#/properties/kr") |
|
| [kr](#kr) | `array` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-properties-kr.md "https://timelimit.io/ServerDataStatus#/properties/kr") |
|
||||||
|
| [pings](#pings) | `array` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-properties-pings.md "https://timelimit.io/ServerDataStatus#/properties/pings") |
|
||||||
| [dh](#dh) | `object` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdhkey.md "https://timelimit.io/ServerDataStatus#/properties/dh") |
|
| [dh](#dh) | `object` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdhkey.md "https://timelimit.io/ServerDataStatus#/properties/dh") |
|
||||||
| [u2f](#u2f) | `object` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-u2fdata.md "https://timelimit.io/ServerDataStatus#/properties/u2f") |
|
| [u2f](#u2f) | `object` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-u2fdata.md "https://timelimit.io/ServerDataStatus#/properties/u2f") |
|
||||||
| [fullVersion](#fullversion) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-properties-fullversion.md "https://timelimit.io/ServerDataStatus#/properties/fullVersion") |
|
| [fullVersion](#fullversion) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-properties-fullversion.md "https://timelimit.io/ServerDataStatus#/properties/fullVersion") |
|
||||||
@@ -252,6 +253,24 @@ https://timelimit.io/ServerDataStatus
|
|||||||
|
|
||||||
`object[]` ([ServerKeyResponse](serverdatastatus-definitions-serverkeyresponse.md))
|
`object[]` ([ServerKeyResponse](serverdatastatus-definitions-serverkeyresponse.md))
|
||||||
|
|
||||||
|
## pings
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`pings`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `object[]` ([ServerPing](serverdatastatus-definitions-serverping.md))
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-properties-pings.md "https://timelimit.io/ServerDataStatus#/properties/pings")
|
||||||
|
|
||||||
|
### pings Type
|
||||||
|
|
||||||
|
`object[]` ([ServerPing](serverdatastatus-definitions-serverping.md))
|
||||||
|
|
||||||
## dh
|
## dh
|
||||||
|
|
||||||
|
|
||||||
@@ -435,6 +454,8 @@ Reference this group by using
|
|||||||
| [qOrLater](#qorlater) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-qorlater.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/qOrLater") |
|
| [qOrLater](#qorlater) | `boolean` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-qorlater.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/qOrLater") |
|
||||||
| [mFlags](#mflags) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-mflags.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/mFlags") |
|
| [mFlags](#mflags) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-mflags.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/mFlags") |
|
||||||
| [pk](#pk) | `string` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-pk.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pk") |
|
| [pk](#pk) | `string` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-pk.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pk") |
|
||||||
|
| [pType](#ptype) | `string` | Optional | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-ptype.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pType") |
|
||||||
|
| [pLevel](#plevel) | `number` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-plevel.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pLevel") |
|
||||||
|
|
||||||
### deviceId
|
### deviceId
|
||||||
|
|
||||||
@@ -1104,6 +1125,42 @@ Reference this group by using
|
|||||||
|
|
||||||
`string`
|
`string`
|
||||||
|
|
||||||
|
### pType
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`pType`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-ptype.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pType")
|
||||||
|
|
||||||
|
#### pType Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### pLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`pLevel`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverdevicedata-properties-plevel.md "https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData/properties/pLevel")
|
||||||
|
|
||||||
|
#### pLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
## Definitions group ProtectionLevel
|
## Definitions group ProtectionLevel
|
||||||
|
|
||||||
Reference this group by using
|
Reference this group by using
|
||||||
@@ -3411,6 +3468,83 @@ Reference this group by using
|
|||||||
|
|
||||||
`string`
|
`string`
|
||||||
|
|
||||||
|
## Definitions group ServerPing
|
||||||
|
|
||||||
|
Reference this group by using
|
||||||
|
|
||||||
|
```json
|
||||||
|
{"$ref":"https://timelimit.io/ServerDataStatus#/definitions/ServerPing"}
|
||||||
|
```
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :---------------------- | :------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [deviceId](#deviceid-4) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverping-properties-deviceid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/deviceId") |
|
||||||
|
| [token](#token) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverping-properties-token.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/token") |
|
||||||
|
| [type](#type-2) | `string` | Required | cannot be null | [ServerDataStatus](serverdatastatus-definitions-serverping-properties-type.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/type") |
|
||||||
|
|
||||||
|
### deviceId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`deviceId`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverping-properties-deviceid.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/deviceId")
|
||||||
|
|
||||||
|
#### deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### token
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`token`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverping-properties-token.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/token")
|
||||||
|
|
||||||
|
#### token Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`type`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [ServerDataStatus](serverdatastatus-definitions-serverping-properties-type.md "https://timelimit.io/ServerDataStatus#/definitions/ServerPing/properties/type")
|
||||||
|
|
||||||
|
#### type Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
#### type Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------- | :---------- |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
|
|
||||||
## Definitions group ServerDhKey
|
## Definitions group ServerDhKey
|
||||||
|
|
||||||
Reference this group by using
|
Reference this group by using
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled number in SignIntoFamilyRequest Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SignIntoFamilyRequest#/properties/clientLevel
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SignIntoFamilyRequest.schema.json\*](SignIntoFamilyRequest.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## clientLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
@@ -21,6 +21,7 @@ https://timelimit.io/SignIntoFamilyRequest
|
|||||||
| [mailAuthToken](#mailauthtoken) | `string` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-properties-mailauthtoken.md "https://timelimit.io/SignIntoFamilyRequest#/properties/mailAuthToken") |
|
| [mailAuthToken](#mailauthtoken) | `string` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-properties-mailauthtoken.md "https://timelimit.io/SignIntoFamilyRequest#/properties/mailAuthToken") |
|
||||||
| [parentDevice](#parentdevice) | `object` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-definitions-newdeviceinfo.md "https://timelimit.io/SignIntoFamilyRequest#/properties/parentDevice") |
|
| [parentDevice](#parentdevice) | `object` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-definitions-newdeviceinfo.md "https://timelimit.io/SignIntoFamilyRequest#/properties/parentDevice") |
|
||||||
| [deviceName](#devicename) | `string` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-properties-devicename.md "https://timelimit.io/SignIntoFamilyRequest#/properties/deviceName") |
|
| [deviceName](#devicename) | `string` | Required | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-properties-devicename.md "https://timelimit.io/SignIntoFamilyRequest#/properties/deviceName") |
|
||||||
|
| [clientLevel](#clientlevel) | `number` | Optional | cannot be null | [SignIntoFamilyRequest](signintofamilyrequest-properties-clientlevel.md "https://timelimit.io/SignIntoFamilyRequest#/properties/clientLevel") |
|
||||||
|
|
||||||
## mailAuthToken
|
## mailAuthToken
|
||||||
|
|
||||||
@@ -76,6 +77,24 @@ https://timelimit.io/SignIntoFamilyRequest
|
|||||||
|
|
||||||
`string`
|
`string`
|
||||||
|
|
||||||
|
## clientLevel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`clientLevel`
|
||||||
|
|
||||||
|
* is optional
|
||||||
|
|
||||||
|
* Type: `number`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SignIntoFamilyRequest](signintofamilyrequest-properties-clientlevel.md "https://timelimit.io/SignIntoFamilyRequest#/properties/clientLevel")
|
||||||
|
|
||||||
|
### clientLevel Type
|
||||||
|
|
||||||
|
`number`
|
||||||
|
|
||||||
# SignIntoFamilyRequest Definitions
|
# SignIntoFamilyRequest Definitions
|
||||||
|
|
||||||
## Definitions group NewDeviceInfo
|
## Definitions group NewDeviceInfo
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
// @ts-check
|
||||||
|
|
||||||
|
import eslint from '@eslint/js';
|
||||||
|
import { defineConfig } from 'eslint/config';
|
||||||
|
import tseslint from 'typescript-eslint';
|
||||||
|
|
||||||
|
export default defineConfig(
|
||||||
|
eslint.configs.recommended,
|
||||||
|
tseslint.configs.recommended,
|
||||||
|
{
|
||||||
|
ignores: ['build', 'scripts']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
rules: {
|
||||||
|
'@typescript-eslint/no-unused-vars': ['warn', { caughtErrors: 'none' }]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
@@ -0,0 +1,192 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>
|
||||||
|
</title>
|
||||||
|
<!--[if !mso]><!-->
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<!--<![endif]-->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<style type="text/css">
|
||||||
|
#outlook a {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-ms-text-size-adjust: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
table,
|
||||||
|
td {
|
||||||
|
border-collapse: collapse;
|
||||||
|
mso-table-lspace: 0pt;
|
||||||
|
mso-table-rspace: 0pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
border: 0;
|
||||||
|
height: auto;
|
||||||
|
line-height: 100%;
|
||||||
|
outline: none;
|
||||||
|
text-decoration: none;
|
||||||
|
-ms-interpolation-mode: bicubic;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
display: block;
|
||||||
|
margin: 13px 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<!--[if mso]>
|
||||||
|
<noscript>
|
||||||
|
<xml>
|
||||||
|
<o:OfficeDocumentSettings>
|
||||||
|
<o:AllowPNG/>
|
||||||
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
|
</o:OfficeDocumentSettings>
|
||||||
|
</xml>
|
||||||
|
</noscript>
|
||||||
|
<![endif]-->
|
||||||
|
<!--[if lte mso 11]>
|
||||||
|
<style type="text/css">
|
||||||
|
.mj-outlook-group-fix { width:100% !important; }
|
||||||
|
</style>
|
||||||
|
<![endif]-->
|
||||||
|
<!--[if !mso]><!-->
|
||||||
|
<!--<![endif]-->
|
||||||
|
<style type="text/css">
|
||||||
|
@media only screen and (min-width:480px) {
|
||||||
|
.mj-column-per-100 {
|
||||||
|
width: 100% !important;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style media="screen and (min-width:480px)">
|
||||||
|
.moz-text-html .mj-column-per-100 {
|
||||||
|
width: 100% !important;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style type="text/css">
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="word-spacing:normal;">
|
||||||
|
<div style="">
|
||||||
|
<!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" bgcolor="#009688" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
||||||
|
<div style="background:#009688;background-color:#009688;margin:0px auto;max-width:600px;">
|
||||||
|
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#009688;background-color:#009688;width:100%;">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
|
||||||
|
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]-->
|
||||||
|
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
||||||
|
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
||||||
|
<div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:20px;line-height:1;text-align:left;color:#ffffff;">TimeLimit</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--[if mso | IE]></td></tr></table><![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
||||||
|
<div style="margin:0px auto;max-width:600px;">
|
||||||
|
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
|
||||||
|
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]-->
|
||||||
|
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
||||||
|
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
||||||
|
<div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:left;color:#000000;">
|
||||||
|
<p> Sie haben eine Löschung Ihres Benutzerkontos angefordert. Diese wurde soeben durchgeführt. </p>
|
||||||
|
<p> You requested the deletion of your account. This deletion is finished now. </p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--[if mso | IE]></td></tr></table><![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
||||||
|
<div style="margin:0px auto;max-width:600px;">
|
||||||
|
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
|
||||||
|
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]-->
|
||||||
|
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
||||||
|
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td align="center" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
||||||
|
<p style="border-top:dashed 1px lightgrey;font-size:1px;margin:0px auto;width:100%;">
|
||||||
|
</p>
|
||||||
|
<!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:dashed 1px lightgrey;font-size:1px;margin:0px auto;width:550px;" role="presentation" width="550px" ><tr><td style="height:0;line-height:0;">
|
||||||
|
</td></tr></table><![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--[if mso | IE]></td></tr></table><![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
||||||
|
<div style="margin:0px auto;max-width:600px;">
|
||||||
|
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
|
||||||
|
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]-->
|
||||||
|
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
||||||
|
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
||||||
|
<div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:left;color:#000000;">
|
||||||
|
<p> Sie erhalten diese Nachricht aufgrund Ihrer Anfrage. Falls Sie Fragen haben können Sie einfach auf diese E-Mail antworten. </p>
|
||||||
|
<p> You got this mail due to your request. If you have got any questions, then you can reply to this message. </p>
|
||||||
|
<p> © <%= mailimprint %> </p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--[if mso | IE]></td></tr></table><![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--[if mso | IE]></td></tr></table><![endif]-->
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
<mjml>
|
||||||
|
<mj-body>
|
||||||
|
<mj-section background-color="#009688">
|
||||||
|
<mj-column>
|
||||||
|
<mj-text font-size="20px" color="#ffffff">TimeLimit</mj-text>
|
||||||
|
</mj-column>
|
||||||
|
</mj-section>
|
||||||
|
<mj-section>
|
||||||
|
<mj-column>
|
||||||
|
<mj-text>
|
||||||
|
<p>
|
||||||
|
Sie haben eine Löschung Ihres Benutzerkontos angefordert. Diese wurde soeben durchgeführt.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
You requested the deletion of your account. This deletion is finished now.
|
||||||
|
</p>
|
||||||
|
</mj-text>
|
||||||
|
</mj-column>
|
||||||
|
</mj-section>
|
||||||
|
<mj-section>
|
||||||
|
<mj-column>
|
||||||
|
<mj-divider border-width="1px" border-style="dashed" border-color="lightgrey" />
|
||||||
|
</mj-column>
|
||||||
|
</mj-section>
|
||||||
|
<mj-section>
|
||||||
|
<mj-column>
|
||||||
|
<mj-text>
|
||||||
|
<p>
|
||||||
|
Sie erhalten diese Nachricht aufgrund Ihrer Anfrage.
|
||||||
|
Falls Sie Fragen haben können Sie einfach auf diese E-Mail antworten.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
You got this mail due to your request.
|
||||||
|
If you have got any questions, then you can reply to this message.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
© <%= mailimprint %>
|
||||||
|
</p>
|
||||||
|
</mj-text>
|
||||||
|
</mj-column>
|
||||||
|
</mj-section>
|
||||||
|
</mj-body>
|
||||||
|
</mjml>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Konto gelöscht/Account deleted
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
Sie haben eine Löschung Ihres Benutzerkontos angefordert. Diese wurde soeben durchgeführt.
|
||||||
|
|
||||||
|
You requested the deletion of your account. This deletion is finished now.
|
||||||
|
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
Sie erhalten diese Nachricht aufgrund Ihrer Anfrage.
|
||||||
|
Falls Sie Fragen haben können Sie einfach auf diese E-Mail antworten.
|
||||||
|
|
||||||
|
You got this mail due to your request.
|
||||||
|
If you have got any questions, then you can reply to this message.
|
||||||
|
|
||||||
|
<C> <%- mailimprint %>
|
||||||
Generated
+4169
-4141
File diff suppressed because it is too large
Load Diff
+13
-16
@@ -6,10 +6,10 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node ./build/index.js",
|
"start": "node ./build/index.js",
|
||||||
"test": "node scripts/test-launch-with-different-databases.js",
|
"test": "node scripts/test-launch-with-different-databases.js",
|
||||||
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
"lint": "eslint .",
|
||||||
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
"lint:fix": "eslint . --fix",
|
||||||
"build": "npm run build:clean && npm run build:json && npm run build:ts && npm run lint && npm run build:doc",
|
"build": "npm run build:clean && npm run build:json && npm run build:ts && npm run lint && npm run build:doc",
|
||||||
"build:clean": "rimraf build",
|
"build:clean": "rm -rf build",
|
||||||
"build:json": "node ./scripts/build-schemas.js",
|
"build:json": "node ./scripts/build-schemas.js",
|
||||||
"build:ts": "tsc",
|
"build:ts": "tsc",
|
||||||
"build:doc": "npm run build:doc:json",
|
"build:doc": "npm run build:doc:json",
|
||||||
@@ -29,7 +29,8 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/timelimit.io/timelimit-server-2018#README",
|
"homepage": "https://gitlab.com/timelimit.io/timelimit-server-2018#README",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@adobe/jsonschema2md": "^7.0.0",
|
"@adobe/jsonschema2md": "^8.0.8",
|
||||||
|
"@eslint/js": "^10.0.1",
|
||||||
"@types/basic-auth": "^1.1.3",
|
"@types/basic-auth": "^1.1.3",
|
||||||
"@types/body-parser": "^1.19.0",
|
"@types/body-parser": "^1.19.0",
|
||||||
"@types/ejs": "^3.1.0",
|
"@types/ejs": "^3.1.0",
|
||||||
@@ -38,16 +39,13 @@
|
|||||||
"@types/lodash": "^4.14.166",
|
"@types/lodash": "^4.14.166",
|
||||||
"@types/node": "^16.11.59",
|
"@types/node": "^16.11.59",
|
||||||
"@types/nodemailer": "^6.4.4",
|
"@types/nodemailer": "^6.4.4",
|
||||||
"@types/umzug": "^2.3.0",
|
"eslint": "^10.0.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
"typescript": "^5.5.4",
|
||||||
"@typescript-eslint/parser": "^5.10.0",
|
"typescript-eslint": "^8.56.0",
|
||||||
"eslint": "^8.7.0",
|
|
||||||
"rimraf": "^3.0.2",
|
|
||||||
"typescript": "^4.4.4",
|
|
||||||
"typescript-json-schema": "^0.52.0"
|
"typescript-json-schema": "^0.52.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ajv": "^7.0.2",
|
"ajv": "^8.18.0",
|
||||||
"basic-auth": "^2.0.1",
|
"basic-auth": "^2.0.1",
|
||||||
"body-parser": "^1.19.0",
|
"body-parser": "^1.19.0",
|
||||||
"ejs": "^3.1.5",
|
"ejs": "^3.1.5",
|
||||||
@@ -57,16 +55,15 @@
|
|||||||
"jose": "^4.9.3",
|
"jose": "^4.9.3",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"mariadb": "^2.5.2",
|
"mariadb": "^2.5.2",
|
||||||
"nodemailer": "^6.7.2",
|
"nodemailer": "^9.0.4",
|
||||||
"pg": "^8.5.1",
|
"pg": "^8.5.1",
|
||||||
"pg-hstore": "^2.3.3",
|
"pg-hstore": "^2.3.3",
|
||||||
"rate-limiter-flexible": "^2.1.15",
|
"rate-limiter-flexible": "^2.1.15",
|
||||||
"sequelize": "^6.11.0",
|
"sequelize": "^6.25.5",
|
||||||
"socket.io": "^4.0.1",
|
"socket.io": "^4.0.1",
|
||||||
"sqlite3": "^4.0.0",
|
"umzug": "^3.8.1"
|
||||||
"umzug": "^2.3.0"
|
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"sqlite3": "^4.0.0"
|
"sqlite3": "npm:@vscode/sqlite3@^5.1.12-vscode"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2024 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -42,7 +42,9 @@ const types = [
|
|||||||
'RequestIdentityTokenRequest',
|
'RequestIdentityTokenRequest',
|
||||||
'RequestWithAuthToken',
|
'RequestWithAuthToken',
|
||||||
'SendMailLoginCodeRequest',
|
'SendMailLoginCodeRequest',
|
||||||
'SignInByMailCodeRequest'
|
'SignInByMailCodeRequest',
|
||||||
|
'IdentityTokenPayload',
|
||||||
|
'DeleteAccountPayload',
|
||||||
]
|
]
|
||||||
|
|
||||||
const docOnlyTypes = [
|
const docOnlyTypes = [
|
||||||
@@ -56,7 +58,9 @@ const allTypes = [
|
|||||||
|
|
||||||
const settings = {
|
const settings = {
|
||||||
required: true,
|
required: true,
|
||||||
noExtraProps: true
|
noExtraProps: true,
|
||||||
|
// otherwise it finds errors in dependencies that we don't care about
|
||||||
|
ignoreErrors: true
|
||||||
};
|
};
|
||||||
|
|
||||||
const compilerOptions = {
|
const compilerOptions = {
|
||||||
|
|||||||
@@ -24,6 +24,8 @@ const { spawnAsync } = require('../process.js')
|
|||||||
const { sleep } = require('../sleep.js')
|
const { sleep } = require('../sleep.js')
|
||||||
|
|
||||||
async function startMariadb() {
|
async function startMariadb() {
|
||||||
|
const osUsername = require('os').userInfo().username
|
||||||
|
|
||||||
try { await mkdirAsync(tempDir) } catch (ex) {/* ignore */}
|
try { await mkdirAsync(tempDir) } catch (ex) {/* ignore */}
|
||||||
|
|
||||||
const instanceDir = resolve(tempDir, generateShortToken())
|
const instanceDir = resolve(tempDir, generateShortToken())
|
||||||
@@ -60,12 +62,12 @@ async function startMariadb() {
|
|||||||
|
|
||||||
for (command of commands) {
|
for (command of commands) {
|
||||||
console.log(command)
|
console.log(command)
|
||||||
await spawnAsync('mysql', ['-S', socketPath, '-u', 'root', '-e', command], { stdio: 'inherit' })
|
await spawnAsync('mysql', ['-S', socketPath, '-u', osUsername, '-e', command], { stdio: 'inherit' })
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
shutdown: () => {
|
shutdown: () => {
|
||||||
spawnAsync('mysql', ['-S', socketPath, '-u', 'root', '-e', 'SHUTDOWN;'], { stdio: 'inherit' }).catch((ex) => {
|
spawnAsync('mysql', ['-S', socketPath, '-u', osUsername, '-e', 'SHUTDOWN;'], { stdio: 'inherit' }).catch((ex) => {
|
||||||
console.warn(ex)
|
console.warn(ex)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ async function startPostgres() {
|
|||||||
const password = generateToken() // this database accepts anything
|
const password = generateToken() // this database accepts anything
|
||||||
|
|
||||||
await spawnAsync('createuser', ['-h', socketDir, username], { stdio: 'inherit' })
|
await spawnAsync('createuser', ['-h', socketDir, username], { stdio: 'inherit' })
|
||||||
await spawnAsync('createdb', ['-h', socketDir, database], { stdio: 'inherit' })
|
await spawnAsync('createdb', ['-h', socketDir, '--owner', username, database], { stdio: 'inherit' })
|
||||||
|
|
||||||
return {
|
return {
|
||||||
shutdown: () => task.kill('SIGINT'),
|
shutdown: () => task.kill('SIGINT'),
|
||||||
|
|||||||
+2
-1
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -78,6 +78,7 @@ export { UpdateTimelimitRuleAction } from './updatetimelimitrule'
|
|||||||
export { UpdateUserFlagsAction } from './updateuserflags'
|
export { UpdateUserFlagsAction } from './updateuserflags'
|
||||||
export { UpdateUserLimitLoginCategory } from './updateuserlimitlogincategory'
|
export { UpdateUserLimitLoginCategory } from './updateuserlimitlogincategory'
|
||||||
export { MarkTaskPendingAction } from './marktaskpendingaction'
|
export { MarkTaskPendingAction } from './marktaskpendingaction'
|
||||||
|
export { PingAction } from './ping'
|
||||||
export { DeleteChildTaskAction } from './deletechildtaskaction'
|
export { DeleteChildTaskAction } from './deletechildtaskaction'
|
||||||
export { UpdateChildTaskAction } from './updatechildtaskaction'
|
export { UpdateChildTaskAction } from './updatechildtaskaction'
|
||||||
export { ReviewChildTaskAction } from './reviewchildtaskaction'
|
export { ReviewChildTaskAction } from './reviewchildtaskaction'
|
||||||
|
|||||||
@@ -0,0 +1,55 @@
|
|||||||
|
/*
|
||||||
|
* server component for the TimeLimit App
|
||||||
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, version 3 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { AppLogicAction } from './basetypes'
|
||||||
|
import { assertIdWithinFamily } from './meta/util'
|
||||||
|
|
||||||
|
const actionType = 'PingAction'
|
||||||
|
|
||||||
|
export class PingAction extends AppLogicAction {
|
||||||
|
readonly deviceId: string
|
||||||
|
readonly event: PingEvent
|
||||||
|
readonly token: string
|
||||||
|
|
||||||
|
constructor ({ deviceId, event, token }: {
|
||||||
|
deviceId: string
|
||||||
|
event: PingEvent
|
||||||
|
token: string
|
||||||
|
}) {
|
||||||
|
super()
|
||||||
|
|
||||||
|
assertIdWithinFamily({ actionType, field: 'deviceId', value: deviceId })
|
||||||
|
assertIdWithinFamily({ actionType, field: 'token', value: token })
|
||||||
|
|
||||||
|
this.deviceId = deviceId
|
||||||
|
this.event = event
|
||||||
|
this.token = token
|
||||||
|
}
|
||||||
|
|
||||||
|
static parse = ({ deviceId, event, token }: SerializedPingAction) => (
|
||||||
|
new PingAction({ deviceId, event, token })
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SerializedPingAction {
|
||||||
|
type: 'PING'
|
||||||
|
deviceId: string
|
||||||
|
event: PingEvent
|
||||||
|
token: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export type PingEvent = 'ping' | 'pong' | 'clear'
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -24,6 +24,7 @@ import { ForceSyncAction, SerializedForceSyncAction } from '../forcesync'
|
|||||||
import { ReplyToKeyRequestAction, SerializedReplyToKeyRequestAction } from '../replytokeyrequest'
|
import { ReplyToKeyRequestAction, SerializedReplyToKeyRequestAction } from '../replytokeyrequest'
|
||||||
import { MarkTaskPendingAction, SerializedMarkTaskPendingAction } from '../marktaskpendingaction'
|
import { MarkTaskPendingAction, SerializedMarkTaskPendingAction } from '../marktaskpendingaction'
|
||||||
import { UnknownActionTypeException } from '../meta/exception'
|
import { UnknownActionTypeException } from '../meta/exception'
|
||||||
|
import { PingAction, SerializedPingAction } from '../ping'
|
||||||
import { UpdateInstalledAppsAction, SerializedUpdateInstalledAppsAction } from '../updateinstalledapps'
|
import { UpdateInstalledAppsAction, SerializedUpdateInstalledAppsAction } from '../updateinstalledapps'
|
||||||
import { RemoveInstalledAppsAction, SerializedRemoveInstalledAppsAction } from '../removeinstalledapps'
|
import { RemoveInstalledAppsAction, SerializedRemoveInstalledAppsAction } from '../removeinstalledapps'
|
||||||
import { SendKeyRequestAction, SerializedSendKeyRequestAction } from '../sendkeyrequest'
|
import { SendKeyRequestAction, SerializedSendKeyRequestAction } from '../sendkeyrequest'
|
||||||
@@ -41,6 +42,7 @@ export type SerializedAppLogicAction =
|
|||||||
SerializedForceSyncAction |
|
SerializedForceSyncAction |
|
||||||
SerializedReplyToKeyRequestAction |
|
SerializedReplyToKeyRequestAction |
|
||||||
SerializedMarkTaskPendingAction |
|
SerializedMarkTaskPendingAction |
|
||||||
|
SerializedPingAction |
|
||||||
SerializedUpdateInstalledAppsAction |
|
SerializedUpdateInstalledAppsAction |
|
||||||
SerializedRemoveInstalledAppsAction |
|
SerializedRemoveInstalledAppsAction |
|
||||||
SerializedSendKeyRequestAction |
|
SerializedSendKeyRequestAction |
|
||||||
@@ -65,6 +67,8 @@ export const parseAppLogicAction = (serialized: SerializedAppLogicAction): AppLo
|
|||||||
return ReplyToKeyRequestAction.parse(serialized)
|
return ReplyToKeyRequestAction.parse(serialized)
|
||||||
} else if (serialized.type === 'MARK_TASK_PENDING') {
|
} else if (serialized.type === 'MARK_TASK_PENDING') {
|
||||||
return MarkTaskPendingAction.parse(serialized)
|
return MarkTaskPendingAction.parse(serialized)
|
||||||
|
} else if (serialized.type === 'PING') {
|
||||||
|
return PingAction.parse(serialized)
|
||||||
} else if (serialized.type === 'UPDATE_INSTALLED_APPS') {
|
} else if (serialized.type === 'UPDATE_INSTALLED_APPS') {
|
||||||
return UpdateInstalledAppsAction.parse(serialized)
|
return UpdateInstalledAppsAction.parse(serialized)
|
||||||
} else if (serialized.type === 'REMOVE_INSTALLED_APPS') {
|
} else if (serialized.type === 'REMOVE_INSTALLED_APPS') {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2023 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -15,6 +15,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { minPlatformLevel, maxPlatformLevel, minPlatformTypeLength, maxPlatformTypeLength } from '../database/device'
|
||||||
import { NewPermissionStatus } from '../model/newpermissionstatus'
|
import { NewPermissionStatus } from '../model/newpermissionstatus'
|
||||||
import { ProtectionLevel } from '../model/protectionlevel'
|
import { ProtectionLevel } from '../model/protectionlevel'
|
||||||
import { RuntimePermissionStatus } from '../model/runtimepermissionstatus'
|
import { RuntimePermissionStatus } from '../model/runtimepermissionstatus'
|
||||||
@@ -33,6 +34,8 @@ export class UpdateDeviceStatusAction extends AppLogicAction {
|
|||||||
readonly didReboot: boolean
|
readonly didReboot: boolean
|
||||||
readonly isQOrLaterNow: boolean
|
readonly isQOrLaterNow: boolean
|
||||||
readonly addedManipulationFlags: number
|
readonly addedManipulationFlags: number
|
||||||
|
readonly platformType?: string
|
||||||
|
readonly platformLevel?: number
|
||||||
|
|
||||||
constructor ({
|
constructor ({
|
||||||
newProtetionLevel,
|
newProtetionLevel,
|
||||||
@@ -43,7 +46,9 @@ export class UpdateDeviceStatusAction extends AppLogicAction {
|
|||||||
newAppVersion,
|
newAppVersion,
|
||||||
didReboot,
|
didReboot,
|
||||||
isQOrLaterNow,
|
isQOrLaterNow,
|
||||||
addedManipulationFlags
|
addedManipulationFlags,
|
||||||
|
platformType,
|
||||||
|
platformLevel
|
||||||
}: {
|
}: {
|
||||||
newProtetionLevel?: ProtectionLevel
|
newProtetionLevel?: ProtectionLevel
|
||||||
newUsageStatsPermissionStatus?: RuntimePermissionStatus
|
newUsageStatsPermissionStatus?: RuntimePermissionStatus
|
||||||
@@ -54,6 +59,8 @@ export class UpdateDeviceStatusAction extends AppLogicAction {
|
|||||||
didReboot: boolean
|
didReboot: boolean
|
||||||
isQOrLaterNow: boolean
|
isQOrLaterNow: boolean
|
||||||
addedManipulationFlags: number
|
addedManipulationFlags: number
|
||||||
|
platformType?: string
|
||||||
|
platformLevel?: number
|
||||||
}) {
|
}) {
|
||||||
super()
|
super()
|
||||||
|
|
||||||
@@ -67,6 +74,20 @@ export class UpdateDeviceStatusAction extends AppLogicAction {
|
|||||||
|
|
||||||
assertSafeInteger({ actionType, field: 'addedManipulationFlags', value: addedManipulationFlags })
|
assertSafeInteger({ actionType, field: 'addedManipulationFlags', value: addedManipulationFlags })
|
||||||
|
|
||||||
|
if (platformType !== undefined) {
|
||||||
|
if (platformType.length < minPlatformTypeLength || platformType.length > maxPlatformTypeLength) {
|
||||||
|
throwOutOfRange({ actionType, field: 'platformType.length', value: platformType.length })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (platformLevel !== undefined) {
|
||||||
|
assertSafeInteger({ actionType, field: 'platformLevel', value: platformLevel })
|
||||||
|
|
||||||
|
if (platformLevel < minPlatformLevel || platformLevel > maxPlatformLevel) {
|
||||||
|
throwOutOfRange({ actionType, field: 'platformLevel', value: platformLevel })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.newProtetionLevel = newProtetionLevel
|
this.newProtetionLevel = newProtetionLevel
|
||||||
this.newUsageStatsPermissionStatus = newUsageStatsPermissionStatus
|
this.newUsageStatsPermissionStatus = newUsageStatsPermissionStatus
|
||||||
this.newNotificationAccessPermission = newNotificationAccessPermission
|
this.newNotificationAccessPermission = newNotificationAccessPermission
|
||||||
@@ -76,6 +97,8 @@ export class UpdateDeviceStatusAction extends AppLogicAction {
|
|||||||
this.didReboot = didReboot
|
this.didReboot = didReboot
|
||||||
this.isQOrLaterNow = isQOrLaterNow
|
this.isQOrLaterNow = isQOrLaterNow
|
||||||
this.addedManipulationFlags = addedManipulationFlags
|
this.addedManipulationFlags = addedManipulationFlags
|
||||||
|
this.platformType = platformType
|
||||||
|
this.platformLevel = platformLevel
|
||||||
}
|
}
|
||||||
|
|
||||||
static parse = ({
|
static parse = ({
|
||||||
@@ -87,7 +110,9 @@ export class UpdateDeviceStatusAction extends AppLogicAction {
|
|||||||
appVersion,
|
appVersion,
|
||||||
didReboot,
|
didReboot,
|
||||||
isQOrLaterNow,
|
isQOrLaterNow,
|
||||||
addedManipulationFlags
|
addedManipulationFlags,
|
||||||
|
platformType,
|
||||||
|
platformLevel
|
||||||
}: SerializedUpdateDeviceStatusAction) => (
|
}: SerializedUpdateDeviceStatusAction) => (
|
||||||
new UpdateDeviceStatusAction({
|
new UpdateDeviceStatusAction({
|
||||||
newProtetionLevel: protectionLevel,
|
newProtetionLevel: protectionLevel,
|
||||||
@@ -98,7 +123,9 @@ export class UpdateDeviceStatusAction extends AppLogicAction {
|
|||||||
newAppVersion: appVersion,
|
newAppVersion: appVersion,
|
||||||
didReboot: !!didReboot,
|
didReboot: !!didReboot,
|
||||||
isQOrLaterNow: !!isQOrLaterNow,
|
isQOrLaterNow: !!isQOrLaterNow,
|
||||||
addedManipulationFlags: addedManipulationFlags || 0
|
addedManipulationFlags: addedManipulationFlags || 0,
|
||||||
|
platformType: platformType,
|
||||||
|
platformLevel: platformLevel
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -114,4 +141,6 @@ export interface SerializedUpdateDeviceStatusAction {
|
|||||||
didReboot?: boolean
|
didReboot?: boolean
|
||||||
isQOrLaterNow?: boolean
|
isQOrLaterNow?: boolean
|
||||||
addedManipulationFlags?: number
|
addedManipulationFlags?: number
|
||||||
|
platformType?: string
|
||||||
|
platformLevel?: number
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2020 Jonas Lochmann
|
* Copyright (C) 2019 - 2024 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -32,11 +32,12 @@ export class UpdateTimelimitRuleAction extends ParentAction {
|
|||||||
readonly sessionDurationMilliseconds: number
|
readonly sessionDurationMilliseconds: number
|
||||||
readonly sessionPauseMilliseconds: number
|
readonly sessionPauseMilliseconds: number
|
||||||
readonly perDay: boolean
|
readonly perDay: boolean
|
||||||
|
readonly expiresAt?: number
|
||||||
|
|
||||||
constructor ({
|
constructor ({
|
||||||
ruleId, maximumTimeInMillis, dayMask, applyToExtraTimeUsage,
|
ruleId, maximumTimeInMillis, dayMask, applyToExtraTimeUsage,
|
||||||
start, end, sessionDurationMilliseconds, sessionPauseMilliseconds,
|
start, end, sessionDurationMilliseconds, sessionPauseMilliseconds,
|
||||||
perDay
|
perDay, expiresAt
|
||||||
}: {
|
}: {
|
||||||
ruleId: string
|
ruleId: string
|
||||||
maximumTimeInMillis: number
|
maximumTimeInMillis: number
|
||||||
@@ -47,6 +48,7 @@ export class UpdateTimelimitRuleAction extends ParentAction {
|
|||||||
sessionDurationMilliseconds: number
|
sessionDurationMilliseconds: number
|
||||||
sessionPauseMilliseconds: number
|
sessionPauseMilliseconds: number
|
||||||
perDay: boolean
|
perDay: boolean
|
||||||
|
expiresAt?: number
|
||||||
}) {
|
}) {
|
||||||
super()
|
super()
|
||||||
|
|
||||||
@@ -59,6 +61,7 @@ export class UpdateTimelimitRuleAction extends ParentAction {
|
|||||||
this.sessionDurationMilliseconds = sessionDurationMilliseconds
|
this.sessionDurationMilliseconds = sessionDurationMilliseconds
|
||||||
this.sessionPauseMilliseconds = sessionPauseMilliseconds
|
this.sessionPauseMilliseconds = sessionPauseMilliseconds
|
||||||
this.perDay = perDay
|
this.perDay = perDay
|
||||||
|
this.expiresAt = expiresAt
|
||||||
|
|
||||||
assertIdWithinFamily({ actionType, field: 'ruleId', value: ruleId })
|
assertIdWithinFamily({ actionType, field: 'ruleId', value: ruleId })
|
||||||
|
|
||||||
@@ -92,9 +95,17 @@ export class UpdateTimelimitRuleAction extends ParentAction {
|
|||||||
staticMessage: 'session duration lesser than zero'
|
staticMessage: 'session duration lesser than zero'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (expiresAt !== undefined) {
|
||||||
|
assertSafeInteger({ actionType, field: 'expiresAt', value: expiresAt })
|
||||||
|
|
||||||
|
if (expiresAt <= 0) {
|
||||||
|
throwOutOfRange({ actionType, field: 'expiresAt', value: expiresAt })
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static parse = ({ ruleId, time, days, extraTime, start, end, dur, pause, perDay }: SerializedUpdateTimelimitRuleAction) => (
|
static parse = ({ ruleId, time, days, extraTime, start, end, dur, pause, perDay, e }: SerializedUpdateTimelimitRuleAction) => (
|
||||||
new UpdateTimelimitRuleAction({
|
new UpdateTimelimitRuleAction({
|
||||||
ruleId,
|
ruleId,
|
||||||
maximumTimeInMillis: time,
|
maximumTimeInMillis: time,
|
||||||
@@ -104,7 +115,8 @@ export class UpdateTimelimitRuleAction extends ParentAction {
|
|||||||
end: end ?? MinuteOfDay.MAX,
|
end: end ?? MinuteOfDay.MAX,
|
||||||
sessionDurationMilliseconds: dur ?? 0,
|
sessionDurationMilliseconds: dur ?? 0,
|
||||||
sessionPauseMilliseconds: pause ?? 0,
|
sessionPauseMilliseconds: pause ?? 0,
|
||||||
perDay: perDay ?? false
|
perDay: perDay ?? false,
|
||||||
|
expiresAt: e
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -120,4 +132,5 @@ export interface SerializedUpdateTimelimitRuleAction {
|
|||||||
dur?: number
|
dur?: number
|
||||||
pause?: number
|
pause?: number
|
||||||
perDay?: boolean
|
perDay?: boolean
|
||||||
|
e?: number
|
||||||
}
|
}
|
||||||
|
|||||||
+172
-11
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2020 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -18,15 +18,17 @@
|
|||||||
import { json } from 'body-parser'
|
import { json } from 'body-parser'
|
||||||
import { Router } from 'express'
|
import { Router } from 'express'
|
||||||
import { BadRequest, Conflict } from 'http-errors'
|
import { BadRequest, Conflict } from 'http-errors'
|
||||||
import { Database } from '../database'
|
import * as Sequelize from 'sequelize'
|
||||||
import { addPurchase } from '../function/purchase'
|
import { SimpleDatabase } from '../database/simple'
|
||||||
|
import { addPurchase, canDoNextPurchase } from '../function/purchase'
|
||||||
import { getStatusMessage, setStatusMessage } from '../function/statusmessage'
|
import { getStatusMessage, setStatusMessage } from '../function/statusmessage'
|
||||||
import { EventHandler } from '../monitoring/eventhandler'
|
import { EventHandler } from '../monitoring/eventhandler'
|
||||||
import { generatePurchaseId } from '../util/token'
|
import { generatePurchaseId } from '../util/token'
|
||||||
|
import { verifyIdentitifyToken, TokenValidationException } from '../util/identity-token'
|
||||||
import { WebsocketApi } from '../websocket'
|
import { WebsocketApi } from '../websocket'
|
||||||
|
|
||||||
export const createAdminRouter = ({ database, websocket, eventHandler }: {
|
export const createAdminRouter = ({ database, websocket, eventHandler }: {
|
||||||
database: Database
|
database: SimpleDatabase
|
||||||
websocket: WebsocketApi
|
websocket: WebsocketApi
|
||||||
eventHandler: EventHandler
|
eventHandler: EventHandler
|
||||||
}) => {
|
}) => {
|
||||||
@@ -58,7 +60,9 @@ export const createAdminRouter = ({ database, websocket, eventHandler }: {
|
|||||||
|
|
||||||
router.get('/status-message', async (_, res, next) => {
|
router.get('/status-message', async (_, res, next) => {
|
||||||
try {
|
try {
|
||||||
const currentStatusMessage = await getStatusMessage({ database })
|
const currentStatusMessage = await database.transaction(async (transaction) => {
|
||||||
|
return getStatusMessage({ transaction })
|
||||||
|
})
|
||||||
|
|
||||||
res.json({
|
res.json({
|
||||||
statusMessage: currentStatusMessage
|
statusMessage: currentStatusMessage
|
||||||
@@ -100,12 +104,12 @@ export const createAdminRouter = ({ database, websocket, eventHandler }: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
await database.transaction(async (transaction) => {
|
await database.transaction(async (transaction) => {
|
||||||
const userEntryUnsafe = await database.user.findOne({
|
const userEntryUnsafe = await transaction.legacy.database.user.findOne({
|
||||||
where: {
|
where: {
|
||||||
mail
|
mail
|
||||||
},
|
},
|
||||||
attributes: ['familyId'],
|
attributes: ['familyId'],
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!userEntryUnsafe) {
|
if (!userEntryUnsafe) {
|
||||||
@@ -117,12 +121,12 @@ export const createAdminRouter = ({ database, websocket, eventHandler }: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
await addPurchase({
|
await addPurchase({
|
||||||
database,
|
transaction,
|
||||||
familyId: userEntry.familyId,
|
familyId: userEntry.familyId,
|
||||||
type,
|
type,
|
||||||
transactionId: 'manual-' + type + '-' + generatePurchaseId(),
|
service: 'directpurchase',
|
||||||
websocket,
|
transactionId: 'legacyunlock-' + type + '-' + generatePurchaseId(),
|
||||||
transaction
|
websocket
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -132,5 +136,162 @@ export const createAdminRouter = ({ database, websocket, eventHandler }: {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
router.post('/unlock-premium-v2', json(), async (req, res, next) => {
|
||||||
|
try {
|
||||||
|
if (
|
||||||
|
typeof req.body !== 'object' ||
|
||||||
|
typeof req.body.purchaseToken !== 'string' ||
|
||||||
|
typeof req.body.purchaseId !== 'string' ||
|
||||||
|
typeof req.body.dryRun !== 'boolean' ||
|
||||||
|
typeof req.body.type !== 'string'
|
||||||
|
) {
|
||||||
|
throw new BadRequest()
|
||||||
|
}
|
||||||
|
|
||||||
|
const purchaseToken: string = req.body.purchaseToken
|
||||||
|
const purchaseId: string = req.body.purchaseId
|
||||||
|
const dryRun: boolean = req.body.dryRun
|
||||||
|
const type: string = req.body.type
|
||||||
|
|
||||||
|
if (type !== 'month' && type !== 'year' && type !== 'unpaid14') {
|
||||||
|
throw new BadRequest()
|
||||||
|
}
|
||||||
|
|
||||||
|
const tokenContent = await verifyIdentitifyToken(purchaseToken, dryRun)
|
||||||
|
|
||||||
|
if (tokenContent.purpose !== 'purchase') {
|
||||||
|
res.json({ ok: false, error: 'token invalid', detail: 'wrong purpose' })
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await database.transaction(async (transaction) => {
|
||||||
|
const userValid = await transaction.legacy.database.user.count({
|
||||||
|
where: {
|
||||||
|
familyId: tokenContent.familyId,
|
||||||
|
userId: tokenContent.userId,
|
||||||
|
mail: tokenContent.mail,
|
||||||
|
type: 'parent'
|
||||||
|
},
|
||||||
|
transaction: transaction.legacy.transaction
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!userValid) return {
|
||||||
|
ok: false,
|
||||||
|
error: 'token invalid',
|
||||||
|
detail: 'user not found'
|
||||||
|
}
|
||||||
|
|
||||||
|
let mailToReturn: string
|
||||||
|
|
||||||
|
if (tokenContent.mail !== '') mailToReturn = tokenContent.mail
|
||||||
|
else {
|
||||||
|
const userEntryWithMail = await transaction.legacy.database.user.findOne({
|
||||||
|
where: {
|
||||||
|
familyId: tokenContent.familyId,
|
||||||
|
mail: {
|
||||||
|
[Sequelize.Op.ne]: ''
|
||||||
|
},
|
||||||
|
type: 'parent'
|
||||||
|
},
|
||||||
|
transaction: transaction.legacy.transaction
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!userEntryWithMail) return {
|
||||||
|
ok: false,
|
||||||
|
error: 'illegal state',
|
||||||
|
detail: 'no user with mail found'
|
||||||
|
}
|
||||||
|
|
||||||
|
mailToReturn = userEntryWithMail.mail
|
||||||
|
}
|
||||||
|
|
||||||
|
let wasAlreadyExecuted: boolean
|
||||||
|
|
||||||
|
const oldPurchaseByPurchaseId = await transaction.legacy.database.purchase.findOne({
|
||||||
|
where: {
|
||||||
|
service: 'directpurchase',
|
||||||
|
transactionId: purchaseId
|
||||||
|
},
|
||||||
|
transaction: transaction.legacy.transaction
|
||||||
|
})
|
||||||
|
|
||||||
|
if (oldPurchaseByPurchaseId === null) wasAlreadyExecuted = false
|
||||||
|
else if (oldPurchaseByPurchaseId.familyId === tokenContent.familyId) wasAlreadyExecuted = true
|
||||||
|
else return {
|
||||||
|
ok: false,
|
||||||
|
error: 'purchase id already used'
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!wasAlreadyExecuted) {
|
||||||
|
const familyEntry = await transaction.legacy.database.family.findOne({
|
||||||
|
where: {
|
||||||
|
familyId: tokenContent.familyId
|
||||||
|
},
|
||||||
|
transaction: transaction.legacy.transaction
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!familyEntry) return {
|
||||||
|
ok: false,
|
||||||
|
error: 'family not found'
|
||||||
|
}
|
||||||
|
|
||||||
|
const canDoPurchase = canDoNextPurchase({
|
||||||
|
fullVersionUntil: parseInt(familyEntry.fullVersionUntil),
|
||||||
|
fullVersionDebts: parseInt(familyEntry.fullVersionDebts),
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!canDoPurchase) {
|
||||||
|
const lastPurchase = await transaction.legacy.database.purchase.findOne({
|
||||||
|
where: {
|
||||||
|
familyId: tokenContent.familyId
|
||||||
|
},
|
||||||
|
transaction: transaction.legacy.transaction,
|
||||||
|
order: [['loggedAt', 'DESC']],
|
||||||
|
limit: 1
|
||||||
|
})
|
||||||
|
|
||||||
|
return {
|
||||||
|
ok: false,
|
||||||
|
error: 'can not renew now',
|
||||||
|
lastPurchase: lastPurchase ? {
|
||||||
|
service: lastPurchase.service,
|
||||||
|
transactionId: lastPurchase.transactionId,
|
||||||
|
timestamp: parseInt(lastPurchase.loggedAt),
|
||||||
|
timestring: new Date(parseInt(lastPurchase.loggedAt)).toISOString()
|
||||||
|
} : undefined
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!dryRun) {
|
||||||
|
await addPurchase({
|
||||||
|
transaction,
|
||||||
|
familyId: tokenContent.familyId,
|
||||||
|
type,
|
||||||
|
service: 'directpurchase',
|
||||||
|
transactionId: purchaseId,
|
||||||
|
websocket,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
ok: true,
|
||||||
|
mail: mailToReturn,
|
||||||
|
wasAlreadyExecuted
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
res.json(response)
|
||||||
|
} catch (ex) {
|
||||||
|
if (ex instanceof TokenValidationException) res.json({
|
||||||
|
ok: false,
|
||||||
|
error: 'token invalid',
|
||||||
|
detail: ex.message
|
||||||
|
})
|
||||||
|
else next(ex)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
return router
|
return router
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2021 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
import { json } from 'body-parser'
|
import { json } from 'body-parser'
|
||||||
import { Router } from 'express'
|
import { Router } from 'express'
|
||||||
import { BadRequest } from 'http-errors'
|
import { BadRequest } from 'http-errors'
|
||||||
import { Database } from '../database'
|
import { SimpleDatabase } from '../database/simple'
|
||||||
import { sendLoginCode, signInByMailCode } from '../function/authentication/login-by-mail'
|
import { sendLoginCode, signInByMailCode } from '../function/authentication/login-by-mail'
|
||||||
import { isMailAddressCoveredByWhitelist, isMailServerBlacklisted, sanitizeMailAddress } from '../util/mail'
|
import { isMailAddressCoveredByWhitelist, isMailServerBlacklisted, sanitizeMailAddress } from '../util/mail'
|
||||||
import {
|
import {
|
||||||
@@ -26,7 +26,7 @@ import {
|
|||||||
isSignInByMailCodeRequest
|
isSignInByMailCodeRequest
|
||||||
} from './validator'
|
} from './validator'
|
||||||
|
|
||||||
export const createAuthRouter = (database: Database) => {
|
export const createAuthRouter = (database: SimpleDatabase) => {
|
||||||
const router = Router()
|
const router = Router()
|
||||||
|
|
||||||
router.post('/send-mail-login-code-v2', json(), async (req, res, next) => {
|
router.post('/send-mail-login-code-v2', json(), async (req, res, next) => {
|
||||||
|
|||||||
+10
-6
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -18,16 +18,18 @@
|
|||||||
import { json } from 'body-parser'
|
import { json } from 'body-parser'
|
||||||
import { Router } from 'express'
|
import { Router } from 'express'
|
||||||
import { BadRequest } from 'http-errors'
|
import { BadRequest } from 'http-errors'
|
||||||
import { Database } from '../database'
|
import { SimpleDatabase } from '../database/simple'
|
||||||
import { addChildDevice } from '../function/child/add-device'
|
import { addChildDevice } from '../function/child/add-device'
|
||||||
import { logoutAtPrimaryDevice } from '../function/child/logout-at-primary-device'
|
import { logoutAtPrimaryDevice } from '../function/child/logout-at-primary-device'
|
||||||
import { setPrimaryDevice } from '../function/child/set-primary-device'
|
import { setPrimaryDevice } from '../function/child/set-primary-device'
|
||||||
import { WebsocketApi } from '../websocket'
|
import { WebsocketApi } from '../websocket'
|
||||||
import { isRegisterChildDeviceRequest, isRequestWithAuthToken, isUpdatePrimaryDeviceRequest } from './validator'
|
import { isRegisterChildDeviceRequest, isRequestWithAuthToken, isUpdatePrimaryDeviceRequest } from './validator'
|
||||||
|
import { EventHandler } from '../monitoring/eventhandler'
|
||||||
|
|
||||||
export const createChildRouter = ({ database, websocket }: {
|
export const createChildRouter = ({ database, websocket, eventHandler }: {
|
||||||
database: Database,
|
database: SimpleDatabase
|
||||||
websocket: WebsocketApi
|
websocket: WebsocketApi
|
||||||
|
eventHandler: EventHandler
|
||||||
}) => {
|
}) => {
|
||||||
const router = Router()
|
const router = Router()
|
||||||
|
|
||||||
@@ -37,15 +39,17 @@ export const createChildRouter = ({ database, websocket }: {
|
|||||||
throw new BadRequest()
|
throw new BadRequest()
|
||||||
}
|
}
|
||||||
|
|
||||||
const { deviceAuthToken, deviceId } = await addChildDevice({
|
const { deviceAuthToken, deviceId, data } = await addChildDevice({
|
||||||
request: req.body,
|
request: req.body,
|
||||||
database,
|
database,
|
||||||
|
eventHandler,
|
||||||
websocket
|
websocket
|
||||||
})
|
})
|
||||||
|
|
||||||
res.json({
|
res.json({
|
||||||
deviceAuthToken,
|
deviceAuthToken,
|
||||||
ownDeviceId: deviceId
|
ownDeviceId: deviceId,
|
||||||
|
data
|
||||||
})
|
})
|
||||||
} catch (ex) {
|
} catch (ex) {
|
||||||
next(ex)
|
next(ex)
|
||||||
|
|||||||
+5
-5
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2020 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
import * as basicAuth from 'basic-auth'
|
import * as basicAuth from 'basic-auth'
|
||||||
import * as express from 'express'
|
import * as express from 'express'
|
||||||
import { VisibleConnectedDevicesManager } from '../connected-devices'
|
import { VisibleConnectedDevicesManager } from '../connected-devices'
|
||||||
import { Database } from '../database'
|
import { SimpleDatabase } from '../database/simple'
|
||||||
import { EventHandler } from '../monitoring/eventhandler'
|
import { EventHandler } from '../monitoring/eventhandler'
|
||||||
import { WebsocketApi } from '../websocket'
|
import { WebsocketApi } from '../websocket'
|
||||||
import { createAdminRouter } from './admin'
|
import { createAdminRouter } from './admin'
|
||||||
@@ -31,7 +31,7 @@ import { createSyncRouter } from './sync'
|
|||||||
const adminToken = process.env.ADMIN_TOKEN || ''
|
const adminToken = process.env.ADMIN_TOKEN || ''
|
||||||
|
|
||||||
export const createApi = ({ database, websocket, connectedDevicesManager, eventHandler }: {
|
export const createApi = ({ database, websocket, connectedDevicesManager, eventHandler }: {
|
||||||
database: Database
|
database: SimpleDatabase
|
||||||
websocket: WebsocketApi
|
websocket: WebsocketApi
|
||||||
connectedDevicesManager: VisibleConnectedDevicesManager
|
connectedDevicesManager: VisibleConnectedDevicesManager
|
||||||
eventHandler: EventHandler
|
eventHandler: EventHandler
|
||||||
@@ -47,8 +47,8 @@ export const createApi = ({ database, websocket, connectedDevicesManager, eventH
|
|||||||
})
|
})
|
||||||
|
|
||||||
app.use('/auth', createAuthRouter(database))
|
app.use('/auth', createAuthRouter(database))
|
||||||
app.use('/child', createChildRouter({ database, websocket }))
|
app.use('/child', createChildRouter({ database, websocket, eventHandler }))
|
||||||
app.use('/parent', createParentRouter({ database, websocket }))
|
app.use('/parent', createParentRouter({ database, websocket, eventHandler }))
|
||||||
app.use('/purchase', createPurchaseRouter({ database, websocket }))
|
app.use('/purchase', createPurchaseRouter({ database, websocket }))
|
||||||
app.use('/sync', createSyncRouter({ database, websocket, connectedDevicesManager, eventHandler }))
|
app.use('/sync', createSyncRouter({ database, websocket, connectedDevicesManager, eventHandler }))
|
||||||
|
|
||||||
|
|||||||
+51
-24
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -20,7 +20,8 @@ import { createHmac } from 'crypto'
|
|||||||
import { Router } from 'express'
|
import { Router } from 'express'
|
||||||
import { BadRequest, Forbidden, Unauthorized } from 'http-errors'
|
import { BadRequest, Forbidden, Unauthorized } from 'http-errors'
|
||||||
import { config } from '../config'
|
import { config } from '../config'
|
||||||
import { Database, Transaction } from '../database'
|
import { SimpleDatabase, SimpleDatabaseTransaction } from '../database/simple'
|
||||||
|
import { deleteAccount } from '../function/cleanup/account-deletion'
|
||||||
import { removeDevice } from '../function/device/remove-device'
|
import { removeDevice } from '../function/device/remove-device'
|
||||||
import { createAddDeviceToken } from '../function/parent/create-add-device-token'
|
import { createAddDeviceToken } from '../function/parent/create-add-device-token'
|
||||||
import { createFamily } from '../function/parent/create-family'
|
import { createFamily } from '../function/parent/create-family'
|
||||||
@@ -31,14 +32,22 @@ import { signInIntoFamily } from '../function/parent/sign-in-into-family'
|
|||||||
import { validateU2fIntegrity, U2fValidationError } from '../function/u2f'
|
import { validateU2fIntegrity, U2fValidationError } from '../function/u2f'
|
||||||
import { createIdentityToken, MissingSignSecretException } from '../util/identity-token'
|
import { createIdentityToken, MissingSignSecretException } from '../util/identity-token'
|
||||||
import { WebsocketApi } from '../websocket'
|
import { WebsocketApi } from '../websocket'
|
||||||
|
import { EventHandler } from '../monitoring/eventhandler'
|
||||||
import {
|
import {
|
||||||
isCreateFamilyByMailTokenRequest,
|
isCreateFamilyByMailTokenRequest,
|
||||||
isCreateRegisterDeviceTokenRequest, isLinkParentMailAddressRequest,
|
isCreateRegisterDeviceTokenRequest, isLinkParentMailAddressRequest,
|
||||||
isMailAuthTokenRequestBody, isRecoverParentPasswordRequest,
|
isMailAuthTokenRequestBody, isRecoverParentPasswordRequest,
|
||||||
isRemoveDeviceRequest, isSignIntoFamilyRequest, isRequestIdentityTokenRequest
|
isRemoveDeviceRequest, isSignIntoFamilyRequest, isRequestIdentityTokenRequest,
|
||||||
|
isDeleteAccountPayload
|
||||||
} from './validator'
|
} from './validator'
|
||||||
|
|
||||||
export const createParentRouter = ({ database, websocket }: {database: Database, websocket: WebsocketApi}) => {
|
export const createParentRouter = ({
|
||||||
|
database, websocket, eventHandler
|
||||||
|
}: {
|
||||||
|
database: SimpleDatabase
|
||||||
|
websocket: WebsocketApi
|
||||||
|
eventHandler: EventHandler
|
||||||
|
}) => {
|
||||||
const router = Router()
|
const router = Router()
|
||||||
|
|
||||||
router.post('/get-status-by-mail-address', json(), async (req, res, next) => {
|
router.post('/get-status-by-mail-address', json(), async (req, res, next) => {
|
||||||
@@ -49,7 +58,7 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
|
|
||||||
const { mailAuthToken } = req.body
|
const { mailAuthToken } = req.body
|
||||||
const { status, mail } = await database.transaction(async (transaction) => {
|
const { status, mail } = await database.transaction(async (transaction) => {
|
||||||
return getStatusByMailToken({ database, mailAuthToken, transaction })
|
return getStatusByMailToken({ transaction, mailAuthToken })
|
||||||
})
|
})
|
||||||
|
|
||||||
res.json({
|
res.json({
|
||||||
@@ -75,17 +84,20 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
|
|
||||||
const result = await createFamily({
|
const result = await createFamily({
|
||||||
database,
|
database,
|
||||||
|
eventHandler,
|
||||||
firstParentDevice: req.body.parentDevice,
|
firstParentDevice: req.body.parentDevice,
|
||||||
mailAuthToken: req.body.mailAuthToken,
|
mailAuthToken: req.body.mailAuthToken,
|
||||||
password: req.body.parentPassword,
|
password: req.body.parentPassword,
|
||||||
deviceName: req.body.deviceName,
|
deviceName: req.body.deviceName,
|
||||||
parentName: req.body.parentName,
|
parentName: req.body.parentName,
|
||||||
timeZone: req.body.timeZone
|
timeZone: req.body.timeZone,
|
||||||
|
clientLevel: req.body.clientLevel || null
|
||||||
})
|
})
|
||||||
|
|
||||||
res.json({
|
res.json({
|
||||||
deviceAuthToken: result.deviceAuthToken,
|
deviceAuthToken: result.deviceAuthToken,
|
||||||
ownDeviceId: result.deviceId
|
ownDeviceId: result.deviceId,
|
||||||
|
data: result.data
|
||||||
})
|
})
|
||||||
} catch (ex) {
|
} catch (ex) {
|
||||||
next(ex)
|
next(ex)
|
||||||
@@ -100,15 +112,18 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
|
|
||||||
const result = await signInIntoFamily({
|
const result = await signInIntoFamily({
|
||||||
database,
|
database,
|
||||||
|
eventHandler,
|
||||||
newDeviceInfo: req.body.parentDevice,
|
newDeviceInfo: req.body.parentDevice,
|
||||||
mailAuthToken: req.body.mailAuthToken,
|
mailAuthToken: req.body.mailAuthToken,
|
||||||
deviceName: req.body.deviceName,
|
deviceName: req.body.deviceName,
|
||||||
|
clientLevel: req.body.clientLevel || null,
|
||||||
websocket
|
websocket
|
||||||
})
|
})
|
||||||
|
|
||||||
res.json({
|
res.json({
|
||||||
deviceAuthToken: result.deviceAuthToken,
|
deviceAuthToken: result.deviceAuthToken,
|
||||||
ownDeviceId: result.deviceId
|
ownDeviceId: result.deviceId,
|
||||||
|
data: result.data
|
||||||
})
|
})
|
||||||
} catch (ex) {
|
} catch (ex) {
|
||||||
next(ex)
|
next(ex)
|
||||||
@@ -138,13 +153,13 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
deviceAuthToken: string
|
deviceAuthToken: string
|
||||||
parentId: string
|
parentId: string
|
||||||
secondPasswordHash: string
|
secondPasswordHash: string
|
||||||
transaction: Transaction
|
transaction: SimpleDatabaseTransaction
|
||||||
}) {
|
}) {
|
||||||
const deviceEntry = await database.device.findOne({
|
const deviceEntry = await transaction.legacy.database.device.findOne({
|
||||||
where: {
|
where: {
|
||||||
deviceAuthToken: deviceAuthToken
|
deviceAuthToken: deviceAuthToken
|
||||||
},
|
},
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!deviceEntry) {
|
if (!deviceEntry) {
|
||||||
@@ -156,13 +171,13 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
throw new Unauthorized()
|
throw new Unauthorized()
|
||||||
}
|
}
|
||||||
|
|
||||||
const parentEntry = await database.user.findOne({
|
const parentEntry = await transaction.legacy.database.user.findOne({
|
||||||
where: {
|
where: {
|
||||||
familyId: deviceEntry.familyId,
|
familyId: deviceEntry.familyId,
|
||||||
type: 'parent',
|
type: 'parent',
|
||||||
userId: deviceEntry.currentUserId
|
userId: deviceEntry.currentUserId
|
||||||
},
|
},
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!parentEntry) {
|
if (!parentEntry) {
|
||||||
@@ -172,11 +187,11 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
return { deviceEntry, parentEntry }
|
return { deviceEntry, parentEntry }
|
||||||
} else if (secondPasswordHash.startsWith('u2f:')) {
|
} else if (secondPasswordHash.startsWith('u2f:')) {
|
||||||
try {
|
try {
|
||||||
const familyEntryUnsafe = await database.family.findOne({
|
const familyEntryUnsafe = await transaction.legacy.database.family.findOne({
|
||||||
where: {
|
where: {
|
||||||
familyId: deviceEntry.familyId
|
familyId: deviceEntry.familyId
|
||||||
},
|
},
|
||||||
transaction,
|
transaction: transaction.legacy.transaction,
|
||||||
attributes: ['hasFullVersion']
|
attributes: ['hasFullVersion']
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -193,7 +208,6 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
hasFullVersion,
|
hasFullVersion,
|
||||||
familyId: deviceEntry.familyId,
|
familyId: deviceEntry.familyId,
|
||||||
deviceId: deviceEntry.deviceId,
|
deviceId: deviceEntry.deviceId,
|
||||||
database,
|
|
||||||
transaction,
|
transaction,
|
||||||
calculateHmac: (secret) => createHmac('sha256', secret)
|
calculateHmac: (secret) => createHmac('sha256', secret)
|
||||||
.update('direct action')
|
.update('direct action')
|
||||||
@@ -202,13 +216,13 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
|
|
||||||
if (u2fResult.userId !== parentId) throw new Unauthorized()
|
if (u2fResult.userId !== parentId) throw new Unauthorized()
|
||||||
|
|
||||||
const parentEntry = await database.user.findOne({
|
const parentEntry = await transaction.legacy.database.user.findOne({
|
||||||
where: {
|
where: {
|
||||||
familyId: deviceEntry.familyId,
|
familyId: deviceEntry.familyId,
|
||||||
type: 'parent',
|
type: 'parent',
|
||||||
userId: u2fResult.userId
|
userId: u2fResult.userId
|
||||||
},
|
},
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!parentEntry) {
|
if (!parentEntry) {
|
||||||
@@ -221,14 +235,14 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
else throw ex
|
else throw ex
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const parentEntry = await database.user.findOne({
|
const parentEntry = await transaction.legacy.database.user.findOne({
|
||||||
where: {
|
where: {
|
||||||
familyId: deviceEntry.familyId,
|
familyId: deviceEntry.familyId,
|
||||||
type: 'parent',
|
type: 'parent',
|
||||||
userId: parentId,
|
userId: parentId,
|
||||||
secondPasswordHash: secondPasswordHash
|
secondPasswordHash: secondPasswordHash
|
||||||
},
|
},
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!parentEntry) {
|
if (!parentEntry) {
|
||||||
@@ -253,7 +267,7 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
transaction
|
transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
return createAddDeviceToken({ familyId: deviceEntry.familyId, database, transaction })
|
return createAddDeviceToken({ familyId: deviceEntry.familyId, transaction })
|
||||||
})
|
})
|
||||||
|
|
||||||
res.json({ token, deviceId })
|
res.json({ token, deviceId })
|
||||||
@@ -298,11 +312,10 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
})
|
})
|
||||||
|
|
||||||
await removeDevice({
|
await removeDevice({
|
||||||
database,
|
transaction,
|
||||||
familyId: deviceEntry.familyId,
|
familyId: deviceEntry.familyId,
|
||||||
deviceId: req.body.deviceId,
|
deviceId: req.body.deviceId,
|
||||||
websocket,
|
websocket
|
||||||
transaction
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -343,5 +356,19 @@ export const createParentRouter = ({ database, websocket }: {database: Database,
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
router.post('/delete-account', json(), async (req, res, next) => {
|
||||||
|
try {
|
||||||
|
if (!isDeleteAccountPayload(req.body)) {
|
||||||
|
throw new BadRequest()
|
||||||
|
}
|
||||||
|
|
||||||
|
await deleteAccount({ database, request: req.body, websocket })
|
||||||
|
|
||||||
|
res.sendStatus(200)
|
||||||
|
} catch (ex) {
|
||||||
|
next(ex)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
return router
|
return router
|
||||||
}
|
}
|
||||||
|
|||||||
+18
-16
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2020 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
import { json } from 'body-parser'
|
import { json } from 'body-parser'
|
||||||
import { Router } from 'express'
|
import { Router } from 'express'
|
||||||
import { BadRequest, Conflict, Unauthorized } from 'http-errors'
|
import { BadRequest, Conflict, Unauthorized } from 'http-errors'
|
||||||
import { Database } from '../database'
|
import { SimpleDatabase } from '../database/simple'
|
||||||
import {
|
import {
|
||||||
addPurchase,
|
addPurchase,
|
||||||
areGooglePlayPaymentsPossible,
|
areGooglePlayPaymentsPossible,
|
||||||
@@ -31,30 +31,32 @@ import { WebsocketApi } from '../websocket'
|
|||||||
import { isCanDoPurchaseRequest, isFinishPurchaseByGooglePlayRequest } from './validator'
|
import { isCanDoPurchaseRequest, isFinishPurchaseByGooglePlayRequest } from './validator'
|
||||||
|
|
||||||
export const createPurchaseRouter = ({ database, websocket }: {
|
export const createPurchaseRouter = ({ database, websocket }: {
|
||||||
database: Database
|
database: SimpleDatabase
|
||||||
websocket: WebsocketApi
|
websocket: WebsocketApi
|
||||||
}) => {
|
}) => {
|
||||||
const router = Router()
|
const router = Router()
|
||||||
|
|
||||||
router.post('/can-do-purchase', json(), async (req, res, next) => {
|
router.post('/can-do-purchase', json(), async (req, res, next) => {
|
||||||
if (!areGooglePlayPaymentsPossible) {
|
|
||||||
res.json({ canDoPurchase: 'no because not supported by the server' })
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!isCanDoPurchaseRequest(req.body)) {
|
if (!isCanDoPurchaseRequest(req.body)) {
|
||||||
throw new BadRequest()
|
throw new BadRequest()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (req.body.type === 'googleplay' && !areGooglePlayPaymentsPossible) {
|
||||||
|
res.json({ canDoPurchase: 'no because not supported by the server' })
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
const result: boolean = await database.transaction(async (transaction) => {
|
const result: boolean = await database.transaction(async (transaction) => {
|
||||||
const familyEntry = await requireFamilyEntry({
|
const familyEntry = await requireFamilyEntry({
|
||||||
database,
|
transaction,
|
||||||
deviceAuthToken: req.body.deviceAuthToken,
|
deviceAuthToken: req.body.deviceAuthToken,
|
||||||
transaction
|
|
||||||
})
|
})
|
||||||
|
|
||||||
return canDoNextPurchase({ fullVersionUntil: parseInt(familyEntry.fullVersionUntil, 10) })
|
return canDoNextPurchase({
|
||||||
|
fullVersionUntil: parseInt(familyEntry.fullVersionUntil, 10),
|
||||||
|
fullVersionDebts: parseInt(familyEntry.fullVersionDebts, 10),
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
res.json({
|
res.json({
|
||||||
@@ -73,12 +75,12 @@ export const createPurchaseRouter = ({ database, websocket }: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
await database.transaction(async (transaction) => {
|
await database.transaction(async (transaction) => {
|
||||||
const deviceEntryUnsafe = await database.device.findOne({
|
const deviceEntryUnsafe = await transaction.legacy.database.device.findOne({
|
||||||
where: {
|
where: {
|
||||||
deviceAuthToken: req.body.deviceAuthToken
|
deviceAuthToken: req.body.deviceAuthToken
|
||||||
},
|
},
|
||||||
attributes: ['familyId'],
|
attributes: ['familyId'],
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!deviceEntryUnsafe) {
|
if (!deviceEntryUnsafe) {
|
||||||
@@ -119,12 +121,12 @@ export const createPurchaseRouter = ({ database, websocket }: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
await addPurchase({
|
await addPurchase({
|
||||||
database,
|
transaction,
|
||||||
familyId: deviceEntry.familyId,
|
familyId: deviceEntry.familyId,
|
||||||
type,
|
type,
|
||||||
|
service: 'googleplay',
|
||||||
transactionId: orderId,
|
transactionId: orderId,
|
||||||
websocket,
|
websocket
|
||||||
transaction
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
+21
-2
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2023 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -84,12 +84,14 @@ export interface CreateFamilyByMailTokenRequest {
|
|||||||
deviceName: string
|
deviceName: string
|
||||||
timeZone: string
|
timeZone: string
|
||||||
parentName: string
|
parentName: string
|
||||||
|
clientLevel?: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SignIntoFamilyRequest {
|
export interface SignIntoFamilyRequest {
|
||||||
mailAuthToken: string
|
mailAuthToken: string
|
||||||
parentDevice: NewDeviceInfo
|
parentDevice: NewDeviceInfo
|
||||||
deviceName: string
|
deviceName: string
|
||||||
|
clientLevel?: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface RecoverParentPasswordRequest {
|
export interface RecoverParentPasswordRequest {
|
||||||
@@ -101,6 +103,7 @@ export interface RegisterChildDeviceRequest {
|
|||||||
registerToken: string
|
registerToken: string
|
||||||
childDevice: NewDeviceInfo
|
childDevice: NewDeviceInfo
|
||||||
deviceName: string
|
deviceName: string
|
||||||
|
clientLevel?: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CreateRegisterDeviceTokenRequest {
|
export interface CreateRegisterDeviceTokenRequest {
|
||||||
@@ -110,7 +113,7 @@ export interface CreateRegisterDeviceTokenRequest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface CanDoPurchaseRequest {
|
export interface CanDoPurchaseRequest {
|
||||||
type: 'googleplay' | 'any'
|
type?: 'googleplay' | 'any'
|
||||||
deviceAuthToken: string
|
deviceAuthToken: string
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,5 +165,21 @@ export interface SignInByMailCodeRequest {
|
|||||||
receivedCode: string
|
receivedCode: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IdentityTokenCreatePayload {
|
||||||
|
purpose: 'purchase'
|
||||||
|
familyId: string
|
||||||
|
userId: string
|
||||||
|
mail: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export type IdentityTokenPayload = IdentityTokenCreatePayload & {
|
||||||
|
exp: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DeleteAccountPayload {
|
||||||
|
deviceAuthToken: string
|
||||||
|
mailAuthTokens: Array<string>
|
||||||
|
}
|
||||||
|
|
||||||
export { SerializedParentAction, SerializedChildAction, SerializedAppLogicAction } from '../action/serialization'
|
export { SerializedParentAction, SerializedChildAction, SerializedAppLogicAction } from '../action/serialization'
|
||||||
export { ServerDataStatus } from '../object/serverdatastatus'
|
export { ServerDataStatus } from '../object/serverdatastatus'
|
||||||
|
|||||||
+10
-11
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -19,7 +19,7 @@ import { json } from 'body-parser'
|
|||||||
import { Router } from 'express'
|
import { Router } from 'express'
|
||||||
import { BadRequest, Unauthorized } from 'http-errors'
|
import { BadRequest, Unauthorized } from 'http-errors'
|
||||||
import { VisibleConnectedDevicesManager } from '../connected-devices'
|
import { VisibleConnectedDevicesManager } from '../connected-devices'
|
||||||
import { Database } from '../database'
|
import { SimpleDatabase } from '../database/simple'
|
||||||
import { reportDeviceRemoved } from '../function/device/report-device-removed'
|
import { reportDeviceRemoved } from '../function/device/report-device-removed'
|
||||||
import { applyActionsFromDevice } from '../function/sync/apply-actions'
|
import { applyActionsFromDevice } from '../function/sync/apply-actions'
|
||||||
import { generateServerDataStatus } from '../function/sync/get-server-data-status'
|
import { generateServerDataStatus } from '../function/sync/get-server-data-status'
|
||||||
@@ -34,7 +34,7 @@ const getRoundedTimestampForLastConnectivity = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const createSyncRouter = ({ database, websocket, connectedDevicesManager, eventHandler }: {
|
export const createSyncRouter = ({ database, websocket, connectedDevicesManager, eventHandler }: {
|
||||||
database: Database
|
database: SimpleDatabase
|
||||||
websocket: WebsocketApi
|
websocket: WebsocketApi
|
||||||
connectedDevicesManager: VisibleConnectedDevicesManager
|
connectedDevicesManager: VisibleConnectedDevicesManager
|
||||||
eventHandler: EventHandler
|
eventHandler: EventHandler
|
||||||
@@ -86,12 +86,12 @@ export const createSyncRouter = ({ database, websocket, connectedDevicesManager,
|
|||||||
}
|
}
|
||||||
|
|
||||||
const serverStatus = await database.transaction(async (transaction) => {
|
const serverStatus = await database.transaction(async (transaction) => {
|
||||||
const deviceEntryUnsafe = await database.device.findOne({
|
const deviceEntryUnsafe = await transaction.legacy.database.device.findOne({
|
||||||
where: {
|
where: {
|
||||||
deviceAuthToken: body.deviceAuthToken
|
deviceAuthToken: body.deviceAuthToken
|
||||||
},
|
},
|
||||||
attributes: ['familyId', 'deviceId', 'lastConnectivity'],
|
attributes: ['familyId', 'deviceId', 'lastConnectivity'],
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!deviceEntryUnsafe) {
|
if (!deviceEntryUnsafe) {
|
||||||
@@ -102,22 +102,21 @@ export const createSyncRouter = ({ database, websocket, connectedDevicesManager,
|
|||||||
const now = getRoundedTimestampForLastConnectivity()
|
const now = getRoundedTimestampForLastConnectivity()
|
||||||
|
|
||||||
if (parseInt(lastConnectivity, 10) !== now) {
|
if (parseInt(lastConnectivity, 10) !== now) {
|
||||||
await database.device.update({
|
await transaction.legacy.database.device.update({
|
||||||
lastConnectivity: now.toString(10)
|
lastConnectivity: now.toString(10)
|
||||||
}, {
|
}, {
|
||||||
where: {
|
where: {
|
||||||
deviceAuthToken: body.deviceAuthToken
|
deviceAuthToken: body.deviceAuthToken
|
||||||
},
|
},
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
return generateServerDataStatus({
|
return generateServerDataStatus({
|
||||||
database,
|
transaction,
|
||||||
familyId,
|
familyId,
|
||||||
deviceId,
|
deviceId,
|
||||||
clientStatus: body.status,
|
clientStatus: body.status,
|
||||||
transaction,
|
|
||||||
eventHandler
|
eventHandler
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@@ -165,11 +164,11 @@ export const createSyncRouter = ({ database, websocket, connectedDevicesManager,
|
|||||||
}
|
}
|
||||||
|
|
||||||
const isDeviceRemoved: boolean = await database.transaction(async (transaction) => {
|
const isDeviceRemoved: boolean = await database.transaction(async (transaction) => {
|
||||||
const removedEntry = await database.oldDevice.findOne({
|
const removedEntry = await transaction.legacy.database.oldDevice.findOne({
|
||||||
where: {
|
where: {
|
||||||
deviceAuthToken: req.body.deviceAuthToken
|
deviceAuthToken: req.body.deviceAuthToken
|
||||||
},
|
},
|
||||||
transaction
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
return !!removedEntry
|
return !!removedEntry
|
||||||
|
|||||||
+146
-3
@@ -1,5 +1,5 @@
|
|||||||
// tslint:disable
|
// tslint:disable
|
||||||
import { ClientPushChangesRequest, ClientPullChangesRequest, MailAuthTokenRequestBody, CreateFamilyByMailTokenRequest, SignIntoFamilyRequest, RecoverParentPasswordRequest, RegisterChildDeviceRequest, SerializedParentAction, SerializedAppLogicAction, SerializedChildAction, CreateRegisterDeviceTokenRequest, CanDoPurchaseRequest, FinishPurchaseByGooglePlayRequest, LinkParentMailAddressRequest, UpdatePrimaryDeviceRequest, RemoveDeviceRequest, RequestIdentityTokenRequest, RequestWithAuthToken, SendMailLoginCodeRequest, SignInByMailCodeRequest } from './schema'
|
import { ClientPushChangesRequest, ClientPullChangesRequest, MailAuthTokenRequestBody, CreateFamilyByMailTokenRequest, SignIntoFamilyRequest, RecoverParentPasswordRequest, RegisterChildDeviceRequest, SerializedParentAction, SerializedAppLogicAction, SerializedChildAction, CreateRegisterDeviceTokenRequest, CanDoPurchaseRequest, FinishPurchaseByGooglePlayRequest, LinkParentMailAddressRequest, UpdatePrimaryDeviceRequest, RemoveDeviceRequest, RequestIdentityTokenRequest, RequestWithAuthToken, SendMailLoginCodeRequest, SignInByMailCodeRequest, IdentityTokenPayload, DeleteAccountPayload } from './schema'
|
||||||
import Ajv from 'ajv'
|
import Ajv from 'ajv'
|
||||||
const ajv = new Ajv()
|
const ajv = new Ajv()
|
||||||
|
|
||||||
@@ -409,6 +409,9 @@ const definitions = {
|
|||||||
},
|
},
|
||||||
"perDay": {
|
"perDay": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"e": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -1417,6 +1420,9 @@ const definitions = {
|
|||||||
},
|
},
|
||||||
"perDay": {
|
"perDay": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"e": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -1753,6 +1759,41 @@ const definitions = {
|
|||||||
"type"
|
"type"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"SerializedPingAction": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"PING"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"deviceId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"event": {
|
||||||
|
"$ref": "#/definitions/PingEvent"
|
||||||
|
},
|
||||||
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"deviceId",
|
||||||
|
"event",
|
||||||
|
"token",
|
||||||
|
"type"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"PingEvent": {
|
||||||
|
"enum": [
|
||||||
|
"clear",
|
||||||
|
"ping",
|
||||||
|
"pong"
|
||||||
|
],
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"SerializedUpdateInstalledAppsAction": {
|
"SerializedUpdateInstalledAppsAction": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@@ -1982,6 +2023,12 @@ const definitions = {
|
|||||||
},
|
},
|
||||||
"addedManipulationFlags": {
|
"addedManipulationFlags": {
|
||||||
"type": "number"
|
"type": "number"
|
||||||
|
},
|
||||||
|
"platformType": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"platformLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -2164,6 +2211,12 @@ const definitions = {
|
|||||||
},
|
},
|
||||||
"pk": {
|
"pk": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"pType": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"pLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -2192,6 +2245,7 @@ const definitions = {
|
|||||||
"model",
|
"model",
|
||||||
"name",
|
"name",
|
||||||
"networkTime",
|
"networkTime",
|
||||||
|
"pLevel",
|
||||||
"qOrLater",
|
"qOrLater",
|
||||||
"reboot",
|
"reboot",
|
||||||
"rebootIsManipulation",
|
"rebootIsManipulation",
|
||||||
@@ -2796,6 +2850,30 @@ const definitions = {
|
|||||||
"tempKey"
|
"tempKey"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"ServerPing": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"deviceId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"enum": [
|
||||||
|
"ping",
|
||||||
|
"pong"
|
||||||
|
],
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"deviceId",
|
||||||
|
"token",
|
||||||
|
"type"
|
||||||
|
]
|
||||||
|
},
|
||||||
"ServerDhKey": {
|
"ServerDhKey": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@@ -2930,6 +3008,9 @@ export const isCreateFamilyByMailTokenRequest: (value: unknown) => value is Crea
|
|||||||
},
|
},
|
||||||
"parentName": {
|
"parentName": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"clientLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -2955,6 +3036,9 @@ export const isSignIntoFamilyRequest: (value: unknown) => value is SignIntoFamil
|
|||||||
},
|
},
|
||||||
"deviceName": {
|
"deviceName": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"clientLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -2995,6 +3079,9 @@ export const isRegisterChildDeviceRequest: (value: unknown) => value is Register
|
|||||||
},
|
},
|
||||||
"deviceName": {
|
"deviceName": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"clientLevel": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -3185,6 +3272,9 @@ export const isSerializedAppLogicAction: (value: unknown) => value is Serialized
|
|||||||
{
|
{
|
||||||
"$ref": "#/definitions/SerializedMarkTaskPendingAction"
|
"$ref": "#/definitions/SerializedMarkTaskPendingAction"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/SerializedPingAction"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"$ref": "#/definitions/SerializedUpdateInstalledAppsAction"
|
"$ref": "#/definitions/SerializedUpdateInstalledAppsAction"
|
||||||
},
|
},
|
||||||
@@ -3263,8 +3353,7 @@ export const isCanDoPurchaseRequest: (value: unknown) => value is CanDoPurchaseR
|
|||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": [
|
"required": [
|
||||||
"deviceAuthToken",
|
"deviceAuthToken"
|
||||||
"type"
|
|
||||||
],
|
],
|
||||||
"definitions": definitions,
|
"definitions": definitions,
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#"
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
||||||
@@ -3451,3 +3540,57 @@ export const isSignInByMailCodeRequest: (value: unknown) => value is SignInByMai
|
|||||||
"definitions": definitions,
|
"definitions": definitions,
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#"
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
||||||
})
|
})
|
||||||
|
export const isIdentityTokenPayload: (value: unknown) => value is IdentityTokenPayload = ajv.compile({
|
||||||
|
"additionalProperties": false,
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"purpose": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"purchase"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"familyId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"userId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"mail": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"exp": {
|
||||||
|
"type": "number"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"exp",
|
||||||
|
"familyId",
|
||||||
|
"mail",
|
||||||
|
"purpose",
|
||||||
|
"userId"
|
||||||
|
],
|
||||||
|
"definitions": definitions,
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
||||||
|
})
|
||||||
|
export const isDeleteAccountPayload: (value: unknown) => value is DeleteAccountPayload = ajv.compile({
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"deviceAuthToken": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"mailAuthTokens": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"deviceAuthToken",
|
||||||
|
"mailAuthTokens"
|
||||||
|
],
|
||||||
|
"definitions": definitions,
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
||||||
|
})
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -16,9 +16,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { defaultDatabase } from '../database'
|
import { defaultDatabase } from '../database'
|
||||||
|
import { fromLegacy as createSimpleDatabase } from '../database/simple'
|
||||||
import { deleteOldFamilies } from '../function/cleanup/delete-old-families'
|
import { deleteOldFamilies } from '../function/cleanup/delete-old-families'
|
||||||
|
|
||||||
const database = defaultDatabase
|
const database = createSimpleDatabase(defaultDatabase)
|
||||||
|
|
||||||
deleteOldFamilies(database)
|
deleteOldFamilies(database)
|
||||||
.then(() => console.log('done'))
|
.then(() => console.log('done'))
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -16,9 +16,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { defaultDatabase } from '../database'
|
import { defaultDatabase } from '../database'
|
||||||
|
import { fromLegacy as createSimpleDatabase } from '../database/simple'
|
||||||
import { findOldFamilyIds } from '../function/cleanup/delete-old-families'
|
import { findOldFamilyIds } from '../function/cleanup/delete-old-families'
|
||||||
|
|
||||||
const database = defaultDatabase
|
const database = createSimpleDatabase(defaultDatabase)
|
||||||
|
|
||||||
findOldFamilyIds(database)
|
findOldFamilyIds(database)
|
||||||
.then((res) => console.log(JSON.stringify(res)))
|
.then((res) => console.log(JSON.stringify(res)))
|
||||||
|
|||||||
+2
-2
@@ -34,6 +34,8 @@ function parseYesNo (value: string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class ParseYesNoException extends Error {}
|
||||||
|
|
||||||
export const config: Config = {
|
export const config: Config = {
|
||||||
mailWhitelist: (process.env.MAIL_WHITELIST || '').split(',').map((item) => item.trim()).filter((item) => item.length > 0),
|
mailWhitelist: (process.env.MAIL_WHITELIST || '').split(',').map((item) => item.trim()).filter((item) => item.length > 0),
|
||||||
disableSignup: parseYesNo(process.env.DISABLE_SIGNUP || 'no'),
|
disableSignup: parseYesNo(process.env.DISABLE_SIGNUP || 'no'),
|
||||||
@@ -41,5 +43,3 @@ export const config: Config = {
|
|||||||
alwaysPro: process.env.ALWAYS_PRO ? parseYesNo(process.env.ALWAYS_PRO) : false,
|
alwaysPro: process.env.ALWAYS_PRO ? parseYesNo(process.env.ALWAYS_PRO) : false,
|
||||||
signSecret: process.env.SIGN_SECRET || ''
|
signSecret: process.env.SIGN_SECRET || ''
|
||||||
}
|
}
|
||||||
|
|
||||||
class ParseYesNoException extends Error {}
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { EventEmitter } from 'events'
|
import { EventEmitter } from 'events'
|
||||||
import { Database } from '../database'
|
import { SimpleDatabase } from '../database/simple'
|
||||||
|
|
||||||
export class ConnectedDevicesManager {
|
export class ConnectedDevicesManager {
|
||||||
private deviceConnectionCounters = new Map<string, number>()
|
private deviceConnectionCounters = new Map<string, number>()
|
||||||
@@ -59,10 +59,10 @@ export class ConnectedDevicesManager {
|
|||||||
|
|
||||||
export class VisibleConnectedDevicesManager {
|
export class VisibleConnectedDevicesManager {
|
||||||
connectedDevicesManager = new ConnectedDevicesManager()
|
connectedDevicesManager = new ConnectedDevicesManager()
|
||||||
private database: Database
|
private database: SimpleDatabase
|
||||||
|
|
||||||
constructor ({ database }: {
|
constructor ({ database }: {
|
||||||
database: Database
|
database: SimpleDatabase
|
||||||
}) {
|
}) {
|
||||||
this.database = database
|
this.database = database
|
||||||
}
|
}
|
||||||
@@ -174,20 +174,25 @@ export class VisibleConnectedDevicesManager {
|
|||||||
|
|
||||||
// add all current devices
|
// add all current devices
|
||||||
;(async () => {
|
;(async () => {
|
||||||
const devicesUnsafe = await this.database.device.findAll({
|
const devices = await this.database.transaction(async (transaction) => {
|
||||||
|
const devicesUnsafe = await transaction.legacy.database.device.findAll({
|
||||||
where: {
|
where: {
|
||||||
familyId
|
familyId
|
||||||
},
|
},
|
||||||
attributes: [
|
attributes: [
|
||||||
'deviceId',
|
'deviceId',
|
||||||
'showDeviceConnected'
|
'showDeviceConnected'
|
||||||
]
|
],
|
||||||
|
transaction: transaction.legacy.transaction
|
||||||
})
|
})
|
||||||
|
|
||||||
const devices = devicesUnsafe.map(({ deviceId, showDeviceConnected }) => ({
|
const devices = devicesUnsafe.map(({ deviceId, showDeviceConnected }) => ({
|
||||||
deviceId, showDeviceConnected
|
deviceId, showDeviceConnected
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
return devices
|
||||||
|
})
|
||||||
|
|
||||||
devices.forEach(({ deviceId, showDeviceConnected }) => {
|
devices.forEach(({ deviceId, showDeviceConnected }) => {
|
||||||
addDevice({ deviceId, showDeviceConnected })
|
addDevice({ deviceId, showDeviceConnected })
|
||||||
})
|
})
|
||||||
|
|||||||
+36
-3
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2023 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -37,6 +37,12 @@ export const DeviceManipulationFlags = {
|
|||||||
ALL: 1
|
ALL: 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const minPlatformTypeLength = 1
|
||||||
|
export const maxPlatformTypeLength = 8
|
||||||
|
|
||||||
|
export const minPlatformLevel = 0
|
||||||
|
export const maxPlatformLevel = 128
|
||||||
|
|
||||||
export interface DeviceAttributesVersion1 {
|
export interface DeviceAttributesVersion1 {
|
||||||
familyId: string
|
familyId: string
|
||||||
deviceId: string
|
deviceId: string
|
||||||
@@ -119,11 +125,17 @@ export interface DeviceAttributesVersion14 {
|
|||||||
nextKeyReplySequenceNumber: string
|
nextKeyReplySequenceNumber: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface DeviceAttributesVersion15 {
|
||||||
|
platformType: string | null
|
||||||
|
platformLevel: number
|
||||||
|
}
|
||||||
|
|
||||||
export type DeviceAttributes = DeviceAttributesVersion1 & DeviceAttributesVersion2 &
|
export type DeviceAttributes = DeviceAttributesVersion1 & DeviceAttributesVersion2 &
|
||||||
DeviceAttributesVersion3 & DeviceAttributesVersion4 & DeviceAttributesVersion5 &
|
DeviceAttributesVersion3 & DeviceAttributesVersion4 & DeviceAttributesVersion5 &
|
||||||
DeviceAttributesVersion6 & DeviceAttributesVersion7 & DeviceAttributesVersion8 &
|
DeviceAttributesVersion6 & DeviceAttributesVersion7 & DeviceAttributesVersion8 &
|
||||||
DeviceAttributesVersion9 & DeviceAttributesVersion10 & DeviceAttributesVersion11 &
|
DeviceAttributesVersion9 & DeviceAttributesVersion10 & DeviceAttributesVersion11 &
|
||||||
DeviceAttributesVersion12 & DeviceAttributesVersion13 & DeviceAttributesVersion14
|
DeviceAttributesVersion12 & DeviceAttributesVersion13 & DeviceAttributesVersion14 &
|
||||||
|
DeviceAttributesVersion15
|
||||||
|
|
||||||
export type DeviceModel = Sequelize.Model<DeviceAttributes> & DeviceAttributes
|
export type DeviceModel = Sequelize.Model<DeviceAttributes> & DeviceAttributes
|
||||||
export type DeviceModelStatic = typeof Sequelize.Model & {
|
export type DeviceModelStatic = typeof Sequelize.Model & {
|
||||||
@@ -305,6 +317,26 @@ export const attributesVersion14: SequelizeAttributes<DeviceAttributesVersion14>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const attributesVersion15: SequelizeAttributes<DeviceAttributesVersion15> = {
|
||||||
|
platformType: {
|
||||||
|
type: Sequelize.STRING(maxPlatformTypeLength),
|
||||||
|
allowNull: true,
|
||||||
|
defaultValue: null,
|
||||||
|
validate: {
|
||||||
|
len: [minPlatformTypeLength, maxPlatformTypeLength]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
platformLevel: {
|
||||||
|
type: Sequelize.INTEGER,
|
||||||
|
allowNull: false,
|
||||||
|
defaultValue: minPlatformLevel,
|
||||||
|
validate: {
|
||||||
|
min: minPlatformLevel,
|
||||||
|
max: maxPlatformLevel
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export const attributes: SequelizeAttributes<DeviceAttributes> = {
|
export const attributes: SequelizeAttributes<DeviceAttributes> = {
|
||||||
...attributesVersion1,
|
...attributesVersion1,
|
||||||
...attributesVersion2,
|
...attributesVersion2,
|
||||||
@@ -319,7 +351,8 @@ export const attributes: SequelizeAttributes<DeviceAttributes> = {
|
|||||||
...attributesVersion11,
|
...attributesVersion11,
|
||||||
...attributesVersion12,
|
...attributesVersion12,
|
||||||
...attributesVersion13,
|
...attributesVersion13,
|
||||||
...attributesVersion14
|
...attributesVersion14,
|
||||||
|
...attributesVersion15
|
||||||
}
|
}
|
||||||
|
|
||||||
export const createDeviceModel = (sequelize: Sequelize.Sequelize): DeviceModelStatic => sequelize.define('Device', attributes) as DeviceModelStatic
|
export const createDeviceModel = (sequelize: Sequelize.Sequelize): DeviceModelStatic => sequelize.define('Device', attributes) as DeviceModelStatic
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2024 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -26,7 +26,7 @@ export const config = {
|
|||||||
expireTimeRounding: 1000 * 60 * 15
|
expireTimeRounding: 1000 * 60 * 15
|
||||||
}
|
}
|
||||||
|
|
||||||
export function calculateExpireTime(now: bigint): BigInt {
|
export function calculateExpireTime(now: bigint): bigint {
|
||||||
const expireBaseTime = now + BigInt(config.expireDelay)
|
const expireBaseTime = now + BigInt(config.expireDelay)
|
||||||
const expireTime = expireBaseTime - expireBaseTime % BigInt(config.expireTimeRounding) + BigInt(config.expireTimeRounding)
|
const expireTime = expireBaseTime - expireBaseTime % BigInt(config.expireTimeRounding) + BigInt(config.expireTimeRounding)
|
||||||
|
|
||||||
|
|||||||
+20
-3
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -37,8 +37,13 @@ export interface FamilyAttributesVersion3 {
|
|||||||
u2fKeysVersion: string
|
u2fKeysVersion: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface FamilyAttributesVersion4 {
|
||||||
|
fullVersionDebts: string
|
||||||
|
}
|
||||||
|
|
||||||
export type FamilyAttributes = FamilyAttributesVersion1 &
|
export type FamilyAttributes = FamilyAttributesVersion1 &
|
||||||
FamilyAttributesVersion2 & FamilyAttributesVersion3
|
FamilyAttributesVersion2 & FamilyAttributesVersion3 &
|
||||||
|
FamilyAttributesVersion4
|
||||||
|
|
||||||
export type FamilyModel = Sequelize.Model<FamilyAttributes> & FamilyAttributes
|
export type FamilyModel = Sequelize.Model<FamilyAttributes> & FamilyAttributes
|
||||||
export type FamilyModelStatic = typeof Sequelize.Model & {
|
export type FamilyModelStatic = typeof Sequelize.Model & {
|
||||||
@@ -76,10 +81,22 @@ export const attributesVersion3: SequelizeAttributes<FamilyAttributesVersion3> =
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const attributesVersion4: SequelizeAttributes<FamilyAttributesVersion4> = {
|
||||||
|
fullVersionDebts: {
|
||||||
|
type: Sequelize.BIGINT,
|
||||||
|
allowNull: false,
|
||||||
|
defaultValue: 0,
|
||||||
|
validate: {
|
||||||
|
min: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export const attributes: SequelizeAttributes<FamilyAttributes> = {
|
export const attributes: SequelizeAttributes<FamilyAttributes> = {
|
||||||
...attributesVersion1,
|
...attributesVersion1,
|
||||||
...attributesVersion2,
|
...attributesVersion2,
|
||||||
...attributesVersion3
|
...attributesVersion3,
|
||||||
|
...attributesVersion4
|
||||||
}
|
}
|
||||||
|
|
||||||
export const createFamilyModel = (sequelize: Sequelize.Sequelize): FamilyModelStatic => sequelize.define('Family', attributes) as FamilyModelStatic
|
export const createFamilyModel = (sequelize: Sequelize.Sequelize): FamilyModelStatic => sequelize.define('Family', attributes) as FamilyModelStatic
|
||||||
|
|||||||
+45
-10
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* server component for the TimeLimit App
|
* server component for the TimeLimit App
|
||||||
* Copyright (C) 2019 - 2022 Jonas Lochmann
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@@ -17,8 +17,6 @@
|
|||||||
|
|
||||||
import * as Sequelize from 'sequelize'
|
import * as Sequelize from 'sequelize'
|
||||||
import { AddDeviceTokenModelStatic, createAddDeviceTokenModel } from './adddevicetoken'
|
import { AddDeviceTokenModelStatic, createAddDeviceTokenModel } from './adddevicetoken'
|
||||||
import { AppModelStatic, createAppModel } from './app'
|
|
||||||
import { AppActivityModelStatic, createAppActivityModel } from './appactivity'
|
|
||||||
import { AuthTokenModelStatic, createAuthtokenModel } from './authtoken'
|
import { AuthTokenModelStatic, createAuthtokenModel } from './authtoken'
|
||||||
import { CategoryModelStatic, createCategoryModel } from './category'
|
import { CategoryModelStatic, createCategoryModel } from './category'
|
||||||
import { CategoryAppModelStatic, createCategoryAppModel } from './categoryapp'
|
import { CategoryAppModelStatic, createCategoryAppModel } from './categoryapp'
|
||||||
@@ -35,6 +33,7 @@ import { createKeyResponseModel, KeyResponseModelStatic } from './keyresponse'
|
|||||||
import { createMailLoginTokenModel, MailLoginTokenModelStatic } from './maillogintoken'
|
import { createMailLoginTokenModel, MailLoginTokenModelStatic } from './maillogintoken'
|
||||||
import { createUmzug } from './migration/umzug'
|
import { createUmzug } from './migration/umzug'
|
||||||
import { createOldDeviceModel, OldDeviceModelStatic } from './olddevice'
|
import { createOldDeviceModel, OldDeviceModelStatic } from './olddevice'
|
||||||
|
import { createPingModel, PingModelStatic } from './ping'
|
||||||
import { createPurchaseModel, PurchaseModelStatic } from './purchase'
|
import { createPurchaseModel, PurchaseModelStatic } from './purchase'
|
||||||
import { createSessionDurationModel, SessionDurationModelStatic } from './sessionduration'
|
import { createSessionDurationModel, SessionDurationModelStatic } from './sessionduration'
|
||||||
import { createTimelimitRuleModel, TimelimitRuleModelStatic } from './timelimitrule'
|
import { createTimelimitRuleModel, TimelimitRuleModelStatic } from './timelimitrule'
|
||||||
@@ -42,14 +41,13 @@ import { createU2fKeyModel, U2fKeyModelStatic } from './u2fkey'
|
|||||||
import { createUsedTimeModel, UsedTimeModelStatic } from './usedtime'
|
import { createUsedTimeModel, UsedTimeModelStatic } from './usedtime'
|
||||||
import { createUserModel, UserModelStatic } from './user'
|
import { createUserModel, UserModelStatic } from './user'
|
||||||
import { createUserLimitLoginCategoryModel, UserLimitLoginCategoryModelStatic } from './userlimitlogincategory'
|
import { createUserLimitLoginCategoryModel, UserLimitLoginCategoryModelStatic } from './userlimitlogincategory'
|
||||||
|
import { shouldRetryWithException } from './utils/serialized'
|
||||||
|
|
||||||
export type Transaction = Sequelize.Transaction
|
export type Transaction = Sequelize.Transaction
|
||||||
|
|
||||||
export interface Database {
|
export interface Database {
|
||||||
addDeviceToken: AddDeviceTokenModelStatic
|
addDeviceToken: AddDeviceTokenModelStatic
|
||||||
authtoken: AuthTokenModelStatic
|
authtoken: AuthTokenModelStatic
|
||||||
app: AppModelStatic
|
|
||||||
appActivity: AppActivityModelStatic
|
|
||||||
category: CategoryModelStatic
|
category: CategoryModelStatic
|
||||||
categoryApp: CategoryAppModelStatic
|
categoryApp: CategoryAppModelStatic
|
||||||
categoryNetworkId: CategoryNetworkIdModelStatic
|
categoryNetworkId: CategoryNetworkIdModelStatic
|
||||||
@@ -64,6 +62,7 @@ export interface Database {
|
|||||||
keyResponse: KeyResponseModelStatic
|
keyResponse: KeyResponseModelStatic
|
||||||
mailLoginToken: MailLoginTokenModelStatic
|
mailLoginToken: MailLoginTokenModelStatic
|
||||||
oldDevice: OldDeviceModelStatic
|
oldDevice: OldDeviceModelStatic
|
||||||
|
ping: PingModelStatic
|
||||||
purchase: PurchaseModelStatic
|
purchase: PurchaseModelStatic
|
||||||
sessionDuration: SessionDurationModelStatic
|
sessionDuration: SessionDurationModelStatic
|
||||||
timelimitRule: TimelimitRuleModelStatic
|
timelimitRule: TimelimitRuleModelStatic
|
||||||
@@ -71,15 +70,21 @@ export interface Database {
|
|||||||
usedTime: UsedTimeModelStatic
|
usedTime: UsedTimeModelStatic
|
||||||
user: UserModelStatic
|
user: UserModelStatic
|
||||||
userLimitLoginCategory: UserLimitLoginCategoryModelStatic
|
userLimitLoginCategory: UserLimitLoginCategoryModelStatic
|
||||||
transaction: <T> (autoCallback: (t: Transaction) => Promise<T>, options?: { transaction: Transaction }) => Promise<T>
|
transaction: <T> (
|
||||||
|
autoCallback: (t: Transaction) => Promise<T>,
|
||||||
|
options?: TransactionOptions
|
||||||
|
) => Promise<T>
|
||||||
dialect: string
|
dialect: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface TransactionOptions {
|
||||||
|
transaction?: Transaction
|
||||||
|
disableRetry?: boolean
|
||||||
|
}
|
||||||
|
|
||||||
const createDatabase = (sequelize: Sequelize.Sequelize): Database => ({
|
const createDatabase = (sequelize: Sequelize.Sequelize): Database => ({
|
||||||
addDeviceToken: createAddDeviceTokenModel(sequelize),
|
addDeviceToken: createAddDeviceTokenModel(sequelize),
|
||||||
authtoken: createAuthtokenModel(sequelize),
|
authtoken: createAuthtokenModel(sequelize),
|
||||||
app: createAppModel(sequelize),
|
|
||||||
appActivity: createAppActivityModel(sequelize),
|
|
||||||
category: createCategoryModel(sequelize),
|
category: createCategoryModel(sequelize),
|
||||||
categoryApp: createCategoryAppModel(sequelize),
|
categoryApp: createCategoryAppModel(sequelize),
|
||||||
childTask: createChildTaskModel(sequelize),
|
childTask: createChildTaskModel(sequelize),
|
||||||
@@ -94,6 +99,7 @@ const createDatabase = (sequelize: Sequelize.Sequelize): Database => ({
|
|||||||
keyResponse: createKeyResponseModel(sequelize),
|
keyResponse: createKeyResponseModel(sequelize),
|
||||||
mailLoginToken: createMailLoginTokenModel(sequelize),
|
mailLoginToken: createMailLoginTokenModel(sequelize),
|
||||||
oldDevice: createOldDeviceModel(sequelize),
|
oldDevice: createOldDeviceModel(sequelize),
|
||||||
|
ping: createPingModel(sequelize),
|
||||||
purchase: createPurchaseModel(sequelize),
|
purchase: createPurchaseModel(sequelize),
|
||||||
sessionDuration: createSessionDurationModel(sequelize),
|
sessionDuration: createSessionDurationModel(sequelize),
|
||||||
timelimitRule: createTimelimitRuleModel(sequelize),
|
timelimitRule: createTimelimitRuleModel(sequelize),
|
||||||
@@ -101,10 +107,39 @@ const createDatabase = (sequelize: Sequelize.Sequelize): Database => ({
|
|||||||
usedTime: createUsedTimeModel(sequelize),
|
usedTime: createUsedTimeModel(sequelize),
|
||||||
user: createUserModel(sequelize),
|
user: createUserModel(sequelize),
|
||||||
userLimitLoginCategory: createUserLimitLoginCategoryModel(sequelize),
|
userLimitLoginCategory: createUserLimitLoginCategoryModel(sequelize),
|
||||||
transaction: <T> (autoCallback: (transaction: Transaction) => Promise<T>, options?: { transaction: Transaction }) => (sequelize.transaction({
|
async transaction<T>(
|
||||||
|
autoCallback: (transaction: Transaction) => Promise<T>,
|
||||||
|
options?: TransactionOptions
|
||||||
|
): Promise<T> {
|
||||||
|
const runAttempt = () => sequelize.transaction({
|
||||||
isolationLevel: Sequelize.Transaction.ISOLATION_LEVELS.SERIALIZABLE,
|
isolationLevel: Sequelize.Transaction.ISOLATION_LEVELS.SERIALIZABLE,
|
||||||
transaction: options?.transaction
|
transaction: options?.transaction
|
||||||
}, autoCallback)) as Promise<T>,
|
}, autoCallback)
|
||||||
|
|
||||||
|
const delay = (time: number) => new Promise((resolve) => setTimeout(resolve, time))
|
||||||
|
|
||||||
|
try {
|
||||||
|
return await runAttempt()
|
||||||
|
} catch (ex) {
|
||||||
|
if (
|
||||||
|
options?.disableRetry ||
|
||||||
|
options?.transaction ||
|
||||||
|
!shouldRetryWithException(this, ex)
|
||||||
|
) throw ex
|
||||||
|
}
|
||||||
|
|
||||||
|
await delay(10 * (1 + Math.random()))
|
||||||
|
|
||||||
|
try {
|
||||||
|
return await runAttempt()
|
||||||
|
} catch (ex) {
|
||||||
|
if (!shouldRetryWithException(this, ex)) throw ex
|
||||||
|
}
|
||||||
|
|
||||||
|
await delay(100 * (1 + Math.random()))
|
||||||
|
|
||||||
|
return await runAttempt()
|
||||||
|
},
|
||||||
dialect: sequelize.getDialect()
|
dialect: sequelize.getDialect()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
+10
-19
@@ -15,26 +15,17 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import * as Sequelize from 'sequelize'
|
import { QueryInterface, Sequelize, Transaction } from 'sequelize'
|
||||||
import { RemoveInstalledAppsAction } from '../../../../action'
|
|
||||||
import { Cache } from '../cache'
|
|
||||||
|
|
||||||
export async function dispatchRemoveInstalledApps ({ deviceId, action, cache }: {
|
export async function up (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
deviceId: string
|
await sequelize.transaction({
|
||||||
action: RemoveInstalledAppsAction
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
cache: Cache
|
}, async (transaction) => {
|
||||||
}) {
|
await queryInterface.dropTable('Apps', { transaction })
|
||||||
await cache.database.app.destroy({
|
await queryInterface.dropTable('AppActivities', { transaction })
|
||||||
where: {
|
|
||||||
familyId: cache.familyId,
|
|
||||||
deviceId,
|
|
||||||
packageName: {
|
|
||||||
[Sequelize.Op.in]: action.packageNames
|
|
||||||
}
|
|
||||||
},
|
|
||||||
transaction: cache.transaction
|
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
cache.devicesWithModifiedInstalledApps.add(deviceId)
|
export async function down() {
|
||||||
cache.incrementTriggeredSyncLevel(1)
|
throw new Error('not possible')
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
/*
|
||||||
|
* server component for the TimeLimit App
|
||||||
|
* Copyright (C) 2019 - 2023 Jonas Lochmann
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, version 3 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { QueryInterface, Sequelize, Transaction } from 'sequelize'
|
||||||
|
import { attributesVersion15 as deviceAttributes } from '../../device'
|
||||||
|
|
||||||
|
export async function up (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
|
await sequelize.transaction({
|
||||||
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
|
}, async (transaction) => {
|
||||||
|
await queryInterface.addColumn('Devices', 'platformType', {
|
||||||
|
...deviceAttributes.platformType
|
||||||
|
}, {
|
||||||
|
transaction
|
||||||
|
})
|
||||||
|
|
||||||
|
await queryInterface.addColumn('Devices', 'platformLevel', {
|
||||||
|
...deviceAttributes.platformLevel
|
||||||
|
}, {
|
||||||
|
transaction
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function down (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
|
await sequelize.transaction({
|
||||||
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
|
}, async (transaction) => {
|
||||||
|
await queryInterface.removeColumn('Devices', 'platformLevel', { transaction })
|
||||||
|
await queryInterface.removeColumn('Devices', 'platformType', { transaction })
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
* server component for the TimeLimit App
|
||||||
|
* Copyright (C) 2019 - 2024 Jonas Lochmann
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, version 3 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { QueryInterface, Sequelize, Transaction } from 'sequelize'
|
||||||
|
import { attributesVersion4 as ruleAttributes } from '../../timelimitrule'
|
||||||
|
|
||||||
|
export async function up (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
|
await sequelize.transaction({
|
||||||
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
|
}, async (transaction) => {
|
||||||
|
await queryInterface.addColumn('TimelimitRules', 'expiresAt', {
|
||||||
|
...ruleAttributes.expiresAt
|
||||||
|
}, {
|
||||||
|
transaction
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function down (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
|
await sequelize.transaction({
|
||||||
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
|
}, async (transaction) => {
|
||||||
|
await queryInterface.removeColumn('TimelimitRules', 'expiresAt', { transaction })
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
/*
|
||||||
|
* server component for the TimeLimit App
|
||||||
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, version 3 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { QueryInterface, Sequelize, Transaction } from 'sequelize'
|
||||||
|
|
||||||
|
export async function up (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
|
await sequelize.transaction({
|
||||||
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
|
}, async (transaction) => {
|
||||||
|
const dialect = sequelize.getDialect()
|
||||||
|
const isMysql = dialect === 'mysql' || dialect === 'mariadb'
|
||||||
|
|
||||||
|
if (isMysql) {
|
||||||
|
await sequelize.query(
|
||||||
|
'CREATE TABLE `Pings` ' +
|
||||||
|
'(`familyId` VARCHAR(10) NOT NULL,' +
|
||||||
|
'`receiverDeviceId` VARCHAR(6) NOT NULL,' +
|
||||||
|
'`senderDeviceId` VARCHAR(6) NOT NULL,' +
|
||||||
|
'`type` INTEGER NOT NULL,' +
|
||||||
|
'`token` VARCHAR(6) NOT NULL,' +
|
||||||
|
'PRIMARY KEY (`familyId`, `receiverDeviceId`, `senderDeviceId`, `type`),' +
|
||||||
|
'FOREIGN KEY (`familyId`, `receiverDeviceId`) REFERENCES `Devices` (`familyId`, `deviceId`) ON UPDATE CASCADE ON DELETE CASCADE,' +
|
||||||
|
'FOREIGN KEY (`familyId`, `senderDeviceId`) REFERENCES `Devices` (`familyId`, `deviceId`) ON UPDATE CASCADE ON DELETE CASCADE' +
|
||||||
|
')',
|
||||||
|
{ transaction }
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
await sequelize.query(
|
||||||
|
'CREATE TABLE "Pings" ' +
|
||||||
|
'("familyId" VARCHAR(10) NOT NULL,' +
|
||||||
|
'"receiverDeviceId" VARCHAR(6) NOT NULL,' +
|
||||||
|
'"senderDeviceId" VARCHAR(6) NOT NULL,' +
|
||||||
|
'"type" INTEGER NOT NULL,' +
|
||||||
|
'"token" VARCHAR(6) NOT NULL,' +
|
||||||
|
'PRIMARY KEY ("familyId", "receiverDeviceId", "senderDeviceId", "type"),' +
|
||||||
|
'FOREIGN KEY ("familyId", "receiverDeviceId") REFERENCES "Devices" ("familyId", "deviceId") ON UPDATE CASCADE ON DELETE CASCADE,' +
|
||||||
|
'FOREIGN KEY ("familyId", "senderDeviceId") REFERENCES "Devices" ("familyId", "deviceId") ON UPDATE CASCADE ON DELETE CASCADE' +
|
||||||
|
')',
|
||||||
|
{ transaction }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
await queryInterface.addIndex('Pings', ['familyId', 'senderDeviceId'], { transaction })
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function down (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
|
await sequelize.transaction({
|
||||||
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
|
}, async (transaction) => {
|
||||||
|
await queryInterface.dropTable('Pings', { transaction })
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
* server component for the TimeLimit App
|
||||||
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, version 3 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { QueryInterface, Sequelize, Transaction } from 'sequelize'
|
||||||
|
import { attributesVersion4 as familyAttributes } from '../../family'
|
||||||
|
|
||||||
|
export async function up (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
|
await sequelize.transaction({
|
||||||
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
|
}, async (transaction) => {
|
||||||
|
await queryInterface.addColumn('Families', 'fullVersionDebts', {
|
||||||
|
...familyAttributes.fullVersionDebts
|
||||||
|
}, {
|
||||||
|
transaction
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function down (queryInterface: QueryInterface, sequelize: Sequelize) {
|
||||||
|
await sequelize.transaction({
|
||||||
|
type: Transaction.TYPES.EXCLUSIVE
|
||||||
|
}, async (transaction) => {
|
||||||
|
await queryInterface.removeColumn('Families', 'fullVersionDebts', { transaction })
|
||||||
|
})
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user