@aldb2b/common 1.0.301 → 1.0.303

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.
@@ -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,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=create-company-event.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-company-event.interface.js","sourceRoot":"","sources":["../../src/events/create-company-event.interface.ts"],"names":[],"mappings":""}
@@ -2,7 +2,7 @@ import { Subjects } from './subjects';
2
2
  import { operationTypes } from "..";
3
3
  export declare namespace CreateMeetingEvent {
4
4
  interface Context {
5
- subject: Subjects.CreateMeetingEvent;
5
+ subject: Subjects.CreateEventInMeeting;
6
6
  data: Data;
7
7
  }
8
8
  interface Data {
@@ -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,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=create-notification-event.interface.js.map
@@ -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,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,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=create-user-event.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-user-event.interface.js","sourceRoot":"","sources":["../../src/events/create-user-event.interface.ts"],"names":[],"mappings":""}
@@ -40,7 +40,6 @@ export declare enum Queues {
40
40
  NOTIFICATION_GET_MEETING_REQUESTS_QUEUE = "notification_get_meeting_requests_queue",
41
41
  GET_CITY_COUNTRY_BY_ID = "get_city_country_by_id",
42
42
  TABLE_DETAILS_BY_GROUP_QUEUE = "tables_details_by_group_queue",
43
- MANAGE_MEETING_EVENTS_QUEUE = "manage_meeting_events_queue",
44
43
  SUBSCRIPTION_QUEUE = "subscription_queue",
45
44
  SET_EVENT_MAX_USERS_QUEUE = "set_max_users_queue",
46
45
  USER_BY_CONTACTS_QUEUE = "users_by_contacts_queue",
@@ -57,5 +56,10 @@ export declare enum Queues {
57
56
  DEMO_MEETING_QUEUE = "demo_meeting_queue",
58
57
  CREAT_SUBSCRIPTION_EVENT_QUEUE = "create_subscription_event_queue",
59
58
  ONBOARDING_SURVEY_QUEUE = "onboarding_survey_queue",
60
- SURVEY_SEND_EMAIL_QUEUE = "send_survey_email_queue"
59
+ SURVEY_SEND_EMAIL_QUEUE = "send_survey_email_queue",
60
+ MANAGE_MEETING_EVENTS_QUEUE = "manage_meeting_events_queue",
61
+ MANAGE_COMPANY_EVENTS_QUEUE = "manage_company_events_queue",
62
+ MANAGE_USER_EVENTS_QUEUE = "manage_user_events_queue",
63
+ MANAGE_SUBSCRIPTION_EVENTS_QUEUE = "manage_subscription_events_queue",
64
+ MANAGE_NOTIFICATION_EVENTS_QUEUE = "manage_notification_events_queue"
61
65
  }
@@ -44,7 +44,6 @@ var Queues;
44
44
  Queues["NOTIFICATION_GET_MEETING_REQUESTS_QUEUE"] = "notification_get_meeting_requests_queue";
45
45
  Queues["GET_CITY_COUNTRY_BY_ID"] = "get_city_country_by_id";
46
46
  Queues["TABLE_DETAILS_BY_GROUP_QUEUE"] = "tables_details_by_group_queue";
47
- Queues["MANAGE_MEETING_EVENTS_QUEUE"] = "manage_meeting_events_queue";
48
47
  Queues["SUBSCRIPTION_QUEUE"] = "subscription_queue";
49
48
  Queues["SET_EVENT_MAX_USERS_QUEUE"] = "set_max_users_queue";
50
49
  Queues["USER_BY_CONTACTS_QUEUE"] = "users_by_contacts_queue";
@@ -62,5 +61,10 @@ var Queues;
62
61
  Queues["CREAT_SUBSCRIPTION_EVENT_QUEUE"] = "create_subscription_event_queue";
63
62
  Queues["ONBOARDING_SURVEY_QUEUE"] = "onboarding_survey_queue";
64
63
  Queues["SURVEY_SEND_EMAIL_QUEUE"] = "send_survey_email_queue";
64
+ Queues["MANAGE_MEETING_EVENTS_QUEUE"] = "manage_meeting_events_queue";
65
+ Queues["MANAGE_COMPANY_EVENTS_QUEUE"] = "manage_company_events_queue";
66
+ Queues["MANAGE_USER_EVENTS_QUEUE"] = "manage_user_events_queue";
67
+ Queues["MANAGE_SUBSCRIPTION_EVENTS_QUEUE"] = "manage_subscription_events_queue";
68
+ Queues["MANAGE_NOTIFICATION_EVENTS_QUEUE"] = "manage_notification_events_queue";
65
69
  })(Queues = exports.Queues || (exports.Queues = {}));
66
70
  //# sourceMappingURL=queues.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"queues.js","sourceRoot":"","sources":["../../src/events/queues.ts"],"names":[],"mappings":";;;AAAA,IAAY,MA4DX;AA5DD,WAAY,MAAM;IAChB,mCAAyB,CAAA;IACzB,yDAA+C,CAAA;IAC/C,iDAAuC,CAAA;IACvC,+CAAqC,CAAA;IACrC,qCAA2B,CAAA;IAC3B,+DAAqD,CAAA;IACrD,qDAA2C,CAAA;IAC3C,qEAA2D,CAAA;IAC3D,qEAA2D,CAAA;IAC3D,6EAAmE,CAAA;IACnE,yDAA+C,CAAA;IAC/C,iDAAuC,CAAA;IACvC,mDAAyC,CAAA;IACzC,qDAA2C,CAAA;IAC3C,yDAA+C,CAAA;IAC/C,uDAA6C,CAAA;IAC7C,+DAAqD,CAAA;IACrD,iEAAuD,CAAA;IACvD,qEAA2D,CAAA;IAC3D,2EAAiE,CAAA;IACjE,yEAA+D,CAAA;IAC/D,2DAAiD,CAAA;IACjD,6DAAmD,CAAA;IACnD,uDAA6C,CAAA;IAC7C,+DAAqD,CAAA;IACrD,0EAAgE,CAAA;IAChE,6EAAmE,CAAA;IACnE,uDAA6C,CAAA;IAC7C,iEAAuD,CAAA;IACvD,iEAAuD,CAAA;IACvD,6CAAmC,CAAA;IACnC,yEAA+D,CAAA;IAC/D,uEAA6D,CAAA;IAC7D,iEAAuD,CAAA;IACvD,iEAAuD,CAAA;IACvD,yDAA+C,CAAA;IAC/C,qEAA2D,CAAA;IAC3D,6DAAmD,CAAA;IACnD,6FAAmF,CAAA;IACnF,2DAAiD,CAAA;IACjD,wEAA8D,CAAA;IAC9D,qEAA2D,CAAA;IAC3D,mDAAyC,CAAA;IACzC,2DAAiD,CAAA;IACjD,4DAAkD,CAAA;IAClD,mEAAyD,CAAA;IACzD,uDAA6C,CAAA;IAC7C,yDAA+C,CAAA;IAC/C,iEAAuD,CAAA;IACvD,6DAAmD,CAAA;IACnD,mEAAyD,CAAA;IACzD,uEAA6D,CAAA;IAC7D,qEAA2D,CAAA;IAC3D,mFAAyE,CAAA;IACzE,mEAAyD,CAAA;IACzD,mDAAyC,CAAA;IACzC,4EAAkE,CAAA;IAClE,6DAAmD,CAAA;IACnD,6DAAmD,CAAA;AACrD,CAAC,EA5DW,MAAM,GAAN,cAAM,KAAN,cAAM,QA4DjB"}
1
+ {"version":3,"file":"queues.js","sourceRoot":"","sources":["../../src/events/queues.ts"],"names":[],"mappings":";;;AAAA,IAAY,MAiEX;AAjED,WAAY,MAAM;IAChB,mCAAyB,CAAA;IACzB,yDAA+C,CAAA;IAC/C,iDAAuC,CAAA;IACvC,+CAAqC,CAAA;IACrC,qCAA2B,CAAA;IAC3B,+DAAqD,CAAA;IACrD,qDAA2C,CAAA;IAC3C,qEAA2D,CAAA;IAC3D,qEAA2D,CAAA;IAC3D,6EAAmE,CAAA;IACnE,yDAA+C,CAAA;IAC/C,iDAAuC,CAAA;IACvC,mDAAyC,CAAA;IACzC,qDAA2C,CAAA;IAC3C,yDAA+C,CAAA;IAC/C,uDAA6C,CAAA;IAC7C,+DAAqD,CAAA;IACrD,iEAAuD,CAAA;IACvD,qEAA2D,CAAA;IAC3D,2EAAiE,CAAA;IACjE,yEAA+D,CAAA;IAC/D,2DAAiD,CAAA;IACjD,6DAAmD,CAAA;IACnD,uDAA6C,CAAA;IAC7C,+DAAqD,CAAA;IACrD,0EAAgE,CAAA;IAChE,6EAAmE,CAAA;IACnE,uDAA6C,CAAA;IAC7C,iEAAuD,CAAA;IACvD,iEAAuD,CAAA;IACvD,6CAAmC,CAAA;IACnC,yEAA+D,CAAA;IAC/D,uEAA6D,CAAA;IAC7D,iEAAuD,CAAA;IACvD,iEAAuD,CAAA;IACvD,yDAA+C,CAAA;IAC/C,qEAA2D,CAAA;IAC3D,6DAAmD,CAAA;IACnD,6FAAmF,CAAA;IACnF,2DAAiD,CAAA;IACjD,wEAA8D,CAAA;IAC9D,mDAAyC,CAAA;IACzC,2DAAiD,CAAA;IACjD,4DAAkD,CAAA;IAClD,mEAAyD,CAAA;IACzD,uDAA6C,CAAA;IAC7C,yDAA+C,CAAA;IAC/C,iEAAuD,CAAA;IACvD,6DAAmD,CAAA;IACnD,mEAAyD,CAAA;IACzD,uEAA6D,CAAA;IAC7D,qEAA2D,CAAA;IAC3D,mFAAyE,CAAA;IACzE,mEAAyD,CAAA;IACzD,mDAAyC,CAAA;IACzC,4EAAkE,CAAA;IAClE,6DAAmD,CAAA;IACnD,6DAAmD,CAAA;IACnD,qEAA2D,CAAA;IAC3D,qEAA2D,CAAA;IAC3D,+DAAqD,CAAA;IACrD,+EAAqE,CAAA;IACrE,+EAAqE,CAAA;AAEvE,CAAC,EAjEW,MAAM,GAAN,cAAM,KAAN,cAAM,QAiEjB"}
@@ -70,7 +70,6 @@ export declare enum Subjects {
70
70
  MeetingRequestUpdated = "meetingRequest:updated",
71
71
  GetCityCountryById = "getCityCountryById",
72
72
  CompaniesByQuery = "companiesByQuery",
73
- CreateMeetingEvent = "createMeetingEvent",
74
73
  HasSubscription = "hasSubscription",
75
74
  SubtractSubscriptionPoint = "subscription:substractPoint",
76
75
  SubtractSubscriptionLimit = "subscription:substractLimit",
@@ -92,5 +91,10 @@ export declare enum Subjects {
92
91
  DemoCreateMeetings = "demoCreateMeetings",
93
92
  CreateSubscriptionEvent = "createSubscriptionEvent",
94
93
  GetOnboardingSurvey = "getOnboardingSurvey",
95
- SurveySendEmail = "surveySendEmail"
94
+ SurveySendEmail = "surveySendEmail",
95
+ CreateEventInMeeting = "createEventInMeeting",
96
+ CreateEventInCompany = "createEventInCompany",
97
+ CreateEventInUser = "createEventInUser",
98
+ CreateEventInSubscription = "createEventInSubscription",
99
+ CreateEventInNotification = "createEventInNotification"
96
100
  }
@@ -74,7 +74,6 @@ var Subjects;
74
74
  Subjects["MeetingRequestUpdated"] = "meetingRequest:updated";
75
75
  Subjects["GetCityCountryById"] = "getCityCountryById";
76
76
  Subjects["CompaniesByQuery"] = "companiesByQuery";
77
- Subjects["CreateMeetingEvent"] = "createMeetingEvent";
78
77
  Subjects["HasSubscription"] = "hasSubscription";
79
78
  Subjects["SubtractSubscriptionPoint"] = "subscription:substractPoint";
80
79
  Subjects["SubtractSubscriptionLimit"] = "subscription:substractLimit";
@@ -97,5 +96,10 @@ var Subjects;
97
96
  Subjects["CreateSubscriptionEvent"] = "createSubscriptionEvent";
98
97
  Subjects["GetOnboardingSurvey"] = "getOnboardingSurvey";
99
98
  Subjects["SurveySendEmail"] = "surveySendEmail";
99
+ Subjects["CreateEventInMeeting"] = "createEventInMeeting";
100
+ Subjects["CreateEventInCompany"] = "createEventInCompany";
101
+ Subjects["CreateEventInUser"] = "createEventInUser";
102
+ Subjects["CreateEventInSubscription"] = "createEventInSubscription";
103
+ Subjects["CreateEventInNotification"] = "createEventInNotification";
100
104
  })(Subjects = exports.Subjects || (exports.Subjects = {}));
