@opusdns/api 0.218.0 → 0.220.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 +4 -0
- package/src/helpers/keys.ts +0 -1
- package/src/openapi.yaml +8 -5
- package/src/schema.d.ts +2 -3
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -2019,6 +2019,8 @@ export const EVENT_TYPE = {
|
|
|
2019
2019
|
DELETION: "DELETION",
|
|
2020
2020
|
INBOUND_TRANSFER: "INBOUND_TRANSFER",
|
|
2021
2021
|
OUTBOUND_TRANSFER: "OUTBOUND_TRANSFER",
|
|
2022
|
+
TRANSIT: "TRANSIT",
|
|
2023
|
+
WITHDRAW: "WITHDRAW",
|
|
2022
2024
|
VERIFICATION: "VERIFICATION",
|
|
2023
2025
|
} as const satisfies Record<string, EventType>;
|
|
2024
2026
|
|
|
@@ -2050,6 +2052,8 @@ export const EVENT_TYPE_VALUES = [
|
|
|
2050
2052
|
'DELETION',
|
|
2051
2053
|
'INBOUND_TRANSFER',
|
|
2052
2054
|
'OUTBOUND_TRANSFER',
|
|
2055
|
+
'TRANSIT',
|
|
2056
|
+
'WITHDRAW',
|
|
2053
2057
|
'VERIFICATION'
|
|
2054
2058
|
] as const satisfies [string, ...string[]] | EventType[];
|
|
2055
2059
|
|
package/src/helpers/keys.ts
CHANGED
|
@@ -25639,7 +25639,6 @@ export const KEY_USER_CREATE_LOCALE: keyof UserCreate = 'locale';
|
|
|
25639
25639
|
*
|
|
25640
25640
|
* Plaintext password for hashing during creation
|
|
25641
25641
|
*
|
|
25642
|
-
* @type {string}
|
|
25643
25642
|
*
|
|
25644
25643
|
*
|
|
25645
25644
|
* @remarks
|
package/src/openapi.yaml
CHANGED
|
@@ -3582,6 +3582,8 @@ components:
|
|
|
3582
3582
|
- DELETION
|
|
3583
3583
|
- INBOUND_TRANSFER
|
|
3584
3584
|
- OUTBOUND_TRANSFER
|
|
3585
|
+
- TRANSIT
|
|
3586
|
+
- WITHDRAW
|
|
3585
3587
|
- VERIFICATION
|
|
3586
3588
|
title: EventType
|
|
3587
3589
|
type: string
|
|
@@ -6647,11 +6649,13 @@ components:
|
|
|
6647
6649
|
title: Locale
|
|
6648
6650
|
type: string
|
|
6649
6651
|
password:
|
|
6652
|
+
anyOf:
|
|
6653
|
+
- examples:
|
|
6654
|
+
- correcthorsebatterystaple
|
|
6655
|
+
type: string
|
|
6656
|
+
- type: 'null'
|
|
6650
6657
|
description: Plaintext password for hashing during creation
|
|
6651
|
-
examples:
|
|
6652
|
-
- correcthorsebatterystaple
|
|
6653
6658
|
title: Password
|
|
6654
|
-
type: string
|
|
6655
6659
|
phone:
|
|
6656
6660
|
anyOf:
|
|
6657
6661
|
- format: phone
|
|
@@ -6682,7 +6686,6 @@ components:
|
|
|
6682
6686
|
- last_name
|
|
6683
6687
|
- email
|
|
6684
6688
|
- locale
|
|
6685
|
-
- password
|
|
6686
6689
|
title: UserCreate
|
|
6687
6690
|
type: object
|
|
6688
6691
|
UserPublic:
|
|
@@ -7310,7 +7313,7 @@ info:
|
|
|
7310
7313
|
'
|
|
7311
7314
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
7312
7315
|
title: OpusDNS API
|
|
7313
|
-
version: 2026-03-
|
|
7316
|
+
version: 2026-03-13-142632
|
|
7314
7317
|
x-logo:
|
|
7315
7318
|
altText: OpusDNS API Reference
|
|
7316
7319
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4339,7 +4339,7 @@ export interface components {
|
|
|
4339
4339
|
* EventType
|
|
4340
4340
|
* @enum {string}
|
|
4341
4341
|
*/
|
|
4342
|
-
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "VERIFICATION";
|
|
4342
|
+
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION";
|
|
4343
4343
|
/**
|
|
4344
4344
|
* ExecutingEntity
|
|
4345
4345
|
* @enum {string}
|
|
@@ -6333,9 +6333,8 @@ export interface components {
|
|
|
6333
6333
|
/**
|
|
6334
6334
|
* Password
|
|
6335
6335
|
* @description Plaintext password for hashing during creation
|
|
6336
|
-
* @example correcthorsebatterystaple
|
|
6337
6336
|
*/
|
|
6338
|
-
password
|
|
6337
|
+
password?: string | null;
|
|
6339
6338
|
/**
|
|
6340
6339
|
* Phone
|
|
6341
6340
|
* @description The user's phone number
|