cloud-ide-lms-model 1.1.21 → 1.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,6 +17,7 @@ type IFinancialYearMappingToggleStatusErrorLogger = {
|
|
|
17
17
|
[key in keyof MFinancialYearMappingToggleStatusPayload]: string;
|
|
18
18
|
};
|
|
19
19
|
declare class MFinancialYearMapping extends MTableQueries {
|
|
20
|
+
accfymp_financial_year_id_accyr?: string;
|
|
20
21
|
constructor(init: MFinancialYearMapping);
|
|
21
22
|
Validate?(): Partial<IFinancialYearMappingErrorLogger>;
|
|
22
23
|
}
|
|
@@ -41,24 +41,28 @@ declare const appRoutesUrl: {
|
|
|
41
41
|
*/
|
|
42
42
|
appStatistics: string;
|
|
43
43
|
/**
|
|
44
|
-
* Endpoint for
|
|
44
|
+
* Endpoint for OTA update check (ota/check-update) - public endpoint for mobile apps
|
|
45
45
|
*/
|
|
46
|
-
|
|
46
|
+
appOtaCheckUpdate: string;
|
|
47
47
|
/**
|
|
48
|
-
* Endpoint for
|
|
48
|
+
* Endpoint for OTA update success recording (ota/record-success) - public endpoint for mobile apps
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
appOtaRecordSuccess: string;
|
|
51
51
|
/**
|
|
52
|
-
* Endpoint for
|
|
52
|
+
* Endpoint for OTA update failure recording (ota/record-failure) - public endpoint for mobile apps
|
|
53
53
|
*/
|
|
54
|
-
|
|
54
|
+
appOtaRecordFailure: string;
|
|
55
55
|
/**
|
|
56
|
-
* Endpoint for
|
|
56
|
+
* Endpoint for app registration starts (app-registration-starts)
|
|
57
57
|
*/
|
|
58
|
-
|
|
58
|
+
appRegistrationStart: string;
|
|
59
59
|
/**
|
|
60
|
-
* Endpoint for
|
|
60
|
+
* Endpoint for app rollout configs (app-rollout-configs)
|
|
61
61
|
*/
|
|
62
|
-
|
|
62
|
+
appRolloutConfig: string;
|
|
63
|
+
/**
|
|
64
|
+
* Endpoint for app user update status (app-user-update-status)
|
|
65
|
+
*/
|
|
66
|
+
appUserUpdateStatus: string;
|
|
63
67
|
};
|
|
64
68
|
export { appRoutesUrl };
|
package/lib/routes/appRoutes.js
CHANGED
|
@@ -44,25 +44,29 @@ const appRoutesUrl = {
|
|
|
44
44
|
*/
|
|
45
45
|
appStatistics: 'app-statistics',
|
|
46
46
|
/**
|
|
47
|
-
* Endpoint for
|
|
47
|
+
* Endpoint for OTA update check (ota/check-update) - public endpoint for mobile apps
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
appOtaCheckUpdate: 'ota/check-update',
|
|
50
50
|
/**
|
|
51
|
-
* Endpoint for
|
|
51
|
+
* Endpoint for OTA update success recording (ota/record-success) - public endpoint for mobile apps
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
appOtaRecordSuccess: 'ota/record-success',
|
|
54
54
|
/**
|
|
55
|
-
* Endpoint for
|
|
55
|
+
* Endpoint for OTA update failure recording (ota/record-failure) - public endpoint for mobile apps
|
|
56
56
|
*/
|
|
57
|
-
|
|
57
|
+
appOtaRecordFailure: 'ota/record-failure',
|
|
58
58
|
/**
|
|
59
|
-
* Endpoint for
|
|
59
|
+
* Endpoint for app registration starts (app-registration-starts)
|
|
60
60
|
*/
|
|
61
|
-
|
|
61
|
+
appRegistrationStart: 'app-registration-starts',
|
|
62
62
|
/**
|
|
63
|
-
* Endpoint for
|
|
63
|
+
* Endpoint for app rollout configs (app-rollout-configs)
|
|
64
64
|
*/
|
|
65
|
-
|
|
65
|
+
appRolloutConfig: 'app-rollout-configs',
|
|
66
|
+
/**
|
|
67
|
+
* Endpoint for app user update status (app-user-update-status)
|
|
68
|
+
*/
|
|
69
|
+
appUserUpdateStatus: 'app-user-update-status'
|
|
66
70
|
};
|
|
67
71
|
exports.appRoutesUrl = appRoutesUrl;
|
|
68
72
|
// Freeze the appRoutesUrl object to prevent modifications
|