101
105
  //# sourceMappingURL=subjects.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"subjects.js","sourceRoot":"","sources":["../../src/events/subjects.ts"],"names":[],"mappings":";;;AAAA,IAAY,QA+FX;AA/FD,WAAY,QAAQ;IAClB,yCAA6B,CAAA;IAC7B,mCAAuB,CAAA;IACvB,4CAAgC,CAAA;IAChC,iCAAqB,CAAA;IACrB,uCAA2B,CAAA;IAC3B,+CAAmC,CAAA;IACnC,+CAAmC,CAAA;IACnC,6CAAiC,CAAA;IACjC,4CAAgC,CAAA;IAChC,4CAAgC,CAAA;IAChC,gDAAoC,CAAA;IACpC,4EAAgE,CAAA;IAChE,wDAA4C,CAAA;IAC5C,yDAA6C,CAAA;IAC7C,qCAAyB,CAAA;IACzB,4CAAgC,CAAA;IAChC,4CAAgC,CAAA;IAChC,2DAA+C,CAAA;IAC/C,2DAA+C,CAAA;IAC/C,iDAAqC,CAAA;IACrC,mDAAuC,CAAA;IACvC,mDAAuC,CAAA;IACvC,yCAA6B,CAAA;IAC7B,2DAA+C,CAAA;IAC/C,yCAA6B,CAAA;IAC7B,2CAA+B,CAAA;IAC/B,oDAAwC,CAAA;IACxC,mDAAuC,CAAA;IACvC,mDAAuC,CAAA;IACvC,6CAAiC,CAAA;IACjC,iEAAqD,CAAA;IACrD,yCAA6B,CAAA;IAC7B,8DAAkD,CAAA;IAClD,iDAAqC,CAAA;IACrC,yCAA6B,CAAA;IAC7B,kDAAsC,CAAA;IACtC,kDAAsC,CAAA;IACtC,0CAA8B,CAAA;IAC9B,0CAA8B,CAAA;IAC9B,sDAA0C,CAAA;IAC1C,0DAA8C,CAAA;IAC9C,8CAAkC,CAAA;IAClC,kDAAsC,CAAA;IACtC,4CAAgC,CAAA;IAChC,4CAAgC,CAAA;IAChC,uDAA2C,CAAA;IAC3C,qDAAyC,CAAA;IACzC,2CAA+B,CAAA;IAC/B,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,0CAA8B,CAAA;IAC9B,oDAAwC,CAAA;IACxC,oEAAwD,CAAA;IACxD,0CAA8B,CAAA;IAC9B,0CAA8B,CAAA;IAC9B,sCAA0B,CAAA;IAC1B,sCAA0B,CAAA;IAC1B,kDAAsC,CAAA;IACtC,kDAAsC,CAAA;IACtC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,4DAAgD,CAAA;IAChD,4DAAgD,CAAA;IAChD,qDAAyC,CAAA;IACzC,iDAAqC,CAAA;IACrC,qDAAyC,CAAA;IACzC,+CAAmC,CAAA;IACnC,qEAAyD,CAAA;IACzD,qEAAyD,CAAA;IACzD,mEAAuD,CAAA;IACvD,iDAAqC,CAAA;IACrC,yDAA6C,CAAA;IAC7C,uEAA2D,CAAA;IAC3D,6DAAiD,CAAA;IACjD,6CAAiC,CAAA;IACjC,iDAAqC,CAAA;IACrC,mDAAuC,CAAA;IACvC,yCAA6B,CAAA;IAC7B,+CAAmC,CAAA;IACnC,+DAAmD,CAAA;IACnD,uDAA2C,CAAA;IAC3C,mEAAuD,CAAA;IACvD,qDAAyC,CAAA;IACzC,mEAAuD,CAAA;IACvD,qDAAyC,CAAA;IACzC,+DAAmD,CAAA;IACnD,uDAA2C,CAAA;IAC3C,+CAAmC,CAAA;AACrC,CAAC,EA/FW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QA+FnB"}
