@opusdns/api 0.127.0 → 0.129.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 +107 -51
- package/src/helpers/keys.ts +546 -2
- package/src/helpers/schemas.d.ts +131 -19
- package/src/openapi.yaml +168 -23
- package/src/schema.d.ts +113 -16
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -251,7 +251,7 @@ export type ContactCreate = components['schemas']['ContactCreate'];
|
|
|
251
251
|
*/
|
|
252
252
|
export type ContactHandle = components['schemas']['ContactHandle'];
|
|
253
253
|
/**
|
|
254
|
-
* ContactIdList
|
|
254
|
+
* ContactIdList. The contacts of the domain
|
|
255
255
|
*
|
|
256
256
|
* @remarks
|
|
257
257
|
* Type alias for the `ContactIdList` OpenAPI schema.
|
|
@@ -442,6 +442,22 @@ export type Currency = components['schemas']['Currency'];
|
|
|
442
442
|
* @see {@link components} - The OpenAPI components schema definition
|
|
443
443
|
*/
|
|
444
444
|
export type DeletePolicyType = components['schemas']['DeletePolicyType'];
|
|
445
|
+
/**
|
|
446
|
+
* DeletedEvent
|
|
447
|
+
*
|
|
448
|
+
* @remarks
|
|
449
|
+
* Type alias for the `DeletedEvent` OpenAPI schema.
|
|
450
|
+
* This type represents deletedevent data structures used in API requests and responses.
|
|
451
|
+
*
|
|
452
|
+
* @example
|
|
453
|
+
* ```typescript
|
|
454
|
+
* const response = await api.getDeletedEvent();
|
|
455
|
+
* const item: DeletedEvent = response.results;
|
|
456
|
+
* ```
|
|
457
|
+
*
|
|
458
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
459
|
+
*/
|
|
460
|
+
export type DeletedEvent = components['schemas']['DeletedEvent'];
|
|
445
461
|
/**
|
|
446
462
|
* DnsChangeAction
|
|
447
463
|
*
|
|
@@ -923,7 +939,7 @@ export type DomainCheck = components['schemas']['DomainCheckResponse'];
|
|
|
923
939
|
*/
|
|
924
940
|
export type DomainClientStatus = components['schemas']['DomainClientStatus'];
|
|
925
941
|
/**
|
|
926
|
-
* DomainContactHandles
|
|
942
|
+
* DomainContactHandles. The contacts of the domain
|
|
927
943
|
*
|
|
928
944
|
* @remarks
|
|
929
945
|
* Type alias for the `DomainContactHandles` OpenAPI schema.
|
|
@@ -1802,6 +1818,22 @@ export type EmailForwardZoneSortField = components['schemas']['EmailForwardZoneS
|
|
|
1802
1818
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1803
1819
|
*/
|
|
1804
1820
|
export type EmailVerificationStatus = components['schemas']['EmailVerificationStatus'];
|
|
1821
|
+
/**
|
|
1822
|
+
* EmptyEvent
|
|
1823
|
+
*
|
|
1824
|
+
* @remarks
|
|
1825
|
+
* Type alias for the `EmptyEvent` OpenAPI schema.
|
|
1826
|
+
* This type represents emptyevent data structures used in API requests and responses.
|
|
1827
|
+
*
|
|
1828
|
+
* @example
|
|
1829
|
+
* ```typescript
|
|
1830
|
+
* const response = await api.getEmptyEvent();
|
|
1831
|
+
* const item: EmptyEvent = response.results;
|
|
1832
|
+
* ```
|
|
1833
|
+
*
|
|
1834
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1835
|
+
*/
|
|
1836
|
+
export type EmptyEvent = components['schemas']['EmptyEvent'];
|
|
1805
1837
|
/**
|
|
1806
1838
|
* EppDateTime
|
|
1807
1839
|
*
|
|
@@ -1978,6 +2010,38 @@ export type GrantType = components['schemas']['GrantType'];
|
|
|
1978
2010
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1979
2011
|
*/
|
|
1980
2012
|
export type HTTPValidationError = components['schemas']['HTTPValidationError'];
|
|
2013
|
+
/**
|
|
2014
|
+
* HostSchema
|
|
2015
|
+
*
|
|
2016
|
+
* @remarks
|
|
2017
|
+
* Type alias for the `HostSchema` OpenAPI schema.
|
|
2018
|
+
* This type represents hostschema data structures used in API requests and responses.
|
|
2019
|
+
*
|
|
2020
|
+
* @example
|
|
2021
|
+
* ```typescript
|
|
2022
|
+
* const response = await api.getHostSchema();
|
|
2023
|
+
* const item: HostSchema = response.results;
|
|
2024
|
+
* ```
|
|
2025
|
+
*
|
|
2026
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2027
|
+
*/
|
|
2028
|
+
export type HostSchema = components['schemas']['HostSchema'];
|
|
2029
|
+
/**
|
|
2030
|
+
* HostStatus
|
|
2031
|
+
*
|
|
2032
|
+
* @remarks
|
|
2033
|
+
* Type alias for the `HostStatus` OpenAPI schema.
|
|
2034
|
+
* This type represents hoststatus data structures used in API requests and responses.
|
|
2035
|
+
*
|
|
2036
|
+
* @example
|
|
2037
|
+
* ```typescript
|
|
2038
|
+
* const response = await api.getHostStatus();
|
|
2039
|
+
* const item: HostStatus = response.results;
|
|
2040
|
+
* ```
|
|
2041
|
+
*
|
|
2042
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2043
|
+
*/
|
|
2044
|
+
export type HostStatus = components['schemas']['HostStatus'];
|
|
1981
2045
|
/**
|
|
1982
2046
|
* HttpProtocol
|
|
1983
2047
|
*
|
|
@@ -2783,22 +2847,6 @@ export type Pagination_User = components['schemas']['Pagination_User_'];
|
|
|
2783
2847
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2784
2848
|
*/
|
|
2785
2849
|
export type PasswordUpdate = components['schemas']['PasswordUpdate'];
|
|
2786
|
-
/**
|
|
2787
|
-
* PatchOp
|
|
2788
|
-
*
|
|
2789
|
-
* @remarks
|
|
2790
|
-
* Type alias for the `PatchOp` OpenAPI schema.
|
|
2791
|
-
* This type represents patchop data structures used in API requests and responses.
|
|
2792
|
-
*
|
|
2793
|
-
* @example
|
|
2794
|
-
* ```typescript
|
|
2795
|
-
* const response = await api.getPatchOp();
|
|
2796
|
-
* const item: PatchOp = response.results;
|
|
2797
|
-
* ```
|
|
2798
|
-
*
|
|
2799
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2800
|
-
*/
|
|
2801
|
-
export type PatchOp = components['schemas']['PatchOp'];
|
|
2802
2850
|
/**
|
|
2803
2851
|
* Period
|
|
2804
2852
|
*
|
|
@@ -3135,6 +3183,22 @@ export type Relation = components['schemas']['Relation'];
|
|
|
3135
3183
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3136
3184
|
*/
|
|
3137
3185
|
export type RelationSet = components['schemas']['RelationSet'];
|
|
3186
|
+
/**
|
|
3187
|
+
* RenewalEvent
|
|
3188
|
+
*
|
|
3189
|
+
* @remarks
|
|
3190
|
+
* Type alias for the `RenewalEvent` OpenAPI schema.
|
|
3191
|
+
* This type represents renewalevent data structures used in API requests and responses.
|
|
3192
|
+
*
|
|
3193
|
+
* @example
|
|
3194
|
+
* ```typescript
|
|
3195
|
+
* const response = await api.getRenewalEvent();
|
|
3196
|
+
* const item: RenewalEvent = response.results;
|
|
3197
|
+
* ```
|
|
3198
|
+
*
|
|
3199
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3200
|
+
*/
|
|
3201
|
+
export type RenewalEvent = components['schemas']['RenewalEvent'];
|
|
3138
3202
|
/**
|
|
3139
3203
|
* RenewalMode
|
|
3140
3204
|
*
|
|
@@ -3391,6 +3455,22 @@ export type TrademarkClaimsBase = components['schemas']['TrademarkClaimsBase'];
|
|
|
3391
3455
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3392
3456
|
*/
|
|
3393
3457
|
export type TransferAckType = components['schemas']['TransferAckType'];
|
|
3458
|
+
/**
|
|
3459
|
+
* TransferEvent
|
|
3460
|
+
*
|
|
3461
|
+
* @remarks
|
|
3462
|
+
* Type alias for the `TransferEvent` OpenAPI schema.
|
|
3463
|
+
* This type represents transferevent data structures used in API requests and responses.
|
|
3464
|
+
*
|
|
3465
|
+
* @example
|
|
3466
|
+
* ```typescript
|
|
3467
|
+
* const response = await api.getTransferEvent();
|
|
3468
|
+
* const item: TransferEvent = response.results;
|
|
3469
|
+
* ```
|
|
3470
|
+
*
|
|
3471
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3472
|
+
*/
|
|
3473
|
+
export type TransferEvent = components['schemas']['TransferEvent'];
|
|
3394
3474
|
/**
|
|
3395
3475
|
* TransferLockPolicyBase
|
|
3396
3476
|
*
|
|
@@ -3455,6 +3535,22 @@ export type User = components['schemas']['User'];
|
|
|
3455
3535
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3456
3536
|
*/
|
|
3457
3537
|
export type UserAttributeBase = components['schemas']['UserAttributeBase'];
|
|
3538
|
+
/**
|
|
3539
|
+
* UserAttributeResponse
|
|
3540
|
+
*
|
|
3541
|
+
* @remarks
|
|
3542
|
+
* Type alias for the `UserAttributeResponse` OpenAPI schema.
|
|
3543
|
+
* This type represents userattributeresponse data structures used in API requests and responses.
|
|
3544
|
+
*
|
|
3545
|
+
* @example
|
|
3546
|
+
* ```typescript
|
|
3547
|
+
* const response = await api.getUserAttribute();
|
|
3548
|
+
* const item: UserAttribute = response.results;
|
|
3549
|
+
* ```
|
|
3550
|
+
*
|
|
3551
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3552
|
+
*/
|
|
3553
|
+
export type UserAttribute = components['schemas']['UserAttributeResponse'];
|
|
3458
3554
|
/**
|
|
3459
3555
|
* UserCreate
|
|
3460
3556
|
*
|
|
@@ -3694,4 +3790,20 @@ export type DomainAvailabilityList = components['schemas']['common__models__avai
|
|
|
3694
3790
|
*
|
|
3695
3791
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3696
3792
|
*/
|
|
3697
|
-
export type DomainAvailabilityCheck = components['schemas']['common__models__domain__domain__DomainAvailabilityResponse'];
|
|
3793
|
+
export type DomainAvailabilityCheck = components['schemas']['common__models__domain__domain__DomainAvailabilityResponse'];
|
|
3794
|
+
/**
|
|
3795
|
+
* PatchOp
|
|
3796
|
+
*
|
|
3797
|
+
* @remarks
|
|
3798
|
+
* Type alias for the `common__schemas__domain_forward__PatchOp` OpenAPI schema.
|
|
3799
|
+
* This type represents patchop data structures used in API requests and responses.
|
|
3800
|
+
*
|
|
3801
|
+
* @example
|
|
3802
|
+
* ```typescript
|
|
3803
|
+
* const response = await api.getPatchOp();
|
|
3804
|
+
* const item: PatchOp = response.results;
|
|
3805
|
+
* ```
|
|
3806
|
+
*
|
|
3807
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3808
|
+
*/
|
|
3809
|
+
export type PatchOp = components['schemas']['common__schemas__domain_forward__PatchOp'];
|
package/src/openapi.yaml
CHANGED
|
@@ -118,6 +118,7 @@ components:
|
|
|
118
118
|
description: The action performed in the transaction
|
|
119
119
|
amount:
|
|
120
120
|
description: The amount of the transaction including VAT
|
|
121
|
+
pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
121
122
|
title: Amount
|
|
122
123
|
type: string
|
|
123
124
|
billing_transaction_id:
|
|
@@ -145,6 +146,7 @@ components:
|
|
|
145
146
|
description: The currency of the transaction
|
|
146
147
|
price:
|
|
147
148
|
description: The price of the product without sales tax
|
|
149
|
+
pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
148
150
|
title: Price
|
|
149
151
|
type: string
|
|
150
152
|
product_reference:
|
|
@@ -163,10 +165,12 @@ components:
|
|
|
163
165
|
description: The status of the transaction
|
|
164
166
|
tax_amount:
|
|
165
167
|
description: The tax amount of the transaction
|
|
168
|
+
pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
166
169
|
title: Tax Amount
|
|
167
170
|
type: string
|
|
168
171
|
tax_rate:
|
|
169
172
|
description: The tax rate of the transaction
|
|
173
|
+
pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
170
174
|
title: Tax Rate
|
|
171
175
|
type: string
|
|
172
176
|
updated_on:
|
|
@@ -365,6 +369,7 @@ components:
|
|
|
365
369
|
pattern: ^contact_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
366
370
|
type: string
|
|
367
371
|
x-typeid-prefix: contact
|
|
372
|
+
description: The contacts of the domain
|
|
368
373
|
propertyNames:
|
|
369
374
|
$ref: '#/components/schemas/DomainContactType'
|
|
370
375
|
type: object
|
|
@@ -867,6 +872,14 @@ components:
|
|
|
867
872
|
- expiration
|
|
868
873
|
title: DeletePolicyType
|
|
869
874
|
type: string
|
|
875
|
+
DeletedEvent:
|
|
876
|
+
properties:
|
|
877
|
+
date:
|
|
878
|
+
$ref: '#/components/schemas/EppDateTime'
|
|
879
|
+
required:
|
|
880
|
+
- date
|
|
881
|
+
title: DeletedEvent
|
|
882
|
+
type: object
|
|
870
883
|
DnsChangeAction:
|
|
871
884
|
enum:
|
|
872
885
|
- create_zone
|
|
@@ -1000,7 +1013,7 @@ components:
|
|
|
1000
1013
|
DnsRecordPatchOp:
|
|
1001
1014
|
properties:
|
|
1002
1015
|
op:
|
|
1003
|
-
$ref: '#/components/schemas/
|
|
1016
|
+
$ref: '#/components/schemas/common__schemas__domain_forward__PatchOp'
|
|
1004
1017
|
record:
|
|
1005
1018
|
$ref: '#/components/schemas/DnsRrsetWithOneRecordPatch'
|
|
1006
1019
|
required:
|
|
@@ -1064,7 +1077,7 @@ components:
|
|
|
1064
1077
|
DnsRrsetPatchOp:
|
|
1065
1078
|
properties:
|
|
1066
1079
|
op:
|
|
1067
|
-
$ref: '#/components/schemas/
|
|
1080
|
+
$ref: '#/components/schemas/common__schemas__domain_forward__PatchOp'
|
|
1068
1081
|
rrset:
|
|
1069
1082
|
$ref: '#/components/schemas/DnsRrsetPatch'
|
|
1070
1083
|
required:
|
|
@@ -1340,6 +1353,7 @@ components:
|
|
|
1340
1353
|
items:
|
|
1341
1354
|
$ref: '#/components/schemas/ContactHandle'
|
|
1342
1355
|
type: array
|
|
1356
|
+
description: The contacts of the domain
|
|
1343
1357
|
propertyNames:
|
|
1344
1358
|
$ref: '#/components/schemas/DomainContactType'
|
|
1345
1359
|
type: object
|
|
@@ -1599,7 +1613,7 @@ components:
|
|
|
1599
1613
|
DomainForwardPatchOp:
|
|
1600
1614
|
properties:
|
|
1601
1615
|
op:
|
|
1602
|
-
$ref: '#/components/schemas/
|
|
1616
|
+
$ref: '#/components/schemas/common__schemas__domain_forward__PatchOp'
|
|
1603
1617
|
redirect:
|
|
1604
1618
|
anyOf:
|
|
1605
1619
|
- $ref: '#/components/schemas/HttpRedirectUpsert'
|
|
@@ -2203,7 +2217,8 @@ components:
|
|
|
2203
2217
|
properties:
|
|
2204
2218
|
amount:
|
|
2205
2219
|
anyOf:
|
|
2206
|
-
-
|
|
2220
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
|
|
2221
|
+
type: string
|
|
2207
2222
|
- type: 'null'
|
|
2208
2223
|
title: Amount
|
|
2209
2224
|
currency:
|
|
@@ -2816,6 +2831,10 @@ components:
|
|
|
2816
2831
|
- canceled
|
|
2817
2832
|
title: EmailVerificationStatus
|
|
2818
2833
|
type: string
|
|
2834
|
+
EmptyEvent:
|
|
2835
|
+
properties: {}
|
|
2836
|
+
title: EmptyEvent
|
|
2837
|
+
type: object
|
|
2819
2838
|
EppDateTime:
|
|
2820
2839
|
anyOf:
|
|
2821
2840
|
- format: date-time
|
|
@@ -2833,6 +2852,7 @@ components:
|
|
|
2833
2852
|
EventResponse:
|
|
2834
2853
|
properties:
|
|
2835
2854
|
event_data:
|
|
2855
|
+
additionalProperties: true
|
|
2836
2856
|
title: Event Data
|
|
2837
2857
|
type: object
|
|
2838
2858
|
event_id:
|
|
@@ -3022,7 +3042,7 @@ components:
|
|
|
3022
3042
|
title: Status code
|
|
3023
3043
|
type: integer
|
|
3024
3044
|
title:
|
|
3025
|
-
title: Problem
|
|
3045
|
+
title: Problem title
|
|
3026
3046
|
type: string
|
|
3027
3047
|
type:
|
|
3028
3048
|
title: Problem type
|
|
@@ -3030,10 +3050,72 @@ components:
|
|
|
3030
3050
|
required:
|
|
3031
3051
|
- type
|
|
3032
3052
|
- title
|
|
3033
|
-
- errors
|
|
3034
3053
|
- status
|
|
3054
|
+
- errors
|
|
3035
3055
|
title: RequestValidationError
|
|
3036
3056
|
type: object
|
|
3057
|
+
HostSchema:
|
|
3058
|
+
properties:
|
|
3059
|
+
created_on:
|
|
3060
|
+
description: The date/time the entry was created on
|
|
3061
|
+
format: date-time
|
|
3062
|
+
title: Created On
|
|
3063
|
+
type: string
|
|
3064
|
+
domain_id:
|
|
3065
|
+
default: None
|
|
3066
|
+
description: The domain that the host object belongs to
|
|
3067
|
+
examples:
|
|
3068
|
+
- domain_01h45ytscbebyvny4gc8cr8ma2
|
|
3069
|
+
format: typeid
|
|
3070
|
+
pattern: ^domain_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
3071
|
+
title: Domain Id
|
|
3072
|
+
type: string
|
|
3073
|
+
x-typeid-prefix: domain
|
|
3074
|
+
host_id:
|
|
3075
|
+
examples:
|
|
3076
|
+
- host_01h45ytscbebyvny4gc8cr8ma2
|
|
3077
|
+
format: typeid
|
|
3078
|
+
pattern: ^host_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
3079
|
+
title: Host Id
|
|
3080
|
+
type: string
|
|
3081
|
+
x-typeid-prefix: host
|
|
3082
|
+
hostname:
|
|
3083
|
+
description: Hostname of the host object
|
|
3084
|
+
title: Hostname
|
|
3085
|
+
type: string
|
|
3086
|
+
registry_account_id:
|
|
3087
|
+
anyOf:
|
|
3088
|
+
- examples:
|
|
3089
|
+
- registry_account_01h45ytscbebyvny4gc8cr8ma2
|
|
3090
|
+
format: typeid
|
|
3091
|
+
pattern: ^registry_account_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
3092
|
+
type: string
|
|
3093
|
+
x-typeid-prefix: registry_account
|
|
3094
|
+
- type: 'null'
|
|
3095
|
+
description: The registry account that the host object belongs to
|
|
3096
|
+
title: Registry Account Id
|
|
3097
|
+
status:
|
|
3098
|
+
$ref: '#/components/schemas/HostStatus'
|
|
3099
|
+
default: inactive
|
|
3100
|
+
description: Status of the host object
|
|
3101
|
+
updated_on:
|
|
3102
|
+
description: The date/time the entry was last updated on
|
|
3103
|
+
format: date-time
|
|
3104
|
+
title: Updated On
|
|
3105
|
+
type: string
|
|
3106
|
+
required:
|
|
3107
|
+
- hostname
|
|
3108
|
+
title: HostSchema
|
|
3109
|
+
type: object
|
|
3110
|
+
HostStatus:
|
|
3111
|
+
enum:
|
|
3112
|
+
- requested_create
|
|
3113
|
+
- pending_create
|
|
3114
|
+
- active
|
|
3115
|
+
- inactive
|
|
3116
|
+
- pending_delete
|
|
3117
|
+
title: HostStatus
|
|
3118
|
+
type: string
|
|
3037
3119
|
HttpProtocol:
|
|
3038
3120
|
enum:
|
|
3039
3121
|
- http
|
|
@@ -3177,6 +3259,7 @@ components:
|
|
|
3177
3259
|
properties:
|
|
3178
3260
|
amount:
|
|
3179
3261
|
description: Total invoice amount
|
|
3262
|
+
pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
|
|
3180
3263
|
title: Amount
|
|
3181
3264
|
type: string
|
|
3182
3265
|
currency:
|
|
@@ -3188,6 +3271,7 @@ components:
|
|
|
3188
3271
|
type: string
|
|
3189
3272
|
fees_amount:
|
|
3190
3273
|
description: Fees amount
|
|
3274
|
+
pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
|
|
3191
3275
|
title: Fees Amount
|
|
3192
3276
|
type: string
|
|
3193
3277
|
file_url:
|
|
@@ -3223,6 +3307,7 @@ components:
|
|
|
3223
3307
|
description: Invoice status
|
|
3224
3308
|
taxes_amount:
|
|
3225
3309
|
description: Taxes amount
|
|
3310
|
+
pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
|
|
3226
3311
|
title: Taxes Amount
|
|
3227
3312
|
type: string
|
|
3228
3313
|
required:
|
|
@@ -3527,7 +3612,8 @@ components:
|
|
|
3527
3612
|
type: string
|
|
3528
3613
|
details:
|
|
3529
3614
|
anyOf:
|
|
3530
|
-
-
|
|
3615
|
+
- additionalProperties: true
|
|
3616
|
+
type: object
|
|
3531
3617
|
- type: 'null'
|
|
3532
3618
|
description: Changes made to the object
|
|
3533
3619
|
title: Details
|
|
@@ -3713,7 +3799,8 @@ components:
|
|
|
3713
3799
|
title: Tax Id Type
|
|
3714
3800
|
tax_rate:
|
|
3715
3801
|
anyOf:
|
|
3716
|
-
-
|
|
3802
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
3803
|
+
type: string
|
|
3717
3804
|
- type: 'null'
|
|
3718
3805
|
description: Tax rate for the organization.
|
|
3719
3806
|
title: Tax Rate
|
|
@@ -3966,7 +4053,8 @@ components:
|
|
|
3966
4053
|
tax_rate:
|
|
3967
4054
|
anyOf:
|
|
3968
4055
|
- type: number
|
|
3969
|
-
-
|
|
4056
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
4057
|
+
type: string
|
|
3970
4058
|
- type: 'null'
|
|
3971
4059
|
description: Tax rate for the organization.
|
|
3972
4060
|
title: Tax Rate
|
|
@@ -4090,7 +4178,8 @@ components:
|
|
|
4090
4178
|
tax_rate:
|
|
4091
4179
|
anyOf:
|
|
4092
4180
|
- type: number
|
|
4093
|
-
-
|
|
4181
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,6}|(?=[\d.]{1,11}0*$)\d{0,6}\.\d{0,4}0*$)
|
|
4182
|
+
type: string
|
|
4094
4183
|
- type: 'null'
|
|
4095
4184
|
description: Tax rate for the organization.
|
|
4096
4185
|
title: Tax Rate
|
|
@@ -4100,7 +4189,8 @@ components:
|
|
|
4100
4189
|
properties:
|
|
4101
4190
|
account_balance:
|
|
4102
4191
|
anyOf:
|
|
4103
|
-
-
|
|
4192
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
|
|
4193
|
+
type: string
|
|
4104
4194
|
- type: 'null'
|
|
4105
4195
|
title: Account Balance
|
|
4106
4196
|
active_plan:
|
|
@@ -4237,7 +4327,8 @@ components:
|
|
|
4237
4327
|
title: Tax Id Type
|
|
4238
4328
|
tax_rate:
|
|
4239
4329
|
anyOf:
|
|
4240
|
-
-
|
|
4330
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
4331
|
+
type: string
|
|
4241
4332
|
- type: 'null'
|
|
4242
4333
|
description: Tax rate for the organization.
|
|
4243
4334
|
title: Tax Rate
|
|
@@ -4500,12 +4591,6 @@ components:
|
|
|
4500
4591
|
- new_password
|
|
4501
4592
|
title: PasswordUpdate
|
|
4502
4593
|
type: object
|
|
4503
|
-
PatchOp:
|
|
4504
|
-
enum:
|
|
4505
|
-
- upsert
|
|
4506
|
-
- remove
|
|
4507
|
-
title: PatchOp
|
|
4508
|
-
type: string
|
|
4509
4594
|
Period:
|
|
4510
4595
|
properties:
|
|
4511
4596
|
unit:
|
|
@@ -4694,7 +4779,7 @@ components:
|
|
|
4694
4779
|
title: Status code
|
|
4695
4780
|
type: integer
|
|
4696
4781
|
title:
|
|
4697
|
-
title: Problem
|
|
4782
|
+
title: Problem title
|
|
4698
4783
|
type: string
|
|
4699
4784
|
type:
|
|
4700
4785
|
title: Problem type
|
|
@@ -4702,7 +4787,6 @@ components:
|
|
|
4702
4787
|
required:
|
|
4703
4788
|
- type
|
|
4704
4789
|
- title
|
|
4705
|
-
- detail
|
|
4706
4790
|
- status
|
|
4707
4791
|
title: Problem
|
|
4708
4792
|
type: object
|
|
@@ -4832,6 +4916,17 @@ components:
|
|
|
4832
4916
|
type: array
|
|
4833
4917
|
title: RelationSet
|
|
4834
4918
|
type: object
|
|
4919
|
+
RenewalEvent:
|
|
4920
|
+
properties:
|
|
4921
|
+
registration_expiration_date:
|
|
4922
|
+
description: The new expiration date/time after the domain has been renewed
|
|
4923
|
+
format: date-time
|
|
4924
|
+
title: Registration Expiration Date
|
|
4925
|
+
type: string
|
|
4926
|
+
required:
|
|
4927
|
+
- registration_expiration_date
|
|
4928
|
+
title: RenewalEvent
|
|
4929
|
+
type: object
|
|
4835
4930
|
RenewalMode:
|
|
4836
4931
|
enum:
|
|
4837
4932
|
- renew
|
|
@@ -4871,7 +4966,8 @@ components:
|
|
|
4871
4966
|
title: Performed By Type
|
|
4872
4967
|
request_body:
|
|
4873
4968
|
anyOf:
|
|
4874
|
-
-
|
|
4969
|
+
- additionalProperties: true
|
|
4970
|
+
type: object
|
|
4875
4971
|
- type: 'null'
|
|
4876
4972
|
description: Request body
|
|
4877
4973
|
title: Request Body
|
|
@@ -4887,7 +4983,8 @@ components:
|
|
|
4887
4983
|
type: string
|
|
4888
4984
|
response_body:
|
|
4889
4985
|
anyOf:
|
|
4890
|
-
-
|
|
4986
|
+
- additionalProperties: true
|
|
4987
|
+
type: object
|
|
4891
4988
|
- type: 'null'
|
|
4892
4989
|
description: Response body
|
|
4893
4990
|
title: Response Body
|
|
@@ -5177,6 +5274,31 @@ components:
|
|
|
5177
5274
|
- both
|
|
5178
5275
|
title: TransferAckType
|
|
5179
5276
|
type: string
|
|
5277
|
+
TransferEvent:
|
|
5278
|
+
properties:
|
|
5279
|
+
current_registrar:
|
|
5280
|
+
title: Current Registrar
|
|
5281
|
+
type: string
|
|
5282
|
+
execution_date:
|
|
5283
|
+
$ref: '#/components/schemas/EppDateTime'
|
|
5284
|
+
expiration_date:
|
|
5285
|
+
anyOf:
|
|
5286
|
+
- $ref: '#/components/schemas/EppDateTime'
|
|
5287
|
+
- type: 'null'
|
|
5288
|
+
message:
|
|
5289
|
+
title: Message
|
|
5290
|
+
type: string
|
|
5291
|
+
requesting_registrar:
|
|
5292
|
+
title: Requesting Registrar
|
|
5293
|
+
type: string
|
|
5294
|
+
required:
|
|
5295
|
+
- execution_date
|
|
5296
|
+
- message
|
|
5297
|
+
- requesting_registrar
|
|
5298
|
+
- current_registrar
|
|
5299
|
+
- expiration_date
|
|
5300
|
+
title: TransferEvent
|
|
5301
|
+
type: object
|
|
5180
5302
|
TransferLockPolicyBase:
|
|
5181
5303
|
properties:
|
|
5182
5304
|
supported_by_registrar:
|
|
@@ -5402,6 +5524,22 @@ components:
|
|
|
5402
5524
|
- key
|
|
5403
5525
|
title: UserAttributeBase
|
|
5404
5526
|
type: object
|
|
5527
|
+
UserAttributeResponse:
|
|
5528
|
+
properties:
|
|
5529
|
+
key:
|
|
5530
|
+
description: Key of the attribute.
|
|
5531
|
+
minLength: 1
|
|
5532
|
+
title: Key
|
|
5533
|
+
type: string
|
|
5534
|
+
value:
|
|
5535
|
+
anyOf:
|
|
5536
|
+
- $ref: '#/components/schemas/JsonValue'
|
|
5537
|
+
- type: 'null'
|
|
5538
|
+
description: Value of the attribute.
|
|
5539
|
+
required:
|
|
5540
|
+
- key
|
|
5541
|
+
title: UserAttributeResponse
|
|
5542
|
+
type: object
|
|
5405
5543
|
UserCreate:
|
|
5406
5544
|
properties:
|
|
5407
5545
|
email:
|
|
@@ -5924,6 +6062,12 @@ components:
|
|
|
5924
6062
|
- reason
|
|
5925
6063
|
title: DomainAvailabilityResponse
|
|
5926
6064
|
type: object
|
|
6065
|
+
common__schemas__domain_forward__PatchOp:
|
|
6066
|
+
enum:
|
|
6067
|
+
- upsert
|
|
6068
|
+
- remove
|
|
6069
|
+
title: PatchOp
|
|
6070
|
+
type: string
|
|
5927
6071
|
securitySchemes:
|
|
5928
6072
|
APIKeyHeader:
|
|
5929
6073
|
description: API key for the organization.
|
|
@@ -5999,7 +6143,7 @@ info:
|
|
|
5999
6143
|
'
|
|
6000
6144
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6001
6145
|
title: OpusDNS API
|
|
6002
|
-
version: 2025-12-
|
|
6146
|
+
version: 2025-12-17-182020
|
|
6003
6147
|
x-logo:
|
|
6004
6148
|
altText: OpusDNS API Reference
|
|
6005
6149
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -13394,6 +13538,7 @@ paths:
|
|
|
13394
13538
|
schema:
|
|
13395
13539
|
additionalProperties:
|
|
13396
13540
|
items:
|
|
13541
|
+
additionalProperties: true
|
|
13397
13542
|
type: object
|
|
13398
13543
|
type: array
|
|
13399
13544
|
title: Response Get Tld Specifications V1 Tlds Get
|