@opusdns/api 0.99.0 → 0.100.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 +6 -2
- package/src/openapi.yaml +6 -1
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1148,6 +1148,7 @@ export const DOMAIN_FORWARD_SORT_FIELD = {
|
|
|
1148
1148
|
HOSTNAME: "hostname",
|
|
1149
1149
|
ENABLED: "enabled",
|
|
1150
1150
|
CREATED_ON: "created_on",
|
|
1151
|
+
UPDATED_ON: "updated_on",
|
|
1151
1152
|
} as const satisfies Record<string, DomainForwardSortField>;
|
|
1152
1153
|
|
|
1153
1154
|
/**
|
|
@@ -1174,7 +1175,8 @@ export const DOMAIN_FORWARD_SORT_FIELD = {
|
|
|
1174
1175
|
export const DOMAIN_FORWARD_SORT_FIELD_VALUES = [
|
|
1175
1176
|
'hostname',
|
|
1176
1177
|
'enabled',
|
|
1177
|
-
'created_on'
|
|
1178
|
+
'created_on',
|
|
1179
|
+
'updated_on'
|
|
1178
1180
|
] as const satisfies [string, ...string[]] | DomainForwardSortField[];
|
|
1179
1181
|
|
|
1180
1182
|
/**
|
|
@@ -1199,6 +1201,7 @@ export const DOMAIN_FORWARD_SORT_FIELD_VALUES = [
|
|
|
1199
1201
|
export const DOMAIN_FORWARD_ZONE_SORT_FIELD = {
|
|
1200
1202
|
NAME: "name",
|
|
1201
1203
|
CREATED_ON: "created_on",
|
|
1204
|
+
UPDATED_ON: "updated_on",
|
|
1202
1205
|
} as const satisfies Record<string, DomainForwardZoneSortField>;
|
|
1203
1206
|
|
|
1204
1207
|
/**
|
|
@@ -1224,7 +1227,8 @@ export const DOMAIN_FORWARD_ZONE_SORT_FIELD = {
|
|
|
1224
1227
|
*/
|
|
1225
1228
|
export const DOMAIN_FORWARD_ZONE_SORT_FIELD_VALUES = [
|
|
1226
1229
|
'name',
|
|
1227
|
-
'created_on'
|
|
1230
|
+
'created_on',
|
|
1231
|
+
'updated_on'
|
|
1228
1232
|
] as const satisfies [string, ...string[]] | DomainForwardZoneSortField[];
|
|
1229
1233
|
|
|
1230
1234
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -1708,6 +1708,7 @@ components:
|
|
|
1708
1708
|
- hostname
|
|
1709
1709
|
- enabled
|
|
1710
1710
|
- created_on
|
|
1711
|
+
- updated_on
|
|
1711
1712
|
title: DomainForwardSortField
|
|
1712
1713
|
type: string
|
|
1713
1714
|
DomainForwardZone:
|
|
@@ -1738,6 +1739,7 @@ components:
|
|
|
1738
1739
|
enum:
|
|
1739
1740
|
- name
|
|
1740
1741
|
- created_on
|
|
1742
|
+
- updated_on
|
|
1741
1743
|
title: DomainForwardZoneSortField
|
|
1742
1744
|
type: string
|
|
1743
1745
|
DomainLifecycleBase:
|
|
@@ -5331,7 +5333,7 @@ info:
|
|
|
5331
5333
|
'
|
|
5332
5334
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5333
5335
|
title: OpusDNS API
|
|
5334
|
-
version: 2025-11-
|
|
5336
|
+
version: 2025-11-25-093749
|
|
5335
5337
|
x-logo:
|
|
5336
5338
|
altText: OpusDNS API Reference
|
|
5337
5339
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -11187,6 +11189,9 @@ tags:
|
|
|
11187
11189
|
'
|
|
11188
11190
|
name: authentication
|
|
11189
11191
|
x-displayName: Authentication
|
|
11192
|
+
- description: "Endpoints for fetching historical data for objects and requests \n"
|
|
11193
|
+
name: archive
|
|
11194
|
+
x-displayName: Archive
|
|
11190
11195
|
- description: 'Endpoints for checking domain availability.
|
|
11191
11196
|
|
|
11192
11197
|
'
|
package/src/schema.d.ts
CHANGED
|
@@ -2458,7 +2458,7 @@ export interface components {
|
|
|
2458
2458
|
* DomainForwardSortField
|
|
2459
2459
|
* @enum {string}
|
|
2460
2460
|
*/
|
|
2461
|
-
DomainForwardSortField: "hostname" | "enabled" | "created_on";
|
|
2461
|
+
DomainForwardSortField: "hostname" | "enabled" | "created_on" | "updated_on";
|
|
2462
2462
|
/** DomainForwardZone */
|
|
2463
2463
|
DomainForwardZone: {
|
|
2464
2464
|
/** Domain Forwards */
|
|
@@ -2476,7 +2476,7 @@ export interface components {
|
|
|
2476
2476
|
* DomainForwardZoneSortField
|
|
2477
2477
|
* @enum {string}
|
|
2478
2478
|
*/
|
|
2479
|
-
DomainForwardZoneSortField: "name" | "created_on";
|
|
2479
|
+
DomainForwardZoneSortField: "name" | "created_on" | "updated_on";
|
|
2480
2480
|
/** DomainLifecycleBase */
|
|
2481
2481
|
DomainLifecycleBase: {
|
|
2482
2482
|
/**
|