@randock/nameshift-api-client 0.0.320 → 0.0.322

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.
@@ -312,10 +312,12 @@ src/models/UpdateLeadInput.ts
312
312
  src/models/UpdateOrderInput.ts
313
313
  src/models/UpdateSubscriptionBillingPeriodicityInput.ts
314
314
  src/models/UpdateSubscriptionInput.ts
315
+ src/models/UpdateUserNotificationSettingsInput.ts
315
316
  src/models/UsBankAccountDetails.ts
316
317
  src/models/UserNotificationAttachmentDto.ts
317
318
  src/models/UserNotificationDto.ts
318
319
  src/models/UserNotificationListItemDto.ts
320
+ src/models/UserNotificationSettingsDto.ts
319
321
  src/models/UserPasswordResetDto.ts
320
322
  src/models/ValidateTaxNumberDto.ts
321
323
  src/models/ValidateTaxNumberInput.ts
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.320
1
+ ## @randock/nameshift-api-client@0.0.322
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @randock/nameshift-api-client@0.0.320 --save
39
+ npm install @randock/nameshift-api-client@0.0.322 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
- a62938d7e499c30bf58e7d5a412fcf20c652a77fa99aadd255372653df6b4bc183c60071d929eb7df5845771f6b5b6d7
47
+ 2bd903ac14c90d2888f8006cb3ead3c9605789590f006405ef0d860b1ea87f2b3585895738c3f56dc3bdd751de55526f
@@ -10,14 +10,25 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import type { StoreUserLocaleInput } from '../models/index';
13
+ import type { StoreUserLocaleInput, UpdateUserNotificationSettingsInput, UserNotificationSettingsDto } from '../models/index';
14
14
  export interface UsersApiSetLocaleRequest {
15
15
  storeUserLocaleInput: StoreUserLocaleInput;
16
16
  }
17
+ export interface UsersApiUpdateUserNotificationSettingsRequest {
18
+ updateUserNotificationSettingsInput: UpdateUserNotificationSettingsInput;
19
+ }
17
20
  /**
18
21
  *
19
22
  */
20
23
  export declare class UsersApi extends runtime.BaseAPI {
24
+ /**
25
+ *
26
+ */
27
+ getUserNotificationSettingsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserNotificationSettingsDto>>;
28
+ /**
29
+ *
30
+ */
31
+ getUserNotificationSettings(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserNotificationSettingsDto>;
21
32
  /**
22
33
  *
23
34
  */
@@ -26,4 +37,12 @@ export declare class UsersApi extends runtime.BaseAPI {
26
37
  *
27
38
  */
28
39
  setLocale(requestParameters: UsersApiSetLocaleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
40
+ /**
41
+ *
42
+ */
43
+ updateUserNotificationSettingsRaw(requestParameters: UsersApiUpdateUserNotificationSettingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
44
+ /**
45
+ *
46
+ */
47
+ updateUserNotificationSettings(requestParameters: UsersApiUpdateUserNotificationSettingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
29
48
  }
@@ -75,6 +75,56 @@ var UsersApi = /** @class */ (function (_super) {
75
75
  function UsersApi() {
76
76
  return _super !== null && _super.apply(this, arguments) || this;
77
77
  }
78
+ /**
79
+ *
80
+ */
81
+ UsersApi.prototype.getUserNotificationSettingsRaw = function (initOverrides) {
82
+ return __awaiter(this, void 0, void 0, function () {
83
+ var queryParameters, headerParameters, token, tokenString, response;
84
+ return __generator(this, function (_a) {
85
+ switch (_a.label) {
86
+ case 0:
87
+ queryParameters = {};
88
+ headerParameters = {};
89
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
90
+ token = this.configuration.accessToken;
91
+ return [4 /*yield*/, token("bearer", [])];
92
+ case 1:
93
+ tokenString = _a.sent();
94
+ if (tokenString) {
95
+ headerParameters["Authorization"] = "Bearer ".concat(tokenString);
96
+ }
97
+ _a.label = 2;
98
+ case 2: return [4 /*yield*/, this.request({
99
+ path: "/private/users/notification-settings",
100
+ method: 'GET',
101
+ headers: headerParameters,
102
+ query: queryParameters,
103
+ }, initOverrides)];
104
+ case 3:
105
+ response = _a.sent();
106
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.UserNotificationSettingsDtoFromJSON)(jsonValue); })];
107
+ }
108
+ });
109
+ });
110
+ };
111
+ /**
112
+ *
113
+ */
114
+ UsersApi.prototype.getUserNotificationSettings = function (initOverrides) {
115
+ return __awaiter(this, void 0, void 0, function () {
116
+ var response;
117
+ return __generator(this, function (_a) {
118
+ switch (_a.label) {
119
+ case 0: return [4 /*yield*/, this.getUserNotificationSettingsRaw(initOverrides)];
120
+ case 1:
121
+ response = _a.sent();
122
+ return [4 /*yield*/, response.value()];
123
+ case 2: return [2 /*return*/, _a.sent()];
124
+ }
125
+ });
126
+ });
127
+ };
78
128
  /**
79
129
  *
80
130
  */
@@ -128,6 +178,59 @@ var UsersApi = /** @class */ (function (_super) {
128
178
  });
129
179
  });
130
180
  };
