@abyss-project/main 1.0.21 → 1.0.22
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.
|
@@ -179,23 +179,23 @@ export declare const enTranslation: {
|
|
|
179
179
|
};
|
|
180
180
|
};
|
|
181
181
|
ABYSS_FORM: {
|
|
182
|
-
|
|
182
|
+
"form-submission-completed": {
|
|
183
183
|
title: string;
|
|
184
184
|
content: string;
|
|
185
185
|
};
|
|
186
|
-
|
|
186
|
+
"form-webhook-undeliverable": {
|
|
187
187
|
title: string;
|
|
188
188
|
content: string;
|
|
189
189
|
};
|
|
190
|
-
|
|
190
|
+
"form-webhook-undeliverable-disable": {
|
|
191
191
|
title: string;
|
|
192
192
|
content: string;
|
|
193
193
|
};
|
|
194
|
-
|
|
194
|
+
"form-daily-submission-limit-reached": {
|
|
195
195
|
title: string;
|
|
196
196
|
content: string;
|
|
197
197
|
};
|
|
198
|
-
|
|
198
|
+
"form-submission-limit-reached": {
|
|
199
199
|
title: string;
|
|
200
200
|
content: string;
|
|
201
201
|
};
|
|
@@ -179,23 +179,23 @@ export declare const frTranslation: {
|
|
|
179
179
|
};
|
|
180
180
|
};
|
|
181
181
|
ABYSS_FORM: {
|
|
182
|
-
|
|
182
|
+
"form-submission-completed": {
|
|
183
183
|
title: string;
|
|
184
184
|
content: string;
|
|
185
185
|
};
|
|
186
|
-
|
|
186
|
+
"form-webhook-undeliverable": {
|
|
187
187
|
title: string;
|
|
188
188
|
content: string;
|
|
189
189
|
};
|
|
190
|
-
|
|
190
|
+
"form-webhook-undeliverable-disable": {
|
|
191
191
|
title: string;
|
|
192
192
|
content: string;
|
|
193
193
|
};
|
|
194
|
-
|
|
194
|
+
"form-daily-submission-limit-reached": {
|
|
195
195
|
title: string;
|
|
196
196
|
content: string;
|
|
197
197
|
};
|
|
198
|
-
|
|
198
|
+
"form-submission-limit-reached": {
|
|
199
199
|
title: string;
|
|
200
200
|
content: string;
|
|
201
201
|
};
|
|
@@ -40,11 +40,11 @@ export declare enum UserNotificationContentType {
|
|
|
40
40
|
BANK_CONNECTION_EXPIRE = "bank-connection-expire",
|
|
41
41
|
BANK_CONNECTION_SUCCESS = "bank-connection-success",
|
|
42
42
|
SPOTLIGHT_PROJECT_NEW_POST = "spotlight-project-new-post",
|
|
43
|
-
FORM_SUBMISSION_COMPLETED = "
|
|
44
|
-
FORM_DAILY_SUBMISSION_LIMIT_REACHED = "
|
|
45
|
-
FORM_SUBMISSION_LIMIT_REACHED = "
|
|
46
|
-
FORM_WEBHOOK_UNDELIVERABLE = "
|
|
47
|
-
FORM_WEBHOOK_UNDELIVERABLE_DISABLE = "
|
|
43
|
+
FORM_SUBMISSION_COMPLETED = "form-submission-completed",
|
|
44
|
+
FORM_DAILY_SUBMISSION_LIMIT_REACHED = "form-daily-submission-limit-reached",
|
|
45
|
+
FORM_SUBMISSION_LIMIT_REACHED = "form-submission-limit-reached",
|
|
46
|
+
FORM_WEBHOOK_UNDELIVERABLE = "form-webhook-undeliverable",
|
|
47
|
+
FORM_WEBHOOK_UNDELIVERABLE_DISABLE = "form-webhook-undeliverable-disable"
|
|
48
48
|
}
|
|
49
49
|
export declare class UserNotificationContentTypeData implements Record<UserNotificationContentType, Record<string, string | null>> {
|
|
50
50
|
[UserNotificationContentType.USER_CREDIT_PURCHASE]: {
|
|
@@ -44,11 +44,11 @@ var UserNotificationContentType;
|
|
|
44
44
|
UserNotificationContentType["BANK_CONNECTION_EXPIRE"] = "bank-connection-expire";
|
|
45
45
|
UserNotificationContentType["BANK_CONNECTION_SUCCESS"] = "bank-connection-success";
|
|
46
46
|
UserNotificationContentType["SPOTLIGHT_PROJECT_NEW_POST"] = "spotlight-project-new-post";
|
|
47
|
-
UserNotificationContentType["FORM_SUBMISSION_COMPLETED"] = "
|
|
48
|
-
UserNotificationContentType["FORM_DAILY_SUBMISSION_LIMIT_REACHED"] = "
|
|
49
|
-
UserNotificationContentType["FORM_SUBMISSION_LIMIT_REACHED"] = "
|
|
50
|
-
UserNotificationContentType["FORM_WEBHOOK_UNDELIVERABLE"] = "
|
|
51
|
-
UserNotificationContentType["FORM_WEBHOOK_UNDELIVERABLE_DISABLE"] = "
|
|
47
|
+
UserNotificationContentType["FORM_SUBMISSION_COMPLETED"] = "form-submission-completed";
|
|
48
|
+
UserNotificationContentType["FORM_DAILY_SUBMISSION_LIMIT_REACHED"] = "form-daily-submission-limit-reached";
|
|
49
|
+
UserNotificationContentType["FORM_SUBMISSION_LIMIT_REACHED"] = "form-submission-limit-reached";
|
|
50
|
+
UserNotificationContentType["FORM_WEBHOOK_UNDELIVERABLE"] = "form-webhook-undeliverable";
|
|
51
|
+
UserNotificationContentType["FORM_WEBHOOK_UNDELIVERABLE_DISABLE"] = "form-webhook-undeliverable-disable";
|
|
52
52
|
})(UserNotificationContentType || (exports.UserNotificationContentType = UserNotificationContentType = {}));
|
|
53
53
|
class UserNotificationContentTypeData {
|
|
54
54
|
}
|