1
+ {"version":3,"file":"subjects.js","sourceRoot":"","sources":["../../src/events/subjects.ts"],"names":[],"mappings":";;;AAAA,IAAY,QAmGX;AAnGD,WAAY,QAAQ;IAClB,yCAA6B,CAAA;IAC7B,mCAAuB,CAAA;IACvB,4CAAgC,CAAA;IAChC,iCAAqB,CAAA;IACrB,uCAA2B,CAAA;IAC3B,+CAAmC,CAAA;IACnC,+CAAmC,CAAA;IACnC,6CAAiC,CAAA;IACjC,4CAAgC,CAAA;IAChC,4CAAgC,CAAA;IAChC,gDAAoC,CAAA;IACpC,4EAAgE,CAAA;IAChE,wDAA4C,CAAA;IAC5C,yDAA6C,CAAA;IAC7C,qCAAyB,CAAA;IACzB,4CAAgC,CAAA;IAChC,4CAAgC,CAAA;IAChC,2DAA+C,CAAA;IAC/C,2DAA+C,CAAA;IAC/C,iDAAqC,CAAA;IACrC,mDAAuC,CAAA;IACvC,mDAAuC,CAAA;IACvC,yCAA6B,CAAA;IAC7B,2DAA+C,CAAA;IAC/C,yCAA6B,CAAA;IAC7B,2CAA+B,CAAA;IAC/B,oDAAwC,CAAA;IACxC,mDAAuC,CAAA;IACvC,mDAAuC,CAAA;IACvC,6CAAiC,CAAA;IACjC,iEAAqD,CAAA;IACrD,yCAA6B,CAAA;IAC7B,8DAAkD,CAAA;IAClD,iDAAqC,CAAA;IACrC,yCAA6B,CAAA;IAC7B,kDAAsC,CAAA;IACtC,kDAAsC,CAAA;IACtC,0CAA8B,CAAA;IAC9B,0CAA8B,CAAA;IAC9B,sDAA0C,CAAA;IAC1C,0DAA8C,CAAA;IAC9C,8CAAkC,CAAA;IAClC,kDAAsC,CAAA;IACtC,4CAAgC,CAAA;IAChC,4CAAgC,CAAA;IAChC,uDAA2C,CAAA;IAC3C,qDAAyC,CAAA;IACzC,2CAA+B,CAAA;IAC/B,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,0CAA8B,CAAA;IAC9B,oDAAwC,CAAA;IACxC,oEAAwD,CAAA;IACxD,0CAA8B,CAAA;IAC9B,0CAA8B,CAAA;IAC9B,sCAA0B,CAAA;IAC1B,sCAA0B,CAAA;IAC1B,kDAAsC,CAAA;IACtC,kDAAsC,CAAA;IACtC,8CAAkC,CAAA;IAClC,8CAAkC,CAAA;IAClC,4DAAgD,CAAA;IAChD,4DAAgD,CAAA;IAChD,qDAAyC,CAAA;IACzC,iDAAqC,CAAA;IACrC,+CAAmC,CAAA;IACnC,qEAAyD,CAAA;IACzD,qEAAyD,CAAA;IACzD,mEAAuD,CAAA;IACvD,iDAAqC,CAAA;IACrC,yDAA6C,CAAA;IAC7C,uEAA2D,CAAA;IAC3D,6DAAiD,CAAA;IACjD,6CAAiC,CAAA;IACjC,iDAAqC,CAAA;IACrC,mDAAuC,CAAA;IACvC,yCAA6B,CAAA;IAC7B,+CAAmC,CAAA;IACnC,+DAAmD,CAAA;IACnD,uDAA2C,CAAA;IAC3C,mEAAuD,CAAA;IACvD,qDAAyC,CAAA;IACzC,mEAAuD,CAAA;IACvD,qDAAyC,CAAA;IACzC,+DAAmD,CAAA;IACnD,uDAA2C,CAAA;IAC3C,+CAAmC,CAAA;IACnC,yDAA6C,CAAA;IAC7C,yDAA6C,CAAA;IAC7C,mDAAuC,CAAA;IACvC,mEAAuD,CAAA;IACvD,mEAAuD,CAAA;AACzD,CAAC,EAnGW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAmGnB"}
@@ -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,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=sync-subscription-event.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sync-subscription-event.interface.js","sourceRoot":"","sources":["../../src/events/sync-subscription-event.interface.ts"],"names":[],"mappings":""}
package/build/index.d.ts CHANGED
@@ -67,7 +67,6 @@ export * from './events/service-created.interface';
67
67
  export * from './events/service-updated.interface';
