@aldb2b/common 1.0.301 → 1.0.302
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/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-meeting-event.interface.d.ts +1 -1
- 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-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/queues.d.ts +6 -2
- package/build/events/queues.js +5 -1
- package/build/events/queues.js.map +1 -1
- package/build/events/subjects.d.ts +6 -2
- package/build/events/subjects.js +5 -1
- package/build/events/subjects.js.map +1 -1
- 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/tsconfig.tsbuildinfo +62 -6
- package/package.json +1 -1
|
@@ -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,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,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":""}
|
package/build/events/queues.d.ts
CHANGED
|
@@ -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
|
}
|
package/build/events/queues.js
CHANGED
|
@@ -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,
|
|
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
|
}
|
package/build/events/subjects.js
CHANGED
|
@@ -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,
|
|
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 @@
|
|
|
1
|
+
{"version":3,"file":"sync-subscription-event.interface.js","sourceRoot":"","sources":["../../src/events/sync-subscription-event.interface.ts"],"names":[],"mappings":""}
|
|
@@ -162,8 +162,8 @@
|
|
|
162
162
|
"affectsGlobalScope": false
|
|
163
163
|
},
|
|
164
164
|
"../src/events/subjects.ts": {
|
|
165
|
-
"version": "
|
|
166
|
-
"signature": "
|
|
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": "
|
|
401
|
-
"signature": "
|
|
400
|
+
"version": "b8a675fe50ed906da0038a5e754e9e5c5ed03d5660695a1d22c65afe0014a435",
|
|
401
|
+
"signature": "61f4ff2b3eee65bf9425231dab25cc56f8fa7f5ea852c7fcf46e43a886fd6e6a",
|
|
402
402
|
"affectsGlobalScope": false
|
|
403
403
|
},
|
|
404
404
|
"../src/events/create-default-templates.ts": {
|
|
@@ -577,8 +577,8 @@
|
|
|
577
577
|
"affectsGlobalScope": false
|
|
578
578
|
},
|
|
579
579
|
"../src/events/create-meeting-event.interface.ts": {
|
|
580
|
-
"version": "
|
|
581
|
-
"signature": "
|
|
580
|
+
"version": "55848f0809658d35d1f5e4e85e6ce6340b81f4f896bb1e92a747f9ff9c29a19b",
|
|
581
|
+
"signature": "37ac0a312112ee41fba5422917051dc1feb62b183762390f5586f73423a1ff90",
|
|
582
582
|
"affectsGlobalScope": false
|
|
583
583
|
},
|
|
584
584
|
"../src/events/exchanges.ts": {
|
|
@@ -6596,11 +6596,31 @@
|
|
|
6596
6596
|
"signature": "09af1b04c42c680f40e81c90dcc619bf909cdb639746af60a58ab1110cc2ac7e",
|
|
6597
6597
|
"affectsGlobalScope": false
|
|
6598
6598
|
},
|
|
6599
|
+
"../src/events/create-company-event.interface.ts": {
|
|
6600
|
+
"version": "5f633b8a5e06f54c076cc36d5f081064b4c451464f84104ebb674429393ca5e9",
|
|
6601
|
+
"signature": "859cf12de7a3e19cef11d23cce7c34f5dc5062a781c05ef01d4a43a5e54e0c7a",
|
|
6602
|
+
"affectsGlobalScope": false
|
|
6603
|
+
},
|
|
6604
|
+
"../src/events/create-notification-event.interface.ts": {
|
|
6605
|
+
"version": "b0b40c03910f5ee2e65185b08edc2cc424f76471788358bdc6f5ecf7c5b70216",
|
|
6606
|
+
"signature": "3a44678c7bafc55f4ef18375805d4b7e6c9473da59fe01645b857da97b90390d",
|
|
6607
|
+
"affectsGlobalScope": false
|
|
6608
|
+
},
|
|
6609
|
+
"../src/events/create-user-event.interface.ts": {
|
|
6610
|
+
"version": "a12141baf5ff3cf52ea1355c14a031bcad947609db73bf1ddfb2ccb50931bd64",
|
|
6611
|
+
"signature": "3b5e2114137ad6e325ec100dfb67d8c8f5ac07b9d310ea1669386c8b193233ef",
|
|
6612
|
+
"affectsGlobalScope": false
|
|
6613
|
+
},
|
|
6599
6614
|
"../src/events/meeting-request-updated.interface.ts": {
|
|
6600
6615
|
"version": "394b4c7a72ca77f77686717d006c19f1fe726e05f3707cb229c92bb7fac8df29",
|
|
6601
6616
|
"signature": "2388b17bfe1f2e511b4960ec098cf5db020cec29e4f50f8676f8aa64da10c581",
|
|
6602
6617
|
"affectsGlobalScope": false
|
|
6603
6618
|
},
|
|
6619
|
+
"../src/events/sync-subscription-event.interface.ts": {
|
|
6620
|
+
"version": "6f4f4dde1fe3aec57124ff4e7464ce31ca529bde9b33beafbffb4392c1fa06ca",
|
|
6621
|
+
"signature": "178a3381b09c209e4521a25cfcd1ee424f807d5c061102d49cf68344b9dbd635",
|
|
6622
|
+
"affectsGlobalScope": false
|
|
6623
|
+
},
|
|
6604
6624
|
"../node_modules/@types/minimatch/index.d.ts": {
|
|
6605
6625
|
"version": "95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2",
|
|
6606
6626
|
"signature": "95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2",
|
|
@@ -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
|
],
|
|
@@ -16658,6 +16694,10 @@
|
|
|
16658
16694
|
"../src/events/countries-by-search.interface.ts": [
|
|
16659
16695
|
"../src/events/subjects.ts"
|
|
16660
16696
|
],
|
|
16697
|
+
"../src/events/create-company-event.interface.ts": [
|
|
16698
|
+
"../src/events/subjects.ts",
|
|
16699
|
+
"../src/index.ts"
|
|
16700
|
+
],
|
|
16661
16701
|
"../src/events/create-company-setting.interface.ts": [
|
|
16662
16702
|
"../src/events/subjects.ts",
|
|
16663
16703
|
"../src/types/default-visibility.interface.ts",
|
|
@@ -16683,6 +16723,10 @@
|
|
|
16683
16723
|
"../src/events/subjects.ts",
|
|
16684
16724
|
"../src/index.ts"
|
|
16685
16725
|
],
|
|
16726
|
+
"../src/events/create-notification-event.interface.ts": [
|
|
16727
|
+
"../src/events/subjects.ts",
|
|
16728
|
+
"../src/index.ts"
|
|
16729
|
+
],
|
|
16686
16730
|
"../src/events/create-order-crm.interface.ts": [
|
|
16687
16731
|
"../src/events/subjects.ts"
|
|
16688
16732
|
],
|
|
@@ -16692,6 +16736,10 @@
|
|
|
16692
16736
|
"../src/events/create-subscription-event.interface.ts": [
|
|
16693
16737
|
"../src/events/subjects.ts"
|
|
16694
16738
|
],
|
|
16739
|
+
"../src/events/create-user-event.interface.ts": [
|
|
16740
|
+
"../src/events/subjects.ts",
|
|
16741
|
+
"../src/index.ts"
|
|
16742
|
+
],
|
|
16695
16743
|
"../src/events/data-by-search.interface.ts": [
|
|
16696
16744
|
"../src/events/subjects.ts"
|
|
16697
16745
|
],
|
|
@@ -16885,6 +16933,10 @@
|
|
|
16885
16933
|
"../src/events/subjects.ts",
|
|
16886
16934
|
"../src/types/operation-types.ts"
|
|
16887
16935
|
],
|
|
16936
|
+
"../src/events/sync-subscription-event.interface.ts": [
|
|
16937
|
+
"../src/events/subjects.ts",
|
|
16938
|
+
"../src/index.ts"
|
|
16939
|
+
],
|
|
16888
16940
|
"../src/events/unset-contact-details.interface.ts": [
|
|
16889
16941
|
"../src/events/subjects.ts"
|
|
16890
16942
|
],
|
|
@@ -18362,15 +18414,18 @@
|
|
|
18362
18414
|
"../src/events/contact-updated.interface.ts",
|
|
18363
18415
|
"../src/events/contacts-by-search.interface.ts",
|
|
18364
18416
|
"../src/events/countries-by-search.interface.ts",
|
|
18417
|
+
"../src/events/create-company-event.interface.ts",
|
|
18365
18418
|
"../src/events/create-company-setting.interface.ts",
|
|
18366
18419
|
"../src/events/create-company.interface.ts",
|
|
18367
18420
|
"../src/events/create-contact.interface.ts",
|
|
18368
18421
|
"../src/events/create-default-templates.ts",
|
|
18369
18422
|
"../src/events/create-meeting-crm.interface.ts",
|
|
18370
18423
|
"../src/events/create-meeting-event.interface.ts",
|
|
18424
|
+
"../src/events/create-notification-event.interface.ts",
|
|
18371
18425
|
"../src/events/create-order-crm.interface.ts",
|
|
18372
18426
|
"../src/events/create-quotation-crm.interface.ts",
|
|
18373
18427
|
"../src/events/create-subscription-event.interface.ts",
|
|
18428
|
+
"../src/events/create-user-event.interface.ts",
|
|
18374
18429
|
"../src/events/data-by-search.interface.ts",
|
|
18375
18430
|
"../src/events/demo-create-meeting-requests.interface.ts",
|
|
18376
18431
|
"../src/events/demo-create-meetings.interface.ts",
|
|
@@ -18436,6 +18491,7 @@
|
|
|
18436
18491
|
"../src/events/survey-send-email.interface.ts",
|
|
18437
18492
|
"../src/events/sync-accessibility-creation.interface.ts",
|
|
18438
18493
|
"../src/events/sync-event-creation.interface.ts",
|
|
18494
|
+
"../src/events/sync-subscription-event.interface.ts",
|
|
18439
18495
|
"../src/events/unset-contact-details.interface.ts",
|
|
18440
18496
|
"../src/events/update-company-meeting-stats.interface.ts",
|
|
18441
18497
|
"../src/events/update-company-setting.interface.ts",
|