@opusdns/api 0.219.0 → 0.221.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/keys.ts +0 -1
- package/src/openapi.yaml +8 -5
- package/src/schema.d.ts +1 -2
package/package.json
CHANGED
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
|
@@ -6649,11 +6649,13 @@ components:
|
|
|
6649
6649
|
title: Locale
|
|
6650
6650
|
type: string
|
|
6651
6651
|
password:
|
|
6652
|
+
anyOf:
|
|
6653
|
+
- examples:
|
|
6654
|
+
- correcthorsebatterystaple
|
|
6655
|
+
type: string
|
|
6656
|
+
- type: 'null'
|
|
6652
6657
|
description: Plaintext password for hashing during creation
|
|
6653
|
-
examples:
|
|
6654
|
-
- correcthorsebatterystaple
|
|
6655
6658
|
title: Password
|
|
6656
|
-
type: string
|
|
6657
6659
|
phone:
|
|
6658
6660
|
anyOf:
|
|
6659
6661
|
- format: phone
|
|
@@ -6684,7 +6686,6 @@ components:
|
|
|
6684
6686
|
- last_name
|
|
6685
6687
|
- email
|
|
6686
6688
|
- locale
|
|
6687
|
-
- password
|
|
6688
6689
|
title: UserCreate
|
|
6689
6690
|
type: object
|
|
6690
6691
|
UserPublic:
|
|
@@ -7312,7 +7313,7 @@ info:
|
|
|
7312
7313
|
'
|
|
7313
7314
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
7314
7315
|
title: OpusDNS API
|
|
7315
|
-
version: 2026-03-
|
|
7316
|
+
version: 2026-03-13-185605
|
|
7316
7317
|
x-logo:
|
|
7317
7318
|
altText: OpusDNS API Reference
|
|
7318
7319
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -7994,6 +7995,7 @@ paths:
|
|
|
7994
7995
|
'
|
|
7995
7996
|
items:
|
|
7996
7997
|
type: string
|
|
7998
|
+
maxItems: 1000
|
|
7997
7999
|
title: Domains
|
|
7998
8000
|
type: array
|
|
7999
8001
|
responses:
|
|
@@ -8067,6 +8069,7 @@ paths:
|
|
|
8067
8069
|
'
|
|
8068
8070
|
items:
|
|
8069
8071
|
type: string
|
|
8072
|
+
maxItems: 1000
|
|
8070
8073
|
title: Domains
|
|
8071
8074
|
type: array
|
|
8072
8075
|
responses:
|
package/src/schema.d.ts
CHANGED
|
@@ -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
|