68
68
  export * from './events/get-city-country-by-id.interface';
69
69
  export * from './events/get-companies-by-query.interface';
70
- export * from './events/create-meeting-event.interface';
71
70
  export * from './events/exchanges';
72
71
  export * from './events/sync-event-creation.interface';
73
72
  export * from './events/sync-accessibility-creation.interface';
@@ -94,6 +93,11 @@ export * from './events/create-subscription-event.interface';
94
93
  export * from './events/get-onboarding-survey.interface';
95
94
  export * from './events/survey-send-email.interface';
96
95
  export * from './events/event-deleted.interface';
96
+ export * from './events/create-meeting-event.interface';
97
+ export * from './events/create-company-event.interface';
98
+ export * from './events/create-user-event.interface';
99
+ export * from './events/sync-subscription-event.interface';
100
+ export * from './events/create-notification-event.interface';
97
101
  export * from './validators/conditional-required';
98
102
  export * from './validators/date-validator';
99
103
  export * from './validators/validateNewItem';
package/build/index.js CHANGED
@@ -79,7 +79,6 @@ __exportStar(require("./events/service-created.interface"), exports);
79
79
  __exportStar(require("./events/service-updated.interface"), exports);
80
80
  __exportStar(require("./events/get-city-country-by-id.interface"), exports);
