@opusdns/api 1.37.0 → 1.39.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 +1 -1
- package/src/helpers/constants.ts +4 -11
- package/src/helpers/keys.ts +0 -20
- package/src/helpers/schemas.d.ts +0 -1
- package/src/openapi.yaml +10 -69
- package/src/schema.d.ts +1 -36
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -100,7 +100,6 @@ import type {
|
|
|
100
100
|
TimeRange,
|
|
101
101
|
TransferAckType,
|
|
102
102
|
UserSortField,
|
|
103
|
-
UserStatus,
|
|
104
103
|
VanityNameserverSetStatusDTO,
|
|
105
104
|
VanityNsCheckConfidence,
|
|
106
105
|
VanityNsCheckSeverity,
|
|
@@ -1494,6 +1493,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
1494
1493
|
DNS_LU_CONTACT_ROLE: "DNS_LU_CONTACT_ROLE",
|
|
1495
1494
|
SK_NIC_LEGAL_FORM: "SK_NIC_LEGAL_FORM",
|
|
1496
1495
|
SK_NIC_IDENT_VALUE: "SK_NIC_IDENT_VALUE",
|
|
1496
|
+
NIC_LV_REG_NR: "NIC_LV_REG_NR",
|
|
1497
|
+
NIC_LV_VAT_NR: "NIC_LV_VAT_NR",
|
|
1497
1498
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
1498
1499
|
|
|
1499
1500
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
@@ -1543,6 +1544,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
|
1543
1544
|
'DNS_LU_CONTACT_ROLE',
|
|
1544
1545
|
'SK_NIC_LEGAL_FORM',
|
|
1545
1546
|
'SK_NIC_IDENT_VALUE',
|
|
1547
|
+
'NIC_LV_REG_NR',
|
|
1548
|
+
'NIC_LV_VAT_NR',
|
|
1546
1549
|
] as const satisfies ReadonlyArray<RegistryHandleAttributeType>;
|
|
1547
1550
|
|
|
1548
1551
|
export const RENEWAL_MODE = {
|
|
@@ -1783,16 +1786,6 @@ export const USER_SORT_FIELD_VALUES = [
|
|
|
1783
1786
|
'email',
|
|
1784
1787
|
] as const satisfies ReadonlyArray<UserSortField>;
|
|
1785
1788
|
|
|
1786
|
-
export const USER_STATUS = {
|
|
1787
|
-
ACTIVE: "active",
|
|
1788
|
-
INACTIVE: "inactive",
|
|
1789
|
-
} as const satisfies Record<string, UserStatus>;
|
|
1790
|
-
|
|
1791
|
-
export const USER_STATUS_VALUES = [
|
|
1792
|
-
'active',
|
|
1793
|
-
'inactive',
|
|
1794
|
-
] as const satisfies ReadonlyArray<UserStatus>;
|
|
1795
|
-
|
|
1796
1789
|
export const VANITY_NAMESERVER_SET_STATUS_DTO = {
|
|
1797
1790
|
PROVISIONING: "provisioning",
|
|
1798
1791
|
ACTIVE: "active",
|
package/src/helpers/keys.ts
CHANGED
|
@@ -5033,7 +5033,6 @@ export const KEYS_TRANSFER_POLICIES_BASE = [
|
|
|
5033
5033
|
] as const satisfies (keyof TransferPoliciesBase)[];
|
|
5034
5034
|
|
|
5035
5035
|
export const KEY_USER_CREATED_ON = 'created_on' satisfies keyof User;
|
|
5036
|
-
export const KEY_USER_DELETED_ON = 'deleted_on' satisfies keyof User;
|
|
5037
5036
|
export const KEY_USER_EMAIL = 'email' satisfies keyof User;
|
|
5038
5037
|
export const KEY_USER_FIRST_NAME = 'first_name' satisfies keyof User;
|
|
5039
5038
|
export const KEY_USER_KEYCLOAK_USER_ID = 'keycloak_user_id' satisfies keyof User;
|
|
@@ -5041,14 +5040,12 @@ export const KEY_USER_LAST_NAME = 'last_name' satisfies keyof User;
|
|
|
5041
5040
|
export const KEY_USER_LOCALE = 'locale' satisfies keyof User;
|
|
5042
5041
|
export const KEY_USER_ORGANIZATION_ID = 'organization_id' satisfies keyof User;
|
|
5043
5042
|
export const KEY_USER_PHONE = 'phone' satisfies keyof User;
|
|
5044
|
-
export const KEY_USER_STATUS = 'status' satisfies keyof User;
|
|
5045
5043
|
export const KEY_USER_UPDATED_ON = 'updated_on' satisfies keyof User;
|
|
5046
5044
|
export const KEY_USER_USER_ID = 'user_id' satisfies keyof User;
|
|
5047
5045
|
export const KEY_USER_USERNAME = 'username' satisfies keyof User;
|
|
5048
5046
|
|
|
5049
5047
|
export const KEYS_USER = [
|
|
5050
5048
|
KEY_USER_CREATED_ON,
|
|
5051
|
-
KEY_USER_DELETED_ON,
|
|
5052
5049
|
KEY_USER_EMAIL,
|
|
5053
5050
|
KEY_USER_FIRST_NAME,
|
|
5054
5051
|
KEY_USER_KEYCLOAK_USER_ID,
|
|
@@ -5056,7 +5053,6 @@ export const KEYS_USER = [
|
|
|
5056
5053
|
KEY_USER_LOCALE,
|
|
5057
5054
|
KEY_USER_ORGANIZATION_ID,
|
|
5058
5055
|
KEY_USER_PHONE,
|
|
5059
|
-
KEY_USER_STATUS,
|
|
5060
5056
|
KEY_USER_UPDATED_ON,
|
|
5061
5057
|
KEY_USER_USER_ID,
|
|
5062
5058
|
KEY_USER_USERNAME,
|
|
@@ -5109,42 +5105,36 @@ export const KEYS_USER_CREATE = [
|
|
|
5109
5105
|
] as const satisfies (keyof UserCreate)[];
|
|
5110
5106
|
|
|
5111
5107
|
export const KEY_USER_PUBLIC_CREATED_ON = 'created_on' satisfies keyof UserPublic;
|
|
5112
|
-
export const KEY_USER_PUBLIC_DELETED_ON = 'deleted_on' satisfies keyof UserPublic;
|
|
5113
5108
|
export const KEY_USER_PUBLIC_EMAIL = 'email' satisfies keyof UserPublic;
|
|
5114
5109
|
export const KEY_USER_PUBLIC_FIRST_NAME = 'first_name' satisfies keyof UserPublic;
|
|
5115
5110
|
export const KEY_USER_PUBLIC_LAST_NAME = 'last_name' satisfies keyof UserPublic;
|
|
5116
5111
|
export const KEY_USER_PUBLIC_LOCALE = 'locale' satisfies keyof UserPublic;
|
|
5117
5112
|
export const KEY_USER_PUBLIC_ORGANIZATION_ID = 'organization_id' satisfies keyof UserPublic;
|
|
5118
5113
|
export const KEY_USER_PUBLIC_PHONE = 'phone' satisfies keyof UserPublic;
|
|
5119
|
-
export const KEY_USER_PUBLIC_STATUS = 'status' satisfies keyof UserPublic;
|
|
5120
5114
|
export const KEY_USER_PUBLIC_UPDATED_ON = 'updated_on' satisfies keyof UserPublic;
|
|
5121
5115
|
export const KEY_USER_PUBLIC_USER_ID = 'user_id' satisfies keyof UserPublic;
|
|
5122
5116
|
export const KEY_USER_PUBLIC_USERNAME = 'username' satisfies keyof UserPublic;
|
|
5123
5117
|
|
|
5124
5118
|
export const KEYS_USER_PUBLIC = [
|
|
5125
5119
|
KEY_USER_PUBLIC_CREATED_ON,
|
|
5126
|
-
KEY_USER_PUBLIC_DELETED_ON,
|
|
5127
5120
|
KEY_USER_PUBLIC_EMAIL,
|
|
5128
5121
|
KEY_USER_PUBLIC_FIRST_NAME,
|
|
5129
5122
|
KEY_USER_PUBLIC_LAST_NAME,
|
|
5130
5123
|
KEY_USER_PUBLIC_LOCALE,
|
|
5131
5124
|
KEY_USER_PUBLIC_ORGANIZATION_ID,
|
|
5132
5125
|
KEY_USER_PUBLIC_PHONE,
|
|
5133
|
-
KEY_USER_PUBLIC_STATUS,
|
|
5134
5126
|
KEY_USER_PUBLIC_UPDATED_ON,
|
|
5135
5127
|
KEY_USER_PUBLIC_USER_ID,
|
|
5136
5128
|
KEY_USER_PUBLIC_USERNAME,
|
|
5137
5129
|
] as const satisfies (keyof UserPublic)[];
|
|
5138
5130
|
|
|
5139
5131
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_CREATED_ON = 'created_on' satisfies keyof UserPublicWithAttributes;
|
|
5140
|
-
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_DELETED_ON = 'deleted_on' satisfies keyof UserPublicWithAttributes;
|
|
5141
5132
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_EMAIL = 'email' satisfies keyof UserPublicWithAttributes;
|
|
5142
5133
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_FIRST_NAME = 'first_name' satisfies keyof UserPublicWithAttributes;
|
|
5143
5134
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_LAST_NAME = 'last_name' satisfies keyof UserPublicWithAttributes;
|
|
5144
5135
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_LOCALE = 'locale' satisfies keyof UserPublicWithAttributes;
|
|
5145
5136
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_ORGANIZATION_ID = 'organization_id' satisfies keyof UserPublicWithAttributes;
|
|
5146
5137
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_PHONE = 'phone' satisfies keyof UserPublicWithAttributes;
|
|
5147
|
-
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_STATUS = 'status' satisfies keyof UserPublicWithAttributes;
|
|
5148
5138
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_UPDATED_ON = 'updated_on' satisfies keyof UserPublicWithAttributes;
|
|
5149
5139
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_USER_ATTRIBUTES = 'user_attributes' satisfies keyof UserPublicWithAttributes;
|
|
5150
5140
|
export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_USER_ID = 'user_id' satisfies keyof UserPublicWithAttributes;
|
|
@@ -5152,14 +5142,12 @@ export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_USERNAME = 'username' satisfies key
|
|
|
5152
5142
|
|
|
5153
5143
|
export const KEYS_USER_PUBLIC_WITH_ATTRIBUTES = [
|
|
5154
5144
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_CREATED_ON,
|
|
5155
|
-
KEY_USER_PUBLIC_WITH_ATTRIBUTES_DELETED_ON,
|
|
5156
5145
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_EMAIL,
|
|
5157
5146
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_FIRST_NAME,
|
|
5158
5147
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_LAST_NAME,
|
|
5159
5148
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_LOCALE,
|
|
5160
5149
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_ORGANIZATION_ID,
|
|
5161
5150
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_PHONE,
|
|
5162
|
-
KEY_USER_PUBLIC_WITH_ATTRIBUTES_STATUS,
|
|
5163
5151
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_UPDATED_ON,
|
|
5164
5152
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_USER_ATTRIBUTES,
|
|
5165
5153
|
KEY_USER_PUBLIC_WITH_ATTRIBUTES_USER_ID,
|
|
@@ -5167,7 +5155,6 @@ export const KEYS_USER_PUBLIC_WITH_ATTRIBUTES = [
|
|
|
5167
5155
|
] as const satisfies (keyof UserPublicWithAttributes)[];
|
|
5168
5156
|
|
|
5169
5157
|
export const KEY_USER_PUBLIC_WITH_ROLE_CREATED_ON = 'created_on' satisfies keyof UserPublicWithRole;
|
|
5170
|
-
export const KEY_USER_PUBLIC_WITH_ROLE_DELETED_ON = 'deleted_on' satisfies keyof UserPublicWithRole;
|
|
5171
5158
|
export const KEY_USER_PUBLIC_WITH_ROLE_EMAIL = 'email' satisfies keyof UserPublicWithRole;
|
|
5172
5159
|
export const KEY_USER_PUBLIC_WITH_ROLE_FIRST_NAME = 'first_name' satisfies keyof UserPublicWithRole;
|
|
5173
5160
|
export const KEY_USER_PUBLIC_WITH_ROLE_LAST_NAME = 'last_name' satisfies keyof UserPublicWithRole;
|
|
@@ -5175,14 +5162,12 @@ export const KEY_USER_PUBLIC_WITH_ROLE_LOCALE = 'locale' satisfies keyof UserPub
|
|
|
5175
5162
|
export const KEY_USER_PUBLIC_WITH_ROLE_ORGANIZATION_ID = 'organization_id' satisfies keyof UserPublicWithRole;
|
|
5176
5163
|
export const KEY_USER_PUBLIC_WITH_ROLE_PHONE = 'phone' satisfies keyof UserPublicWithRole;
|
|
5177
5164
|
export const KEY_USER_PUBLIC_WITH_ROLE_ROLE = 'role' satisfies keyof UserPublicWithRole;
|
|
5178
|
-
export const KEY_USER_PUBLIC_WITH_ROLE_STATUS = 'status' satisfies keyof UserPublicWithRole;
|
|
5179
5165
|
export const KEY_USER_PUBLIC_WITH_ROLE_UPDATED_ON = 'updated_on' satisfies keyof UserPublicWithRole;
|
|
5180
5166
|
export const KEY_USER_PUBLIC_WITH_ROLE_USER_ID = 'user_id' satisfies keyof UserPublicWithRole;
|
|
5181
5167
|
export const KEY_USER_PUBLIC_WITH_ROLE_USERNAME = 'username' satisfies keyof UserPublicWithRole;
|
|
5182
5168
|
|
|
5183
5169
|
export const KEYS_USER_PUBLIC_WITH_ROLE = [
|
|
5184
5170
|
KEY_USER_PUBLIC_WITH_ROLE_CREATED_ON,
|
|
5185
|
-
KEY_USER_PUBLIC_WITH_ROLE_DELETED_ON,
|
|
5186
5171
|
KEY_USER_PUBLIC_WITH_ROLE_EMAIL,
|
|
5187
5172
|
KEY_USER_PUBLIC_WITH_ROLE_FIRST_NAME,
|
|
5188
5173
|
KEY_USER_PUBLIC_WITH_ROLE_LAST_NAME,
|
|
@@ -5190,7 +5175,6 @@ export const KEYS_USER_PUBLIC_WITH_ROLE = [
|
|
|
5190
5175
|
KEY_USER_PUBLIC_WITH_ROLE_ORGANIZATION_ID,
|
|
5191
5176
|
KEY_USER_PUBLIC_WITH_ROLE_PHONE,
|
|
5192
5177
|
KEY_USER_PUBLIC_WITH_ROLE_ROLE,
|
|
5193
|
-
KEY_USER_PUBLIC_WITH_ROLE_STATUS,
|
|
5194
5178
|
KEY_USER_PUBLIC_WITH_ROLE_UPDATED_ON,
|
|
5195
5179
|
KEY_USER_PUBLIC_WITH_ROLE_USER_ID,
|
|
5196
5180
|
KEY_USER_PUBLIC_WITH_ROLE_USERNAME,
|
|
@@ -5229,7 +5213,6 @@ export const KEYS_USER_UPDATE = [
|
|
|
5229
5213
|
] as const satisfies (keyof UserUpdate)[];
|
|
5230
5214
|
|
|
5231
5215
|
export const KEY_USER_WITH_AUTHORIZATION_CREATED_ON = 'created_on' satisfies keyof UserWithAuthorization;
|
|
5232
|
-
export const KEY_USER_WITH_AUTHORIZATION_DELETED_ON = 'deleted_on' satisfies keyof UserWithAuthorization;
|
|
5233
5216
|
export const KEY_USER_WITH_AUTHORIZATION_EMAIL = 'email' satisfies keyof UserWithAuthorization;
|
|
5234
5217
|
export const KEY_USER_WITH_AUTHORIZATION_FIRST_NAME = 'first_name' satisfies keyof UserWithAuthorization;
|
|
5235
5218
|
export const KEY_USER_WITH_AUTHORIZATION_LAST_NAME = 'last_name' satisfies keyof UserWithAuthorization;
|
|
@@ -5238,7 +5221,6 @@ export const KEY_USER_WITH_AUTHORIZATION_ORGANIZATION_ID = 'organization_id' sat
|
|
|
5238
5221
|
export const KEY_USER_WITH_AUTHORIZATION_PERMISSIONS = 'permissions' satisfies keyof UserWithAuthorization;
|
|
5239
5222
|
export const KEY_USER_WITH_AUTHORIZATION_PHONE = 'phone' satisfies keyof UserWithAuthorization;
|
|
5240
5223
|
export const KEY_USER_WITH_AUTHORIZATION_ROLE = 'role' satisfies keyof UserWithAuthorization;
|
|
5241
|
-
export const KEY_USER_WITH_AUTHORIZATION_STATUS = 'status' satisfies keyof UserWithAuthorization;
|
|
5242
5224
|
export const KEY_USER_WITH_AUTHORIZATION_UPDATED_ON = 'updated_on' satisfies keyof UserWithAuthorization;
|
|
5243
5225
|
export const KEY_USER_WITH_AUTHORIZATION_USER_ATTRIBUTES = 'user_attributes' satisfies keyof UserWithAuthorization;
|
|
5244
5226
|
export const KEY_USER_WITH_AUTHORIZATION_USER_ID = 'user_id' satisfies keyof UserWithAuthorization;
|
|
@@ -5246,7 +5228,6 @@ export const KEY_USER_WITH_AUTHORIZATION_USERNAME = 'username' satisfies keyof U
|
|
|
5246
5228
|
|
|
5247
5229
|
export const KEYS_USER_WITH_AUTHORIZATION = [
|
|
5248
5230
|
KEY_USER_WITH_AUTHORIZATION_CREATED_ON,
|
|
5249
|
-
KEY_USER_WITH_AUTHORIZATION_DELETED_ON,
|
|
5250
5231
|
KEY_USER_WITH_AUTHORIZATION_EMAIL,
|
|
5251
5232
|
KEY_USER_WITH_AUTHORIZATION_FIRST_NAME,
|
|
5252
5233
|
KEY_USER_WITH_AUTHORIZATION_LAST_NAME,
|
|
@@ -5255,7 +5236,6 @@ export const KEYS_USER_WITH_AUTHORIZATION = [
|
|
|
5255
5236
|
KEY_USER_WITH_AUTHORIZATION_PERMISSIONS,
|
|
5256
5237
|
KEY_USER_WITH_AUTHORIZATION_PHONE,
|
|
5257
5238
|
KEY_USER_WITH_AUTHORIZATION_ROLE,
|
|
5258
|
-
KEY_USER_WITH_AUTHORIZATION_STATUS,
|
|
5259
5239
|
KEY_USER_WITH_AUTHORIZATION_UPDATED_ON,
|
|
5260
5240
|
KEY_USER_WITH_AUTHORIZATION_USER_ATTRIBUTES,
|
|
5261
5241
|
KEY_USER_WITH_AUTHORIZATION_USER_ID,
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -510,7 +510,6 @@ export type UserPublic = components['schemas']['UserPublic'];
|
|
|
510
510
|
export type UserPublicWithAttributes = components['schemas']['UserPublicWithAttributes'];
|
|
511
511
|
export type UserPublicWithRole = components['schemas']['UserPublicWithRole'];
|
|
512
512
|
export type UserSortField = components['schemas']['UserSortField'];
|
|
513
|
-
export type UserStatus = components['schemas']['UserStatus'];
|
|
514
513
|
export type UserToken = components['schemas']['UserTokenResponse'];
|
|
515
514
|
export type UserUpdate = components['schemas']['UserUpdate'];
|
|
516
515
|
export type UserWithAuthorization = components['schemas']['UserWithAuthorization'];
|
package/src/openapi.yaml
CHANGED
|
@@ -3667,7 +3667,7 @@ components:
|
|
|
3667
3667
|
title: Attributes
|
|
3668
3668
|
auth_code:
|
|
3669
3669
|
anyOf:
|
|
3670
|
-
- maxLength:
|
|
3670
|
+
- maxLength: 255
|
|
3671
3671
|
minLength: 6
|
|
3672
3672
|
type: string
|
|
3673
3673
|
- type: 'null'
|
|
@@ -3762,7 +3762,7 @@ components:
|
|
|
3762
3762
|
title: Attributes
|
|
3763
3763
|
auth_code:
|
|
3764
3764
|
anyOf:
|
|
3765
|
-
- maxLength:
|
|
3765
|
+
- maxLength: 255
|
|
3766
3766
|
minLength: 6
|
|
3767
3767
|
type: string
|
|
3768
3768
|
- type: 'null'
|
|
@@ -3844,7 +3844,7 @@ components:
|
|
|
3844
3844
|
title: Attributes
|
|
3845
3845
|
auth_code:
|
|
3846
3846
|
anyOf:
|
|
3847
|
-
- maxLength:
|
|
3847
|
+
- maxLength: 255
|
|
3848
3848
|
minLength: 6
|
|
3849
3849
|
type: string
|
|
3850
3850
|
- type: 'null'
|
|
@@ -3916,7 +3916,7 @@ components:
|
|
|
3916
3916
|
title: Attributes
|
|
3917
3917
|
auth_code:
|
|
3918
3918
|
anyOf:
|
|
3919
|
-
- maxLength:
|
|
3919
|
+
- maxLength: 255
|
|
3920
3920
|
minLength: 6
|
|
3921
3921
|
type: string
|
|
3922
3922
|
- type: 'null'
|
|
@@ -5631,7 +5631,7 @@ components:
|
|
|
5631
5631
|
title: Attributes
|
|
5632
5632
|
auth_code:
|
|
5633
5633
|
anyOf:
|
|
5634
|
-
- maxLength:
|
|
5634
|
+
- maxLength: 255
|
|
5635
5635
|
minLength: 6
|
|
5636
5636
|
type: string
|
|
5637
5637
|
- type: 'null'
|
|
@@ -5778,7 +5778,7 @@ components:
|
|
|
5778
5778
|
title: Attributes
|
|
5779
5779
|
auth_code:
|
|
5780
5780
|
anyOf:
|
|
5781
|
-
- maxLength:
|
|
5781
|
+
- maxLength: 255
|
|
5782
5782
|
minLength: 6
|
|
5783
5783
|
type: string
|
|
5784
5784
|
- type: 'null'
|
|
@@ -5842,7 +5842,7 @@ components:
|
|
|
5842
5842
|
title: Attributes
|
|
5843
5843
|
auth_code:
|
|
5844
5844
|
anyOf:
|
|
5845
|
-
- maxLength:
|
|
5845
|
+
- maxLength: 255
|
|
5846
5846
|
minLength: 6
|
|
5847
5847
|
type: string
|
|
5848
5848
|
- type: 'null'
|
|
@@ -11515,6 +11515,8 @@ components:
|
|
|
11515
11515
|
- DNS_LU_CONTACT_ROLE
|
|
11516
11516
|
- SK_NIC_LEGAL_FORM
|
|
11517
11517
|
- SK_NIC_IDENT_VALUE
|
|
11518
|
+
- NIC_LV_REG_NR
|
|
11519
|
+
- NIC_LV_VAT_NR
|
|
11518
11520
|
title: RegistryHandleAttributeType
|
|
11519
11521
|
type: string
|
|
11520
11522
|
RegistryLockBase:
|
|
@@ -12578,13 +12580,6 @@ components:
|
|
|
12578
12580
|
format: date-time
|
|
12579
12581
|
title: Created On
|
|
12580
12582
|
type: string
|
|
12581
|
-
deleted_on:
|
|
12582
|
-
anyOf:
|
|
12583
|
-
- format: date-time
|
|
12584
|
-
type: string
|
|
12585
|
-
- type: 'null'
|
|
12586
|
-
description: The date/time the entry was deleted on
|
|
12587
|
-
title: Deleted On
|
|
12588
12583
|
email:
|
|
12589
12584
|
description: The user's email address
|
|
12590
12585
|
format: email
|
|
@@ -12632,9 +12627,6 @@ components:
|
|
|
12632
12627
|
examples:
|
|
12633
12628
|
- '+1.2125552368'
|
|
12634
12629
|
title: Phone
|
|
12635
|
-
status:
|
|
12636
|
-
$ref: '#/components/schemas/UserStatus'
|
|
12637
|
-
readOnly: true
|
|
12638
12630
|
updated_on:
|
|
12639
12631
|
description: The date/time the entry was last updated on
|
|
12640
12632
|
format: date-time
|
|
@@ -12661,7 +12653,6 @@ components:
|
|
|
12661
12653
|
- last_name
|
|
12662
12654
|
- email
|
|
12663
12655
|
- locale
|
|
12664
|
-
- status
|
|
12665
12656
|
title: User
|
|
12666
12657
|
type: object
|
|
12667
12658
|
UserAgentStatsBucket:
|
|
@@ -12784,13 +12775,6 @@ components:
|
|
|
12784
12775
|
format: date-time
|
|
12785
12776
|
title: Created On
|
|
12786
12777
|
type: string
|
|
12787
|
-
deleted_on:
|
|
12788
|
-
anyOf:
|
|
12789
|
-
- format: date-time
|
|
12790
|
-
type: string
|
|
12791
|
-
- type: 'null'
|
|
12792
|
-
description: The date/time the entry was deleted on
|
|
12793
|
-
title: Deleted On
|
|
12794
12778
|
email:
|
|
12795
12779
|
description: The user's email address
|
|
12796
12780
|
format: email
|
|
@@ -12832,9 +12816,6 @@ components:
|
|
|
12832
12816
|
examples:
|
|
12833
12817
|
- '+1.2125552368'
|
|
12834
12818
|
title: Phone
|
|
12835
|
-
status:
|
|
12836
|
-
$ref: '#/components/schemas/UserStatus'
|
|
12837
|
-
readOnly: true
|
|
12838
12819
|
updated_on:
|
|
12839
12820
|
description: The date/time the entry was last updated on
|
|
12840
12821
|
format: date-time
|
|
@@ -12861,7 +12842,6 @@ components:
|
|
|
12861
12842
|
- last_name
|
|
12862
12843
|
- email
|
|
12863
12844
|
- locale
|
|
12864
|
-
- status
|
|
12865
12845
|
title: UserPublic
|
|
12866
12846
|
type: object
|
|
12867
12847
|
UserPublicWithAttributes:
|
|
@@ -12871,13 +12851,6 @@ components:
|
|
|
12871
12851
|
format: date-time
|
|
12872
12852
|
title: Created On
|
|
12873
12853
|
type: string
|
|
12874
|
-
deleted_on:
|
|
12875
|
-
anyOf:
|
|
12876
|
-
- format: date-time
|
|
12877
|
-
type: string
|
|
12878
|
-
- type: 'null'
|
|
12879
|
-
description: The date/time the entry was deleted on
|
|
12880
|
-
title: Deleted On
|
|
12881
12854
|
email:
|
|
12882
12855
|
description: The user's email address
|
|
12883
12856
|
format: email
|
|
@@ -12919,9 +12892,6 @@ components:
|
|
|
12919
12892
|
examples:
|
|
12920
12893
|
- '+1.2125552368'
|
|
12921
12894
|
title: Phone
|
|
12922
|
-
status:
|
|
12923
|
-
$ref: '#/components/schemas/UserStatus'
|
|
12924
|
-
readOnly: true
|
|
12925
12895
|
updated_on:
|
|
12926
12896
|
description: The date/time the entry was last updated on
|
|
12927
12897
|
format: date-time
|
|
@@ -12962,7 +12932,6 @@ components:
|
|
|
12962
12932
|
- last_name
|
|
12963
12933
|
- email
|
|
12964
12934
|
- locale
|
|
12965
|
-
- status
|
|
12966
12935
|
title: UserPublicWithAttributes
|
|
12967
12936
|
type: object
|
|
12968
12937
|
UserPublicWithRole:
|
|
@@ -12972,13 +12941,6 @@ components:
|
|
|
12972
12941
|
format: date-time
|
|
12973
12942
|
title: Created On
|
|
12974
12943
|
type: string
|
|
12975
|
-
deleted_on:
|
|
12976
|
-
anyOf:
|
|
12977
|
-
- format: date-time
|
|
12978
|
-
type: string
|
|
12979
|
-
- type: 'null'
|
|
12980
|
-
description: The date/time the entry was deleted on
|
|
12981
|
-
title: Deleted On
|
|
12982
12944
|
email:
|
|
12983
12945
|
description: The user's email address
|
|
12984
12946
|
format: email
|
|
@@ -13026,9 +12988,6 @@ components:
|
|
|
13026
12988
|
- $ref: '#/components/schemas/CustomRoleLabel'
|
|
13027
12989
|
- type: 'null'
|
|
13028
12990
|
title: Role
|
|
13029
|
-
status:
|
|
13030
|
-
$ref: '#/components/schemas/UserStatus'
|
|
13031
|
-
readOnly: true
|
|
13032
12991
|
updated_on:
|
|
13033
12992
|
description: The date/time the entry was last updated on
|
|
13034
12993
|
format: date-time
|
|
@@ -13055,7 +13014,6 @@ components:
|
|
|
13055
13014
|
- last_name
|
|
13056
13015
|
- email
|
|
13057
13016
|
- locale
|
|
13058
|
-
- status
|
|
13059
13017
|
title: UserPublicWithRole
|
|
13060
13018
|
type: object
|
|
13061
13019
|
UserSortField:
|
|
@@ -13065,12 +13023,6 @@ components:
|
|
|
13065
13023
|
- email
|
|
13066
13024
|
title: UserSortField
|
|
13067
13025
|
type: string
|
|
13068
|
-
UserStatus:
|
|
13069
|
-
enum:
|
|
13070
|
-
- active
|
|
13071
|
-
- inactive
|
|
13072
|
-
title: UserStatus
|
|
13073
|
-
type: string
|
|
13074
13026
|
UserTokenResponse:
|
|
13075
13027
|
properties:
|
|
13076
13028
|
access_token:
|
|
@@ -13171,13 +13123,6 @@ components:
|
|
|
13171
13123
|
format: date-time
|
|
13172
13124
|
title: Created On
|
|
13173
13125
|
type: string
|
|
13174
|
-
deleted_on:
|
|
13175
|
-
anyOf:
|
|
13176
|
-
- format: date-time
|
|
13177
|
-
type: string
|
|
13178
|
-
- type: 'null'
|
|
13179
|
-
description: The date/time the entry was deleted on
|
|
13180
|
-
title: Deleted On
|
|
13181
13126
|
email:
|
|
13182
13127
|
description: The user's email address
|
|
13183
13128
|
format: email
|
|
@@ -13232,9 +13177,6 @@ components:
|
|
|
13232
13177
|
- $ref: '#/components/schemas/CustomRoleLabel'
|
|
13233
13178
|
- type: 'null'
|
|
13234
13179
|
title: Role
|
|
13235
|
-
status:
|
|
13236
|
-
$ref: '#/components/schemas/UserStatus'
|
|
13237
|
-
readOnly: true
|
|
13238
13180
|
updated_on:
|
|
13239
13181
|
description: The date/time the entry was last updated on
|
|
13240
13182
|
format: date-time
|
|
@@ -13275,7 +13217,6 @@ components:
|
|
|
13275
13217
|
- last_name
|
|
13276
13218
|
- email
|
|
13277
13219
|
- locale
|
|
13278
|
-
- status
|
|
13279
13220
|
title: UserWithAuthorization
|
|
13280
13221
|
type: object
|
|
13281
13222
|
ValidationError:
|
|
@@ -13996,7 +13937,7 @@ info:
|
|
|
13996
13937
|
\n\n"
|
|
13997
13938
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13998
13939
|
title: OpusDNS API
|
|
13999
|
-
version: 2026-06-25-
|
|
13940
|
+
version: 2026-06-25-204413
|
|
14000
13941
|
x-logo:
|
|
14001
13942
|
altText: OpusDNS API Reference
|
|
14002
13943
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -10300,7 +10300,7 @@ export interface components {
|
|
|
10300
10300
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
10301
10301
|
* @enum {string}
|
|
10302
10302
|
*/
|
|
10303
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "DE_GENERAL_REQUEST_URI_TEMPLATE" | "DE_ABUSE_URI_TEMPLATE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE" | "CZ_NIC_IDENT_TYPE" | "CZ_NIC_IDENT_VALUE" | "CZ_NIC_VAT" | "CZ_NIC_NOTIFY_EMAIL" | "DNS_LU_CONTACT_ROLE" | "SK_NIC_LEGAL_FORM" | "SK_NIC_IDENT_VALUE";
|
|
10303
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "DE_GENERAL_REQUEST_URI_TEMPLATE" | "DE_ABUSE_URI_TEMPLATE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE" | "CZ_NIC_IDENT_TYPE" | "CZ_NIC_IDENT_VALUE" | "CZ_NIC_VAT" | "CZ_NIC_NOTIFY_EMAIL" | "DNS_LU_CONTACT_ROLE" | "SK_NIC_LEGAL_FORM" | "SK_NIC_IDENT_VALUE" | "NIC_LV_REG_NR" | "NIC_LV_VAT_NR";
|
|
10304
10304
|
/** RegistryLockBase */
|
|
10305
10305
|
RegistryLockBase: {
|
|
10306
10306
|
/**
|
|
@@ -11041,11 +11041,6 @@ export interface components {
|
|
|
11041
11041
|
* @description The date/time the entry was created on
|
|
11042
11042
|
*/
|
|
11043
11043
|
created_on?: Date;
|
|
11044
|
-
/**
|
|
11045
|
-
* Deleted On
|
|
11046
|
-
* @description The date/time the entry was deleted on
|
|
11047
|
-
*/
|
|
11048
|
-
deleted_on?: Date | null;
|
|
11049
11044
|
/**
|
|
11050
11045
|
* Email
|
|
11051
11046
|
* Format: email
|
|
@@ -11086,7 +11081,6 @@ export interface components {
|
|
|
11086
11081
|
* @example +1.2125552368
|
|
11087
11082
|
*/
|
|
11088
11083
|
phone?: string | null;
|
|
11089
|
-
readonly status: components["schemas"]["UserStatus"];
|
|
11090
11084
|
/**
|
|
11091
11085
|
* Updated On
|
|
11092
11086
|
* Format: date-time
|
|
@@ -11187,11 +11181,6 @@ export interface components {
|
|
|
11187
11181
|
* @description The date/time the entry was created on
|
|
11188
11182
|
*/
|
|
11189
11183
|
created_on?: Date;
|
|
11190
|
-
/**
|
|
11191
|
-
* Deleted On
|
|
11192
|
-
* @description The date/time the entry was deleted on
|
|
11193
|
-
*/
|
|
11194
|
-
deleted_on?: Date | null;
|
|
11195
11184
|
/**
|
|
11196
11185
|
* Email
|
|
11197
11186
|
* Format: email
|
|
@@ -11227,7 +11216,6 @@ export interface components {
|
|
|
11227
11216
|
* @example +1.2125552368
|
|
11228
11217
|
*/
|
|
11229
11218
|
phone?: string | null;
|
|
11230
|
-
readonly status: components["schemas"]["UserStatus"];
|
|
11231
11219
|
/**
|
|
11232
11220
|
* Updated On
|
|
11233
11221
|
* Format: date-time
|
|
@@ -11254,11 +11242,6 @@ export interface components {
|
|
|
11254
11242
|
* @description The date/time the entry was created on
|
|
11255
11243
|
*/
|
|
11256
11244
|
created_on?: Date;
|
|
11257
|
-
/**
|
|
11258
|
-
* Deleted On
|
|
11259
|
-
* @description The date/time the entry was deleted on
|
|
11260
|
-
*/
|
|
11261
|
-
deleted_on?: Date | null;
|
|
11262
11245
|
/**
|
|
11263
11246
|
* Email
|
|
11264
11247
|
* Format: email
|
|
@@ -11294,7 +11277,6 @@ export interface components {
|
|
|
11294
11277
|
* @example +1.2125552368
|
|
11295
11278
|
*/
|
|
11296
11279
|
phone?: string | null;
|
|
11297
|
-
readonly status: components["schemas"]["UserStatus"];
|
|
11298
11280
|
/**
|
|
11299
11281
|
* Updated On
|
|
11300
11282
|
* Format: date-time
|
|
@@ -11338,11 +11320,6 @@ export interface components {
|
|
|
11338
11320
|
* @description The date/time the entry was created on
|
|
11339
11321
|
*/
|
|
11340
11322
|
created_on?: Date;
|
|
11341
|
-
/**
|
|
11342
|
-
* Deleted On
|
|
11343
|
-
* @description The date/time the entry was deleted on
|
|
11344
|
-
*/
|
|
11345
|
-
deleted_on?: Date | null;
|
|
11346
11323
|
/**
|
|
11347
11324
|
* Email
|
|
11348
11325
|
* Format: email
|
|
@@ -11380,7 +11357,6 @@ export interface components {
|
|
|
11380
11357
|
phone?: string | null;
|
|
11381
11358
|
/** Role */
|
|
11382
11359
|
role?: components["schemas"]["PublicRole"] | components["schemas"]["CustomRoleLabel"] | null;
|
|
11383
|
-
readonly status: components["schemas"]["UserStatus"];
|
|
11384
11360
|
/**
|
|
11385
11361
|
* Updated On
|
|
11386
11362
|
* Format: date-time
|
|
@@ -11404,11 +11380,6 @@ export interface components {
|
|
|
11404
11380
|
* @enum {string}
|
|
11405
11381
|
*/
|
|
11406
11382
|
UserSortField: "created_on" | "username" | "email";
|
|
11407
|
-
/**
|
|
11408
|
-
* UserStatus
|
|
11409
|
-
* @enum {string}
|
|
11410
|
-
*/
|
|
11411
|
-
UserStatus: "active" | "inactive";
|
|
11412
11383
|
/** UserTokenResponse */
|
|
11413
11384
|
UserTokenResponse: {
|
|
11414
11385
|
/**
|
|
@@ -11484,11 +11455,6 @@ export interface components {
|
|
|
11484
11455
|
* @description The date/time the entry was created on
|
|
11485
11456
|
*/
|
|
11486
11457
|
created_on?: Date;
|
|
11487
|
-
/**
|
|
11488
|
-
* Deleted On
|
|
11489
|
-
* @description The date/time the entry was deleted on
|
|
11490
|
-
*/
|
|
11491
|
-
deleted_on?: Date | null;
|
|
11492
11458
|
/**
|
|
11493
11459
|
* Email
|
|
11494
11460
|
* Format: email
|
|
@@ -11528,7 +11494,6 @@ export interface components {
|
|
|
11528
11494
|
phone?: string | null;
|
|
11529
11495
|
/** Role */
|
|
11530
11496
|
role?: components["schemas"]["PublicRole"] | components["schemas"]["CustomRoleLabel"] | null;
|
|
11531
|
-
readonly status: components["schemas"]["UserStatus"];
|
|
11532
11497
|
/**
|
|
11533
11498
|
* Updated On
|
|
11534
11499
|
* Format: date-time
|