@leavittsoftware/lg-core-typescript 2.0.337 → 2.0.338
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/elasticsearch.js.map +1 -1
- package/elasticsearch.ts +17 -0
- package/lg.core.repository.ts +2 -0
- package/package.json +1 -1
package/elasticsearch.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"elasticsearch.js","sourceRoot":"","sources":["elasticsearch.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;
|
|
1
|
+
{"version":3,"file":"elasticsearch.js","sourceRoot":"","sources":["elasticsearch.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;AA6QzB,MAAM,CAAN,IAAY,WAIX;AAJD,WAAY,WAAW;IACnB,6CAAQ,CAAA;IACR,mDAAW,CAAA;IACX,mDAAW,CAAA;AACf,CAAC,EAJW,WAAW,KAAX,WAAW,QAItB;AAID,MAAM,CAAN,IAAY,WAOX;AAPD,WAAY,WAAW;IACnB,+DAAiB,CAAA;IACjB,iDAAU,CAAA;IACV,+DAAiB,CAAA;IACjB,mEAAmB,CAAA;IACnB,+CAAS,CAAA;IACT,qDAAY,CAAA;AAChB,CAAC,EAPW,WAAW,KAAX,WAAW,QAOtB;AAID,MAAM,CAAN,IAAY,SAWX;AAXD,WAAY,SAAS;IACjB,2DAAiB,CAAA;IACjB,mDAAa,CAAA;IACb,iEAAoB,CAAA;IACpB,uCAAO,CAAA;IACP,yCAAQ,CAAA;IACR,yCAAQ,CAAA;IACR,6CAAU,CAAA;IACV,2CAAS,CAAA;IACT,yCAAQ,CAAA;IACR,2CAAS,CAAA;AACb,CAAC,EAXW,SAAS,KAAT,SAAS,QAWpB;AAID,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,mEAAiB,CAAA;IACjB,2DAAa,CAAA;IACb,uDAAW,CAAA;IACX,uDAAW,CAAA;IACX,uDAAW,CAAA;AACf,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB"}
|
package/elasticsearch.ts
CHANGED
|
@@ -67,6 +67,23 @@ export interface Product {
|
|
|
67
67
|
ProductStatus: ProductStatusString;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
+
export interface CrmPhoneContact {
|
|
71
|
+
AccountName: string | null;
|
|
72
|
+
CleanPhone: string | null;
|
|
73
|
+
ContactFirstName: string | null;
|
|
74
|
+
ContactLastName: string | null;
|
|
75
|
+
ContactTitle: string | null;
|
|
76
|
+
CoreAccountId: number;
|
|
77
|
+
CustomerRepCompanyId: number | null;
|
|
78
|
+
CustomerRepCompanyName: string | null;
|
|
79
|
+
CustomerRepFirstName: string | null;
|
|
80
|
+
CustomerRepId: number | null;
|
|
81
|
+
CustomerRepLastName: string | null;
|
|
82
|
+
Fullname: string | null;
|
|
83
|
+
IsContact: boolean;
|
|
84
|
+
Phone: string | null;
|
|
85
|
+
}
|
|
86
|
+
|
|
70
87
|
export interface Activity {
|
|
71
88
|
AccountId: number | null;
|
|
72
89
|
AccountOwnerCompanyName: string | null;
|
package/lg.core.repository.ts
CHANGED
|
@@ -430,8 +430,10 @@ export interface CrmSearchDto {
|
|
|
430
430
|
ContactFirstName: string | null;
|
|
431
431
|
ContactLastName: string | null;
|
|
432
432
|
ContactTitle: string | null;
|
|
433
|
+
IsContact: boolean;
|
|
433
434
|
Name: string | null;
|
|
434
435
|
Phone: string | null;
|
|
436
|
+
ProducerName: string | null;
|
|
435
437
|
}
|
|
436
438
|
|
|
437
439
|
export interface AmsClientSearchDto {
|