81
81
  __exportStar(require("./events/get-companies-by-query.interface"), exports);
82
- __exportStar(require("./events/create-meeting-event.interface"), exports);
83
82
  __exportStar(require("./events/exchanges"), exports);
84
83
  __exportStar(require("./events/sync-event-creation.interface"), exports);
85
84
  __exportStar(require("./events/sync-accessibility-creation.interface"), exports);
@@ -106,6 +105,11 @@ __exportStar(require("./events/create-subscription-event.interface"), exports);
106
105
  __exportStar(require("./events/get-onboarding-survey.interface"), exports);
107
106
  __exportStar(require("./events/survey-send-email.interface"), exports);
108
107
  __exportStar(require("./events/event-deleted.interface"), exports);
108
+ __exportStar(require("./events/create-meeting-event.interface"), exports);
109
+ __exportStar(require("./events/create-company-event.interface"), exports);
110
+ __exportStar(require("./events/create-user-event.interface"), exports);
111
+ __exportStar(require("./events/sync-subscription-event.interface"), exports);
112
+ __exportStar(require("./events/create-notification-event.interface"), exports);
109
113
  __exportStar(require("./validators/conditional-required"), exports);
110
114
  __exportStar(require("./validators/date-validator"), exports);
111
115
  __exportStar(require("./validators/validateNewItem"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -162,8 +162,8 @@
162
162
  "affectsGlobalScope": false
163
163
  },
164
164
  "../src/events/subjects.ts": {
165
- "version": "4f0c66f3098293d8fb18919fb93ab4e3a13feadf2039631ccdcf41d3ef14ab82",
166
- "signature": "d6bb2391e115db6862370dea90eaae3636020a03bc872da3fe7a779f13fa03dc",
165
+ "version": "dd59cb1f6a5872a79250a476affedfb175a9f98b1b3cd4c1f963bf9456bd0f1a",
166
+ "signature": "6606119225d038c261e7a6cebb8a7ce96e74379f66779979c05f7e5b72cc81b3",
167
167
  "affectsGlobalScope": false
168
168
  },
169
169
  "../src/events/email-specs.interface.ts": {
@@ -397,8 +397,8 @@
397
397
  "affectsGlobalScope": false
398
398
  },
399
399
  "../src/events/queues.ts": {
400
- "version": "9008361cd4e280fb1bad928be3669b846a8ecd28d60b6bfa1cf32ccf1018b8b0",
401
- "signature": "97e98c2719be06e1808f2b7d2a6c666a2cacf05df229a5f49b4f6fd542ddc770",
400
+ "version": "b8a675fe50ed906da0038a5e754e9e5c5ed03d5660695a1d22c65afe0014a435",
401
+ "signature": "61f4ff2b3eee65bf9425231dab25cc56f8fa7f5ea852c7fcf46e43a886fd6e6a",
402
402
  "affectsGlobalScope": false
403
403
  },
404
404
  "../src/events/create-default-templates.ts": {
@@ -576,11 +576,6 @@
576
576
  "signature": "ffebc5673f89c7696d99df58c29805018d04157f96a4636cd55126235f8cc7e7",
577
577
  "affectsGlobalScope": false
578
578
  },
579
- "../src/events/create-meeting-event.interface.ts": {
580
- "version": "56f09f073fa0dd44f55a905808fda235abb2a013ddbfb6d859f262c1ebb1f284",
581
- "signature": "61cfc8aec3c4fcf8b9c795a77fc777f1a917d1607e6dbd365bb669def20311ad",
582
- "affectsGlobalScope": false
583
- },
584
579
  "../src/events/exchanges.ts": {
585
580
  "version": "743fc12eafc6647756cc56bc57c2a5573988c90a42cc197d6031b292491a60c6",
586
581
  "signature": "5b1d183287d8fa30787af2d3d69eb1e62cd3325022d10290a3105df283689d25",
@@ -711,6 +706,31 @@
711
706
  "signature": "251a9f7d167a80cf61622250639bb635a48dd851cf546d515b8bdde0a8b508bf",
712
707
  "affectsGlobalScope": false
713
708
  },
709
+ "../src/events/create-meeting-event.interface.ts": {
710
+ "version": "55848f0809658d35d1f5e4e85e6ce6340b81f4f896bb1e92a747f9ff9c29a19b",
711
+ "signature": "37ac0a312112ee41fba5422917051dc1feb62b183762390f5586f73423a1ff90",
712
+ "affectsGlobalScope": false
713
+ },
714
+ "../src/events/create-company-event.interface.ts": {
715
+ "version": "5f633b8a5e06f54c076cc36d5f081064b4c451464f84104ebb674429393ca5e9",
716
+ "signature": "859cf12de7a3e19cef11d23cce7c34f5dc5062a781c05ef01d4a43a5e54e0c7a",
717
+ "affectsGlobalScope": false
718
+ },
719
+ "../src/events/create-user-event.interface.ts": {
720
+ "version": "a12141baf5ff3cf52ea1355c14a031bcad947609db73bf1ddfb2ccb50931bd64",
721
+ "signature": "3b5e2114137ad6e325ec100dfb67d8c8f5ac07b9d310ea1669386c8b193233ef",
722
+ "affectsGlobalScope": false
723
+ },
724
+ "../src/events/sync-subscription-event.interface.ts": {
725
+ "version": "6f4f4dde1fe3aec57124ff4e7464ce31ca529bde9b33beafbffb4392c1fa06ca",
726
+ "signature": "178a3381b09c209e4521a25cfcd1ee424f807d5c061102d49cf68344b9dbd635",
727
+ "affectsGlobalScope": false
728
+ },
729
+ "../src/events/create-notification-event.interface.ts": {
730
+ "version": "b0b40c03910f5ee2e65185b08edc2cc424f76471788358bdc6f5ecf7c5b70216",
731
+ "signature": "3a44678c7bafc55f4ef18375805d4b7e6c9473da59fe01645b857da97b90390d",
732
+ "affectsGlobalScope": false
733
+ },
714
734
  "../node_modules/class-validator/types/validation/ValidationError.d.ts": {
715
735
  "version": "e69d0b59db23f59172cb087ee44a71438f809bd214d4f4105abd6090b341cbdc",
716
736
  "signature": "e69d0b59db23f59172cb087ee44a71438f809bd214d4f4105abd6090b341cbdc",
@@ -6592,8 +6612,8 @@
6592
6612
  "affectsGlobalScope": false
6593
6613
  },
6594
6614
  "../src/index.ts": {
6595
- "version": "91d0205891eb5a1cc9e6939cd28b8fa4b6def93bd3dde537f2a3a548b0b587c2",
6596
- "signature": "09af1b04c42c680f40e81c90dcc619bf909cdb639746af60a58ab1110cc2ac7e",
6615
+ "version": "96d72c3f0c497327fb7e23218c42b6c8170f7046cdf374a0c8284b6052a66d87",
6616
+ "signature": "37066747ba5fcf610bb803afb2ffb132dc45d97553a59b206cb05a1ba4fcfd2f",
6597
6617
  "affectsGlobalScope": false
6598
6618
  },
6599
6619
  "../src/events/meeting-request-updated.interface.ts": {
@@ -11370,6 +11390,10 @@
11370
11390
  "../src/events/countries-by-search.interface.ts": [
11371
11391
  "../src/events/subjects.ts"
11372
11392
  ],
11393
+ "../src/events/create-company-event.interface.ts": [
11394
+ "../src/events/subjects.ts",
11395
+ "../src/index.ts"
11396
+ ],
11373
11397
  "../src/events/create-company-setting.interface.ts": [
11374
11398
  "../src/events/subjects.ts",
11375
11399
  "../src/types/default-visibility.interface.ts",
@@ -11395,6 +11419,10 @@
11395
11419
  "../src/events/subjects.ts",
11396
11420
  "../src/index.ts"
11397
11421
  ],
11422
+ "../src/events/create-notification-event.interface.ts": [
11423
+ "../src/events/subjects.ts",
11424
+ "../src/index.ts"
11425
+ ],
11398
11426
  "../src/events/create-order-crm.interface.ts": [
11399
11427
  "../src/events/subjects.ts"
11400
11428
  ],
@@ -11405,6 +11433,10 @@
11405
11433
  "../src/events/subjects.ts",
11406
11434
  "../src/index.ts"
11407
11435
  ],
11436
+ "../src/events/create-user-event.interface.ts": [
11437
+ "../src/events/subjects.ts",
11438
+ "../src/index.ts"
11439
+ ],
11408
11440
  "../src/events/data-by-search.interface.ts": [
11409
11441
  "../src/events/subjects.ts"
11410
11442
  ],
@@ -11598,6 +11630,10 @@
11598
11630
  "../src/events/subjects.ts",
11599
11631
  "../src/types/operation-types.ts"
11600
11632
  ],
