@aldb2b/common 1.0.425 → 1.0.427
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/build/elastic/elastic-search-index.d.ts +17 -0
- package/build/elastic/elastic-search-index.js +40 -0
- package/build/elastic/elastic-search-index.js.map +1 -0
- package/build/events/create-company-event.interface.d.ts +12 -0
- package/build/events/create-company-event.interface.js +3 -0
- package/build/events/create-company-event.interface.js.map +1 -0
- package/build/events/create-company.interface.d.ts +18 -0
- package/build/events/create-company.interface.js +3 -0
- package/build/events/create-company.interface.js.map +1 -0
- package/build/events/create-contact.interface.d.ts +24 -0
- package/build/events/create-contact.interface.js +3 -0
- package/build/events/create-contact.interface.js.map +1 -0
- package/build/events/create-meeting-event.interface.d.ts +12 -0
- package/build/events/create-meeting-event.interface.js +3 -0
- package/build/events/create-meeting-event.interface.js.map +1 -0
- package/build/events/create-notification-event.interface.d.ts +12 -0
- package/build/events/create-notification-event.interface.js +3 -0
- package/build/events/create-notification-event.interface.js.map +1 -0
- package/build/events/create-subscription-event.interface.d.ts +16 -0
- package/build/events/create-subscription-event.interface.js +3 -0
- package/build/events/create-subscription-event.interface.js.map +1 -0
- package/build/events/create-user-event.interface.d.ts +12 -0
- package/build/events/create-user-event.interface.js +3 -0
- package/build/events/create-user-event.interface.js.map +1 -0
- package/build/events/elastic-search-event.interface.d.ts +13 -0
- package/build/events/elastic-search-event.interface.js +3 -0
- package/build/events/elastic-search-event.interface.js.map +1 -0
- package/build/events/sync-event-with-notification.interface.d.ts +12 -0
- package/build/events/sync-event-with-notification.interface.js +3 -0
- package/build/events/sync-event-with-notification.interface.js.map +1 -0
- package/build/events/sync-subscription-event.interface.d.ts +12 -0
- package/build/events/sync-subscription-event.interface.js +3 -0
- package/build/events/sync-subscription-event.interface.js.map +1 -0
- package/build/events/update-user-event-info.interface.d.ts +20 -0
- package/build/events/update-user-event-info.interface.js +3 -0
- package/build/events/update-user-event-info.interface.js.map +1 -0
- package/build/index.d.ts +212 -0
- package/build/index.js +225 -0
- package/build/index.js.map +1 -0
- package/build/tsconfig.tsbuildinfo +19418 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare class ElasticSearchIndex {
|
|
2
|
+
private static _IndexPrefix;
|
|
3
|
+
private static _COMPANY;
|
|
4
|
+
private static _EVENT;
|
|
5
|
+
private static _RFQ;
|
|
6
|
+
private static _QUOTATION;
|
|
7
|
+
private static _CONTACT;
|
|
8
|
+
private static _MEETING;
|
|
9
|
+
private static _MEETING_REQUEST;
|
|
10
|
+
static get COMPANY(): string;
|
|
11
|
+
static get EVENT(): string;
|
|
12
|
+
static get RFQ(): string;
|
|
13
|
+
static get QUOTATION(): string;
|
|
14
|
+
static get CONTACT(): string;
|
|
15
|
+
static get MEETING(): string;
|
|
16
|
+
static get MEETING_REQUEST(): string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ElasticSearchIndex = void 0;
|
|
4
|
+
class ElasticSearchIndex {
|
|
5
|
+
static get COMPANY() {
|
|
6
|
+
return `${this._IndexPrefix}${this._COMPANY}`;
|
|
7
|
+
}
|
|
8
|
+
static get EVENT() {
|
|
9
|
+
return `${this._IndexPrefix}${this._EVENT}`;
|
|
10
|
+
}
|
|
11
|
+
static get RFQ() {
|
|
12
|
+
return `${this._IndexPrefix}${this._RFQ}`;
|
|
13
|
+
}
|
|
14
|
+
static get QUOTATION() {
|
|
15
|
+
return `${this._IndexPrefix}${this._QUOTATION}`;
|
|
16
|
+
}
|
|
17
|
+
static get CONTACT() {
|
|
18
|
+
return `${this._IndexPrefix}${this._CONTACT}`;
|
|
19
|
+
}
|
|
20
|
+
static get MEETING() {
|
|
21
|
+
return `${this._IndexPrefix}${this._MEETING}`;
|
|
22
|
+
}
|
|
23
|
+
static get MEETING_REQUEST() {
|
|
24
|
+
return `${this._IndexPrefix}${this._MEETING_REQUEST}`;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
exports.ElasticSearchIndex = ElasticSearchIndex;
|
|
28
|
+
ElasticSearchIndex._IndexPrefix = process.env.SEARCH_PREFIX
|
|
29
|
+
? process.env.SEARCH_PREFIX
|
|
30
|
+
: process.env.RUNNING_ENVIRONMENT === 'PRODUCTION'
|
|
31
|
+
? 'p_'
|
|
32
|
+
: '';
|
|
33
|
+
ElasticSearchIndex._COMPANY = 'company';
|
|
34
|
+
ElasticSearchIndex._EVENT = 'event';
|
|
35
|
+
ElasticSearchIndex._RFQ = 'rfq';
|
|
36
|
+
ElasticSearchIndex._QUOTATION = 'quotation';
|
|
37
|
+
ElasticSearchIndex._CONTACT = 'contact';
|
|
38
|
+
ElasticSearchIndex._MEETING = 'meeting';
|
|
39
|
+
ElasticSearchIndex._MEETING_REQUEST = 'meeting_request';
|
|
40
|
+
//# sourceMappingURL=elastic-search-index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"elastic-search-index.js","sourceRoot":"","sources":["../../src/elastic/elastic-search-index.ts"],"names":[],"mappings":";;;AAAA,MAAa,kBAAkB;IAc7B,MAAM,KAAK,OAAO;QAChB,OAAO,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAA;IAC/C,CAAC;IACD,MAAM,KAAK,KAAK;QACd,OAAO,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,MAAM,EAAE,CAAA;IAC7C,CAAC;IACD,MAAM,KAAK,GAAG;QACZ,OAAO,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,IAAI,EAAE,CAAA;IAC3C,CAAC;IACD,MAAM,KAAK,SAAS;QAClB,OAAO,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,UAAU,EAAE,CAAA;IACjD,CAAC;IACD,MAAM,KAAK,OAAO;QAChB,OAAO,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAA;IAC/C,CAAC;IACD,MAAM,KAAK,OAAO;QAChB,OAAO,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAA;IAC/C,CAAC;IACD,MAAM,KAAK,eAAe;QACxB,OAAO,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,gBAAgB,EAAE,CAAA;IACvD,CAAC;;AAlCH,gDAmCC;AAlCgB,+BAAY,GAAG,OAAO,CAAC,GAAG,CAAC,aAAa;IACrD,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa;IAC3B,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,mBAAmB,KAAK,YAAY;QAClD,CAAC,CAAC,IAAI;QACN,CAAC,CAAC,EAAE,CAAA;AACS,2BAAQ,GAAG,SAAS,CAAA;AACpB,yBAAM,GAAG,OAAO,CAAA;AAChB,uBAAI,GAAG,KAAK,CAAA;AACZ,6BAAU,GAAG,WAAW,CAAA;AACxB,2BAAQ,GAAG,SAAS,CAAA;AACpB,2BAAQ,GAAG,SAAS,CAAA;AACpB,mCAAgB,GAAG,iBAAiB,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { operationTypes } from "..";
|
|
3
|
+
export declare namespace CreateCompanyEvent {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.CreateEventInCompany;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
operation: operationTypes;
|
|
10
|
+
data: any;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-company-event.interface.js","sourceRoot":"","sources":["../../src/events/create-company-event.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { HeaderUser, operationTypes } from "..";
|
|
3
|
+
export declare namespace CreateCompany {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.CreateCompany;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
id?: string;
|
|
10
|
+
name?: string;
|
|
11
|
+
website?: string;
|
|
12
|
+
eventId?: string;
|
|
13
|
+
usertype?: string;
|
|
14
|
+
contact?: string;
|
|
15
|
+
operationType: operationTypes;
|
|
16
|
+
userHeader?: HeaderUser;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-company.interface.js","sourceRoot":"","sources":["../../src/events/create-company.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { HeaderUser, OnboardedThru, operationTypes } from "..";
|
|
3
|
+
export declare namespace CreateContact {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.CreateContact;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
firstname: string;
|
|
10
|
+
lastname: string;
|
|
11
|
+
email: string;
|
|
12
|
+
company: string;
|
|
13
|
+
eventId: string;
|
|
14
|
+
createdBy: string;
|
|
15
|
+
role?: string;
|
|
16
|
+
roleType?: string;
|
|
17
|
+
userHeader?: HeaderUser;
|
|
18
|
+
operationType?: operationTypes;
|
|
19
|
+
onboardedThru?: OnboardedThru;
|
|
20
|
+
companyDataObj?: any;
|
|
21
|
+
contactDataObj?: any;
|
|
22
|
+
defaultAdmins?: string[];
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-contact.interface.js","sourceRoot":"","sources":["../../src/events/create-contact.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { operationTypes } from "..";
|
|
3
|
+
export declare namespace CreateMeetingEvent {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.CreateEventInMeeting;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
operation: operationTypes;
|
|
10
|
+
data: any;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-meeting-event.interface.js","sourceRoot":"","sources":["../../src/events/create-meeting-event.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { operationTypes } from "..";
|
|
3
|
+
export declare namespace CreateNotificationEvent {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.CreateEventInNotification;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
operation: operationTypes;
|
|
10
|
+
data: any;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-notification-event.interface.js","sourceRoot":"","sources":["../../src/events/create-notification-event.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
export declare namespace CreateSubscriptionEventInterface {
|
|
3
|
+
interface Context {
|
|
4
|
+
subject: Subjects.CreateSubscriptionEvent;
|
|
5
|
+
data: Data;
|
|
6
|
+
}
|
|
7
|
+
interface Data {
|
|
8
|
+
eventId?: string;
|
|
9
|
+
paymentMethod?: string;
|
|
10
|
+
subscription?: string;
|
|
11
|
+
expiryDate?: string;
|
|
12
|
+
userId?: string;
|
|
13
|
+
userEmail?: string;
|
|
14
|
+
companyId?: string;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-subscription-event.interface.js","sourceRoot":"","sources":["../../src/events/create-subscription-event.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { operationTypes } from "..";
|
|
3
|
+
export declare namespace CreateUserEvent {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.CreateEventInUser;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
operation: operationTypes;
|
|
10
|
+
data: any;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-user-event.interface.js","sourceRoot":"","sources":["../../src/events/create-user-event.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { ElasticSearchAction } from '../enums/elastic-search-action.enum';
|
|
3
|
+
export declare namespace ElasticSearchEvent {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.ElasticSearchSubject;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
relatedRecordIds: string[];
|
|
10
|
+
index: string;
|
|
11
|
+
action: ElasticSearchAction;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"elastic-search-event.interface.js","sourceRoot":"","sources":["../../src/events/elastic-search-event.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { operationTypes } from "..";
|
|
3
|
+
export declare namespace SyncEventWithNotification {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.SyncEventWithNotification;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
operation: operationTypes;
|
|
10
|
+
data: any;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sync-event-with-notification.interface.js","sourceRoot":"","sources":["../../src/events/sync-event-with-notification.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { operationTypes } from "..";
|
|
3
|
+
export declare namespace SyncSubscriptionEvent {
|
|
4
|
+
interface Context {
|
|
5
|
+
subject: Subjects.CreateEventInSubscription;
|
|
6
|
+
data: Data;
|
|
7
|
+
}
|
|
8
|
+
interface Data {
|
|
9
|
+
operation: operationTypes;
|
|
10
|
+
data: any;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sync-subscription-event.interface.js","sourceRoot":"","sources":["../../src/events/sync-subscription-event.interface.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Subjects } from './subjects';
|
|
2
|
+
import { operationTypes, UserRole, UserType } from 'src';
|
|
3
|
+
import { OnboardedThru } from "../types/onboarded-thru.enum";
|
|
4
|
+
export declare namespace UpdateUserEventInfo {
|
|
5
|
+
interface Context {
|
|
6
|
+
subject: Subjects.UpdateUserEventInfo;
|
|
7
|
+
data: Data;
|
|
8
|
+
}
|
|
9
|
+
interface Data {
|
|
10
|
+
email: string;
|
|
11
|
+
eventId: string;
|
|
12
|
+
role: UserRole;
|
|
13
|
+
type: UserType;
|
|
14
|
+
company?: string;
|
|
15
|
+
contactId?: string;
|
|
16
|
+
eventStatus?: string;
|
|
17
|
+
operation: operationTypes;
|
|
18
|
+
onboardedThru?: OnboardedThru;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-user-event-info.interface.js","sourceRoot":"","sources":["../../src/events/update-user-event-info.interface.ts"],"names":[],"mappings":""}
|
package/build/index.d.ts
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
export * from './events/enums/property-type.enum';
|
|
2
|
+
export * from './events/subjects';
|
|
3
|
+
export * from './events/email-specs.interface';
|
|
4
|
+
export * from './events/get-companies.interface';
|
|
5
|
+
export * from './events/get-event.interface';
|
|
6
|
+
export * from './events/campaign-users.interface';
|
|
7
|
+
export * from './events/edit-list-users.interface';
|
|
8
|
+
export * from './events/authorize-user.interface';
|
|
9
|
+
export * from './events/attendee-contact.interface';
|
|
10
|
+
export * from './events/meeting-request-created.interface';
|
|
11
|
+
export * from './events/groups-by-company.interface';
|
|
12
|
+
export * from './events/compute-calendar.interface';
|
|
13
|
+
export * from './events/get-unavailable-by-user.interface';
|
|
14
|
+
export * from './events/manage-asseccibillity.interface';
|
|
15
|
+
export * from './events/update-user-event-info.interface';
|
|
16
|
+
export * from './events/send-emails.interface';
|
|
17
|
+
export * from './events/create-company-setting.interface';
|
|
18
|
+
export * from './events/update-company-setting.interface';
|
|
19
|
+
export * from './events/contacts-by-search.interface';
|
|
20
|
+
export * from './events/countries-by-search.interface';
|
|
21
|
+
export * from './events/companies-by-search.interface';
|
|
22
|
+
export * from './events/data-by-search.interface';
|
|
23
|
+
export * from './events/meeting-requested-users.interface';
|
|
24
|
+
export * from './events/meeting-count-by-user.interface';
|
|
25
|
+
export * from './events/meeting-count-by-company.interface';
|
|
26
|
+
export * from './events/groups-by-ids.interface';
|
|
27
|
+
export * from './events/create-company.interface';
|
|
28
|
+
export * from './events/get-user-by-id.interface';
|
|
29
|
+
export * from './events/create-contact.interface';
|
|
30
|
+
export * from './events/send-notifications.interface';
|
|
31
|
+
export * from './events/get-contacts-by-query.interface';
|
|
32
|
+
export * from './events/get-meeting-by-query.interface';
|
|
33
|
+
export * from './events/get-templates.interface';
|
|
34
|
+
export * from './events/queues';
|
|
35
|
+
export * from './events/create-default-templates';
|
|
36
|
+
export * from './events/update-meeting-status.interface';
|
|
37
|
+
export * from './events/is-system-user.interface';
|
|
38
|
+
export * from './events/add-company-crm.interface';
|
|
39
|
+
export * from './events/add-contact-crm.interface';
|
|
40
|
+
export * from './events/create-meeting-crm.interface';
|
|
41
|
+
export * from './events/create-order-crm.interface';
|
|
42
|
+
export * from './events/create-quotation-crm.interface';
|
|
43
|
+
export * from './events/received-order-crm.interface';
|
|
44
|
+
export * from './events/received-quotation-crm.interface';
|
|
45
|
+
export * from './events/rfq-create-crm.interface';
|
|
46
|
+
export * from './events/rfq-update-crm.interface';
|
|
47
|
+
export * from './events/update-meeting-crm.interface';
|
|
48
|
+
export * from './events/get-hall-event-topic.interface';
|
|
49
|
+
export * from './events/get-table-event-topic.interface';
|
|
50
|
+
export * from './events/get-tables-by-group.interface';
|
|
51
|
+
export * from './events/get-meeting-request-by-query.interface';
|
|
52
|
+
export * from './events/company-created.interface';
|
|
53
|
+
export * from './events/company-updated.interface';
|
|
54
|
+
export * from './events/contact-created.interface';
|
|
55
|
+
export * from './events/contact-updated.interface';
|
|
56
|
+
export * from './events/event-created.interface';
|
|
57
|
+
export * from './events/event-updated.interface';
|
|
58
|
+
export * from './events/meeting-created.interface';
|
|
59
|
+
export * from './events/meeting-request-created.interface';
|
|
60
|
+
export * from './events/meeting-updated.interface';
|
|
61
|
+
export * from './events/product-created.interface';
|
|
62
|
+
export * from './events/product-updated.interface';
|
|
63
|
+
export * from './events/quotation-created.interface';
|
|
64
|
+
export * from './events/quotation-updated.interface';
|
|
65
|
+
export * from './events/rfq-created.interface';
|
|
66
|
+
export * from './events/rfq-updated.interface';
|
|
67
|
+
export * from './events/service-created.interface';
|
|
68
|
+
export * from './events/service-updated.interface';
|
|
69
|
+
export * from './events/get-city-country-by-id.interface';
|
|
70
|
+
export * from './events/get-companies-by-query.interface';
|
|
71
|
+
export * from './events/exchanges';
|
|
72
|
+
export * from './events/sync-event-creation.interface';
|
|
73
|
+
export * from './events/sync-accessibility-creation.interface';
|
|
74
|
+
export * from './events/campaign-meeting-request-created.interface';
|
|
75
|
+
export * from './events/has-subscription.interface';
|
|
76
|
+
export * from './events/subtract-subscription-point.interface';
|
|
77
|
+
export * from './events/subtract-subscription-limit.interface';
|
|
78
|
+
export * from './events/update-company-meeting-stats.interface';
|
|
79
|
+
export * from './events/set-event-max-users.interface';
|
|
80
|
+
export * from './events/get-users-by-query.interface';
|
|
81
|
+
export * from './events/get-shared-list-by-token.interface';
|
|
82
|
+
export * from './events/get-user-by-email.interface';
|
|
83
|
+
export * from './events/get-sessions-by-ids.interface';
|
|
84
|
+
export * from './events/groups-by-companies.interface';
|
|
85
|
+
export * from './events/get-contact-by-id.interface';
|
|
86
|
+
export * from './events/get-meeting-stats-by-company.interface';
|
|
87
|
+
export * from './events/unset-contact-details.interface';
|
|
88
|
+
export * from './events/cancel-meetings-and-requests.interface';
|
|
89
|
+
export * from './events/campaign-add-in-queue.interface';
|
|
90
|
+
export * from './events/get-contacts-by-email.interface';
|
|
91
|
+
export * from './events/demo-create-meeting-requests.interface';
|
|
92
|
+
export * from './events/demo-create-meetings.interface';
|
|
93
|
+
export * from './events/demo-create-users.interface';
|
|
94
|
+
export * from './events/create-subscription-event.interface';
|
|
95
|
+
export * from './events/get-onboarding-survey.interface';
|
|
96
|
+
export * from './events/survey-send-email.interface';
|
|
97
|
+
export * from './events/event-deleted.interface';
|
|
98
|
+
export * from './events/create-meeting-event.interface';
|
|
99
|
+
export * from './events/create-company-event.interface';
|
|
100
|
+
export * from './events/create-user-event.interface';
|
|
101
|
+
export * from './events/sync-subscription-event.interface';
|
|
102
|
+
export * from './events/create-notification-event.interface';
|
|
103
|
+
export * from './events/create-order-send-email.interface';
|
|
104
|
+
export * from './events/sync-event-with-notification.interface';
|
|
105
|
+
export * from './events/publish-event-import-statistics.interface';
|
|
106
|
+
export * from './events/publish-event-meeting-statistics.interface';
|
|
107
|
+
export * from './events/create-meeting-setting.interface';
|
|
108
|
+
export * from './events/update-meeting-setting.interface';
|
|
109
|
+
export * from './events/create-cities.interface';
|
|
110
|
+
export * from './events/create-chat-setting.interface';
|
|
111
|
+
export * from './events/update-chat-setting.interface';
|
|
112
|
+
export * from './events/pull-event-info.interface';
|
|
113
|
+
export * from './events/set-meetings-to-not-show.interface';
|
|
114
|
+
export * from './events/move-user-event-info.interface';
|
|
115
|
+
export * from './events/create-property.interface';
|
|
116
|
+
export * from './events/get-properties.interface';
|
|
117
|
+
export * from './events/edit-property.interface';
|
|
118
|
+
export * from './events/delete-property.interface';
|
|
119
|
+
export * from './events/get-company-states.interface';
|
|
120
|
+
export * from './events/elastic-search-event.interface';
|
|
121
|
+
export * from './validators/conditional-required';
|
|
122
|
+
export * from './validators/date-validator';
|
|
123
|
+
export * from './validators/validateNewItem';
|
|
124
|
+
export * from './validators/validateProjection';
|
|
125
|
+
export * from './validators/validateProjectionResult';
|
|
126
|
+
export * from './validators/validateUpdateItem';
|
|
127
|
+
export * from './validators/responses/customizeArrayResponse';
|
|
128
|
+
export * from './validators/responses/error';
|
|
129
|
+
export * from './validators/responses/error.interface';
|
|
130
|
+
export * from './validators/responses/response-option.interface';
|
|
131
|
+
export * from './validators/responses/succes-result.interface';
|
|
132
|
+
export * from './validators/responses/success';
|
|
133
|
+
export * from './validators/responses/success.interface';
|
|
134
|
+
export * from './validators/responses/error-with-code';
|
|
135
|
+
export * from './validators/responses/error-with-code.interface';
|
|
136
|
+
export * from './validators/responses/success-with-code';
|
|
137
|
+
export * from './validators/responses/success-with-code.interface';
|
|
138
|
+
export * from './decorators/get-user-decorator';
|
|
139
|
+
export * from './decorators/get-event-id-decorator';
|
|
140
|
+
export * from './interceptors/response.interceptor';
|
|
141
|
+
export * from './interceptors/serialize.interceptor';
|
|
142
|
+
export * from './interceptors/response-with-code.interceptor';
|
|
143
|
+
export * from './interceptors/custom-exception.handler';
|
|
144
|
+
export * from './db/CustomModel';
|
|
145
|
+
export * from './db/MongooseBase';
|
|
146
|
+
export * from './db/mongoose-find-options';
|
|
147
|
+
export * from './db/aggregate/AggregateConvertor';
|
|
148
|
+
export * from './db/aggregate/createAggregateResponse';
|
|
149
|
+
export * from './types/read-result.interface';
|
|
150
|
+
export * from './types/update-input-data.interface';
|
|
151
|
+
export * from './types/user-role.enum';
|
|
152
|
+
export * from './types/user-type.enum';
|
|
153
|
+
export * from './types/header-user.interface';
|
|
154
|
+
export * from './types/upload-presigned-url.interface';
|
|
155
|
+
export * from './types/download-presigned-url.interface';
|
|
156
|
+
export * from './types/meeting-type.enum';
|
|
157
|
+
export * from './types/meeting-request-token.interface';
|
|
158
|
+
export * from './types/operation-types';
|
|
159
|
+
export * from './types/match-group.interface';
|
|
160
|
+
export * from './types/match.interface';
|
|
161
|
+
export * from './types/user-invitations.interface';
|
|
162
|
+
export * from './types/visibility-group.interface';
|
|
163
|
+
export * from './types/default-visibility.interface';
|
|
164
|
+
export * from './types/analytic-group.interface';
|
|
165
|
+
export * from './types/chat-group.interface';
|
|
166
|
+
export * from './types/default-visibility.interface';
|
|
167
|
+
export * from './types/group-visibility.interface';
|
|
168
|
+
export * from './types/notification-event.enum';
|
|
169
|
+
export * from './types/calendar-source-type.enum';
|
|
170
|
+
export * from './types/notification-type.enum';
|
|
171
|
+
export * from './types/record-type.enum';
|
|
172
|
+
export * from './types/enddpoint.interface';
|
|
173
|
+
export * from './types/subscription-model.enum';
|
|
174
|
+
export * from './types/user-language.enum';
|
|
175
|
+
export * from './types/feature.interface';
|
|
176
|
+
export * from './types/endpoint-type.enum';
|
|
177
|
+
export * from './types/feature-mappings';
|
|
178
|
+
export * from './types/feature-type.enum';
|
|
179
|
+
export * from './types/event-status.enum';
|
|
180
|
+
export * from './types/bulk-users.enum';
|
|
181
|
+
export * from './types/onboarded-thru.enum';
|
|
182
|
+
export * from './types/payment-method.enum';
|
|
183
|
+
export * from './types/priority.enum';
|
|
184
|
+
export * from './types/meeting-setting.interface';
|
|
185
|
+
export * from './types/notifications-calendar-event.interface';
|
|
186
|
+
export * from './types/meeting-token.interface';
|
|
187
|
+
export * from './middlewares/app.middleware';
|
|
188
|
+
export * from './middlewares/authorizer.middleware';
|
|
189
|
+
export * from './middlewares/subscription-subtractor.middleware';
|
|
190
|
+
export * from './middlewares/subscription-validator.middleware';
|
|
191
|
+
export * from './middlewares/event-status.middleware';
|
|
192
|
+
export * from './utils/create-default-directories';
|
|
193
|
+
export * from './utils/equal-array-object';
|
|
194
|
+
export * from './utils/equal-object';
|
|
195
|
+
export * from './utils/parse-query';
|
|
196
|
+
export * from './utils/projection';
|
|
197
|
+
export * from './utils/timezone';
|
|
198
|
+
export * from './utils/adjustForTimezone';
|
|
199
|
+
export * from './utils/get-parsed-query';
|
|
200
|
+
export * from './utils/rmq/index';
|
|
201
|
+
export * from './utils/redis-client';
|
|
202
|
+
export * from './utils/getHeaderParam';
|
|
203
|
+
export * from './utils/getEndpoint';
|
|
204
|
+
export * from './utils/addDaysToDate';
|
|
205
|
+
export * from './utils/addHours';
|
|
206
|
+
export * from './types/meeting-token.interface';
|
|
207
|
+
export * from './utils/encryptor';
|
|
208
|
+
export * from './enums/elastic-search-action.enum';
|
|
209
|
+
export * from './enums/elastic-sort-order.enum';
|
|
210
|
+
export * from './elastic/elastic-find-options';
|
|
211
|
+
export * from './elastic/elastic-sort.interface';
|
|
212
|
+
export * from './elastic/elastic-search-index';
|