cloud-ide-lms-model 1.0.305 → 1.0.306

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 { FdskLeads } from "../../schema";
2
+ import { FdskLeads, FdskLeadsBase } from "../../schema";
3
3
  import { controllerResponse } from "../../utilities";
4
4
  type IFdskLeadsErrorLogger = {
5
5
  [key in keyof MFdskLeads]: string;
@@ -26,8 +26,51 @@ interface fdskLeadsInsertUpdateControllerResponse extends controllerResponse {
26
26
  interface fdskLeadsByIdControllerResponse extends controllerResponse {
27
27
  data?: FdskLeads;
28
28
  }
29
- interface FdskLeadsListResponse extends FdskLeads {
30
- children: FdskLeadsListResponse[];
29
+ interface FdskLeadsListResponse extends FdskLeadsBase {
30
+ fdlds_entity_id_syen?: {
31
+ _id?: string;
32
+ syen_name?: string;
33
+ };
34
+ fdlds_config_fdlcm?: {
35
+ _id?: string;
36
+ fdlcm_title?: string;
37
+ };
38
+ fdlds_counselor_id_user?: {
39
+ _id?: string;
40
+ user_fullname?: string;
41
+ };
42
+ fdlds_owner_id_user?: {
43
+ _id?: string;
44
+ user_fullname?: string;
45
+ };
46
+ fdlds_active_status_id_sygms?: {
47
+ _id?: string;
48
+ sygms_title?: string;
49
+ };
50
+ fdlds_pin_sypin?: {
51
+ _id?: string;
52
+ sypin_pincode?: string;
53
+ };
54
+ fdlds_city_sypin?: {
55
+ _id?: string;
56
+ sypin_division_name?: string;
57
+ };
58
+ fdlds_state_sypin?: {
59
+ _id?: string;
60
+ sypin_state_name?: string;
61
+ };
62
+ fdlds_country_syctr?: {
63
+ _id?: string;
64
+ syctr_country_iso_name?: string;
65
+ };
66
+ fdlds_priority_id_sygms?: {
67
+ _id?: string;
68
+ sygms_title?: string;
69
+ };
70
+ fdlds_reference_by_id_user?: {
71
+ _id?: string;
72
+ user_fullname?: string;
73
+ };
31
74
  }
32
75
  export { IFdskLeadsErrorLogger, //interface
33
76
  MFdskLeads, // model
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "typescript": "^5.4.2"
6
6
  },
7
7
  "name": "cloud-ide-lms-model",
8
- "version": "1.0.305",
8
+ "version": "1.0.306",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",