11633
+ "../src/events/sync-subscription-event.interface.ts": [
11634
+ "../src/events/subjects.ts",
11635
+ "../src/index.ts"
11636
+ ],
11601
11637
  "../src/events/unset-contact-details.interface.ts": [
11602
11638
  "../src/events/subjects.ts"
11603
11639
  ],
@@ -11646,15 +11682,18 @@
11646
11682
  "../src/events/contact-updated.interface.ts",
11647
11683
  "../src/events/contacts-by-search.interface.ts",
11648
11684
  "../src/events/countries-by-search.interface.ts",
11685
+ "../src/events/create-company-event.interface.ts",
11649
11686
  "../src/events/create-company-setting.interface.ts",
11650
11687
  "../src/events/create-company.interface.ts",
11651
11688
  "../src/events/create-contact.interface.ts",
11652
11689
  "../src/events/create-default-templates.ts",
11653
11690
  "../src/events/create-meeting-crm.interface.ts",
11654
11691
  "../src/events/create-meeting-event.interface.ts",
11692
+ "../src/events/create-notification-event.interface.ts",
11655
11693
  "../src/events/create-order-crm.interface.ts",
11656
11694
  "../src/events/create-quotation-crm.interface.ts",
11657
11695
  "../src/events/create-subscription-event.interface.ts",
