@opusdns/api 0.187.0 → 0.188.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 +26 -0
- package/src/openapi.yaml +7 -1
- package/src/schema.d.ts +5 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -23431,6 +23431,31 @@ export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_MAX_LENGTH: keyof TransferPolic
|
|
|
23431
23431
|
* @see {@link KEYS_TRANSFER_POLICIES_BASE} - Array of all keys for this type
|
|
23432
23432
|
*/
|
|
23433
23433
|
export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_MIN_LENGTH: keyof TransferPoliciesBase = 'authinfo_min_length';
|
|
23434
|
+
/**
|
|
23435
|
+
* Authinfo Pattern
|
|
23436
|
+
*
|
|
23437
|
+
* Regex pattern for validating auth info
|
|
23438
|
+
*
|
|
23439
|
+
*
|
|
23440
|
+
*
|
|
23441
|
+
* @remarks
|
|
23442
|
+
* This key constant provides type-safe access to the `authinfo_pattern` property of TransferPoliciesBase objects.
|
|
23443
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23444
|
+
*
|
|
23445
|
+
* @example
|
|
23446
|
+
* ```typescript
|
|
23447
|
+
* // Direct property access
|
|
23448
|
+
* const value = transferpoliciesbase[KEY_TRANSFER_POLICIES_BASE_AUTHINFO_PATTERN];
|
|
23449
|
+
*
|
|
23450
|
+
* // Dynamic property access
|
|
23451
|
+
* const propertyName = KEY_TRANSFER_POLICIES_BASE_AUTHINFO_PATTERN;
|
|
23452
|
+
* const value = transferpoliciesbase[propertyName];
|
|
23453
|
+
* ```
|
|
23454
|
+
*
|
|
23455
|
+
* @see {@link TransferPoliciesBase} - The TypeScript type definition
|
|
23456
|
+
* @see {@link KEYS_TRANSFER_POLICIES_BASE} - Array of all keys for this type
|
|
23457
|
+
*/
|
|
23458
|
+
export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_PATTERN: keyof TransferPoliciesBase = 'authinfo_pattern';
|
|
23434
23459
|
/**
|
|
23435
23460
|
* Authinfo Required
|
|
23436
23461
|
*
|
|
@@ -23781,6 +23806,7 @@ export const KEY_TRANSFER_POLICIES_BASE_TRANSFER_TIME: keyof TransferPoliciesBas
|
|
|
23781
23806
|
export const KEYS_TRANSFER_POLICIES_BASE = [
|
|
23782
23807
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_MAX_LENGTH,
|
|
23783
23808
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_MIN_LENGTH,
|
|
23809
|
+
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_PATTERN,
|
|
23784
23810
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_REQUIRED,
|
|
23785
23811
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_TIME_LIMITED,
|
|
23786
23812
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_VALIDITY_PERIOD,
|
package/src/openapi.yaml
CHANGED
|
@@ -6045,6 +6045,12 @@ components:
|
|
|
6045
6045
|
- type: 'null'
|
|
6046
6046
|
description: Minimum length of the auth info
|
|
6047
6047
|
title: Authinfo Min Length
|
|
6048
|
+
authinfo_pattern:
|
|
6049
|
+
anyOf:
|
|
6050
|
+
- type: string
|
|
6051
|
+
- type: 'null'
|
|
6052
|
+
description: Regex pattern for validating auth info
|
|
6053
|
+
title: Authinfo Pattern
|
|
6048
6054
|
authinfo_required:
|
|
6049
6055
|
description: Whether an auth info is required for transfers
|
|
6050
6056
|
title: Authinfo Required
|
|
@@ -6984,7 +6990,7 @@ info:
|
|
|
6984
6990
|
'
|
|
6985
6991
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6986
6992
|
title: OpusDNS API
|
|
6987
|
-
version: 2026-02-12-
|
|
6993
|
+
version: 2026-02-12-143602
|
|
6988
6994
|
x-logo:
|
|
6989
6995
|
altText: OpusDNS API Reference
|
|
6990
6996
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -5828,6 +5828,11 @@ export interface components {
|
|
|
5828
5828
|
* @description Minimum length of the auth info
|
|
5829
5829
|
*/
|
|
5830
5830
|
authinfo_min_length?: number | null;
|
|
5831
|
+
/**
|
|
5832
|
+
* Authinfo Pattern
|
|
5833
|
+
* @description Regex pattern for validating auth info
|
|
5834
|
+
*/
|
|
5835
|
+
authinfo_pattern?: string | null;
|
|
5831
5836
|
/**
|
|
5832
5837
|
* Authinfo Required
|
|
5833
5838
|
* @description Whether an auth info is required for transfers
|