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.
Files changed (60) hide show
  1. package/lib/model/app/app-build-config.model.d.ts +55 -0
  2. package/lib/model/app/app-build-config.model.js +40 -0
  3. package/lib/model/app/app-changelog.model.d.ts +55 -0
  4. package/lib/model/app/app-changelog.model.js +40 -0
  5. package/lib/model/app/app-deployment.model.d.ts +59 -0
  6. package/lib/model/app/app-deployment.model.js +40 -0
  7. package/lib/model/app/app-platform-link.model.d.ts +62 -0
  8. package/lib/model/app/app-platform-link.model.js +40 -0
  9. package/lib/model/app/app-publish.model.d.ts +93 -0
  10. package/lib/model/app/app-publish.model.js +40 -0
  11. package/lib/model/app/app-registration-start.model.d.ts +55 -0
  12. package/lib/model/app/app-registration-start.model.js +40 -0
  13. package/lib/model/app/app-registration.model.d.ts +58 -0
  14. package/lib/model/app/app-registration.model.js +40 -0
  15. package/lib/model/app/app-store-provider.model.d.ts +56 -0
  16. package/lib/model/app/app-store-provider.model.js +40 -0
  17. package/lib/model/app/app-version.model.d.ts +66 -0
  18. package/lib/model/app/app-version.model.js +40 -0
  19. package/lib/model/app/index.d.ts +9 -0
  20. package/lib/model/app/index.js +25 -0
  21. package/lib/model/auth/reset-password.d.ts +1 -0
  22. package/lib/model/index.d.ts +1 -0
  23. package/lib/model/index.js +1 -0
  24. package/lib/routes/appRoutes.d.ts +64 -0
  25. package/lib/routes/appRoutes.js +69 -0
  26. package/lib/routes/index.d.ts +1 -0
  27. package/lib/routes/index.js +1 -0
  28. package/lib/schema/app/app_build_config_mst.d.ts +13 -0
  29. package/lib/schema/app/app_build_config_mst.js +7 -0
  30. package/lib/schema/app/app_platform_link_mst.d.ts +19 -0
  31. package/lib/schema/app/app_platform_link_mst.js +7 -0
  32. package/lib/schema/app/app_publish_details_mst.d.ts +50 -0
  33. package/lib/schema/app/app_publish_details_mst.js +7 -0
  34. package/lib/schema/app/app_registration_mst.d.ts +16 -0
  35. package/lib/schema/app/app_registration_mst.js +7 -0
  36. package/lib/schema/app/app_registration_start_mst.d.ts +12 -0
  37. package/lib/schema/app/app_registration_start_mst.js +7 -0
  38. package/lib/schema/app/app_rollout_config_mst.d.ts +17 -0
  39. package/lib/schema/app/app_rollout_config_mst.js +7 -0
  40. package/lib/schema/app/app_store_provider_mst.d.ts +14 -0
  41. package/lib/schema/app/app_store_provider_mst.js +7 -0
  42. package/lib/schema/app/app_update_changelog_mst.d.ts +14 -0
  43. package/lib/schema/app/app_update_changelog_mst.js +7 -0
  44. package/lib/schema/app/app_update_deployment_mst.d.ts +18 -0
  45. package/lib/schema/app/app_update_deployment_mst.js +7 -0
  46. package/lib/schema/app/app_update_statistics_mst.d.ts +17 -0
  47. package/lib/schema/app/app_update_statistics_mst.js +7 -0
  48. package/lib/schema/app/app_user_update_status_mst.d.ts +19 -0
  49. package/lib/schema/app/app_user_update_status_mst.js +7 -0
  50. package/lib/schema/app/app_version_mst.d.ts +24 -0
  51. package/lib/schema/app/app_version_mst.js +7 -0
  52. package/lib/schema/app/index.d.ts +12 -0
  53. package/lib/schema/app/index.js +28 -0
  54. package/lib/schema/index.d.ts +1 -0
  55. package/lib/schema/index.js +1 -0
  56. package/package.json +7 -4
  57. package/lib/model/frontdesk/fdsk_lead_detail.d.ts +0 -34
  58. package/lib/model/frontdesk/fdsk_lead_detail.js +0 -27
  59. package/lib/model/frontdesk/fdsk_lead_scheduling.d.ts +0 -34
  60. package/lib/model/frontdesk/fdsk_lead_scheduling.js +0 -27
