@opusdns/api 0.224.0 → 0.225.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 +3 -1
- package/src/openapi.yaml +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -383,6 +383,7 @@ export const COMPLIANCE_STATUS = {
|
|
|
383
383
|
PENDING: "pending",
|
|
384
384
|
APPROVED: "approved",
|
|
385
385
|
DISAPPROVED: "disapproved",
|
|
386
|
+
EXPIRED: "expired",
|
|
386
387
|
} as const satisfies Record<string, ComplianceStatus>;
|
|
387
388
|
|
|
388
389
|
/**
|
|
@@ -410,7 +411,8 @@ export const COMPLIANCE_STATUS_VALUES = [
|
|
|
410
411
|
'preparing',
|
|
411
412
|
'pending',
|
|
412
413
|
'approved',
|
|
413
|
-
'disapproved'
|
|
414
|
+
'disapproved',
|
|
415
|
+
'expired'
|
|
414
416
|
] as const satisfies [string, ...string[]] | ComplianceStatus[];
|
|
415
417
|
|
|
416
418
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -251,6 +251,7 @@ components:
|
|
|
251
251
|
- pending
|
|
252
252
|
- approved
|
|
253
253
|
- disapproved
|
|
254
|
+
- expired
|
|
254
255
|
title: ComplianceStatus
|
|
255
256
|
type: string
|
|
256
257
|
ConditionOperator:
|
|
@@ -7338,7 +7339,7 @@ info:
|
|
|
7338
7339
|
'
|
|
7339
7340
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
7340
7341
|
title: OpusDNS API
|
|
7341
|
-
version: 2026-03-19-
|
|
7342
|
+
version: 2026-03-19-143831
|
|
7342
7343
|
x-logo:
|
|
7343
7344
|
altText: OpusDNS API Reference
|
|
7344
7345
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -2096,7 +2096,7 @@ export interface components {
|
|
|
2096
2096
|
* ComplianceStatus
|
|
2097
2097
|
* @enum {string}
|
|
2098
2098
|
*/
|
|
2099
|
-
ComplianceStatus: "preparing" | "pending" | "approved" | "disapproved";
|
|
2099
|
+
ComplianceStatus: "preparing" | "pending" | "approved" | "disapproved" | "expired";
|
|
2100
2100
|
/**
|
|
2101
2101
|
* ConditionOperator
|
|
2102
2102
|
* @enum {string}
|