cloud-ide-lms-model 1.1.16 → 1.1.20
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.
- package/lib/model/app/app-build-config.model.d.ts +55 -0
- package/lib/model/app/app-build-config.model.js +40 -0
- package/lib/model/app/app-changelog.model.d.ts +55 -0
- package/lib/model/app/app-changelog.model.js +40 -0
- package/lib/model/app/app-deployment.model.d.ts +59 -0
- package/lib/model/app/app-deployment.model.js +40 -0
- package/lib/model/app/app-platform-link.model.d.ts +62 -0
- package/lib/model/app/app-platform-link.model.js +40 -0
- package/lib/model/app/app-publish.model.d.ts +93 -0
- package/lib/model/app/app-publish.model.js +40 -0
- package/lib/model/app/app-registration-start.model.d.ts +55 -0
- package/lib/model/app/app-registration-start.model.js +40 -0
- package/lib/model/app/app-registration.model.d.ts +58 -0
- package/lib/model/app/app-registration.model.js +40 -0
- package/lib/model/app/app-store-provider.model.d.ts +56 -0
- package/lib/model/app/app-store-provider.model.js +40 -0
- package/lib/model/app/app-version.model.d.ts +66 -0
- package/lib/model/app/app-version.model.js +40 -0
- package/lib/model/app/index.d.ts +9 -0
- package/lib/model/app/index.js +25 -0
- package/lib/model/auth/reset-password.d.ts +1 -0
- package/lib/model/index.d.ts +1 -0
- package/lib/model/index.js +1 -0
- package/lib/routes/appRoutes.d.ts +64 -0
- package/lib/routes/appRoutes.js +69 -0
- package/lib/routes/index.d.ts +1 -0
- package/lib/routes/index.js +1 -0
- package/lib/schema/app/app_build_config_mst.d.ts +13 -0
- package/lib/schema/app/app_build_config_mst.js +7 -0
- package/lib/schema/app/app_platform_link_mst.d.ts +19 -0
- package/lib/schema/app/app_platform_link_mst.js +7 -0
- package/lib/schema/app/app_publish_details_mst.d.ts +50 -0
- package/lib/schema/app/app_publish_details_mst.js +7 -0
- package/lib/schema/app/app_registration_mst.d.ts +16 -0
- package/lib/schema/app/app_registration_mst.js +7 -0
- package/lib/schema/app/app_registration_start_mst.d.ts +12 -0
- package/lib/schema/app/app_registration_start_mst.js +7 -0
- package/lib/schema/app/app_rollout_config_mst.d.ts +17 -0
- package/lib/schema/app/app_rollout_config_mst.js +7 -0
- package/lib/schema/app/app_store_provider_mst.d.ts +14 -0
- package/lib/schema/app/app_store_provider_mst.js +7 -0
- package/lib/schema/app/app_update_changelog_mst.d.ts +14 -0
- package/lib/schema/app/app_update_changelog_mst.js +7 -0
- package/lib/schema/app/app_update_deployment_mst.d.ts +18 -0
- package/lib/schema/app/app_update_deployment_mst.js +7 -0
- package/lib/schema/app/app_update_statistics_mst.d.ts +17 -0
- package/lib/schema/app/app_update_statistics_mst.js +7 -0
- package/lib/schema/app/app_user_update_status_mst.d.ts +19 -0
- package/lib/schema/app/app_user_update_status_mst.js +7 -0
- package/lib/schema/app/app_version_mst.d.ts +24 -0
- package/lib/schema/app/app_version_mst.js +7 -0
- package/lib/schema/app/index.d.ts +12 -0
- package/lib/schema/app/index.js +28 -0
- package/lib/schema/index.d.ts +1 -0
- package/lib/schema/index.js +1 -0
- package/package.json +7 -4
- package/lib/model/frontdesk/fdsk_lead_detail.d.ts +0 -34
- package/lib/model/frontdesk/fdsk_lead_detail.js +0 -27
- package/lib/model/frontdesk/fdsk_lead_scheduling.d.ts +0 -34
- package/lib/model/frontdesk/fdsk_lead_scheduling.js +0 -27
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare class IAppRolloutConfigMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
approll_version_id_appver?: string;
|
|
4
|
+
approll_rollout_phases?: Array<{
|
|
5
|
+
phase_number?: number;
|
|
6
|
+
percentage?: number;
|
|
7
|
+
start_date?: Date;
|
|
8
|
+
end_date?: Date;
|
|
9
|
+
phase_status_id_sygms?: string;
|
|
10
|
+
}>;
|
|
11
|
+
approll_rollout_criteria?: Record<string, unknown>;
|
|
12
|
+
approll_auto_advance?: boolean;
|
|
13
|
+
approll_created_by_id_auth?: string;
|
|
14
|
+
approll_created_at?: Date;
|
|
15
|
+
approll_updated_at?: Date;
|
|
16
|
+
}
|
|
17
|
+
export { IAppRolloutConfigMst };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare class IAppStoreProviderMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appstore_store_name?: string;
|
|
4
|
+
appstore_store_type_id_sygms?: string;
|
|
5
|
+
appstore_store_provider_code?: string;
|
|
6
|
+
appstore_store_api_endpoint?: string;
|
|
7
|
+
appstore_store_credentials?: Record<string, unknown>;
|
|
8
|
+
appstore_store_config?: Record<string, unknown>;
|
|
9
|
+
appstore_is_active?: boolean;
|
|
10
|
+
appstore_created_by_id_auth?: string;
|
|
11
|
+
appstore_created_at?: Date;
|
|
12
|
+
appstore_updated_at?: Date;
|
|
13
|
+
}
|
|
14
|
+
export { IAppStoreProviderMst };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare class IAppUpdateChangelogMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appchg_version_id_appver?: string;
|
|
4
|
+
appchg_category_id_sygms?: string;
|
|
5
|
+
appchg_title?: string;
|
|
6
|
+
appchg_description?: string;
|
|
7
|
+
appchg_bug_id?: string;
|
|
8
|
+
appchg_affected_modules?: string[];
|
|
9
|
+
appchg_priority_id_sygms?: string;
|
|
10
|
+
appchg_tags?: string[];
|
|
11
|
+
appchg_created_by_id_auth?: string;
|
|
12
|
+
appchg_created_at?: Date;
|
|
13
|
+
}
|
|
14
|
+
export { IAppUpdateChangelogMst };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare class IAppUpdateDeploymentMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appdep_version_id_appver?: string;
|
|
4
|
+
appdep_deployment_type_id_sygms?: string;
|
|
5
|
+
appdep_rollout_percentage?: number;
|
|
6
|
+
appdep_target_users?: string[];
|
|
7
|
+
appdep_start_date?: Date;
|
|
8
|
+
appdep_end_date?: Date;
|
|
9
|
+
appdep_status_id_sygms?: string;
|
|
10
|
+
appdep_rollback_version_id_appver?: string;
|
|
11
|
+
appdep_rollback_reason?: string;
|
|
12
|
+
appdep_workflow_id_wfrg?: string;
|
|
13
|
+
appdep_current_step?: number;
|
|
14
|
+
appdep_created_by_id_auth?: string;
|
|
15
|
+
appdep_created_at?: Date;
|
|
16
|
+
appdep_updated_at?: Date;
|
|
17
|
+
}
|
|
18
|
+
export { IAppUpdateDeploymentMst };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare class IAppUpdateStatisticsMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appstat_version_id_appver?: string;
|
|
4
|
+
appstat_stat_date?: Date;
|
|
5
|
+
appstat_total_users?: number;
|
|
6
|
+
appstat_users_on_version?: number;
|
|
7
|
+
appstat_users_updated?: number;
|
|
8
|
+
appstat_users_failed?: number;
|
|
9
|
+
appstat_success_rate?: number;
|
|
10
|
+
appstat_avg_update_time?: number;
|
|
11
|
+
appstat_download_count?: number;
|
|
12
|
+
appstat_install_count?: number;
|
|
13
|
+
appstat_rollback_count?: number;
|
|
14
|
+
appstat_created_at?: Date;
|
|
15
|
+
appstat_updated_at?: Date;
|
|
16
|
+
}
|
|
17
|
+
export { IAppUpdateStatisticsMst };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare class IAppUserUpdateStatusMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appust_reg_id_appreg?: string;
|
|
4
|
+
appust_user_id_auth?: string;
|
|
5
|
+
appust_device_id?: string;
|
|
6
|
+
appust_current_version?: string;
|
|
7
|
+
appust_current_version_code?: number;
|
|
8
|
+
appust_platform_id_sygms?: string;
|
|
9
|
+
appust_last_update_check?: Date;
|
|
10
|
+
appust_last_update_attempt?: Date;
|
|
11
|
+
appust_last_update_success?: Date;
|
|
12
|
+
appust_last_update_error?: string;
|
|
13
|
+
appust_update_status_id_sygms?: string;
|
|
14
|
+
appust_auto_update_enabled?: boolean;
|
|
15
|
+
appust_device_info?: Record<string, unknown>;
|
|
16
|
+
appust_created_at?: Date;
|
|
17
|
+
appust_updated_at?: Date;
|
|
18
|
+
}
|
|
19
|
+
export { IAppUserUpdateStatusMst };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare class IAppVersionMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appver_reg_id_appreg?: string;
|
|
4
|
+
appver_version_number?: string;
|
|
5
|
+
appver_version_code?: number;
|
|
6
|
+
appver_release_type_id_sygms?: string;
|
|
7
|
+
appver_is_active?: boolean;
|
|
8
|
+
appver_is_forced?: boolean;
|
|
9
|
+
appver_min_supported_version?: string;
|
|
10
|
+
appver_release_date?: Date;
|
|
11
|
+
appver_release_notes?: string;
|
|
12
|
+
appver_build_number?: string;
|
|
13
|
+
appver_bundle_size?: number;
|
|
14
|
+
appver_bundle_file_id_cyfm?: string;
|
|
15
|
+
appver_bundle_hash?: string;
|
|
16
|
+
appver_bundle_signature?: string;
|
|
17
|
+
appver_deployment_status_id_sygms?: string;
|
|
18
|
+
appver_deployed_by_id_auth?: string;
|
|
19
|
+
appver_deployed_at?: Date;
|
|
20
|
+
appver_created_by_id_auth?: string;
|
|
21
|
+
appver_created_at?: Date;
|
|
22
|
+
appver_updated_at?: Date;
|
|
23
|
+
}
|
|
24
|
+
export { IAppVersionMst };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from './app_registration_mst';
|
|
2
|
+
export * from './app_platform_link_mst';
|
|
3
|
+
export * from './app_registration_start_mst';
|
|
4
|
+
export * from './app_build_config_mst';
|
|
5
|
+
export * from './app_store_provider_mst';
|
|
6
|
+
export * from './app_publish_details_mst';
|
|
7
|
+
export * from './app_version_mst';
|
|
8
|
+
export * from './app_update_deployment_mst';
|
|
9
|
+
export * from './app_update_changelog_mst';
|
|
10
|
+
export * from './app_user_update_status_mst';
|
|
11
|
+
export * from './app_update_statistics_mst';
|
|
12
|
+
export * from './app_rollout_config_mst';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./app_registration_mst"), exports);
|
|
18
|
+
__exportStar(require("./app_platform_link_mst"), exports);
|
|
19
|
+
__exportStar(require("./app_registration_start_mst"), exports);
|
|
20
|
+
__exportStar(require("./app_build_config_mst"), exports);
|
|
21
|
+
__exportStar(require("./app_store_provider_mst"), exports);
|
|
22
|
+
__exportStar(require("./app_publish_details_mst"), exports);
|
|
23
|
+
__exportStar(require("./app_version_mst"), exports);
|
|
24
|
+
__exportStar(require("./app_update_deployment_mst"), exports);
|
|
25
|
+
__exportStar(require("./app_update_changelog_mst"), exports);
|
|
26
|
+
__exportStar(require("./app_user_update_status_mst"), exports);
|
|
27
|
+
__exportStar(require("./app_update_statistics_mst"), exports);
|
|
28
|
+
__exportStar(require("./app_rollout_config_mst"), exports);
|
package/lib/schema/index.d.ts
CHANGED
package/lib/schema/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"dependencies": {
|
|
3
|
-
},
|
|
4
2
|
"devDependencies": {
|
|
5
3
|
"typescript": "^5.4.2"
|
|
6
4
|
},
|
|
7
5
|
"name": "cloud-ide-lms-model",
|
|
8
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.20",
|
|
9
7
|
"description": "Package for Model management of Cloud IDEsys LMS",
|
|
10
8
|
"main": "lib/index.js",
|
|
11
9
|
"types": "lib/index.d.ts",
|
|
@@ -25,5 +23,10 @@
|
|
|
25
23
|
},
|
|
26
24
|
"author": "ankush bhure",
|
|
27
25
|
"license": "ISC",
|
|
28
|
-
"files": ["lib/**/*"]
|
|
26
|
+
"files": ["lib/**/*"],
|
|
27
|
+
"dependencies": {
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"typescript": "^5.4.2"
|
|
31
|
+
}
|
|
29
32
|
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { MTableQueries } from "../../common-types/common";
|
|
2
|
-
import { FdskLeadDetail } from "../../schema";
|
|
3
|
-
import { controllerResponse } from "../../utilities";
|
|
4
|
-
type IFdskLeadDetailErrorLogger = {
|
|
5
|
-
[key in keyof MFdskLeadDetail]: string;
|
|
6
|
-
};
|
|
7
|
-
type FdskLeadDetailErrorLogger = {
|
|
8
|
-
[key in keyof FdskLeadDetail]: string;
|
|
9
|
-
};
|
|
10
|
-
declare class FdskLeadDetailSaveUpdatePayload {
|
|
11
|
-
fdsk_lead_detail?: FdskLeadDetail;
|
|
12
|
-
constructor(init: FdskLeadDetailSaveUpdatePayload);
|
|
13
|
-
Validate?(): Partial<FdskLeadDetailErrorLogger>;
|
|
14
|
-
}
|
|
15
|
-
declare class MFdskLeadDetail extends MTableQueries {
|
|
16
|
-
fdld_id?: string;
|
|
17
|
-
constructor(init: MFdskLeadDetail);
|
|
18
|
-
Validate?(): Partial<IFdskLeadDetailErrorLogger>;
|
|
19
|
-
}
|
|
20
|
-
interface fdskLeadDetailControllerResponse extends controllerResponse {
|
|
21
|
-
data?: FdskLeadDetailListResponse[];
|
|
22
|
-
}
|
|
23
|
-
interface fdskLeadDetailInsertUpdateControllerResponse extends controllerResponse {
|
|
24
|
-
data?: FdskLeadDetail;
|
|
25
|
-
}
|
|
26
|
-
interface fdskLeadDetailByIdControllerResponse extends controllerResponse {
|
|
27
|
-
data?: FdskLeadDetail;
|
|
28
|
-
}
|
|
29
|
-
interface FdskLeadDetailListResponse extends FdskLeadDetail {
|
|
30
|
-
children: FdskLeadDetailListResponse[];
|
|
31
|
-
}
|
|
32
|
-
export { IFdskLeadDetailErrorLogger, //interface
|
|
33
|
-
MFdskLeadDetail, // model
|
|
34
|
-
fdskLeadDetailControllerResponse, FdskLeadDetailListResponse, fdskLeadDetailInsertUpdateControllerResponse, fdskLeadDetailByIdControllerResponse, FdskLeadDetailSaveUpdatePayload };
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FdskLeadDetailSaveUpdatePayload = exports.MFdskLeadDetail = void 0;
|
|
4
|
-
const common_1 = require("../../common-types/common");
|
|
5
|
-
/* INTERFACE END */
|
|
6
|
-
/* MODEL START */
|
|
7
|
-
class FdskLeadDetailSaveUpdatePayload {
|
|
8
|
-
constructor(init) {
|
|
9
|
-
Object.assign(this, init);
|
|
10
|
-
}
|
|
11
|
-
Validate() {
|
|
12
|
-
let errorLogger = {};
|
|
13
|
-
return errorLogger;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
exports.FdskLeadDetailSaveUpdatePayload = FdskLeadDetailSaveUpdatePayload;
|
|
17
|
-
class MFdskLeadDetail extends common_1.MTableQueries {
|
|
18
|
-
constructor(init) {
|
|
19
|
-
super(init);
|
|
20
|
-
Object.assign(this, init);
|
|
21
|
-
}
|
|
22
|
-
Validate() {
|
|
23
|
-
let errorLogger = {};
|
|
24
|
-
return errorLogger;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
exports.MFdskLeadDetail = MFdskLeadDetail;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { MTableQueries } from "../../common-types/common";
|
|
2
|
-
import { FdskLeadScheduling } from "../../schema";
|
|
3
|
-
import { controllerResponse } from "../../utilities";
|
|
4
|
-
type IFdskLeadSchedulingErrorLogger = {
|
|
5
|
-
[key in keyof MFdskLeadScheduling]: string;
|
|
6
|
-
};
|
|
7
|
-
type FdskLeadSchedulingErrorLogger = {
|
|
8
|
-
[key in keyof FdskLeadScheduling]: string;
|
|
9
|
-
};
|
|
10
|
-
declare class FdskLeadSchedulingSaveUpdatePayload {
|
|
11
|
-
fdsk_lead_scheduling?: FdskLeadScheduling;
|
|
12
|
-
constructor(init: FdskLeadSchedulingSaveUpdatePayload);
|
|
13
|
-
Validate?(): Partial<FdskLeadSchedulingErrorLogger>;
|
|
14
|
-
}
|
|
15
|
-
declare class MFdskLeadScheduling extends MTableQueries {
|
|
16
|
-
fdlsc_id?: string;
|
|
17
|
-
constructor(init: MFdskLeadScheduling);
|
|
18
|
-
Validate?(): Partial<IFdskLeadSchedulingErrorLogger>;
|
|
19
|
-
}
|
|
20
|
-
interface fdskLeadSchedulingControllerResponse extends controllerResponse {
|
|
21
|
-
data?: FdskLeadSchedulingListResponse[];
|
|
22
|
-
}
|
|
23
|
-
interface fdskLeadSchedulingInsertUpdateControllerResponse extends controllerResponse {
|
|
24
|
-
data?: FdskLeadScheduling;
|
|
25
|
-
}
|
|
26
|
-
interface fdskLeadSchedulingByIdControllerResponse extends controllerResponse {
|
|
27
|
-
data?: FdskLeadScheduling;
|
|
28
|
-
}
|
|
29
|
-
interface FdskLeadSchedulingListResponse extends FdskLeadScheduling {
|
|
30
|
-
children: FdskLeadSchedulingListResponse[];
|
|
31
|
-
}
|
|
32
|
-
export { IFdskLeadSchedulingErrorLogger, //interface
|
|
33
|
-
MFdskLeadScheduling, // model
|
|
34
|
-
fdskLeadSchedulingControllerResponse, FdskLeadSchedulingListResponse, fdskLeadSchedulingInsertUpdateControllerResponse, fdskLeadSchedulingByIdControllerResponse, FdskLeadSchedulingSaveUpdatePayload };
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FdskLeadSchedulingSaveUpdatePayload = exports.MFdskLeadScheduling = void 0;
|
|
4
|
-
const common_1 = require("../../common-types/common");
|
|
5
|
-
/* INTERFACE END */
|
|
6
|
-
/* MODEL START */
|
|
7
|
-
class FdskLeadSchedulingSaveUpdatePayload {
|
|
8
|
-
constructor(init) {
|
|
9
|
-
Object.assign(this, init);
|
|
10
|
-
}
|
|
11
|
-
Validate() {
|
|
12
|
-
let errorLogger = {};
|
|
13
|
-
return errorLogger;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
exports.FdskLeadSchedulingSaveUpdatePayload = FdskLeadSchedulingSaveUpdatePayload;
|
|
17
|
-
class MFdskLeadScheduling extends common_1.MTableQueries {
|
|
18
|
-
constructor(init) {
|
|
19
|
-
super(init);
|
|
20
|
-
Object.assign(this, init);
|
|
21
|
-
}
|
|
22
|
-
Validate() {
|
|
23
|
-
let errorLogger = {};
|
|
24
|
-
return errorLogger;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
exports.MFdskLeadScheduling = MFdskLeadScheduling;
|