@@ -0,0 +1,55 @@
1
+ import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
2
+ import { IAppBuildConfigMst } from "../../schema/app/app_build_config_mst";
3
+ import { controllerResponse } from "../../utilities";
4
+ type IAppBuildConfigErrorLogger = {
5
+ [key in keyof MAppBuildConfig]: string;
6
+ };
7
+ type IAppBuildConfigGetByIdErrorLogger = {
8
+ [key in keyof MAppBuildConfigGetByIdPayload]: string;
9
+ };
10
+ type IAppBuildConfigInsertUpdateErrorLogger = {
11
+ [key in keyof MAppBuildConfigInsertUpdatePayload]: string;
12
+ };
13
+ declare class MAppBuildConfig extends MTableQueries {
14
+ appbuild_id?: string;
15
+ appbuild_reg_id_appreg?: string;
16
+ appbuild_link_id_applink?: string;
17
+ appbuild_build_type_id_sygms?: string;
18
+ query?: string;
19
+ constructor(init: MAppBuildConfig);
20
+ Validate?(): Partial<IAppBuildConfigErrorLogger>;
21
+ }
22
+ declare class MAppBuildConfigGetByIdPayload implements MRequestMiddelware {
23
+ appbuild_id?: string;
24
+ _id?: string;
25
+ constructor(init: MAppBuildConfigGetByIdPayload);
26
+ Validate?(): Partial<IAppBuildConfigGetByIdErrorLogger>;
27
+ }
28
+ declare class MAppBuildConfigInsertUpdatePayload implements IAppBuildConfigMst, MRequestMiddelware {
29
+ _id?: string;
30
+ appbuild_reg_id_appreg?: string;
31
+ appbuild_link_id_applink?: string;
32
+ appbuild_platform_id_sygms?: string;
33
+ appbuild_build_type_id_sygms?: string;
34
+ appbuild_config_data?: Record<string, unknown>;
35
+ appbuild_is_active?: boolean;
36
+ appbuild_created_by_id_auth?: string;
37
+ appbuild_created_at?: Date;
38
+ appbuild_updated_at?: Date;
39
+ constructor(init: Partial<IAppBuildConfigMst> & {
40
+ _id?: string;
41
+ });
42
+ Validate?(): Partial<IAppBuildConfigInsertUpdateErrorLogger>;
43
+ }
44
+ interface appBuildConfigControllerResponse extends controllerResponse {
45
+ data?: any[] | any | null;
46
+ total?: number;
47
+ totalDocument?: number;
48
+ }
49
+ interface appBuildConfigByIdControllerResponse extends controllerResponse {
50
+ data?: any | null;
51
+ }
52
+ interface appBuildConfigInsertUpdateControllerResponse extends controllerResponse {
53
+ data?: any | null;
54
+ }
55
+ export { MAppBuildConfig, MAppBuildConfigGetByIdPayload, MAppBuildConfigInsertUpdatePayload, appBuildConfigControllerResponse, appBuildConfigByIdControllerResponse, appBuildConfigInsertUpdateControllerResponse };
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAppBuildConfigInsertUpdatePayload = exports.MAppBuildConfigGetByIdPayload = exports.MAppBuildConfig = void 0;
4
+ const common_1 = require("../../common-types/common");
5
+ /* INTERFACE END */
6
+ /* MODEL START */
7
+ class MAppBuildConfig 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.MAppBuildConfig = MAppBuildConfig;
18
+ class MAppBuildConfigGetByIdPayload {
19
+ constructor(init) {
20
+ Object.assign(this, init);
21
+ }
22
+ Validate() {
23
+ let errorLogger = {};
24
+ if (!this.appbuild_id && !this._id) {
25
+ errorLogger.appbuild_id = "App Build Config ID is Required!";
26
+ }
27
+ return errorLogger;
28
+ }
29
+ }
30
+ exports.MAppBuildConfigGetByIdPayload = MAppBuildConfigGetByIdPayload;
31
+ class MAppBuildConfigInsertUpdatePayload {
32
+ constructor(init) {
33
+ Object.assign(this, init);
34
+ }
35
+ Validate() {
36
+ let errorLogger = {};
37
+ return errorLogger;
38
+ }
39
+ }
40
+ exports.MAppBuildConfigInsertUpdatePayload = MAppBuildConfigInsertUpdatePayload;
@@ -0,0 +1,55 @@
1
+ import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
2
+ import { IAppUpdateChangelogMst } from "../../schema/app/app_update_changelog_mst";
3
+ import { controllerResponse } from "../../utilities";
4
+ type IAppChangelogErrorLogger = {
5
+ [key in keyof MAppChangelog]: string;
6
+ };
7
+ type IAppChangelogGetByIdErrorLogger = {
8
+ [key in keyof MAppChangelogGetByIdPayload]: string;
9
+ };
10
+ type IAppChangelogInsertUpdateErrorLogger = {
11
+ [key in keyof MAppChangelogInsertUpdatePayload]: string;
12
+ };
13
+ declare class MAppChangelog extends MTableQueries {
14
+ appchg_id?: string;
15
+ appchg_version_id_appver?: string;
16
+ appchg_category_id_sygms?: string;
17
+ query?: string;
18
+ constructor(init: MAppChangelog);
19
+ Validate?(): Partial<IAppChangelogErrorLogger>;
20
+ }
21
+ declare class MAppChangelogGetByIdPayload implements MRequestMiddelware {
22
+ appchg_id?: string;
23
+ _id?: string;
24
+ constructor(init: MAppChangelogGetByIdPayload);
25
+ Validate?(): Partial<IAppChangelogGetByIdErrorLogger>;
26
+ }
27
+ declare class MAppChangelogInsertUpdatePayload implements IAppUpdateChangelogMst, MRequestMiddelware {
28
+ _id?: string;
29
+ appchg_version_id_appver?: string;
30
+ appchg_category_id_sygms?: string;
31
+ appchg_title?: string;
32
+ appchg_description?: string;
33
+ appchg_bug_id?: string;
34
+ appchg_affected_modules?: string[];
35
+ appchg_priority_id_sygms?: string;
36
+ appchg_tags?: string[];
37
+ appchg_created_by_id_auth?: string;
38
+ appchg_created_at?: Date;
39
+ constructor(init: Partial<IAppUpdateChangelogMst> & {
40
+ _id?: string;
41
+ });
42
+ Validate?(): Partial<IAppChangelogInsertUpdateErrorLogger>;
43
+ }
44
+ interface appChangelogControllerResponse extends controllerResponse {
45
+ data?: any[] | any | null;
46
+ total?: number;
47
+ totalDocument?: number;
48
+ }
49
+ interface appChangelogByIdControllerResponse extends controllerResponse {
50
+ data?: any | null;
51
+ }
52
+ interface appChangelogInsertUpdateControllerResponse extends controllerResponse {
53
+ data?: any | null;
54
+ }
55
+ export { MAppChangelog, MAppChangelogGetByIdPayload, MAppChangelogInsertUpdatePayload, appChangelogControllerResponse, appChangelogByIdControllerResponse, appChangelogInsertUpdateControllerResponse };
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAppChangelogInsertUpdatePayload = exports.MAppChangelogGetByIdPayload = exports.MAppChangelog = void 0;
4
+ const common_1 = require("../../common-types/common");
5
+ /* INTERFACE END */
6
+ /* MODEL START */
7
+ class MAppChangelog 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.MAppChangelog = MAppChangelog;
18
+ class MAppChangelogGetByIdPayload {
19
+ constructor(init) {
20
+ Object.assign(this, init);
21
+ }
22
+ Validate() {
23
+ let errorLogger = {};
24
+ if (!this.appchg_id && !this._id) {
25
+ errorLogger.appchg_id = "App Changelog ID is Required!";
26
+ }
27
+ return errorLogger;
28
+ }
29
+ }
30
+ exports.MAppChangelogGetByIdPayload = MAppChangelogGetByIdPayload;
31
+ class MAppChangelogInsertUpdatePayload {
32
+ constructor(init) {
33
+ Object.assign(this, init);
34
+ }
35
+ Validate() {
36
+ let errorLogger = {};
37
+ return errorLogger;
38
+ }
39
+ }
40
+ exports.MAppChangelogInsertUpdatePayload = MAppChangelogInsertUpdatePayload;
@@ -0,0 +1,59 @@
1
+ import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
2
+ import { IAppUpdateDeploymentMst } from "../../schema/app/app_update_deployment_mst";
3
+ import { controllerResponse } from "../../utilities";
4
+ type IAppDeploymentErrorLogger = {
5
+ [key in keyof MAppDeployment]: string;
6
+ };
7
+ type IAppDeploymentGetByIdErrorLogger = {
8
+ [key in keyof MAppDeploymentGetByIdPayload]: string;
9
+ };
10
+ type IAppDeploymentInsertUpdateErrorLogger = {
11
+ [key in keyof MAppDeploymentInsertUpdatePayload]: string;
12
+ };
13
+ declare class MAppDeployment extends MTableQueries {
14
+ appdep_id?: string;
15
+ appdep_version_id_appver?: string;
16
+ appdep_status_id_sygms?: string;
17
+ query?: string;
18
+ constructor(init: MAppDeployment);
19
+ Validate?(): Partial<IAppDeploymentErrorLogger>;
20
+ }
21
+ declare class MAppDeploymentGetByIdPayload implements MRequestMiddelware {
22
+ appdep_id?: string;
23
+ _id?: string;
24
+ constructor(init: MAppDeploymentGetByIdPayload);
25
+ Validate?(): Partial<IAppDeploymentGetByIdErrorLogger>;
26
+ }
27
+ declare class MAppDeploymentInsertUpdatePayload implements IAppUpdateDeploymentMst, MRequestMiddelware {
28
+ _id?: string;
29
+ appdep_version_id_appver?: string;
30
+ appdep_deployment_type_id_sygms?: string;
31
+ appdep_rollout_percentage?: number;
32
+ appdep_target_users?: string[];
33
+ appdep_start_date?: Date;
34
+ appdep_end_date?: Date;
35
+ appdep_status_id_sygms?: string;
36
+ appdep_rollback_version_id_appver?: string;
37
+ appdep_rollback_reason?: string;
38
+ appdep_workflow_id_wfrg?: string;
39
+ appdep_current_step?: number;
40
+ appdep_created_by_id_auth?: string;
41
+ appdep_created_at?: Date;
42
+ appdep_updated_at?: Date;
43
+ constructor(init: Partial<IAppUpdateDeploymentMst> & {
44
+ _id?: string;
45
+ });
46
+ Validate?(): Partial<IAppDeploymentInsertUpdateErrorLogger>;
47
+ }
48
+ interface appDeploymentControllerResponse extends controllerResponse {
49
+ data?: any[] | any | null;
50
+ total?: number;
51
+ totalDocument?: number;
52
+ }
53
+ interface appDeploymentByIdControllerResponse extends controllerResponse {
54
+ data?: any | null;
55
+ }
56
+ interface appDeploymentInsertUpdateControllerResponse extends controllerResponse {
57
+ data?: any | null;
58
+ }
59
+ export { MAppDeployment, MAppDeploymentGetByIdPayload, MAppDeploymentInsertUpdatePayload, appDeploymentControllerResponse, appDeploymentByIdControllerResponse, appDeploymentInsertUpdateControllerResponse };
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAppDeploymentInsertUpdatePayload = exports.MAppDeploymentGetByIdPayload = exports.MAppDeployment = void 0;
4
+ const common_1 = require("../../common-types/common");
5
+ /* INTERFACE END */
6
+ /* MODEL START */
7
+ class MAppDeployment 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.MAppDeployment = MAppDeployment;
18
+ class MAppDeploymentGetByIdPayload {
19
+ constructor(init) {
20
+ Object.assign(this, init);
21
+ }
22
+ Validate() {
23
+ let errorLogger = {};
24
+ if (!this.appdep_id && !this._id) {
25
+ errorLogger.appdep_id = "App Deployment ID is Required!";
26
+ }
27
+ return errorLogger;
28
+ }
29
+ }
30
+ exports.MAppDeploymentGetByIdPayload = MAppDeploymentGetByIdPayload;
31
+ class MAppDeploymentInsertUpdatePayload {
32
+ constructor(init) {
33
+ Object.assign(this, init);
34
+ }
35
+ Validate() {
36
+ let errorLogger = {};
37
+ return errorLogger;
38
+ }
39
+ }
40
+ exports.MAppDeploymentInsertUpdatePayload = MAppDeploymentInsertUpdatePayload;
@@ -0,0 +1,62 @@
1
+ import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
2
+ import { IAppPlatformLinkMst } from "../../schema/app/app_platform_link_mst";
3
+ import { controllerResponse } from "../../utilities";
4
+ type IAppPlatformLinkErrorLogger = {
5
+ [key in keyof MAppPlatformLink]: string;
6
+ };
7
+ type IAppPlatformLinkGetByIdErrorLogger = {
8
+ [key in keyof MAppPlatformLinkGetByIdPayload]: string;
9
+ };
10
+ type IAppPlatformLinkInsertUpdateErrorLogger = {
11
+ [key in keyof MAppPlatformLinkInsertUpdatePayload]: string;
12
+ };
13
+ declare class MAppPlatformLink extends MTableQueries {
14
+ applink_id?: string;
15
+ applink_reg_id_appreg?: string;
16
+ applink_store_provider_id_appstore?: string;
17
+ applink_platform_id_sygms?: string;
18
+ applink_link_status_id_sygms?: string;
19
+ query?: string;
20
+ constructor(init: MAppPlatformLink);
21
+ Validate?(): Partial<IAppPlatformLinkErrorLogger>;
22
+ }
23
+ declare class MAppPlatformLinkGetByIdPayload implements MRequestMiddelware {
24
+ applink_id?: string;
25
+ _id?: string;
26
+ constructor(init: MAppPlatformLinkGetByIdPayload);
27
+ Validate?(): Partial<IAppPlatformLinkGetByIdErrorLogger>;
28
+ }
29
+ declare class MAppPlatformLinkInsertUpdatePayload implements IAppPlatformLinkMst, MRequestMiddelware {
30
+ _id?: string;
31
+ applink_reg_id_appreg?: string;
32
+ applink_store_provider_id_appstore?: string;
33
+ applink_platform_id_sygms?: string;
34
+ applink_link_status_id_sygms?: string;
35
+ applink_workflow_id_wfrg?: string;
36
+ applink_current_step?: number;
37
+ applink_platform_app_id?: string;
38
+ applink_store_app_id?: string;
39
+ applink_platform_config?: Record<string, unknown>;
40
+ applink_platform_api_config?: Record<string, unknown>;
41
+ applink_linked_by_id_auth?: string;
42
+ applink_linked_at?: Date;
43
+ applink_unlinked_at?: Date;
44
+ applink_created_at?: Date;
45
+ applink_updated_at?: Date;
46
+ constructor(init: Partial<IAppPlatformLinkMst> & {
47
+ _id?: string;
48
+ });
49
+ Validate?(): Partial<IAppPlatformLinkInsertUpdateErrorLogger>;
50
+ }
51
+ interface appPlatformLinkControllerResponse extends controllerResponse {
52
+ data?: any[] | any | null;
53
+ total?: number;
54
+ totalDocument?: number;
55
+ }
56
+ interface appPlatformLinkByIdControllerResponse extends controllerResponse {
57
+ data?: any | null;
58
+ }
59
+ interface appPlatformLinkInsertUpdateControllerResponse extends controllerResponse {
60
+ data?: any | null;
61
+ }
62
+ export { MAppPlatformLink, MAppPlatformLinkGetByIdPayload, MAppPlatformLinkInsertUpdatePayload, appPlatformLinkControllerResponse, appPlatformLinkByIdControllerResponse, appPlatformLinkInsertUpdateControllerResponse };
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAppPlatformLinkInsertUpdatePayload = exports.MAppPlatformLinkGetByIdPayload = exports.MAppPlatformLink = void 0;
4
+ const common_1 = require("../../common-types/common");
5
+ /* INTERFACE END */
6
+ /* MODEL START */
7
+ class MAppPlatformLink 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.MAppPlatformLink = MAppPlatformLink;
18
+ class MAppPlatformLinkGetByIdPayload {
19
+ constructor(init) {
20
+ Object.assign(this, init);
21
+ }
22
+ Validate() {
23
+ let errorLogger = {};
24
+ if (!this.applink_id && !this._id) {
25
+ errorLogger.applink_id = "App Platform Link ID is Required!";
26
+ }
27
+ return errorLogger;
28
+ }
29
+ }
30
+ exports.MAppPlatformLinkGetByIdPayload = MAppPlatformLinkGetByIdPayload;
31
+ class MAppPlatformLinkInsertUpdatePayload {
32
+ constructor(init) {
33
+ Object.assign(this, init);
34
+ }
35
+ Validate() {
36
+ let errorLogger = {};
37
+ return errorLogger;
38
+ }
39
+ }
40
+ exports.MAppPlatformLinkInsertUpdatePayload = MAppPlatformLinkInsertUpdatePayload;
@@ -0,0 +1,93 @@
1
+ import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
2
+ import { IAppPublishDetailsMst } from "../../schema/app/app_publish_details_mst";
3
+ import { controllerResponse } from "../../utilities";
4
+ type IAppPublishErrorLogger = {
5
+ [key in keyof MAppPublish]: string;
6
+ };
7
+ type IAppPublishGetByIdErrorLogger = {
8
+ [key in keyof MAppPublishGetByIdPayload]: string;
9
+ };
10
+ type IAppPublishInsertUpdateErrorLogger = {
11
+ [key in keyof MAppPublishInsertUpdatePayload]: string;
12
+ };
13
+ declare class MAppPublish extends MTableQueries {
14
+ apppub_id?: string;
15
+ apppub_reg_id_appreg?: string;
16
+ apppub_link_id_applink?: string;
17
+ apppub_version_id_appver?: string;
18
+ apppub_publish_status_id_sygms?: string;
19
+ query?: string;
20
+ constructor(init: MAppPublish);
21
+ Validate?(): Partial<IAppPublishErrorLogger>;
22
+ }
23
+ declare class MAppPublishGetByIdPayload implements MRequestMiddelware {
24
+ apppub_id?: string;
25
+ _id?: string;
26
+ constructor(init: MAppPublishGetByIdPayload);
27
+ Validate?(): Partial<IAppPublishGetByIdErrorLogger>;
28
+ }
29
+ declare class MAppPublishInsertUpdatePayload implements IAppPublishDetailsMst, MRequestMiddelware {
30
+ _id?: string;
31
+ apppub_reg_id_appreg?: string;
32
+ apppub_link_id_applink?: string;
33
+ apppub_version_id_appver?: string;
34
+ apppub_store_provider_id_appstore?: string;
35
+ apppub_platform_id_sygms?: string;
36
+ apppub_store_version_number?: string;
37
+ apppub_store_version_code?: number;
38
+ apppub_store_build_number?: string;
39
+ apppub_publish_type_id_sygms?: string;
40
+ apppub_publish_status_id_sygms?: string;
41
+ apppub_workflow_id_wfrg?: string;
42
+ apppub_current_step?: number;
43
+ apppub_store_app_id?: string;
44
+ apppub_store_listing_id?: string;
45
+ apppub_store_url?: string;
46
+ apppub_release_notes?: string;
47
+ apppub_promotional_text?: string;
48
+ apppub_product_description?: string;
49
+ apppub_category_ids_sygms?: string[];
50
+ apppub_preview_image_ids_cyfm?: string[];
51
+ apppub_screenshot_ids_cyfm?: string[];
52
+ apppub_feature_image_id_cyfm?: string;
53
+ apppub_promo_image_id_cyfm?: string;
54
+ apppub_icon_file_id_cyfm?: string;
55
+ apppub_keywords?: string[];
56
+ apppub_tags?: string[];
57
+ apppub_pricing_info?: Record<string, unknown>;
58
+ apppub_availability_info?: Record<string, unknown>;
59
+ apppub_store_specific_data?: Record<string, unknown>;
60
+ apppub_deployment_method_id_sygms?: string;
61
+ apppub_auto_deploy_enabled?: boolean;
62
+ apppub_deployment_api_response?: Record<string, unknown>;
63
+ apppub_deployment_url?: string;
64
+ apppub_deployment_log?: string;
65
+ apppub_submitted_at?: Date;
66
+ apppub_review_started_at?: Date;
67
+ apppub_approved_at?: Date;
68
+ apppub_published_at?: Date;
69
+ apppub_deployed_at?: Date;
70
+ apppub_deployment_started_at?: Date;
71
+ apppub_removed_at?: Date;
72
+ apppub_rejection_reason?: string;
73
+ apppub_rejection_details?: Record<string, unknown>;
74
+ apppub_published_by_id_auth?: string;
75
+ apppub_created_at?: Date;
76
+ apppub_updated_at?: Date;
77
+ constructor(init: Partial<IAppPublishDetailsMst> & {
78
+ _id?: string;
79
+ });
80
+ Validate?(): Partial<IAppPublishInsertUpdateErrorLogger>;
81
+ }
82
+ interface appPublishControllerResponse extends controllerResponse {
83
+ data?: any[] | any | null;
84
+ total?: number;
85
+ totalDocument?: number;
86
+ }
87
+ interface appPublishByIdControllerResponse extends controllerResponse {
88
+ data?: any | null;
89
+ }
90
+ interface appPublishInsertUpdateControllerResponse extends controllerResponse {
91
+ data?: any | null;
92
+ }
93
+ export { MAppPublish, MAppPublishGetByIdPayload, MAppPublishInsertUpdatePayload, appPublishControllerResponse, appPublishByIdControllerResponse, appPublishInsertUpdateControllerResponse };
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAppPublishInsertUpdatePayload = exports.MAppPublishGetByIdPayload = exports.MAppPublish = void 0;
4
+ const common_1 = require("../../common-types/common");
5
+ /* INTERFACE END */
6
+ /* MODEL START */
7
+ class MAppPublish 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.MAppPublish = MAppPublish;
18
+ class MAppPublishGetByIdPayload {
19
+ constructor(init) {
20
+ Object.assign(this, init);
21
+ }
22
+ Validate() {
23
+ let errorLogger = {};
24
+ if (!this.apppub_id && !this._id) {
25
+ errorLogger.apppub_id = "App Publish ID is Required!";
26
+ }
27
+ return errorLogger;
28
+ }
29
+ }
30
+ exports.MAppPublishGetByIdPayload = MAppPublishGetByIdPayload;
31
+ class MAppPublishInsertUpdatePayload {
32
+ constructor(init) {
33
+ Object.assign(this, init);
34
+ }
35
+ Validate() {
36
+ let errorLogger = {};
37
+ return errorLogger;
38
+ }
39
+ }
40
+ exports.MAppPublishInsertUpdatePayload = MAppPublishInsertUpdatePayload;
@@ -0,0 +1,55 @@
1
+ import { MTableQueries, MRequestMiddelware } from "../../common-types/common";
2
+ import { IAppRegistrationStartMst } from "../../schema/app/app_registration_start_mst";
3
+ import { controllerResponse } from "../../utilities";
4
+ type IAppRegistrationStartErrorLogger = {
5
+ [key in keyof MAppRegistrationStart]: string;
6
+ };
7
+ type IAppRegistrationStartGetByIdErrorLogger = {
8
+ [key in keyof MAppRegistrationStartGetByIdPayload]: string;
9
+ };
10
+ type IAppRegistrationStartInsertUpdateErrorLogger = {
11
+ [key in keyof MAppRegistrationStartInsertUpdatePayload]: string;
12
+ };
13
+ declare class MAppRegistrationStart extends MTableQueries {
14
+ appstart_id?: string;
15
+ appstart_reg_id_appreg?: string;
16
+ appstart_start_date?: Date;
17
+ appstart_configuration_data?: Record<string, unknown>;
18
+ appstart_start_status_id_sygms?: string;
19
+ query?: string;
20
+ constructor(init: MAppRegistrationStart);
21
+ Validate?(): Partial<IAppRegistrationStartErrorLogger>;
22
+ }
23
+ declare class MAppRegistrationStartGetByIdPayload implements MRequestMiddelware {
24
+ appstart_id?: string;
25
+ _id?: string;
26
+ constructor(init: MAppRegistrationStartGetByIdPayload);
27
+ Validate?(): Partial<IAppRegistrationStartGetByIdErrorLogger>;
28
+ }
29
+ declare class MAppRegistrationStartInsertUpdatePayload implements IAppRegistrationStartMst, MRequestMiddelware {
30
+ _id?: string;
31
+ appstart_reg_id_appreg?: string;
32
+ appstart_start_date?: Date;
33
+ appstart_configuration_data?: Record<string, unknown>;
34
+ appstart_start_status_id_sygms?: string;
35
+ appstart_started_by_id_auth?: string;
36
+ appstart_completed_at?: Date;
37
+ appstart_created_at?: Date;
38
+ appstart_updated_at?: Date;
39
+ constructor(init: Partial<IAppRegistrationStartMst> & {
40
+ _id?: string;
41
+ });
42
+ Validate?(): Partial<IAppRegistrationStartInsertUpdateErrorLogger>;
43
+ }
44
+ interface appRegistrationStartControllerResponse extends controllerResponse {
45
+ data?: any[] | any | null;
46
+ total?: number;
47
+ totalDocument?: number;
48
+ }
49
+ interface appRegistrationStartByIdControllerResponse extends controllerResponse {
50
+ data?: any | null;
51
+ }
52
+ interface appRegistrationStartInsertUpdateControllerResponse extends controllerResponse {
53
+ data?: any | null;
54
+ }
55
+ export { MAppRegistrationStart, MAppRegistrationStartGetByIdPayload, MAppRegistrationStartInsertUpdatePayload, appRegistrationStartControllerResponse, appRegistrationStartByIdControllerResponse, appRegistrationStartInsertUpdateControllerResponse };
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAppRegistrationStartInsertUpdatePayload = exports.MAppRegistrationStartGetByIdPayload = exports.MAppRegistrationStart = void 0;
4
+ const common_1 = require("../../common-types/common");
5
+ /* INTERFACE END */
6
+ /* MODEL START */
7
+ class MAppRegistrationStart 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.MAppRegistrationStart = MAppRegistrationStart;
18
+ class MAppRegistrationStartGetByIdPayload {
19
+ constructor(init) {
20
+ Object.assign(this, init);
21
+ }
22
+ Validate() {
23
+ let errorLogger = {};
24
+ if (!this.appstart_id && !this._id) {
25
+ errorLogger.appstart_id = "App Registration Start ID is Required!";
26
+ }
27
+ return errorLogger;
28
+ }
29
+ }
30
+ exports.MAppRegistrationStartGetByIdPayload = MAppRegistrationStartGetByIdPayload;
31
+ class MAppRegistrationStartInsertUpdatePayload {
32
+ constructor(init) {
33
+ Object.assign(this, init);
34
+ }
35
+ Validate() {
36
+ let errorLogger = {};
37
+ return errorLogger;
38
+ }
39
+ }
40
+ exports.MAppRegistrationStartInsertUpdatePayload = MAppRegistrationStartInsertUpdatePayload;