@opusdns/api 0.320.0 → 1.2.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 +2 -2
- package/src/helpers/constants.ts +420 -4430
- package/src/helpers/index.ts +3 -18
- package/src/helpers/keys.ts +2067 -42959
- package/src/helpers/requests.d.ts +752 -7216
- package/src/helpers/responses.d.ts +994 -14360
- package/src/helpers/schemas.d.ts +0 -6741
- package/src/openapi.yaml +12 -9
- package/src/schema.d.ts +3 -3
- package/src/helpers/schemas-arrays.d.ts +0 -1775
- package/src/types/constants.ts +0 -490
- package/src/types/index.ts +0 -10
- package/src/types/keys.ts +0 -2713
- package/src/types/types.ts +0 -643
package/src/types/constants.ts
DELETED
|
@@ -1,490 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated This file is deprecated and will be removed in a future release.
|
|
3
|
-
* All enums and constants have moved to src/helpers/enums.ts. Please update your imports to use @/helpers or @/helpers/enums.
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* Auto-generated enums from OpenAPI schema
|
|
7
|
-
* Generated on: 2025-07-25T14:03:33.604Z
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* BULK_OPERATION_STATUS
|
|
12
|
-
*/
|
|
13
|
-
/**
|
|
14
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
15
|
-
*/
|
|
16
|
-
export enum BULK_OPERATION_STATUS {
|
|
17
|
-
SUCCESS = "success",
|
|
18
|
-
FAILED = "failed",
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* CONTACT_SORT_FIELD
|
|
23
|
-
*/
|
|
24
|
-
/**
|
|
25
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
26
|
-
*/
|
|
27
|
-
export enum CONTACT_SORT_FIELD {
|
|
28
|
-
FIRST_NAME = "first_name",
|
|
29
|
-
LAST_NAME = "last_name",
|
|
30
|
-
EMAIL = "email",
|
|
31
|
-
CREATED_ON = "created_on",
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* CURRENCY
|
|
36
|
-
*/
|
|
37
|
-
/**
|
|
38
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
39
|
-
*/
|
|
40
|
-
export enum CURRENCY {
|
|
41
|
-
USD = "USD",
|
|
42
|
-
EUR = "EUR",
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* DNS_CHANGE_ACTION
|
|
47
|
-
*/
|
|
48
|
-
/**
|
|
49
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
50
|
-
*/
|
|
51
|
-
export enum DNS_CHANGE_ACTION {
|
|
52
|
-
CREATE_ZONE = "create_zone",
|
|
53
|
-
DELETE_ZONE = "delete_zone",
|
|
54
|
-
CREATE_RECORD = "create_record",
|
|
55
|
-
DELETE_RECORD = "delete_record",
|
|
56
|
-
ENABLE_DNSSEC = "enable_dnssec",
|
|
57
|
-
DISABLE_DNSSEC = "disable_dnssec",
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* DNS_RRSET_TYPE
|
|
62
|
-
*/
|
|
63
|
-
/**
|
|
64
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
65
|
-
*/
|
|
66
|
-
export enum DNS_RRSET_TYPE {
|
|
67
|
-
A = "A",
|
|
68
|
-
AAAA = "AAAA",
|
|
69
|
-
ALIAS = "ALIAS",
|
|
70
|
-
CAA = "CAA",
|
|
71
|
-
CNAME = "CNAME",
|
|
72
|
-
DNSKEY = "DNSKEY",
|
|
73
|
-
DS = "DS",
|
|
74
|
-
MX = "MX",
|
|
75
|
-
NS = "NS",
|
|
76
|
-
PTR = "PTR",
|
|
77
|
-
TXT = "TXT",
|
|
78
|
-
SOA = "SOA",
|
|
79
|
-
SRV = "SRV",
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* DNSSEC_ALGORITHM
|
|
84
|
-
*/
|
|
85
|
-
/**
|
|
86
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
87
|
-
*/
|
|
88
|
-
export const DNSSECALGORITHM = [1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 23] as const;
|
|
89
|
-
|
|
90
|
-
/**
|
|
91
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
92
|
-
*/
|
|
93
|
-
export type Dnssecalgorithm = typeof DNSSECALGORITHM[number];
|
|
94
|
-
|
|
95
|
-
/**
|
|
96
|
-
* DNSSEC_DIGEST_TYPE
|
|
97
|
-
*/
|
|
98
|
-
/**
|
|
99
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
100
|
-
*/
|
|
101
|
-
export const DNSSECDIGESTTYPE = [1, 2, 3, 4, 5, 6] as const;
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
105
|
-
*/
|
|
106
|
-
export type Dnssecdigesttype = typeof DNSSECDIGESTTYPE[number];
|
|
107
|
-
|
|
108
|
-
/**
|
|
109
|
-
* DNSSEC_RECORD_TYPE
|
|
110
|
-
*/
|
|
111
|
-
/**
|
|
112
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
113
|
-
*/
|
|
114
|
-
export enum DNSSEC_RECORD_TYPE {
|
|
115
|
-
DS_DATA = "ds_data",
|
|
116
|
-
KEY_DATA = "key_data",
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
/**
|
|
120
|
-
* DNSSEC_STATUS
|
|
121
|
-
*/
|
|
122
|
-
/**
|
|
123
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
124
|
-
*/
|
|
125
|
-
export enum DNSSEC_STATUS {
|
|
126
|
-
ENABLED = "enabled",
|
|
127
|
-
DISABLED = "disabled",
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/**
|
|
131
|
-
* DOMAIN_AVAILABILITY_STATUS
|
|
132
|
-
*/
|
|
133
|
-
/**
|
|
134
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
135
|
-
*/
|
|
136
|
-
export enum DOMAIN_AVAILABILITY_STATUS {
|
|
137
|
-
AVAILABLE = "available",
|
|
138
|
-
UNAVAILABLE = "unavailable",
|
|
139
|
-
MARKET_AVAILABLE = "market_available",
|
|
140
|
-
TMCH_CLAIM = "tmch_claim",
|
|
141
|
-
ERROR = "error",
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
/**
|
|
145
|
-
* DOMAIN_CLIENT_STATUS
|
|
146
|
-
*/
|
|
147
|
-
/**
|
|
148
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
149
|
-
*/
|
|
150
|
-
export enum DOMAIN_CLIENT_STATUS {
|
|
151
|
-
CLIENTTRANSFERPROHIBITED = "clientTransferProhibited",
|
|
152
|
-
CLIENTUPDATEPROHIBITED = "clientUpdateProhibited",
|
|
153
|
-
CLIENTDELETEPROHIBITED = "clientDeleteProhibited",
|
|
154
|
-
CLIENTRENEWPROHIBITED = "clientRenewProhibited",
|
|
155
|
-
CLIENTHOLD = "clientHold",
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
/**
|
|
159
|
-
* DOMAIN_CONTACT_TYPE
|
|
160
|
-
*/
|
|
161
|
-
/**
|
|
162
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
163
|
-
*/
|
|
164
|
-
export enum DOMAIN_CONTACT_TYPE {
|
|
165
|
-
REGISTRANT = "registrant",
|
|
166
|
-
ADMIN = "admin",
|
|
167
|
-
TECH = "tech",
|
|
168
|
-
BILLING = "billing",
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/**
|
|
172
|
-
* DOMAIN_SORT_FIELD
|
|
173
|
-
*/
|
|
174
|
-
/**
|
|
175
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
176
|
-
*/
|
|
177
|
-
export enum DOMAIN_SORT_FIELD {
|
|
178
|
-
NAME = "name",
|
|
179
|
-
CREATED_ON = "created_on",
|
|
180
|
-
UPDATED_ON = "updated_on",
|
|
181
|
-
EXPIRES_ON = "expires_on",
|
|
182
|
-
REGISTERED_ON = "registered_on",
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
/**
|
|
186
|
-
* DOMAIN_STATUS
|
|
187
|
-
*/
|
|
188
|
-
/**
|
|
189
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
190
|
-
*/
|
|
191
|
-
export enum DOMAIN_STATUS {
|
|
192
|
-
OK = "ok",
|
|
193
|
-
SERVERTRANSFERPROHIBITED = "serverTransferProhibited",
|
|
194
|
-
SERVERUPDATEPROHIBITED = "serverUpdateProhibited",
|
|
195
|
-
SERVERDELETEPROHIBITED = "serverDeleteProhibited",
|
|
196
|
-
SERVERRENEWPROHIBITED = "serverRenewProhibited",
|
|
197
|
-
SERVERHOLD = "serverHold",
|
|
198
|
-
TRANSFERPERIOD = "transferPeriod",
|
|
199
|
-
RENEWPERIOD = "renewPeriod",
|
|
200
|
-
REDEMPTIONPERIOD = "redemptionPeriod",
|
|
201
|
-
PENDINGUPDATE = "pendingUpdate",
|
|
202
|
-
PENDINGTRANSFER = "pendingTransfer",
|
|
203
|
-
PENDINGRESTORE = "pendingRestore",
|
|
204
|
-
PENDINGRENEW = "pendingRenew",
|
|
205
|
-
PENDINGDELETE = "pendingDelete",
|
|
206
|
-
PENDINGCREATE = "pendingCreate",
|
|
207
|
-
INACTIVE = "inactive",
|
|
208
|
-
AUTORENEWPERIOD = "autoRenewPeriod",
|
|
209
|
-
ADDPERIOD = "addPeriod",
|
|
210
|
-
DELETED = "deleted",
|
|
211
|
-
CLIENTTRANSFERPROHIBITED = "clientTransferProhibited",
|
|
212
|
-
CLIENTUPDATEPROHIBITED = "clientUpdateProhibited",
|
|
213
|
-
CLIENTDELETEPROHIBITED = "clientDeleteProhibited",
|
|
214
|
-
CLIENTRENEWPROHIBITED = "clientRenewProhibited",
|
|
215
|
-
CLIENTHOLD = "clientHold",
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
/**
|
|
219
|
-
* EMAIL_FORWARD_STATUS
|
|
220
|
-
*/
|
|
221
|
-
/**
|
|
222
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
223
|
-
*/
|
|
224
|
-
export enum EMAIL_FORWARD_STATUS {
|
|
225
|
-
ACTIVE = "active",
|
|
226
|
-
INACTIVE = "inactive",
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
/**
|
|
230
|
-
* EMAIL_VERIFICATION_STATUS
|
|
231
|
-
*/
|
|
232
|
-
/**
|
|
233
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
234
|
-
*/
|
|
235
|
-
export enum EMAIL_VERIFICATION_STATUS {
|
|
236
|
-
VERIFIED = "verified",
|
|
237
|
-
PENDING = "pending",
|
|
238
|
-
CANCELED = "canceled",
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
/**
|
|
242
|
-
* EVENT_OBJECT_TYPE
|
|
243
|
-
*/
|
|
244
|
-
/**
|
|
245
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
246
|
-
*/
|
|
247
|
-
export enum EVENT_OBJECT_TYPE {
|
|
248
|
-
DOMAIN = "DOMAIN",
|
|
249
|
-
CONTACT = "CONTACT",
|
|
250
|
-
HOST = "HOST",
|
|
251
|
-
RAW = "RAW",
|
|
252
|
-
UNKNOWN = "UNKNOWN",
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
/**
|
|
256
|
-
* EVENT_SUBTYPE
|
|
257
|
-
*/
|
|
258
|
-
/**
|
|
259
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
260
|
-
*/
|
|
261
|
-
export enum EVENT_SUBTYPE {
|
|
262
|
-
NOTIFICATION = "NOTIFICATION",
|
|
263
|
-
SUCCESS = "SUCCESS",
|
|
264
|
-
FAILURE = "FAILURE",
|
|
265
|
-
CANCELED = "CANCELED",
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
/**
|
|
269
|
-
* EVENT_TYPE
|
|
270
|
-
*/
|
|
271
|
-
/**
|
|
272
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
273
|
-
*/
|
|
274
|
-
export enum EVENT_TYPE {
|
|
275
|
-
REGISTRATION = "REGISTRATION",
|
|
276
|
-
RENEWAL = "RENEWAL",
|
|
277
|
-
MODIFICATION = "MODIFICATION",
|
|
278
|
-
DELETION = "DELETION",
|
|
279
|
-
INBOUND_TRANSFER = "INBOUND_TRANSFER",
|
|
280
|
-
OUTBOUND_TRANSFER = "OUTBOUND_TRANSFER",
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
/**
|
|
284
|
-
* GRANT_TYPE
|
|
285
|
-
*/
|
|
286
|
-
/**
|
|
287
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
288
|
-
*/
|
|
289
|
-
export enum GRANT_TYPE {
|
|
290
|
-
CLIENT_CREDENTIALS = "client_credentials",
|
|
291
|
-
PASSWORD = "password",
|
|
292
|
-
REFRESH_TOKEN = "refresh_token",
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
/**
|
|
296
|
-
* ORGANIZATION_CREDENTIAL_STATUS
|
|
297
|
-
*/
|
|
298
|
-
/**
|
|
299
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
300
|
-
*/
|
|
301
|
-
export enum ORGANIZATION_CREDENTIAL_STATUS {
|
|
302
|
-
ACTIVE = "active",
|
|
303
|
-
REVOKED = "revoked",
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
/**
|
|
307
|
-
* ORGANIZATION_STATUS
|
|
308
|
-
*/
|
|
309
|
-
/**
|
|
310
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
311
|
-
*/
|
|
312
|
-
export enum ORGANIZATION_STATUS {
|
|
313
|
-
ACTIVE = "active",
|
|
314
|
-
INACTIVE = "inactive",
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
/**
|
|
318
|
-
* PATCH_OP
|
|
319
|
-
*/
|
|
320
|
-
/**
|
|
321
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
322
|
-
*/
|
|
323
|
-
export enum PATCH_OP {
|
|
324
|
-
UPSERT = "upsert",
|
|
325
|
-
REMOVE = "remove",
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
/**
|
|
329
|
-
* PERIOD_UNIT
|
|
330
|
-
*/
|
|
331
|
-
/**
|
|
332
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
333
|
-
*/
|
|
334
|
-
export enum PERIOD_UNIT {
|
|
335
|
-
Y = "y",
|
|
336
|
-
M = "m",
|
|
337
|
-
D = "d",
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
/**
|
|
341
|
-
* PERMISSION
|
|
342
|
-
*/
|
|
343
|
-
/**
|
|
344
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
345
|
-
*/
|
|
346
|
-
export enum PERMISSION {
|
|
347
|
-
ACKNOWLEDGE = "acknowledge",
|
|
348
|
-
BULK_CREATE = "bulk_create",
|
|
349
|
-
BULK_DELETE = "bulk_delete",
|
|
350
|
-
BULK_RENEW_EXPIRE = "bulk_renew_expire",
|
|
351
|
-
BULK_TRANSFER_TRADE = "bulk_transfer_trade",
|
|
352
|
-
BULK_UPDATE = "bulk_update",
|
|
353
|
-
CREATE = "create",
|
|
354
|
-
DELETE = "delete",
|
|
355
|
-
ENTERPRISE = "enterprise",
|
|
356
|
-
MANAGE_API_KEYS = "manage_api_keys",
|
|
357
|
-
MANAGE_BILLING = "manage_billing",
|
|
358
|
-
MANAGE_CMS_CONTENT = "manage_cms_content",
|
|
359
|
-
MANAGE_CONTACTS = "manage_contacts",
|
|
360
|
-
MANAGE_DNS_ZONES = "manage_dns_zones",
|
|
361
|
-
MANAGE_DOMAINS = "manage_domains",
|
|
362
|
-
MANAGE_EMAIL_FORWARDS = "manage_email_forwards",
|
|
363
|
-
MANAGE_OPUSDNS_API_KEYS = "manage_opusdns_api_keys",
|
|
364
|
-
MANAGE_PRODUCTS = "manage_products",
|
|
365
|
-
MANAGE_RESELLER = "manage_reseller",
|
|
366
|
-
MANAGE_USER_RELATIONS = "manage_user_relations",
|
|
367
|
-
MANAGE_USERS = "manage_users",
|
|
368
|
-
PLAN_MANAGER = "plan_manager",
|
|
369
|
-
PREMIUM = "premium",
|
|
370
|
-
PREMIUM_RESELLER = "premium_reseller",
|
|
371
|
-
RENEW_EXPIRE = "renew_expire",
|
|
372
|
-
SIGN_ORG_TOS = "sign_org_tos",
|
|
373
|
-
STARTER = "starter",
|
|
374
|
-
TRANSFER_TRADE = "transfer_trade",
|
|
375
|
-
UPDATE = "update",
|
|
376
|
-
VERIFY = "verify",
|
|
377
|
-
VIEW = "view",
|
|
378
|
-
VIEW_AUDIT_LOGS = "view_audit_logs",
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
/**
|
|
382
|
-
* PLAN_RELATION
|
|
383
|
-
*/
|
|
384
|
-
/**
|
|
385
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
386
|
-
*/
|
|
387
|
-
export enum PLAN_RELATION {
|
|
388
|
-
BASIC_PLAN = "basic_plan",
|
|
389
|
-
ENTERPRISE_PLAN = "enterprise_plan",
|
|
390
|
-
PREMIUM_PLAN = "premium_plan",
|
|
391
|
-
STARTER_PLAN = "starter_plan",
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
/**
|
|
395
|
-
* RELATION
|
|
396
|
-
*/
|
|
397
|
-
/**
|
|
398
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
399
|
-
*/
|
|
400
|
-
export enum RELATION {
|
|
401
|
-
ACCEPTED_TOS = "accepted_tos",
|
|
402
|
-
ADMIN = "admin",
|
|
403
|
-
API_ADMIN = "api_admin",
|
|
404
|
-
BILLING_MANAGER = "billing_manager",
|
|
405
|
-
CLIENT_API_KEY = "client_api_key",
|
|
406
|
-
CMS_CONTENT_EDITOR = "cms_content_editor",
|
|
407
|
-
CONTACT_MANAGER = "contact_manager",
|
|
408
|
-
DOMAIN_MANAGER = "domain_manager",
|
|
409
|
-
EMAIL_FORWARD_MANAGER = "email_forward_manager",
|
|
410
|
-
MEMBER = "member",
|
|
411
|
-
OPUSDNS_INTERNAL_API_KEY = "opusdns_internal_api_key",
|
|
412
|
-
ORGANIZATION_MANAGER = "organization_manager",
|
|
413
|
-
OWNER = "owner",
|
|
414
|
-
PARENT = "parent",
|
|
415
|
-
PRODUCT_MANAGER = "product_manager",
|
|
416
|
-
RECIPIENT = "recipient",
|
|
417
|
-
RESELLER_MANAGER = "reseller_manager",
|
|
418
|
-
ROOT_ADMIN = "root_admin",
|
|
419
|
-
SELF = "self",
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
/**
|
|
423
|
-
* RENEWAL_MODE
|
|
424
|
-
*/
|
|
425
|
-
/**
|
|
426
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
427
|
-
*/
|
|
428
|
-
export enum RENEWAL_MODE {
|
|
429
|
-
RENEW = "renew",
|
|
430
|
-
EXPIRE = "expire",
|
|
431
|
-
DELETE = "delete",
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
/**
|
|
435
|
-
* SORT_ORDER
|
|
436
|
-
*/
|
|
437
|
-
/**
|
|
438
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
439
|
-
*/
|
|
440
|
-
export enum SORT_ORDER {
|
|
441
|
-
ASC = "asc",
|
|
442
|
-
DESC = "desc",
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
/**
|
|
446
|
-
* USER_NOTIFICATION_STATUS
|
|
447
|
-
*/
|
|
448
|
-
/**
|
|
449
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
450
|
-
*/
|
|
451
|
-
export enum USER_NOTIFICATION_STATUS {
|
|
452
|
-
READ = "read",
|
|
453
|
-
UNREAD = "unread",
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
/**
|
|
457
|
-
* USER_STATUS
|
|
458
|
-
*/
|
|
459
|
-
/**
|
|
460
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
461
|
-
*/
|
|
462
|
-
export enum USER_STATUS {
|
|
463
|
-
ACTIVE = "active",
|
|
464
|
-
INACTIVE = "inactive",
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
/**
|
|
468
|
-
* VERIFICATION_TYPE
|
|
469
|
-
*/
|
|
470
|
-
/**
|
|
471
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
472
|
-
*/
|
|
473
|
-
export enum VERIFICATION_TYPE {
|
|
474
|
-
API = "api",
|
|
475
|
-
EMAIL = "email",
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
/**
|
|
479
|
-
* ZONE_SORT_FIELD
|
|
480
|
-
*/
|
|
481
|
-
/**
|
|
482
|
-
* @deprecated Use the corresponding type from @/helpers instead.
|
|
483
|
-
*/
|
|
484
|
-
export enum ZONE_SORT_FIELD {
|
|
485
|
-
NAME = "name",
|
|
486
|
-
CREATED_ON = "created_on",
|
|
487
|
-
UPDATED_ON = "updated_on",
|
|
488
|
-
DNSSEC_STATUS = "dnssec_status",
|
|
489
|
-
}
|
|
490
|
-
|
package/src/types/index.ts
DELETED