@btffamily/vacepey 1.0.1 → 1.0.2
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.
|
@@ -1,34 +1,58 @@
|
|
|
1
1
|
export declare enum Exchanges {
|
|
2
|
+
UserCreated = "pacitude.prod.user.created",
|
|
3
|
+
UserUpdated = "pacitude.prod.user.updated",
|
|
4
|
+
UserDeleted = "pacitude.prod.user.deleted",
|
|
5
|
+
ComplianceUpdated = "pacitude.prod.compliance.updated",
|
|
6
|
+
NotificationCreated = "pacitude.prod.notification.created",
|
|
7
|
+
AuditCreated = "pacitude.prod.audit.created",
|
|
8
|
+
CountryFound = "pacitude.prod.country.found",
|
|
9
|
+
LocationSaved = "pacitude.prod.location.saved",
|
|
2
10
|
NotifyEmail = "pacitude.prod.notify.email",
|
|
3
11
|
NotifySMS = "pacitude.prod.notify.sms",
|
|
4
12
|
WelcomeEmail = "pacitude.prod.welcome.email",
|
|
5
13
|
SendOTPEmail = "pacitude.prod.send.otp.email",
|
|
6
14
|
SendOTPSMS = "pacitude.prod.send.otp.sms",
|
|
7
|
-
|
|
15
|
+
ComplianceUpdatedEmail = "pacitude.prod.compliance.updated.email",
|
|
8
16
|
EmailSent = "pacitude.prod.email.sent",
|
|
9
17
|
SMSSent = "pacitude.prod.sms.sent",
|
|
10
18
|
NotifyCreate = "pacitude.prod.notify.create",
|
|
11
19
|
NotifyRead = "pacitude.prod.notify.read"
|
|
12
20
|
}
|
|
13
21
|
export declare enum STGSExchanges {
|
|
22
|
+
UserCreated = "pacitude.staging.user.created",
|
|
23
|
+
UserUpdated = "pacitude.staging.user.updated",
|
|
24
|
+
UserDeleted = "pacitude.staging.user.deleted",
|
|
25
|
+
ComplianceUpdated = "pacitude.staging.compliance.updated",
|
|
26
|
+
NotificationCreated = "pacitude.staging.notification.created",
|
|
27
|
+
AuditCreated = "pacitude.staging.audit.created",
|
|
28
|
+
CountryFound = "pacitude.staging.country.found",
|
|
29
|
+
LocationSaved = "pacitude.staging.location.saved",
|
|
14
30
|
NotifyEmail = "pacitude.staging.notify.email",
|
|
15
31
|
NotifySMS = "pacitude.staging.notify.sms",
|
|
16
32
|
WelcomeEmail = "pacitude.staging.welcome.email",
|
|
17
33
|
SendOTPEmail = "pacitude.staging.send.otp.email",
|
|
18
34
|
SendOTPSMS = "pacitude.staging.send.otp.sms",
|
|
19
|
-
|
|
35
|
+
ComplianceUpdatedEmail = "pacitude.staging.compliance.updated.email",
|
|
20
36
|
EmailSent = "pacitude.staging.email.sent",
|
|
21
37
|
SMSSent = "pacitude.staging.sms.sent",
|
|
22
38
|
NotifyCreate = "pacitude.staging.notify.create",
|
|
23
39
|
NotifyRead = "pacitude.staging.notify.read"
|
|
24
40
|
}
|
|
25
41
|
export declare enum DEVExchanges {
|
|
42
|
+
UserCreated = "pacitude.dev.user.created",
|
|
43
|
+
UserUpdated = "pacitude.dev.user.updated",
|
|
44
|
+
UserDeleted = "pacitude.dev.user.deleted",
|
|
45
|
+
ComplianceUpdated = "pacitude.dev.compliance.updated",
|
|
46
|
+
NotificationCreated = "pacitude.dev.notification.created",
|
|
47
|
+
AuditCreated = "pacitude.dev.audit.created",
|
|
48
|
+
CountryFound = "pacitude.dev.country.found",
|
|
49
|
+
LocationSaved = "pacitude.dev.location.saved",
|
|
26
50
|
NotifyEmail = "pacitude.dev.notify.email",
|
|
27
51
|
NotifySMS = "pacitude.dev.notify.sms",
|
|
28
52
|
WelcomeEmail = "pacitude.dev.welcome.email",
|
|
29
53
|
SendOTPEmail = "pacitude.dev.send.otp.email",
|
|
30
54
|
SendOTPSMS = "pacitude.dev.send.otp.sms",
|
|
31
|
-
|
|
55
|
+
ComplianceUpdatedEmail = "pacitude.dev.compliance.updated.email",
|
|
32
56
|
EmailSent = "pacitude.dev.email.sent",
|
|
33
57
|
SMSSent = "pacitude.dev.sms.sent",
|
|
34
58
|
NotifyCreate = "pacitude.dev.notify.create",
|
|
@@ -4,12 +4,20 @@ exports.DEVExchanges = exports.STGSExchanges = exports.Exchanges = void 0;
|
|
|
4
4
|
// exchange enums
|
|
5
5
|
var Exchanges;
|
|
6
6
|
(function (Exchanges) {
|
|
7
|
+
Exchanges["UserCreated"] = "pacitude.prod.user.created";
|
|
8
|
+
Exchanges["UserUpdated"] = "pacitude.prod.user.updated";
|
|
9
|
+
Exchanges["UserDeleted"] = "pacitude.prod.user.deleted";
|
|
10
|
+
Exchanges["ComplianceUpdated"] = "pacitude.prod.compliance.updated";
|
|
11
|
+
Exchanges["NotificationCreated"] = "pacitude.prod.notification.created";
|
|
12
|
+
Exchanges["AuditCreated"] = "pacitude.prod.audit.created";
|
|
13
|
+
Exchanges["CountryFound"] = "pacitude.prod.country.found";
|
|
14
|
+
Exchanges["LocationSaved"] = "pacitude.prod.location.saved";
|
|
7
15
|
Exchanges["NotifyEmail"] = "pacitude.prod.notify.email";
|
|
8
16
|
Exchanges["NotifySMS"] = "pacitude.prod.notify.sms";
|
|
9
17
|
Exchanges["WelcomeEmail"] = "pacitude.prod.welcome.email";
|
|
10
18
|
Exchanges["SendOTPEmail"] = "pacitude.prod.send.otp.email";
|
|
11
19
|
Exchanges["SendOTPSMS"] = "pacitude.prod.send.otp.sms";
|
|
12
|
-
Exchanges["
|
|
20
|
+
Exchanges["ComplianceUpdatedEmail"] = "pacitude.prod.compliance.updated.email";
|
|
13
21
|
Exchanges["EmailSent"] = "pacitude.prod.email.sent";
|
|
14
22
|
Exchanges["SMSSent"] = "pacitude.prod.sms.sent";
|
|
15
23
|
Exchanges["NotifyCreate"] = "pacitude.prod.notify.create";
|
|
@@ -17,12 +25,20 @@ var Exchanges;
|
|
|
17
25
|
})(Exchanges = exports.Exchanges || (exports.Exchanges = {}));
|
|
18
26
|
var STGSExchanges;
|
|
19
27
|
(function (STGSExchanges) {
|
|
28
|
+
STGSExchanges["UserCreated"] = "pacitude.staging.user.created";
|
|
29
|
+
STGSExchanges["UserUpdated"] = "pacitude.staging.user.updated";
|
|
30
|
+
STGSExchanges["UserDeleted"] = "pacitude.staging.user.deleted";
|
|
31
|
+
STGSExchanges["ComplianceUpdated"] = "pacitude.staging.compliance.updated";
|
|
32
|
+
STGSExchanges["NotificationCreated"] = "pacitude.staging.notification.created";
|
|
33
|
+
STGSExchanges["AuditCreated"] = "pacitude.staging.audit.created";
|
|
34
|
+
STGSExchanges["CountryFound"] = "pacitude.staging.country.found";
|
|
35
|
+
STGSExchanges["LocationSaved"] = "pacitude.staging.location.saved";
|
|
20
36
|
STGSExchanges["NotifyEmail"] = "pacitude.staging.notify.email";
|
|
21
37
|
STGSExchanges["NotifySMS"] = "pacitude.staging.notify.sms";
|
|
22
38
|
STGSExchanges["WelcomeEmail"] = "pacitude.staging.welcome.email";
|
|
23
39
|
STGSExchanges["SendOTPEmail"] = "pacitude.staging.send.otp.email";
|
|
24
40
|
STGSExchanges["SendOTPSMS"] = "pacitude.staging.send.otp.sms";
|
|
25
|
-
STGSExchanges["
|
|
41
|
+
STGSExchanges["ComplianceUpdatedEmail"] = "pacitude.staging.compliance.updated.email";
|
|
26
42
|
STGSExchanges["EmailSent"] = "pacitude.staging.email.sent";
|
|
27
43
|
STGSExchanges["SMSSent"] = "pacitude.staging.sms.sent";
|
|
28
44
|
STGSExchanges["NotifyCreate"] = "pacitude.staging.notify.create";
|
|
@@ -30,12 +46,20 @@ var STGSExchanges;
|
|
|
30
46
|
})(STGSExchanges = exports.STGSExchanges || (exports.STGSExchanges = {}));
|
|
31
47
|
var DEVExchanges;
|
|
32
48
|
(function (DEVExchanges) {
|
|
49
|
+
DEVExchanges["UserCreated"] = "pacitude.dev.user.created";
|
|
50
|
+
DEVExchanges["UserUpdated"] = "pacitude.dev.user.updated";
|
|
51
|
+
DEVExchanges["UserDeleted"] = "pacitude.dev.user.deleted";
|
|
52
|
+
DEVExchanges["ComplianceUpdated"] = "pacitude.dev.compliance.updated";
|
|
53
|
+
DEVExchanges["NotificationCreated"] = "pacitude.dev.notification.created";
|
|
54
|
+
DEVExchanges["AuditCreated"] = "pacitude.dev.audit.created";
|
|
55
|
+
DEVExchanges["CountryFound"] = "pacitude.dev.country.found";
|
|
56
|
+
DEVExchanges["LocationSaved"] = "pacitude.dev.location.saved";
|
|
33
57
|
DEVExchanges["NotifyEmail"] = "pacitude.dev.notify.email";
|
|
34
58
|
DEVExchanges["NotifySMS"] = "pacitude.dev.notify.sms";
|
|
35
59
|
DEVExchanges["WelcomeEmail"] = "pacitude.dev.welcome.email";
|
|
36
60
|
DEVExchanges["SendOTPEmail"] = "pacitude.dev.send.otp.email";
|
|
37
61
|
DEVExchanges["SendOTPSMS"] = "pacitude.dev.send.otp.sms";
|
|
38
|
-
DEVExchanges["
|
|
62
|
+
DEVExchanges["ComplianceUpdatedEmail"] = "pacitude.dev.compliance.updated.email";
|
|
39
63
|
DEVExchanges["EmailSent"] = "pacitude.dev.email.sent";
|
|
40
64
|
DEVExchanges["SMSSent"] = "pacitude.dev.sms.sent";
|
|
41
65
|
DEVExchanges["NotifyCreate"] = "pacitude.dev.notify.create";
|