@abyss-project/main 1.0.41 → 1.0.43
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.
|
@@ -84,6 +84,7 @@ export declare enum AbyssApplicationEvent {
|
|
|
84
84
|
ABYSS_FORM_FORM_UPDATE = "abyss-form.form.update",
|
|
85
85
|
ABYSS_FORM_FORM_DELETE = "abyss-form.form.delete",
|
|
86
86
|
ABYSS_FORM_FORM_SUBMISSION_START = "abyss-form.form.submission.submit",
|
|
87
|
+
ABYSS_FORM_FORM_SUBMISSION_WEBHOOK_SEND = "abyss-form.form.submission.webhook.send",
|
|
87
88
|
ABYSS_FORM_FORM_SUBMISSION_ARCHIVE = "abyss-form.form.submission.archive",
|
|
88
89
|
ABYSS_FORM_FORM_SUBMISSION_COMPLETE = "abyss-form.form.submission.complete",
|
|
89
90
|
ABYSS_MEMORIES_GOOGLE_PLACE_DETAILS = "abyss-memories.google.place-details",
|
|
@@ -88,6 +88,7 @@ var AbyssApplicationEvent;
|
|
|
88
88
|
AbyssApplicationEvent["ABYSS_FORM_FORM_UPDATE"] = "abyss-form.form.update";
|
|
89
89
|
AbyssApplicationEvent["ABYSS_FORM_FORM_DELETE"] = "abyss-form.form.delete";
|
|
90
90
|
AbyssApplicationEvent["ABYSS_FORM_FORM_SUBMISSION_START"] = "abyss-form.form.submission.submit";
|
|
91
|
+
AbyssApplicationEvent["ABYSS_FORM_FORM_SUBMISSION_WEBHOOK_SEND"] = "abyss-form.form.submission.webhook.send";
|
|
91
92
|
AbyssApplicationEvent["ABYSS_FORM_FORM_SUBMISSION_ARCHIVE"] = "abyss-form.form.submission.archive";
|
|
92
93
|
AbyssApplicationEvent["ABYSS_FORM_FORM_SUBMISSION_COMPLETE"] = "abyss-form.form.submission.complete";
|
|
93
94
|
AbyssApplicationEvent["ABYSS_MEMORIES_GOOGLE_PLACE_DETAILS"] = "abyss-memories.google.place-details";
|
|
@@ -34,6 +34,8 @@ export declare enum UserNotificationContentType {
|
|
|
34
34
|
WEBHOOK_UNDELIVERABLE_DISABLE = "webhook-undeliverable-disable",
|
|
35
35
|
CRON_TASK_FAILED = "cron-task-failed",
|
|
36
36
|
CRON_TASK_DISABLED = "cron-task-disabled",
|
|
37
|
+
MONITOR_WEBHOOK_UNDELIVERABLE = "monitor-webhook-undeliverable",
|
|
38
|
+
MONITOR_WEBHOOK_UNDELIVERABLE_DISABLE = "monitor-webhook-undeliverable-disable",
|
|
37
39
|
INVITE_EVENT = "invite-event",
|
|
38
40
|
CHANGE_OWNER_EVENT = "change-owner-event",
|
|
39
41
|
CREATE_POLL_EVENT = "create-poll-event",
|
|
@@ -256,6 +258,24 @@ export declare class UserNotificationContentTypeData implements Record<UserNotif
|
|
|
256
258
|
applicationCronTaskHistoryId: string;
|
|
257
259
|
applicationCronTaskName: string;
|
|
258
260
|
};
|
|
261
|
+
[UserNotificationContentType.MONITOR_WEBHOOK_UNDELIVERABLE]: {
|
|
262
|
+
projectId: string;
|
|
263
|
+
applicationId: string;
|
|
264
|
+
webhookId: string;
|
|
265
|
+
applicationWebhookId: string;
|
|
266
|
+
applicationWebhookName: string;
|
|
267
|
+
groupId: string;
|
|
268
|
+
totalFailureInRow: string;
|
|
269
|
+
scope: string;
|
|
270
|
+
};
|
|
271
|
+
[UserNotificationContentType.MONITOR_WEBHOOK_UNDELIVERABLE_DISABLE]: {
|
|
272
|
+
projectId: string;
|
|
273
|
+
applicationId: string;
|
|
274
|
+
webhookId: string;
|
|
275
|
+
applicationWebhookId: string;
|
|
276
|
+
applicationWebhookName: string;
|
|
277
|
+
scope: string;
|
|
278
|
+
};
|
|
259
279
|
[UserNotificationContentType.INVITE_EVENT]: {
|
|
260
280
|
eventId: string;
|
|
261
281
|
eventName: string;
|
|
@@ -38,6 +38,8 @@ var UserNotificationContentType;
|
|
|
38
38
|
UserNotificationContentType["WEBHOOK_UNDELIVERABLE_DISABLE"] = "webhook-undeliverable-disable";
|
|
39
39
|
UserNotificationContentType["CRON_TASK_FAILED"] = "cron-task-failed";
|
|
40
40
|
UserNotificationContentType["CRON_TASK_DISABLED"] = "cron-task-disabled";
|
|
41
|
+
UserNotificationContentType["MONITOR_WEBHOOK_UNDELIVERABLE"] = "monitor-webhook-undeliverable";
|
|
42
|
+
UserNotificationContentType["MONITOR_WEBHOOK_UNDELIVERABLE_DISABLE"] = "monitor-webhook-undeliverable-disable";
|
|
41
43
|
UserNotificationContentType["INVITE_EVENT"] = "invite-event";
|
|
42
44
|
UserNotificationContentType["CHANGE_OWNER_EVENT"] = "change-owner-event";
|
|
43
45
|
UserNotificationContentType["CREATE_POLL_EVENT"] = "create-poll-event";
|
|
@@ -53,4 +55,4 @@ var UserNotificationContentType;
|
|
|
53
55
|
class UserNotificationContentTypeData {
|
|
54
56
|
}
|
|
55
57
|
exports.UserNotificationContentTypeData = UserNotificationContentTypeData;
|
|
56
|
-
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.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;
|
|
58
|
+
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.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;
|