@opusdns/api 0.8.0 → 0.10.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 +3 -3
- package/src/helpers/constants.ts +1863 -0
- package/src/helpers/index.ts +19 -0
- package/src/helpers/keys.ts +15719 -0
- package/src/helpers/requests.ts +3493 -0
- package/src/helpers/responses.ts +5428 -0
- package/src/helpers/schemas-arrays.ts +543 -0
- package/src/helpers/schemas.ts +2284 -0
- package/src/index.ts +2 -0
- package/src/openapi.yaml +96 -3
- package/src/schema.d.ts +489 -0
- package/src/types/constants.ts +110 -1
- package/src/types/keys.ts +1547 -7
- package/src/types/types.ts +472 -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';
|
|
@@ -17,6 +15,7 @@ import { Get_Domains_Response_V1 } from './types';
|
|
|
17
15
|
import { Get_DomainsBydomainReference_Response_V1 } from './types';
|
|
18
16
|
import { Get_DomainsCheck_Response_V1 } from './types';
|
|
19
17
|
import { Get_DomainSearchSuggest_Response_V1 } from './types';
|
|
18
|
+
import { Get_DomainsSummary_Response_V1 } from './types';
|
|
20
19
|
import { Get_EmailForwards_Response_V1 } from './types';
|
|
21
20
|
import { Get_EmailForwardsByemailForwardId_Response_V1 } from './types';
|
|
22
21
|
import { Get_Event_Response_V1 } from './types';
|
|
@@ -50,6 +49,7 @@ import { DnsZone } from './types';
|
|
|
50
49
|
import { DomainCheck } from './types';
|
|
51
50
|
import { Domain } from './types';
|
|
52
51
|
import { DomainSearch } from './types';
|
|
52
|
+
import { DomainSummary } from './types';
|
|
53
53
|
import { EmailForward } from './types';
|
|
54
54
|
import { EventSchema } from './types';
|
|
55
55
|
import { IpRestriction } from './types';
|
|
@@ -60,48 +60,129 @@ import { UserNotification } from './types';
|
|
|
60
60
|
import { UserWithAttributes } from './types';
|
|
61
61
|
import { UserWithRelationPermissions } from './types';
|
|
62
62
|
|
|
63
|
+
/**
|
|
64
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
65
|
+
*/
|
|
63
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
|
+
*/
|
|
64
70
|
export const GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_AuthClientCredentials_Response_V1;
|
|
65
71
|
|
|
72
|
+
/**
|
|
73
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
74
|
+
*/
|
|
66
75
|
export const GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEYS = [
|
|
67
76
|
GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEY_PAGINATION,
|
|
68
77
|
GET_AUTH_CLIENT_CREDENTIALS_RESPONSE_V1_KEY_RESULTS,
|
|
69
78
|
] as const;
|
|
70
79
|
|
|
80
|
+
/**
|
|
81
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
82
|
+
*/
|
|
71
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
|
+
*/
|
|
72
87
|
export const GET_AVAILABILITY_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Availability_Response_V1;
|
|
73
88
|
|
|
89
|
+
/**
|
|
90
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
91
|
+
*/
|
|
74
92
|
export const GET_AVAILABILITY_RESPONSE_V1_KEYS = [
|
|
75
93
|
GET_AVAILABILITY_RESPONSE_V1_KEY_META,
|
|
76
94
|
GET_AVAILABILITY_RESPONSE_V1_KEY_RESULTS,
|
|
77
95
|
] as const;
|
|
78
96
|
|
|
97
|
+
/**
|
|
98
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
99
|
+
*/
|
|
79
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
|
+
*/
|
|
80
104
|
export const GET_CONTACTS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Contacts_Response_V1;
|
|
81
105
|
|
|
106
|
+
/**
|
|
107
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
108
|
+
*/
|
|
82
109
|
export const GET_CONTACTS_RESPONSE_V1_KEYS = [
|
|
83
110
|
GET_CONTACTS_RESPONSE_V1_KEY_PAGINATION,
|
|
84
111
|
GET_CONTACTS_RESPONSE_V1_KEY_RESULTS,
|
|
85
112
|
] as const;
|
|
86
113
|
|
|
114
|
+
/**
|
|
115
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
116
|
+
*/
|
|
87
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
|
+
*/
|
|
88
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
|
+
*/
|
|
89
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
|
+
*/
|
|
90
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
|
+
*/
|
|
91
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
|
+
*/
|
|
92
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
|
+
*/
|
|
93
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
|
+
*/
|
|
94
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
|
+
*/
|
|
95
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
|
+
*/
|
|
96
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
|
+
*/
|
|
97
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
|
+
*/
|
|
98
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
|
+
*/
|
|
99
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
|
+
*/
|
|
100
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
|
+
*/
|
|
101
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
|
+
*/
|
|
102
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
|
+
*/
|
|
103
181
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_TITLE = 'title' as keyof Get_ContactsBycontactId_Response_V1;
|
|
104
182
|
|
|
183
|
+
/**
|
|
184
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
185
|
+
*/
|
|
105
186
|
export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEYS = [
|
|
106
187
|
GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_CITY,
|
|
107
188
|
GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_CONTACT_ID,
|
|
@@ -122,15 +203,42 @@ export const GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEYS = [
|
|
|
122
203
|
GET_CONTACTS_BYCONTACT_ID_RESPONSE_V1_KEY_TITLE,
|
|
123
204
|
] as const;
|
|
124
205
|
|
|
206
|
+
/**
|
|
207
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
208
|
+
*/
|
|
125
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
|
+
*/
|
|
126
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
|
+
*/
|
|
127
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
|
+
*/
|
|
128
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
|
+
*/
|
|
129
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
|
+
*/
|
|
130
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
|
+
*/
|
|
131
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
|
+
*/
|
|
132
237
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_VERIFIED_ON = 'verified_on' as keyof Get_ContactsBycontactIdVerification_Response_V1;
|
|
133
238
|
|
|
239
|
+
/**
|
|
240
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
241
|
+
*/
|
|
134
242
|
export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEYS = [
|
|
135
243
|
GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_CANCELED_ON,
|
|
136
244
|
GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_CONTACT_ID,
|
|
@@ -142,20 +250,62 @@ export const GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEYS = [
|
|
|
142
250
|
GET_CONTACTS_BYCONTACT_ID_VERIFICATION_RESPONSE_V1_KEY_VERIFIED_ON,
|
|
143
251
|
] as const;
|
|
144
252
|
|
|
253
|
+
/**
|
|
254
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
255
|
+
*/
|
|
145
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
|
+
*/
|
|
146
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
|
+
*/
|
|
147
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
|
+
*/
|
|
148
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
|
+
*/
|
|
149
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
|
+
*/
|
|
150
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
|
+
*/
|
|
151
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
|
+
*/
|
|
152
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
|
+
*/
|
|
153
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
|
+
*/
|
|
154
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
|
+
*/
|
|
155
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
|
+
*/
|
|
156
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
|
+
*/
|
|
157
304
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_TITLE = 'title' as keyof Get_ContactsVerification_Response_V1;
|
|
158
305
|
|
|
306
|
+
/**
|
|
307
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
308
|
+
*/
|
|
159
309
|
export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEYS = [
|
|
160
310
|
GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_CITY,
|
|
161
311
|
GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_COUNTRY,
|
|
@@ -172,19 +322,43 @@ export const GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEYS = [
|
|
|
172
322
|
GET_CONTACTS_VERIFICATION_RESPONSE_V1_KEY_TITLE,
|
|
173
323
|
] as const;
|
|
174
324
|
|
|
325
|
+
/**
|
|
326
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
327
|
+
*/
|
|
175
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
|
+
*/
|
|
176
332
|
export const GET_DNS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Dns_Response_V1;
|
|
177
333
|
|
|
334
|
+
/**
|
|
335
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
336
|
+
*/
|
|
178
337
|
export const GET_DNS_RESPONSE_V1_KEYS = [
|
|
179
338
|
GET_DNS_RESPONSE_V1_KEY_PAGINATION,
|
|
180
339
|
GET_DNS_RESPONSE_V1_KEY_RESULTS,
|
|
181
340
|
] as const;
|
|
182
341
|
|
|
342
|
+
/**
|
|
343
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
344
|
+
*/
|
|
183
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
|
+
*/
|
|
184
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
|
+
*/
|
|
185
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
|
+
*/
|
|
186
357
|
export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_RRSETS = 'rrsets' as keyof Get_DnsByzoneName_Response_V1;
|
|
187
358
|
|
|
359
|
+
/**
|
|
360
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
361
|
+
*/
|
|
188
362
|
export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEYS = [
|
|
189
363
|
GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_DNSSEC_STATUS,
|
|
190
364
|
GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_DOMAIN_PARTS,
|
|
@@ -192,35 +366,107 @@ export const GET_DNS_BYZONE_NAME_RESPONSE_V1_KEYS = [
|
|
|
192
366
|
GET_DNS_BYZONE_NAME_RESPONSE_V1_KEY_RRSETS,
|
|
193
367
|
] as const;
|
|
194
368
|
|
|
369
|
+
/**
|
|
370
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
371
|
+
*/
|
|
195
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
|
+
*/
|
|
196
376
|
export const GET_DOMAINS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Domains_Response_V1;
|
|
197
377
|
|
|
378
|
+
/**
|
|
379
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
380
|
+
*/
|
|
198
381
|
export const GET_DOMAINS_RESPONSE_V1_KEYS = [
|
|
199
382
|
GET_DOMAINS_RESPONSE_V1_KEY_PAGINATION,
|
|
200
383
|
GET_DOMAINS_RESPONSE_V1_KEY_RESULTS,
|
|
201
384
|
] as const;
|
|
202
385
|
|
|
386
|
+
/**
|
|
387
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
388
|
+
*/
|
|
203
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
|
+
*/
|
|
204
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
|
+
*/
|
|
205
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
|
+
*/
|
|
206
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
|
+
*/
|
|
207
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
|
+
*/
|
|
208
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
|
+
*/
|
|
209
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
|
+
*/
|
|
210
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
|
+
*/
|
|
211
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
|
+
*/
|
|
212
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
|
+
*/
|
|
213
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
|
+
*/
|
|
214
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
|
+
*/
|
|
215
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
|
+
*/
|
|
216
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
|
+
*/
|
|
217
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
|
+
*/
|
|
218
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
|
+
*/
|
|
219
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
|
+
*/
|
|
220
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
|
+
*/
|
|
221
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
|
+
*/
|
|
222
465
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Get_DomainsBydomainReference_Response_V1;
|
|
223
466
|
|
|
467
|
+
/**
|
|
468
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
469
|
+
*/
|
|
224
470
|
export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEYS = [
|
|
225
471
|
GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE,
|
|
226
472
|
GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -244,35 +490,97 @@ export const GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEYS = [
|
|
|
244
490
|
GET_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_UPDATED_ON,
|
|
245
491
|
] as const;
|
|
246
492
|
|
|
493
|
+
/**
|
|
494
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
495
|
+
*/
|
|
247
496
|
export const GET_DOMAINS_CHECK_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_DomainsCheck_Response_V1;
|
|
248
497
|
|
|
498
|
+
/**
|
|
499
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
500
|
+
*/
|
|
249
501
|
export const GET_DOMAINS_CHECK_RESPONSE_V1_KEYS = [
|
|
250
502
|
GET_DOMAINS_CHECK_RESPONSE_V1_KEY_RESULTS,
|
|
251
503
|
] as const;
|
|
252
504
|
|
|
505
|
+
/**
|
|
506
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
507
|
+
*/
|
|
253
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
|
+
*/
|
|
254
512
|
export const GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_DomainSearchSuggest_Response_V1;
|
|
255
513
|
|
|
514
|
+
/**
|
|
515
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
516
|
+
*/
|
|
256
517
|
export const GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEYS = [
|
|
257
518
|
GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEY_META,
|
|
258
519
|
GET_DOMAIN_SEARCH_SUGGEST_RESPONSE_V1_KEY_RESULTS,
|
|
259
520
|
] as const;
|
|
260
521
|
|
|
522
|
+
/**
|
|
523
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
524
|
+
*/
|
|
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
|
+
*/
|
|
529
|
+
export const GET_DOMAINS_SUMMARY_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Get_DomainsSummary_Response_V1;
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
533
|
+
*/
|
|
534
|
+
export const GET_DOMAINS_SUMMARY_RESPONSE_V1_KEYS = [
|
|
535
|
+
GET_DOMAINS_SUMMARY_RESPONSE_V1_KEY_DOMAINS,
|
|
536
|
+
GET_DOMAINS_SUMMARY_RESPONSE_V1_KEY_ORGANIZATION_ID,
|
|
537
|
+
] as const;
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
541
|
+
*/
|
|
261
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
|
+
*/
|
|
262
546
|
export const GET_EMAIL_FORWARDS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_EmailForwards_Response_V1;
|
|
263
547
|
|
|
548
|
+
/**
|
|
549
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
550
|
+
*/
|
|
264
551
|
export const GET_EMAIL_FORWARDS_RESPONSE_V1_KEYS = [
|
|
265
552
|
GET_EMAIL_FORWARDS_RESPONSE_V1_KEY_PAGINATION,
|
|
266
553
|
GET_EMAIL_FORWARDS_RESPONSE_V1_KEY_RESULTS,
|
|
267
554
|
] as const;
|
|
268
555
|
|
|
556
|
+
/**
|
|
557
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
558
|
+
*/
|
|
269
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
|
+
*/
|
|
270
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
|
+
*/
|
|
271
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
|
+
*/
|
|
272
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
|
+
*/
|
|
273
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
|
+
*/
|
|
274
579
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Get_EmailForwardsByemailForwardId_Response_V1;
|
|
275
580
|
|
|
581
|
+
/**
|
|
582
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
583
|
+
*/
|
|
276
584
|
export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEYS = [
|
|
277
585
|
GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
278
586
|
GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_EMAIL_FORWARD_ID,
|
|
@@ -282,27 +590,75 @@ export const GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEYS = [
|
|
|
282
590
|
GET_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_UPDATED_ON,
|
|
283
591
|
] as const;
|
|
284
592
|
|
|
593
|
+
/**
|
|
594
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
595
|
+
*/
|
|
285
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
|
+
*/
|
|
286
600
|
export const GET_EVENT_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Event_Response_V1;
|
|
287
601
|
|
|
602
|
+
/**
|
|
603
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
604
|
+
*/
|
|
288
605
|
export const GET_EVENT_RESPONSE_V1_KEYS = [
|
|
289
606
|
GET_EVENT_RESPONSE_V1_KEY_PAGINATION,
|
|
290
607
|
GET_EVENT_RESPONSE_V1_KEY_RESULTS,
|
|
291
608
|
] as const;
|
|
292
609
|
|
|
610
|
+
/**
|
|
611
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
612
|
+
*/
|
|
293
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
|
+
*/
|
|
294
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
|
+
*/
|
|
295
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
|
+
*/
|
|
296
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
|
+
*/
|
|
297
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
|
+
*/
|
|
298
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
|
+
*/
|
|
299
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
|
+
*/
|
|
300
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
|
+
*/
|
|
301
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
|
+
*/
|
|
302
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
|
+
*/
|
|
303
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
|
+
*/
|
|
304
657
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_TYPE = 'type' as keyof Get_EventByeventId_Response_V1;
|
|
305
658
|
|
|
659
|
+
/**
|
|
660
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
661
|
+
*/
|
|
306
662
|
export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEYS = [
|
|
307
663
|
GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_ACKNOWLEDGED_ON,
|
|
308
664
|
GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
@@ -318,23 +674,56 @@ export const GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEYS = [
|
|
|
318
674
|
GET_EVENT_BYEVENT_ID_RESPONSE_V1_KEY_TYPE,
|
|
319
675
|
] as const;
|
|
320
676
|
|
|
677
|
+
/**
|
|
678
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
679
|
+
*/
|
|
321
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
|
+
*/
|
|
322
684
|
export const GET_NOTIFICATIONS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Notifications_Response_V1;
|
|
323
685
|
|
|
686
|
+
/**
|
|
687
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
688
|
+
*/
|
|
324
689
|
export const GET_NOTIFICATIONS_RESPONSE_V1_KEYS = [
|
|
325
690
|
GET_NOTIFICATIONS_RESPONSE_V1_KEY_PAGINATION,
|
|
326
691
|
GET_NOTIFICATIONS_RESPONSE_V1_KEY_RESULTS,
|
|
327
692
|
] as const;
|
|
328
693
|
|
|
694
|
+
/**
|
|
695
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
696
|
+
*/
|
|
329
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
|
+
*/
|
|
330
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
|
+
*/
|
|
331
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
|
+
*/
|
|
332
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
|
+
*/
|
|
333
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
|
+
*/
|
|
334
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
|
+
*/
|
|
335
721
|
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_USER_NOTIFICATION_ID = 'user_notification_id' as keyof Get_NotificationsBynotificationId_Response_V1;
|
|
336
722
|
|
|
337
|
-
|
|
723
|
+
/**
|
|
724
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
725
|
+
*/
|
|
726
|
+
export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEYS = [
|
|
338
727
|
GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
339
728
|
GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_NOTIFICATION,
|
|
340
729
|
GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_NOTIFICATION_ID,
|
|
@@ -344,36 +733,111 @@ export const GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEYS = [
|
|
|
344
733
|
GET_NOTIFICATIONS_BYNOTIFICATION_ID_RESPONSE_V1_KEY_USER_NOTIFICATION_ID,
|
|
345
734
|
] as const;
|
|
346
735
|
|
|
736
|
+
/**
|
|
737
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
738
|
+
*/
|
|
347
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
|
+
*/
|
|
348
743
|
export const GET_ORGANIZATIONS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_Organizations_Response_V1;
|
|
349
744
|
|
|
745
|
+
/**
|
|
746
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
747
|
+
*/
|
|
350
748
|
export const GET_ORGANIZATIONS_RESPONSE_V1_KEYS = [
|
|
351
749
|
GET_ORGANIZATIONS_RESPONSE_V1_KEY_PAGINATION,
|
|
352
750
|
GET_ORGANIZATIONS_RESPONSE_V1_KEY_RESULTS,
|
|
353
751
|
] as const;
|
|
354
752
|
|
|
753
|
+
/**
|
|
754
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
755
|
+
*/
|
|
355
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
|
+
*/
|
|
356
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
|
+
*/
|
|
357
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
|
+
*/
|
|
358
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
|
+
*/
|
|
359
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
|
+
*/
|
|
360
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
|
+
*/
|
|
361
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
|
+
*/
|
|
362
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
|
+
*/
|
|
363
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
|
+
*/
|
|
364
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
|
+
*/
|
|
365
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
|
+
*/
|
|
366
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
|
+
*/
|
|
367
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
|
+
*/
|
|
368
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
|
+
*/
|
|
369
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
|
+
*/
|
|
370
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
|
+
*/
|
|
371
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
|
+
*/
|
|
372
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
|
+
*/
|
|
373
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
|
+
*/
|
|
374
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
|
+
*/
|
|
375
836
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_USERS = 'users' as keyof Get_OrganizationsByorganizationId_Response_V1;
|
|
376
837
|
|
|
838
|
+
/**
|
|
839
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
840
|
+
*/
|
|
377
841
|
export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEYS = [
|
|
378
842
|
GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_ADDRESS_1,
|
|
379
843
|
GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_ADDRESS_2,
|
|
@@ -398,12 +862,30 @@ export const GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEYS = [
|
|
|
398
862
|
GET_ORGANIZATIONS_BYORGANIZATION_ID_RESPONSE_V1_KEY_USERS,
|
|
399
863
|
] as const;
|
|
400
864
|
|
|
865
|
+
/**
|
|
866
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
867
|
+
*/
|
|
401
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
|
+
*/
|
|
402
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
|
+
*/
|
|
403
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
|
+
*/
|
|
404
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
|
+
*/
|
|
405
884
|
export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Get_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
406
885
|
|
|
886
|
+
/**
|
|
887
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
888
|
+
*/
|
|
407
889
|
export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEYS = [
|
|
408
890
|
GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
409
891
|
GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_IP_NETWORK,
|
|
@@ -412,28 +894,79 @@ export const GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_K
|
|
|
412
894
|
GET_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID,
|
|
413
895
|
] as const;
|
|
414
896
|
|
|
897
|
+
/**
|
|
898
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
899
|
+
*/
|
|
415
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
|
+
*/
|
|
416
904
|
export const GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEY_RESULTS = 'results' as keyof Get_OrganizationsUsers_Response_V1;
|
|
417
905
|
|
|
906
|
+
/**
|
|
907
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
908
|
+
*/
|
|
418
909
|
export const GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEYS = [
|
|
419
910
|
GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEY_PAGINATION,
|
|
420
911
|
GET_ORGANIZATIONS_USERS_RESPONSE_V1_KEY_RESULTS,
|
|
421
912
|
] as const;
|
|
422
913
|
|
|
914
|
+
/**
|
|
915
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
916
|
+
*/
|
|
423
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
|
+
*/
|
|
424
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
|
+
*/
|
|
425
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
|
+
*/
|
|
426
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
|
+
*/
|
|
427
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
|
+
*/
|
|
428
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
|
+
*/
|
|
429
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
|
+
*/
|
|
430
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
|
+
*/
|
|
431
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
|
+
*/
|
|
432
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
|
+
*/
|
|
433
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
|
+
*/
|
|
434
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
|
+
*/
|
|
435
965
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_USERNAME = 'username' as keyof Get_UsersByuserId_Response_V1;
|
|
436
966
|
|
|
967
|
+
/**
|
|
968
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
969
|
+
*/
|
|
437
970
|
export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEYS = [
|
|
438
971
|
GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
439
972
|
GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_DELETED_ON,
|
|
@@ -450,34 +983,94 @@ export const GET_USERS_BYUSER_ID_RESPONSE_V1_KEYS = [
|
|
|
450
983
|
GET_USERS_BYUSER_ID_RESPONSE_V1_KEY_USERNAME,
|
|
451
984
|
] as const;
|
|
452
985
|
|
|
986
|
+
/**
|
|
987
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
988
|
+
*/
|
|
453
989
|
export const GET_USERS_BYUSER_ID_PERMISSIONS_RESPONSE_V1_KEY_PERMISSIONS = 'permissions' as keyof Get_UsersByuserIdPermissions_Response_V1;
|
|
454
990
|
|
|
991
|
+
/**
|
|
992
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
993
|
+
*/
|
|
455
994
|
export const GET_USERS_BYUSER_ID_PERMISSIONS_RESPONSE_V1_KEYS = [
|
|
456
995
|
GET_USERS_BYUSER_ID_PERMISSIONS_RESPONSE_V1_KEY_PERMISSIONS,
|
|
457
996
|
] as const;
|
|
458
997
|
|
|
998
|
+
/**
|
|
999
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1000
|
+
*/
|
|
459
1001
|
export const GET_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEY_RELATIONS = 'relations' as keyof Get_UsersByuserIdRoles_Response_V1;
|
|
460
1002
|
|
|
1003
|
+
/**
|
|
1004
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1005
|
+
*/
|
|
461
1006
|
export const GET_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEYS = [
|
|
462
1007
|
GET_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEY_RELATIONS,
|
|
463
1008
|
] as const;
|
|
464
1009
|
|
|
1010
|
+
/**
|
|
1011
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1012
|
+
*/
|
|
465
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
|
+
*/
|
|
466
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
|
+
*/
|
|
467
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
|
+
*/
|
|
468
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
|
+
*/
|
|
469
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
|
+
*/
|
|
470
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
|
+
*/
|
|
471
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
|
+
*/
|
|
472
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
|
+
*/
|
|
473
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
|
+
*/
|
|
474
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
|
+
*/
|
|
475
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
|
+
*/
|
|
476
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
|
+
*/
|
|
477
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
|
+
*/
|
|
478
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
|
+
*/
|
|
479
1069
|
export const GET_USERS_ME_RESPONSE_V1_KEY_USERNAME = 'username' as keyof Get_UsersMe_Response_V1;
|
|
480
1070
|
|
|
1071
|
+
/**
|
|
1072
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1073
|
+
*/
|
|
481
1074
|
export const GET_USERS_ME_RESPONSE_V1_KEYS = [
|
|
482
1075
|
GET_USERS_ME_RESPONSE_V1_KEY_CREATED_ON,
|
|
483
1076
|
GET_USERS_ME_RESPONSE_V1_KEY_DELETED_ON,
|
|
@@ -496,27 +1089,90 @@ export const GET_USERS_ME_RESPONSE_V1_KEYS = [
|
|
|
496
1089
|
GET_USERS_ME_RESPONSE_V1_KEY_USERNAME,
|
|
497
1090
|
] as const;
|
|
498
1091
|
|
|
1092
|
+
/**
|
|
1093
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1094
|
+
*/
|
|
499
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
|
+
*/
|
|
500
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
|
+
*/
|
|
501
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
|
+
*/
|
|
502
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
|
+
*/
|
|
503
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
|
+
*/
|
|
504
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
|
+
*/
|
|
505
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
|
+
*/
|
|
506
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
|
+
*/
|
|
507
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
|
+
*/
|
|
508
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
|
+
*/
|
|
509
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
|
+
*/
|
|
510
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
|
+
*/
|
|
511
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
|
+
*/
|
|
512
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
|
+
*/
|
|
513
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
|
+
*/
|
|
514
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
|
+
*/
|
|
515
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
|
+
*/
|
|
516
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
|
+
*/
|
|
517
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
|
+
*/
|
|
518
1171
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Patch_DomainsBydomainReference_Response_V1;
|
|
519
1172
|
|
|
1173
|
+
/**
|
|
1174
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1175
|
+
*/
|
|
520
1176
|
export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEYS = [
|
|
521
1177
|
PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE,
|
|
522
1178
|
PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -540,13 +1196,34 @@ export const PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEYS = [
|
|
|
540
1196
|
PATCH_DOMAINS_BYDOMAIN_REFERENCE_RESPONSE_V1_KEY_UPDATED_ON,
|
|
541
1197
|
] as const;
|
|
542
1198
|
|
|
1199
|
+
/**
|
|
1200
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1201
|
+
*/
|
|
543
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
|
+
*/
|
|
544
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
|
+
*/
|
|
545
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
|
+
*/
|
|
546
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
|
+
*/
|
|
547
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
|
+
*/
|
|
548
1222
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Patch_EmailForwardsByemailForwardId_Response_V1;
|
|
549
1223
|
|
|
1224
|
+
/**
|
|
1225
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1226
|
+
*/
|
|
550
1227
|
export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEYS = [
|
|
551
1228
|
PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
552
1229
|
PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_EMAIL_FORWARD_ID,
|
|
@@ -556,28 +1233,94 @@ export const PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEYS = [
|
|
|
556
1233
|
PATCH_EMAIL_FORWARDS_BYEMAIL_FORWARD_ID_RESPONSE_V1_KEY_UPDATED_ON,
|
|
557
1234
|
] as const;
|
|
558
1235
|
|
|
1236
|
+
/**
|
|
1237
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1238
|
+
*/
|
|
559
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
|
+
*/
|
|
560
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
|
+
*/
|
|
561
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
|
+
*/
|
|
562
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
|
+
*/
|
|
563
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
|
+
*/
|
|
564
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
|
+
*/
|
|
565
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
|
+
*/
|
|
566
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
|
+
*/
|
|
567
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
|
+
*/
|
|
568
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
|
+
*/
|
|
569
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
|
+
*/
|
|
570
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
|
+
*/
|
|
571
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
|
+
*/
|
|
572
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
|
+
*/
|
|
573
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
|
+
*/
|
|
574
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
|
+
*/
|
|
575
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
|
+
*/
|
|
576
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
|
+
*/
|
|
577
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
|
+
*/
|
|
578
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
|
+
*/
|
|
579
1319
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_USERS = 'users' as keyof Patch_OrganizationsByorganizationIdPlan_Response_V1;
|
|
580
1320
|
|
|
1321
|
+
/**
|
|
1322
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1323
|
+
*/
|
|
581
1324
|
export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEYS = [
|
|
582
1325
|
PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_ADDRESS_1,
|
|
583
1326
|
PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_ADDRESS_2,
|
|
@@ -602,12 +1345,30 @@ export const PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEYS = [
|
|
|
602
1345
|
PATCH_ORGANIZATIONS_BYORGANIZATION_ID_PLAN_RESPONSE_V1_KEY_USERS,
|
|
603
1346
|
] as const;
|
|
604
1347
|
|
|
1348
|
+
/**
|
|
1349
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1350
|
+
*/
|
|
605
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
|
+
*/
|
|
606
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
|
+
*/
|
|
607
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
|
+
*/
|
|
608
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
|
+
*/
|
|
609
1367
|
export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Patch_OrganizationsIpRestrictionsByipRestrictionId_Response_V1;
|
|
610
1368
|
|
|
1369
|
+
/**
|
|
1370
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1371
|
+
*/
|
|
611
1372
|
export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEYS = [
|
|
612
1373
|
PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
613
1374
|
PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_IP_NETWORK,
|
|
@@ -616,20 +1377,62 @@ export const PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1
|
|
|
616
1377
|
PATCH_ORGANIZATIONS_IP_RESTRICTIONS_BYIP_RESTRICTION_ID_RESPONSE_V1_KEY_ORGANIZATION_ID,
|
|
617
1378
|
] as const;
|
|
618
1379
|
|
|
1380
|
+
/**
|
|
1381
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1382
|
+
*/
|
|
619
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
|
+
*/
|
|
620
1387
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_DELETED_ON = 'deleted_on' as keyof Patch_UsersByuserId_Response_V1;
|
|
621
|
-
|
|
1388
|
+
/**
|
|
1389
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1390
|
+
*/
|
|
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
|
+
*/
|
|
622
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
|
+
*/
|
|
623
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
|
+
*/
|
|
624
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
|
+
*/
|
|
625
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
|
+
*/
|
|
626
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
|
+
*/
|
|
627
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
|
+
*/
|
|
628
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
|
+
*/
|
|
629
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
|
+
*/
|
|
630
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
|
+
*/
|
|
631
1431
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_USERNAME = 'username' as keyof Patch_UsersByuserId_Response_V1;
|
|
632
1432
|
|
|
1433
|
+
/**
|
|
1434
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1435
|
+
*/
|
|
633
1436
|
export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEYS = [
|
|
634
1437
|
PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_CREATED_ON,
|
|
635
1438
|
PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_DELETED_ON,
|
|
@@ -646,30 +1449,90 @@ export const PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEYS = [
|
|
|
646
1449
|
PATCH_USERS_BYUSER_ID_RESPONSE_V1_KEY_USERNAME,
|
|
647
1450
|
] as const;
|
|
648
1451
|
|
|
1452
|
+
/**
|
|
1453
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1454
|
+
*/
|
|
649
1455
|
export const PATCH_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEY_RELATIONS = 'relations' as keyof Patch_UsersByuserIdRoles_Response_V1;
|
|
650
1456
|
|
|
1457
|
+
/**
|
|
1458
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1459
|
+
*/
|
|
651
1460
|
export const PATCH_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEYS = [
|
|
652
1461
|
PATCH_USERS_BYUSER_ID_ROLES_RESPONSE_V1_KEY_RELATIONS,
|
|
653
1462
|
] as const;
|
|
654
1463
|
|
|
1464
|
+
/**
|
|
1465
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1466
|
+
*/
|
|
655
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
|
+
*/
|
|
656
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
|
+
*/
|
|
657
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
|
+
*/
|
|
658
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
|
+
*/
|
|
659
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
|
+
*/
|
|
660
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
|
+
*/
|
|
661
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
|
+
*/
|
|
662
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
|
+
*/
|
|
663
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
|
+
*/
|
|
664
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
|
+
*/
|
|
665
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
|
+
*/
|
|
666
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
|
+
*/
|
|
667
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
|
+
*/
|
|
668
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
|
+
*/
|
|
669
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
|
+
*/
|
|
670
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
|
+
*/
|
|
671
1531
|
export const POST_CONTACTS_RESPONSE_V1_KEY_TITLE = 'title' as keyof Post_Contacts_Response_V1;
|
|
672
1532
|
|
|
1533
|
+
/**
|
|
1534
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1535
|
+
*/
|
|
673
1536
|
export const POST_CONTACTS_RESPONSE_V1_KEYS = [
|
|
674
1537
|
POST_CONTACTS_RESPONSE_V1_KEY_CITY,
|
|
675
1538
|
POST_CONTACTS_RESPONSE_V1_KEY_CONTACT_ID,
|
|
@@ -690,27 +1553,90 @@ export const POST_CONTACTS_RESPONSE_V1_KEYS = [
|
|
|
690
1553
|
POST_CONTACTS_RESPONSE_V1_KEY_TITLE,
|
|
691
1554
|
] as const;
|
|
692
1555
|
|
|
1556
|
+
/**
|
|
1557
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1558
|
+
*/
|
|
693
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
|
+
*/
|
|
694
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
|
+
*/
|
|
695
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
|
+
*/
|
|
696
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
|
+
*/
|
|
697
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
|
+
*/
|
|
698
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
|
+
*/
|
|
699
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
|
+
*/
|
|
700
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
|
+
*/
|
|
701
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
|
+
*/
|
|
702
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
|
+
*/
|
|
703
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
|
+
*/
|
|
704
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
|
+
*/
|
|
705
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
|
+
*/
|
|
706
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
|
+
*/
|
|
707
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
|
+
*/
|
|
708
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
|
+
*/
|
|
709
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
|
+
*/
|
|
710
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
|
+
*/
|
|
711
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
|
+
*/
|
|
712
1635
|
export const POST_DOMAINS_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Post_Domains_Response_V1;
|
|
713
1636
|
|
|
1637
|
+
/**
|
|
1638
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1639
|
+
*/
|
|
714
1640
|
export const POST_DOMAINS_RESPONSE_V1_KEYS = [
|
|
715
1641
|
POST_DOMAINS_RESPONSE_V1_KEY_AUTH_CODE,
|
|
716
1642
|
POST_DOMAINS_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -734,27 +1660,90 @@ export const POST_DOMAINS_RESPONSE_V1_KEYS = [
|
|
|
734
1660
|
POST_DOMAINS_RESPONSE_V1_KEY_UPDATED_ON,
|
|
735
1661
|
] as const;
|
|
736
1662
|
|
|
1663
|
+
/**
|
|
1664
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1665
|
+
*/
|
|
737
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
|
+
*/
|
|
738
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
|
+
*/
|
|
739
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
|
+
*/
|
|
740
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
|
+
*/
|
|
741
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
|
+
*/
|
|
742
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
|
+
*/
|
|
743
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
|
+
*/
|
|
744
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
|
+
*/
|
|
745
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
|
+
*/
|
|
746
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
|
+
*/
|
|
747
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
|
+
*/
|
|
748
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
|
+
*/
|
|
749
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
|
+
*/
|
|
750
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
|
+
*/
|
|
751
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
|
+
*/
|
|
752
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
|
+
*/
|
|
753
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
|
+
*/
|
|
754
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
|
+
*/
|
|
755
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
|
+
*/
|
|
756
1742
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Post_DomainsTransfer_Response_V1;
|
|
757
1743
|
|
|
1744
|
+
/**
|
|
1745
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1746
|
+
*/
|
|
758
1747
|
export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEYS = [
|
|
759
1748
|
POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_AUTH_CODE,
|
|
760
1749
|
POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -778,13 +1767,34 @@ export const POST_DOMAINS_TRANSFER_RESPONSE_V1_KEYS = [
|
|
|
778
1767
|
POST_DOMAINS_TRANSFER_RESPONSE_V1_KEY_UPDATED_ON,
|
|
779
1768
|
] as const;
|
|
780
1769
|
|
|
1770
|
+
/**
|
|
1771
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1772
|
+
*/
|
|
781
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
|
+
*/
|
|
782
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
|
+
*/
|
|
783
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
|
+
*/
|
|
784
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
|
+
*/
|
|
785
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
|
+
*/
|
|
786
1793
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_UPDATED_ON = 'updated_on' as keyof Post_EmailForwards_Response_V1;
|
|
787
1794
|
|
|
1795
|
+
/**
|
|
1796
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1797
|
+
*/
|
|
788
1798
|
export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEYS = [
|
|
789
1799
|
POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_CREATED_ON,
|
|
790
1800
|
POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_EMAIL_FORWARD_ID,
|
|
@@ -794,12 +1804,30 @@ export const POST_EMAIL_FORWARDS_RESPONSE_V1_KEYS = [
|
|
|
794
1804
|
POST_EMAIL_FORWARDS_RESPONSE_V1_KEY_UPDATED_ON,
|
|
795
1805
|
] as const;
|
|
796
1806
|
|
|
1807
|
+
/**
|
|
1808
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1809
|
+
*/
|
|
797
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
|
+
*/
|
|
798
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
|
+
*/
|
|
799
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
|
+
*/
|
|
800
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
|
+
*/
|
|
801
1826
|
export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_ORGANIZATION_ID = 'organization_id' as keyof Post_OrganizationsIpRestrictions_Response_V1;
|
|
802
1827
|
|
|
1828
|
+
/**
|
|
1829
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1830
|
+
*/
|
|
803
1831
|
export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEYS = [
|
|
804
1832
|
POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_CREATED_ON,
|
|
805
1833
|
POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_IP_NETWORK,
|
|
@@ -808,28 +1836,79 @@ export const POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEYS = [
|
|
|
808
1836
|
POST_ORGANIZATIONS_IP_RESTRICTIONS_RESPONSE_V1_KEY_ORGANIZATION_ID,
|
|
809
1837
|
] as const;
|
|
810
1838
|
|
|
1839
|
+
/**
|
|
1840
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1841
|
+
*/
|
|
811
1842
|
export const DOMAIN_AVAILABILITY_KEY_META = 'meta' as keyof DomainAvailability;
|
|
1843
|
+
/**
|
|
1844
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1845
|
+
*/
|
|
812
1846
|
export const DOMAIN_AVAILABILITY_KEY_RESULTS = 'results' as keyof DomainAvailability;
|
|
813
1847
|
|
|
1848
|
+
/**
|
|
1849
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1850
|
+
*/
|
|
814
1851
|
export const DOMAIN_AVAILABILITY_KEYS = [
|
|
815
1852
|
DOMAIN_AVAILABILITY_KEY_META,
|
|
816
1853
|
DOMAIN_AVAILABILITY_KEY_RESULTS,
|
|
817
1854
|
] as const;
|
|
818
1855
|
|
|
1856
|
+
/**
|
|
1857
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1858
|
+
*/
|
|
819
1859
|
export const CONTACT_KEY_CITY = 'city' as keyof Contact;
|
|
1860
|
+
/**
|
|
1861
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1862
|
+
*/
|
|
820
1863
|
export const CONTACT_KEY_COUNTRY = 'country' as keyof Contact;
|
|
1864
|
+
/**
|
|
1865
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1866
|
+
*/
|
|
821
1867
|
export const CONTACT_KEY_DISCLOSE = 'disclose' as keyof Contact;
|
|
1868
|
+
/**
|
|
1869
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1870
|
+
*/
|
|
822
1871
|
export const CONTACT_KEY_EMAIL = 'email' as keyof Contact;
|
|
1872
|
+
/**
|
|
1873
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1874
|
+
*/
|
|
823
1875
|
export const CONTACT_KEY_FAX = 'fax' as keyof Contact;
|
|
1876
|
+
/**
|
|
1877
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1878
|
+
*/
|
|
824
1879
|
export const CONTACT_KEY_FIRST_NAME = 'first_name' as keyof Contact;
|
|
1880
|
+
/**
|
|
1881
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1882
|
+
*/
|
|
825
1883
|
export const CONTACT_KEY_LAST_NAME = 'last_name' as keyof Contact;
|
|
1884
|
+
/**
|
|
1885
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1886
|
+
*/
|
|
826
1887
|
export const CONTACT_KEY_ORG = 'org' as keyof Contact;
|
|
1888
|
+
/**
|
|
1889
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1890
|
+
*/
|
|
827
1891
|
export const CONTACT_KEY_PHONE = 'phone' as keyof Contact;
|
|
1892
|
+
/**
|
|
1893
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1894
|
+
*/
|
|
828
1895
|
export const CONTACT_KEY_POSTAL_CODE = 'postal_code' as keyof Contact;
|
|
1896
|
+
/**
|
|
1897
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1898
|
+
*/
|
|
829
1899
|
export const CONTACT_KEY_STATE = 'state' as keyof Contact;
|
|
1900
|
+
/**
|
|
1901
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1902
|
+
*/
|
|
830
1903
|
export const CONTACT_KEY_STREET = 'street' as keyof Contact;
|
|
1904
|
+
/**
|
|
1905
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1906
|
+
*/
|
|
831
1907
|
export const CONTACT_KEY_TITLE = 'title' as keyof Contact;
|
|
832
1908
|
|
|
1909
|
+
/**
|
|
1910
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1911
|
+
*/
|
|
833
1912
|
export const CONTACT_KEYS = [
|
|
834
1913
|
CONTACT_KEY_CITY,
|
|
835
1914
|
CONTACT_KEY_COUNTRY,
|
|
@@ -846,24 +1925,78 @@ export const CONTACT_KEYS = [
|
|
|
846
1925
|
CONTACT_KEY_TITLE,
|
|
847
1926
|
] as const;
|
|
848
1927
|
|
|
1928
|
+
/**
|
|
1929
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1930
|
+
*/
|
|
849
1931
|
export const CONTACT_SCHEMA_KEY_CITY = 'city' as keyof ContactSchema;
|
|
1932
|
+
/**
|
|
1933
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1934
|
+
*/
|
|
850
1935
|
export const CONTACT_SCHEMA_KEY_CONTACT_ID = 'contact_id' as keyof ContactSchema;
|
|
1936
|
+
/**
|
|
1937
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1938
|
+
*/
|
|
851
1939
|
export const CONTACT_SCHEMA_KEY_COUNTRY = 'country' as keyof ContactSchema;
|
|
1940
|
+
/**
|
|
1941
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1942
|
+
*/
|
|
852
1943
|
export const CONTACT_SCHEMA_KEY_CREATED_ON = 'created_on' as keyof ContactSchema;
|
|
1944
|
+
/**
|
|
1945
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1946
|
+
*/
|
|
853
1947
|
export const CONTACT_SCHEMA_KEY_DELETED_ON = 'deleted_on' as keyof ContactSchema;
|
|
1948
|
+
/**
|
|
1949
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1950
|
+
*/
|
|
854
1951
|
export const CONTACT_SCHEMA_KEY_DISCLOSE = 'disclose' as keyof ContactSchema;
|
|
1952
|
+
/**
|
|
1953
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1954
|
+
*/
|
|
855
1955
|
export const CONTACT_SCHEMA_KEY_EMAIL = 'email' as keyof ContactSchema;
|
|
1956
|
+
/**
|
|
1957
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1958
|
+
*/
|
|
856
1959
|
export const CONTACT_SCHEMA_KEY_FAX = 'fax' as keyof ContactSchema;
|
|
1960
|
+
/**
|
|
1961
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1962
|
+
*/
|
|
857
1963
|
export const CONTACT_SCHEMA_KEY_FIRST_NAME = 'first_name' as keyof ContactSchema;
|
|
1964
|
+
/**
|
|
1965
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1966
|
+
*/
|
|
858
1967
|
export const CONTACT_SCHEMA_KEY_LAST_NAME = 'last_name' as keyof ContactSchema;
|
|
1968
|
+
/**
|
|
1969
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1970
|
+
*/
|
|
859
1971
|
export const CONTACT_SCHEMA_KEY_ORG = 'org' as keyof ContactSchema;
|
|
1972
|
+
/**
|
|
1973
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1974
|
+
*/
|
|
860
1975
|
export const CONTACT_SCHEMA_KEY_ORGANIZATION_ID = 'organization_id' as keyof ContactSchema;
|
|
1976
|
+
/**
|
|
1977
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1978
|
+
*/
|
|
861
1979
|
export const CONTACT_SCHEMA_KEY_PHONE = 'phone' as keyof ContactSchema;
|
|
1980
|
+
/**
|
|
1981
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1982
|
+
*/
|
|
862
1983
|
export const CONTACT_SCHEMA_KEY_POSTAL_CODE = 'postal_code' as keyof ContactSchema;
|
|
1984
|
+
/**
|
|
1985
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1986
|
+
*/
|
|
863
1987
|
export const CONTACT_SCHEMA_KEY_STATE = 'state' as keyof ContactSchema;
|
|
1988
|
+
/**
|
|
1989
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1990
|
+
*/
|
|
864
1991
|
export const CONTACT_SCHEMA_KEY_STREET = 'street' as keyof ContactSchema;
|
|
1992
|
+
/**
|
|
1993
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1994
|
+
*/
|
|
865
1995
|
export const CONTACT_SCHEMA_KEY_TITLE = 'title' as keyof ContactSchema;
|
|
866
1996
|
|
|
1997
|
+
/**
|
|
1998
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
1999
|
+
*/
|
|
867
2000
|
export const CONTACT_SCHEMA_KEYS = [
|
|
868
2001
|
CONTACT_SCHEMA_KEY_CITY,
|
|
869
2002
|
CONTACT_SCHEMA_KEY_CONTACT_ID,
|
|
@@ -884,15 +2017,42 @@ export const CONTACT_SCHEMA_KEYS = [
|
|
|
884
2017
|
CONTACT_SCHEMA_KEY_TITLE,
|
|
885
2018
|
] as const;
|
|
886
2019
|
|
|
2020
|
+
/**
|
|
2021
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2022
|
+
*/
|
|
887
2023
|
export const CONTACT_VERIFICATION_KEY_CANCELED_ON = 'canceled_on' as keyof ContactVerification;
|
|
2024
|
+
/**
|
|
2025
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2026
|
+
*/
|
|
888
2027
|
export const CONTACT_VERIFICATION_KEY_CONTACT_ID = 'contact_id' as keyof ContactVerification;
|
|
2028
|
+
/**
|
|
2029
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2030
|
+
*/
|
|
889
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
|
+
*/
|
|
890
2035
|
export const CONTACT_VERIFICATION_KEY_CREATED_ON = 'created_on' as keyof ContactVerification;
|
|
2036
|
+
/**
|
|
2037
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2038
|
+
*/
|
|
891
2039
|
export const CONTACT_VERIFICATION_KEY_STATUS = 'status' as keyof ContactVerification;
|
|
892
|
-
|
|
2040
|
+
/**
|
|
2041
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2042
|
+
*/
|
|
2043
|
+
export const CONTACT_VERIFICATION_KEY_TYPE = 'type' as keyof ContactVerification;
|
|
2044
|
+
/**
|
|
2045
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2046
|
+
*/
|
|
893
2047
|
export const CONTACT_VERIFICATION_KEY_UPDATED_ON = 'updated_on' as keyof ContactVerification;
|
|
2048
|
+
/**
|
|
2049
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2050
|
+
*/
|
|
894
2051
|
export const CONTACT_VERIFICATION_KEY_VERIFIED_ON = 'verified_on' as keyof ContactVerification;
|
|
895
2052
|
|
|
2053
|
+
/**
|
|
2054
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2055
|
+
*/
|
|
896
2056
|
export const CONTACT_VERIFICATION_KEYS = [
|
|
897
2057
|
CONTACT_VERIFICATION_KEY_CANCELED_ON,
|
|
898
2058
|
CONTACT_VERIFICATION_KEY_CONTACT_ID,
|
|
@@ -904,11 +2064,26 @@ export const CONTACT_VERIFICATION_KEYS = [
|
|
|
904
2064
|
CONTACT_VERIFICATION_KEY_VERIFIED_ON,
|
|
905
2065
|
] as const;
|
|
906
2066
|
|
|
2067
|
+
/**
|
|
2068
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2069
|
+
*/
|
|
907
2070
|
export const DNS_ZONE_KEY_DNSSEC_STATUS = 'dnssec_status' as keyof DnsZone;
|
|
2071
|
+
/**
|
|
2072
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2073
|
+
*/
|
|
908
2074
|
export const DNS_ZONE_KEY_DOMAIN_PARTS = 'domain_parts' as keyof DnsZone;
|
|
2075
|
+
/**
|
|
2076
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2077
|
+
*/
|
|
909
2078
|
export const DNS_ZONE_KEY_NAME = 'name' as keyof DnsZone;
|
|
2079
|
+
/**
|
|
2080
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2081
|
+
*/
|
|
910
2082
|
export const DNS_ZONE_KEY_RRSETS = 'rrsets' as keyof DnsZone;
|
|
911
2083
|
|
|
2084
|
+
/**
|
|
2085
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2086
|
+
*/
|
|
912
2087
|
export const DNS_ZONE_KEYS = [
|
|
913
2088
|
DNS_ZONE_KEY_DNSSEC_STATUS,
|
|
914
2089
|
DNS_ZONE_KEY_DOMAIN_PARTS,
|
|
@@ -916,33 +2091,102 @@ export const DNS_ZONE_KEYS = [
|
|
|
916
2091
|
DNS_ZONE_KEY_RRSETS,
|
|
917
2092
|
] as const;
|
|
918
2093
|
|
|
2094
|
+
/**
|
|
2095
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2096
|
+
*/
|
|
919
2097
|
export const DOMAIN_CHECK_KEY_RESULTS = 'results' as keyof DomainCheck;
|
|
920
2098
|
|
|
2099
|
+
/**
|
|
2100
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2101
|
+
*/
|
|
921
2102
|
export const DOMAIN_CHECK_KEYS = [
|
|
922
2103
|
DOMAIN_CHECK_KEY_RESULTS,
|
|
923
2104
|
] as const;
|
|
924
2105
|
|
|
2106
|
+
/**
|
|
2107
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2108
|
+
*/
|
|
925
2109
|
export const DOMAIN_KEY_AUTH_CODE = 'auth_code' as keyof Domain;
|
|
2110
|
+
/**
|
|
2111
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2112
|
+
*/
|
|
926
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
|
+
*/
|
|
927
2117
|
export const DOMAIN_KEY_CANCELED_ON = 'canceled_on' as keyof Domain;
|
|
2118
|
+
/**
|
|
2119
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2120
|
+
*/
|
|
928
2121
|
export const DOMAIN_KEY_CONTACTS = 'contacts' as keyof Domain;
|
|
2122
|
+
/**
|
|
2123
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2124
|
+
*/
|
|
929
2125
|
export const DOMAIN_KEY_CREATED_ON = 'created_on' as keyof Domain;
|
|
2126
|
+
/**
|
|
2127
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2128
|
+
*/
|
|
930
2129
|
export const DOMAIN_KEY_DELETED_ON = 'deleted_on' as keyof Domain;
|
|
2130
|
+
/**
|
|
2131
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2132
|
+
*/
|
|
931
2133
|
export const DOMAIN_KEY_DOMAIN_ID = 'domain_id' as keyof Domain;
|
|
2134
|
+
/**
|
|
2135
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2136
|
+
*/
|
|
932
2137
|
export const DOMAIN_KEY_EXPIRES_ON = 'expires_on' as keyof Domain;
|
|
2138
|
+
/**
|
|
2139
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2140
|
+
*/
|
|
933
2141
|
export const DOMAIN_KEY_NAME = 'name' as keyof Domain;
|
|
2142
|
+
/**
|
|
2143
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2144
|
+
*/
|
|
934
2145
|
export const DOMAIN_KEY_NAMESERVERS = 'nameservers' as keyof Domain;
|
|
2146
|
+
/**
|
|
2147
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2148
|
+
*/
|
|
935
2149
|
export const DOMAIN_KEY_OWNER_ID = 'owner_id' as keyof Domain;
|
|
2150
|
+
/**
|
|
2151
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2152
|
+
*/
|
|
936
2153
|
export const DOMAIN_KEY_REGISTERED_ON = 'registered_on' as keyof Domain;
|
|
2154
|
+
/**
|
|
2155
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2156
|
+
*/
|
|
937
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
|
+
*/
|
|
938
2161
|
export const DOMAIN_KEY_REGISTRY_STATUSES = 'registry_statuses' as keyof Domain;
|
|
2162
|
+
/**
|
|
2163
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2164
|
+
*/
|
|
939
2165
|
export const DOMAIN_KEY_RENEWAL_MODE = 'renewal_mode' as keyof Domain;
|
|
2166
|
+
/**
|
|
2167
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2168
|
+
*/
|
|
940
2169
|
export const DOMAIN_KEY_ROID = 'roid' as keyof Domain;
|
|
2170
|
+
/**
|
|
2171
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2172
|
+
*/
|
|
941
2173
|
export const DOMAIN_KEY_SLD = 'sld' as keyof Domain;
|
|
2174
|
+
/**
|
|
2175
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2176
|
+
*/
|
|
942
2177
|
export const DOMAIN_KEY_TLD = 'tld' as keyof Domain;
|
|
2178
|
+
/**
|
|
2179
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2180
|
+
*/
|
|
943
2181
|
export const DOMAIN_KEY_TRANSFER_LOCK = 'transfer_lock' as keyof Domain;
|
|
2182
|
+
/**
|
|
2183
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2184
|
+
*/
|
|
944
2185
|
export const DOMAIN_KEY_UPDATED_ON = 'updated_on' as keyof Domain;
|
|
945
2186
|
|
|
2187
|
+
/**
|
|
2188
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2189
|
+
*/
|
|
946
2190
|
export const DOMAIN_KEYS = [
|
|
947
2191
|
DOMAIN_KEY_AUTH_CODE,
|
|
948
2192
|
DOMAIN_KEY_AUTH_CODE_EXPIRES_ON,
|
|
@@ -966,21 +2210,68 @@ export const DOMAIN_KEYS = [
|
|
|
966
2210
|
DOMAIN_KEY_UPDATED_ON,
|
|
967
2211
|
] as const;
|
|
968
2212
|
|
|
2213
|
+
/**
|
|
2214
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2215
|
+
*/
|
|
969
2216
|
export const DOMAIN_SEARCH_KEY_META = 'meta' as keyof DomainSearch;
|
|
2217
|
+
/**
|
|
2218
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2219
|
+
*/
|
|
970
2220
|
export const DOMAIN_SEARCH_KEY_RESULTS = 'results' as keyof DomainSearch;
|
|
971
2221
|
|
|
2222
|
+
/**
|
|
2223
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2224
|
+
*/
|
|
972
2225
|
export const DOMAIN_SEARCH_KEYS = [
|
|
973
2226
|
DOMAIN_SEARCH_KEY_META,
|
|
974
2227
|
DOMAIN_SEARCH_KEY_RESULTS,
|
|
975
2228
|
] as const;
|
|
976
2229
|
|
|
2230
|
+
/**
|
|
2231
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2232
|
+
*/
|
|
2233
|
+
export const DOMAIN_SUMMARY_KEY_DOMAINS = 'domains' as keyof DomainSummary;
|
|
2234
|
+
/**
|
|
2235
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2236
|
+
*/
|
|
2237
|
+
export const DOMAIN_SUMMARY_KEY_ORGANIZATION_ID = 'organization_id' as keyof DomainSummary;
|
|
2238
|
+
|
|
2239
|
+
/**
|
|
2240
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2241
|
+
*/
|
|
2242
|
+
export const DOMAIN_SUMMARY_KEYS = [
|
|
2243
|
+
DOMAIN_SUMMARY_KEY_DOMAINS,
|
|
2244
|
+
DOMAIN_SUMMARY_KEY_ORGANIZATION_ID,
|
|
2245
|
+
] as const;
|
|
2246
|
+
|
|
2247
|
+
/**
|
|
2248
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2249
|
+
*/
|
|
977
2250
|
export const EMAIL_FORWARD_KEY_CREATED_ON = 'created_on' as keyof EmailForward;
|
|
2251
|
+
/**
|
|
2252
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2253
|
+
*/
|
|
978
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
|
+
*/
|
|
979
2258
|
export const EMAIL_FORWARD_KEY_SOURCE_ADDRESS = 'source_address' as keyof EmailForward;
|
|
2259
|
+
/**
|
|
2260
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2261
|
+
*/
|
|
980
2262
|
export const EMAIL_FORWARD_KEY_STATUS = 'status' as keyof EmailForward;
|
|
2263
|
+
/**
|
|
2264
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2265
|
+
*/
|
|
981
2266
|
export const EMAIL_FORWARD_KEY_TARGET_ADDRESS = 'target_address' as keyof EmailForward;
|
|
2267
|
+
/**
|
|
2268
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2269
|
+
*/
|
|
982
2270
|
export const EMAIL_FORWARD_KEY_UPDATED_ON = 'updated_on' as keyof EmailForward;
|
|
983
2271
|
|
|
2272
|
+
/**
|
|
2273
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2274
|
+
*/
|
|
984
2275
|
export const EMAIL_FORWARD_KEYS = [
|
|
985
2276
|
EMAIL_FORWARD_KEY_CREATED_ON,
|
|
986
2277
|
EMAIL_FORWARD_KEY_EMAIL_FORWARD_ID,
|
|
@@ -990,19 +2281,58 @@ export const EMAIL_FORWARD_KEYS = [
|
|
|
990
2281
|
EMAIL_FORWARD_KEY_UPDATED_ON,
|
|
991
2282
|
] as const;
|
|
992
2283
|
|
|
2284
|
+
/**
|
|
2285
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2286
|
+
*/
|
|
993
2287
|
export const EVENT_SCHEMA_KEY_ACKNOWLEDGED_ON = 'acknowledged_on' as keyof EventSchema;
|
|
2288
|
+
/**
|
|
2289
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2290
|
+
*/
|
|
994
2291
|
export const EVENT_SCHEMA_KEY_CREATED_ON = 'created_on' as keyof EventSchema;
|
|
2292
|
+
/**
|
|
2293
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2294
|
+
*/
|
|
995
2295
|
export const EVENT_SCHEMA_KEY_EVENT_DATA = 'event_data' as keyof EventSchema;
|
|
2296
|
+
/**
|
|
2297
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2298
|
+
*/
|
|
996
2299
|
export const EVENT_SCHEMA_KEY_EVENT_ID = 'event_id' as keyof EventSchema;
|
|
2300
|
+
/**
|
|
2301
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2302
|
+
*/
|
|
997
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
|
+
*/
|
|
998
2307
|
export const EVENT_SCHEMA_KEY_OBJECT_ID = 'object_id' as keyof EventSchema;
|
|
2308
|
+
/**
|
|
2309
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2310
|
+
*/
|
|
999
2311
|
export const EVENT_SCHEMA_KEY_OBJECT_TYPE = 'object_type' as keyof EventSchema;
|
|
2312
|
+
/**
|
|
2313
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2314
|
+
*/
|
|
1000
2315
|
export const EVENT_SCHEMA_KEY_SOURCE = 'source' as keyof EventSchema;
|
|
2316
|
+
/**
|
|
2317
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2318
|
+
*/
|
|
1001
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
|
+
*/
|
|
1002
2323
|
export const EVENT_SCHEMA_KEY_SUBTYPE = 'subtype' as keyof EventSchema;
|
|
2324
|
+
/**
|
|
2325
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2326
|
+
*/
|
|
1003
2327
|
export const EVENT_SCHEMA_KEY_TARGET = 'target' as keyof EventSchema;
|
|
2328
|
+
/**
|
|
2329
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2330
|
+
*/
|
|
1004
2331
|
export const EVENT_SCHEMA_KEY_TYPE = 'type' as keyof EventSchema;
|
|
1005
2332
|
|
|
2333
|
+
/**
|
|
2334
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2335
|
+
*/
|
|
1006
2336
|
export const EVENT_SCHEMA_KEYS = [
|
|
1007
2337
|
EVENT_SCHEMA_KEY_ACKNOWLEDGED_ON,
|
|
1008
2338
|
EVENT_SCHEMA_KEY_CREATED_ON,
|
|
@@ -1018,12 +2348,30 @@ export const EVENT_SCHEMA_KEYS = [
|
|
|
1018
2348
|
EVENT_SCHEMA_KEY_TYPE,
|
|
1019
2349
|
] as const;
|
|
1020
2350
|
|
|
2351
|
+
/**
|
|
2352
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2353
|
+
*/
|
|
1021
2354
|
export const IP_RESTRICTION_KEY_CREATED_ON = 'created_on' as keyof IpRestriction;
|
|
2355
|
+
/**
|
|
2356
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2357
|
+
*/
|
|
1022
2358
|
export const IP_RESTRICTION_KEY_IP_NETWORK = 'ip_network' as keyof IpRestriction;
|
|
2359
|
+
/**
|
|
2360
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2361
|
+
*/
|
|
1023
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
|
+
*/
|
|
1024
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
|
+
*/
|
|
1025
2370
|
export const IP_RESTRICTION_KEY_ORGANIZATION_ID = 'organization_id' as keyof IpRestriction;
|
|
1026
2371
|
|
|
2372
|
+
/**
|
|
2373
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2374
|
+
*/
|
|
1027
2375
|
export const IP_RESTRICTION_KEYS = [
|
|
1028
2376
|
IP_RESTRICTION_KEY_CREATED_ON,
|
|
1029
2377
|
IP_RESTRICTION_KEY_IP_NETWORK,
|
|
@@ -1032,28 +2380,94 @@ export const IP_RESTRICTION_KEYS = [
|
|
|
1032
2380
|
IP_RESTRICTION_KEY_ORGANIZATION_ID,
|
|
1033
2381
|
] as const;
|
|
1034
2382
|
|
|
2383
|
+
/**
|
|
2384
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2385
|
+
*/
|
|
1035
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
|
+
*/
|
|
1036
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
|
+
*/
|
|
1037
2394
|
export const ORGANIZATION_WITH_PLAN_KEY_ATTRIBUTES = 'attributes' as keyof OrganizationWithPlan;
|
|
2395
|
+
/**
|
|
2396
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2397
|
+
*/
|
|
1038
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
|
+
*/
|
|
1039
2402
|
export const ORGANIZATION_WITH_PLAN_KEY_CITY = 'city' as keyof OrganizationWithPlan;
|
|
2403
|
+
/**
|
|
2404
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2405
|
+
*/
|
|
1040
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
|
+
*/
|
|
1041
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
|
+
*/
|
|
1042
2414
|
export const ORGANIZATION_WITH_PLAN_KEY_CURRENCY = 'currency' as keyof OrganizationWithPlan;
|
|
2415
|
+
/**
|
|
2416
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2417
|
+
*/
|
|
1043
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
|
+
*/
|
|
1044
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
|
+
*/
|
|
1045
2426
|
export const ORGANIZATION_WITH_PLAN_KEY_NAME = 'name' as keyof OrganizationWithPlan;
|
|
2427
|
+
/**
|
|
2428
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2429
|
+
*/
|
|
1046
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
|
+
*/
|
|
1047
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
|
+
*/
|
|
1048
2438
|
export const ORGANIZATION_WITH_PLAN_KEY_PLAN = 'plan' as keyof OrganizationWithPlan;
|
|
2439
|
+
/**
|
|
2440
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2441
|
+
*/
|
|
1049
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
|
+
*/
|
|
1050
2446
|
export const ORGANIZATION_WITH_PLAN_KEY_STATE = 'state' as keyof OrganizationWithPlan;
|
|
2447
|
+
/**
|
|
2448
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2449
|
+
*/
|
|
1051
2450
|
export const ORGANIZATION_WITH_PLAN_KEY_STATUS = 'status' as keyof OrganizationWithPlan;
|
|
2451
|
+
/**
|
|
2452
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2453
|
+
*/
|
|
1052
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
|
+
*/
|
|
1053
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
|
+
*/
|
|
1054
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
|
+
*/
|
|
1055
2466
|
export const ORGANIZATION_WITH_PLAN_KEY_USERS = 'users' as keyof OrganizationWithPlan;
|
|
1056
2467
|
|
|
2468
|
+
/**
|
|
2469
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2470
|
+
*/
|
|
1057
2471
|
export const ORGANIZATION_WITH_PLAN_KEYS = [
|
|
1058
2472
|
ORGANIZATION_WITH_PLAN_KEY_ADDRESS_1,
|
|
1059
2473
|
ORGANIZATION_WITH_PLAN_KEY_ADDRESS_2,
|
|
@@ -1078,26 +2492,62 @@ export const ORGANIZATION_WITH_PLAN_KEYS = [
|
|
|
1078
2492
|
ORGANIZATION_WITH_PLAN_KEY_USERS,
|
|
1079
2493
|
] as const;
|
|
1080
2494
|
|
|
2495
|
+
/**
|
|
2496
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2497
|
+
*/
|
|
1081
2498
|
export const PERMISSION_SET_KEY_PERMISSIONS = 'permissions' as keyof PermissionSet;
|
|
1082
2499
|
|
|
2500
|
+
/**
|
|
2501
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2502
|
+
*/
|
|
1083
2503
|
export const PERMISSION_SET_KEYS = [
|
|
1084
2504
|
PERMISSION_SET_KEY_PERMISSIONS,
|
|
1085
2505
|
] as const;
|
|
1086
2506
|
|
|
2507
|
+
/**
|
|
2508
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2509
|
+
*/
|
|
1087
2510
|
export const RELATION_SET_KEY_RELATIONS = 'relations' as keyof RelationSet;
|
|
1088
2511
|
|
|
2512
|
+
/**
|
|
2513
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2514
|
+
*/
|
|
1089
2515
|
export const RELATION_SET_KEYS = [
|
|
1090
2516
|
RELATION_SET_KEY_RELATIONS,
|
|
1091
2517
|
] as const;
|
|
1092
2518
|
|
|
2519
|
+
/**
|
|
2520
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2521
|
+
*/
|
|
1093
2522
|
export const USER_NOTIFICATION_KEY_CREATED_ON = 'created_on' as keyof UserNotification;
|
|
2523
|
+
/**
|
|
2524
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2525
|
+
*/
|
|
1094
2526
|
export const USER_NOTIFICATION_KEY_NOTIFICATION = 'notification' as keyof UserNotification;
|
|
2527
|
+
/**
|
|
2528
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2529
|
+
*/
|
|
1095
2530
|
export const USER_NOTIFICATION_KEY_NOTIFICATION_ID = 'notification_id' as keyof UserNotification;
|
|
2531
|
+
/**
|
|
2532
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2533
|
+
*/
|
|
1096
2534
|
export const USER_NOTIFICATION_KEY_STATUS = 'status' as keyof UserNotification;
|
|
2535
|
+
/**
|
|
2536
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2537
|
+
*/
|
|
1097
2538
|
export const USER_NOTIFICATION_KEY_UPDATED_ON = 'updated_on' as keyof UserNotification;
|
|
2539
|
+
/**
|
|
2540
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2541
|
+
*/
|
|
1098
2542
|
export const USER_NOTIFICATION_KEY_USER_ID = 'user_id' as keyof UserNotification;
|
|
2543
|
+
/**
|
|
2544
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2545
|
+
*/
|
|
1099
2546
|
export const USER_NOTIFICATION_KEY_USER_NOTIFICATION_ID = 'user_notification_id' as keyof UserNotification;
|
|
1100
2547
|
|
|
2548
|
+
/**
|
|
2549
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2550
|
+
*/
|
|
1101
2551
|
export const USER_NOTIFICATION_KEYS = [
|
|
1102
2552
|
USER_NOTIFICATION_KEY_CREATED_ON,
|
|
1103
2553
|
USER_NOTIFICATION_KEY_NOTIFICATION,
|
|
@@ -1108,20 +2558,62 @@ export const USER_NOTIFICATION_KEYS = [
|
|
|
1108
2558
|
USER_NOTIFICATION_KEY_USER_NOTIFICATION_ID,
|
|
1109
2559
|
] as const;
|
|
1110
2560
|
|
|
2561
|
+
/**
|
|
2562
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2563
|
+
*/
|
|
1111
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
|
+
*/
|
|
1112
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
|
+
*/
|
|
1113
2572
|
export const USER_WITH_ATTRIBUTES_KEY_EMAIL = 'email' as keyof UserWithAttributes;
|
|
2573
|
+
/**
|
|
2574
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2575
|
+
*/
|
|
1114
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
|
+
*/
|
|
1115
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
|
+
*/
|
|
1116
2584
|
export const USER_WITH_ATTRIBUTES_KEY_LOCALE = 'locale' as keyof UserWithAttributes;
|
|
2585
|
+
/**
|
|
2586
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2587
|
+
*/
|
|
1117
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
|
+
*/
|
|
1118
2592
|
export const USER_WITH_ATTRIBUTES_KEY_PHONE = 'phone' as keyof UserWithAttributes;
|
|
2593
|
+
/**
|
|
2594
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2595
|
+
*/
|
|
1119
2596
|
export const USER_WITH_ATTRIBUTES_KEY_STATUS = 'status' as keyof UserWithAttributes;
|
|
2597
|
+
/**
|
|
2598
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2599
|
+
*/
|
|
1120
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
|
+
*/
|
|
1121
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
|
+
*/
|
|
1122
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
|
+
*/
|
|
1123
2612
|
export const USER_WITH_ATTRIBUTES_KEY_USERNAME = 'username' as keyof UserWithAttributes;
|
|
1124
2613
|
|
|
2614
|
+
/**
|
|
2615
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2616
|
+
*/
|
|
1125
2617
|
export const USER_WITH_ATTRIBUTES_KEYS = [
|
|
1126
2618
|
USER_WITH_ATTRIBUTES_KEY_CREATED_ON,
|
|
1127
2619
|
USER_WITH_ATTRIBUTES_KEY_DELETED_ON,
|
|
@@ -1138,22 +2630,70 @@ export const USER_WITH_ATTRIBUTES_KEYS = [
|
|
|
1138
2630
|
USER_WITH_ATTRIBUTES_KEY_USERNAME,
|
|
1139
2631
|
] as const;
|
|
1140
2632
|
|
|
2633
|
+
/**
|
|
2634
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2635
|
+
*/
|
|
1141
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
|
+
*/
|
|
1142
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
|
+
*/
|
|
1143
2644
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_EMAIL = 'email' as keyof UserWithRelationPermissions;
|
|
2645
|
+
/**
|
|
2646
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2647
|
+
*/
|
|
1144
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
|
+
*/
|
|
1145
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
|
+
*/
|
|
1146
2656
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_LOCALE = 'locale' as keyof UserWithRelationPermissions;
|
|
2657
|
+
/**
|
|
2658
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2659
|
+
*/
|
|
1147
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
|
+
*/
|
|
1148
2664
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_PERMISSIONS = 'permissions' as keyof UserWithRelationPermissions;
|
|
2665
|
+
/**
|
|
2666
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2667
|
+
*/
|
|
1149
2668
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_PHONE = 'phone' as keyof UserWithRelationPermissions;
|
|
2669
|
+
/**
|
|
2670
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2671
|
+
*/
|
|
1150
2672
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_RELATIONS = 'relations' as keyof UserWithRelationPermissions;
|
|
2673
|
+
/**
|
|
2674
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2675
|
+
*/
|
|
1151
2676
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_STATUS = 'status' as keyof UserWithRelationPermissions;
|
|
2677
|
+
/**
|
|
2678
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2679
|
+
*/
|
|
1152
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
|
+
*/
|
|
1153
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
|
+
*/
|
|
1154
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
|
+
*/
|
|
1155
2692
|
export const USER_WITH_RELATION_PERMISSIONS_KEY_USERNAME = 'username' as keyof UserWithRelationPermissions;
|
|
1156
2693
|
|
|
2694
|
+
/**
|
|
2695
|
+
* @deprecated Use the corresponding type from @/helpers instead.
|
|
2696
|
+
*/
|
|
1157
2697
|
export const USER_WITH_RELATION_PERMISSIONS_KEYS = [
|
|
1158
2698
|
USER_WITH_RELATION_PERMISSIONS_KEY_CREATED_ON,
|
|
1159
2699
|
USER_WITH_RELATION_PERMISSIONS_KEY_DELETED_ON,
|