You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/api/query/system/system.msw.ts
+28-7Lines changed: 28 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,38 @@
6
6
* API documentation for the starter-kit project in NestJS by BinarApps. The API allows management of users, sessions and offers various functions for logged in users. Contains examples of authentication, authorization, and CRUD for selected resources.
* API documentation for the starter-kit project in NestJS by BinarApps. The API allows management of users, sessions and offers various functions for logged in users. Contains examples of authentication, authorization, and CRUD for selected resources.
7
+
* OpenAPI spec version: 1.0
8
+
*/
9
+
10
+
exportinterfaceAppVersionStatusEntity{
11
+
/** AppId of application in AppStore(AppStore Bundle ID) or PlayStore(Google Play Store app ID) */
12
+
appId: string
13
+
/** The current version of the app. */
14
+
currentVersionReleaseDate: string
15
+
/** The latest version of the app available in the app store. */
16
+
latestVersion: string
17
+
/** The minimum version of the app that still functions correctly without mandatory updates. */
18
+
minimumVersion: string
19
+
/** Indicates whether an update is required to continue using the app. */
0 commit comments