@opusdns/api 0.186.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 +79 -1
- package/src/schema.d.ts +14 -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-
|
|
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
|
|
@@ -10095,6 +10101,14 @@ paths:
|
|
|
10095
10101
|
- type: string
|
|
10096
10102
|
- type: 'null'
|
|
10097
10103
|
title: Hostname
|
|
10104
|
+
- in: query
|
|
10105
|
+
name: domain
|
|
10106
|
+
required: false
|
|
10107
|
+
schema:
|
|
10108
|
+
anyOf:
|
|
10109
|
+
- type: string
|
|
10110
|
+
- type: 'null'
|
|
10111
|
+
title: Domain
|
|
10098
10112
|
- description: 'Filter by protocol: http or https'
|
|
10099
10113
|
in: query
|
|
10100
10114
|
name: protocol
|
|
@@ -10144,6 +10158,14 @@ paths:
|
|
|
10144
10158
|
- type: string
|
|
10145
10159
|
- type: 'null'
|
|
10146
10160
|
title: Hostname
|
|
10161
|
+
- in: query
|
|
10162
|
+
name: domain
|
|
10163
|
+
required: false
|
|
10164
|
+
schema:
|
|
10165
|
+
anyOf:
|
|
10166
|
+
- type: string
|
|
10167
|
+
- type: 'null'
|
|
10168
|
+
title: Domain
|
|
10147
10169
|
- description: 'Filter by protocol: http or https'
|
|
10148
10170
|
in: query
|
|
10149
10171
|
name: protocol
|
|
@@ -10193,6 +10215,14 @@ paths:
|
|
|
10193
10215
|
- type: string
|
|
10194
10216
|
- type: 'null'
|
|
10195
10217
|
title: Hostname
|
|
10218
|
+
- in: query
|
|
10219
|
+
name: domain
|
|
10220
|
+
required: false
|
|
10221
|
+
schema:
|
|
10222
|
+
anyOf:
|
|
10223
|
+
- type: string
|
|
10224
|
+
- type: 'null'
|
|
10225
|
+
title: Domain
|
|
10196
10226
|
- description: 'Filter by protocol: http or https'
|
|
10197
10227
|
in: query
|
|
10198
10228
|
name: protocol
|
|
@@ -10242,6 +10272,14 @@ paths:
|
|
|
10242
10272
|
- type: string
|
|
10243
10273
|
- type: 'null'
|
|
10244
10274
|
title: Hostname
|
|
10275
|
+
- in: query
|
|
10276
|
+
name: domain
|
|
10277
|
+
required: false
|
|
10278
|
+
schema:
|
|
10279
|
+
anyOf:
|
|
10280
|
+
- type: string
|
|
10281
|
+
- type: 'null'
|
|
10282
|
+
title: Domain
|
|
10245
10283
|
- description: 'Filter by protocol: http or https'
|
|
10246
10284
|
in: query
|
|
10247
10285
|
name: protocol
|
|
@@ -10291,6 +10329,14 @@ paths:
|
|
|
10291
10329
|
- type: string
|
|
10292
10330
|
- type: 'null'
|
|
10293
10331
|
title: Hostname
|
|
10332
|
+
- in: query
|
|
10333
|
+
name: domain
|
|
10334
|
+
required: false
|
|
10335
|
+
schema:
|
|
10336
|
+
anyOf:
|
|
10337
|
+
- type: string
|
|
10338
|
+
- type: 'null'
|
|
10339
|
+
title: Domain
|
|
10294
10340
|
- description: 'Filter by protocol: http or https'
|
|
10295
10341
|
in: query
|
|
10296
10342
|
name: protocol
|
|
@@ -10340,6 +10386,14 @@ paths:
|
|
|
10340
10386
|
- type: string
|
|
10341
10387
|
- type: 'null'
|
|
10342
10388
|
title: Hostname
|
|
10389
|
+
- in: query
|
|
10390
|
+
name: domain
|
|
10391
|
+
required: false
|
|
10392
|
+
schema:
|
|
10393
|
+
anyOf:
|
|
10394
|
+
- type: string
|
|
10395
|
+
- type: 'null'
|
|
10396
|
+
title: Domain
|
|
10343
10397
|
- description: 'Filter by protocol: http or https'
|
|
10344
10398
|
in: query
|
|
10345
10399
|
name: protocol
|
|
@@ -10389,6 +10443,14 @@ paths:
|
|
|
10389
10443
|
- type: string
|
|
10390
10444
|
- type: 'null'
|
|
10391
10445
|
title: Hostname
|
|
10446
|
+
- in: query
|
|
10447
|
+
name: domain
|
|
10448
|
+
required: false
|
|
10449
|
+
schema:
|
|
10450
|
+
anyOf:
|
|
10451
|
+
- type: string
|
|
10452
|
+
- type: 'null'
|
|
10453
|
+
title: Domain
|
|
10392
10454
|
- description: 'Filter by protocol: http or https'
|
|
10393
10455
|
in: query
|
|
10394
10456
|
name: protocol
|
|
@@ -10438,6 +10500,14 @@ paths:
|
|
|
10438
10500
|
- type: string
|
|
10439
10501
|
- type: 'null'
|
|
10440
10502
|
title: Hostname
|
|
10503
|
+
- in: query
|
|
10504
|
+
name: domain
|
|
10505
|
+
required: false
|
|
10506
|
+
schema:
|
|
10507
|
+
anyOf:
|
|
10508
|
+
- type: string
|
|
10509
|
+
- type: 'null'
|
|
10510
|
+
title: Domain
|
|
10441
10511
|
- description: 'Filter by protocol: http or https'
|
|
10442
10512
|
in: query
|
|
10443
10513
|
name: protocol
|
|
@@ -10495,6 +10565,14 @@ paths:
|
|
|
10495
10565
|
- type: string
|
|
10496
10566
|
- type: 'null'
|
|
10497
10567
|
title: Hostname
|
|
10568
|
+
- in: query
|
|
10569
|
+
name: domain
|
|
10570
|
+
required: false
|
|
10571
|
+
schema:
|
|
10572
|
+
anyOf:
|
|
10573
|
+
- type: string
|
|
10574
|
+
- type: 'null'
|
|
10575
|
+
title: Domain
|
|
10498
10576
|
- description: 'Filter by protocol: http or https'
|
|
10499
10577
|
in: query
|
|
10500
10578
|
name: protocol
|
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
|
|
@@ -8459,6 +8464,7 @@ export interface operations {
|
|
|
8459
8464
|
parameters: {
|
|
8460
8465
|
query?: {
|
|
8461
8466
|
hostname?: string | null;
|
|
8467
|
+
domain?: string | null;
|
|
8462
8468
|
/** @description Filter by protocol: http or https */
|
|
8463
8469
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8464
8470
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|
|
@@ -8494,6 +8500,7 @@ export interface operations {
|
|
|
8494
8500
|
parameters: {
|
|
8495
8501
|
query?: {
|
|
8496
8502
|
hostname?: string | null;
|
|
8503
|
+
domain?: string | null;
|
|
8497
8504
|
/** @description Filter by protocol: http or https */
|
|
8498
8505
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8499
8506
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|
|
@@ -8529,6 +8536,7 @@ export interface operations {
|
|
|
8529
8536
|
parameters: {
|
|
8530
8537
|
query?: {
|
|
8531
8538
|
hostname?: string | null;
|
|
8539
|
+
domain?: string | null;
|
|
8532
8540
|
/** @description Filter by protocol: http or https */
|
|
8533
8541
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8534
8542
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|
|
@@ -8564,6 +8572,7 @@ export interface operations {
|
|
|
8564
8572
|
parameters: {
|
|
8565
8573
|
query?: {
|
|
8566
8574
|
hostname?: string | null;
|
|
8575
|
+
domain?: string | null;
|
|
8567
8576
|
/** @description Filter by protocol: http or https */
|
|
8568
8577
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8569
8578
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|
|
@@ -8599,6 +8608,7 @@ export interface operations {
|
|
|
8599
8608
|
parameters: {
|
|
8600
8609
|
query?: {
|
|
8601
8610
|
hostname?: string | null;
|
|
8611
|
+
domain?: string | null;
|
|
8602
8612
|
/** @description Filter by protocol: http or https */
|
|
8603
8613
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8604
8614
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|
|
@@ -8634,6 +8644,7 @@ export interface operations {
|
|
|
8634
8644
|
parameters: {
|
|
8635
8645
|
query?: {
|
|
8636
8646
|
hostname?: string | null;
|
|
8647
|
+
domain?: string | null;
|
|
8637
8648
|
/** @description Filter by protocol: http or https */
|
|
8638
8649
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8639
8650
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|
|
@@ -8669,6 +8680,7 @@ export interface operations {
|
|
|
8669
8680
|
parameters: {
|
|
8670
8681
|
query?: {
|
|
8671
8682
|
hostname?: string | null;
|
|
8683
|
+
domain?: string | null;
|
|
8672
8684
|
/** @description Filter by protocol: http or https */
|
|
8673
8685
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8674
8686
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|
|
@@ -8704,6 +8716,7 @@ export interface operations {
|
|
|
8704
8716
|
parameters: {
|
|
8705
8717
|
query?: {
|
|
8706
8718
|
hostname?: string | null;
|
|
8719
|
+
domain?: string | null;
|
|
8707
8720
|
/** @description Filter by protocol: http or https */
|
|
8708
8721
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8709
8722
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|
|
@@ -8741,6 +8754,7 @@ export interface operations {
|
|
|
8741
8754
|
/** @description Grouping key: url, fqdn, domain, or forward */
|
|
8742
8755
|
grouping?: components["schemas"]["MetricsGrouping"];
|
|
8743
8756
|
hostname?: string | null;
|
|
8757
|
+
domain?: string | null;
|
|
8744
8758
|
/** @description Filter by protocol: http or https */
|
|
8745
8759
|
protocol?: components["schemas"]["Protocol"] | null;
|
|
8746
8760
|
/** @description Time range: 1h, 1d, 7d, or 30d */
|