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 app updates check (updates/check) - public endpoint for mobile apps
44
+ * Endpoint for OTA update check (ota/check-update) - public endpoint for mobile apps
45
45
  */
46
- appUpdatesCheck: string;
46
+ appOtaCheckUpdate: string;
47
47
  /**
48
- * Endpoint for app updates download (updates/download) - public endpoint for mobile apps
48
+ * Endpoint for OTA update success recording (ota/record-success) - public endpoint for mobile apps
49
49
  */
50
- appUpdatesDownload: string;
50
+ appOtaRecordSuccess: string;
51
51
  /**
52
- * Endpoint for app updates status (updates/status) - public endpoint for mobile apps
52
+ * Endpoint for OTA update failure recording (ota/record-failure) - public endpoint for mobile apps
53
53
  */
54
- appUpdatesStatus: string;
54
+ appOtaRecordFailure: string;
55
55
  /**
56
- * Endpoint for platform API integration (platform-api)
56
+ * Endpoint for app registration starts (app-registration-starts)
57
57
  */
58
- platformApiIntegration: string;
58
+ appRegistrationStart: string;
59
59
  /**
60
- * Endpoint for platform deployment (platform-deployment)
60
+ * Endpoint for app rollout configs (app-rollout-configs)
61
61
  */
62
- platformDeployment: string;
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 };
@@ -44,25 +44,29 @@ const appRoutesUrl = {
44
44
  */
45
45
  appStatistics: 'app-statistics',
46
46
  /**
47
- * Endpoint for app updates check (updates/check) - public endpoint for mobile apps
47
+ * Endpoint for OTA update check (ota/check-update) - public endpoint for mobile apps
48
48
  */
49
- appUpdatesCheck: 'updates/check',
49
+ appOtaCheckUpdate: 'ota/check-update',
50
50
  /**
51
- * Endpoint for app updates download (updates/download) - public endpoint for mobile apps
51
+ * Endpoint for OTA update success recording (ota/record-success) - public endpoint for mobile apps
52
52
  */
53
- appUpdatesDownload: 'updates/download',
53
+ appOtaRecordSuccess: 'ota/record-success',
54
54
  /**
55
- * Endpoint for app updates status (updates/status) - public endpoint for mobile apps
55
+ * Endpoint for OTA update failure recording (ota/record-failure) - public endpoint for mobile apps
56
56
  */
57
- appUpdatesStatus: 'updates/status',
57
+ appOtaRecordFailure: 'ota/record-failure',
58
58
  /**
59
- * Endpoint for platform API integration (platform-api)
59
+ * Endpoint for app registration starts (app-registration-starts)
60
60
  */
61
- platformApiIntegration: 'platform-api',
61
+ appRegistrationStart: 'app-registration-starts',
62
62
  /**
63
- * Endpoint for platform deployment (platform-deployment)
63
+ * Endpoint for app rollout configs (app-rollout-configs)
64
64
  */
65
- platformDeployment: 'platform-deployment'
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
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "typescript": "^5.4.2"
4
4
  },
5
5
  "name": "cloud-ide-lms-model",
6
- "version": "1.1.21",
6
+ "version": "1.1.22",
7
7
  "description": "Package for Model management of Cloud IDEsys LMS",
8
8
  "main": "lib/index.js",
9
9
  "types": "lib/index.d.ts",