11696
+ "../src/events/create-user-event.interface.ts",
11658
11697
  "../src/events/data-by-search.interface.ts",
11659
11698
  "../src/events/demo-create-meeting-requests.interface.ts",
11660
11699
  "../src/events/demo-create-meetings.interface.ts",
@@ -11719,6 +11758,7 @@
11719
11758
  "../src/events/survey-send-email.interface.ts",
11720
11759
  "../src/events/sync-accessibility-creation.interface.ts",
11721
11760
  "../src/events/sync-event-creation.interface.ts",
11761
+ "../src/events/sync-subscription-event.interface.ts",
11722
11762
  "../src/events/unset-contact-details.interface.ts",
11723
11763
  "../src/events/update-company-meeting-stats.interface.ts",
11724
11764
  "../src/events/update-company-setting.interface.ts",
@@ -16658,6 +16698,10 @@
16658
16698
  "../src/events/countries-by-search.interface.ts": [
16659
16699
  "../src/events/subjects.ts"
16660
16700
  ],
16701
+ "../src/events/create-company-event.interface.ts": [
16702
+ "../src/events/subjects.ts",
16703
+ "../src/index.ts"
16704
+ ],
16661
16705
  "../src/events/create-company-setting.interface.ts": [
16662
16706
  "../src/events/subjects.ts",
16663
16707
  "../src/types/default-visibility.interface.ts",
@@ -16683,6 +16727,10 @@
16683
16727
  "../src/events/subjects.ts",
16684
16728
  "../src/index.ts"
16685
16729
  ],
