@opusdns/api 0.148.0 → 0.150.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 +13 -1
- package/src/schema.d.ts +3 -2
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1799,6 +1799,7 @@ export const EVENT_TYPE = {
|
|
|
1799
1799
|
DELETION: "DELETION",
|
|
1800
1800
|
INBOUND_TRANSFER: "INBOUND_TRANSFER",
|
|
1801
1801
|
OUTBOUND_TRANSFER: "OUTBOUND_TRANSFER",
|
|
1802
|
+
VERIFICATION: "VERIFICATION",
|
|
1802
1803
|
} as const satisfies Record<string, EventType>;
|
|
1803
1804
|
|
|
1804
1805
|
/**
|
|
@@ -1828,7 +1829,8 @@ export const EVENT_TYPE_VALUES = [
|
|
|
1828
1829
|
'MODIFICATION',
|
|
1829
1830
|
'DELETION',
|
|
1830
1831
|
'INBOUND_TRANSFER',
|
|
1831
|
-
'OUTBOUND_TRANSFER'
|
|
1832
|
+
'OUTBOUND_TRANSFER',
|
|
1833
|
+
'VERIFICATION'
|
|
1832
1834
|
] as const satisfies [string, ...string[]] | EventType[];
|
|
1833
1835
|
|
|
1834
1836
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -3131,6 +3131,7 @@ components:
|
|
|
3131
3131
|
- DELETION
|
|
3132
3132
|
- INBOUND_TRANSFER
|
|
3133
3133
|
- OUTBOUND_TRANSFER
|
|
3134
|
+
- VERIFICATION
|
|
3134
3135
|
title: EventType
|
|
3135
3136
|
type: string
|
|
3136
3137
|
GeneralAvailabilityBase:
|
|
@@ -6511,7 +6512,7 @@ info:
|
|
|
6511
6512
|
'
|
|
6512
6513
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6513
6514
|
title: OpusDNS API
|
|
6514
|
-
version: 2026-01-09-
|
|
6515
|
+
version: 2026-01-09-181206
|
|
6515
6516
|
x-logo:
|
|
6516
6517
|
altText: OpusDNS API Reference
|
|
6517
6518
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -6535,6 +6536,17 @@ paths:
|
|
|
6535
6536
|
title: Email Forward Alias Id
|
|
6536
6537
|
type: string
|
|
6537
6538
|
x-typeid-prefix: email_forward_alias
|
|
6539
|
+
- in: query
|
|
6540
|
+
name: email_forward_id
|
|
6541
|
+
required: true
|
|
6542
|
+
schema:
|
|
6543
|
+
examples:
|
|
6544
|
+
- email_forward_01h45ytscbebyvny4gc8cr8ma2
|
|
6545
|
+
format: typeid
|
|
6546
|
+
pattern: ^email_forward_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
6547
|
+
title: Email Forward Id
|
|
6548
|
+
type: string
|
|
6549
|
+
x-typeid-prefix: email_forward
|
|
6538
6550
|
- in: query
|
|
6539
6551
|
name: sort_by
|
|
6540
6552
|
required: false
|
package/src/schema.d.ts
CHANGED
|
@@ -3833,7 +3833,7 @@ export interface components {
|
|
|
3833
3833
|
* EventType
|
|
3834
3834
|
* @enum {string}
|
|
3835
3835
|
*/
|
|
3836
|
-
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER";
|
|
3836
|
+
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "VERIFICATION";
|
|
3837
3837
|
/** GeneralAvailabilityBase */
|
|
3838
3838
|
GeneralAvailabilityBase: {
|
|
3839
3839
|
/**
|
|
@@ -6015,7 +6015,8 @@ export type $defs = Record<string, never>;
|
|
|
6015
6015
|
export interface operations {
|
|
6016
6016
|
get_email_forward_logs_by_alias_v1_archive_email_forward_logs_aliases__email_forward_alias_id__get: {
|
|
6017
6017
|
parameters: {
|
|
6018
|
-
query
|
|
6018
|
+
query: {
|
|
6019
|
+
email_forward_id: TypeId<"email_forward">;
|
|
6019
6020
|
sort_by?: components["schemas"]["EmailForwardLogSortField"];
|
|
6020
6021
|
sort_order?: components["schemas"]["SortOrder"];
|
|
6021
6022
|
page_size?: number;
|