@opusdns/api 1.71.0 → 1.73.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": "^1.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.71.0",
6
+ "version": "1.73.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -733,6 +733,7 @@ export const DOMAIN_SORT_FIELD = {
733
733
  UPDATED_ON: "updated_on",
734
734
  EXPIRES_ON: "expires_on",
735
735
  REGISTERED_ON: "registered_on",
736
+ TRANSFERRED_ON: "transferred_on",
736
737
  } as const satisfies Record<string, DomainSortField>;
737
738
 
738
739
  export const DOMAIN_SORT_FIELD_VALUES = [
@@ -741,6 +742,7 @@ export const DOMAIN_SORT_FIELD_VALUES = [
741
742
  'updated_on',
742
743
  'expires_on',
743
744
  'registered_on',
745
+ 'transferred_on',
744
746
  ] as const satisfies ReadonlyArray<DomainSortField>;
745
747
 
746
748
  export const DOMAIN_STATUS = {
@@ -2438,6 +2438,7 @@ export const KEY_DOMAIN_STATUS_TAGS = 'status_tags' satisfies keyof Domain;
2438
2438
  export const KEY_DOMAIN_TAGS = 'tags' satisfies keyof Domain;
2439
2439
  export const KEY_DOMAIN_TLD = 'tld' satisfies keyof Domain;
2440
2440
  export const KEY_DOMAIN_TRANSFER_LOCK = 'transfer_lock' satisfies keyof Domain;
2441
+ export const KEY_DOMAIN_TRANSFERRED_ON = 'transferred_on' satisfies keyof Domain;
2441
2442
  export const KEY_DOMAIN_UPDATED_ON = 'updated_on' satisfies keyof Domain;
2442
2443
  export const KEY_DOMAIN_VERIFICATION_REQUIRED = 'verification_required' satisfies keyof Domain;
2443
2444
 
@@ -2466,6 +2467,7 @@ export const KEYS_DOMAIN = [
2466
2467
  KEY_DOMAIN_TAGS,
2467
2468
  KEY_DOMAIN_TLD,
2468
2469
  KEY_DOMAIN_TRANSFER_LOCK,
2470
+ KEY_DOMAIN_TRANSFERRED_ON,
2469
2471
  KEY_DOMAIN_UPDATED_ON,
2470
2472
  KEY_DOMAIN_VERIFICATION_REQUIRED,
2471
2473
  ] as const satisfies (keyof Domain)[];
package/src/openapi.yaml CHANGED
@@ -5301,6 +5301,13 @@ components:
5301
5301
  description: Whether the domain is locked for transfer
5302
5302
  title: Transfer Lock
5303
5303
  type: boolean
5304
+ transferred_on:
5305
+ anyOf:
5306
+ - format: date-time
5307
+ type: string
5308
+ - type: 'null'
5309
+ description: When the domain was last transferred to us
5310
+ title: Transferred On
5304
5311
  updated_on:
5305
5312
  description: The date/time the entry was last updated on
5306
5313
  format: date-time
@@ -5444,6 +5451,7 @@ components:
5444
5451
  - updated_on
5445
5452
  - expires_on
5446
5453
  - registered_on
5454
+ - transferred_on
5447
5455
  title: DomainSortField
5448
5456
  type: string
5449
5457
  DomainStatus:
@@ -14248,7 +14256,7 @@ info:
14248
14256
  \n\n"
14249
14257
  summary: OpusDNS - your gateway to a seamless domain management experience.
14250
14258
  title: OpusDNS API
14251
- version: 2026-07-21-132323
14259
+ version: 2026-07-21-195001
14252
14260
  x-logo:
14253
14261
  altText: OpusDNS API Reference
14254
14262
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -22087,6 +22095,24 @@ paths:
22087
22095
  type: string
22088
22096
  - type: 'null'
22089
22097
  title: Registered Before
22098
+ - in: query
22099
+ name: transferred_after
22100
+ required: false
22101
+ schema:
22102
+ anyOf:
22103
+ - format: date-time
22104
+ type: string
22105
+ - type: 'null'
22106
+ title: Transferred After
22107
+ - in: query
22108
+ name: transferred_before
22109
+ required: false
22110
+ schema:
22111
+ anyOf:
22112
+ - format: date-time
22113
+ type: string
22114
+ - type: 'null'
22115
+ title: Transferred Before
22090
22116
  - description: Filter domains by registry status. Can be specified multiple
22091
22117
  times (union of all provided values).
22092
22118
  in: query
package/src/schema.d.ts CHANGED
@@ -6321,6 +6321,11 @@ export interface components {
6321
6321
  * @default false
6322
6322
  */
6323
6323
  transfer_lock: boolean;
6324
+ /**
6325
+ * Transferred On
6326
+ * @description When the domain was last transferred to us
6327
+ */
6328
+ transferred_on?: Date | null;
6324
6329
  /**
6325
6330
  * Updated On
6326
6331
  * Format: date-time
@@ -6405,7 +6410,7 @@ export interface components {
6405
6410
  * DomainSortField
6406
6411
  * @enum {string}
6407
6412
  */
6408
- DomainSortField: "name" | "created_on" | "updated_on" | "expires_on" | "registered_on";
6413
+ DomainSortField: "name" | "created_on" | "updated_on" | "expires_on" | "registered_on" | "transferred_on";
6409
6414
  /**
6410
6415
  * DomainStatus
6411
6416
  * @enum {string}
@@ -18226,6 +18231,8 @@ export interface operations {
18226
18231
  expires_in_90_days?: boolean | null;
18227
18232
  registered_after?: Date | null;
18228
18233
  registered_before?: Date | null;
18234
+ transferred_after?: Date | null;
18235
+ transferred_before?: Date | null;
18229
18236
  /** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
18230
18237
  registry_statuses?: string[] | null;
18231
18238
  /** @description Include additional data in the response. Can be specified multiple times. */