181
+ /**
182
+ *
183
+ */
184
+ UsersApi.prototype.updateUserNotificationSettingsRaw = function (requestParameters, initOverrides) {
185
+ return __awaiter(this, void 0, void 0, function () {
186
+ var queryParameters, headerParameters, token, tokenString, response;
187
+ return __generator(this, function (_a) {
188
+ switch (_a.label) {
189
+ case 0:
190
+ if (requestParameters['updateUserNotificationSettingsInput'] == null) {
191
+ throw new runtime.RequiredError('updateUserNotificationSettingsInput', 'Required parameter "updateUserNotificationSettingsInput" was null or undefined when calling updateUserNotificationSettings().');
192
+ }
193
+ queryParameters = {};
194
+ headerParameters = {};
195
+ headerParameters['Content-Type'] = 'application/json';
196
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
197
+ token = this.configuration.accessToken;
198
+ return [4 /*yield*/, token("bearer", [])];
199
+ case 1:
200
+ tokenString = _a.sent();
201
+ if (tokenString) {
202
+ headerParameters["Authorization"] = "Bearer ".concat(tokenString);
203
+ }
204
+ _a.label = 2;
205
+ case 2: return [4 /*yield*/, this.request({
206
+ path: "/private/users/notification-settings",
207
+ method: 'PATCH',
208
+ headers: headerParameters,
209
+ query: queryParameters,
210
+ body: (0, index_1.UpdateUserNotificationSettingsInputToJSON)(requestParameters['updateUserNotificationSettingsInput']),
211
+ }, initOverrides)];
212
+ case 3:
213
+ response = _a.sent();
214
+ return [2 /*return*/, new runtime.VoidApiResponse(response)];
215
+ }
216
+ });
217
+ });
218
+ };
219
+ /**
220
+ *
221
+ */
222
+ UsersApi.prototype.updateUserNotificationSettings = function (requestParameters, initOverrides) {
223
+ return __awaiter(this, void 0, void 0, function () {
224
+ return __generator(this, function (_a) {
225
+ switch (_a.label) {
226
+ case 0: return [4 /*yield*/, this.updateUserNotificationSettingsRaw(requestParameters, initOverrides)];
227
+ case 1:
228
+ _a.sent();
229
+ return [2 /*return*/];
230
+ }
231
+ });
232
+ });
233
+ };
131
234
  return UsersApi;
132
235
  }(runtime.BaseAPI));
133
236
  exports.UsersApi = UsersApi;
