@opusdns/api 0.254.0 → 0.255.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^0.19.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "0.254.0",
6
+ "version": "0.255.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -100,6 +100,7 @@ export const ATTRIBUTE_TYPE = {
100
100
  BOOLEAN: "boolean",
101
101
  DATETIME: "datetime",
102
102
  INTEGER: "integer",
103
+ COUNTRY_CODE: "country_code",
103
104
  } as const satisfies Record<string, AttributeType>;
104
105
 
105
106
  /**
@@ -128,7 +129,8 @@ export const ATTRIBUTE_TYPE_VALUES = [
128
129
  'string',
129
130
  'boolean',
130
131
  'datetime',
131
- 'integer'
132
+ 'integer',
133
+ 'country_code'
132
134
  ] as const satisfies [string, ...string[]] | AttributeType[];
133
135
 
134
136
  /**
@@ -3837,6 +3839,9 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
3837
3839
  CIRA_CPR: "CIRA_CPR",
3838
3840
  SIDN_LEGAL_FORM: "SIDN_LEGAL_FORM",
3839
3841
  SIDN_LEGAL_REG_NO: "SIDN_LEGAL_REG_NO",
3842
+ US_NEXUS_CATEGORY: "US_NEXUS_CATEGORY",
3843
+ US_NEXUS_COUNTRY_CODE: "US_NEXUS_COUNTRY_CODE",
3844
+ US_APP_PURPOSE: "US_APP_PURPOSE",
3840
3845
  } as const satisfies Record<string, RegistryHandleAttributeType>;
3841
3846
 
3842
3847
  /**
@@ -3892,7 +3897,10 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
3892
3897
  'NOMINET_TRAD_NAME',
3893
3898
  'CIRA_CPR',
3894
3899
  'SIDN_LEGAL_FORM',
3895
- 'SIDN_LEGAL_REG_NO'
3900
+ 'SIDN_LEGAL_REG_NO',
3901
+ 'US_NEXUS_CATEGORY',
3902
+ 'US_NEXUS_COUNTRY_CODE',
3903
+ 'US_APP_PURPOSE'
3896
3904
  ] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
3897
3905
 
3898
3906
  /**
package/src/openapi.yaml CHANGED
@@ -52,6 +52,7 @@ components:
52
52
  - boolean
53
53
  - datetime
54
54
  - integer
55
+ - country_code
55
56
  title: AttributeType
56
57
  type: string
57
58
  BatchSortField:
@@ -8320,6 +8321,9 @@ components:
8320
8321
  - CIRA_CPR
8321
8322
  - SIDN_LEGAL_FORM
8322
8323
  - SIDN_LEGAL_REG_NO
8324
+ - US_NEXUS_CATEGORY
8325
+ - US_NEXUS_COUNTRY_CODE
8326
+ - US_APP_PURPOSE
8323
8327
  title: RegistryHandleAttributeType
8324
8328
  type: string
8325
8329
  RegistryLockBase:
@@ -9853,7 +9857,7 @@ info:
9853
9857
  \n\n"
9854
9858
  summary: OpusDNS - your gateway to a seamless domain management experience.
9855
9859
  title: OpusDNS API
9856
- version: 2026-04-17-200229
9860
+ version: 2026-04-20-065304
9857
9861
  x-logo:
9858
9862
  altText: OpusDNS API Reference
9859
9863
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -2144,7 +2144,7 @@ export interface components {
2144
2144
  * AttributeType
2145
2145
  * @enum {string}
2146
2146
  */
2147
- AttributeType: "enum" | "string" | "boolean" | "datetime" | "integer";
2147
+ AttributeType: "enum" | "string" | "boolean" | "datetime" | "integer" | "country_code";
2148
2148
  /**
2149
2149
  * BatchSortField
2150
2150
  * @enum {string}
@@ -7708,7 +7708,7 @@ export interface components {
7708
7708
  * @description Registry handle attribute types for type-safe attribute key access.
7709
7709
  * @enum {string}
7710
7710
  */
7711
- 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" | "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";
7711
+ 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" | "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";
7712
7712
  /** RegistryLockBase */
7713
7713
  RegistryLockBase: {
7714
7714
  /**