16730
+ "../src/events/create-notification-event.interface.ts": [
16731
+ "../src/events/subjects.ts",
16732
+ "../src/index.ts"
16733
+ ],
16686
16734
  "../src/events/create-order-crm.interface.ts": [
16687
16735
  "../src/events/subjects.ts"
16688
16736
  ],
@@ -16692,6 +16740,10 @@
16692
16740
  "../src/events/create-subscription-event.interface.ts": [
16693
16741
  "../src/events/subjects.ts"
16694
16742
  ],
16743
+ "../src/events/create-user-event.interface.ts": [
16744
+ "../src/events/subjects.ts",
16745
+ "../src/index.ts"
16746
+ ],
16695
16747
  "../src/events/data-by-search.interface.ts": [
16696
16748
  "../src/events/subjects.ts"
16697
16749
  ],
@@ -16885,6 +16937,10 @@
16885
16937
  "../src/events/subjects.ts",
16886
16938
  "../src/types/operation-types.ts"
16887
16939
  ],
16940
+ "../src/events/sync-subscription-event.interface.ts": [
16941
+ "../src/events/subjects.ts",
16942
+ "../src/index.ts"
16943
+ ],
16888
16944
  "../src/events/unset-contact-details.interface.ts": [
16889
16945
  "../src/events/subjects.ts"
16890
16946
  ],
@@ -16933,15 +16989,18 @@
16933
16989
  "../src/events/contact-updated.interface.ts",
16934
16990
  "../src/events/contacts-by-search.interface.ts",
16935
16991
  "../src/events/countries-by-search.interface.ts",
16992
+ "../src/events/create-company-event.interface.ts",
16936
16993
  "../src/events/create-company-setting.interface.ts",
16937
16994
  "../src/events/create-company.interface.ts",
16938
16995
  "../src/events/create-contact.interface.ts",
16939
16996
  "../src/events/create-default-templates.ts",
16940
16997
  "../src/events/create-meeting-crm.interface.ts",
16941
16998
  "../src/events/create-meeting-event.interface.ts",
16999
+ "../src/events/create-notification-event.interface.ts",
16942
17000
  "../src/events/create-order-crm.interface.ts",
16943
17001
  "../src/events/create-quotation-crm.interface.ts",
16944
17002
  "../src/events/create-subscription-event.interface.ts",
17003
+ "../src/events/create-user-event.interface.ts",
16945
17004
  "../src/events/data-by-search.interface.ts",
16946
17005
  "../src/events/demo-create-meeting-requests.interface.ts",
16947
17006
  "../src/events/demo-create-meetings.interface.ts",
@@ -17006,6 +17065,7 @@
17006
17065
  "../src/events/survey-send-email.interface.ts",
17007
17066
  "../src/events/sync-accessibility-creation.interface.ts",
17008
17067
  "../src/events/sync-event-creation.interface.ts",
17068
+ "../src/events/sync-subscription-event.interface.ts",
17009
17069
  "../src/events/unset-contact-details.interface.ts",
17010
17070
  "../src/events/update-company-meeting-stats.interface.ts",
17011
17071
  "../src/events/update-company-setting.interface.ts",
@@ -18362,15 +18422,18 @@
18362
18422
  "../src/events/contact-updated.interface.ts",
18363
18423
  "../src/events/contacts-by-search.interface.ts",
18364
18424
  "../src/events/countries-by-search.interface.ts",
18425
+ "../src/events/create-company-event.interface.ts",
18365
18426
  "../src/events/create-company-setting.interface.ts",
18366
18427
  "../src/events/create-company.interface.ts",
18367
18428
  "../src/events/create-contact.interface.ts",
18368
18429
  "../src/events/create-default-templates.ts",
18369
18430
  "../src/events/create-meeting-crm.interface.ts",
18370
18431
  "../src/events/create-meeting-event.interface.ts",
18432
+ "../src/events/create-notification-event.interface.ts",
18371
18433
  "../src/events/create-order-crm.interface.ts",
18372
18434
  "../src/events/create-quotation-crm.interface.ts",
18373
18435
  "../src/events/create-subscription-event.interface.ts",
18436
+ "../src/events/create-user-event.interface.ts",
18374
18437
  "../src/events/data-by-search.interface.ts",
18375
18438
  "../src/events/demo-create-meeting-requests.interface.ts",
18376
18439
  "../src/events/demo-create-meetings.interface.ts",
@@ -18436,6 +18499,7 @@
18436
18499
  "../src/events/survey-send-email.interface.ts",
18437
18500
  "../src/events/sync-accessibility-creation.interface.ts",
18438
18501
  "../src/events/sync-event-creation.interface.ts",
18502
+ "../src/events/sync-subscription-event.interface.ts",
18439
18503
  "../src/events/unset-contact-details.interface.ts",
18440
18504
  "../src/events/update-company-meeting-stats.interface.ts",
18441
18505
  "../src/events/update-company-setting.interface.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aldb2b/common",
3
- "version": "1.0.301",
3
+ "version": "1.0.303",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",