@@ -0,0 +1,76 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface UpdateUserNotificationSettingsInput
16
+ */
17
+ export interface UpdateUserNotificationSettingsInput {
18
+ /**
19
+ * Enable notifications for domain sold events
20
+ * @type {boolean}
21
+ * @memberof UpdateUserNotificationSettingsInput
22
+ */
23
+ domainSold?: boolean;
24
+ /**
25
+ * Enable notifications for domain transfer completed events
26
+ * @type {boolean}
27
+ * @memberof UpdateUserNotificationSettingsInput
28
+ */
29
+ domainTransferCompleted?: boolean;
30
+ /**
31
+ * Enable notifications for lead closed events
32
+ * @type {boolean}
33
+ * @memberof UpdateUserNotificationSettingsInput
34
+ */
35
+ leadClosed?: boolean;
36
+ /**
37
+ * Enable notifications for invoice events
38
+ * @type {boolean}
39
+ * @memberof UpdateUserNotificationSettingsInput
40
+ */
41
+ invoices?: boolean;
42
+ /**
43
+ * Enable notifications for payout events
44
+ * @type {boolean}
45
+ * @memberof UpdateUserNotificationSettingsInput
46
+ */
47
+ payouts?: boolean;
48
+ /**
49
+ * Frequency in minutes for lead message notifications
50
+ * @type {number}
51
+ * @memberof UpdateUserNotificationSettingsInput
52
+ */
53
+ leadMessagesFrequencyInMinutes?: number;
54
+ /**
55
+ * Frequency for task reminder notifications
56
+ * @type {string}
57
+ * @memberof UpdateUserNotificationSettingsInput
58
+ */
59
+ tasksFrequency?: UpdateUserNotificationSettingsInputTasksFrequencyEnum;
60
+ }
61
+ /**
62
+ * @export
63
+ */
64
+ export declare const UpdateUserNotificationSettingsInputTasksFrequencyEnum: {
65
+ readonly DAILY: "daily";
66
+ readonly TASK_SCHEDULE: "task_schedule";
67
+ };
68
+ export type UpdateUserNotificationSettingsInputTasksFrequencyEnum = typeof UpdateUserNotificationSettingsInputTasksFrequencyEnum[keyof typeof UpdateUserNotificationSettingsInputTasksFrequencyEnum];
69
+ /**
70
+ * Check if a given object implements the UpdateUserNotificationSettingsInput interface.
71
+ */
72
+ export declare function instanceOfUpdateUserNotificationSettingsInput(value: object): value is UpdateUserNotificationSettingsInput;
73
+ export declare function UpdateUserNotificationSettingsInputFromJSON(json: any): UpdateUserNotificationSettingsInput;
74
+ export declare function UpdateUserNotificationSettingsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserNotificationSettingsInput;
75
+ export declare function UpdateUserNotificationSettingsInputToJSON(json: any): UpdateUserNotificationSettingsInput;
76
+ export declare function UpdateUserNotificationSettingsInputToJSONTyped(value?: UpdateUserNotificationSettingsInput | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UpdateUserNotificationSettingsInputTasksFrequencyEnum = void 0;
17
+ exports.instanceOfUpdateUserNotificationSettingsInput = instanceOfUpdateUserNotificationSettingsInput;
18
+ exports.UpdateUserNotificationSettingsInputFromJSON = UpdateUserNotificationSettingsInputFromJSON;
19
+ exports.UpdateUserNotificationSettingsInputFromJSONTyped = UpdateUserNotificationSettingsInputFromJSONTyped;
20
+ exports.UpdateUserNotificationSettingsInputToJSON = UpdateUserNotificationSettingsInputToJSON;
21
+ exports.UpdateUserNotificationSettingsInputToJSONTyped = UpdateUserNotificationSettingsInputToJSONTyped;
22
+ /**
23
+ * @export
24
+ */
25
+ exports.UpdateUserNotificationSettingsInputTasksFrequencyEnum = {
26
+ DAILY: 'daily',
27
+ TASK_SCHEDULE: 'task_schedule'
28
+ };
29
+ /**
30
+ * Check if a given object implements the UpdateUserNotificationSettingsInput interface.
31
+ */
32
+ function instanceOfUpdateUserNotificationSettingsInput(value) {
33
+ return true;
34
+ }
35
+ function UpdateUserNotificationSettingsInputFromJSON(json) {
36
+ return UpdateUserNotificationSettingsInputFromJSONTyped(json, false);
37
+ }
38
+ function UpdateUserNotificationSettingsInputFromJSONTyped(json, ignoreDiscriminator) {
39
+ if (json == null) {
40
+ return json;
41
+ }
42
+ return {
43
+ 'domainSold': json['domainSold'] == null ? undefined : json['domainSold'],
44
+ 'domainTransferCompleted': json['domainTransferCompleted'] == null ? undefined : json['domainTransferCompleted'],
45
+ 'leadClosed': json['leadClosed'] == null ? undefined : json['leadClosed'],
46
+ 'invoices': json['invoices'] == null ? undefined : json['invoices'],
47
+ 'payouts': json['payouts'] == null ? undefined : json['payouts'],
48
+ 'leadMessagesFrequencyInMinutes': json['leadMessagesFrequencyInMinutes'] == null ? undefined : json['leadMessagesFrequencyInMinutes'],
49
+ 'tasksFrequency': json['tasksFrequency'] == null ? undefined : json['tasksFrequency'],
50
+ };
51
+ }
52
+ function UpdateUserNotificationSettingsInputToJSON(json) {
53
+ return UpdateUserNotificationSettingsInputToJSONTyped(json, false);
54
+ }
55
+ function UpdateUserNotificationSettingsInputToJSONTyped(value, ignoreDiscriminator) {
56
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
57
+ if (value == null) {
58
+ return value;
59
+ }
60
+ return {
61
+ 'domainSold': value['domainSold'],
62
+ 'domainTransferCompleted': value['domainTransferCompleted'],
63
+ 'leadClosed': value['leadClosed'],
64
+ 'invoices': value['invoices'],
65
+ 'payouts': value['payouts'],
66
+ 'leadMessagesFrequencyInMinutes': value['leadMessagesFrequencyInMinutes'],
67
+ 'tasksFrequency': value['tasksFrequency'],
68
+ };
69
+ }
@@ -68,24 +68,18 @@ export declare const UserNotificationDtoTypeEnum: {
68
68
  readonly ACCOUNT_ONBOARDING_FINISHED: "account_onboarding_finished";
69
69
  readonly ACCOUNT_ONBOARDING_REJECTED: "account_onboarding_rejected";
70
70
  readonly BUYER_ACCESS_TOKEN: "buyer_access_token";
71
- readonly PURCHASES_ARE_CLOSED_DUE_DOMAINS_IS_SOLD_OR_DELETED: "purchases_are_closed_due_domains_is_sold_or_deleted";
72
- readonly DOMAIN_OWNER_CHANGED: "domain_owner_changed";
73
- readonly DOMAIN_SOLD_SELLER_NOTIFICATION: "domain_sold_seller_notification";
74
- readonly DOMAIN_SOLD_BY_LEASE_TO_OWN_SELLER_NOTIFICATION: "domain_sold_by_lease_to_own_seller_notification";
75
- readonly DOMAIN_SOLD_BY_RENT_SELLER_NOTIFICATION: "domain_sold_by_rent_seller_notification";
76
- readonly DOMAIN_TRANSFER_VALIDATION_AUTO_CONFIRMED_EMAIL: "domain_transfer_validation_auto_confirmed_email";
77
- readonly DOMAIN_TRANSFER_VALIDATION_REQUIRED_BY_BUYER_EMAIL: "domain_transfer_validation_required_by_buyer_email";
78
- readonly DOMAIN_TRANSFER_COMPLETED_FOR_SELLER: "domain_transfer.completed_for_seller";
79
71
  readonly DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER: "domain_transfer.request_auth_code_to_seller";
72
+ readonly DOMAIN_TRANSFER_VALIDATION_REQUIRED_BY_BUYER_EMAIL: "domain_transfer_validation_required_by_buyer_email";
73
+ readonly DOMAIN_TRANSFER_VALIDATION_AUTO_CONFIRMED_EMAIL: "domain_transfer_validation_auto_confirmed_email";
80
74
  readonly DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER_REMINDER: "domain_transfer.request_auth_code_to_seller.reminder";
81
75
  readonly DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER_AUTH_CODE_INVALID: "domain_transfer.request_auth_code_to_seller_auth_code_invalid";
82
76
  readonly DOMAIN_TRANSFER_DOMAIN_TRANSFER_REQUIRES_UNLOCK_DOMAIN: "domain_transfer.domain_transfer_requires_unlock_domain";
83
77
  readonly DOMAIN_TRANSFER_NOTIFY_BUYER_TO_INITIALIZE_TRANSFER: "domain_transfer.notify_buyer_to_initialize_transfer";
84
78
  readonly DOMAIN_TRANSFER_NOTIFY_SELLER_TO_INITIALIZE_TRANSFER: "domain_transfer.notify_seller_to_initialize_transfer";
85
- readonly DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: "domain_transfer.recreate_domain_in_seller_account_error";
86
79
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER: "domain_transfer.send_ips_tag_instructions_to_seller";
87
80
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: "domain_transfer.send_ips_tag_instructions_to_seller_reminder";
88
81
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: "domain_transfer.send_ips_tag_instructions_to_buyer";
82
+ readonly DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: "domain_transfer.recreate_domain_in_seller_account_error";
89
83
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: "domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller";
90
84
  readonly DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: "domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller";
91
85
  readonly DOMAIN_TRANSFER_LEASE_TO_OWN_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: "domain_transfer.lease_to_own_subscription_send_owned_domain_auth_code_to_seller";
@@ -93,12 +87,8 @@ export declare const UserNotificationDtoTypeEnum: {
93
87
  readonly DOMAIN_TRANSFER_SEND_AUTH_CODE_TO_BUYER_WITH_HOLDERCHANGE_SE_NU_FILE: "domain_transfer.send_auth_code_to_buyer_with_holderchange_se_nu_file";
94
88
  readonly REQUEST_IPS_TAG_TO_BUYER_IPS_TAG_INVALID: "request_ips_tag_to_buyer_ips_tag_invalid";
95
89
  readonly REQUEST_IPS_TAG_TO_SELLER_IPS_TAG_INVALID: "request_ips_tag_to_seller_ips_tag_invalid";
96
- readonly LEAD_CLOSED_SELLER: "lead.closed.seller";
97
- readonly LEAD_CLOSED_BUYER: "lead.closed.buyer";
98
- readonly ORDER_HAS_BEEN_PAID: "order_has_been_paid";
99
90
  readonly EXPORT_COMPLETED: "export_completed";
100
91
  readonly DOMAIN_IMPORT_FINISHED: "domain_import_finished";
101
- readonly SELLER_PAYOUT_WAS_PAID: "seller_payout_was_paid";
102
92
  readonly DOMAIN_OFFER_VERIFIED_BUYER_ACCESS_LINK_EMAIL: "domain_offer_verified_buyer_access_link_email";
103
93
  readonly DOMAIN_OFFER_ACCEPTED_CONTINUE_ORDER_EMAIL: "domain_offer_accepted_continue_order_email";
104
94
  readonly DOMAIN_OFFER_ACCEPTED_CONTINUE_LEASE_TO_OWN_EMAIL: "domain_offer_accepted_continue_lease_to_own_email";
@@ -116,18 +106,29 @@ export declare const UserNotificationDtoTypeEnum: {
116
106
  readonly RENT_SUBSCRIPTION_HAS_BEEN_ACTIVATED_FOR_FIRST_TIME: "rent_subscription_has_been_activated_for_first_time";
117
107
  readonly PASSWORD_RESET: "password_reset";
118
108
  readonly BUYER_INVOICE: "buyer_invoice";
119
- readonly BUYER_LEASE_TO_OWN_INSTALLMENT_INVOICE: "buyer_lease_to_own_installment_invoice";
120
109
  readonly BUYER_RENT_INSTALLMENT_INVOICE: "buyer_rent_installment_invoice";
110
+ readonly BUYER_LEASE_TO_OWN_INSTALLMENT_INVOICE: "buyer_lease_to_own_installment_invoice";
111
+ readonly EPP_BATCH_UPDATE_DOMAINS_RESULTS: "epp.batch.update.domains.results";
112
+ readonly ORDER_HAS_BEEN_PAID: "order_has_been_paid";
113
+ readonly PURCHASES_ARE_CLOSED_DUE_DOMAINS_IS_SOLD_OR_DELETED: "purchases_are_closed_due_domains_is_sold_or_deleted";
114
+ readonly DOMAIN_OWNER_CHANGED: "domain_owner_changed";
115
+ readonly LEAD_CLOSED_BUYER: "lead.closed.buyer";
116
+ readonly DOMAIN_SOLD_SELLER_NOTIFICATION: "domain_sold_seller_notification";
117
+ readonly DOMAIN_SOLD_BY_LEASE_TO_OWN_SELLER_NOTIFICATION: "domain_sold_by_lease_to_own_seller_notification";
118
+ readonly DOMAIN_SOLD_BY_RENT_SELLER_NOTIFICATION: "domain_sold_by_rent_seller_notification";
119
+ readonly DOMAIN_TRANSFER_COMPLETED_FOR_SELLER: "domain_transfer.completed_for_seller";
120
+ readonly LEAD_CLOSED_SELLER: "lead.closed.seller";
121
+ readonly SELLER_PAYOUT_WAS_PAID: "seller_payout_was_paid";
121
122
  readonly SELLER_INVOICE: "seller_invoice";
122
123
  readonly SELLER_LEASE_TO_OWN_INSTALLMENT_INVOICE: "seller_lease_to_own_installment_invoice";
123
124
  readonly SELLER_RENT_INSTALLMENT_INVOICE: "seller_rent_installment_invoice";
124
125
  readonly AFFILIATE_COMMISSIONS_INVOICE: "affiliate_commissions_invoice";
125
- readonly EPP_BATCH_UPDATE_DOMAINS_RESULTS: "epp.batch.update.domains.results";
126
126
  readonly LEAD_MESSAGE_OFFER: "lead_message.offer";
127
127
  readonly LEAD_MESSAGE_OFFER_ACCEPTED: "lead_message.offer_accepted";
128
128
  readonly LEAD_MESSAGE_OFFER_WITHDRAWN: "lead_message.offer_withdrawn";
129
129
  readonly LEAD_MESSAGE_OFFER_REJECTED: "lead_message.offer_rejected";
130
130
  readonly LEAD_MESSAGE_MESSAGE: "lead_message.message";
131
+ readonly LEAD_MESSAGE_BATCH: "lead_message.batch";
131
132
  readonly TASKS_REMINDER_LEAD: "tasks.reminder.lead";
132
133
  readonly TASKS_REMINDER_DOMAIN_TRANSFER: "tasks.reminder.domain_transfer";
133
134
  readonly TASKS_REMINDER_ORDER: "tasks.reminder.order";
@@ -29,24 +29,18 @@ exports.UserNotificationDtoTypeEnum = {
29
29
  ACCOUNT_ONBOARDING_FINISHED: 'account_onboarding_finished',
30
30
  ACCOUNT_ONBOARDING_REJECTED: 'account_onboarding_rejected',
31
31
  BUYER_ACCESS_TOKEN: 'buyer_access_token',
32
- PURCHASES_ARE_CLOSED_DUE_DOMAINS_IS_SOLD_OR_DELETED: 'purchases_are_closed_due_domains_is_sold_or_deleted',
33
- DOMAIN_OWNER_CHANGED: 'domain_owner_changed',
34
- DOMAIN_SOLD_SELLER_NOTIFICATION: 'domain_sold_seller_notification',
35
- DOMAIN_SOLD_BY_LEASE_TO_OWN_SELLER_NOTIFICATION: 'domain_sold_by_lease_to_own_seller_notification',
36
- DOMAIN_SOLD_BY_RENT_SELLER_NOTIFICATION: 'domain_sold_by_rent_seller_notification',
37
- DOMAIN_TRANSFER_VALIDATION_AUTO_CONFIRMED_EMAIL: 'domain_transfer_validation_auto_confirmed_email',
38
- DOMAIN_TRANSFER_VALIDATION_REQUIRED_BY_BUYER_EMAIL: 'domain_transfer_validation_required_by_buyer_email',
39
- DOMAIN_TRANSFER_COMPLETED_FOR_SELLER: 'domain_transfer.completed_for_seller',
40
32
  DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER: 'domain_transfer.request_auth_code_to_seller',
33
+ DOMAIN_TRANSFER_VALIDATION_REQUIRED_BY_BUYER_EMAIL: 'domain_transfer_validation_required_by_buyer_email',
34
+ DOMAIN_TRANSFER_VALIDATION_AUTO_CONFIRMED_EMAIL: 'domain_transfer_validation_auto_confirmed_email',
41
35
  DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER_REMINDER: 'domain_transfer.request_auth_code_to_seller.reminder',
42
36
  DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER_AUTH_CODE_INVALID: 'domain_transfer.request_auth_code_to_seller_auth_code_invalid',
43
37
  DOMAIN_TRANSFER_DOMAIN_TRANSFER_REQUIRES_UNLOCK_DOMAIN: 'domain_transfer.domain_transfer_requires_unlock_domain',
44
38
  DOMAIN_TRANSFER_NOTIFY_BUYER_TO_INITIALIZE_TRANSFER: 'domain_transfer.notify_buyer_to_initialize_transfer',
45
39
  DOMAIN_TRANSFER_NOTIFY_SELLER_TO_INITIALIZE_TRANSFER: 'domain_transfer.notify_seller_to_initialize_transfer',
46
- DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
47
40
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_seller',
48
41
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
49
42
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
43
+ DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
50
44
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
51
45
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
52
46
  DOMAIN_TRANSFER_LEASE_TO_OWN_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.lease_to_own_subscription_send_owned_domain_auth_code_to_seller',
@@ -54,12 +48,8 @@ exports.UserNotificationDtoTypeEnum = {
54
48
  DOMAIN_TRANSFER_SEND_AUTH_CODE_TO_BUYER_WITH_HOLDERCHANGE_SE_NU_FILE: 'domain_transfer.send_auth_code_to_buyer_with_holderchange_se_nu_file',
55
49
  REQUEST_IPS_TAG_TO_BUYER_IPS_TAG_INVALID: 'request_ips_tag_to_buyer_ips_tag_invalid',
56
50
  REQUEST_IPS_TAG_TO_SELLER_IPS_TAG_INVALID: 'request_ips_tag_to_seller_ips_tag_invalid',
57
- LEAD_CLOSED_SELLER: 'lead.closed.seller',
58
- LEAD_CLOSED_BUYER: 'lead.closed.buyer',
59
- ORDER_HAS_BEEN_PAID: 'order_has_been_paid',
60
51
  EXPORT_COMPLETED: 'export_completed',
61
52
  DOMAIN_IMPORT_FINISHED: 'domain_import_finished',
62
- SELLER_PAYOUT_WAS_PAID: 'seller_payout_was_paid',
63
53
  DOMAIN_OFFER_VERIFIED_BUYER_ACCESS_LINK_EMAIL: 'domain_offer_verified_buyer_access_link_email',
64
54
  DOMAIN_OFFER_ACCEPTED_CONTINUE_ORDER_EMAIL: 'domain_offer_accepted_continue_order_email',
65
55
  DOMAIN_OFFER_ACCEPTED_CONTINUE_LEASE_TO_OWN_EMAIL: 'domain_offer_accepted_continue_lease_to_own_email',
@@ -77,18 +67,29 @@ exports.UserNotificationDtoTypeEnum = {
77
67
  RENT_SUBSCRIPTION_HAS_BEEN_ACTIVATED_FOR_FIRST_TIME: 'rent_subscription_has_been_activated_for_first_time',
78
68
  PASSWORD_RESET: 'password_reset',
79
69
  BUYER_INVOICE: 'buyer_invoice',
80
- BUYER_LEASE_TO_OWN_INSTALLMENT_INVOICE: 'buyer_lease_to_own_installment_invoice',
81
70
  BUYER_RENT_INSTALLMENT_INVOICE: 'buyer_rent_installment_invoice',
71
+ BUYER_LEASE_TO_OWN_INSTALLMENT_INVOICE: 'buyer_lease_to_own_installment_invoice',
72
+ EPP_BATCH_UPDATE_DOMAINS_RESULTS: 'epp.batch.update.domains.results',
73
+ ORDER_HAS_BEEN_PAID: 'order_has_been_paid',
74
+ PURCHASES_ARE_CLOSED_DUE_DOMAINS_IS_SOLD_OR_DELETED: 'purchases_are_closed_due_domains_is_sold_or_deleted',
75
+ DOMAIN_OWNER_CHANGED: 'domain_owner_changed',
76
+ LEAD_CLOSED_BUYER: 'lead.closed.buyer',
77
+ DOMAIN_SOLD_SELLER_NOTIFICATION: 'domain_sold_seller_notification',
78
+ DOMAIN_SOLD_BY_LEASE_TO_OWN_SELLER_NOTIFICATION: 'domain_sold_by_lease_to_own_seller_notification',
79
+ DOMAIN_SOLD_BY_RENT_SELLER_NOTIFICATION: 'domain_sold_by_rent_seller_notification',
80
+ DOMAIN_TRANSFER_COMPLETED_FOR_SELLER: 'domain_transfer.completed_for_seller',
81
+ LEAD_CLOSED_SELLER: 'lead.closed.seller',
82
+ SELLER_PAYOUT_WAS_PAID: 'seller_payout_was_paid',
82
83
  SELLER_INVOICE: 'seller_invoice',
83
84
  SELLER_LEASE_TO_OWN_INSTALLMENT_INVOICE: 'seller_lease_to_own_installment_invoice',
84
85
  SELLER_RENT_INSTALLMENT_INVOICE: 'seller_rent_installment_invoice',
85
86
  AFFILIATE_COMMISSIONS_INVOICE: 'affiliate_commissions_invoice',
86
- EPP_BATCH_UPDATE_DOMAINS_RESULTS: 'epp.batch.update.domains.results',
87
87
  LEAD_MESSAGE_OFFER: 'lead_message.offer',
88
88
  LEAD_MESSAGE_OFFER_ACCEPTED: 'lead_message.offer_accepted',
89
89
  LEAD_MESSAGE_OFFER_WITHDRAWN: 'lead_message.offer_withdrawn',
90
90
  LEAD_MESSAGE_OFFER_REJECTED: 'lead_message.offer_rejected',
91
91
  LEAD_MESSAGE_MESSAGE: 'lead_message.message',
92
+ LEAD_MESSAGE_BATCH: 'lead_message.batch',
92
93
  TASKS_REMINDER_LEAD: 'tasks.reminder.lead',
93
94
  TASKS_REMINDER_DOMAIN_TRANSFER: 'tasks.reminder.domain_transfer',
94
95
  TASKS_REMINDER_ORDER: 'tasks.reminder.order'
@@ -61,24 +61,18 @@ export declare const UserNotificationListItemDtoTypeEnum: {
61
61
  readonly ACCOUNT_ONBOARDING_FINISHED: "account_onboarding_finished";
62
62
  readonly ACCOUNT_ONBOARDING_REJECTED: "account_onboarding_rejected";
63
63
  readonly BUYER_ACCESS_TOKEN: "buyer_access_token";
64
- readonly PURCHASES_ARE_CLOSED_DUE_DOMAINS_IS_SOLD_OR_DELETED: "purchases_are_closed_due_domains_is_sold_or_deleted";
65
- readonly DOMAIN_OWNER_CHANGED: "domain_owner_changed";
66
- readonly DOMAIN_SOLD_SELLER_NOTIFICATION: "domain_sold_seller_notification";
67
- readonly DOMAIN_SOLD_BY_LEASE_TO_OWN_SELLER_NOTIFICATION: "domain_sold_by_lease_to_own_seller_notification";
68
- readonly DOMAIN_SOLD_BY_RENT_SELLER_NOTIFICATION: "domain_sold_by_rent_seller_notification";
69
- readonly DOMAIN_TRANSFER_VALIDATION_AUTO_CONFIRMED_EMAIL: "domain_transfer_validation_auto_confirmed_email";
70
- readonly DOMAIN_TRANSFER_VALIDATION_REQUIRED_BY_BUYER_EMAIL: "domain_transfer_validation_required_by_buyer_email";
71
- readonly DOMAIN_TRANSFER_COMPLETED_FOR_SELLER: "domain_transfer.completed_for_seller";
72
64
  readonly DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER: "domain_transfer.request_auth_code_to_seller";
65
+ readonly DOMAIN_TRANSFER_VALIDATION_REQUIRED_BY_BUYER_EMAIL: "domain_transfer_validation_required_by_buyer_email";
66
+ readonly DOMAIN_TRANSFER_VALIDATION_AUTO_CONFIRMED_EMAIL: "domain_transfer_validation_auto_confirmed_email";
73
67
  readonly DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER_REMINDER: "domain_transfer.request_auth_code_to_seller.reminder";
74
68
  readonly DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER_AUTH_CODE_INVALID: "domain_transfer.request_auth_code_to_seller_auth_code_invalid";
75
69
  readonly DOMAIN_TRANSFER_DOMAIN_TRANSFER_REQUIRES_UNLOCK_DOMAIN: "domain_transfer.domain_transfer_requires_unlock_domain";
76
70
  readonly DOMAIN_TRANSFER_NOTIFY_BUYER_TO_INITIALIZE_TRANSFER: "domain_transfer.notify_buyer_to_initialize_transfer";
77
71
  readonly DOMAIN_TRANSFER_NOTIFY_SELLER_TO_INITIALIZE_TRANSFER: "domain_transfer.notify_seller_to_initialize_transfer";
78
- readonly DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: "domain_transfer.recreate_domain_in_seller_account_error";
79
72
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER: "domain_transfer.send_ips_tag_instructions_to_seller";
80
73
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: "domain_transfer.send_ips_tag_instructions_to_seller_reminder";
81
74
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: "domain_transfer.send_ips_tag_instructions_to_buyer";
75
+ readonly DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: "domain_transfer.recreate_domain_in_seller_account_error";
82
76
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: "domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller";
83
77
  readonly DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: "domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller";
84
78
  readonly DOMAIN_TRANSFER_LEASE_TO_OWN_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: "domain_transfer.lease_to_own_subscription_send_owned_domain_auth_code_to_seller";
@@ -86,12 +80,8 @@ export declare const UserNotificationListItemDtoTypeEnum: {
86
80
  readonly DOMAIN_TRANSFER_SEND_AUTH_CODE_TO_BUYER_WITH_HOLDERCHANGE_SE_NU_FILE: "domain_transfer.send_auth_code_to_buyer_with_holderchange_se_nu_file";
87
81
  readonly REQUEST_IPS_TAG_TO_BUYER_IPS_TAG_INVALID: "request_ips_tag_to_buyer_ips_tag_invalid";
88
82
  readonly REQUEST_IPS_TAG_TO_SELLER_IPS_TAG_INVALID: "request_ips_tag_to_seller_ips_tag_invalid";
89
- readonly LEAD_CLOSED_SELLER: "lead.closed.seller";
90
- readonly LEAD_CLOSED_BUYER: "lead.closed.buyer";
91
- readonly ORDER_HAS_BEEN_PAID: "order_has_been_paid";
92
83
  readonly EXPORT_COMPLETED: "export_completed";
93
84
  readonly DOMAIN_IMPORT_FINISHED: "domain_import_finished";
94
- readonly SELLER_PAYOUT_WAS_PAID: "seller_payout_was_paid";
95
85
  readonly DOMAIN_OFFER_VERIFIED_BUYER_ACCESS_LINK_EMAIL: "domain_offer_verified_buyer_access_link_email";
96
86
  readonly DOMAIN_OFFER_ACCEPTED_CONTINUE_ORDER_EMAIL: "domain_offer_accepted_continue_order_email";
97
87
  readonly DOMAIN_OFFER_ACCEPTED_CONTINUE_LEASE_TO_OWN_EMAIL: "domain_offer_accepted_continue_lease_to_own_email";
@@ -109,18 +99,29 @@ export declare const UserNotificationListItemDtoTypeEnum: {
109
99
  readonly RENT_SUBSCRIPTION_HAS_BEEN_ACTIVATED_FOR_FIRST_TIME: "rent_subscription_has_been_activated_for_first_time";
110
100
  readonly PASSWORD_RESET: "password_reset";
111
101
  readonly BUYER_INVOICE: "buyer_invoice";
112
- readonly BUYER_LEASE_TO_OWN_INSTALLMENT_INVOICE: "buyer_lease_to_own_installment_invoice";
113
102
  readonly BUYER_RENT_INSTALLMENT_INVOICE: "buyer_rent_installment_invoice";
103
+ readonly BUYER_LEASE_TO_OWN_INSTALLMENT_INVOICE: "buyer_lease_to_own_installment_invoice";
104
+ readonly EPP_BATCH_UPDATE_DOMAINS_RESULTS: "epp.batch.update.domains.results";
105
+ readonly ORDER_HAS_BEEN_PAID: "order_has_been_paid";
106
+ readonly PURCHASES_ARE_CLOSED_DUE_DOMAINS_IS_SOLD_OR_DELETED: "purchases_are_closed_due_domains_is_sold_or_deleted";
107
+ readonly DOMAIN_OWNER_CHANGED: "domain_owner_changed";
108
+ readonly LEAD_CLOSED_BUYER: "lead.closed.buyer";
109
+ readonly DOMAIN_SOLD_SELLER_NOTIFICATION: "domain_sold_seller_notification";
110
+ readonly DOMAIN_SOLD_BY_LEASE_TO_OWN_SELLER_NOTIFICATION: "domain_sold_by_lease_to_own_seller_notification";
111
+ readonly DOMAIN_SOLD_BY_RENT_SELLER_NOTIFICATION: "domain_sold_by_rent_seller_notification";
112
+ readonly DOMAIN_TRANSFER_COMPLETED_FOR_SELLER: "domain_transfer.completed_for_seller";
113
+ readonly LEAD_CLOSED_SELLER: "lead.closed.seller";
114
+ readonly SELLER_PAYOUT_WAS_PAID: "seller_payout_was_paid";
114
115
  readonly SELLER_INVOICE: "seller_invoice";
115
116
  readonly SELLER_LEASE_TO_OWN_INSTALLMENT_INVOICE: "seller_lease_to_own_installment_invoice";
116
117
  readonly SELLER_RENT_INSTALLMENT_INVOICE: "seller_rent_installment_invoice";
117
118
  readonly AFFILIATE_COMMISSIONS_INVOICE: "affiliate_commissions_invoice";
118
- readonly EPP_BATCH_UPDATE_DOMAINS_RESULTS: "epp.batch.update.domains.results";
119
119
  readonly LEAD_MESSAGE_OFFER: "lead_message.offer";
120
120
  readonly LEAD_MESSAGE_OFFER_ACCEPTED: "lead_message.offer_accepted";
121
121
  readonly LEAD_MESSAGE_OFFER_WITHDRAWN: "lead_message.offer_withdrawn";
122
122
  readonly LEAD_MESSAGE_OFFER_REJECTED: "lead_message.offer_rejected";
123
123
  readonly LEAD_MESSAGE_MESSAGE: "lead_message.message";
124
+ readonly LEAD_MESSAGE_BATCH: "lead_message.batch";
124
125
  readonly TASKS_REMINDER_LEAD: "tasks.reminder.lead";
125
126
  readonly TASKS_REMINDER_DOMAIN_TRANSFER: "tasks.reminder.domain_transfer";
126
127
  readonly TASKS_REMINDER_ORDER: "tasks.reminder.order";
@@ -28,24 +28,18 @@ exports.UserNotificationListItemDtoTypeEnum = {
28
28
  ACCOUNT_ONBOARDING_FINISHED: 'account_onboarding_finished',
29
29
  ACCOUNT_ONBOARDING_REJECTED: 'account_onboarding_rejected',
30
30
  BUYER_ACCESS_TOKEN: 'buyer_access_token',
31
- PURCHASES_ARE_CLOSED_DUE_DOMAINS_IS_SOLD_OR_DELETED: 'purchases_are_closed_due_domains_is_sold_or_deleted',
32
- DOMAIN_OWNER_CHANGED: 'domain_owner_changed',
33
- DOMAIN_SOLD_SELLER_NOTIFICATION: 'domain_sold_seller_notification',
34
- DOMAIN_SOLD_BY_LEASE_TO_OWN_SELLER_NOTIFICATION: 'domain_sold_by_lease_to_own_seller_notification',
35
- DOMAIN_SOLD_BY_RENT_SELLER_NOTIFICATION: 'domain_sold_by_rent_seller_notification',
36
- DOMAIN_TRANSFER_VALIDATION_AUTO_CONFIRMED_EMAIL: 'domain_transfer_validation_auto_confirmed_email',
37
- DOMAIN_TRANSFER_VALIDATION_REQUIRED_BY_BUYER_EMAIL: 'domain_transfer_validation_required_by_buyer_email',
38
- DOMAIN_TRANSFER_COMPLETED_FOR_SELLER: 'domain_transfer.completed_for_seller',
39
31
  DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER: 'domain_transfer.request_auth_code_to_seller',
32
+ DOMAIN_TRANSFER_VALIDATION_REQUIRED_BY_BUYER_EMAIL: 'domain_transfer_validation_required_by_buyer_email',
33
+ DOMAIN_TRANSFER_VALIDATION_AUTO_CONFIRMED_EMAIL: 'domain_transfer_validation_auto_confirmed_email',
40
34
  DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER_REMINDER: 'domain_transfer.request_auth_code_to_seller.reminder',
41
35
  DOMAIN_TRANSFER_REQUEST_AUTH_CODE_TO_SELLER_AUTH_CODE_INVALID: 'domain_transfer.request_auth_code_to_seller_auth_code_invalid',
42
36
  DOMAIN_TRANSFER_DOMAIN_TRANSFER_REQUIRES_UNLOCK_DOMAIN: 'domain_transfer.domain_transfer_requires_unlock_domain',
43
37
  DOMAIN_TRANSFER_NOTIFY_BUYER_TO_INITIALIZE_TRANSFER: 'domain_transfer.notify_buyer_to_initialize_transfer',
44
38
  DOMAIN_TRANSFER_NOTIFY_SELLER_TO_INITIALIZE_TRANSFER: 'domain_transfer.notify_seller_to_initialize_transfer',
45
- DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
46
39
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_seller',
47
40
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
48
41
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
42
+ DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
49
43
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
50
44
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
51
45
  DOMAIN_TRANSFER_LEASE_TO_OWN_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.lease_to_own_subscription_send_owned_domain_auth_code_to_seller',
@@ -53,12 +47,8 @@ exports.UserNotificationListItemDtoTypeEnum = {
53
47
  DOMAIN_TRANSFER_SEND_AUTH_CODE_TO_BUYER_WITH_HOLDERCHANGE_SE_NU_FILE: 'domain_transfer.send_auth_code_to_buyer_with_holderchange_se_nu_file',
54
48
  REQUEST_IPS_TAG_TO_BUYER_IPS_TAG_INVALID: 'request_ips_tag_to_buyer_ips_tag_invalid',
55
49
  REQUEST_IPS_TAG_TO_SELLER_IPS_TAG_INVALID: 'request_ips_tag_to_seller_ips_tag_invalid',
56
- LEAD_CLOSED_SELLER: 'lead.closed.seller',
57
- LEAD_CLOSED_BUYER: 'lead.closed.buyer',
58
- ORDER_HAS_BEEN_PAID: 'order_has_been_paid',
59
50
  EXPORT_COMPLETED: 'export_completed',
60
51
  DOMAIN_IMPORT_FINISHED: 'domain_import_finished',
61
- SELLER_PAYOUT_WAS_PAID: 'seller_payout_was_paid',
62
52
  DOMAIN_OFFER_VERIFIED_BUYER_ACCESS_LINK_EMAIL: 'domain_offer_verified_buyer_access_link_email',
63
53
  DOMAIN_OFFER_ACCEPTED_CONTINUE_ORDER_EMAIL: 'domain_offer_accepted_continue_order_email',
64
54
  DOMAIN_OFFER_ACCEPTED_CONTINUE_LEASE_TO_OWN_EMAIL: 'domain_offer_accepted_continue_lease_to_own_email',
@@ -76,18 +66,29 @@ exports.UserNotificationListItemDtoTypeEnum = {
76
66
  RENT_SUBSCRIPTION_HAS_BEEN_ACTIVATED_FOR_FIRST_TIME: 'rent_subscription_has_been_activated_for_first_time',
77
67
  PASSWORD_RESET: 'password_reset',
78
68
  BUYER_INVOICE: 'buyer_invoice',
79
- BUYER_LEASE_TO_OWN_INSTALLMENT_INVOICE: 'buyer_lease_to_own_installment_invoice',
80
69
  BUYER_RENT_INSTALLMENT_INVOICE: 'buyer_rent_installment_invoice',
70
+ BUYER_LEASE_TO_OWN_INSTALLMENT_INVOICE: 'buyer_lease_to_own_installment_invoice',
71
+ EPP_BATCH_UPDATE_DOMAINS_RESULTS: 'epp.batch.update.domains.results',
72
+ ORDER_HAS_BEEN_PAID: 'order_has_been_paid',
73
+ PURCHASES_ARE_CLOSED_DUE_DOMAINS_IS_SOLD_OR_DELETED: 'purchases_are_closed_due_domains_is_sold_or_deleted',
74
+ DOMAIN_OWNER_CHANGED: 'domain_owner_changed',
75
+ LEAD_CLOSED_BUYER: 'lead.closed.buyer',
76
+ DOMAIN_SOLD_SELLER_NOTIFICATION: 'domain_sold_seller_notification',
77
+ DOMAIN_SOLD_BY_LEASE_TO_OWN_SELLER_NOTIFICATION: 'domain_sold_by_lease_to_own_seller_notification',
78
+ DOMAIN_SOLD_BY_RENT_SELLER_NOTIFICATION: 'domain_sold_by_rent_seller_notification',
79
+ DOMAIN_TRANSFER_COMPLETED_FOR_SELLER: 'domain_transfer.completed_for_seller',
80
+ LEAD_CLOSED_SELLER: 'lead.closed.seller',
81
+ SELLER_PAYOUT_WAS_PAID: 'seller_payout_was_paid',
81
82
  SELLER_INVOICE: 'seller_invoice',
82
83
  SELLER_LEASE_TO_OWN_INSTALLMENT_INVOICE: 'seller_lease_to_own_installment_invoice',
83
84
  SELLER_RENT_INSTALLMENT_INVOICE: 'seller_rent_installment_invoice',
84
85
  AFFILIATE_COMMISSIONS_INVOICE: 'affiliate_commissions_invoice',
85
- EPP_BATCH_UPDATE_DOMAINS_RESULTS: 'epp.batch.update.domains.results',
86
86
  LEAD_MESSAGE_OFFER: 'lead_message.offer',
87
87
  LEAD_MESSAGE_OFFER_ACCEPTED: 'lead_message.offer_accepted',
88
88
  LEAD_MESSAGE_OFFER_WITHDRAWN: 'lead_message.offer_withdrawn',
89
89
  LEAD_MESSAGE_OFFER_REJECTED: 'lead_message.offer_rejected',
90
90
  LEAD_MESSAGE_MESSAGE: 'lead_message.message',
91
+ LEAD_MESSAGE_BATCH: 'lead_message.batch',
91
92
  TASKS_REMINDER_LEAD: 'tasks.reminder.lead',
92
93
  TASKS_REMINDER_DOMAIN_TRANSFER: 'tasks.reminder.domain_transfer',
93
94
  TASKS_REMINDER_ORDER: 'tasks.reminder.order'