cloud-ide-lms-model 1.0.316 → 1.0.318
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MTableQueries } from "../../common-types/common";
|
|
2
|
-
import {
|
|
2
|
+
import { FdskLeads, FdskLeadsBase } from "../../schema";
|
|
3
3
|
import { controllerResponse } from "../../utilities";
|
|
4
4
|
type IFdskLeadsErrorLogger = {
|
|
5
5
|
[key in keyof MFdskLeads]: string;
|
|
@@ -12,7 +12,6 @@ type IFdskLeadsGetByIdErrorLogger = {
|
|
|
12
12
|
};
|
|
13
13
|
declare class FdskLeadsSaveUpdatePayload {
|
|
14
14
|
fdsk_leads?: FdskLeads;
|
|
15
|
-
fdsk_lead_details?: FdskLeadDetail[];
|
|
16
15
|
constructor(init: FdskLeadsSaveUpdatePayload);
|
|
17
16
|
Validate?(): Partial<FdskLeadsErrorLogger>;
|
|
18
17
|
}
|
|
@@ -15,7 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./fdsk_leads"), exports);
|
|
18
|
-
__exportStar(require("./fdsk_lead_detail"), exports);
|
|
19
18
|
__exportStar(require("./fdsk_lead_assignment_detail"), exports);
|
|
20
|
-
__exportStar(require("./fdsk_lead_scheduling"), exports);
|
|
21
19
|
__exportStar(require("./fdsk_lead_config_master"), exports);
|
|
@@ -4,9 +4,9 @@ declare class FdskLeadDetailBase {
|
|
|
4
4
|
fdld_action_date_time?: Date;
|
|
5
5
|
}
|
|
6
6
|
declare class FdskLeadDetail extends FdskLeadDetailBase {
|
|
7
|
-
fdld_lead_id_fdlds?: string;
|
|
8
|
-
fdld_status_sygms?: string;
|
|
9
|
-
fdld_counselor_id_user?: string;
|
|
7
|
+
fdld_lead_id_fdlds?: string | null;
|
|
8
|
+
fdld_status_sygms?: string | null;
|
|
9
|
+
fdld_counselor_id_user?: string | null;
|
|
10
10
|
}
|
|
11
11
|
export { FdskLeadDetail, // interface
|
|
12
12
|
FdskLeadDetailBase };
|
|
@@ -3,7 +3,6 @@ declare class FdskLeadsBase {
|
|
|
3
3
|
fdlds_doc_no?: string;
|
|
4
4
|
fdlds_created_date_time?: Date;
|
|
5
5
|
fdlds_display_text?: string;
|
|
6
|
-
fdlds_template_id?: string;
|
|
7
6
|
fdlds_first_name?: string;
|
|
8
7
|
fdlds_middle_name?: string;
|
|
9
8
|
fdlds_last_name?: string;
|
|
@@ -11,6 +10,7 @@ declare class FdskLeadsBase {
|
|
|
11
10
|
fdlds_address?: string;
|
|
12
11
|
fdlds_phone?: string;
|
|
13
12
|
fdlds_email?: string;
|
|
13
|
+
fdlds_schedule_date_time?: Date;
|
|
14
14
|
}
|
|
15
15
|
declare class FdskLeads extends FdskLeadsBase {
|
|
16
16
|
fdlds_entity_id_syen?: string | null;
|