@opusdns/api 0.136.0 → 0.138.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 +39 -5
- package/src/openapi.yaml +19 -2
- package/src/schema.d.ts +3 -3
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -99,6 +99,7 @@ export const ATTRIBUTE_TYPE = {
|
|
|
99
99
|
STRING: "string",
|
|
100
100
|
BOOLEAN: "boolean",
|
|
101
101
|
DATETIME: "datetime",
|
|
102
|
+
INTEGER: "integer",
|
|
102
103
|
} as const satisfies Record<string, AttributeType>;
|
|
103
104
|
|
|
104
105
|
/**
|
|
@@ -126,7 +127,8 @@ export const ATTRIBUTE_TYPE_VALUES = [
|
|
|
126
127
|
'enum',
|
|
127
128
|
'string',
|
|
128
129
|
'boolean',
|
|
129
|
-
'datetime'
|
|
130
|
+
'datetime',
|
|
131
|
+
'integer'
|
|
130
132
|
] as const satisfies [string, ...string[]] | AttributeType[];
|
|
131
133
|
|
|
132
134
|
/**
|
|
@@ -2912,6 +2914,23 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
2912
2914
|
DE_CONTACT_TYPE: "DE_CONTACT_TYPE",
|
|
2913
2915
|
DNSBE_TYPE: "dnsbe:type",
|
|
2914
2916
|
EURID_TYPE: "eurid:type",
|
|
2917
|
+
AFNIC_CONTACT_TYPE: "AFNIC_CONTACT_TYPE",
|
|
2918
|
+
AFNIC_PP_FIRST_NAME: "AFNIC_PP_FIRST_NAME",
|
|
2919
|
+
AFNIC_PM_LEGAL_STATUS: "AFNIC_PM_LEGAL_STATUS",
|
|
2920
|
+
AFNIC_PM_SIREN: "AFNIC_PM_SIREN",
|
|
2921
|
+
AFNIC_PM_VAT: "AFNIC_PM_VAT",
|
|
2922
|
+
AFNIC_PM_TRADEMARK: "AFNIC_PM_TRADEMARK",
|
|
2923
|
+
AFNIC_PM_ASSOC_WALDEC: "AFNIC_PM_ASSOC_WALDEC",
|
|
2924
|
+
AFNIC_PM_ASSOC_PUBL_DATE: "AFNIC_PM_ASSOC_PUBL_DATE",
|
|
2925
|
+
AFNIC_PM_ASSOC_PUBL_ANNOUNCE: "AFNIC_PM_ASSOC_PUBL_ANNOUNCE",
|
|
2926
|
+
AFNIC_PM_ASSOC_PUBL_PAGE: "AFNIC_PM_ASSOC_PUBL_PAGE",
|
|
2927
|
+
AFNIC_PM_ASSOC_DECL: "AFNIC_PM_ASSOC_DECL",
|
|
2928
|
+
AFNIC_PM_DUNS: "AFNIC_PM_DUNS",
|
|
2929
|
+
AFNIC_PM_LOCAL: "AFNIC_PM_LOCAL",
|
|
2930
|
+
AFNIC_ID_STATUS: "AFNIC_ID_STATUS",
|
|
2931
|
+
AFNIC_REACHABLE_MEDIA: "AFNIC_REACHABLE_MEDIA",
|
|
2932
|
+
AFNIC_REACHABLE_STATUS: "AFNIC_REACHABLE_STATUS",
|
|
2933
|
+
AFNIC_RESTRICTED_PUBLICATION: "AFNIC_RESTRICTED_PUBLICATION",
|
|
2915
2934
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
2916
2935
|
|
|
2917
2936
|
/**
|
|
@@ -2939,7 +2958,24 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
|
2939
2958
|
'at-ext-contact:type',
|
|
2940
2959
|
'DE_CONTACT_TYPE',
|
|
2941
2960
|
'dnsbe:type',
|
|
2942
|
-
'eurid:type'
|
|
2961
|
+
'eurid:type',
|
|
2962
|
+
'AFNIC_CONTACT_TYPE',
|
|
2963
|
+
'AFNIC_PP_FIRST_NAME',
|
|
2964
|
+
'AFNIC_PM_LEGAL_STATUS',
|
|
2965
|
+
'AFNIC_PM_SIREN',
|
|
2966
|
+
'AFNIC_PM_VAT',
|
|
2967
|
+
'AFNIC_PM_TRADEMARK',
|
|
2968
|
+
'AFNIC_PM_ASSOC_WALDEC',
|
|
2969
|
+
'AFNIC_PM_ASSOC_PUBL_DATE',
|
|
2970
|
+
'AFNIC_PM_ASSOC_PUBL_ANNOUNCE',
|
|
2971
|
+
'AFNIC_PM_ASSOC_PUBL_PAGE',
|
|
2972
|
+
'AFNIC_PM_ASSOC_DECL',
|
|
2973
|
+
'AFNIC_PM_DUNS',
|
|
2974
|
+
'AFNIC_PM_LOCAL',
|
|
2975
|
+
'AFNIC_ID_STATUS',
|
|
2976
|
+
'AFNIC_REACHABLE_MEDIA',
|
|
2977
|
+
'AFNIC_REACHABLE_STATUS',
|
|
2978
|
+
'AFNIC_RESTRICTED_PUBLICATION'
|
|
2943
2979
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
2944
2980
|
|
|
2945
2981
|
/**
|
|
@@ -3052,7 +3088,6 @@ export const RELATION_VALUES = [
|
|
|
3052
3088
|
export const RENEWAL_MODE = {
|
|
3053
3089
|
RENEW: "renew",
|
|
3054
3090
|
EXPIRE: "expire",
|
|
3055
|
-
DELETE: "delete",
|
|
3056
3091
|
} as const satisfies Record<string, RenewalMode>;
|
|
3057
3092
|
|
|
3058
3093
|
/**
|
|
@@ -3078,8 +3113,7 @@ export const RENEWAL_MODE = {
|
|
|
3078
3113
|
*/
|
|
3079
3114
|
export const RENEWAL_MODE_VALUES = [
|
|
3080
3115
|
'renew',
|
|
3081
|
-
'expire'
|
|
3082
|
-
'delete'
|
|
3116
|
+
'expire'
|
|
3083
3117
|
] as const satisfies [string, ...string[]] | RenewalMode[];
|
|
3084
3118
|
|
|
3085
3119
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -29,6 +29,7 @@ components:
|
|
|
29
29
|
- string
|
|
30
30
|
- boolean
|
|
31
31
|
- datetime
|
|
32
|
+
- integer
|
|
32
33
|
title: AttributeType
|
|
33
34
|
type: string
|
|
34
35
|
BillingMetadata:
|
|
@@ -4858,6 +4859,23 @@ components:
|
|
|
4858
4859
|
- DE_CONTACT_TYPE
|
|
4859
4860
|
- dnsbe:type
|
|
4860
4861
|
- eurid:type
|
|
4862
|
+
- AFNIC_CONTACT_TYPE
|
|
4863
|
+
- AFNIC_PP_FIRST_NAME
|
|
4864
|
+
- AFNIC_PM_LEGAL_STATUS
|
|
4865
|
+
- AFNIC_PM_SIREN
|
|
4866
|
+
- AFNIC_PM_VAT
|
|
4867
|
+
- AFNIC_PM_TRADEMARK
|
|
4868
|
+
- AFNIC_PM_ASSOC_WALDEC
|
|
4869
|
+
- AFNIC_PM_ASSOC_PUBL_DATE
|
|
4870
|
+
- AFNIC_PM_ASSOC_PUBL_ANNOUNCE
|
|
4871
|
+
- AFNIC_PM_ASSOC_PUBL_PAGE
|
|
4872
|
+
- AFNIC_PM_ASSOC_DECL
|
|
4873
|
+
- AFNIC_PM_DUNS
|
|
4874
|
+
- AFNIC_PM_LOCAL
|
|
4875
|
+
- AFNIC_ID_STATUS
|
|
4876
|
+
- AFNIC_REACHABLE_MEDIA
|
|
4877
|
+
- AFNIC_REACHABLE_STATUS
|
|
4878
|
+
- AFNIC_RESTRICTED_PUBLICATION
|
|
4861
4879
|
title: RegistryHandleAttributeType
|
|
4862
4880
|
type: string
|
|
4863
4881
|
RegistryLockBase:
|
|
@@ -4939,7 +4957,6 @@ components:
|
|
|
4939
4957
|
enum:
|
|
4940
4958
|
- renew
|
|
4941
4959
|
- expire
|
|
4942
|
-
- delete
|
|
4943
4960
|
title: RenewalMode
|
|
4944
4961
|
type: string
|
|
4945
4962
|
RequestHistory:
|
|
@@ -6145,7 +6162,7 @@ info:
|
|
|
6145
6162
|
'
|
|
6146
6163
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6147
6164
|
title: OpusDNS API
|
|
6148
|
-
version: 2025-12-
|
|
6165
|
+
version: 2025-12-30-174755
|
|
6149
6166
|
x-logo:
|
|
6150
6167
|
altText: OpusDNS API Reference
|
|
6151
6168
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -1590,7 +1590,7 @@ export interface components {
|
|
|
1590
1590
|
* AttributeType
|
|
1591
1591
|
* @enum {string}
|
|
1592
1592
|
*/
|
|
1593
|
-
AttributeType: "enum" | "string" | "boolean" | "datetime";
|
|
1593
|
+
AttributeType: "enum" | "string" | "boolean" | "datetime" | "integer";
|
|
1594
1594
|
/** BillingMetadata */
|
|
1595
1595
|
BillingMetadata: {
|
|
1596
1596
|
/**
|
|
@@ -4803,7 +4803,7 @@ export interface components {
|
|
|
4803
4803
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
4804
4804
|
* @enum {string}
|
|
4805
4805
|
*/
|
|
4806
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type";
|
|
4806
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "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";
|
|
4807
4807
|
/** RegistryLockBase */
|
|
4808
4808
|
RegistryLockBase: {
|
|
4809
4809
|
/**
|
|
@@ -4850,7 +4850,7 @@ export interface components {
|
|
|
4850
4850
|
* RenewalMode
|
|
4851
4851
|
* @enum {string}
|
|
4852
4852
|
*/
|
|
4853
|
-
RenewalMode: "renew" | "expire"
|
|
4853
|
+
RenewalMode: "renew" | "expire";
|
|
4854
4854
|
/** RequestHistory */
|
|
4855
4855
|
RequestHistory: {
|
|
4856
4856
|
/**
|