@randock/nameshift-api-client 0.0.424 → 0.0.426

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.424
1
+ ## @randock/nameshift-api-client@0.0.426
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.424 --save
39
+ npm install @randock/nameshift-api-client@0.0.426 --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
- c1be1c788a55f49183a88ee5a810f79929dad71d7a640b4c1d2cb18d562dcca07c117f7bf63d921463932dbf5e6e171d
47
+ e9f4c14ca660ff404abcf632eb529074b29e5c56c3f2f9808f153fe68165b9f8fd7cbb06d34f4d16298eb0782fa7ebe6
@@ -70,6 +70,12 @@ export interface BuyerDomainTransferListItemDto {
70
70
  * @memberof BuyerDomainTransferListItemDto
71
71
  */
72
72
  ipsTag: string | null;
73
+ /**
74
+ * Whether the buyer can get the auth code of the domain transfer
75
+ * @type {boolean}
76
+ * @memberof BuyerDomainTransferListItemDto
77
+ */
78
+ buyerCanGetAuthCode: boolean;
73
79
  /**
74
80
  * The buyer domain transfer is expired
75
81
  * @type {boolean}
@@ -62,6 +62,8 @@ function instanceOfBuyerDomainTransferListItemDto(value) {
62
62
  return false;
63
63
  if (!('ipsTag' in value) || value['ipsTag'] === undefined)
64
64
  return false;
65
+ if (!('buyerCanGetAuthCode' in value) || value['buyerCanGetAuthCode'] === undefined)
66
+ return false;
65
67
  if (!('isOfferExpired' in value) || value['isOfferExpired'] === undefined)
66
68
  return false;
67
69
  if (!('invoiceNumber' in value) || value['invoiceNumber'] === undefined)
@@ -87,6 +89,7 @@ function BuyerDomainTransferListItemDtoFromJSONTyped(json, ignoreDiscriminator)
87
89
  'domain': (0, BuyerDomainTransferListItemDomainDto_1.BuyerDomainTransferListItemDomainDtoFromJSON)(json['domain']),
88
90
  'createdAt': (new Date(json['createdAt'])),
89
91
  'ipsTag': json['ipsTag'],
92
+ 'buyerCanGetAuthCode': json['buyerCanGetAuthCode'],
90
93
  'isOfferExpired': json['isOfferExpired'],
91
94
  'invoiceNumber': json['invoiceNumber'],
92
95
  'canBeProforma': json['canBeProforma'],
@@ -110,6 +113,7 @@ function BuyerDomainTransferListItemDtoToJSONTyped(value, ignoreDiscriminator) {
110
113
  'domain': (0, BuyerDomainTransferListItemDomainDto_1.BuyerDomainTransferListItemDomainDtoToJSON)(value['domain']),
111
114
  'createdAt': ((value['createdAt']).toISOString()),
112
115
  'ipsTag': value['ipsTag'],
116
+ 'buyerCanGetAuthCode': value['buyerCanGetAuthCode'],
113
117
  'isOfferExpired': value['isOfferExpired'],
114
118
  'invoiceNumber': value['invoiceNumber'],
115
119
  'canBeProforma': value['canBeProforma'],
@@ -82,6 +82,7 @@ export declare const BuyerNotificationDtoTypeEnum: {
82
82
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: "domain_transfer.send_ips_tag_instructions_to_seller_reminder";
83
83
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: "domain_transfer.send_ips_tag_instructions_to_buyer";
84
84
  readonly DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: "domain_transfer.request_buyer_transfer_info_to_buyer";
85
+ readonly DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: "domain_transfer.request_buyer_transfer_info_to_buyer_invalid";
85
86
  readonly DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: "domain_transfer.recreate_domain_in_seller_account_error";
86
87
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: "domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller";
87
88
  readonly DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: "domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller";
@@ -43,6 +43,7 @@ exports.BuyerNotificationDtoTypeEnum = {
43
43
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
44
44
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
45
45
  DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: 'domain_transfer.request_buyer_transfer_info_to_buyer',
46
+ DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: 'domain_transfer.request_buyer_transfer_info_to_buyer_invalid',
46
47
  DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
47
48
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
48
49
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
@@ -75,6 +75,7 @@ export declare const BuyerNotificationListItemDtoTypeEnum: {
75
75
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: "domain_transfer.send_ips_tag_instructions_to_seller_reminder";
76
76
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: "domain_transfer.send_ips_tag_instructions_to_buyer";
77
77
  readonly DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: "domain_transfer.request_buyer_transfer_info_to_buyer";
78
+ readonly DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: "domain_transfer.request_buyer_transfer_info_to_buyer_invalid";
78
79
  readonly DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: "domain_transfer.recreate_domain_in_seller_account_error";
79
80
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: "domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller";
80
81
  readonly DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: "domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller";
@@ -42,6 +42,7 @@ exports.BuyerNotificationListItemDtoTypeEnum = {
42
42
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
43
43
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
44
44
  DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: 'domain_transfer.request_buyer_transfer_info_to_buyer',
45
+ DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: 'domain_transfer.request_buyer_transfer_info_to_buyer_invalid',
45
46
  DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
46
47
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
47
48
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
@@ -82,6 +82,7 @@ export declare const UserNotificationDtoTypeEnum: {
82
82
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: "domain_transfer.send_ips_tag_instructions_to_seller_reminder";
83
83
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: "domain_transfer.send_ips_tag_instructions_to_buyer";
84
84
  readonly DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: "domain_transfer.request_buyer_transfer_info_to_buyer";
85
+ readonly DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: "domain_transfer.request_buyer_transfer_info_to_buyer_invalid";
85
86
  readonly DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: "domain_transfer.recreate_domain_in_seller_account_error";
86
87
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: "domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller";
87
88
  readonly DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: "domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller";
@@ -43,6 +43,7 @@ exports.UserNotificationDtoTypeEnum = {
43
43
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
44
44
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
45
45
  DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: 'domain_transfer.request_buyer_transfer_info_to_buyer',
46
+ DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: 'domain_transfer.request_buyer_transfer_info_to_buyer_invalid',
46
47
  DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
47
48
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
48
49
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
@@ -75,6 +75,7 @@ export declare const UserNotificationListItemDtoTypeEnum: {
75
75
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: "domain_transfer.send_ips_tag_instructions_to_seller_reminder";
76
76
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: "domain_transfer.send_ips_tag_instructions_to_buyer";
77
77
  readonly DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: "domain_transfer.request_buyer_transfer_info_to_buyer";
78
+ readonly DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: "domain_transfer.request_buyer_transfer_info_to_buyer_invalid";
78
79
  readonly DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: "domain_transfer.recreate_domain_in_seller_account_error";
79
80
  readonly DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: "domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller";
80
81
  readonly DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: "domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller";
@@ -42,6 +42,7 @@ exports.UserNotificationListItemDtoTypeEnum = {
42
42
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
43
43
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
44
44
  DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: 'domain_transfer.request_buyer_transfer_info_to_buyer',
45
+ DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: 'domain_transfer.request_buyer_transfer_info_to_buyer_invalid',
45
46
  DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
46
47
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
47
48
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.424",
3
+ "version": "0.0.426",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -81,6 +81,12 @@ export interface BuyerDomainTransferListItemDto {
81
81
  * @memberof BuyerDomainTransferListItemDto
82
82
  */
83
83
  ipsTag: string | null;
84
+ /**
85
+ * Whether the buyer can get the auth code of the domain transfer
86
+ * @type {boolean}
87
+ * @memberof BuyerDomainTransferListItemDto
88
+ */
89
+ buyerCanGetAuthCode: boolean;
84
90
  /**
85
91
  * The buyer domain transfer is expired
86
92
  * @type {boolean}
@@ -140,6 +146,7 @@ export function instanceOfBuyerDomainTransferListItemDto(value: object): value i
140
146
  if (!('domain' in value) || value['domain'] === undefined) return false;
141
147
  if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
142
148
  if (!('ipsTag' in value) || value['ipsTag'] === undefined) return false;
149
+ if (!('buyerCanGetAuthCode' in value) || value['buyerCanGetAuthCode'] === undefined) return false;
143
150
  if (!('isOfferExpired' in value) || value['isOfferExpired'] === undefined) return false;
144
151
  if (!('invoiceNumber' in value) || value['invoiceNumber'] === undefined) return false;
145
152
  if (!('canBeProforma' in value) || value['canBeProforma'] === undefined) return false;
@@ -165,6 +172,7 @@ export function BuyerDomainTransferListItemDtoFromJSONTyped(json: any, ignoreDis
165
172
  'domain': BuyerDomainTransferListItemDomainDtoFromJSON(json['domain']),
166
173
  'createdAt': (new Date(json['createdAt'])),
167
174
  'ipsTag': json['ipsTag'],
175
+ 'buyerCanGetAuthCode': json['buyerCanGetAuthCode'],
168
176
  'isOfferExpired': json['isOfferExpired'],
169
177
  'invoiceNumber': json['invoiceNumber'],
170
178
  'canBeProforma': json['canBeProforma'],
@@ -191,6 +199,7 @@ export function BuyerDomainTransferListItemDtoToJSONTyped(value?: BuyerDomainTra
191
199
  'domain': BuyerDomainTransferListItemDomainDtoToJSON(value['domain']),
192
200
  'createdAt': ((value['createdAt']).toISOString()),
193
201
  'ipsTag': value['ipsTag'],
202
+ 'buyerCanGetAuthCode': value['buyerCanGetAuthCode'],
194
203
  'isOfferExpired': value['isOfferExpired'],
195
204
  'invoiceNumber': value['invoiceNumber'],
196
205
  'canBeProforma': value['canBeProforma'],
@@ -95,6 +95,7 @@ export const BuyerNotificationDtoTypeEnum = {
95
95
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
96
96
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
97
97
  DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: 'domain_transfer.request_buyer_transfer_info_to_buyer',
98
+ DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: 'domain_transfer.request_buyer_transfer_info_to_buyer_invalid',
98
99
  DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
99
100
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
100
101
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
@@ -81,6 +81,7 @@ export const BuyerNotificationListItemDtoTypeEnum = {
81
81
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
82
82
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
83
83
  DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: 'domain_transfer.request_buyer_transfer_info_to_buyer',
84
+ DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: 'domain_transfer.request_buyer_transfer_info_to_buyer_invalid',
84
85
  DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
85
86
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
86
87
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
@@ -95,6 +95,7 @@ export const UserNotificationDtoTypeEnum = {
95
95
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
96
96
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
97
97
  DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: 'domain_transfer.request_buyer_transfer_info_to_buyer',
98
+ DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: 'domain_transfer.request_buyer_transfer_info_to_buyer_invalid',
98
99
  DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
99
100
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
100
101
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',
@@ -81,6 +81,7 @@ export const UserNotificationListItemDtoTypeEnum = {
81
81
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_SELLER_REMINDER: 'domain_transfer.send_ips_tag_instructions_to_seller_reminder',
82
82
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_BUYER: 'domain_transfer.send_ips_tag_instructions_to_buyer',
83
83
  DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER: 'domain_transfer.request_buyer_transfer_info_to_buyer',
84
+ DOMAIN_TRANSFER_REQUEST_BUYER_TRANSFER_INFO_TO_BUYER_INVALID: 'domain_transfer.request_buyer_transfer_info_to_buyer_invalid',
84
85
  DOMAIN_TRANSFER_RECREATE_DOMAIN_IN_SELLER_ACCOUNT_ERROR: 'domain_transfer.recreate_domain_in_seller_account_error',
85
86
  DOMAIN_TRANSFER_SEND_IPS_TAG_INSTRUCTIONS_TO_START_TRANSFER_TO_SELLER: 'domain_transfer.send_ips_tag_instructions_to_start_transfer_to_seller',
86
87
  DOMAIN_TRANSFER_RENT_SUBSCRIPTION_SEND_OWNED_DOMAIN_AUTH_CODE_TO_SELLER: 'domain_transfer.rent_subscription_send_owned_domain_auth_code_to_seller',