@opusdns/api 0.9.0 → 0.11.0
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/package.json +5 -5
- package/src/helpers/constants.ts +2633 -0
- package/src/helpers/index.ts +20 -0
- package/src/helpers/keys.ts +19097 -0
- package/src/helpers/requests.ts +3553 -0
- package/src/helpers/responses.ts +5266 -0
- package/src/helpers/schemas-arrays.ts +711 -0
- package/src/helpers/schemas.ts +2908 -0
- package/src/index.d.ts +2 -0
- package/src/openapi.yaml +959 -3
- package/src/schema.d.ts +1078 -0
- package/src/types/constants.ts +109 -0
- package/src/types/keys.ts +1526 -4
- package/src/types/types.ts +470 -4
package/src/types/keys.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* This file is auto-generated from the OpenAPI specification.
|
|
5
|
-
* Do not edit manually.
|
|
2
|
+
* @deprecated This file is deprecated and will be removed in a future release.
|
|
3
|
+
* All key constants have moved to src/helpers/keys.ts. Please update your imports to use @/helpers or @/helpers/enums.
|
|
6
4
|
*/
|
|
7
5
|
|
|
8
6
|
import { Get_AuthClientCredentials_Response_V1 } from './types';
|
|
@@ -62,48 +60,129 @@ import { UserNotification } from './types';
|
|
|
62
60
|
import { UserWithAttributes } from './types';
|
|
63
61
|
import { UserWithRelationPermissions } from './types';
|
|
64
62
|
|
|
63
|
+
/**
|
|
64
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
65
|
+
*/
|
|
65
66
|
export const GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_AuthClientCredentials_Response_V1;
|
|
67
|
+
/**
|
|
68
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
69
|
+
*/
|
|
66
70
|
export const GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_AuthClientCredentials_Response_V1;
|
|
67
71
|
|
|
72
|
+
/**
|
|
73
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
74
|
+
*/
|
|
68
75
|
export const GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEYS = [
|
|
69
76
|
GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEY_PAGINATION,
|
|
70
77
|
GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEY_RESULTS,
|
|
71
78
|
] as const;
|
|
72
79
|
|
|
80
|
+
/**
|
|
81
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
82
|
+
*/
|
|
73
83
|
export const GET_AVAILABILITY_RESPONSE_V1_KEY_META = 'meta' as keyof Get_Availability_Response_V1;
|
|
84
|
+
/**
|
|
85
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
86
|
+
*/
|
|
74
87
|
export const GET_AVAILABILITY_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Availability_Response_V1;
|
|
75
88
|
|
|
89
|
+
/**
|
|
90
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
91
|
+
*/
|
|
76
92
|
export const GET_AVAILABILITY_RESPONSE_V1_KEYS = [
|
|
77
93
|
GET_AVAILABILITY_RESPONSE_V1_KEY_META,
|
|
78
94
|
GET_AVAILABILITY_RESPONSE_V1_KEY_RESULTS,
|
|
79
95
|
] as const;
|
|
80
96
|
|
|
97
|
+
/**
|
|
98
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
99
|
+
*/
|
|
81
100
|
export const GET_CONTACTS_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_Contacts_Response_V1;
|
|
101
|
+
/**
|
|
102
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
103
|
+
*/
|
|
82
104
|
export const GET_CONTACTS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Contacts_Response_V1;
|
|
83
105
|
|
|
106
|
+
/**
|
|
107
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
108
|
+
*/
|
|
84
109
|
export const GET_CONTACTS_RESPONSE_V1_KEYS = [
|
|
85
110
|
GET_CONTACTS_RESPONSE_V1_KEY_PAGINATION,
|
|
86
111
|
GET_CONTACTS_RESPONSE_V1_KEY_RESULTS,
|
|
87
112
|
] as const;
|
|
88
113
|
|
|
114
|
+
/**
|
|
115
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
116
|
+
*/
|
|
89
117
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_CITY = 'city' as keyof Get_ContactsBycontactId_Response_V1;
|
|
118
|
+
/**
|
|
119
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
120
|
+
*/
|
|
90
121
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_CONTACT_ID = 'contact_id' as keyof Get_ContactsBycontactId_Response_V1;
|
|
122
|
+
/**
|
|
123
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
124
|
+
*/
|
|
91
125
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_COUNTRY = 'country' as keyof Get_ContactsBycontactId_Response_V1;
|
|
126
|
+
/**
|
|
127
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
128
|
+
*/
|
|
92
129
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_ContactsBycontactId_Response_V1;
|
|
130
|
+
/**
|
|
131
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
132
|
+
*/
|
|
93
133
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Get_ContactsBycontactId_Response_V1;
|
|
134
|
+
/**
|
|
135
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
136
|
+
*/
|
|
94
137
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_DISCLOSE = 'disclose' as keyof Get_ContactsBycontactId_Response_V1;
|
|
138
|
+
/**
|
|
139
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
140
|
+
*/
|
|
95
141
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_EMAIL = 'email' as keyof Get_ContactsBycontactId_Response_V1;
|
|
142
|
+
/**
|
|
143
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
144
|
+
*/
|
|
96
145
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_FAX = 'fax' as keyof Get_ContactsBycontactId_Response_V1;
|
|
146
|
+
/**
|
|
147
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
148
|
+
*/
|
|
97
149
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_FIRST_NAME = 'first_name' as keyof Get_ContactsBycontactId_Response_V1;
|
|
150
|
+
/**
|
|
151
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
152
|
+
*/
|
|
98
153
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_LAST_NAME = 'last_name' as keyof Get_ContactsBycontactId_Response_V1;
|
|
154
|
+
/**
|
|
155
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
156
|
+
*/
|
|
99
157
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_ORG = 'org' as keyof Get_ContactsBycontactId_Response_V1;
|
|
158
|
+
/**
|
|
159
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
160
|
+
*/
|
|
100
161
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Get_ContactsBycontactId_Response_V1;
|
|
162
|
+
/**
|
|
163
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
164
|
+
*/
|
|
101
165
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_PHONE = 'phone' as keyof Get_ContactsBycontactId_Response_V1;
|
|
166
|
+
/**
|
|
167
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
168
|
+
*/
|
|
102
169
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_POSTAL_CODE = 'postal_code' as keyof Get_ContactsBycontactId_Response_V1;
|
|
170
|
+
/**
|
|
171
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
172
|
+
*/
|
|
103
173
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_STATE = 'state' as keyof Get_ContactsBycontactId_Response_V1;
|
|
174
|
+
/**
|
|
175
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
176
|
+
*/
|
|
104
177
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_STREET = 'street' as keyof Get_ContactsBycontactId_Response_V1;
|
|
178
|
+
/**
|
|
179
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
180
|
+
*/
|
|
105
181
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_TITLE = 'title' as keyof Get_ContactsBycontactId_Response_V1;
|
|
106
182
|
|
|
183
|
+
/**
|
|
184
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
185
|
+
*/
|
|
107
186
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEYS = [
|
|
108
187
|
GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_CITY,
|
|
109
188
|
GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_CONTACT_ID,
|
|
@@ -124,15 +203,42 @@ export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEYS = [
|
|
|
124
203
|
GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_TITLE,
|
|
125
204
|
] as const;
|
|
126
205
|
|
|
206
|
+
/**
|
|
207
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
208
|
+
*/
|
|
127
209
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_CANCELED_ON = 'canceled_on' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
210
|
+
/**
|
|
211
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
212
|
+
*/
|
|
128
213
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_CONTACT_ID = 'contact_id' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
214
|
+
/**
|
|
215
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
216
|
+
*/
|
|
129
217
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_CONTACT_VERIFICATION_ID = 'contact_verification_id' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
218
|
+
/**
|
|
219
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
220
|
+
*/
|
|
130
221
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
222
|
+
/**
|
|
223
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
224
|
+
*/
|
|
131
225
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_STATUS = 'status' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
226
|
+
/**
|
|
227
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
228
|
+
*/
|
|
132
229
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_TYPE = 'type' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
230
|
+
/**
|
|
231
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
232
|
+
*/
|
|
133
233
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
234
|
+
/**
|
|
235
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
236
|
+
*/
|
|
134
237
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_VERIFIED_ON = 'verified_on' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
135
238
|
|
|
239
|
+
/**
|
|
240
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
241
|
+
*/
|
|
136
242
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEYS = [
|
|
137
243
|
GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_CANCELED_ON,
|
|
138
244
|
GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_CONTACT_ID,
|
|
@@ -144,20 +250,62 @@ export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEYS = [
|
|
|
144
250
|
GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_VERIFIED_ON,
|
|
145
251
|
] as const;
|
|
146
252
|
|
|
253
|
+
/**
|
|
254
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
255
|
+
*/
|
|
147
256
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_CITY = 'city' as keyof Get_ContactsVerification_Response_V1;
|
|
257
|
+
/**
|
|
258
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
259
|
+
*/
|
|
148
260
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_COUNTRY = 'country' as keyof Get_ContactsVerification_Response_V1;
|
|
261
|
+
/**
|
|
262
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
263
|
+
*/
|
|
149
264
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_DISCLOSE = 'disclose' as keyof Get_ContactsVerification_Response_V1;
|
|
265
|
+
/**
|
|
266
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
267
|
+
*/
|
|
150
268
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_EMAIL = 'email' as keyof Get_ContactsVerification_Response_V1;
|
|
269
|
+
/**
|
|
270
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
271
|
+
*/
|
|
151
272
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_FAX = 'fax' as keyof Get_ContactsVerification_Response_V1;
|
|
273
|
+
/**
|
|
274
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
275
|
+
*/
|
|
152
276
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_FIRST_NAME = 'first_name' as keyof Get_ContactsVerification_Response_V1;
|
|
277
|
+
/**
|
|
278
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
279
|
+
*/
|
|
153
280
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_LAST_NAME = 'last_name' as keyof Get_ContactsVerification_Response_V1;
|
|
281
|
+
/**
|
|
282
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
283
|
+
*/
|
|
154
284
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_ORG = 'org' as keyof Get_ContactsVerification_Response_V1;
|
|
285
|
+
/**
|
|
286
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
287
|
+
*/
|
|
155
288
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_PHONE = 'phone' as keyof Get_ContactsVerification_Response_V1;
|
|
289
|
+
/**
|
|
290
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
291
|
+
*/
|
|
156
292
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_POSTAL_CODE = 'postal_code' as keyof Get_ContactsVerification_Response_V1;
|
|
293
|
+
/**
|
|
294
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
295
|
+
*/
|
|
157
296
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_STATE = 'state' as keyof Get_ContactsVerification_Response_V1;
|
|
297
|
+
/**
|
|
298
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
299
|
+
*/
|
|
158
300
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_STREET = 'street' as keyof Get_ContactsVerification_Response_V1;
|
|
301
|
+
/**
|
|
302
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
303
|
+
*/
|
|
159
304
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_TITLE = 'title' as keyof Get_ContactsVerification_Response_V1;
|
|
160
305
|
|
|
306
|
+
/**
|
|
307
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
308
|
+
*/
|
|
161
309
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEYS = [
|
|
162
310
|
GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_CITY,
|
|
163
311
|
GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_COUNTRY,
|
|
@@ -174,19 +322,43 @@ export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEYS = [
|
|
|
174
322
|
GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_TITLE,
|
|
175
323
|
] as const;
|
|
176
324
|
|
|
325
|
+
/**
|
|
326
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
327
|
+
*/
|
|
177
328
|
export const GET_DNS_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_Dns_Response_V1;
|
|
329
|
+
/**
|
|
330
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
331
|
+
*/
|
|
178
332
|
export const GET_DNS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Dns_Response_V1;
|
|
179
333
|
|
|
334
|
+
/**
|
|
335
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
336
|
+
*/
|
|
180
337
|
export const GET_DNS_RESPONSE_V1_KEYS = [
|
|
181
338
|
GET_DNS_RESPONSE_V1_KEY_PAGINATION,
|
|
182
339
|
GET_DNS_RESPONSE_V1_KEY_RESULTS,
|
|
183
340
|
] as const;
|
|
184
341
|
|
|
342
|
+
/**
|
|
343
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
344
|
+
*/
|
|
185
345
|
export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_DNSSEC_STATUS = 'dnssec_status' as keyof Get_DnsByzoneName_Response_V1;
|
|
346
|
+
/**
|
|
347
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
348
|
+
*/
|
|
186
349
|
export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_DOMAIN_PARTS = 'domain_parts' as keyof Get_DnsByzoneName_Response_V1;
|
|
350
|
+
/**
|
|
351
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
352
|
+
*/
|
|
187
353
|
export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_NAME = 'name' as keyof Get_DnsByzoneName_Response_V1;
|
|
354
|
+
/**
|
|
355
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
356
|
+
*/
|
|
188
357
|
export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_RRSETS = 'rrsets' as keyof Get_DnsByzoneName_Response_V1;
|
|
189
358
|
|
|
359
|
+
/**
|
|
360
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
361
|
+
*/
|
|
190
362
|
export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEYS = [
|
|
191
363
|
GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_DNSSEC_STATUS,
|
|
192
364
|
GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_DOMAIN_PARTS,
|
|
@@ -194,35 +366,107 @@ export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEYS = [
|
|
|
194
366
|
GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_RRSETS,
|
|
195
367
|
] as const;
|
|
196
368
|
|
|
369
|
+
/**
|
|
370
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
371
|
+
*/
|
|
197
372
|
export const GET_DOMAINS_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_Domains_Response_V1;
|
|
373
|
+
/**
|
|
374
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
375
|
+
*/
|
|
198
376
|
export const GET_DOMAINS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Domains_Response_V1;
|
|
199
377
|
|
|
378
|
+
/**
|
|
379
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
380
|
+
*/
|
|
200
381
|
export const GET_DOMAINS_RESPONSE_V1_KEYS = [
|
|
201
382
|
GET_DOMAINS_RESPONSE_V1_KEY_PAGINATION,
|
|
202
383
|
GET_DOMAINS_RESPONSE_V1_KEY_RESULTS,
|
|
203
384
|
] as const;
|
|
204
385
|
|
|
386
|
+
/**
|
|
387
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
388
|
+
*/
|
|
205
389
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE = 'auth_code' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
390
|
+
/**
|
|
391
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
392
|
+
*/
|
|
206
393
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON = 'auth_code_expires_on' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
394
|
+
/**
|
|
395
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
396
|
+
*/
|
|
207
397
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_CANCELED_ON = 'canceled_on' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
398
|
+
/**
|
|
399
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
400
|
+
*/
|
|
208
401
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_CONTACTS = 'contacts' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
402
|
+
/**
|
|
403
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
404
|
+
*/
|
|
209
405
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
406
|
+
/**
|
|
407
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
408
|
+
*/
|
|
210
409
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
410
|
+
/**
|
|
411
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
412
|
+
*/
|
|
211
413
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_DOMAIN_ID = 'domain_id' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
414
|
+
/**
|
|
415
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
416
|
+
*/
|
|
212
417
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_EXPIRES_ON = 'expires_on' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
418
|
+
/**
|
|
419
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
420
|
+
*/
|
|
213
421
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_NAME = 'name' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
422
|
+
/**
|
|
423
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
424
|
+
*/
|
|
214
425
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_NAMESERVERS = 'nameservers' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
426
|
+
/**
|
|
427
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
428
|
+
*/
|
|
215
429
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_OWNER_ID = 'owner_id' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
430
|
+
/**
|
|
431
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
432
|
+
*/
|
|
216
433
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_REGISTERED_ON = 'registered_on' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
434
|
+
/**
|
|
435
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
436
|
+
*/
|
|
217
437
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_REGISTRY_ACCOUNT_ID = 'registry_account_id' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
438
|
+
/**
|
|
439
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
440
|
+
*/
|
|
218
441
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_REGISTRY_STATUSES = 'registry_statuses' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
442
|
+
/**
|
|
443
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
444
|
+
*/
|
|
219
445
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_RENEWAL_MODE = 'renewal_mode' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
446
|
+
/**
|
|
447
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
448
|
+
*/
|
|
220
449
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_ROID = 'roid' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
450
|
+
/**
|
|
451
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
452
|
+
*/
|
|
221
453
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_SLD = 'sld' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
454
|
+
/**
|
|
455
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
456
|
+
*/
|
|
222
457
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_TLD = 'tld' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
458
|
+
/**
|
|
459
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
460
|
+
*/
|
|
223
461
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_TRANSFER_LOCK = 'transfer_lock' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
462
|
+
/**
|
|
463
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
464
|
+
*/
|
|
224
465
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
225
466
|
|
|
467
|
+
/**
|
|
468
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
469
|
+
*/
|
|
226
470
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEYS = [
|
|
227
471
|
GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE,
|
|
228
472
|
GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -246,43 +490,97 @@ export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEYS = [
|
|
|
246
490
|
GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_UPDATED_ON,
|
|
247
491
|
] as const;
|
|
248
492
|
|
|
493
|
+
/**
|
|
494
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
495
|
+
*/
|
|
249
496
|
export const GET_DOMAINS_CHECK_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_DomainsCheck_Response_V1;
|
|
250
497
|
|
|
498
|
+
/**
|
|
499
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
500
|
+
*/
|
|
251
501
|
export const GET_DOMAINS_CHECK_RESPONSE_V1_KEYS = [
|
|
252
502
|
GET_DOMAINS_CHECK_RESPONSE_V1_KEY_RESULTS,
|
|
253
503
|
] as const;
|
|
254
504
|
|
|
505
|
+
/**
|
|
506
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
507
|
+
*/
|
|
255
508
|
export const GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEY_META = 'meta' as keyof Get_DomainSearchSuggest_Response_V1;
|
|
509
|
+
/**
|
|
510
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
511
|
+
*/
|
|
256
512
|
export const GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_DomainSearchSuggest_Response_V1;
|
|
257
513
|
|
|
514
|
+
/**
|
|
515
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
516
|
+
*/
|
|
258
517
|
export const GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEYS = [
|
|
259
518
|
GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEY_META,
|
|
260
519
|
GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEY_RESULTS,
|
|
261
520
|
] as const;
|
|
262
521
|
|
|
522
|
+
/**
|
|
523
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
524
|
+
*/
|
|
263
525
|
export const GET_DOMAINS_SUMMARY_RESPONSE_V1_KEY_DOMAINS = 'domains' as keyof Get_DomainsSummary_Response_V1;
|
|
526
|
+
/**
|
|
527
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
528
|
+
*/
|
|
264
529
|
export const GET_DOMAINS_SUMMARY_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Get_DomainsSummary_Response_V1;
|
|
265
530
|
|
|
531
|
+
/**
|
|
532
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
533
|
+
*/
|
|
266
534
|
export const GET_DOMAINS_SUMMARY_RESPONSE_V1_KEYS = [
|
|
267
535
|
GET_DOMAINS_SUMMARY_RESPONSE_V1_KEY_DOMAINS,
|
|
268
536
|
GET_DOMAINS_SUMMARY_RESPONSE_V1_KEY_ORGANIZATION_ID,
|
|
269
537
|
] as const;
|
|
270
538
|
|
|
539
|
+
/**
|
|
540
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
541
|
+
*/
|
|
271
542
|
export const GET_EMAIL_FORWARDS_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_EmailForwards_Response_V1;
|
|
543
|
+
/**
|
|
544
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
545
|
+
*/
|
|
272
546
|
export const GET_EMAIL_FORWARDS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_EmailForwards_Response_V1;
|
|
273
547
|
|
|
548
|
+
/**
|
|
549
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
550
|
+
*/
|
|
274
551
|
export const GET_EMAIL_FORWARDS_RESPONSE_V1_KEYS = [
|
|
275
552
|
GET_EMAIL_FORWARDS_RESPONSE_V1_KEY_PAGINATION,
|
|
276
553
|
GET_EMAIL_FORWARDS_RESPONSE_V1_KEY_RESULTS,
|
|
277
554
|
] as const;
|
|
278
555
|
|
|
556
|
+
/**
|
|
557
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
558
|
+
*/
|
|
279
559
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_EmailForwardsByemailForwardId_Response_V1;
|
|
560
|
+
/**
|
|
561
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
562
|
+
*/
|
|
280
563
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_EMAIL_FORWARD_ID = 'email_forward_id' as keyof Get_EmailForwardsByemailForwardId_Response_V1;
|
|
564
|
+
/**
|
|
565
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
566
|
+
*/
|
|
281
567
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_SOURCE_ADDRESS = 'source_address' as keyof Get_EmailForwardsByemailForwardId_Response_V1;
|
|
568
|
+
/**
|
|
569
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
570
|
+
*/
|
|
282
571
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_STATUS = 'status' as keyof Get_EmailForwardsByemailForwardId_Response_V1;
|
|
572
|
+
/**
|
|
573
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
574
|
+
*/
|
|
283
575
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_TARGET_ADDRESS = 'target_address' as keyof Get_EmailForwardsByemailForwardId_Response_V1;
|
|
576
|
+
/**
|
|
577
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
578
|
+
*/
|
|
284
579
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Get_EmailForwardsByemailForwardId_Response_V1;
|
|
285
580
|
|
|
581
|
+
/**
|
|
582
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
583
|
+
*/
|
|
286
584
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEYS = [
|
|
287
585
|
GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
288
586
|
GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_EMAIL_FORWARD_ID,
|
|
@@ -292,27 +590,75 @@ export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEYS = [
|
|
|
292
590
|
GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_UPDATED_ON,
|
|
293
591
|
] as const;
|
|
294
592
|
|
|
593
|
+
/**
|
|
594
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
595
|
+
*/
|
|
295
596
|
export const GET_EVENT_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_Event_Response_V1;
|
|
597
|
+
/**
|
|
598
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
599
|
+
*/
|
|
296
600
|
export const GET_EVENT_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Event_Response_V1;
|
|
297
601
|
|
|
602
|
+
/**
|
|
603
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
604
|
+
*/
|
|
298
605
|
export const GET_EVENT_RESPONSE_V1_KEYS = [
|
|
299
606
|
GET_EVENT_RESPONSE_V1_KEY_PAGINATION,
|
|
300
607
|
GET_EVENT_RESPONSE_V1_KEY_RESULTS,
|
|
301
608
|
] as const;
|
|
302
609
|
|
|
610
|
+
/**
|
|
611
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
612
|
+
*/
|
|
303
613
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_ACKNOWLEDGED_ON = 'acknowledged_on' as keyof Get_EventByeventId_Response_V1;
|
|
614
|
+
/**
|
|
615
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
616
|
+
*/
|
|
304
617
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_EventByeventId_Response_V1;
|
|
618
|
+
/**
|
|
619
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
620
|
+
*/
|
|
305
621
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_EVENT_DATA = 'event_data' as keyof Get_EventByeventId_Response_V1;
|
|
622
|
+
/**
|
|
623
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
624
|
+
*/
|
|
306
625
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_EVENT_ID = 'event_id' as keyof Get_EventByeventId_Response_V1;
|
|
626
|
+
/**
|
|
627
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
628
|
+
*/
|
|
307
629
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_MESSAGE_QUEUE_ID = 'message_queue_id' as keyof Get_EventByeventId_Response_V1;
|
|
630
|
+
/**
|
|
631
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
632
|
+
*/
|
|
308
633
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_OBJECT_ID = 'object_id' as keyof Get_EventByeventId_Response_V1;
|
|
634
|
+
/**
|
|
635
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
636
|
+
*/
|
|
309
637
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_OBJECT_TYPE = 'object_type' as keyof Get_EventByeventId_Response_V1;
|
|
638
|
+
/**
|
|
639
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
640
|
+
*/
|
|
310
641
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_SOURCE = 'source' as keyof Get_EventByeventId_Response_V1;
|
|
642
|
+
/**
|
|
643
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
644
|
+
*/
|
|
311
645
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_SOURCE_EVENT_ID = 'source_event_id' as keyof Get_EventByeventId_Response_V1;
|
|
646
|
+
/**
|
|
647
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
648
|
+
*/
|
|
312
649
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_SUBTYPE = 'subtype' as keyof Get_EventByeventId_Response_V1;
|
|
650
|
+
/**
|
|
651
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
652
|
+
*/
|
|
313
653
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_TARGET = 'target' as keyof Get_EventByeventId_Response_V1;
|
|
654
|
+
/**
|
|
655
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
656
|
+
*/
|
|
314
657
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_TYPE = 'type' as keyof Get_EventByeventId_Response_V1;
|
|
315
658
|
|
|
659
|
+
/**
|
|
660
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
661
|
+
*/
|
|
316
662
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEYS = [
|
|
317
663
|
GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_ACKNOWLEDGED_ON,
|
|
318
664
|
GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
@@ -328,22 +674,55 @@ export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEYS = [
|
|
|
328
674
|
GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_TYPE,
|
|
329
675
|
] as const;
|
|
330
676
|
|
|
677
|
+
/**
|
|
678
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
679
|
+
*/
|
|
331
680
|
export const GET_NOTIFICATIONS_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_Notifications_Response_V1;
|
|
681
|
+
/**
|
|
682
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
683
|
+
*/
|
|
332
684
|
export const GET_NOTIFICATIONS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Notifications_Response_V1;
|
|
333
685
|
|
|
686
|
+
/**
|
|
687
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
688
|
+
*/
|
|
334
689
|
export const GET_NOTIFICATIONS_RESPONSE_V1_KEYS = [
|
|
335
690
|
GET_NOTIFICATIONS_RESPONSE_V1_KEY_PAGINATION,
|
|
336
691
|
GET_NOTIFICATIONS_RESPONSE_V1_KEY_RESULTS,
|
|
337
692
|
] as const;
|
|
338
693
|
|
|
694
|
+
/**
|
|
695
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
696
|
+
*/
|
|
339
697
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_NotificationsBynotificationId_Response_V1;
|
|
698
|
+
/**
|
|
699
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
700
|
+
*/
|
|
340
701
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_NOTIFICATION = 'notification' as keyof Get_NotificationsBynotificationId_Response_V1;
|
|
702
|
+
/**
|
|
703
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
704
|
+
*/
|
|
341
705
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_NOTIFICATION_ID = 'notification_id' as keyof Get_NotificationsBynotificationId_Response_V1;
|
|
706
|
+
/**
|
|
707
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
708
|
+
*/
|
|
342
709
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_STATUS = 'status' as keyof Get_NotificationsBynotificationId_Response_V1;
|
|
710
|
+
/**
|
|
711
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
712
|
+
*/
|
|
343
713
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Get_NotificationsBynotificationId_Response_V1;
|
|
714
|
+
/**
|
|
715
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
716
|
+
*/
|
|
344
717
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_USER_ID = 'user_id' as keyof Get_NotificationsBynotificationId_Response_V1;
|
|
718
|
+
/**
|
|
719
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
720
|
+
*/
|
|
345
721
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_USER_NOTIFICATION_ID = 'user_notification_id' as keyof Get_NotificationsBynotificationId_Response_V1;
|
|
346
722
|
|
|
723
|
+
/**
|
|
724
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
725
|
+
*/
|
|
347
726
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEYS = [
|
|
348
727
|
GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
349
728
|
GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_NOTIFICATION,
|
|
@@ -354,36 +733,111 @@ export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEYS = [
|
|
|
354
733
|
GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_USER_NOTIFICATION_ID,
|
|
355
734
|
] as const;
|
|
356
735
|
|
|
736
|
+
/**
|
|
737
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
738
|
+
*/
|
|
357
739
|
export const GET_ORGANIZATIONS_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_Organizations_Response_V1;
|
|
740
|
+
/**
|
|
741
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
742
|
+
*/
|
|
358
743
|
export const GET_ORGANIZATIONS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Organizations_Response_V1;
|
|
359
744
|
|
|
745
|
+
/**
|
|
746
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
747
|
+
*/
|
|
360
748
|
export const GET_ORGANIZATIONS_RESPONSE_V1_KEYS = [
|
|
361
749
|
GET_ORGANIZATIONS_RESPONSE_V1_KEY_PAGINATION,
|
|
362
750
|
GET_ORGANIZATIONS_RESPONSE_V1_KEY_RESULTS,
|
|
363
751
|
] as const;
|
|
364
752
|
|
|
753
|
+
/**
|
|
754
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
755
|
+
*/
|
|
365
756
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_ADDRESS_1 = 'address_1' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
757
|
+
/**
|
|
758
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
759
|
+
*/
|
|
366
760
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_ADDRESS_2 = 'address_2' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
761
|
+
/**
|
|
762
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
763
|
+
*/
|
|
367
764
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_ATTRIBUTES = 'attributes' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
765
|
+
/**
|
|
766
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
767
|
+
*/
|
|
368
768
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_BUSINESS_NUMBER = 'business_number' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
769
|
+
/**
|
|
770
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
771
|
+
*/
|
|
369
772
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_CITY = 'city' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
773
|
+
/**
|
|
774
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
775
|
+
*/
|
|
370
776
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_COUNTRY_CODE = 'country_code' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
777
|
+
/**
|
|
778
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
779
|
+
*/
|
|
371
780
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
781
|
+
/**
|
|
782
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
783
|
+
*/
|
|
372
784
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_CURRENCY = 'currency' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
785
|
+
/**
|
|
786
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
787
|
+
*/
|
|
373
788
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_DEFAULT_LOCALE = 'default_locale' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
789
|
+
/**
|
|
790
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
791
|
+
*/
|
|
374
792
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
793
|
+
/**
|
|
794
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
795
|
+
*/
|
|
375
796
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_NAME = 'name' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
797
|
+
/**
|
|
798
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
799
|
+
*/
|
|
376
800
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
801
|
+
/**
|
|
802
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
803
|
+
*/
|
|
377
804
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_PARENT_ORGANIZATION_ID = 'parent_organization_id' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
805
|
+
/**
|
|
806
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
807
|
+
*/
|
|
378
808
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_PLAN = 'plan' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
809
|
+
/**
|
|
810
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
811
|
+
*/
|
|
379
812
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_POSTAL_CODE = 'postal_code' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
813
|
+
/**
|
|
814
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
815
|
+
*/
|
|
380
816
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_STATE = 'state' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
817
|
+
/**
|
|
818
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
819
|
+
*/
|
|
381
820
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_STATUS = 'status' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
821
|
+
/**
|
|
822
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
823
|
+
*/
|
|
382
824
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_TAX_ID = 'tax_id' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
825
|
+
/**
|
|
826
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
827
|
+
*/
|
|
383
828
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_TAX_ID_TYPE = 'tax_id_type' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
829
|
+
/**
|
|
830
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
831
|
+
*/
|
|
384
832
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_TAX_RATE = 'tax_rate' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
833
|
+
/**
|
|
834
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
835
|
+
*/
|
|
385
836
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_USERS = 'users' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
386
837
|
|
|
838
|
+
/**
|
|
839
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
840
|
+
*/
|
|
387
841
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEYS = [
|
|
388
842
|
GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_ADDRESS_1,
|
|
389
843
|
GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_ADDRESS_2,
|
|
@@ -408,12 +862,30 @@ export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEYS = [
|
|
|
408
862
|
GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_USERS,
|
|
409
863
|
] as const;
|
|
410
864
|
|
|
865
|
+
/**
|
|
866
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
867
|
+
*/
|
|
411
868
|
export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
869
|
+
/**
|
|
870
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
871
|
+
*/
|
|
412
872
|
export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_IP_NETWORK = 'ip_network' as keyof Get_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
873
|
+
/**
|
|
874
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
875
|
+
*/
|
|
413
876
|
export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_IP_RESTRICTION_ID = 'ip_restriction_id' as keyof Get_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
877
|
+
/**
|
|
878
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
879
|
+
*/
|
|
414
880
|
export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_LAST_USED_ON = 'last_used_on' as keyof Get_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
881
|
+
/**
|
|
882
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
883
|
+
*/
|
|
415
884
|
export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Get_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
416
885
|
|
|
886
|
+
/**
|
|
887
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
888
|
+
*/
|
|
417
889
|
export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEYS = [
|
|
418
890
|
GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
419
891
|
GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_IP_NETWORK,
|
|
@@ -422,28 +894,79 @@ export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_K
|
|
|
422
894
|
GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID,
|
|
423
895
|
] as const;
|
|
424
896
|
|
|
897
|
+
/**
|
|
898
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
899
|
+
*/
|
|
425
900
|
export const GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEY_PAGINATION = 'pagination' as keyof Get_OrganizationsUsers_Response_V1;
|
|
901
|
+
/**
|
|
902
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
903
|
+
*/
|
|
426
904
|
export const GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_OrganizationsUsers_Response_V1;
|
|
427
905
|
|
|
906
|
+
/**
|
|
907
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
908
|
+
*/
|
|
428
909
|
export const GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEYS = [
|
|
429
910
|
GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEY_PAGINATION,
|
|
430
911
|
GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEY_RESULTS,
|
|
431
912
|
] as const;
|
|
432
913
|
|
|
914
|
+
/**
|
|
915
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
916
|
+
*/
|
|
433
917
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_UsersByuserId_Response_V1;
|
|
918
|
+
/**
|
|
919
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
920
|
+
*/
|
|
434
921
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Get_UsersByuserId_Response_V1;
|
|
922
|
+
/**
|
|
923
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
924
|
+
*/
|
|
435
925
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_EMAIL = 'email' as keyof Get_UsersByuserId_Response_V1;
|
|
926
|
+
/**
|
|
927
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
928
|
+
*/
|
|
436
929
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_FIRST_NAME = 'first_name' as keyof Get_UsersByuserId_Response_V1;
|
|
930
|
+
/**
|
|
931
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
932
|
+
*/
|
|
437
933
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_LAST_NAME = 'last_name' as keyof Get_UsersByuserId_Response_V1;
|
|
934
|
+
/**
|
|
935
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
936
|
+
*/
|
|
438
937
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_LOCALE = 'locale' as keyof Get_UsersByuserId_Response_V1;
|
|
938
|
+
/**
|
|
939
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
940
|
+
*/
|
|
439
941
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Get_UsersByuserId_Response_V1;
|
|
942
|
+
/**
|
|
943
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
944
|
+
*/
|
|
440
945
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_PHONE = 'phone' as keyof Get_UsersByuserId_Response_V1;
|
|
946
|
+
/**
|
|
947
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
948
|
+
*/
|
|
441
949
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_STATUS = 'status' as keyof Get_UsersByuserId_Response_V1;
|
|
950
|
+
/**
|
|
951
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
952
|
+
*/
|
|
442
953
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Get_UsersByuserId_Response_V1;
|
|
954
|
+
/**
|
|
955
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
956
|
+
*/
|
|
443
957
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_USER_ATTRIBUTES = 'user_attributes' as keyof Get_UsersByuserId_Response_V1;
|
|
958
|
+
/**
|
|
959
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
960
|
+
*/
|
|
444
961
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_USER_ID = 'user_id' as keyof Get_UsersByuserId_Response_V1;
|
|
962
|
+
/**
|
|
963
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
964
|
+
*/
|
|
445
965
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_USERNAME = 'username' as keyof Get_UsersByuserId_Response_V1;
|
|
446
966
|
|
|
967
|
+
/**
|
|
968
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
969
|
+
*/
|
|
447
970
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEYS = [
|
|
448
971
|
GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
449
972
|
GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_DELETED_ON,
|
|
@@ -460,34 +983,94 @@ export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEYS = [
|
|
|
460
983
|
GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_USERNAME,
|
|
461
984
|
] as const;
|
|
462
985
|
|
|
986
|
+
/**
|
|
987
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
988
|
+
*/
|
|
463
989
|
export const GET_USERS_BYUSER_ID_PERMISSIONS_RESPONSE_V1_KEY_PERMISSIONS = 'permissions' as keyof Get_UsersByuserIdPermissions_Response_V1;
|
|
464
990
|
|
|
991
|
+
/**
|
|
992
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
993
|
+
*/
|
|
465
994
|
export const GET_USERS_BYUSER_ID_PERMISSIONS_RESPONSE_V1_KEYS = [
|
|
466
995
|
GET_USERS_BYUSER_ID_PERMISSIONS_RESPONSE_V1_KEY_PERMISSIONS,
|
|
467
996
|
] as const;
|
|
468
997
|
|
|
998
|
+
/**
|
|
999
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1000
|
+
*/
|
|
469
1001
|
export const GET_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEY_RELATIONS = 'relations' as keyof Get_UsersByuserIdRoles_Response_V1;
|
|
470
1002
|
|
|
1003
|
+
/**
|
|
1004
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1005
|
+
*/
|
|
471
1006
|
export const GET_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEYS = [
|
|
472
1007
|
GET_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEY_RELATIONS,
|
|
473
1008
|
] as const;
|
|
474
1009
|
|
|
1010
|
+
/**
|
|
1011
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1012
|
+
*/
|
|
475
1013
|
export const GET_USERS_ME_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Get_UsersMe_Response_V1;
|
|
1014
|
+
/**
|
|
1015
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1016
|
+
*/
|
|
476
1017
|
export const GET_USERS_ME_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Get_UsersMe_Response_V1;
|
|
1018
|
+
/**
|
|
1019
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1020
|
+
*/
|
|
477
1021
|
export const GET_USERS_ME_RESPONSE_V1_KEY_EMAIL = 'email' as keyof Get_UsersMe_Response_V1;
|
|
1022
|
+
/**
|
|
1023
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1024
|
+
*/
|
|
478
1025
|
export const GET_USERS_ME_RESPONSE_V1_KEY_FIRST_NAME = 'first_name' as keyof Get_UsersMe_Response_V1;
|
|
1026
|
+
/**
|
|
1027
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1028
|
+
*/
|
|
479
1029
|
export const GET_USERS_ME_RESPONSE_V1_KEY_LAST_NAME = 'last_name' as keyof Get_UsersMe_Response_V1;
|
|
1030
|
+
/**
|
|
1031
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1032
|
+
*/
|
|
480
1033
|
export const GET_USERS_ME_RESPONSE_V1_KEY_LOCALE = 'locale' as keyof Get_UsersMe_Response_V1;
|
|
1034
|
+
/**
|
|
1035
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1036
|
+
*/
|
|
481
1037
|
export const GET_USERS_ME_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Get_UsersMe_Response_V1;
|
|
1038
|
+
/**
|
|
1039
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1040
|
+
*/
|
|
482
1041
|
export const GET_USERS_ME_RESPONSE_V1_KEY_PERMISSIONS = 'permissions' as keyof Get_UsersMe_Response_V1;
|
|
1042
|
+
/**
|
|
1043
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1044
|
+
*/
|
|
483
1045
|
export const GET_USERS_ME_RESPONSE_V1_KEY_PHONE = 'phone' as keyof Get_UsersMe_Response_V1;
|
|
1046
|
+
/**
|
|
1047
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1048
|
+
*/
|
|
484
1049
|
export const GET_USERS_ME_RESPONSE_V1_KEY_RELATIONS = 'relations' as keyof Get_UsersMe_Response_V1;
|
|
1050
|
+
/**
|
|
1051
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1052
|
+
*/
|
|
485
1053
|
export const GET_USERS_ME_RESPONSE_V1_KEY_STATUS = 'status' as keyof Get_UsersMe_Response_V1;
|
|
1054
|
+
/**
|
|
1055
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1056
|
+
*/
|
|
486
1057
|
export const GET_USERS_ME_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Get_UsersMe_Response_V1;
|
|
1058
|
+
/**
|
|
1059
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1060
|
+
*/
|
|
487
1061
|
export const GET_USERS_ME_RESPONSE_V1_KEY_USER_ATTRIBUTES = 'user_attributes' as keyof Get_UsersMe_Response_V1;
|
|
1062
|
+
/**
|
|
1063
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1064
|
+
*/
|
|
488
1065
|
export const GET_USERS_ME_RESPONSE_V1_KEY_USER_ID = 'user_id' as keyof Get_UsersMe_Response_V1;
|
|
1066
|
+
/**
|
|
1067
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1068
|
+
*/
|
|
489
1069
|
export const GET_USERS_ME_RESPONSE_V1_KEY_USERNAME = 'username' as keyof Get_UsersMe_Response_V1;
|
|
490
1070
|
|
|
1071
|
+
/**
|
|
1072
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1073
|
+
*/
|
|
491
1074
|
export const GET_USERS_ME_RESPONSE_V1_KEYS = [
|
|
492
1075
|
GET_USERS_ME_RESPONSE_V1_KEY_CREATED_ON,
|
|
493
1076
|
GET_USERS_ME_RESPONSE_V1_KEY_DELETED_ON,
|
|
@@ -506,27 +1089,90 @@ export const GET_USERS_ME_RESPONSE_V1_KEYS = [
|
|
|
506
1089
|
GET_USERS_ME_RESPONSE_V1_KEY_USERNAME,
|
|
507
1090
|
] as const;
|
|
508
1091
|
|
|
1092
|
+
/**
|
|
1093
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1094
|
+
*/
|
|
509
1095
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE = 'auth_code' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1096
|
+
/**
|
|
1097
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1098
|
+
*/
|
|
510
1099
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON = 'auth_code_expires_on' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1100
|
+
/**
|
|
1101
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1102
|
+
*/
|
|
511
1103
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_CANCELED_ON = 'canceled_on' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1104
|
+
/**
|
|
1105
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1106
|
+
*/
|
|
512
1107
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_CONTACTS = 'contacts' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1108
|
+
/**
|
|
1109
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1110
|
+
*/
|
|
513
1111
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1112
|
+
/**
|
|
1113
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1114
|
+
*/
|
|
514
1115
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1116
|
+
/**
|
|
1117
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1118
|
+
*/
|
|
515
1119
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_DOMAIN_ID = 'domain_id' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1120
|
+
/**
|
|
1121
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1122
|
+
*/
|
|
516
1123
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_EXPIRES_ON = 'expires_on' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1124
|
+
/**
|
|
1125
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1126
|
+
*/
|
|
517
1127
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_NAME = 'name' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1128
|
+
/**
|
|
1129
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1130
|
+
*/
|
|
518
1131
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_NAMESERVERS = 'nameservers' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1132
|
+
/**
|
|
1133
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1134
|
+
*/
|
|
519
1135
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_OWNER_ID = 'owner_id' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1136
|
+
/**
|
|
1137
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1138
|
+
*/
|
|
520
1139
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_REGISTERED_ON = 'registered_on' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1140
|
+
/**
|
|
1141
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1142
|
+
*/
|
|
521
1143
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_REGISTRY_ACCOUNT_ID = 'registry_account_id' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1144
|
+
/**
|
|
1145
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1146
|
+
*/
|
|
522
1147
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_REGISTRY_STATUSES = 'registry_statuses' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1148
|
+
/**
|
|
1149
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1150
|
+
*/
|
|
523
1151
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_RENEWAL_MODE = 'renewal_mode' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1152
|
+
/**
|
|
1153
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1154
|
+
*/
|
|
524
1155
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_ROID = 'roid' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1156
|
+
/**
|
|
1157
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1158
|
+
*/
|
|
525
1159
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_SLD = 'sld' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1160
|
+
/**
|
|
1161
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1162
|
+
*/
|
|
526
1163
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_TLD = 'tld' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1164
|
+
/**
|
|
1165
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1166
|
+
*/
|
|
527
1167
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_TRANSFER_LOCK = 'transfer_lock' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
1168
|
+
/**
|
|
1169
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1170
|
+
*/
|
|
528
1171
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
529
1172
|
|
|
1173
|
+
/**
|
|
1174
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1175
|
+
*/
|
|
530
1176
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEYS = [
|
|
531
1177
|
PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE,
|
|
532
1178
|
PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -550,13 +1196,34 @@ export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEYS = [
|
|
|
550
1196
|
PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_UPDATED_ON,
|
|
551
1197
|
] as const;
|
|
552
1198
|
|
|
1199
|
+
/**
|
|
1200
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1201
|
+
*/
|
|
553
1202
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Patch_EmailForwardsByemailForwardId_Response_V1;
|
|
1203
|
+
/**
|
|
1204
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1205
|
+
*/
|
|
554
1206
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_EMAIL_FORWARD_ID = 'email_forward_id' as keyof Patch_EmailForwardsByemailForwardId_Response_V1;
|
|
1207
|
+
/**
|
|
1208
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1209
|
+
*/
|
|
555
1210
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_SOURCE_ADDRESS = 'source_address' as keyof Patch_EmailForwardsByemailForwardId_Response_V1;
|
|
1211
|
+
/**
|
|
1212
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1213
|
+
*/
|
|
556
1214
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_STATUS = 'status' as keyof Patch_EmailForwardsByemailForwardId_Response_V1;
|
|
1215
|
+
/**
|
|
1216
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1217
|
+
*/
|
|
557
1218
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_TARGET_ADDRESS = 'target_address' as keyof Patch_EmailForwardsByemailForwardId_Response_V1;
|
|
1219
|
+
/**
|
|
1220
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1221
|
+
*/
|
|
558
1222
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Patch_EmailForwardsByemailForwardId_Response_V1;
|
|
559
1223
|
|
|
1224
|
+
/**
|
|
1225
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1226
|
+
*/
|
|
560
1227
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEYS = [
|
|
561
1228
|
PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
562
1229
|
PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_EMAIL_FORWARD_ID,
|
|
@@ -566,28 +1233,94 @@ export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEYS = [
|
|
|
566
1233
|
PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_UPDATED_ON,
|
|
567
1234
|
] as const;
|
|
568
1235
|
|
|
1236
|
+
/**
|
|
1237
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1238
|
+
*/
|
|
569
1239
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_ADDRESS_1 = 'address_1' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1240
|
+
/**
|
|
1241
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1242
|
+
*/
|
|
570
1243
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_ADDRESS_2 = 'address_2' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1244
|
+
/**
|
|
1245
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1246
|
+
*/
|
|
571
1247
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_ATTRIBUTES = 'attributes' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1248
|
+
/**
|
|
1249
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1250
|
+
*/
|
|
572
1251
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_BUSINESS_NUMBER = 'business_number' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1252
|
+
/**
|
|
1253
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1254
|
+
*/
|
|
573
1255
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_CITY = 'city' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1256
|
+
/**
|
|
1257
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1258
|
+
*/
|
|
574
1259
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_COUNTRY_CODE = 'country_code' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1260
|
+
/**
|
|
1261
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1262
|
+
*/
|
|
575
1263
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1264
|
+
/**
|
|
1265
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1266
|
+
*/
|
|
576
1267
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_CURRENCY = 'currency' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1268
|
+
/**
|
|
1269
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1270
|
+
*/
|
|
577
1271
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_DEFAULT_LOCALE = 'default_locale' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1272
|
+
/**
|
|
1273
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1274
|
+
*/
|
|
578
1275
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1276
|
+
/**
|
|
1277
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1278
|
+
*/
|
|
579
1279
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_NAME = 'name' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1280
|
+
/**
|
|
1281
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1282
|
+
*/
|
|
580
1283
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1284
|
+
/**
|
|
1285
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1286
|
+
*/
|
|
581
1287
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_PARENT_ORGANIZATION_ID = 'parent_organization_id' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1288
|
+
/**
|
|
1289
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1290
|
+
*/
|
|
582
1291
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_PLAN = 'plan' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1292
|
+
/**
|
|
1293
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1294
|
+
*/
|
|
583
1295
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_POSTAL_CODE = 'postal_code' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1296
|
+
/**
|
|
1297
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1298
|
+
*/
|
|
584
1299
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_STATE = 'state' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1300
|
+
/**
|
|
1301
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1302
|
+
*/
|
|
585
1303
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_STATUS = 'status' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1304
|
+
/**
|
|
1305
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1306
|
+
*/
|
|
586
1307
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_TAX_ID = 'tax_id' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1308
|
+
/**
|
|
1309
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1310
|
+
*/
|
|
587
1311
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_TAX_ID_TYPE = 'tax_id_type' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1312
|
+
/**
|
|
1313
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1314
|
+
*/
|
|
588
1315
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_TAX_RATE = 'tax_rate' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
1316
|
+
/**
|
|
1317
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1318
|
+
*/
|
|
589
1319
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_USERS = 'users' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
590
1320
|
|
|
1321
|
+
/**
|
|
1322
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1323
|
+
*/
|
|
591
1324
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEYS = [
|
|
592
1325
|
PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_ADDRESS_1,
|
|
593
1326
|
PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_ADDRESS_2,
|
|
@@ -612,12 +1345,30 @@ export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEYS = [
|
|
|
612
1345
|
PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_USERS,
|
|
613
1346
|
] as const;
|
|
614
1347
|
|
|
1348
|
+
/**
|
|
1349
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1350
|
+
*/
|
|
615
1351
|
export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Patch_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
1352
|
+
/**
|
|
1353
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1354
|
+
*/
|
|
616
1355
|
export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_IP_NETWORK = 'ip_network' as keyof Patch_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
1356
|
+
/**
|
|
1357
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1358
|
+
*/
|
|
617
1359
|
export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_IP_RESTRICTION_ID = 'ip_restriction_id' as keyof Patch_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
1360
|
+
/**
|
|
1361
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1362
|
+
*/
|
|
618
1363
|
export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_LAST_USED_ON = 'last_used_on' as keyof Patch_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
1364
|
+
/**
|
|
1365
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1366
|
+
*/
|
|
619
1367
|
export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Patch_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
620
1368
|
|
|
1369
|
+
/**
|
|
1370
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1371
|
+
*/
|
|
621
1372
|
export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEYS = [
|
|
622
1373
|
PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
623
1374
|
PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_IP_NETWORK,
|
|
@@ -626,20 +1377,62 @@ export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1
|
|
|
626
1377
|
PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID,
|
|
627
1378
|
] as const;
|
|
628
1379
|
|
|
1380
|
+
/**
|
|
1381
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1382
|
+
*/
|
|
629
1383
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Patch_UsersByuserId_Response_V1;
|
|
1384
|
+
/**
|
|
1385
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1386
|
+
*/
|
|
630
1387
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Patch_UsersByuserId_Response_V1;
|
|
1388
|
+
/**
|
|
1389
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1390
|
+
*/
|
|
631
1391
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_EMAIL = 'email' as keyof Patch_UsersByuserId_Response_V1;
|
|
1392
|
+
/**
|
|
1393
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1394
|
+
*/
|
|
632
1395
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_FIRST_NAME = 'first_name' as keyof Patch_UsersByuserId_Response_V1;
|
|
1396
|
+
/**
|
|
1397
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1398
|
+
*/
|
|
633
1399
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_LAST_NAME = 'last_name' as keyof Patch_UsersByuserId_Response_V1;
|
|
1400
|
+
/**
|
|
1401
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1402
|
+
*/
|
|
634
1403
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_LOCALE = 'locale' as keyof Patch_UsersByuserId_Response_V1;
|
|
1404
|
+
/**
|
|
1405
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1406
|
+
*/
|
|
635
1407
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Patch_UsersByuserId_Response_V1;
|
|
1408
|
+
/**
|
|
1409
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1410
|
+
*/
|
|
636
1411
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_PHONE = 'phone' as keyof Patch_UsersByuserId_Response_V1;
|
|
1412
|
+
/**
|
|
1413
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1414
|
+
*/
|
|
637
1415
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_STATUS = 'status' as keyof Patch_UsersByuserId_Response_V1;
|
|
1416
|
+
/**
|
|
1417
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1418
|
+
*/
|
|
638
1419
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Patch_UsersByuserId_Response_V1;
|
|
1420
|
+
/**
|
|
1421
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1422
|
+
*/
|
|
639
1423
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_USER_ATTRIBUTES = 'user_attributes' as keyof Patch_UsersByuserId_Response_V1;
|
|
1424
|
+
/**
|
|
1425
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1426
|
+
*/
|
|
640
1427
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_USER_ID = 'user_id' as keyof Patch_UsersByuserId_Response_V1;
|
|
1428
|
+
/**
|
|
1429
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1430
|
+
*/
|
|
641
1431
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_USERNAME = 'username' as keyof Patch_UsersByuserId_Response_V1;
|
|
642
1432
|
|
|
1433
|
+
/**
|
|
1434
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1435
|
+
*/
|
|
643
1436
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEYS = [
|
|
644
1437
|
PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
645
1438
|
PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_DELETED_ON,
|
|
@@ -656,30 +1449,90 @@ export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEYS = [
|
|
|
656
1449
|
PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_USERNAME,
|
|
657
1450
|
] as const;
|
|
658
1451
|
|
|
1452
|
+
/**
|
|
1453
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1454
|
+
*/
|
|
659
1455
|
export const PATCH_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEY_RELATIONS = 'relations' as keyof Patch_UsersByuserIdRoles_Response_V1;
|
|
660
1456
|
|
|
1457
|
+
/**
|
|
1458
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1459
|
+
*/
|
|
661
1460
|
export const PATCH_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEYS = [
|
|
662
1461
|
PATCH_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEY_RELATIONS,
|
|
663
1462
|
] as const;
|
|
664
1463
|
|
|
1464
|
+
/**
|
|
1465
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1466
|
+
*/
|
|
665
1467
|
export const POST_CONTACTS_RESPONSE_V1_KEY_CITY = 'city' as keyof Post_Contacts_Response_V1;
|
|
1468
|
+
/**
|
|
1469
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1470
|
+
*/
|
|
666
1471
|
export const POST_CONTACTS_RESPONSE_V1_KEY_CONTACT_ID = 'contact_id' as keyof Post_Contacts_Response_V1;
|
|
1472
|
+
/**
|
|
1473
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1474
|
+
*/
|
|
667
1475
|
export const POST_CONTACTS_RESPONSE_V1_KEY_COUNTRY = 'country' as keyof Post_Contacts_Response_V1;
|
|
1476
|
+
/**
|
|
1477
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1478
|
+
*/
|
|
668
1479
|
export const POST_CONTACTS_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Post_Contacts_Response_V1;
|
|
1480
|
+
/**
|
|
1481
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1482
|
+
*/
|
|
669
1483
|
export const POST_CONTACTS_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Post_Contacts_Response_V1;
|
|
1484
|
+
/**
|
|
1485
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1486
|
+
*/
|
|
670
1487
|
export const POST_CONTACTS_RESPONSE_V1_KEY_DISCLOSE = 'disclose' as keyof Post_Contacts_Response_V1;
|
|
1488
|
+
/**
|
|
1489
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1490
|
+
*/
|
|
671
1491
|
export const POST_CONTACTS_RESPONSE_V1_KEY_EMAIL = 'email' as keyof Post_Contacts_Response_V1;
|
|
1492
|
+
/**
|
|
1493
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1494
|
+
*/
|
|
672
1495
|
export const POST_CONTACTS_RESPONSE_V1_KEY_FAX = 'fax' as keyof Post_Contacts_Response_V1;
|
|
1496
|
+
/**
|
|
1497
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1498
|
+
*/
|
|
673
1499
|
export const POST_CONTACTS_RESPONSE_V1_KEY_FIRST_NAME = 'first_name' as keyof Post_Contacts_Response_V1;
|
|
1500
|
+
/**
|
|
1501
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1502
|
+
*/
|
|
674
1503
|
export const POST_CONTACTS_RESPONSE_V1_KEY_LAST_NAME = 'last_name' as keyof Post_Contacts_Response_V1;
|
|
1504
|
+
/**
|
|
1505
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1506
|
+
*/
|
|
675
1507
|
export const POST_CONTACTS_RESPONSE_V1_KEY_ORG = 'org' as keyof Post_Contacts_Response_V1;
|
|
1508
|
+
/**
|
|
1509
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1510
|
+
*/
|
|
676
1511
|
export const POST_CONTACTS_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Post_Contacts_Response_V1;
|
|
1512
|
+
/**
|
|
1513
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1514
|
+
*/
|
|
677
1515
|
export const POST_CONTACTS_RESPONSE_V1_KEY_PHONE = 'phone' as keyof Post_Contacts_Response_V1;
|
|
1516
|
+
/**
|
|
1517
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1518
|
+
*/
|
|
678
1519
|
export const POST_CONTACTS_RESPONSE_V1_KEY_POSTAL_CODE = 'postal_code' as keyof Post_Contacts_Response_V1;
|
|
1520
|
+
/**
|
|
1521
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1522
|
+
*/
|
|
679
1523
|
export const POST_CONTACTS_RESPONSE_V1_KEY_STATE = 'state' as keyof Post_Contacts_Response_V1;
|
|
1524
|
+
/**
|
|
1525
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1526
|
+
*/
|
|
680
1527
|
export const POST_CONTACTS_RESPONSE_V1_KEY_STREET = 'street' as keyof Post_Contacts_Response_V1;
|
|
1528
|
+
/**
|
|
1529
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1530
|
+
*/
|
|
681
1531
|
export const POST_CONTACTS_RESPONSE_V1_KEY_TITLE = 'title' as keyof Post_Contacts_Response_V1;
|
|
682
1532
|
|
|
1533
|
+
/**
|
|
1534
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1535
|
+
*/
|
|
683
1536
|
export const POST_CONTACTS_RESPONSE_V1_KEYS = [
|
|
684
1537
|
POST_CONTACTS_RESPONSE_V1_KEY_CITY,
|
|
685
1538
|
POST_CONTACTS_RESPONSE_V1_KEY_CONTACT_ID,
|
|
@@ -700,27 +1553,90 @@ export const POST_CONTACTS_RESPONSE_V1_KEYS = [
|
|
|
700
1553
|
POST_CONTACTS_RESPONSE_V1_KEY_TITLE,
|
|
701
1554
|
] as const;
|
|
702
1555
|
|
|
1556
|
+
/**
|
|
1557
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1558
|
+
*/
|
|
703
1559
|
export const POST_DOMAINS_RESPONSE_V1_KEY_AUTH_CODE = 'auth_code' as keyof Post_Domains_Response_V1;
|
|
1560
|
+
/**
|
|
1561
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1562
|
+
*/
|
|
704
1563
|
export const POST_DOMAINS_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON = 'auth_code_expires_on' as keyof Post_Domains_Response_V1;
|
|
1564
|
+
/**
|
|
1565
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1566
|
+
*/
|
|
705
1567
|
export const POST_DOMAINS_RESPONSE_V1_KEY_CANCELED_ON = 'canceled_on' as keyof Post_Domains_Response_V1;
|
|
1568
|
+
/**
|
|
1569
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1570
|
+
*/
|
|
706
1571
|
export const POST_DOMAINS_RESPONSE_V1_KEY_CONTACTS = 'contacts' as keyof Post_Domains_Response_V1;
|
|
1572
|
+
/**
|
|
1573
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1574
|
+
*/
|
|
707
1575
|
export const POST_DOMAINS_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Post_Domains_Response_V1;
|
|
1576
|
+
/**
|
|
1577
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1578
|
+
*/
|
|
708
1579
|
export const POST_DOMAINS_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Post_Domains_Response_V1;
|
|
1580
|
+
/**
|
|
1581
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1582
|
+
*/
|
|
709
1583
|
export const POST_DOMAINS_RESPONSE_V1_KEY_DOMAIN_ID = 'domain_id' as keyof Post_Domains_Response_V1;
|
|
1584
|
+
/**
|
|
1585
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1586
|
+
*/
|
|
710
1587
|
export const POST_DOMAINS_RESPONSE_V1_KEY_EXPIRES_ON = 'expires_on' as keyof Post_Domains_Response_V1;
|
|
1588
|
+
/**
|
|
1589
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1590
|
+
*/
|
|
711
1591
|
export const POST_DOMAINS_RESPONSE_V1_KEY_NAME = 'name' as keyof Post_Domains_Response_V1;
|
|
1592
|
+
/**
|
|
1593
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1594
|
+
*/
|
|
712
1595
|
export const POST_DOMAINS_RESPONSE_V1_KEY_NAMESERVERS = 'nameservers' as keyof Post_Domains_Response_V1;
|
|
1596
|
+
/**
|
|
1597
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1598
|
+
*/
|
|
713
1599
|
export const POST_DOMAINS_RESPONSE_V1_KEY_OWNER_ID = 'owner_id' as keyof Post_Domains_Response_V1;
|
|
1600
|
+
/**
|
|
1601
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1602
|
+
*/
|
|
714
1603
|
export const POST_DOMAINS_RESPONSE_V1_KEY_REGISTERED_ON = 'registered_on' as keyof Post_Domains_Response_V1;
|
|
1604
|
+
/**
|
|
1605
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1606
|
+
*/
|
|
715
1607
|
export const POST_DOMAINS_RESPONSE_V1_KEY_REGISTRY_ACCOUNT_ID = 'registry_account_id' as keyof Post_Domains_Response_V1;
|
|
1608
|
+
/**
|
|
1609
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1610
|
+
*/
|
|
716
1611
|
export const POST_DOMAINS_RESPONSE_V1_KEY_REGISTRY_STATUSES = 'registry_statuses' as keyof Post_Domains_Response_V1;
|
|
1612
|
+
/**
|
|
1613
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1614
|
+
*/
|
|
717
1615
|
export const POST_DOMAINS_RESPONSE_V1_KEY_RENEWAL_MODE = 'renewal_mode' as keyof Post_Domains_Response_V1;
|
|
1616
|
+
/**
|
|
1617
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1618
|
+
*/
|
|
718
1619
|
export const POST_DOMAINS_RESPONSE_V1_KEY_ROID = 'roid' as keyof Post_Domains_Response_V1;
|
|
1620
|
+
/**
|
|
1621
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1622
|
+
*/
|
|
719
1623
|
export const POST_DOMAINS_RESPONSE_V1_KEY_SLD = 'sld' as keyof Post_Domains_Response_V1;
|
|
1624
|
+
/**
|
|
1625
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1626
|
+
*/
|
|
720
1627
|
export const POST_DOMAINS_RESPONSE_V1_KEY_TLD = 'tld' as keyof Post_Domains_Response_V1;
|
|
1628
|
+
/**
|
|
1629
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1630
|
+
*/
|
|
721
1631
|
export const POST_DOMAINS_RESPONSE_V1_KEY_TRANSFER_LOCK = 'transfer_lock' as keyof Post_Domains_Response_V1;
|
|
1632
|
+
/**
|
|
1633
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1634
|
+
*/
|
|
722
1635
|
export const POST_DOMAINS_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Post_Domains_Response_V1;
|
|
723
1636
|
|
|
1637
|
+
/**
|
|
1638
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1639
|
+
*/
|
|
724
1640
|
export const POST_DOMAINS_RESPONSE_V1_KEYS = [
|
|
725
1641
|
POST_DOMAINS_RESPONSE_V1_KEY_AUTH_CODE,
|
|
726
1642
|
POST_DOMAINS_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -744,27 +1660,90 @@ export const POST_DOMAINS_RESPONSE_V1_KEYS = [
|
|
|
744
1660
|
POST_DOMAINS_RESPONSE_V1_KEY_UPDATED_ON,
|
|
745
1661
|
] as const;
|
|
746
1662
|
|
|
1663
|
+
/**
|
|
1664
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1665
|
+
*/
|
|
747
1666
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_AUTH_CODE = 'auth_code' as keyof Post_DomainsTransfer_Response_V1;
|
|
1667
|
+
/**
|
|
1668
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1669
|
+
*/
|
|
748
1670
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON = 'auth_code_expires_on' as keyof Post_DomainsTransfer_Response_V1;
|
|
1671
|
+
/**
|
|
1672
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1673
|
+
*/
|
|
749
1674
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_CANCELED_ON = 'canceled_on' as keyof Post_DomainsTransfer_Response_V1;
|
|
1675
|
+
/**
|
|
1676
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1677
|
+
*/
|
|
750
1678
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_CONTACTS = 'contacts' as keyof Post_DomainsTransfer_Response_V1;
|
|
1679
|
+
/**
|
|
1680
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1681
|
+
*/
|
|
751
1682
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Post_DomainsTransfer_Response_V1;
|
|
1683
|
+
/**
|
|
1684
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1685
|
+
*/
|
|
752
1686
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Post_DomainsTransfer_Response_V1;
|
|
1687
|
+
/**
|
|
1688
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1689
|
+
*/
|
|
753
1690
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_DOMAIN_ID = 'domain_id' as keyof Post_DomainsTransfer_Response_V1;
|
|
1691
|
+
/**
|
|
1692
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1693
|
+
*/
|
|
754
1694
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_EXPIRES_ON = 'expires_on' as keyof Post_DomainsTransfer_Response_V1;
|
|
1695
|
+
/**
|
|
1696
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1697
|
+
*/
|
|
755
1698
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_NAME = 'name' as keyof Post_DomainsTransfer_Response_V1;
|
|
1699
|
+
/**
|
|
1700
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1701
|
+
*/
|
|
756
1702
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_NAMESERVERS = 'nameservers' as keyof Post_DomainsTransfer_Response_V1;
|
|
1703
|
+
/**
|
|
1704
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1705
|
+
*/
|
|
757
1706
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_OWNER_ID = 'owner_id' as keyof Post_DomainsTransfer_Response_V1;
|
|
1707
|
+
/**
|
|
1708
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1709
|
+
*/
|
|
758
1710
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_REGISTERED_ON = 'registered_on' as keyof Post_DomainsTransfer_Response_V1;
|
|
1711
|
+
/**
|
|
1712
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1713
|
+
*/
|
|
759
1714
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_REGISTRY_ACCOUNT_ID = 'registry_account_id' as keyof Post_DomainsTransfer_Response_V1;
|
|
1715
|
+
/**
|
|
1716
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1717
|
+
*/
|
|
760
1718
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_REGISTRY_STATUSES = 'registry_statuses' as keyof Post_DomainsTransfer_Response_V1;
|
|
1719
|
+
/**
|
|
1720
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1721
|
+
*/
|
|
761
1722
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_RENEWAL_MODE = 'renewal_mode' as keyof Post_DomainsTransfer_Response_V1;
|
|
1723
|
+
/**
|
|
1724
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1725
|
+
*/
|
|
762
1726
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_ROID = 'roid' as keyof Post_DomainsTransfer_Response_V1;
|
|
1727
|
+
/**
|
|
1728
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1729
|
+
*/
|
|
763
1730
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_SLD = 'sld' as keyof Post_DomainsTransfer_Response_V1;
|
|
1731
|
+
/**
|
|
1732
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1733
|
+
*/
|
|
764
1734
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_TLD = 'tld' as keyof Post_DomainsTransfer_Response_V1;
|
|
1735
|
+
/**
|
|
1736
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1737
|
+
*/
|
|
765
1738
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_TRANSFER_LOCK = 'transfer_lock' as keyof Post_DomainsTransfer_Response_V1;
|
|
1739
|
+
/**
|
|
1740
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1741
|
+
*/
|
|
766
1742
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Post_DomainsTransfer_Response_V1;
|
|
767
1743
|
|
|
1744
|
+
/**
|
|
1745
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1746
|
+
*/
|
|
768
1747
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEYS = [
|
|
769
1748
|
POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_AUTH_CODE,
|
|
770
1749
|
POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -788,13 +1767,34 @@ export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEYS = [
|
|
|
788
1767
|
POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_UPDATED_ON,
|
|
789
1768
|
] as const;
|
|
790
1769
|
|
|
1770
|
+
/**
|
|
1771
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1772
|
+
*/
|
|
791
1773
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Post_EmailForwards_Response_V1;
|
|
1774
|
+
/**
|
|
1775
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1776
|
+
*/
|
|
792
1777
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_EMAIL_FORWARD_ID = 'email_forward_id' as keyof Post_EmailForwards_Response_V1;
|
|
1778
|
+
/**
|
|
1779
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1780
|
+
*/
|
|
793
1781
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_SOURCE_ADDRESS = 'source_address' as keyof Post_EmailForwards_Response_V1;
|
|
1782
|
+
/**
|
|
1783
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1784
|
+
*/
|
|
794
1785
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_STATUS = 'status' as keyof Post_EmailForwards_Response_V1;
|
|
1786
|
+
/**
|
|
1787
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1788
|
+
*/
|
|
795
1789
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_TARGET_ADDRESS = 'target_address' as keyof Post_EmailForwards_Response_V1;
|
|
1790
|
+
/**
|
|
1791
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1792
|
+
*/
|
|
796
1793
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Post_EmailForwards_Response_V1;
|
|
797
1794
|
|
|
1795
|
+
/**
|
|
1796
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1797
|
+
*/
|
|
798
1798
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEYS = [
|
|
799
1799
|
POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_CREATED_ON,
|
|
800
1800
|
POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_EMAIL_FORWARD_ID,
|
|
@@ -804,12 +1804,30 @@ export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEYS = [
|
|
|
804
1804
|
POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_UPDATED_ON,
|
|
805
1805
|
] as const;
|
|
806
1806
|
|
|
1807
|
+
/**
|
|
1808
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1809
|
+
*/
|
|
807
1810
|
export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_CREATED_ON = 'created_on' as keyof Post_OrganizationsIpRestrictions_Response_V1;
|
|
1811
|
+
/**
|
|
1812
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1813
|
+
*/
|
|
808
1814
|
export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_IP_NETWORK = 'ip_network' as keyof Post_OrganizationsIpRestrictions_Response_V1;
|
|
1815
|
+
/**
|
|
1816
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1817
|
+
*/
|
|
809
1818
|
export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_IP_RESTRICTION_ID = 'ip_restriction_id' as keyof Post_OrganizationsIpRestrictions_Response_V1;
|
|
1819
|
+
/**
|
|
1820
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1821
|
+
*/
|
|
810
1822
|
export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_LAST_USED_ON = 'last_used_on' as keyof Post_OrganizationsIpRestrictions_Response_V1;
|
|
1823
|
+
/**
|
|
1824
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1825
|
+
*/
|
|
811
1826
|
export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Post_OrganizationsIpRestrictions_Response_V1;
|
|
812
1827
|
|
|
1828
|
+
/**
|
|
1829
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1830
|
+
*/
|
|
813
1831
|
export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEYS = [
|
|
814
1832
|
POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_CREATED_ON,
|
|
815
1833
|
POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_IP_NETWORK,
|
|
@@ -818,28 +1836,79 @@ export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEYS = [
|
|
|
818
1836
|
POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_ORGANIZATION_ID,
|
|
819
1837
|
] as const;
|
|
820
1838
|
|
|
1839
|
+
/**
|
|
1840
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1841
|
+
*/
|
|
821
1842
|
export const DOMAIN_AVAILABILITY_KEY_META = 'meta' as keyof DomainAvailability;
|
|
1843
|
+
/**
|
|
1844
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1845
|
+
*/
|
|
822
1846
|
export const DOMAIN_AVAILABILITY_KEY_RESULTS = 'results' as keyof DomainAvailability;
|
|
823
1847
|
|
|
1848
|
+
/**
|
|
1849
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1850
|
+
*/
|
|
824
1851
|
export const DOMAIN_AVAILABILITY_KEYS = [
|
|
825
1852
|
DOMAIN_AVAILABILITY_KEY_META,
|
|
826
1853
|
DOMAIN_AVAILABILITY_KEY_RESULTS,
|
|
827
1854
|
] as const;
|
|
828
1855
|
|
|
1856
|
+
/**
|
|
1857
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1858
|
+
*/
|
|
829
1859
|
export const CONTACT_KEY_CITY = 'city' as keyof Contact;
|
|
1860
|
+
/**
|
|
1861
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1862
|
+
*/
|
|
830
1863
|
export const CONTACT_KEY_COUNTRY = 'country' as keyof Contact;
|
|
1864
|
+
/**
|
|
1865
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1866
|
+
*/
|
|
831
1867
|
export const CONTACT_KEY_DISCLOSE = 'disclose' as keyof Contact;
|
|
1868
|
+
/**
|
|
1869
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1870
|
+
*/
|
|
832
1871
|
export const CONTACT_KEY_EMAIL = 'email' as keyof Contact;
|
|
1872
|
+
/**
|
|
1873
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1874
|
+
*/
|
|
833
1875
|
export const CONTACT_KEY_FAX = 'fax' as keyof Contact;
|
|
1876
|
+
/**
|
|
1877
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1878
|
+
*/
|
|
834
1879
|
export const CONTACT_KEY_FIRST_NAME = 'first_name' as keyof Contact;
|
|
1880
|
+
/**
|
|
1881
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1882
|
+
*/
|
|
835
1883
|
export const CONTACT_KEY_LAST_NAME = 'last_name' as keyof Contact;
|
|
1884
|
+
/**
|
|
1885
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1886
|
+
*/
|
|
836
1887
|
export const CONTACT_KEY_ORG = 'org' as keyof Contact;
|
|
1888
|
+
/**
|
|
1889
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1890
|
+
*/
|
|
837
1891
|
export const CONTACT_KEY_PHONE = 'phone' as keyof Contact;
|
|
1892
|
+
/**
|
|
1893
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1894
|
+
*/
|
|
838
1895
|
export const CONTACT_KEY_POSTAL_CODE = 'postal_code' as keyof Contact;
|
|
1896
|
+
/**
|
|
1897
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1898
|
+
*/
|
|
839
1899
|
export const CONTACT_KEY_STATE = 'state' as keyof Contact;
|
|
1900
|
+
/**
|
|
1901
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1902
|
+
*/
|
|
840
1903
|
export const CONTACT_KEY_STREET = 'street' as keyof Contact;
|
|
1904
|
+
/**
|
|
1905
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1906
|
+
*/
|
|
841
1907
|
export const CONTACT_KEY_TITLE = 'title' as keyof Contact;
|
|
842
1908
|
|
|
1909
|
+
/**
|
|
1910
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1911
|
+
*/
|
|
843
1912
|
export const CONTACT_KEYS = [
|
|
844
1913
|
CONTACT_KEY_CITY,
|
|
845
1914
|
CONTACT_KEY_COUNTRY,
|
|
@@ -856,24 +1925,78 @@ export const CONTACT_KEYS = [
|
|
|
856
1925
|
CONTACT_KEY_TITLE,
|
|
857
1926
|
] as const;
|
|
858
1927
|
|
|
1928
|
+
/**
|
|
1929
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1930
|
+
*/
|
|
859
1931
|
export const CONTACT_SCHEMA_KEY_CITY = 'city' as keyof ContactSchema;
|
|
1932
|
+
/**
|
|
1933
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1934
|
+
*/
|
|
860
1935
|
export const CONTACT_SCHEMA_KEY_CONTACT_ID = 'contact_id' as keyof ContactSchema;
|
|
1936
|
+
/**
|
|
1937
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1938
|
+
*/
|
|
861
1939
|
export const CONTACT_SCHEMA_KEY_COUNTRY = 'country' as keyof ContactSchema;
|
|
1940
|
+
/**
|
|
1941
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1942
|
+
*/
|
|
862
1943
|
export const CONTACT_SCHEMA_KEY_CREATED_ON = 'created_on' as keyof ContactSchema;
|
|
1944
|
+
/**
|
|
1945
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1946
|
+
*/
|
|
863
1947
|
export const CONTACT_SCHEMA_KEY_DELETED_ON = 'deleted_on' as keyof ContactSchema;
|
|
1948
|
+
/**
|
|
1949
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1950
|
+
*/
|
|
864
1951
|
export const CONTACT_SCHEMA_KEY_DISCLOSE = 'disclose' as keyof ContactSchema;
|
|
1952
|
+
/**
|
|
1953
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1954
|
+
*/
|
|
865
1955
|
export const CONTACT_SCHEMA_KEY_EMAIL = 'email' as keyof ContactSchema;
|
|
1956
|
+
/**
|
|
1957
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1958
|
+
*/
|
|
866
1959
|
export const CONTACT_SCHEMA_KEY_FAX = 'fax' as keyof ContactSchema;
|
|
1960
|
+
/**
|
|
1961
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1962
|
+
*/
|
|
867
1963
|
export const CONTACT_SCHEMA_KEY_FIRST_NAME = 'first_name' as keyof ContactSchema;
|
|
1964
|
+
/**
|
|
1965
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1966
|
+
*/
|
|
868
1967
|
export const CONTACT_SCHEMA_KEY_LAST_NAME = 'last_name' as keyof ContactSchema;
|
|
1968
|
+
/**
|
|
1969
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1970
|
+
*/
|
|
869
1971
|
export const CONTACT_SCHEMA_KEY_ORG = 'org' as keyof ContactSchema;
|
|
1972
|
+
/**
|
|
1973
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1974
|
+
*/
|
|
870
1975
|
export const CONTACT_SCHEMA_KEY_ORGANIZATION_ID = 'organization_id' as keyof ContactSchema;
|
|
1976
|
+
/**
|
|
1977
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1978
|
+
*/
|
|
871
1979
|
export const CONTACT_SCHEMA_KEY_PHONE = 'phone' as keyof ContactSchema;
|
|
1980
|
+
/**
|
|
1981
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1982
|
+
*/
|
|
872
1983
|
export const CONTACT_SCHEMA_KEY_POSTAL_CODE = 'postal_code' as keyof ContactSchema;
|
|
1984
|
+
/**
|
|
1985
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1986
|
+
*/
|
|
873
1987
|
export const CONTACT_SCHEMA_KEY_STATE = 'state' as keyof ContactSchema;
|
|
1988
|
+
/**
|
|
1989
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1990
|
+
*/
|
|
874
1991
|
export const CONTACT_SCHEMA_KEY_STREET = 'street' as keyof ContactSchema;
|
|
1992
|
+
/**
|
|
1993
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1994
|
+
*/
|
|
875
1995
|
export const CONTACT_SCHEMA_KEY_TITLE = 'title' as keyof ContactSchema;
|
|
876
1996
|
|
|
1997
|
+
/**
|
|
1998
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1999
|
+
*/
|
|
877
2000
|
export const CONTACT_SCHEMA_KEYS = [
|
|
878
2001
|
CONTACT_SCHEMA_KEY_CITY,
|
|
879
2002
|
CONTACT_SCHEMA_KEY_CONTACT_ID,
|
|
@@ -894,15 +2017,42 @@ export const CONTACT_SCHEMA_KEYS = [
|
|
|
894
2017
|
CONTACT_SCHEMA_KEY_TITLE,
|
|
895
2018
|
] as const;
|
|
896
2019
|
|
|
2020
|
+
/**
|
|
2021
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2022
|
+
*/
|
|
897
2023
|
export const CONTACT_VERIFICATION_KEY_CANCELED_ON = 'canceled_on' as keyof ContactVerification;
|
|
2024
|
+
/**
|
|
2025
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2026
|
+
*/
|
|
898
2027
|
export const CONTACT_VERIFICATION_KEY_CONTACT_ID = 'contact_id' as keyof ContactVerification;
|
|
2028
|
+
/**
|
|
2029
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2030
|
+
*/
|
|
899
2031
|
export const CONTACT_VERIFICATION_KEY_CONTACT_VERIFICATION_ID = 'contact_verification_id' as keyof ContactVerification;
|
|
2032
|
+
/**
|
|
2033
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2034
|
+
*/
|
|
900
2035
|
export const CONTACT_VERIFICATION_KEY_CREATED_ON = 'created_on' as keyof ContactVerification;
|
|
2036
|
+
/**
|
|
2037
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2038
|
+
*/
|
|
901
2039
|
export const CONTACT_VERIFICATION_KEY_STATUS = 'status' as keyof ContactVerification;
|
|
2040
|
+
/**
|
|
2041
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2042
|
+
*/
|
|
902
2043
|
export const CONTACT_VERIFICATION_KEY_TYPE = 'type' as keyof ContactVerification;
|
|
2044
|
+
/**
|
|
2045
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2046
|
+
*/
|
|
903
2047
|
export const CONTACT_VERIFICATION_KEY_UPDATED_ON = 'updated_on' as keyof ContactVerification;
|
|
2048
|
+
/**
|
|
2049
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2050
|
+
*/
|
|
904
2051
|
export const CONTACT_VERIFICATION_KEY_VERIFIED_ON = 'verified_on' as keyof ContactVerification;
|
|
905
2052
|
|
|
2053
|
+
/**
|
|
2054
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2055
|
+
*/
|
|
906
2056
|
export const CONTACT_VERIFICATION_KEYS = [
|
|
907
2057
|
CONTACT_VERIFICATION_KEY_CANCELED_ON,
|
|
908
2058
|
CONTACT_VERIFICATION_KEY_CONTACT_ID,
|
|
@@ -914,11 +2064,26 @@ export const CONTACT_VERIFICATION_KEYS = [
|
|
|
914
2064
|
CONTACT_VERIFICATION_KEY_VERIFIED_ON,
|
|
915
2065
|
] as const;
|
|
916
2066
|
|
|
2067
|
+
/**
|
|
2068
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2069
|
+
*/
|
|
917
2070
|
export const DNS_ZONE_KEY_DNSSEC_STATUS = 'dnssec_status' as keyof DnsZone;
|
|
2071
|
+
/**
|
|
2072
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2073
|
+
*/
|
|
918
2074
|
export const DNS_ZONE_KEY_DOMAIN_PARTS = 'domain_parts' as keyof DnsZone;
|
|
2075
|
+
/**
|
|
2076
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2077
|
+
*/
|
|
919
2078
|
export const DNS_ZONE_KEY_NAME = 'name' as keyof DnsZone;
|
|
2079
|
+
/**
|
|
2080
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2081
|
+
*/
|
|
920
2082
|
export const DNS_ZONE_KEY_RRSETS = 'rrsets' as keyof DnsZone;
|
|
921
2083
|
|
|
2084
|
+
/**
|
|
2085
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2086
|
+
*/
|
|
922
2087
|
export const DNS_ZONE_KEYS = [
|
|
923
2088
|
DNS_ZONE_KEY_DNSSEC_STATUS,
|
|
924
2089
|
DNS_ZONE_KEY_DOMAIN_PARTS,
|
|
@@ -926,33 +2091,102 @@ export const DNS_ZONE_KEYS = [
|
|
|
926
2091
|
DNS_ZONE_KEY_RRSETS,
|
|
927
2092
|
] as const;
|
|
928
2093
|
|
|
2094
|
+
/**
|
|
2095
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2096
|
+
*/
|
|
929
2097
|
export const DOMAIN_CHECK_KEY_RESULTS = 'results' as keyof DomainCheck;
|
|
930
2098
|
|
|
2099
|
+
/**
|
|
2100
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2101
|
+
*/
|
|
931
2102
|
export const DOMAIN_CHECK_KEYS = [
|
|
932
2103
|
DOMAIN_CHECK_KEY_RESULTS,
|
|
933
2104
|
] as const;
|
|
934
2105
|
|
|
2106
|
+
/**
|
|
2107
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2108
|
+
*/
|
|
935
2109
|
export const DOMAIN_KEY_AUTH_CODE = 'auth_code' as keyof Domain;
|
|
2110
|
+
/**
|
|
2111
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2112
|
+
*/
|
|
936
2113
|
export const DOMAIN_KEY_AUTH_CODE_EXPIRES_ON = 'auth_code_expires_on' as keyof Domain;
|
|
2114
|
+
/**
|
|
2115
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2116
|
+
*/
|
|
937
2117
|
export const DOMAIN_KEY_CANCELED_ON = 'canceled_on' as keyof Domain;
|
|
2118
|
+
/**
|
|
2119
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2120
|
+
*/
|
|
938
2121
|
export const DOMAIN_KEY_CONTACTS = 'contacts' as keyof Domain;
|
|
2122
|
+
/**
|
|
2123
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2124
|
+
*/
|
|
939
2125
|
export const DOMAIN_KEY_CREATED_ON = 'created_on' as keyof Domain;
|
|
2126
|
+
/**
|
|
2127
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2128
|
+
*/
|
|
940
2129
|
export const DOMAIN_KEY_DELETED_ON = 'deleted_on' as keyof Domain;
|
|
2130
|
+
/**
|
|
2131
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2132
|
+
*/
|
|
941
2133
|
export const DOMAIN_KEY_DOMAIN_ID = 'domain_id' as keyof Domain;
|
|
2134
|
+
/**
|
|
2135
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2136
|
+
*/
|
|
942
2137
|
export const DOMAIN_KEY_EXPIRES_ON = 'expires_on' as keyof Domain;
|
|
2138
|
+
/**
|
|
2139
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2140
|
+
*/
|
|
943
2141
|
export const DOMAIN_KEY_NAME = 'name' as keyof Domain;
|
|
2142
|
+
/**
|
|
2143
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2144
|
+
*/
|
|
944
2145
|
export const DOMAIN_KEY_NAMESERVERS = 'nameservers' as keyof Domain;
|
|
2146
|
+
/**
|
|
2147
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2148
|
+
*/
|
|
945
2149
|
export const DOMAIN_KEY_OWNER_ID = 'owner_id' as keyof Domain;
|
|
2150
|
+
/**
|
|
2151
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2152
|
+
*/
|
|
946
2153
|
export const DOMAIN_KEY_REGISTERED_ON = 'registered_on' as keyof Domain;
|
|
2154
|
+
/**
|
|
2155
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2156
|
+
*/
|
|
947
2157
|
export const DOMAIN_KEY_REGISTRY_ACCOUNT_ID = 'registry_account_id' as keyof Domain;
|
|
2158
|
+
/**
|
|
2159
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2160
|
+
*/
|
|
948
2161
|
export const DOMAIN_KEY_REGISTRY_STATUSES = 'registry_statuses' as keyof Domain;
|
|
2162
|
+
/**
|
|
2163
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2164
|
+
*/
|
|
949
2165
|
export const DOMAIN_KEY_RENEWAL_MODE = 'renewal_mode' as keyof Domain;
|
|
2166
|
+
/**
|
|
2167
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2168
|
+
*/
|
|
950
2169
|
export const DOMAIN_KEY_ROID = 'roid' as keyof Domain;
|
|
2170
|
+
/**
|
|
2171
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2172
|
+
*/
|
|
951
2173
|
export const DOMAIN_KEY_SLD = 'sld' as keyof Domain;
|
|
2174
|
+
/**
|
|
2175
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2176
|
+
*/
|
|
952
2177
|
export const DOMAIN_KEY_TLD = 'tld' as keyof Domain;
|
|
2178
|
+
/**
|
|
2179
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2180
|
+
*/
|
|
953
2181
|
export const DOMAIN_KEY_TRANSFER_LOCK = 'transfer_lock' as keyof Domain;
|
|
2182
|
+
/**
|
|
2183
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2184
|
+
*/
|
|
954
2185
|
export const DOMAIN_KEY_UPDATED_ON = 'updated_on' as keyof Domain;
|
|
955
2186
|
|
|
2187
|
+
/**
|
|
2188
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2189
|
+
*/
|
|
956
2190
|
export const DOMAIN_KEYS = [
|
|
957
2191
|
DOMAIN_KEY_AUTH_CODE,
|
|
958
2192
|
DOMAIN_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -976,29 +2210,68 @@ export const DOMAIN_KEYS = [
|
|
|
976
2210
|
DOMAIN_KEY_UPDATED_ON,
|
|
977
2211
|
] as const;
|
|
978
2212
|
|
|
2213
|
+
/**
|
|
2214
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2215
|
+
*/
|
|
979
2216
|
export const DOMAIN_SEARCH_KEY_META = 'meta' as keyof DomainSearch;
|
|
2217
|
+
/**
|
|
2218
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2219
|
+
*/
|
|
980
2220
|
export const DOMAIN_SEARCH_KEY_RESULTS = 'results' as keyof DomainSearch;
|
|
981
2221
|
|
|
2222
|
+
/**
|
|
2223
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2224
|
+
*/
|
|
982
2225
|
export const DOMAIN_SEARCH_KEYS = [
|
|
983
2226
|
DOMAIN_SEARCH_KEY_META,
|
|
984
2227
|
DOMAIN_SEARCH_KEY_RESULTS,
|
|
985
2228
|
] as const;
|
|
986
2229
|
|
|
2230
|
+
/**
|
|
2231
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2232
|
+
*/
|
|
987
2233
|
export const DOMAIN_SUMMARY_KEY_DOMAINS = 'domains' as keyof DomainSummary;
|
|
2234
|
+
/**
|
|
2235
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2236
|
+
*/
|
|
988
2237
|
export const DOMAIN_SUMMARY_KEY_ORGANIZATION_ID = 'organization_id' as keyof DomainSummary;
|
|
989
2238
|
|
|
2239
|
+
/**
|
|
2240
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2241
|
+
*/
|
|
990
2242
|
export const DOMAIN_SUMMARY_KEYS = [
|
|
991
2243
|
DOMAIN_SUMMARY_KEY_DOMAINS,
|
|
992
2244
|
DOMAIN_SUMMARY_KEY_ORGANIZATION_ID,
|
|
993
2245
|
] as const;
|
|
994
2246
|
|
|
2247
|
+
/**
|
|
2248
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2249
|
+
*/
|
|
995
2250
|
export const EMAIL_FORWARD_KEY_CREATED_ON = 'created_on' as keyof EmailForward;
|
|
2251
|
+
/**
|
|
2252
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2253
|
+
*/
|
|
996
2254
|
export const EMAIL_FORWARD_KEY_EMAIL_FORWARD_ID = 'email_forward_id' as keyof EmailForward;
|
|
2255
|
+
/**
|
|
2256
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2257
|
+
*/
|
|
997
2258
|
export const EMAIL_FORWARD_KEY_SOURCE_ADDRESS = 'source_address' as keyof EmailForward;
|
|
2259
|
+
/**
|
|
2260
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2261
|
+
*/
|
|
998
2262
|
export const EMAIL_FORWARD_KEY_STATUS = 'status' as keyof EmailForward;
|
|
2263
|
+
/**
|
|
2264
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2265
|
+
*/
|
|
999
2266
|
export const EMAIL_FORWARD_KEY_TARGET_ADDRESS = 'target_address' as keyof EmailForward;
|
|
2267
|
+
/**
|
|
2268
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2269
|
+
*/
|
|
1000
2270
|
export const EMAIL_FORWARD_KEY_UPDATED_ON = 'updated_on' as keyof EmailForward;
|
|
1001
2271
|
|
|
2272
|
+
/**
|
|
2273
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2274
|
+
*/
|
|
1002
2275
|
export const EMAIL_FORWARD_KEYS = [
|
|
1003
2276
|
EMAIL_FORWARD_KEY_CREATED_ON,
|
|
1004
2277
|
EMAIL_FORWARD_KEY_EMAIL_FORWARD_ID,
|
|
@@ -1008,19 +2281,58 @@ export const EMAIL_FORWARD_KEYS = [
|
|
|
1008
2281
|
EMAIL_FORWARD_KEY_UPDATED_ON,
|
|
1009
2282
|
] as const;
|
|
1010
2283
|
|
|
2284
|
+
/**
|
|
2285
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2286
|
+
*/
|
|
1011
2287
|
export const EVENT_SCHEMA_KEY_ACKNOWLEDGED_ON = 'acknowledged_on' as keyof EventSchema;
|
|
2288
|
+
/**
|
|
2289
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2290
|
+
*/
|
|
1012
2291
|
export const EVENT_SCHEMA_KEY_CREATED_ON = 'created_on' as keyof EventSchema;
|
|
2292
|
+
/**
|
|
2293
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2294
|
+
*/
|
|
1013
2295
|
export const EVENT_SCHEMA_KEY_EVENT_DATA = 'event_data' as keyof EventSchema;
|
|
2296
|
+
/**
|
|
2297
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2298
|
+
*/
|
|
1014
2299
|
export const EVENT_SCHEMA_KEY_EVENT_ID = 'event_id' as keyof EventSchema;
|
|
2300
|
+
/**
|
|
2301
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2302
|
+
*/
|
|
1015
2303
|
export const EVENT_SCHEMA_KEY_MESSAGE_QUEUE_ID = 'message_queue_id' as keyof EventSchema;
|
|
2304
|
+
/**
|
|
2305
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2306
|
+
*/
|
|
1016
2307
|
export const EVENT_SCHEMA_KEY_OBJECT_ID = 'object_id' as keyof EventSchema;
|
|
2308
|
+
/**
|
|
2309
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2310
|
+
*/
|
|
1017
2311
|
export const EVENT_SCHEMA_KEY_OBJECT_TYPE = 'object_type' as keyof EventSchema;
|
|
2312
|
+
/**
|
|
2313
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2314
|
+
*/
|
|
1018
2315
|
export const EVENT_SCHEMA_KEY_SOURCE = 'source' as keyof EventSchema;
|
|
2316
|
+
/**
|
|
2317
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2318
|
+
*/
|
|
1019
2319
|
export const EVENT_SCHEMA_KEY_SOURCE_EVENT_ID = 'source_event_id' as keyof EventSchema;
|
|
2320
|
+
/**
|
|
2321
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2322
|
+
*/
|
|
1020
2323
|
export const EVENT_SCHEMA_KEY_SUBTYPE = 'subtype' as keyof EventSchema;
|
|
2324
|
+
/**
|
|
2325
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2326
|
+
*/
|
|
1021
2327
|
export const EVENT_SCHEMA_KEY_TARGET = 'target' as keyof EventSchema;
|
|
2328
|
+
/**
|
|
2329
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2330
|
+
*/
|
|
1022
2331
|
export const EVENT_SCHEMA_KEY_TYPE = 'type' as keyof EventSchema;
|
|
1023
2332
|
|
|
2333
|
+
/**
|
|
2334
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2335
|
+
*/
|
|
1024
2336
|
export const EVENT_SCHEMA_KEYS = [
|
|
1025
2337
|
EVENT_SCHEMA_KEY_ACKNOWLEDGED_ON,
|
|
1026
2338
|
EVENT_SCHEMA_KEY_CREATED_ON,
|
|
@@ -1036,12 +2348,30 @@ export const EVENT_SCHEMA_KEYS = [
|
|
|
1036
2348
|
EVENT_SCHEMA_KEY_TYPE,
|
|
1037
2349
|
] as const;
|
|
1038
2350
|
|
|
2351
|
+
/**
|
|
2352
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2353
|
+
*/
|
|
1039
2354
|
export const IP_RESTRICTION_KEY_CREATED_ON = 'created_on' as keyof IpRestriction;
|
|
2355
|
+
/**
|
|
2356
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2357
|
+
*/
|
|
1040
2358
|
export const IP_RESTRICTION_KEY_IP_NETWORK = 'ip_network' as keyof IpRestriction;
|
|
2359
|
+
/**
|
|
2360
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2361
|
+
*/
|
|
1041
2362
|
export const IP_RESTRICTION_KEY_IP_RESTRICTION_ID = 'ip_restriction_id' as keyof IpRestriction;
|
|
2363
|
+
/**
|
|
2364
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2365
|
+
*/
|
|
1042
2366
|
export const IP_RESTRICTION_KEY_LAST_USED_ON = 'last_used_on' as keyof IpRestriction;
|
|
2367
|
+
/**
|
|
2368
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2369
|
+
*/
|
|
1043
2370
|
export const IP_RESTRICTION_KEY_ORGANIZATION_ID = 'organization_id' as keyof IpRestriction;
|
|
1044
2371
|
|
|
2372
|
+
/**
|
|
2373
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2374
|
+
*/
|
|
1045
2375
|
export const IP_RESTRICTION_KEYS = [
|
|
1046
2376
|
IP_RESTRICTION_KEY_CREATED_ON,
|
|
1047
2377
|
IP_RESTRICTION_KEY_IP_NETWORK,
|
|
@@ -1050,28 +2380,94 @@ export const IP_RESTRICTION_KEYS = [
|
|
|
1050
2380
|
IP_RESTRICTION_KEY_ORGANIZATION_ID,
|
|
1051
2381
|
] as const;
|
|
1052
2382
|
|
|
2383
|
+
/**
|
|
2384
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2385
|
+
*/
|
|
1053
2386
|
export const ORGANIZATION_WITH_PLAN_KEY_ADDRESS_1 = 'address_1' as keyof OrganizationWithPlan;
|
|
2387
|
+
/**
|
|
2388
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2389
|
+
*/
|
|
1054
2390
|
export const ORGANIZATION_WITH_PLAN_KEY_ADDRESS_2 = 'address_2' as keyof OrganizationWithPlan;
|
|
2391
|
+
/**
|
|
2392
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2393
|
+
*/
|
|
1055
2394
|
export const ORGANIZATION_WITH_PLAN_KEY_ATTRIBUTES = 'attributes' as keyof OrganizationWithPlan;
|
|
2395
|
+
/**
|
|
2396
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2397
|
+
*/
|
|
1056
2398
|
export const ORGANIZATION_WITH_PLAN_KEY_BUSINESS_NUMBER = 'business_number' as keyof OrganizationWithPlan;
|
|
2399
|
+
/**
|
|
2400
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2401
|
+
*/
|
|
1057
2402
|
export const ORGANIZATION_WITH_PLAN_KEY_CITY = 'city' as keyof OrganizationWithPlan;
|
|
2403
|
+
/**
|
|
2404
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2405
|
+
*/
|
|
1058
2406
|
export const ORGANIZATION_WITH_PLAN_KEY_COUNTRY_CODE = 'country_code' as keyof OrganizationWithPlan;
|
|
2407
|
+
/**
|
|
2408
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2409
|
+
*/
|
|
1059
2410
|
export const ORGANIZATION_WITH_PLAN_KEY_CREATED_ON = 'created_on' as keyof OrganizationWithPlan;
|
|
2411
|
+
/**
|
|
2412
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2413
|
+
*/
|
|
1060
2414
|
export const ORGANIZATION_WITH_PLAN_KEY_CURRENCY = 'currency' as keyof OrganizationWithPlan;
|
|
2415
|
+
/**
|
|
2416
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2417
|
+
*/
|
|
1061
2418
|
export const ORGANIZATION_WITH_PLAN_KEY_DEFAULT_LOCALE = 'default_locale' as keyof OrganizationWithPlan;
|
|
2419
|
+
/**
|
|
2420
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2421
|
+
*/
|
|
1062
2422
|
export const ORGANIZATION_WITH_PLAN_KEY_DELETED_ON = 'deleted_on' as keyof OrganizationWithPlan;
|
|
2423
|
+
/**
|
|
2424
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2425
|
+
*/
|
|
1063
2426
|
export const ORGANIZATION_WITH_PLAN_KEY_NAME = 'name' as keyof OrganizationWithPlan;
|
|
2427
|
+
/**
|
|
2428
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2429
|
+
*/
|
|
1064
2430
|
export const ORGANIZATION_WITH_PLAN_KEY_ORGANIZATION_ID = 'organization_id' as keyof OrganizationWithPlan;
|
|
2431
|
+
/**
|
|
2432
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2433
|
+
*/
|
|
1065
2434
|
export const ORGANIZATION_WITH_PLAN_KEY_PARENT_ORGANIZATION_ID = 'parent_organization_id' as keyof OrganizationWithPlan;
|
|
2435
|
+
/**
|
|
2436
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2437
|
+
*/
|
|
1066
2438
|
export const ORGANIZATION_WITH_PLAN_KEY_PLAN = 'plan' as keyof OrganizationWithPlan;
|
|
2439
|
+
/**
|
|
2440
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2441
|
+
*/
|
|
1067
2442
|
export const ORGANIZATION_WITH_PLAN_KEY_POSTAL_CODE = 'postal_code' as keyof OrganizationWithPlan;
|
|
2443
|
+
/**
|
|
2444
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2445
|
+
*/
|
|
1068
2446
|
export const ORGANIZATION_WITH_PLAN_KEY_STATE = 'state' as keyof OrganizationWithPlan;
|
|
2447
|
+
/**
|
|
2448
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2449
|
+
*/
|
|
1069
2450
|
export const ORGANIZATION_WITH_PLAN_KEY_STATUS = 'status' as keyof OrganizationWithPlan;
|
|
2451
|
+
/**
|
|
2452
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2453
|
+
*/
|
|
1070
2454
|
export const ORGANIZATION_WITH_PLAN_KEY_TAX_ID = 'tax_id' as keyof OrganizationWithPlan;
|
|
2455
|
+
/**
|
|
2456
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2457
|
+
*/
|
|
1071
2458
|
export const ORGANIZATION_WITH_PLAN_KEY_TAX_ID_TYPE = 'tax_id_type' as keyof OrganizationWithPlan;
|
|
2459
|
+
/**
|
|
2460
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2461
|
+
*/
|
|
1072
2462
|
export const ORGANIZATION_WITH_PLAN_KEY_TAX_RATE = 'tax_rate' as keyof OrganizationWithPlan;
|
|
2463
|
+
/**
|
|
2464
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2465
|
+
*/
|
|
1073
2466
|
export const ORGANIZATION_WITH_PLAN_KEY_USERS = 'users' as keyof OrganizationWithPlan;
|
|
1074
2467
|
|
|
2468
|
+
/**
|
|
2469
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2470
|
+
*/
|
|
1075
2471
|
export const ORGANIZATION_WITH_PLAN_KEYS = [
|
|
1076
2472
|
ORGANIZATION_WITH_PLAN_KEY_ADDRESS_1,
|
|
1077
2473
|
ORGANIZATION_WITH_PLAN_KEY_ADDRESS_2,
|
|
@@ -1096,26 +2492,62 @@ export const ORGANIZATION_WITH_PLAN_KEYS = [
|
|
|
1096
2492
|
ORGANIZATION_WITH_PLAN_KEY_USERS,
|
|
1097
2493
|
] as const;
|
|
1098
2494
|
|
|
2495
|
+
/**
|
|
2496
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2497
|
+
*/
|
|
1099
2498
|
export const PERMISSION_SET_KEY_PERMISSIONS = 'permissions' as keyof PermissionSet;
|
|
1100
2499
|
|
|
2500
|
+
/**
|
|
2501
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2502
|
+
*/
|
|
1101
2503
|
export const PERMISSION_SET_KEYS = [
|
|
1102
2504
|
PERMISSION_SET_KEY_PERMISSIONS,
|
|
1103
2505
|
] as const;
|
|
1104
2506
|
|
|
2507
|
+
/**
|
|
2508
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2509
|
+
*/
|
|
1105
2510
|
export const RELATION_SET_KEY_RELATIONS = 'relations' as keyof RelationSet;
|
|
1106
2511
|
|
|
2512
|
+
/**
|
|
2513
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2514
|
+
*/
|
|
1107
2515
|
export const RELATION_SET_KEYS = [
|
|
1108
2516
|
RELATION_SET_KEY_RELATIONS,
|
|
1109
2517
|
] as const;
|
|
1110
2518
|
|
|
2519
|
+
/**
|
|
2520
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2521
|
+
*/
|
|
1111
2522
|
export const USER_NOTIFICATION_KEY_CREATED_ON = 'created_on' as keyof UserNotification;
|
|
2523
|
+
/**
|
|
2524
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2525
|
+
*/
|
|
1112
2526
|
export const USER_NOTIFICATION_KEY_NOTIFICATION = 'notification' as keyof UserNotification;
|
|
2527
|
+
/**
|
|
2528
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2529
|
+
*/
|
|
1113
2530
|
export const USER_NOTIFICATION_KEY_NOTIFICATION_ID = 'notification_id' as keyof UserNotification;
|
|
2531
|
+
/**
|
|
2532
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2533
|
+
*/
|
|
1114
2534
|
export const USER_NOTIFICATION_KEY_STATUS = 'status' as keyof UserNotification;
|
|
2535
|
+
/**
|
|
2536
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2537
|
+
*/
|
|
1115
2538
|
export const USER_NOTIFICATION_KEY_UPDATED_ON = 'updated_on' as keyof UserNotification;
|
|
2539
|
+
/**
|
|
2540
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2541
|
+
*/
|
|
1116
2542
|
export const USER_NOTIFICATION_KEY_USER_ID = 'user_id' as keyof UserNotification;
|
|
2543
|
+
/**
|
|
2544
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2545
|
+
*/
|
|
1117
2546
|
export const USER_NOTIFICATION_KEY_USER_NOTIFICATION_ID = 'user_notification_id' as keyof UserNotification;
|
|
1118
2547
|
|
|
2548
|
+
/**
|
|
2549
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2550
|
+
*/
|
|
1119
2551
|
export const USER_NOTIFICATION_KEYS = [
|
|
1120
2552
|
USER_NOTIFICATION_KEY_CREATED_ON,
|
|
1121
2553
|
USER_NOTIFICATION_KEY_NOTIFICATION,
|
|
@@ -1126,20 +2558,62 @@ export const USER_NOTIFICATION_KEYS = [
|
|
|
1126
2558
|
USER_NOTIFICATION_KEY_USER_NOTIFICATION_ID,
|
|
1127
2559
|
] as const;
|
|
1128
2560
|
|
|
2561
|
+
/**
|
|
2562
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2563
|
+
*/
|
|
1129
2564
|
export const USER_WITH_ATTRIBUTES_KEY_CREATED_ON = 'created_on' as keyof UserWithAttributes;
|
|
2565
|
+
/**
|
|
2566
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2567
|
+
*/
|
|
1130
2568
|
export const USER_WITH_ATTRIBUTES_KEY_DELETED_ON = 'deleted_on' as keyof UserWithAttributes;
|
|
2569
|
+
/**
|
|
2570
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2571
|
+
*/
|
|
1131
2572
|
export const USER_WITH_ATTRIBUTES_KEY_EMAIL = 'email' as keyof UserWithAttributes;
|
|
2573
|
+
/**
|
|
2574
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2575
|
+
*/
|
|
1132
2576
|
export const USER_WITH_ATTRIBUTES_KEY_FIRST_NAME = 'first_name' as keyof UserWithAttributes;
|
|
2577
|
+
/**
|
|
2578
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2579
|
+
*/
|
|
1133
2580
|
export const USER_WITH_ATTRIBUTES_KEY_LAST_NAME = 'last_name' as keyof UserWithAttributes;
|
|
2581
|
+
/**
|
|
2582
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2583
|
+
*/
|
|
1134
2584
|
export const USER_WITH_ATTRIBUTES_KEY_LOCALE = 'locale' as keyof UserWithAttributes;
|
|
2585
|
+
/**
|
|
2586
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2587
|
+
*/
|
|
1135
2588
|
export const USER_WITH_ATTRIBUTES_KEY_ORGANIZATION_ID = 'organization_id' as keyof UserWithAttributes;
|
|
2589
|
+
/**
|
|
2590
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2591
|
+
*/
|
|
1136
2592
|
export const USER_WITH_ATTRIBUTES_KEY_PHONE = 'phone' as keyof UserWithAttributes;
|
|
2593
|
+
/**
|
|
2594
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2595
|
+
*/
|
|
1137
2596
|
export const USER_WITH_ATTRIBUTES_KEY_STATUS = 'status' as keyof UserWithAttributes;
|
|
2597
|
+
/**
|
|
2598
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2599
|
+
*/
|
|
1138
2600
|
export const USER_WITH_ATTRIBUTES_KEY_UPDATED_ON = 'updated_on' as keyof UserWithAttributes;
|
|
2601
|
+
/**
|
|
2602
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2603
|
+
*/
|
|
1139
2604
|
export const USER_WITH_ATTRIBUTES_KEY_USER_ATTRIBUTES = 'user_attributes' as keyof UserWithAttributes;
|
|
2605
|
+
/**
|
|
2606
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2607
|
+
*/
|
|
1140
2608
|
export const USER_WITH_ATTRIBUTES_KEY_USER_ID = 'user_id' as keyof UserWithAttributes;
|
|
2609
|
+
/**
|
|
2610
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2611
|
+
*/
|
|
1141
2612
|
export const USER_WITH_ATTRIBUTES_KEY_USERNAME = 'username' as keyof UserWithAttributes;
|
|
1142
2613
|
|
|
2614
|
+
/**
|
|
2615
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2616
|
+
*/
|
|
1143
2617
|
export const USER_WITH_ATTRIBUTES_KEYS = [
|
|
1144
2618
|
USER_WITH_ATTRIBUTES_KEY_CREATED_ON,
|
|
1145
2619
|
USER_WITH_ATTRIBUTES_KEY_DELETED_ON,
|
|
@@ -1156,22 +2630,70 @@ export const USER_WITH_ATTRIBUTES_KEYS = [
|
|
|
1156
2630
|
USER_WITH_ATTRIBUTES_KEY_USERNAME,
|
|
1157
2631
|
] as const;
|
|
1158
2632
|
|
|
2633
|
+
/**
|
|
2634
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2635
|
+
*/
|
|
1159
2636
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_CREATED_ON = 'created_on' as keyof UserWithRelationPermissions;
|
|
2637
|
+
/**
|
|
2638
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2639
|
+
*/
|
|
1160
2640
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_DELETED_ON = 'deleted_on' as keyof UserWithRelationPermissions;
|
|
2641
|
+
/**
|
|
2642
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2643
|
+
*/
|
|
1161
2644
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_EMAIL = 'email' as keyof UserWithRelationPermissions;
|
|
2645
|
+
/**
|
|
2646
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2647
|
+
*/
|
|
1162
2648
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_FIRST_NAME = 'first_name' as keyof UserWithRelationPermissions;
|
|
2649
|
+
/**
|
|
2650
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2651
|
+
*/
|
|
1163
2652
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_LAST_NAME = 'last_name' as keyof UserWithRelationPermissions;
|
|
2653
|
+
/**
|
|
2654
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2655
|
+
*/
|
|
1164
2656
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_LOCALE = 'locale' as keyof UserWithRelationPermissions;
|
|
2657
|
+
/**
|
|
2658
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2659
|
+
*/
|
|
1165
2660
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_ORGANIZATION_ID = 'organization_id' as keyof UserWithRelationPermissions;
|
|
2661
|
+
/**
|
|
2662
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2663
|
+
*/
|
|
1166
2664
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_PERMISSIONS = 'permissions' as keyof UserWithRelationPermissions;
|
|
2665
|
+
/**
|
|
2666
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2667
|
+
*/
|
|
1167
2668
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_PHONE = 'phone' as keyof UserWithRelationPermissions;
|
|
2669
|
+
/**
|
|
2670
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2671
|
+
*/
|
|
1168
2672
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_RELATIONS = 'relations' as keyof UserWithRelationPermissions;
|
|
2673
|
+
/**
|
|
2674
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2675
|
+
*/
|
|
1169
2676
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_STATUS = 'status' as keyof UserWithRelationPermissions;
|
|
2677
|
+
/**
|
|
2678
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2679
|
+
*/
|
|
1170
2680
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_UPDATED_ON = 'updated_on' as keyof UserWithRelationPermissions;
|
|
2681
|
+
/**
|
|
2682
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2683
|
+
*/
|
|
1171
2684
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_USER_ATTRIBUTES = 'user_attributes' as keyof UserWithRelationPermissions;
|
|
2685
|
+
/**
|
|
2686
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2687
|
+
*/
|
|
1172
2688
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_USER_ID = 'user_id' as keyof UserWithRelationPermissions;
|
|
2689
|
+
/**
|
|
2690
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2691
|
+
*/
|
|
1173
2692
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_USERNAME = 'username' as keyof UserWithRelationPermissions;
|
|
1174
2693
|
|
|
2694
|
+
/**
|
|
2695
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2696
|
+
*/
|
|
1175
2697
|
export const USER_WITH_RELATION_PERMISSIONS_KEYS = [
|
|
1176
2698
|
USER_WITH_RELATION_PERMISSIONS_KEY_CREATED_ON,
|
|
1177
2699
|
USER_WITH_RELATION_PERMISSIONS_KEY_DELETED_ON,
|