cloud-ide-lms-model 1.0.303 → 1.0.305
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/frontdesk/fdsk_lead_assignment_detail.d.ts +34 -0
- package/lib/model/frontdesk/fdsk_lead_assignment_detail.js +27 -0
- package/lib/model/frontdesk/fdsk_lead_config_master.d.ts +34 -0
- package/lib/model/frontdesk/fdsk_lead_config_master.js +27 -0
- package/lib/model/frontdesk/fdsk_lead_detail.d.ts +34 -0
- package/lib/model/frontdesk/fdsk_lead_detail.js +27 -0
- package/lib/model/frontdesk/fdsk_lead_scheduling.d.ts +34 -0
- package/lib/model/frontdesk/fdsk_lead_scheduling.js +27 -0
- package/lib/model/frontdesk/fdsk_leads.d.ts +34 -0
- package/lib/model/frontdesk/fdsk_leads.js +27 -0
- package/lib/model/frontdesk/index.d.ts +5 -0
- package/lib/model/frontdesk/index.js +21 -0
- package/lib/model/index.d.ts +1 -0
- package/lib/model/index.js +1 -0
- package/lib/routes/frontdeskRoutes.d.ts +18 -0
- package/lib/routes/frontdeskRoutes.js +23 -0
- package/lib/routes/index.d.ts +1 -0
- package/lib/routes/index.js +1 -0
- package/lib/schema/collection_names.d.ts +52 -11
- package/lib/schema/collection_names.js +58 -11
- package/lib/schema/frontdesk/fdsk_lead_assignment_detail.d.ts +11 -0
- package/lib/schema/frontdesk/fdsk_lead_assignment_detail.js +10 -0
- package/lib/schema/frontdesk/fdsk_lead_config_master.d.ts +16 -0
- package/lib/schema/frontdesk/fdsk_lead_config_master.js +10 -0
- package/lib/schema/frontdesk/fdsk_lead_detail.d.ts +12 -0
- package/lib/schema/frontdesk/fdsk_lead_detail.js +10 -0
- package/lib/schema/frontdesk/fdsk_lead_scheduling.d.ts +14 -0
- package/lib/schema/frontdesk/fdsk_lead_scheduling.js +10 -0
- package/lib/schema/frontdesk/fdsk_leads.d.ts +29 -0
- package/lib/schema/frontdesk/fdsk_leads.js +10 -0
- package/lib/schema/frontdesk/index.d.ts +5 -0
- package/lib/schema/frontdesk/index.js +21 -0
- package/lib/schema/index.d.ts +1 -0
- package/lib/schema/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { MTableQueries } from "../../common-types/common";
|
|
2
|
+
import { FdskLeadAssignmentDetail } from "../../schema";
|
|
3
|
+
import { controllerResponse } from "../../utilities";
|
|
4
|
+
type IFdskLeadAssignmentDetailErrorLogger = {
|
|
5
|
+
[key in keyof MFdskLeadAssignmentDetail]: string;
|
|
6
|
+
};
|
|
7
|
+
type FdskLeadAssignmentDetailErrorLogger = {
|
|
8
|
+
[key in keyof FdskLeadAssignmentDetail]: string;
|
|
9
|
+
};
|
|
10
|
+
declare class FdskLeadAssignmentDetailSaveUpdatePayload {
|
|
11
|
+
fdsk_lead_assignment_detail?: FdskLeadAssignmentDetail;
|
|
12
|
+
constructor(init: FdskLeadAssignmentDetailSaveUpdatePayload);
|
|
13
|
+
Validate?(): Partial<FdskLeadAssignmentDetailErrorLogger>;
|
|
14
|
+
}
|
|
15
|
+
declare class MFdskLeadAssignmentDetail extends MTableQueries {
|
|
16
|
+
fdla_id?: string;
|
|
17
|
+
constructor(init: MFdskLeadAssignmentDetail);
|
|
18
|
+
Validate?(): Partial<IFdskLeadAssignmentDetailErrorLogger>;
|
|
19
|
+
}
|
|
20
|
+
interface fdskLeadAssignmentDetailControllerResponse extends controllerResponse {
|
|
21
|
+
data?: FdskLeadAssignmentDetailListResponse[];
|
|
22
|
+
}
|
|
23
|
+
interface fdskLeadAssignmentDetailInsertUpdateControllerResponse extends controllerResponse {
|
|
24
|
+
data?: FdskLeadAssignmentDetail;
|
|
25
|
+
}
|
|
26
|
+
interface fdskLeadAssignmentDetailByIdControllerResponse extends controllerResponse {
|
|
27
|
+
data?: FdskLeadAssignmentDetail;
|
|
28
|
+
}
|
|
29
|
+
interface FdskLeadAssignmentDetailListResponse extends FdskLeadAssignmentDetail {
|
|
30
|
+
children: FdskLeadAssignmentDetailListResponse[];
|
|
31
|
+
}
|
|
32
|
+
export { IFdskLeadAssignmentDetailErrorLogger, //interface
|
|
33
|
+
MFdskLeadAssignmentDetail, // model
|
|
34
|
+
fdskLeadAssignmentDetailControllerResponse, FdskLeadAssignmentDetailListResponse, fdskLeadAssignmentDetailInsertUpdateControllerResponse, fdskLeadAssignmentDetailByIdControllerResponse, FdskLeadAssignmentDetailSaveUpdatePayload };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FdskLeadAssignmentDetailSaveUpdatePayload = exports.MFdskLeadAssignmentDetail = void 0;
|
|
4
|
+
const common_1 = require("../../common-types/common");
|
|
5
|
+
/* INTERFACE END */
|
|
6
|
+
/* MODEL START */
|
|
7
|
+
class FdskLeadAssignmentDetailSaveUpdatePayload {
|
|
8
|
+
constructor(init) {
|
|
9
|
+
Object.assign(this, init);
|
|
10
|
+
}
|
|
11
|
+
Validate() {
|
|
12
|
+
let errorLogger = {};
|
|
13
|
+
return errorLogger;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.FdskLeadAssignmentDetailSaveUpdatePayload = FdskLeadAssignmentDetailSaveUpdatePayload;
|
|
17
|
+
class MFdskLeadAssignmentDetail 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.MFdskLeadAssignmentDetail = MFdskLeadAssignmentDetail;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { MTableQueries } from "../../common-types/common";
|
|
2
|
+
import { FdskLeadConfigMaster } from "../../schema";
|
|
3
|
+
import { controllerResponse } from "../../utilities";
|
|
4
|
+
type IFdskLeadConfigMasterErrorLogger = {
|
|
5
|
+
[key in keyof MFdskLeadConfigMaster]: string;
|
|
6
|
+
};
|
|
7
|
+
type FdskLeadConfigMasterErrorLogger = {
|
|
8
|
+
[key in keyof FdskLeadConfigMaster]: string;
|
|
9
|
+
};
|
|
10
|
+
declare class FdskLeadConfigMasterSaveUpdatePayload {
|
|
11
|
+
fdsk_lead_config_master?: FdskLeadConfigMaster;
|
|
12
|
+
constructor(init: FdskLeadConfigMasterSaveUpdatePayload);
|
|
13
|
+
Validate?(): Partial<FdskLeadConfigMasterErrorLogger>;
|
|
14
|
+
}
|
|
15
|
+
declare class MFdskLeadConfigMaster extends MTableQueries {
|
|
16
|
+
fdlcm_id?: string;
|
|
17
|
+
constructor(init: MFdskLeadConfigMaster);
|
|
18
|
+
Validate?(): Partial<IFdskLeadConfigMasterErrorLogger>;
|
|
19
|
+
}
|
|
20
|
+
interface fdskLeadConfigMasterControllerResponse extends controllerResponse {
|
|
21
|
+
data?: FdskLeadConfigMasterListResponse[];
|
|
22
|
+
}
|
|
23
|
+
interface fdskLeadConfigMasterInsertUpdateControllerResponse extends controllerResponse {
|
|
24
|
+
data?: FdskLeadConfigMaster;
|
|
25
|
+
}
|
|
26
|
+
interface fdskLeadConfigMasterByIdControllerResponse extends controllerResponse {
|
|
27
|
+
data?: FdskLeadConfigMaster;
|
|
28
|
+
}
|
|
29
|
+
interface FdskLeadConfigMasterListResponse extends FdskLeadConfigMaster {
|
|
30
|
+
children: FdskLeadConfigMasterListResponse[];
|
|
31
|
+
}
|
|
32
|
+
export { IFdskLeadConfigMasterErrorLogger, //interface
|
|
33
|
+
MFdskLeadConfigMaster, // model
|
|
34
|
+
fdskLeadConfigMasterControllerResponse, FdskLeadConfigMasterListResponse, fdskLeadConfigMasterInsertUpdateControllerResponse, fdskLeadConfigMasterByIdControllerResponse, FdskLeadConfigMasterSaveUpdatePayload };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FdskLeadConfigMasterSaveUpdatePayload = exports.MFdskLeadConfigMaster = void 0;
|
|
4
|
+
const common_1 = require("../../common-types/common");
|
|
5
|
+
/* INTERFACE END */
|
|
6
|
+
/* MODEL START */
|
|
7
|
+
class FdskLeadConfigMasterSaveUpdatePayload {
|
|
8
|
+
constructor(init) {
|
|
9
|
+
Object.assign(this, init);
|
|
10
|
+
}
|
|
11
|
+
Validate() {
|
|
12
|
+
let errorLogger = {};
|
|
13
|
+
return errorLogger;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.FdskLeadConfigMasterSaveUpdatePayload = FdskLeadConfigMasterSaveUpdatePayload;
|
|
17
|
+
class MFdskLeadConfigMaster 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.MFdskLeadConfigMaster = MFdskLeadConfigMaster;
|
|
@@ -0,0 +1,34 @@
|
|
|
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 };
|
|
@@ -0,0 +1,27 @@
|
|
|
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;
|
|
@@ -0,0 +1,34 @@
|
|
|
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 };
|
|
@@ -0,0 +1,27 @@
|
|
|
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;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { MTableQueries } from "../../common-types/common";
|
|
2
|
+
import { FdskLeads } from "../../schema";
|
|
3
|
+
import { controllerResponse } from "../../utilities";
|
|
4
|
+
type IFdskLeadsErrorLogger = {
|
|
5
|
+
[key in keyof MFdskLeads]: string;
|
|
6
|
+
};
|
|
7
|
+
type FdskLeadsErrorLogger = {
|
|
8
|
+
[key in keyof FdskLeads]: string;
|
|
9
|
+
};
|
|
10
|
+
declare class FdskLeadsSaveUpdatePayload {
|
|
11
|
+
fdsk_leads?: FdskLeads;
|
|
12
|
+
constructor(init: FdskLeadsSaveUpdatePayload);
|
|
13
|
+
Validate?(): Partial<FdskLeadsErrorLogger>;
|
|
14
|
+
}
|
|
15
|
+
declare class MFdskLeads extends MTableQueries {
|
|
16
|
+
fdlds_id?: string;
|
|
17
|
+
constructor(init: MFdskLeads);
|
|
18
|
+
Validate?(): Partial<IFdskLeadsErrorLogger>;
|
|
19
|
+
}
|
|
20
|
+
interface fdskLeadsControllerResponse extends controllerResponse {
|
|
21
|
+
data?: FdskLeadsListResponse[];
|
|
22
|
+
}
|
|
23
|
+
interface fdskLeadsInsertUpdateControllerResponse extends controllerResponse {
|
|
24
|
+
data?: FdskLeads;
|
|
25
|
+
}
|
|
26
|
+
interface fdskLeadsByIdControllerResponse extends controllerResponse {
|
|
27
|
+
data?: FdskLeads;
|
|
28
|
+
}
|
|
29
|
+
interface FdskLeadsListResponse extends FdskLeads {
|
|
30
|
+
children: FdskLeadsListResponse[];
|
|
31
|
+
}
|
|
32
|
+
export { IFdskLeadsErrorLogger, //interface
|
|
33
|
+
MFdskLeads, // model
|
|
34
|
+
fdskLeadsControllerResponse, FdskLeadsListResponse, fdskLeadsInsertUpdateControllerResponse, fdskLeadsByIdControllerResponse, FdskLeadsSaveUpdatePayload };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FdskLeadsSaveUpdatePayload = exports.MFdskLeads = void 0;
|
|
4
|
+
const common_1 = require("../../common-types/common");
|
|
5
|
+
/* INTERFACE END */
|
|
6
|
+
/* MODEL START */
|
|
7
|
+
class FdskLeadsSaveUpdatePayload {
|
|
8
|
+
constructor(init) {
|
|
9
|
+
Object.assign(this, init);
|
|
10
|
+
}
|
|
11
|
+
Validate() {
|
|
12
|
+
let errorLogger = {};
|
|
13
|
+
return errorLogger;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.FdskLeadsSaveUpdatePayload = FdskLeadsSaveUpdatePayload;
|
|
17
|
+
class MFdskLeads 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.MFdskLeads = MFdskLeads;
|
|
@@ -0,0 +1,21 @@
|
|
|
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("./fdsk_leads"), exports);
|
|
18
|
+
__exportStar(require("./fdsk_lead_detail"), exports);
|
|
19
|
+
__exportStar(require("./fdsk_lead_assignment_detail"), exports);
|
|
20
|
+
__exportStar(require("./fdsk_lead_scheduling"), exports);
|
|
21
|
+
__exportStar(require("./fdsk_lead_config_master"), exports);
|
package/lib/model/index.d.ts
CHANGED
package/lib/model/index.js
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Object containing URLs for frontdesk lead management endpoints.
|
|
3
|
+
* These URLs are used for various lead management operations.
|
|
4
|
+
*/
|
|
5
|
+
declare const frontdeskRoutesUrl: {
|
|
6
|
+
module: string;
|
|
7
|
+
/** Endpoint to manage leads (leads) */
|
|
8
|
+
leads: string;
|
|
9
|
+
/** Endpoint to get lead details (lead-details) */
|
|
10
|
+
leadDetails: string;
|
|
11
|
+
/** Endpoint to manage lead assignments (lead-assignments) */
|
|
12
|
+
leadAssignments: string;
|
|
13
|
+
/** Endpoint to manage lead scheduling (lead-scheduling) */
|
|
14
|
+
leadScheduling: string;
|
|
15
|
+
/** Endpoint to manage lead configuration (lead-config-master) */
|
|
16
|
+
leadConfigMaster: string;
|
|
17
|
+
};
|
|
18
|
+
export { frontdeskRoutesUrl };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.frontdeskRoutesUrl = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Object containing URLs for frontdesk lead management endpoints.
|
|
6
|
+
* These URLs are used for various lead management operations.
|
|
7
|
+
*/
|
|
8
|
+
const frontdeskRoutesUrl = {
|
|
9
|
+
module: 'frontdesk',
|
|
10
|
+
/** Endpoint to manage leads (leads) */
|
|
11
|
+
leads: "leads",
|
|
12
|
+
/** Endpoint to get lead details (lead-details) */
|
|
13
|
+
leadDetails: "lead-details",
|
|
14
|
+
/** Endpoint to manage lead assignments (lead-assignments) */
|
|
15
|
+
leadAssignments: "lead-assignments",
|
|
16
|
+
/** Endpoint to manage lead scheduling (lead-scheduling) */
|
|
17
|
+
leadScheduling: "lead-scheduling",
|
|
18
|
+
/** Endpoint to manage lead configuration (lead-config-master) */
|
|
19
|
+
leadConfigMaster: "lead-config-master",
|
|
20
|
+
};
|
|
21
|
+
exports.frontdeskRoutesUrl = frontdeskRoutesUrl;
|
|
22
|
+
// Freeze the frontdeskRoutesUrl object to prevent modifications
|
|
23
|
+
Object.freeze(frontdeskRoutesUrl);
|
package/lib/routes/index.d.ts
CHANGED
package/lib/routes/index.js
CHANGED
|
@@ -1,20 +1,61 @@
|
|
|
1
1
|
declare const COLLECTIONS: {
|
|
2
|
-
|
|
2
|
+
aca_academic_year: string;
|
|
3
|
+
aca_academic_year_mapping: string;
|
|
4
|
+
aca_class_program_master: string;
|
|
5
|
+
aca_class_program_term: string;
|
|
6
|
+
aca_class_prg_branch: string;
|
|
7
|
+
aca_prg_trm_section: string;
|
|
8
|
+
acc_financial_year: string;
|
|
9
|
+
acc_financial_year_mapping: string;
|
|
10
|
+
auth_logses: string;
|
|
11
|
+
auth_mpin: string;
|
|
12
|
+
auth_user_mst: string;
|
|
13
|
+
core_department: string;
|
|
14
|
+
core_designation: string;
|
|
15
|
+
core_designation_grade_level: string;
|
|
16
|
+
core_entity_access_pass_management: string;
|
|
17
|
+
core_entity_access_pass_management_sycad: string;
|
|
18
|
+
core_entity_access_pass_management_syfdl: string;
|
|
19
|
+
core_entity_access_pass_management_syusd: string;
|
|
20
|
+
core_entity_mapping: string;
|
|
21
|
+
core_file_manager: string;
|
|
22
|
+
core_general_master: string;
|
|
23
|
+
core_general_master_type: string;
|
|
24
|
+
core_iso_currency: string;
|
|
25
|
+
core_language: string;
|
|
3
26
|
core_page_elements: string;
|
|
4
27
|
core_page_elements_mapping: string;
|
|
28
|
+
core_page_grid: string;
|
|
29
|
+
core_page_tab: string;
|
|
30
|
+
core_pin_code: string;
|
|
31
|
+
core_system_config: string;
|
|
32
|
+
core_system_country: string;
|
|
33
|
+
core_system_entity: string;
|
|
34
|
+
core_system_logs: string;
|
|
35
|
+
core_system_menu: string;
|
|
36
|
+
core_system_organization_themes: string;
|
|
37
|
+
core_system_page_notes_manager: string;
|
|
5
38
|
core_system_pages: string;
|
|
6
|
-
|
|
7
|
-
|
|
39
|
+
core_system_pages_theme: string;
|
|
40
|
+
core_system_themes: string;
|
|
41
|
+
core_system_theme_user_preferences: string;
|
|
42
|
+
core_user_attributes: string;
|
|
8
43
|
core_user_contact_addresses: string;
|
|
9
44
|
core_user_documents: string;
|
|
10
45
|
core_user_family_details: string;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
46
|
+
core_user_role: string;
|
|
47
|
+
core_user_role_exceptions: string;
|
|
48
|
+
core_user_role_rights: string;
|
|
49
|
+
email_list: string;
|
|
50
|
+
email_log: string;
|
|
51
|
+
email_reference: string;
|
|
52
|
+
email_subscription_vendor: string;
|
|
53
|
+
email_templete: string;
|
|
54
|
+
email_vendor: string;
|
|
55
|
+
fdsk_lead_assignment_detail: string;
|
|
56
|
+
fdsk_lead_config_master: string;
|
|
57
|
+
fdsk_lead_detail: string;
|
|
58
|
+
fdsk_lead_scheduling: string;
|
|
59
|
+
fdsk_leads: string;
|
|
19
60
|
};
|
|
20
61
|
export { COLLECTIONS };
|
|
@@ -2,22 +2,69 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.COLLECTIONS = void 0;
|
|
4
4
|
const COLLECTIONS = {
|
|
5
|
-
|
|
5
|
+
// A - Academic Collections
|
|
6
|
+
aca_academic_year: "aca_academic_year",
|
|
7
|
+
aca_academic_year_mapping: "aca_academic_year_mapping",
|
|
8
|
+
aca_class_program_master: "aca_class_program_master",
|
|
9
|
+
aca_class_program_term: "aca_class_program_term",
|
|
10
|
+
aca_class_prg_branch: "aca_class_prg_branch",
|
|
11
|
+
aca_prg_trm_section: "aca_prg_trm_section",
|
|
12
|
+
// A - Account Collections
|
|
13
|
+
acc_financial_year: "acc_financial_year",
|
|
14
|
+
acc_financial_year_mapping: "acc_financial_year_mapping",
|
|
15
|
+
// A - Auth Collections
|
|
16
|
+
auth_logses: "auth_logses",
|
|
17
|
+
auth_mpin: "auth_mpin",
|
|
18
|
+
auth_user_mst: "auth_user_mst",
|
|
19
|
+
// C - Core Collections
|
|
20
|
+
core_department: "core_department",
|
|
21
|
+
core_designation: "core_designation",
|
|
22
|
+
core_designation_grade_level: "core_designation_grade_level",
|
|
23
|
+
core_entity_access_pass_management: "core_entity_access_pass_management",
|
|
24
|
+
core_entity_access_pass_management_sycad: "core_entity_access_pass_management_sycad",
|
|
25
|
+
core_entity_access_pass_management_syfdl: "core_entity_access_pass_management_syfdl",
|
|
26
|
+
core_entity_access_pass_management_syusd: "core_entity_access_pass_management_syusd",
|
|
27
|
+
core_entity_mapping: "core_entity_mapping",
|
|
28
|
+
core_file_manager: "core_file_manager",
|
|
29
|
+
core_general_master: "core_general_master",
|
|
30
|
+
core_general_master_type: "core_general_master_type",
|
|
31
|
+
core_iso_currency: "core_iso_currency",
|
|
32
|
+
core_language: "core_language",
|
|
6
33
|
core_page_elements: "core_page_elements",
|
|
7
34
|
core_page_elements_mapping: "core_page_elements_mapping",
|
|
35
|
+
core_page_grid: "core_page_grid",
|
|
36
|
+
core_page_tab: "core_page_tab",
|
|
37
|
+
core_pin_code: "core_pin_code",
|
|
38
|
+
core_system_config: "core_system_config",
|
|
39
|
+
core_system_country: "core_system_country",
|
|
40
|
+
core_system_entity: "core_system_entity",
|
|
41
|
+
core_system_logs: "core_system_logs",
|
|
42
|
+
core_system_menu: "core_system_menu",
|
|
43
|
+
core_system_organization_themes: "core_system_organization_themes",
|
|
44
|
+
core_system_page_notes_manager: "core_system_page_notes_manager",
|
|
8
45
|
core_system_pages: "core_system_pages",
|
|
9
|
-
|
|
10
|
-
|
|
46
|
+
core_system_pages_theme: "core_system_pages_theme",
|
|
47
|
+
core_system_themes: "core_system_themes",
|
|
48
|
+
core_system_theme_user_preferences: "core_system_theme_user_preferences",
|
|
49
|
+
core_user_attributes: "core_user_attributes",
|
|
11
50
|
core_user_contact_addresses: "core_user_contact_addresses",
|
|
12
51
|
core_user_documents: "core_user_documents",
|
|
13
52
|
core_user_family_details: "core_user_family_details",
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
53
|
+
core_user_role: "core_user_role",
|
|
54
|
+
core_user_role_exceptions: "core_user_role_exceptions",
|
|
55
|
+
core_user_role_rights: "core_user_role_rights",
|
|
56
|
+
// E - Email Collections
|
|
57
|
+
email_list: "email_list",
|
|
58
|
+
email_log: "email_log",
|
|
59
|
+
email_reference: "email_reference",
|
|
60
|
+
email_subscription_vendor: "email_subscription_vendor",
|
|
61
|
+
email_templete: "email_templete",
|
|
62
|
+
email_vendor: "email_vendor",
|
|
63
|
+
// F - Frontdesk Lead Management Collections
|
|
64
|
+
fdsk_lead_assignment_detail: "fdsk_lead_assignment_detail",
|
|
65
|
+
fdsk_lead_config_master: "fdsk_lead_config_master",
|
|
66
|
+
fdsk_lead_detail: "fdsk_lead_detail",
|
|
67
|
+
fdsk_lead_scheduling: "fdsk_lead_scheduling",
|
|
68
|
+
fdsk_leads: "fdsk_leads"
|
|
22
69
|
};
|
|
23
70
|
exports.COLLECTIONS = COLLECTIONS;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare class FdskLeadAssignmentDetailBase {
|
|
2
|
+
_id?: string;
|
|
3
|
+
fdla_action_date_time?: Date;
|
|
4
|
+
}
|
|
5
|
+
declare class FdskLeadAssignmentDetail extends FdskLeadAssignmentDetailBase {
|
|
6
|
+
fdla_action_assigned_to_id_user?: string;
|
|
7
|
+
fdla_action_assigned_from_id_user?: string;
|
|
8
|
+
fdla_status_id_sygms?: string;
|
|
9
|
+
}
|
|
10
|
+
export { FdskLeadAssignmentDetail, // interface
|
|
11
|
+
FdskLeadAssignmentDetailBase };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FdskLeadAssignmentDetailBase = exports.FdskLeadAssignmentDetail = void 0;
|
|
4
|
+
/* INTERFACE START */
|
|
5
|
+
class FdskLeadAssignmentDetailBase {
|
|
6
|
+
}
|
|
7
|
+
exports.FdskLeadAssignmentDetailBase = FdskLeadAssignmentDetailBase;
|
|
8
|
+
class FdskLeadAssignmentDetail extends FdskLeadAssignmentDetailBase {
|
|
9
|
+
}
|
|
10
|
+
exports.FdskLeadAssignmentDetail = FdskLeadAssignmentDetail;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare class FdskLeadConfigMasterBase {
|
|
2
|
+
_id?: string;
|
|
3
|
+
fdlcm_title?: string;
|
|
4
|
+
fdlcm_description?: string;
|
|
5
|
+
fdlcm_form_endpoint?: string;
|
|
6
|
+
fdlcm_isactive?: boolean;
|
|
7
|
+
fdlcm_start_date_time?: Date;
|
|
8
|
+
fdlcm_end_date_time?: Date;
|
|
9
|
+
}
|
|
10
|
+
declare class FdskLeadConfigMaster extends FdskLeadConfigMasterBase {
|
|
11
|
+
fdlcm_lead_created_for_id_sygms?: string;
|
|
12
|
+
fdlcm_defalut_priority_id_sygms?: string;
|
|
13
|
+
fdlcm_default_counselor_id_user?: string;
|
|
14
|
+
}
|
|
15
|
+
export { FdskLeadConfigMaster, // interface
|
|
16
|
+
FdskLeadConfigMasterBase };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FdskLeadConfigMasterBase = exports.FdskLeadConfigMaster = void 0;
|
|
4
|
+
/* INTERFACE START */
|
|
5
|
+
class FdskLeadConfigMasterBase {
|
|
6
|
+
}
|
|
7
|
+
exports.FdskLeadConfigMasterBase = FdskLeadConfigMasterBase;
|
|
8
|
+
class FdskLeadConfigMaster extends FdskLeadConfigMasterBase {
|
|
9
|
+
}
|
|
10
|
+
exports.FdskLeadConfigMaster = FdskLeadConfigMaster;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare class FdskLeadDetailBase {
|
|
2
|
+
_id?: string;
|
|
3
|
+
fdld_remark?: string;
|
|
4
|
+
fdld_action_date_time?: Date;
|
|
5
|
+
}
|
|
6
|
+
declare class FdskLeadDetail extends FdskLeadDetailBase {
|
|
7
|
+
fdld_lead_id_fdlds?: string;
|
|
8
|
+
fdld_status_sygms?: string;
|
|
9
|
+
fdld_counselor_id_user?: string;
|
|
10
|
+
}
|
|
11
|
+
export { FdskLeadDetail, // interface
|
|
12
|
+
FdskLeadDetailBase };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FdskLeadDetailBase = exports.FdskLeadDetail = void 0;
|
|
4
|
+
/* INTERFACE START */
|
|
5
|
+
class FdskLeadDetailBase {
|
|
6
|
+
}
|
|
7
|
+
exports.FdskLeadDetailBase = FdskLeadDetailBase;
|
|
8
|
+
class FdskLeadDetail extends FdskLeadDetailBase {
|
|
9
|
+
}
|
|
10
|
+
exports.FdskLeadDetail = FdskLeadDetail;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare class FdskLeadSchedulingBase {
|
|
2
|
+
_id?: string;
|
|
3
|
+
fdlsc_remark?: string;
|
|
4
|
+
fdlsc_schedule_date_time?: Date;
|
|
5
|
+
fdlsc_isactive?: boolean;
|
|
6
|
+
fdlsc_action_date_time?: Date;
|
|
7
|
+
}
|
|
8
|
+
declare class FdskLeadScheduling extends FdskLeadSchedulingBase {
|
|
9
|
+
fdlsc_lead_id_fdlds?: string;
|
|
10
|
+
fdlsc_counselor_id_user?: string;
|
|
11
|
+
fdlsc_status_id_sygms?: string;
|
|
12
|
+
}
|
|
13
|
+
export { FdskLeadScheduling, // interface
|
|
14
|
+
FdskLeadSchedulingBase };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FdskLeadSchedulingBase = exports.FdskLeadScheduling = void 0;
|
|
4
|
+
/* INTERFACE START */
|
|
5
|
+
class FdskLeadSchedulingBase {
|
|
6
|
+
}
|
|
7
|
+
exports.FdskLeadSchedulingBase = FdskLeadSchedulingBase;
|
|
8
|
+
class FdskLeadScheduling extends FdskLeadSchedulingBase {
|
|
9
|
+
}
|
|
10
|
+
exports.FdskLeadScheduling = FdskLeadScheduling;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare class FdskLeadsBase {
|
|
2
|
+
_id?: string;
|
|
3
|
+
fdlds_doc_no?: string;
|
|
4
|
+
fdlds_created_date_time?: Date;
|
|
5
|
+
fdlds_display_text?: string;
|
|
6
|
+
fdlds_template_id?: string;
|
|
7
|
+
fdlds_first_name?: string;
|
|
8
|
+
fdlds_middle_name?: string;
|
|
9
|
+
fdlds_last_name?: string;
|
|
10
|
+
fdlds_mother_name?: string;
|
|
11
|
+
fdlds_address?: string;
|
|
12
|
+
fdlds_phone?: string;
|
|
13
|
+
fdlds_email?: string;
|
|
14
|
+
}
|
|
15
|
+
declare class FdskLeads extends FdskLeadsBase {
|
|
16
|
+
fdlds_entity_id_syen?: string;
|
|
17
|
+
fdlds_config_fdlcm?: string;
|
|
18
|
+
fdlds_counselor_id_user?: string;
|
|
19
|
+
fdlds_owner_id_user?: string;
|
|
20
|
+
fdlds_active_status_id_sygms?: string;
|
|
21
|
+
fdlds_pin_sypin?: string;
|
|
22
|
+
fdlds_city_sypin?: string;
|
|
23
|
+
fdlds_state_sypin?: string;
|
|
24
|
+
fdlds_country_syctr?: string;
|
|
25
|
+
fdlds_priority_id_sygms?: string;
|
|
26
|
+
fdlds_reference_by_id_user?: string;
|
|
27
|
+
}
|
|
28
|
+
export { FdskLeads, // interface
|
|
29
|
+
FdskLeadsBase };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FdskLeadsBase = exports.FdskLeads = void 0;
|
|
4
|
+
/* INTERFACE START */
|
|
5
|
+
class FdskLeadsBase {
|
|
6
|
+
}
|
|
7
|
+
exports.FdskLeadsBase = FdskLeadsBase;
|
|
8
|
+
class FdskLeads extends FdskLeadsBase {
|
|
9
|
+
}
|
|
10
|
+
exports.FdskLeads = FdskLeads;
|
|
@@ -0,0 +1,21 @@
|
|
|
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("./fdsk_leads"), exports);
|
|
18
|
+
__exportStar(require("./fdsk_lead_detail"), exports);
|
|
19
|
+
__exportStar(require("./fdsk_lead_assignment_detail"), exports);
|
|
20
|
+
__exportStar(require("./fdsk_lead_scheduling"), exports);
|
|
21
|
+
__exportStar(require("./fdsk_lead_config_master"), exports);
|
package/lib/schema/index.d.ts
CHANGED
package/lib/schema/index.js
CHANGED