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,58 @@
|
|
|
1
|
+
import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
|
|
2
|
+
import { IAppRegistrationMst } from "../../schema/app/app_registration_mst";
|
|
3
|
+
import { controllerResponse } from "../../utilities";
|
|
4
|
+
type IAppRegistrationErrorLogger = {
|
|
5
|
+
[key in keyof MAppRegistration]: string;
|
|
6
|
+
};
|
|
7
|
+
type IAppRegistrationGetByIdErrorLogger = {
|
|
8
|
+
[key in keyof MAppRegistrationGetByIdPayload]: string;
|
|
9
|
+
};
|
|
10
|
+
type IAppRegistrationInsertUpdateErrorLogger = {
|
|
11
|
+
[key in keyof MAppRegistrationInsertUpdatePayload]: string;
|
|
12
|
+
};
|
|
13
|
+
declare class MAppRegistration extends MTableQueries {
|
|
14
|
+
appreg_id?: string;
|
|
15
|
+
appreg_app_id?: string;
|
|
16
|
+
appreg_app_name?: string;
|
|
17
|
+
appreg_registration_status_id_sygms?: string;
|
|
18
|
+
query?: string;
|
|
19
|
+
constructor(init: MAppRegistration);
|
|
20
|
+
Validate?(): Partial<IAppRegistrationErrorLogger>;
|
|
21
|
+
}
|
|
22
|
+
declare class MAppRegistrationGetByIdPayload implements MRequestMiddelware {
|
|
23
|
+
appreg_id?: string;
|
|
24
|
+
_id?: string;
|
|
25
|
+
constructor(init: MAppRegistrationGetByIdPayload);
|
|
26
|
+
Validate?(): Partial<IAppRegistrationGetByIdErrorLogger>;
|
|
27
|
+
}
|
|
28
|
+
declare class MAppRegistrationInsertUpdatePayload implements IAppRegistrationMst, MRequestMiddelware {
|
|
29
|
+
_id?: string;
|
|
30
|
+
appreg_app_id?: string;
|
|
31
|
+
appreg_app_name?: string;
|
|
32
|
+
appreg_app_description?: string;
|
|
33
|
+
appreg_organization_name?: string;
|
|
34
|
+
appreg_organization_id?: string;
|
|
35
|
+
appreg_registration_date?: Date;
|
|
36
|
+
appreg_registration_status_id_sygms?: string;
|
|
37
|
+
appreg_registered_by_id_auth?: string;
|
|
38
|
+
appreg_workflow_id_wfrg?: string;
|
|
39
|
+
appreg_current_step?: number;
|
|
40
|
+
appreg_created_at?: Date;
|
|
41
|
+
appreg_updated_at?: Date;
|
|
42
|
+
constructor(init: Partial<IAppRegistrationMst> & {
|
|
43
|
+
_id?: string;
|
|
44
|
+
});
|
|
45
|
+
Validate?(): Partial<IAppRegistrationInsertUpdateErrorLogger>;
|
|
46
|
+
}
|
|
47
|
+
interface appRegistrationControllerResponse extends controllerResponse {
|
|
48
|
+
data?: any[] | any | null;
|
|
49
|
+
total?: number;
|
|
50
|
+
totalDocument?: number;
|
|
51
|
+
}
|
|
52
|
+
interface appRegistrationByIdControllerResponse extends controllerResponse {
|
|
53
|
+
data?: any | null;
|
|
54
|
+
}
|
|
55
|
+
interface appRegistrationInsertUpdateControllerResponse extends controllerResponse {
|
|
56
|
+
data?: any | null;
|
|
57
|
+
}
|
|
58
|
+
export { MAppRegistration, MAppRegistrationGetByIdPayload, MAppRegistrationInsertUpdatePayload, appRegistrationControllerResponse, appRegistrationByIdControllerResponse, appRegistrationInsertUpdateControllerResponse };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MAppRegistrationInsertUpdatePayload = exports.MAppRegistrationGetByIdPayload = exports.MAppRegistration = void 0;
|
|
4
|
+
const common_1 = require("../../common-types/common");
|
|
5
|
+
/* INTERFACE END */
|
|
6
|
+
/* MODEL START */
|
|
7
|
+
class MAppRegistration extends common_1.MTableQueries {
|
|
8
|
+
constructor(init) {
|
|
9
|
+
super(init);
|
|
10
|
+
Object.assign(this, init);
|
|
11
|
+
}
|
|
12
|
+
Validate() {
|
|
13
|
+
let errorLogger = {};
|
|
14
|
+
return errorLogger;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.MAppRegistration = MAppRegistration;
|
|
18
|
+
class MAppRegistrationGetByIdPayload {
|
|
19
|
+
constructor(init) {
|
|
20
|
+
Object.assign(this, init);
|
|
21
|
+
}
|
|
22
|
+
Validate() {
|
|
23
|
+
let errorLogger = {};
|
|
24
|
+
if (!this.appreg_id && !this._id) {
|
|
25
|
+
errorLogger.appreg_id = "App Registration ID is Required!";
|
|
26
|
+
}
|
|
27
|
+
return errorLogger;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.MAppRegistrationGetByIdPayload = MAppRegistrationGetByIdPayload;
|
|
31
|
+
class MAppRegistrationInsertUpdatePayload {
|
|
32
|
+
constructor(init) {
|
|
33
|
+
Object.assign(this, init);
|
|
34
|
+
}
|
|
35
|
+
Validate() {
|
|
36
|
+
let errorLogger = {};
|
|
37
|
+
return errorLogger;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.MAppRegistrationInsertUpdatePayload = MAppRegistrationInsertUpdatePayload;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
|
|
2
|
+
import { IAppStoreProviderMst } from "../../schema/app/app_store_provider_mst";
|
|
3
|
+
import { controllerResponse } from "../../utilities";
|
|
4
|
+
type IAppStoreProviderErrorLogger = {
|
|
5
|
+
[key in keyof MAppStoreProvider]: string;
|
|
6
|
+
};
|
|
7
|
+
type IAppStoreProviderGetByIdErrorLogger = {
|
|
8
|
+
[key in keyof MAppStoreProviderGetByIdPayload]: string;
|
|
9
|
+
};
|
|
10
|
+
type IAppStoreProviderInsertUpdateErrorLogger = {
|
|
11
|
+
[key in keyof MAppStoreProviderInsertUpdatePayload]: string;
|
|
12
|
+
};
|
|
13
|
+
declare class MAppStoreProvider extends MTableQueries {
|
|
14
|
+
appstore_id?: string;
|
|
15
|
+
appstore_store_name?: string;
|
|
16
|
+
appstore_store_provider_code?: string;
|
|
17
|
+
appstore_is_active?: boolean;
|
|
18
|
+
query?: string;
|
|
19
|
+
constructor(init: MAppStoreProvider);
|
|
20
|
+
Validate?(): Partial<IAppStoreProviderErrorLogger>;
|
|
21
|
+
}
|
|
22
|
+
declare class MAppStoreProviderGetByIdPayload implements MRequestMiddelware {
|
|
23
|
+
appstore_id?: string;
|
|
24
|
+
_id?: string;
|
|
25
|
+
constructor(init: MAppStoreProviderGetByIdPayload);
|
|
26
|
+
Validate?(): Partial<IAppStoreProviderGetByIdErrorLogger>;
|
|
27
|
+
}
|
|
28
|
+
declare class MAppStoreProviderInsertUpdatePayload implements IAppStoreProviderMst, MRequestMiddelware {
|
|
29
|
+
_id?: string;
|
|
30
|
+
appstore_store_name?: string;
|
|
31
|
+
appstore_store_type_id_sygms?: string;
|
|
32
|
+
appstore_store_provider_code?: string;
|
|
33
|
+
appstore_store_api_endpoint?: string;
|
|
34
|
+
appstore_store_credentials?: Record<string, unknown>;
|
|
35
|
+
appstore_store_config?: Record<string, unknown>;
|
|
36
|
+
appstore_is_active?: boolean;
|
|
37
|
+
appstore_created_by_id_auth?: string;
|
|
38
|
+
appstore_created_at?: Date;
|
|
39
|
+
appstore_updated_at?: Date;
|
|
40
|
+
constructor(init: Partial<IAppStoreProviderMst> & {
|
|
41
|
+
_id?: string;
|
|
42
|
+
});
|
|
43
|
+
Validate?(): Partial<IAppStoreProviderInsertUpdateErrorLogger>;
|
|
44
|
+
}
|
|
45
|
+
interface appStoreProviderControllerResponse extends controllerResponse {
|
|
46
|
+
data?: any[] | any | null;
|
|
47
|
+
total?: number;
|
|
48
|
+
totalDocument?: number;
|
|
49
|
+
}
|
|
50
|
+
interface appStoreProviderByIdControllerResponse extends controllerResponse {
|
|
51
|
+
data?: any | null;
|
|
52
|
+
}
|
|
53
|
+
interface appStoreProviderInsertUpdateControllerResponse extends controllerResponse {
|
|
54
|
+
data?: any | null;
|
|
55
|
+
}
|
|
56
|
+
export { MAppStoreProvider, MAppStoreProviderGetByIdPayload, MAppStoreProviderInsertUpdatePayload, appStoreProviderControllerResponse, appStoreProviderByIdControllerResponse, appStoreProviderInsertUpdateControllerResponse };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MAppStoreProviderInsertUpdatePayload = exports.MAppStoreProviderGetByIdPayload = exports.MAppStoreProvider = void 0;
|
|
4
|
+
const common_1 = require("../../common-types/common");
|
|
5
|
+
/* INTERFACE END */
|
|
6
|
+
/* MODEL START */
|
|
7
|
+
class MAppStoreProvider extends common_1.MTableQueries {
|
|
8
|
+
constructor(init) {
|
|
9
|
+
super(init);
|
|
10
|
+
Object.assign(this, init);
|
|
11
|
+
}
|
|
12
|
+
Validate() {
|
|
13
|
+
let errorLogger = {};
|
|
14
|
+
return errorLogger;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.MAppStoreProvider = MAppStoreProvider;
|
|
18
|
+
class MAppStoreProviderGetByIdPayload {
|
|
19
|
+
constructor(init) {
|
|
20
|
+
Object.assign(this, init);
|
|
21
|
+
}
|
|
22
|
+
Validate() {
|
|
23
|
+
let errorLogger = {};
|
|
24
|
+
if (!this.appstore_id && !this._id) {
|
|
25
|
+
errorLogger.appstore_id = "App Store Provider ID is Required!";
|
|
26
|
+
}
|
|
27
|
+
return errorLogger;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.MAppStoreProviderGetByIdPayload = MAppStoreProviderGetByIdPayload;
|
|
31
|
+
class MAppStoreProviderInsertUpdatePayload {
|
|
32
|
+
constructor(init) {
|
|
33
|
+
Object.assign(this, init);
|
|
34
|
+
}
|
|
35
|
+
Validate() {
|
|
36
|
+
let errorLogger = {};
|
|
37
|
+
return errorLogger;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.MAppStoreProviderInsertUpdatePayload = MAppStoreProviderInsertUpdatePayload;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
|
|
2
|
+
import { IAppVersionMst } from "../../schema/app/app_version_mst";
|
|
3
|
+
import { controllerResponse } from "../../utilities";
|
|
4
|
+
type IAppVersionErrorLogger = {
|
|
5
|
+
[key in keyof MAppVersion]: string;
|
|
6
|
+
};
|
|
7
|
+
type IAppVersionGetByIdErrorLogger = {
|
|
8
|
+
[key in keyof MAppVersionGetByIdPayload]: string;
|
|
9
|
+
};
|
|
10
|
+
type IAppVersionInsertUpdateErrorLogger = {
|
|
11
|
+
[key in keyof MAppVersionInsertUpdatePayload]: string;
|
|
12
|
+
};
|
|
13
|
+
declare class MAppVersion extends MTableQueries {
|
|
14
|
+
appver_id?: string;
|
|
15
|
+
appver_reg_id_appreg?: string;
|
|
16
|
+
appver_version_number?: string;
|
|
17
|
+
appver_deployment_status_id_sygms?: string;
|
|
18
|
+
query?: string;
|
|
19
|
+
constructor(init: MAppVersion);
|
|
20
|
+
Validate?(): Partial<IAppVersionErrorLogger>;
|
|
21
|
+
}
|
|
22
|
+
declare class MAppVersionGetByIdPayload implements MRequestMiddelware {
|
|
23
|
+
appver_id?: string;
|
|
24
|
+
_id?: string;
|
|
25
|
+
constructor(init: MAppVersionGetByIdPayload);
|
|
26
|
+
Validate?(): Partial<IAppVersionGetByIdErrorLogger>;
|
|
27
|
+
}
|
|
28
|
+
declare class MAppVersionInsertUpdatePayload implements IAppVersionMst, MRequestMiddelware {
|
|
29
|
+
_id?: string;
|
|
30
|
+
appver_reg_id_appreg?: string;
|
|
31
|
+
appver_version_number?: string;
|
|
32
|
+
appver_version_code?: number;
|
|
33
|
+
appver_release_type_id_sygms?: string;
|
|
34
|
+
appver_is_active?: boolean;
|
|
35
|
+
appver_is_forced?: boolean;
|
|
36
|
+
appver_min_supported_version?: string;
|
|
37
|
+
appver_release_date?: Date;
|
|
38
|
+
appver_release_notes?: string;
|
|
39
|
+
appver_build_number?: string;
|
|
40
|
+
appver_bundle_size?: number;
|
|
41
|
+
appver_bundle_file_id_cyfm?: string;
|
|
42
|
+
appver_bundle_hash?: string;
|
|
43
|
+
appver_bundle_signature?: string;
|
|
44
|
+
appver_deployment_status_id_sygms?: string;
|
|
45
|
+
appver_deployed_by_id_auth?: string;
|
|
46
|
+
appver_deployed_at?: Date;
|
|
47
|
+
appver_created_by_id_auth?: string;
|
|
48
|
+
appver_created_at?: Date;
|
|
49
|
+
appver_updated_at?: Date;
|
|
50
|
+
constructor(init: Partial<IAppVersionMst> & {
|
|
51
|
+
_id?: string;
|
|
52
|
+
});
|
|
53
|
+
Validate?(): Partial<IAppVersionInsertUpdateErrorLogger>;
|
|
54
|
+
}
|
|
55
|
+
interface appVersionControllerResponse extends controllerResponse {
|
|
56
|
+
data?: any[] | any | null;
|
|
57
|
+
total?: number;
|
|
58
|
+
totalDocument?: number;
|
|
59
|
+
}
|
|
60
|
+
interface appVersionByIdControllerResponse extends controllerResponse {
|
|
61
|
+
data?: any | null;
|
|
62
|
+
}
|
|
63
|
+
interface appVersionInsertUpdateControllerResponse extends controllerResponse {
|
|
64
|
+
data?: any | null;
|
|
65
|
+
}
|
|
66
|
+
export { MAppVersion, MAppVersionGetByIdPayload, MAppVersionInsertUpdatePayload, appVersionControllerResponse, appVersionByIdControllerResponse, appVersionInsertUpdateControllerResponse };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MAppVersionInsertUpdatePayload = exports.MAppVersionGetByIdPayload = exports.MAppVersion = void 0;
|
|
4
|
+
const common_1 = require("../../common-types/common");
|
|
5
|
+
/* INTERFACE END */
|
|
6
|
+
/* MODEL START */
|
|
7
|
+
class MAppVersion extends common_1.MTableQueries {
|
|
8
|
+
constructor(init) {
|
|
9
|
+
super(init);
|
|
10
|
+
Object.assign(this, init);
|
|
11
|
+
}
|
|
12
|
+
Validate() {
|
|
13
|
+
let errorLogger = {};
|
|
14
|
+
return errorLogger;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.MAppVersion = MAppVersion;
|
|
18
|
+
class MAppVersionGetByIdPayload {
|
|
19
|
+
constructor(init) {
|
|
20
|
+
Object.assign(this, init);
|
|
21
|
+
}
|
|
22
|
+
Validate() {
|
|
23
|
+
let errorLogger = {};
|
|
24
|
+
if (!this.appver_id && !this._id) {
|
|
25
|
+
errorLogger.appver_id = "App Version ID is Required!";
|
|
26
|
+
}
|
|
27
|
+
return errorLogger;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.MAppVersionGetByIdPayload = MAppVersionGetByIdPayload;
|
|
31
|
+
class MAppVersionInsertUpdatePayload {
|
|
32
|
+
constructor(init) {
|
|
33
|
+
Object.assign(this, init);
|
|
34
|
+
}
|
|
35
|
+
Validate() {
|
|
36
|
+
let errorLogger = {};
|
|
37
|
+
return errorLogger;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.MAppVersionInsertUpdatePayload = MAppVersionInsertUpdatePayload;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './app-registration.model';
|
|
2
|
+
export * from './app-registration-start.model';
|
|
3
|
+
export * from './app-platform-link.model';
|
|
4
|
+
export * from './app-version.model';
|
|
5
|
+
export * from './app-publish.model';
|
|
6
|
+
export * from './app-store-provider.model';
|
|
7
|
+
export * from './app-deployment.model';
|
|
8
|
+
export * from './app-build-config.model';
|
|
9
|
+
export * from './app-changelog.model';
|
|
@@ -0,0 +1,25 @@
|
|
|
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.model"), exports);
|
|
18
|
+
__exportStar(require("./app-registration-start.model"), exports);
|
|
19
|
+
__exportStar(require("./app-platform-link.model"), exports);
|
|
20
|
+
__exportStar(require("./app-version.model"), exports);
|
|
21
|
+
__exportStar(require("./app-publish.model"), exports);
|
|
22
|
+
__exportStar(require("./app-store-provider.model"), exports);
|
|
23
|
+
__exportStar(require("./app-deployment.model"), exports);
|
|
24
|
+
__exportStar(require("./app-build-config.model"), exports);
|
|
25
|
+
__exportStar(require("./app-changelog.model"), exports);
|
|
@@ -19,6 +19,7 @@ interface resetPasswordSylog {
|
|
|
19
19
|
reset_password_link?: string;
|
|
20
20
|
reset_password_secret?: string;
|
|
21
21
|
request_timestamp?: Date;
|
|
22
|
+
syen_id?: string;
|
|
22
23
|
}
|
|
23
24
|
interface ResetPasswordControllerResponse extends controllerResponse {
|
|
24
25
|
data?: Partial<ResetPasswordResponseData>;
|
package/lib/model/index.d.ts
CHANGED
package/lib/model/index.js
CHANGED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Object containing URLs for app lifecycle management endpoints.
|
|
3
|
+
* These URLs are used for various app operations such as registration, platform linking, publishing, versions, and deployments.
|
|
4
|
+
*/
|
|
5
|
+
declare const appRoutesUrl: {
|
|
6
|
+
module: string;
|
|
7
|
+
/**
|
|
8
|
+
* Endpoint for app registrations (app-registrations)
|
|
9
|
+
*/
|
|
10
|
+
appRegistration: string;
|
|
11
|
+
/**
|
|
12
|
+
* Endpoint for app platform links (app-platform-links)
|
|
13
|
+
*/
|
|
14
|
+
appPlatformLink: string;
|
|
15
|
+
/**
|
|
16
|
+
* Endpoint for app build configs (app-build-configs)
|
|
17
|
+
*/
|
|
18
|
+
appBuildConfig: string;
|
|
19
|
+
/**
|
|
20
|
+
* Endpoint for app store providers (app-store-providers)
|
|
21
|
+
*/
|
|
22
|
+
appStoreProvider: string;
|
|
23
|
+
/**
|
|
24
|
+
* Endpoint for app publish details (app-publish)
|
|
25
|
+
*/
|
|
26
|
+
appPublish: string;
|
|
27
|
+
/**
|
|
28
|
+
* Endpoint for app versions (app-versions)
|
|
29
|
+
*/
|
|
30
|
+
appVersion: string;
|
|
31
|
+
/**
|
|
32
|
+
* Endpoint for app deployments (app-deployments)
|
|
33
|
+
*/
|
|
34
|
+
appDeployment: string;
|
|
35
|
+
/**
|
|
36
|
+
* Endpoint for app changelogs (app-changelogs)
|
|
37
|
+
*/
|
|
38
|
+
appChangelog: string;
|
|
39
|
+
/**
|
|
40
|
+
* Endpoint for app statistics (app-statistics)
|
|
41
|
+
*/
|
|
42
|
+
appStatistics: string;
|
|
43
|
+
/**
|
|
44
|
+
* Endpoint for app updates check (updates/check) - public endpoint for mobile apps
|
|
45
|
+
*/
|
|
46
|
+
appUpdatesCheck: string;
|
|
47
|
+
/**
|
|
48
|
+
* Endpoint for app updates download (updates/download) - public endpoint for mobile apps
|
|
49
|
+
*/
|
|
50
|
+
appUpdatesDownload: string;
|
|
51
|
+
/**
|
|
52
|
+
* Endpoint for app updates status (updates/status) - public endpoint for mobile apps
|
|
53
|
+
*/
|
|
54
|
+
appUpdatesStatus: string;
|
|
55
|
+
/**
|
|
56
|
+
* Endpoint for platform API integration (platform-api)
|
|
57
|
+
*/
|
|
58
|
+
platformApiIntegration: string;
|
|
59
|
+
/**
|
|
60
|
+
* Endpoint for platform deployment (platform-deployment)
|
|
61
|
+
*/
|
|
62
|
+
platformDeployment: string;
|
|
63
|
+
};
|
|
64
|
+
export { appRoutesUrl };
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.appRoutesUrl = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Object containing URLs for app lifecycle management endpoints.
|
|
6
|
+
* These URLs are used for various app operations such as registration, platform linking, publishing, versions, and deployments.
|
|
7
|
+
*/
|
|
8
|
+
const appRoutesUrl = {
|
|
9
|
+
module: 'app',
|
|
10
|
+
/**
|
|
11
|
+
* Endpoint for app registrations (app-registrations)
|
|
12
|
+
*/
|
|
13
|
+
appRegistration: 'app-registrations',
|
|
14
|
+
/**
|
|
15
|
+
* Endpoint for app platform links (app-platform-links)
|
|
16
|
+
*/
|
|
17
|
+
appPlatformLink: 'app-platform-links',
|
|
18
|
+
/**
|
|
19
|
+
* Endpoint for app build configs (app-build-configs)
|
|
20
|
+
*/
|
|
21
|
+
appBuildConfig: 'app-build-configs',
|
|
22
|
+
/**
|
|
23
|
+
* Endpoint for app store providers (app-store-providers)
|
|
24
|
+
*/
|
|
25
|
+
appStoreProvider: 'app-store-providers',
|
|
26
|
+
/**
|
|
27
|
+
* Endpoint for app publish details (app-publish)
|
|
28
|
+
*/
|
|
29
|
+
appPublish: 'app-publish',
|
|
30
|
+
/**
|
|
31
|
+
* Endpoint for app versions (app-versions)
|
|
32
|
+
*/
|
|
33
|
+
appVersion: 'app-versions',
|
|
34
|
+
/**
|
|
35
|
+
* Endpoint for app deployments (app-deployments)
|
|
36
|
+
*/
|
|
37
|
+
appDeployment: 'app-deployments',
|
|
38
|
+
/**
|
|
39
|
+
* Endpoint for app changelogs (app-changelogs)
|
|
40
|
+
*/
|
|
41
|
+
appChangelog: 'app-changelogs',
|
|
42
|
+
/**
|
|
43
|
+
* Endpoint for app statistics (app-statistics)
|
|
44
|
+
*/
|
|
45
|
+
appStatistics: 'app-statistics',
|
|
46
|
+
/**
|
|
47
|
+
* Endpoint for app updates check (updates/check) - public endpoint for mobile apps
|
|
48
|
+
*/
|
|
49
|
+
appUpdatesCheck: 'updates/check',
|
|
50
|
+
/**
|
|
51
|
+
* Endpoint for app updates download (updates/download) - public endpoint for mobile apps
|
|
52
|
+
*/
|
|
53
|
+
appUpdatesDownload: 'updates/download',
|
|
54
|
+
/**
|
|
55
|
+
* Endpoint for app updates status (updates/status) - public endpoint for mobile apps
|
|
56
|
+
*/
|
|
57
|
+
appUpdatesStatus: 'updates/status',
|
|
58
|
+
/**
|
|
59
|
+
* Endpoint for platform API integration (platform-api)
|
|
60
|
+
*/
|
|
61
|
+
platformApiIntegration: 'platform-api',
|
|
62
|
+
/**
|
|
63
|
+
* Endpoint for platform deployment (platform-deployment)
|
|
64
|
+
*/
|
|
65
|
+
platformDeployment: 'platform-deployment'
|
|
66
|
+
};
|
|
67
|
+
exports.appRoutesUrl = appRoutesUrl;
|
|
68
|
+
// Freeze the appRoutesUrl object to prevent modifications
|
|
69
|
+
Object.freeze(appRoutesUrl);
|
package/lib/routes/index.d.ts
CHANGED
package/lib/routes/index.js
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare class IAppBuildConfigMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appbuild_reg_id_appreg?: string;
|
|
4
|
+
appbuild_link_id_applink?: string;
|
|
5
|
+
appbuild_platform_id_sygms?: string;
|
|
6
|
+
appbuild_build_type_id_sygms?: string;
|
|
7
|
+
appbuild_config_data?: Record<string, unknown>;
|
|
8
|
+
appbuild_is_active?: boolean;
|
|
9
|
+
appbuild_created_by_id_auth?: string;
|
|
10
|
+
appbuild_created_at?: Date;
|
|
11
|
+
appbuild_updated_at?: Date;
|
|
12
|
+
}
|
|
13
|
+
export { IAppBuildConfigMst };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare class IAppPlatformLinkMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
applink_reg_id_appreg?: string;
|
|
4
|
+
applink_store_provider_id_appstore?: string;
|
|
5
|
+
applink_platform_id_sygms?: string;
|
|
6
|
+
applink_link_status_id_sygms?: string;
|
|
7
|
+
applink_workflow_id_wfrg?: string;
|
|
8
|
+
applink_current_step?: number;
|
|
9
|
+
applink_platform_app_id?: string;
|
|
10
|
+
applink_store_app_id?: string;
|
|
11
|
+
applink_platform_config?: Record<string, unknown>;
|
|
12
|
+
applink_platform_api_config?: Record<string, unknown>;
|
|
13
|
+
applink_linked_by_id_auth?: string;
|
|
14
|
+
applink_linked_at?: Date;
|
|
15
|
+
applink_unlinked_at?: Date;
|
|
16
|
+
applink_created_at?: Date;
|
|
17
|
+
applink_updated_at?: Date;
|
|
18
|
+
}
|
|
19
|
+
export { IAppPlatformLinkMst };
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare class IAppPublishDetailsMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
apppub_reg_id_appreg?: string;
|
|
4
|
+
apppub_link_id_applink?: string;
|
|
5
|
+
apppub_version_id_appver?: string;
|
|
6
|
+
apppub_store_provider_id_appstore?: string;
|
|
7
|
+
apppub_platform_id_sygms?: string;
|
|
8
|
+
apppub_store_version_number?: string;
|
|
9
|
+
apppub_store_version_code?: number;
|
|
10
|
+
apppub_store_build_number?: string;
|
|
11
|
+
apppub_publish_type_id_sygms?: string;
|
|
12
|
+
apppub_publish_status_id_sygms?: string;
|
|
13
|
+
apppub_workflow_id_wfrg?: string;
|
|
14
|
+
apppub_current_step?: number;
|
|
15
|
+
apppub_store_app_id?: string;
|
|
16
|
+
apppub_store_listing_id?: string;
|
|
17
|
+
apppub_store_url?: string;
|
|
18
|
+
apppub_release_notes?: string;
|
|
19
|
+
apppub_promotional_text?: string;
|
|
20
|
+
apppub_product_description?: string;
|
|
21
|
+
apppub_category_ids_sygms?: string[];
|
|
22
|
+
apppub_preview_image_ids_cyfm?: string[];
|
|
23
|
+
apppub_screenshot_ids_cyfm?: string[];
|
|
24
|
+
apppub_feature_image_id_cyfm?: string;
|
|
25
|
+
apppub_promo_image_id_cyfm?: string;
|
|
26
|
+
apppub_icon_file_id_cyfm?: string;
|
|
27
|
+
apppub_keywords?: string[];
|
|
28
|
+
apppub_tags?: string[];
|
|
29
|
+
apppub_pricing_info?: Record<string, unknown>;
|
|
30
|
+
apppub_availability_info?: Record<string, unknown>;
|
|
31
|
+
apppub_store_specific_data?: Record<string, unknown>;
|
|
32
|
+
apppub_deployment_method_id_sygms?: string;
|
|
33
|
+
apppub_auto_deploy_enabled?: boolean;
|
|
34
|
+
apppub_deployment_api_response?: Record<string, unknown>;
|
|
35
|
+
apppub_deployment_url?: string;
|
|
36
|
+
apppub_deployment_log?: string;
|
|
37
|
+
apppub_submitted_at?: Date;
|
|
38
|
+
apppub_review_started_at?: Date;
|
|
39
|
+
apppub_approved_at?: Date;
|
|
40
|
+
apppub_published_at?: Date;
|
|
41
|
+
apppub_deployed_at?: Date;
|
|
42
|
+
apppub_deployment_started_at?: Date;
|
|
43
|
+
apppub_removed_at?: Date;
|
|
44
|
+
apppub_rejection_reason?: string;
|
|
45
|
+
apppub_rejection_details?: Record<string, unknown>;
|
|
46
|
+
apppub_published_by_id_auth?: string;
|
|
47
|
+
apppub_created_at?: Date;
|
|
48
|
+
apppub_updated_at?: Date;
|
|
49
|
+
}
|
|
50
|
+
export { IAppPublishDetailsMst };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare class IAppRegistrationMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appreg_app_id?: string;
|
|
4
|
+
appreg_app_name?: string;
|
|
5
|
+
appreg_app_description?: string;
|
|
6
|
+
appreg_organization_name?: string;
|
|
7
|
+
appreg_organization_id?: string;
|
|
8
|
+
appreg_registration_date?: Date;
|
|
9
|
+
appreg_registration_status_id_sygms?: string;
|
|
10
|
+
appreg_registered_by_id_auth?: string;
|
|
11
|
+
appreg_workflow_id_wfrg?: string;
|
|
12
|
+
appreg_current_step?: number;
|
|
13
|
+
appreg_created_at?: Date;
|
|
14
|
+
appreg_updated_at?: Date;
|
|
15
|
+
}
|
|
16
|
+
export { IAppRegistrationMst };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare class IAppRegistrationStartMst {
|
|
2
|
+
_id?: string;
|
|
3
|
+
appstart_reg_id_appreg?: string;
|
|
4
|
+
appstart_start_date?: Date;
|
|
5
|
+
appstart_configuration_data?: Record<string, unknown>;
|
|
6
|
+
appstart_start_status_id_sygms?: string;
|
|
7
|
+
appstart_started_by_id_auth?: string;
|
|
8
|
+
appstart_completed_at?: Date;
|
|
9
|
+
appstart_created_at?: Date;
|
|
10
|
+
appstart_updated_at?: Date;
|
|
11
|
+
}
|
|
12
|
+
export { IAppRegistrationStartMst };
|