@opusdns/api 0.148.0 → 0.149.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": "^0.19.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "0.148.0",
6
+ "version": "0.149.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
package/src/openapi.yaml CHANGED
@@ -6511,7 +6511,7 @@ info:
6511
6511
  '
6512
6512
  summary: OpusDNS - your gateway to a seamless domain management experience.
6513
6513
  title: OpusDNS API
6514
- version: 2026-01-09-124349
6514
+ version: 2026-01-09-125102
6515
6515
  x-logo:
6516
6516
  altText: OpusDNS API Reference
6517
6517
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -6535,6 +6535,17 @@ paths:
6535
6535
  title: Email Forward Alias Id
6536
6536
  type: string
6537
6537
  x-typeid-prefix: email_forward_alias
6538
+ - in: query
6539
+ name: email_forward_id
6540
+ required: true
6541
+ schema:
6542
+ examples:
6543
+ - email_forward_01h45ytscbebyvny4gc8cr8ma2
6544
+ format: typeid
6545
+ pattern: ^email_forward_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6546
+ title: Email Forward Id
6547
+ type: string
6548
+ x-typeid-prefix: email_forward
6538
6549
  - in: query
6539
6550
  name: sort_by
6540
6551
  required: false
package/src/schema.d.ts CHANGED
@@ -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;