@opusdns/api 0.182.0 → 0.183.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 +2 -0
- package/src/openapi.yaml +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1473,6 +1473,7 @@ export const EMAIL_FORWARD_LOG_SORT_FIELD_VALUES = [
|
|
|
1473
1473
|
* @see {@link EmailForwardLogStatus} - The TypeScript type definition
|
|
1474
1474
|
*/
|
|
1475
1475
|
export const EMAIL_FORWARD_LOG_STATUS = {
|
|
1476
|
+
UNKNOWN: "UNKNOWN",
|
|
1476
1477
|
QUEUED: "QUEUED",
|
|
1477
1478
|
DELIVERED: "DELIVERED",
|
|
1478
1479
|
REFUSED: "REFUSED",
|
|
@@ -1502,6 +1503,7 @@ export const EMAIL_FORWARD_LOG_STATUS = {
|
|
|
1502
1503
|
* @see {@link EMAIL_FORWARD_LOG_STATUS} - The object form of this enum
|
|
1503
1504
|
*/
|
|
1504
1505
|
export const EMAIL_FORWARD_LOG_STATUS_VALUES = [
|
|
1506
|
+
'UNKNOWN',
|
|
1505
1507
|
'QUEUED',
|
|
1506
1508
|
'DELIVERED',
|
|
1507
1509
|
'REFUSED',
|
package/src/openapi.yaml
CHANGED
|
@@ -2951,6 +2951,7 @@ components:
|
|
|
2951
2951
|
type: string
|
|
2952
2952
|
EmailForwardLogStatus:
|
|
2953
2953
|
enum:
|
|
2954
|
+
- UNKNOWN
|
|
2954
2955
|
- QUEUED
|
|
2955
2956
|
- DELIVERED
|
|
2956
2957
|
- REFUSED
|
|
@@ -6977,7 +6978,7 @@ info:
|
|
|
6977
6978
|
'
|
|
6978
6979
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6979
6980
|
title: OpusDNS API
|
|
6980
|
-
version: 2026-
|
|
6981
|
+
version: 2026-02-04-121336
|
|
6981
6982
|
x-logo:
|
|
6982
6983
|
altText: OpusDNS API Reference
|
|
6983
6984
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3824,7 +3824,7 @@ export interface components {
|
|
|
3824
3824
|
* EmailForwardLogStatus
|
|
3825
3825
|
* @enum {string}
|
|
3826
3826
|
*/
|
|
3827
|
-
EmailForwardLogStatus: "QUEUED" | "DELIVERED" | "REFUSED" | "SOFT-BOUNCE" | "HARD-BOUNCE";
|
|
3827
|
+
EmailForwardLogStatus: "UNKNOWN" | "QUEUED" | "DELIVERED" | "REFUSED" | "SOFT-BOUNCE" | "HARD-BOUNCE";
|
|
3828
3828
|
/** EmailForwardMetrics */
|
|
3829
3829
|
EmailForwardMetrics: {
|
|
3830
3830
|
/**
|