@abyss-project/main 1.0.51 → 1.0.53
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/dist/translate/en.translate.d.ts +8 -0
- package/dist/translate/en.translate.js +8 -0
- package/dist/translate/fr.translate.d.ts +8 -0
- package/dist/translate/fr.translate.js +8 -0
- package/dist/types/enum/abyss-application-event.enum.d.ts +3 -0
- package/dist/types/enum/abyss-application-event.enum.js +3 -0
- package/dist/types/enum/user-notification-content-type.enum.d.ts +18 -0
- package/dist/types/enum/user-notification-content-type.enum.js +3 -1
- package/package.json +1 -1
|
@@ -155,10 +155,18 @@ export declare const enTranslation: {
|
|
|
155
155
|
title: string;
|
|
156
156
|
content: string;
|
|
157
157
|
};
|
|
158
|
+
"monitor-sentinel-check-success": {
|
|
159
|
+
title: string;
|
|
160
|
+
content: string;
|
|
161
|
+
};
|
|
158
162
|
"monitor-sentinel-check-failed": {
|
|
159
163
|
title: string;
|
|
160
164
|
content: string;
|
|
161
165
|
};
|
|
166
|
+
"monitor-sentinel-disable-on-failure": {
|
|
167
|
+
title: string;
|
|
168
|
+
content: string;
|
|
169
|
+
};
|
|
162
170
|
};
|
|
163
171
|
ABYSS_MEMORIES: {
|
|
164
172
|
"invite-event": {
|
|
@@ -159,10 +159,18 @@ exports.enTranslation = {
|
|
|
159
159
|
title: 'Webhook Disable',
|
|
160
160
|
content: 'Webhook {applicationWebhookName} has been disabled due to multiple errors',
|
|
161
161
|
},
|
|
162
|
+
[types_1.UserNotificationContentType.MONITOR_SENTINEL_CHECK_SUCCESS]: {
|
|
163
|
+
title: 'Sentinel Check Success',
|
|
164
|
+
content: 'The sentinel "{sentinelName}" has passed its check',
|
|
165
|
+
},
|
|
162
166
|
[types_1.UserNotificationContentType.MONITOR_SENTINEL_CHECK_FAILED]: {
|
|
163
167
|
title: 'Sentinel Check Failed',
|
|
164
168
|
content: 'The sentinel "{sentinelName}" has failed',
|
|
165
169
|
},
|
|
170
|
+
[types_1.UserNotificationContentType.MONITOR_SENTINEL_DISABLE_ON_FAILURE]: {
|
|
171
|
+
title: 'Sentinel Disabled',
|
|
172
|
+
content: 'The sentinel "{sentinelName}" has been disabled due to consecutive failures',
|
|
173
|
+
},
|
|
166
174
|
},
|
|
167
175
|
[types_1.AbyssService.ABYSS_MEMORIES]: {
|
|
168
176
|
[types_1.UserNotificationContentType.INVITE_EVENT]: {
|
|
@@ -155,10 +155,18 @@ export declare const frTranslation: {
|
|
|
155
155
|
title: string;
|
|
156
156
|
content: string;
|
|
157
157
|
};
|
|
158
|
+
"monitor-sentinel-check-success": {
|
|
159
|
+
title: string;
|
|
160
|
+
content: string;
|
|
161
|
+
};
|
|
158
162
|
"monitor-sentinel-check-failed": {
|
|
159
163
|
title: string;
|
|
160
164
|
content: string;
|
|
161
165
|
};
|
|
166
|
+
"monitor-sentinel-disable-on-failure": {
|
|
167
|
+
title: string;
|
|
168
|
+
content: string;
|
|
169
|
+
};
|
|
162
170
|
};
|
|
163
171
|
ABYSS_MEMORIES: {
|
|
164
172
|
"invite-event": {
|
|
@@ -159,10 +159,18 @@ exports.frTranslation = {
|
|
|
159
159
|
title: 'Désactivation du Webhook',
|
|
160
160
|
content: "Le Webhook {applicationWebhookName} a été désactivé pour cause d'erreurs multiples",
|
|
161
161
|
},
|
|
162
|
+
[types_1.UserNotificationContentType.MONITOR_SENTINEL_CHECK_SUCCESS]: {
|
|
163
|
+
title: 'Vérification de la Sentinelle réussie',
|
|
164
|
+
content: 'La sentinelle "{sentinelName}" a réussi sa vérification',
|
|
165
|
+
},
|
|
162
166
|
[types_1.UserNotificationContentType.MONITOR_SENTINEL_CHECK_FAILED]: {
|
|
163
167
|
title: 'Echec de vérification de la Sentinelle',
|
|
164
168
|
content: 'La sentinelle "{sentinelName}" à échoué',
|
|
165
169
|
},
|
|
170
|
+
[types_1.UserNotificationContentType.MONITOR_SENTINEL_DISABLE_ON_FAILURE]: {
|
|
171
|
+
title: 'Désactivation de la Sentinelle',
|
|
172
|
+
content: 'La sentinelle "{sentinelName}" a été désactivée pour cause d\'échecs consécutifs',
|
|
173
|
+
},
|
|
166
174
|
},
|
|
167
175
|
[types_1.AbyssService.ABYSS_MEMORIES]: {
|
|
168
176
|
[types_1.UserNotificationContentType.INVITE_EVENT]: {
|
|
@@ -26,6 +26,9 @@ export declare enum AbyssApplicationEvent {
|
|
|
26
26
|
ABYSS_STORAGE_STORAGE_ENCRYPT = "abyss-storage.storage.encrypt",
|
|
27
27
|
ABYSS_STORAGE_STORAGE_DECRYPT = "abyss-storage.storage.decrypt",
|
|
28
28
|
ABYSS_MONITOR_APPLICATION_WEBHOOK_SEND = "abyss-monitor.application-webhook.send",
|
|
29
|
+
ABYSS_MONITOR_APPLICATION_SENTINEL_CHECK_TCP = "abyss-monitor.application-sentinel.check.tcp",
|
|
30
|
+
ABYSS_MONITOR_APPLICATION_SENTINEL_CHECK_PING = "abyss-monitor.application-sentinel.check.ping",
|
|
31
|
+
ABYSS_MONITOR_APPLICATION_SENTINEL_CHECK_HTTP = "abyss-monitor.application-sentinel.check.http",
|
|
29
32
|
ABYSS_CLOUD_CLOUD_CREATE = "abyss-cloud.cloud.create",
|
|
30
33
|
ABYSS_CLOUD_CLOUD_DELETE = "abyss-cloud.cloud.delete",
|
|
31
34
|
ABYSS_CLOUD_CLOUD_SHARE_CREATE = "abyss-cloud.cloud-share.create",
|
|
@@ -30,6 +30,9 @@ var AbyssApplicationEvent;
|
|
|
30
30
|
AbyssApplicationEvent["ABYSS_STORAGE_STORAGE_ENCRYPT"] = "abyss-storage.storage.encrypt";
|
|
31
31
|
AbyssApplicationEvent["ABYSS_STORAGE_STORAGE_DECRYPT"] = "abyss-storage.storage.decrypt";
|
|
32
32
|
AbyssApplicationEvent["ABYSS_MONITOR_APPLICATION_WEBHOOK_SEND"] = "abyss-monitor.application-webhook.send";
|
|
33
|
+
AbyssApplicationEvent["ABYSS_MONITOR_APPLICATION_SENTINEL_CHECK_TCP"] = "abyss-monitor.application-sentinel.check.tcp";
|
|
34
|
+
AbyssApplicationEvent["ABYSS_MONITOR_APPLICATION_SENTINEL_CHECK_PING"] = "abyss-monitor.application-sentinel.check.ping";
|
|
35
|
+
AbyssApplicationEvent["ABYSS_MONITOR_APPLICATION_SENTINEL_CHECK_HTTP"] = "abyss-monitor.application-sentinel.check.http";
|
|
33
36
|
AbyssApplicationEvent["ABYSS_CLOUD_CLOUD_CREATE"] = "abyss-cloud.cloud.create";
|
|
34
37
|
AbyssApplicationEvent["ABYSS_CLOUD_CLOUD_DELETE"] = "abyss-cloud.cloud.delete";
|
|
35
38
|
AbyssApplicationEvent["ABYSS_CLOUD_CLOUD_SHARE_CREATE"] = "abyss-cloud.cloud-share.create";
|
|
@@ -36,7 +36,9 @@ export declare enum UserNotificationContentType {
|
|
|
36
36
|
CRON_TASK_DISABLED = "cron-task-disabled",
|
|
37
37
|
MONITOR_WEBHOOK_UNDELIVERABLE = "monitor-webhook-undeliverable",
|
|
38
38
|
MONITOR_WEBHOOK_UNDELIVERABLE_DISABLE = "monitor-webhook-undeliverable-disable",
|
|
39
|
+
MONITOR_SENTINEL_CHECK_SUCCESS = "monitor-sentinel-check-success",
|
|
39
40
|
MONITOR_SENTINEL_CHECK_FAILED = "monitor-sentinel-check-failed",
|
|
41
|
+
MONITOR_SENTINEL_DISABLE_ON_FAILURE = "monitor-sentinel-disable-on-failure",
|
|
40
42
|
INVITE_EVENT = "invite-event",
|
|
41
43
|
CHANGE_OWNER_EVENT = "change-owner-event",
|
|
42
44
|
CREATE_POLL_EVENT = "create-poll-event",
|
|
@@ -277,6 +279,14 @@ export declare class UserNotificationContentTypeData implements Record<UserNotif
|
|
|
277
279
|
applicationWebhookName: string;
|
|
278
280
|
scope: string;
|
|
279
281
|
};
|
|
282
|
+
[UserNotificationContentType.MONITOR_SENTINEL_CHECK_SUCCESS]: {
|
|
283
|
+
projectId: string;
|
|
284
|
+
applicationId: string;
|
|
285
|
+
sentinelHistoryId: string;
|
|
286
|
+
sentinelName: string;
|
|
287
|
+
sentinelId: string;
|
|
288
|
+
date: string;
|
|
289
|
+
};
|
|
280
290
|
[UserNotificationContentType.MONITOR_SENTINEL_CHECK_FAILED]: {
|
|
281
291
|
projectId: string;
|
|
282
292
|
applicationId: string;
|
|
@@ -285,6 +295,14 @@ export declare class UserNotificationContentTypeData implements Record<UserNotif
|
|
|
285
295
|
sentinelId: string;
|
|
286
296
|
date: string;
|
|
287
297
|
};
|
|
298
|
+
[UserNotificationContentType.MONITOR_SENTINEL_DISABLE_ON_FAILURE]: {
|
|
299
|
+
projectId: string;
|
|
300
|
+
applicationId: string;
|
|
301
|
+
sentinelHistoryId: string;
|
|
302
|
+
sentinelName: string;
|
|
303
|
+
sentinelId: string;
|
|
304
|
+
date: string;
|
|
305
|
+
};
|
|
288
306
|
[UserNotificationContentType.INVITE_EVENT]: {
|
|
289
307
|
eventId: string;
|
|
290
308
|
eventName: string;
|
|
@@ -40,7 +40,9 @@ var UserNotificationContentType;
|
|
|
40
40
|
UserNotificationContentType["CRON_TASK_DISABLED"] = "cron-task-disabled";
|
|
41
41
|
UserNotificationContentType["MONITOR_WEBHOOK_UNDELIVERABLE"] = "monitor-webhook-undeliverable";
|
|
42
42
|
UserNotificationContentType["MONITOR_WEBHOOK_UNDELIVERABLE_DISABLE"] = "monitor-webhook-undeliverable-disable";
|
|
43
|
+
UserNotificationContentType["MONITOR_SENTINEL_CHECK_SUCCESS"] = "monitor-sentinel-check-success";
|
|
43
44
|
UserNotificationContentType["MONITOR_SENTINEL_CHECK_FAILED"] = "monitor-sentinel-check-failed";
|
|
45
|
+
UserNotificationContentType["MONITOR_SENTINEL_DISABLE_ON_FAILURE"] = "monitor-sentinel-disable-on-failure";
|
|
44
46
|
UserNotificationContentType["INVITE_EVENT"] = "invite-event";
|
|
45
47
|
UserNotificationContentType["CHANGE_OWNER_EVENT"] = "change-owner-event";
|
|
46
48
|
UserNotificationContentType["CREATE_POLL_EVENT"] = "create-poll-event";
|
|
@@ -56,4 +58,4 @@ var UserNotificationContentType;
|
|
|
56
58
|
class UserNotificationContentTypeData {
|
|
57
59
|
}
|
|
58
60
|
exports.UserNotificationContentTypeData = UserNotificationContentTypeData;
|
|
59
|
-
UserNotificationContentType.USER_CREDIT_PURCHASE, UserNotificationContentType.USER_TICKET_RESPONSE, UserNotificationContentType.INVITE_USER_PROJECT, UserNotificationContentType.PROJECT_SET_OWNERSHIP, UserNotificationContentType.USER_SUBSCRIPTION_NO_FUNDS_AUTO_RENEW_DISABLED, UserNotificationContentType.USER_SUBSCRIPTION_AUTO_RENEW_ENABLED, UserNotificationContentType.USER_SUBSCRIPTION_AUTO_RENEW_DISABLED, UserNotificationContentType.PROJECT_SUBSCRIPTION_NO_FUNDS_AUTO_RENEW_DISABLED, UserNotificationContentType.PROJECT_SUBSCRIPTION_AUTO_RENEW_ENABLED, UserNotificationContentType.PROJECT_SUBSCRIPTION_AUTO_RENEW_DISABLED, UserNotificationContentType.USER_SUBSCRIPTION_EXPIRATION, UserNotificationContentType.PROJECT_SUBSCRIPTION_EXPIRATION, UserNotificationContentType.USER_SUBSCRIPTION_EXPIRATION_WITHOUT_AUTO_RENEW, UserNotificationContentType.PROJECT_SUBSCRIPTION_EXPIRATION_WITHOUT_AUTO_RENEW, UserNotificationContentType.USER_SUBSCRIPTION_RENEW_SUCCESS, UserNotificationContentType.PROJECT_SUBSCRIPTION_RENEW_SUCCESS, UserNotificationContentType.USER_SUBSCRIPTION_AUTO_RENEW_SUCCESS, UserNotificationContentType.PROJECT_SUBSCRIPTION_AUTO_RENEW_SUCCESS, UserNotificationContentType.USER_SUBSCRIPTION_CREATE, UserNotificationContentType.PROJECT_SUBSCRIPTION_CREATE, UserNotificationContentType.USER_SUBSCRIPTION_CREATE_WITHOUT_AUTO_RENEW, UserNotificationContentType.PROJECT_SUBSCRIPTION_CREATE_WITHOUT_AUTO_RENEW, UserNotificationContentType.CREATE_CLOUD_SHARE, UserNotificationContentType.DELETE_CLOUD_SHARE, UserNotificationContentType.CREATE_CLOUD, UserNotificationContentType.DELETE_CLOUD, UserNotificationContentType.ADMIN_CREATE_CLOUD, UserNotificationContentType.ADMIN_DELETE_CLOUD, UserNotificationContentType.JOIN_CLOUD_SHARE, UserNotificationContentType.DECLINE_CLOUD_SHARE, UserNotificationContentType.LEAVE_CLOUD_SHARE, UserNotificationContentType.WEBHOOK_UNDELIVERABLE, UserNotificationContentType.WEBHOOK_UNDELIVERABLE_DISABLE, UserNotificationContentType.CRON_TASK_FAILED, UserNotificationContentType.CRON_TASK_DISABLED, UserNotificationContentType.MONITOR_WEBHOOK_UNDELIVERABLE, UserNotificationContentType.MONITOR_WEBHOOK_UNDELIVERABLE_DISABLE, UserNotificationContentType.MONITOR_SENTINEL_CHECK_FAILED, UserNotificationContentType.INVITE_EVENT, UserNotificationContentType.CHANGE_OWNER_EVENT, UserNotificationContentType.CREATE_POLL_EVENT, UserNotificationContentType.BANK_CONNECTION_SUCCESS, UserNotificationContentType.BANK_CONNECTION_EXPIRE, UserNotificationContentType.SPOTLIGHT_PROJECT_NEW_POST, UserNotificationContentType.FORM_SUBMISSION_COMPLETED, UserNotificationContentType.FORM_WEBHOOK_UNDELIVERABLE, UserNotificationContentType.FORM_WEBHOOK_UNDELIVERABLE_DISABLE, UserNotificationContentType.FORM_DAILY_SUBMISSION_LIMIT_REACHED, UserNotificationContentType.FORM_SUBMISSION_LIMIT_REACHED;
|
|
61
|
+
UserNotificationContentType.USER_CREDIT_PURCHASE, UserNotificationContentType.USER_TICKET_RESPONSE, UserNotificationContentType.INVITE_USER_PROJECT, UserNotificationContentType.PROJECT_SET_OWNERSHIP, UserNotificationContentType.USER_SUBSCRIPTION_NO_FUNDS_AUTO_RENEW_DISABLED, UserNotificationContentType.USER_SUBSCRIPTION_AUTO_RENEW_ENABLED, UserNotificationContentType.USER_SUBSCRIPTION_AUTO_RENEW_DISABLED, UserNotificationContentType.PROJECT_SUBSCRIPTION_NO_FUNDS_AUTO_RENEW_DISABLED, UserNotificationContentType.PROJECT_SUBSCRIPTION_AUTO_RENEW_ENABLED, UserNotificationContentType.PROJECT_SUBSCRIPTION_AUTO_RENEW_DISABLED, UserNotificationContentType.USER_SUBSCRIPTION_EXPIRATION, UserNotificationContentType.PROJECT_SUBSCRIPTION_EXPIRATION, UserNotificationContentType.USER_SUBSCRIPTION_EXPIRATION_WITHOUT_AUTO_RENEW, UserNotificationContentType.PROJECT_SUBSCRIPTION_EXPIRATION_WITHOUT_AUTO_RENEW, UserNotificationContentType.USER_SUBSCRIPTION_RENEW_SUCCESS, UserNotificationContentType.PROJECT_SUBSCRIPTION_RENEW_SUCCESS, UserNotificationContentType.USER_SUBSCRIPTION_AUTO_RENEW_SUCCESS, UserNotificationContentType.PROJECT_SUBSCRIPTION_AUTO_RENEW_SUCCESS, UserNotificationContentType.USER_SUBSCRIPTION_CREATE, UserNotificationContentType.PROJECT_SUBSCRIPTION_CREATE, UserNotificationContentType.USER_SUBSCRIPTION_CREATE_WITHOUT_AUTO_RENEW, UserNotificationContentType.PROJECT_SUBSCRIPTION_CREATE_WITHOUT_AUTO_RENEW, UserNotificationContentType.CREATE_CLOUD_SHARE, UserNotificationContentType.DELETE_CLOUD_SHARE, UserNotificationContentType.CREATE_CLOUD, UserNotificationContentType.DELETE_CLOUD, UserNotificationContentType.ADMIN_CREATE_CLOUD, UserNotificationContentType.ADMIN_DELETE_CLOUD, UserNotificationContentType.JOIN_CLOUD_SHARE, UserNotificationContentType.DECLINE_CLOUD_SHARE, UserNotificationContentType.LEAVE_CLOUD_SHARE, UserNotificationContentType.WEBHOOK_UNDELIVERABLE, UserNotificationContentType.WEBHOOK_UNDELIVERABLE_DISABLE, UserNotificationContentType.CRON_TASK_FAILED, UserNotificationContentType.CRON_TASK_DISABLED, UserNotificationContentType.MONITOR_WEBHOOK_UNDELIVERABLE, UserNotificationContentType.MONITOR_WEBHOOK_UNDELIVERABLE_DISABLE, UserNotificationContentType.MONITOR_SENTINEL_CHECK_SUCCESS, UserNotificationContentType.MONITOR_SENTINEL_CHECK_FAILED, UserNotificationContentType.MONITOR_SENTINEL_DISABLE_ON_FAILURE, UserNotificationContentType.INVITE_EVENT, UserNotificationContentType.CHANGE_OWNER_EVENT, UserNotificationContentType.CREATE_POLL_EVENT, UserNotificationContentType.BANK_CONNECTION_SUCCESS, UserNotificationContentType.BANK_CONNECTION_EXPIRE, UserNotificationContentType.SPOTLIGHT_PROJECT_NEW_POST, UserNotificationContentType.FORM_SUBMISSION_COMPLETED, UserNotificationContentType.FORM_WEBHOOK_UNDELIVERABLE, UserNotificationContentType.FORM_WEBHOOK_UNDELIVERABLE_DISABLE, UserNotificationContentType.FORM_DAILY_SUBMISSION_LIMIT_REACHED, UserNotificationContentType.FORM_SUBMISSION_LIMIT_REACHED;
|