@leavittsoftware/lg-core-typescript 2.0.343 → 2.0.344
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 +25 -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;AAsSzB,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
|
@@ -168,6 +168,31 @@ export interface CrmAccounts {
|
|
|
168
168
|
UpdatedDate: string | null;
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
+
export interface ElasticCorePerson {
|
|
172
|
+
CellPhone: string | null;
|
|
173
|
+
City: string | null;
|
|
174
|
+
CompanyId: number | null;
|
|
175
|
+
CompanyName: string | null;
|
|
176
|
+
Email: string | null;
|
|
177
|
+
Extension: string | null;
|
|
178
|
+
FirstName: string | null;
|
|
179
|
+
FullName: string | null;
|
|
180
|
+
HomePhone: string | null;
|
|
181
|
+
Id: number;
|
|
182
|
+
IsActiveEmployee: boolean;
|
|
183
|
+
JobTitle: string | null;
|
|
184
|
+
LastName: string | null;
|
|
185
|
+
State: string | null;
|
|
186
|
+
Street1: string | null;
|
|
187
|
+
WorkPhone: string | null;
|
|
188
|
+
Zip: string | null;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export interface ElasticPersonHit {
|
|
192
|
+
LastVisitedBy: string | null;
|
|
193
|
+
Person: Partial<ElasticCorePerson> | null;
|
|
194
|
+
}
|
|
195
|
+
|
|
171
196
|
export interface Ams360Customer {
|
|
172
197
|
Active: string | null;
|
|
173
198
|
Addr1: string | null;
|