@opusdns/api 0.102.0 → 0.104.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 +10 -0
- package/src/helpers/keys.ts +86 -8
- package/src/helpers/schemas.d.ts +16 -0
- package/src/openapi.yaml +39 -20
- package/src/schema.d.ts +17 -7
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -2345,6 +2345,7 @@ export const PERMISSION = {
|
|
|
2345
2345
|
CORPORATE_PLAN: "corporate_plan",
|
|
2346
2346
|
CREATE: "create",
|
|
2347
2347
|
DELETE: "delete",
|
|
2348
|
+
DELETE_DOMAIN_FORWARDS: "delete_domain_forwards",
|
|
2348
2349
|
ENTERPRISE_PLAN: "enterprise_plan",
|
|
2349
2350
|
HAS_ACCEPTED_TOS: "has_accepted_tos",
|
|
2350
2351
|
MANAGE_API_KEYS: "manage_api_keys",
|
|
@@ -2353,6 +2354,7 @@ export const PERMISSION = {
|
|
|
2353
2354
|
MANAGE_CONTACTS: "manage_contacts",
|
|
2354
2355
|
MANAGE_DNS_ZONES: "manage_dns_zones",
|
|
2355
2356
|
MANAGE_DOMAINS: "manage_domains",
|
|
2357
|
+
MANAGE_DOMAIN_FORWARDS: "manage_domain_forwards",
|
|
2356
2358
|
MANAGE_EMAIL_FORWARDS: "manage_email_forwards",
|
|
2357
2359
|
MANAGE_EVENTS: "manage_events",
|
|
2358
2360
|
MANAGE_HOSTS: "manage_hosts",
|
|
@@ -2367,9 +2369,11 @@ export const PERMISSION = {
|
|
|
2367
2369
|
STARTER_PLAN: "starter_plan",
|
|
2368
2370
|
TRANSFER_TRADE: "transfer_trade",
|
|
2369
2371
|
UPDATE: "update",
|
|
2372
|
+
UPDATE_DOMAIN_FORWARDS: "update_domain_forwards",
|
|
2370
2373
|
VERIFY: "verify",
|
|
2371
2374
|
VIEW: "view",
|
|
2372
2375
|
VIEW_AUDIT_LOGS: "view_audit_logs",
|
|
2376
|
+
VIEW_DOMAIN_FORWARDS: "view_domain_forwards",
|
|
2373
2377
|
VIEW_EVENTS: "view_events",
|
|
2374
2378
|
} as const satisfies Record<string, Permission>;
|
|
2375
2379
|
|
|
@@ -2403,6 +2407,7 @@ export const PERMISSION_VALUES = [
|
|
|
2403
2407
|
'corporate_plan',
|
|
2404
2408
|
'create',
|
|
2405
2409
|
'delete',
|
|
2410
|
+
'delete_domain_forwards',
|
|
2406
2411
|
'enterprise_plan',
|
|
2407
2412
|
'has_accepted_tos',
|
|
2408
2413
|
'manage_api_keys',
|
|
@@ -2411,6 +2416,7 @@ export const PERMISSION_VALUES = [
|
|
|
2411
2416
|
'manage_contacts',
|
|
2412
2417
|
'manage_dns_zones',
|
|
2413
2418
|
'manage_domains',
|
|
2419
|
+
'manage_domain_forwards',
|
|
2414
2420
|
'manage_email_forwards',
|
|
2415
2421
|
'manage_events',
|
|
2416
2422
|
'manage_hosts',
|
|
@@ -2425,9 +2431,11 @@ export const PERMISSION_VALUES = [
|
|
|
2425
2431
|
'starter_plan',
|
|
2426
2432
|
'transfer_trade',
|
|
2427
2433
|
'update',
|
|
2434
|
+
'update_domain_forwards',
|
|
2428
2435
|
'verify',
|
|
2429
2436
|
'view',
|
|
2430
2437
|
'view_audit_logs',
|
|
2438
|
+
'view_domain_forwards',
|
|
2431
2439
|
'view_events'
|
|
2432
2440
|
] as const satisfies [string, ...string[]] | Permission[];
|
|
2433
2441
|
|
|
@@ -2785,6 +2793,7 @@ export const RELATION = {
|
|
|
2785
2793
|
CLIENT_API_KEY: "client_api_key",
|
|
2786
2794
|
CMS_CONTENT_EDITOR: "cms_content_editor",
|
|
2787
2795
|
CONTACT_MANAGER: "contact_manager",
|
|
2796
|
+
DOMAIN_FORWARD_MANAGER: "domain_forward_manager",
|
|
2788
2797
|
DOMAIN_MANAGER: "domain_manager",
|
|
2789
2798
|
EMAIL_FORWARD_MANAGER: "email_forward_manager",
|
|
2790
2799
|
EVENTS_MANAGER: "events_manager",
|
|
@@ -2829,6 +2838,7 @@ export const RELATION_VALUES = [
|
|
|
2829
2838
|
'client_api_key',
|
|
2830
2839
|
'cms_content_editor',
|
|
2831
2840
|
'contact_manager',
|
|
2841
|
+
'domain_forward_manager',
|
|
2832
2842
|
'domain_manager',
|
|
2833
2843
|
'email_forward_manager',
|
|
2834
2844
|
'events_manager',
|
package/src/helpers/keys.ts
CHANGED
|
@@ -146,6 +146,7 @@ import { TldBase } from './schemas';
|
|
|
146
146
|
import { TldResponseShort } from './schemas';
|
|
147
147
|
import { TldSpecification } from './schemas';
|
|
148
148
|
import { TrademarkClaimsBase } from './schemas';
|
|
149
|
+
import { TransferLockPolicyBase } from './schemas';
|
|
149
150
|
import { TransferPoliciesBase } from './schemas';
|
|
150
151
|
import { User } from './schemas';
|
|
151
152
|
import { UserAttributeBase } from './schemas';
|
|
@@ -18395,6 +18396,84 @@ export const KEYS_TRADEMARK_CLAIMS_BASE = [
|
|
|
18395
18396
|
KEY_TRADEMARK_CLAIMS_BASE_TMCH_REQUIRED,
|
|
18396
18397
|
] as const satisfies (keyof TrademarkClaimsBase)[];
|
|
18397
18398
|
|
|
18399
|
+
/**
|
|
18400
|
+
* Supported By Registrar
|
|
18401
|
+
*
|
|
18402
|
+
* Whether the registrar supports transfer locks
|
|
18403
|
+
*
|
|
18404
|
+
* @type {boolean}
|
|
18405
|
+
*
|
|
18406
|
+
*
|
|
18407
|
+
* @remarks
|
|
18408
|
+
* This key constant provides type-safe access to the `supported_by_registrar` property of TransferLockPolicyBase objects.
|
|
18409
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
18410
|
+
*
|
|
18411
|
+
* @example
|
|
18412
|
+
* ```typescript
|
|
18413
|
+
* // Direct property access
|
|
18414
|
+
* const value = transferlockpolicybase[KEY_TRANSFER_LOCK_POLICY_BASE_SUPPORTED_BY_REGISTRAR];
|
|
18415
|
+
*
|
|
18416
|
+
* // Dynamic property access
|
|
18417
|
+
* const propertyName = KEY_TRANSFER_LOCK_POLICY_BASE_SUPPORTED_BY_REGISTRAR;
|
|
18418
|
+
* const value = transferlockpolicybase[propertyName];
|
|
18419
|
+
* ```
|
|
18420
|
+
*
|
|
18421
|
+
* @see {@link TransferLockPolicyBase} - The TypeScript type definition
|
|
18422
|
+
* @see {@link KEYS_TRANSFER_LOCK_POLICY_BASE} - Array of all keys for this type
|
|
18423
|
+
*/
|
|
18424
|
+
export const KEY_TRANSFER_LOCK_POLICY_BASE_SUPPORTED_BY_REGISTRAR = 'supported_by_registrar' as keyof TransferLockPolicyBase;
|
|
18425
|
+
/**
|
|
18426
|
+
* Supported By Registry
|
|
18427
|
+
*
|
|
18428
|
+
* Whether the registry supports transfer locks
|
|
18429
|
+
*
|
|
18430
|
+
* @type {boolean}
|
|
18431
|
+
*
|
|
18432
|
+
*
|
|
18433
|
+
* @remarks
|
|
18434
|
+
* This key constant provides type-safe access to the `supported_by_registry` property of TransferLockPolicyBase objects.
|
|
18435
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
18436
|
+
*
|
|
18437
|
+
* @example
|
|
18438
|
+
* ```typescript
|
|
18439
|
+
* // Direct property access
|
|
18440
|
+
* const value = transferlockpolicybase[KEY_TRANSFER_LOCK_POLICY_BASE_SUPPORTED_BY_REGISTRY];
|
|
18441
|
+
*
|
|
18442
|
+
* // Dynamic property access
|
|
18443
|
+
* const propertyName = KEY_TRANSFER_LOCK_POLICY_BASE_SUPPORTED_BY_REGISTRY;
|
|
18444
|
+
* const value = transferlockpolicybase[propertyName];
|
|
18445
|
+
* ```
|
|
18446
|
+
*
|
|
18447
|
+
* @see {@link TransferLockPolicyBase} - The TypeScript type definition
|
|
18448
|
+
* @see {@link KEYS_TRANSFER_LOCK_POLICY_BASE} - Array of all keys for this type
|
|
18449
|
+
*/
|
|
18450
|
+
export const KEY_TRANSFER_LOCK_POLICY_BASE_SUPPORTED_BY_REGISTRY = 'supported_by_registry' as keyof TransferLockPolicyBase;
|
|
18451
|
+
|
|
18452
|
+
/**
|
|
18453
|
+
* Array of all TransferLockPolicyBase property keys
|
|
18454
|
+
*
|
|
18455
|
+
* @remarks
|
|
18456
|
+
* This constant provides a readonly array containing all valid property keys for TransferLockPolicyBase objects.
|
|
18457
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
18458
|
+
*
|
|
18459
|
+
* @example
|
|
18460
|
+
* ```typescript
|
|
18461
|
+
* // Iterating through all keys
|
|
18462
|
+
* for (const key of KEYS_TRANSFER_LOCK_POLICY_BASE) {
|
|
18463
|
+
* console.log(`Property: ${key}, Value: ${transferlockpolicybase[key]}`);
|
|
18464
|
+
* }
|
|
18465
|
+
*
|
|
18466
|
+
* // Validation
|
|
18467
|
+
* const isValidKey = KEYS_TRANSFER_LOCK_POLICY_BASE.includes(someKey);
|
|
18468
|
+
* ```
|
|
18469
|
+
*
|
|
18470
|
+
* @see {@link TransferLockPolicyBase} - The TypeScript type definition
|
|
18471
|
+
*/
|
|
18472
|
+
export const KEYS_TRANSFER_LOCK_POLICY_BASE = [
|
|
18473
|
+
KEY_TRANSFER_LOCK_POLICY_BASE_SUPPORTED_BY_REGISTRAR,
|
|
18474
|
+
KEY_TRANSFER_LOCK_POLICY_BASE_SUPPORTED_BY_REGISTRY,
|
|
18475
|
+
] as const satisfies (keyof TransferLockPolicyBase)[];
|
|
18476
|
+
|
|
18398
18477
|
/**
|
|
18399
18478
|
* Authinfo Max Length
|
|
18400
18479
|
*
|
|
@@ -18647,31 +18726,30 @@ export const KEY_TRANSFER_POLICIES_BASE_TRANSFER_ACK = 'transfer_ack' as keyof T
|
|
|
18647
18726
|
*/
|
|
18648
18727
|
export const KEY_TRANSFER_POLICIES_BASE_TRANSFER_EMAIL_REQUIRED = 'transfer_email_required' as keyof TransferPoliciesBase;
|
|
18649
18728
|
/**
|
|
18650
|
-
*
|
|
18729
|
+
* transfer_lock_policy property
|
|
18651
18730
|
*
|
|
18652
|
-
*
|
|
18731
|
+
* Transfer lock policy
|
|
18653
18732
|
*
|
|
18654
|
-
* @type {boolean}
|
|
18655
18733
|
*
|
|
18656
18734
|
*
|
|
18657
18735
|
* @remarks
|
|
18658
|
-
* This key constant provides type-safe access to the `
|
|
18736
|
+
* This key constant provides type-safe access to the `transfer_lock_policy` property of TransferPoliciesBase objects.
|
|
18659
18737
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
18660
18738
|
*
|
|
18661
18739
|
* @example
|
|
18662
18740
|
* ```typescript
|
|
18663
18741
|
* // Direct property access
|
|
18664
|
-
* const value = transferpoliciesbase[
|
|
18742
|
+
* const value = transferpoliciesbase[KEY_TRANSFER_POLICIES_BASE_TRANSFER_LOCK_POLICY];
|
|
18665
18743
|
*
|
|
18666
18744
|
* // Dynamic property access
|
|
18667
|
-
* const propertyName =
|
|
18745
|
+
* const propertyName = KEY_TRANSFER_POLICIES_BASE_TRANSFER_LOCK_POLICY;
|
|
18668
18746
|
* const value = transferpoliciesbase[propertyName];
|
|
18669
18747
|
* ```
|
|
18670
18748
|
*
|
|
18671
18749
|
* @see {@link TransferPoliciesBase} - The TypeScript type definition
|
|
18672
18750
|
* @see {@link KEYS_TRANSFER_POLICIES_BASE} - Array of all keys for this type
|
|
18673
18751
|
*/
|
|
18674
|
-
export const
|
|
18752
|
+
export const KEY_TRANSFER_POLICIES_BASE_TRANSFER_LOCK_POLICY = 'transfer_lock_policy' as keyof TransferPoliciesBase;
|
|
18675
18753
|
/**
|
|
18676
18754
|
* transfer_nack property
|
|
18677
18755
|
*
|
|
@@ -18804,7 +18882,7 @@ export const KEYS_TRANSFER_POLICIES_BASE = [
|
|
|
18804
18882
|
KEY_TRANSFER_POLICIES_BASE_POST_TRANSFER_REQUIREMENTS,
|
|
18805
18883
|
KEY_TRANSFER_POLICIES_BASE_TRANSFER_ACK,
|
|
18806
18884
|
KEY_TRANSFER_POLICIES_BASE_TRANSFER_EMAIL_REQUIRED,
|
|
18807
|
-
|
|
18885
|
+
KEY_TRANSFER_POLICIES_BASE_TRANSFER_LOCK_POLICY,
|
|
18808
18886
|
KEY_TRANSFER_POLICIES_BASE_TRANSFER_NACK,
|
|
18809
18887
|
KEY_TRANSFER_POLICIES_BASE_TRANSFER_RENEWAL_PERIOD,
|
|
18810
18888
|
KEY_TRANSFER_POLICIES_BASE_TRANSFER_RENEWS_DOMAIN,
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -3119,6 +3119,22 @@ export type TrademarkClaimsBase = components['schemas']['TrademarkClaimsBase'];
|
|
|
3119
3119
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3120
3120
|
*/
|
|
3121
3121
|
export type TransferAckType = components['schemas']['TransferAckType'];
|
|
3122
|
+
/**
|
|
3123
|
+
* TransferLockPolicyBase
|
|
3124
|
+
*
|
|
3125
|
+
* @remarks
|
|
3126
|
+
* Type alias for the `TransferLockPolicyBase` OpenAPI schema.
|
|
3127
|
+
* This type represents transferlockpolicybase data structures used in API requests and responses.
|
|
3128
|
+
*
|
|
3129
|
+
* @example
|
|
3130
|
+
* ```typescript
|
|
3131
|
+
* const response = await api.getTransferLockPolicyBase();
|
|
3132
|
+
* const item: TransferLockPolicyBase = response.results;
|
|
3133
|
+
* ```
|
|
3134
|
+
*
|
|
3135
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3136
|
+
*/
|
|
3137
|
+
export type TransferLockPolicyBase = components['schemas']['TransferLockPolicyBase'];
|
|
3122
3138
|
/**
|
|
3123
3139
|
* TransferPoliciesBase
|
|
3124
3140
|
*
|
package/src/openapi.yaml
CHANGED
|
@@ -4152,6 +4152,7 @@ components:
|
|
|
4152
4152
|
- corporate_plan
|
|
4153
4153
|
- create
|
|
4154
4154
|
- delete
|
|
4155
|
+
- delete_domain_forwards
|
|
4155
4156
|
- enterprise_plan
|
|
4156
4157
|
- has_accepted_tos
|
|
4157
4158
|
- manage_api_keys
|
|
@@ -4160,6 +4161,7 @@ components:
|
|
|
4160
4161
|
- manage_contacts
|
|
4161
4162
|
- manage_dns_zones
|
|
4162
4163
|
- manage_domains
|
|
4164
|
+
- manage_domain_forwards
|
|
4163
4165
|
- manage_email_forwards
|
|
4164
4166
|
- manage_events
|
|
4165
4167
|
- manage_hosts
|
|
@@ -4174,9 +4176,11 @@ components:
|
|
|
4174
4176
|
- starter_plan
|
|
4175
4177
|
- transfer_trade
|
|
4176
4178
|
- update
|
|
4179
|
+
- update_domain_forwards
|
|
4177
4180
|
- verify
|
|
4178
4181
|
- view
|
|
4179
4182
|
- view_audit_logs
|
|
4183
|
+
- view_domain_forwards
|
|
4180
4184
|
- view_events
|
|
4181
4185
|
title: Permission
|
|
4182
4186
|
type: string
|
|
@@ -4407,6 +4411,7 @@ components:
|
|
|
4407
4411
|
- client_api_key
|
|
4408
4412
|
- cms_content_editor
|
|
4409
4413
|
- contact_manager
|
|
4414
|
+
- domain_forward_manager
|
|
4410
4415
|
- domain_manager
|
|
4411
4416
|
- email_forward_manager
|
|
4412
4417
|
- events_manager
|
|
@@ -4776,6 +4781,21 @@ components:
|
|
|
4776
4781
|
- both
|
|
4777
4782
|
title: TransferAckType
|
|
4778
4783
|
type: string
|
|
4784
|
+
TransferLockPolicyBase:
|
|
4785
|
+
properties:
|
|
4786
|
+
supported_by_registrar:
|
|
4787
|
+
description: Whether the registrar supports transfer locks
|
|
4788
|
+
title: Supported By Registrar
|
|
4789
|
+
type: boolean
|
|
4790
|
+
supported_by_registry:
|
|
4791
|
+
description: Whether the registry supports transfer locks
|
|
4792
|
+
title: Supported By Registry
|
|
4793
|
+
type: boolean
|
|
4794
|
+
required:
|
|
4795
|
+
- supported_by_registry
|
|
4796
|
+
- supported_by_registrar
|
|
4797
|
+
title: TransferLockPolicyBase
|
|
4798
|
+
type: object
|
|
4779
4799
|
TransferPoliciesBase:
|
|
4780
4800
|
properties:
|
|
4781
4801
|
authinfo_max_length:
|
|
@@ -4844,10 +4864,9 @@ components:
|
|
|
4844
4864
|
- type: 'null'
|
|
4845
4865
|
description: Whether an email confirmation is required to perform the transfer
|
|
4846
4866
|
title: Transfer Email Required
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
type: boolean
|
|
4867
|
+
transfer_lock_policy:
|
|
4868
|
+
$ref: '#/components/schemas/TransferLockPolicyBase'
|
|
4869
|
+
description: Transfer lock policy
|
|
4851
4870
|
transfer_nack:
|
|
4852
4871
|
anyOf:
|
|
4853
4872
|
- $ref: '#/components/schemas/TransferAckType'
|
|
@@ -4882,7 +4901,7 @@ components:
|
|
|
4882
4901
|
according to the policy, 0 = real-time
|
|
4883
4902
|
title: Transfer Time
|
|
4884
4903
|
required:
|
|
4885
|
-
-
|
|
4904
|
+
- transfer_lock_policy
|
|
4886
4905
|
- authinfo_required
|
|
4887
4906
|
title: TransferPoliciesBase
|
|
4888
4907
|
type: object
|
|
@@ -5529,7 +5548,7 @@ info:
|
|
|
5529
5548
|
'
|
|
5530
5549
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5531
5550
|
title: OpusDNS API
|
|
5532
|
-
version: 2025-
|
|
5551
|
+
version: 2025-12-02-133836
|
|
5533
5552
|
x-logo:
|
|
5534
5553
|
altText: OpusDNS API Reference
|
|
5535
5554
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -5557,7 +5576,7 @@ paths:
|
|
|
5557
5576
|
required: false
|
|
5558
5577
|
schema:
|
|
5559
5578
|
default: 10
|
|
5560
|
-
maximum:
|
|
5579
|
+
maximum: 1000
|
|
5561
5580
|
minimum: 1
|
|
5562
5581
|
title: Page Size
|
|
5563
5582
|
type: integer
|
|
@@ -5690,7 +5709,7 @@ paths:
|
|
|
5690
5709
|
required: false
|
|
5691
5710
|
schema:
|
|
5692
5711
|
default: 10
|
|
5693
|
-
maximum:
|
|
5712
|
+
maximum: 1000
|
|
5694
5713
|
minimum: 1
|
|
5695
5714
|
title: Page Size
|
|
5696
5715
|
type: integer
|
|
@@ -5808,7 +5827,7 @@ paths:
|
|
|
5808
5827
|
required: false
|
|
5809
5828
|
schema:
|
|
5810
5829
|
default: 10
|
|
5811
|
-
maximum:
|
|
5830
|
+
maximum: 1000
|
|
5812
5831
|
minimum: 1
|
|
5813
5832
|
title: Page Size
|
|
5814
5833
|
type: integer
|
|
@@ -6226,7 +6245,7 @@ paths:
|
|
|
6226
6245
|
required: false
|
|
6227
6246
|
schema:
|
|
6228
6247
|
default: 10
|
|
6229
|
-
maximum:
|
|
6248
|
+
maximum: 1000
|
|
6230
6249
|
minimum: 1
|
|
6231
6250
|
title: Page Size
|
|
6232
6251
|
type: integer
|
|
@@ -6913,7 +6932,7 @@ paths:
|
|
|
6913
6932
|
required: false
|
|
6914
6933
|
schema:
|
|
6915
6934
|
default: 10
|
|
6916
|
-
maximum:
|
|
6935
|
+
maximum: 1000
|
|
6917
6936
|
minimum: 1
|
|
6918
6937
|
title: Page Size
|
|
6919
6938
|
type: integer
|
|
@@ -7193,7 +7212,7 @@ paths:
|
|
|
7193
7212
|
required: false
|
|
7194
7213
|
schema:
|
|
7195
7214
|
default: 10
|
|
7196
|
-
maximum:
|
|
7215
|
+
maximum: 1000
|
|
7197
7216
|
minimum: 1
|
|
7198
7217
|
title: Page Size
|
|
7199
7218
|
type: integer
|
|
@@ -7595,7 +7614,7 @@ paths:
|
|
|
7595
7614
|
required: false
|
|
7596
7615
|
schema:
|
|
7597
7616
|
default: 10
|
|
7598
|
-
maximum:
|
|
7617
|
+
maximum: 1000
|
|
7599
7618
|
minimum: 1
|
|
7600
7619
|
title: Page Size
|
|
7601
7620
|
type: integer
|
|
@@ -8721,7 +8740,7 @@ paths:
|
|
|
8721
8740
|
required: false
|
|
8722
8741
|
schema:
|
|
8723
8742
|
default: 10
|
|
8724
|
-
maximum:
|
|
8743
|
+
maximum: 1000
|
|
8725
8744
|
minimum: 1
|
|
8726
8745
|
title: Page Size
|
|
8727
8746
|
type: integer
|
|
@@ -9594,7 +9613,7 @@ paths:
|
|
|
9594
9613
|
required: false
|
|
9595
9614
|
schema:
|
|
9596
9615
|
default: 10
|
|
9597
|
-
maximum:
|
|
9616
|
+
maximum: 1000
|
|
9598
9617
|
minimum: 1
|
|
9599
9618
|
title: Page Size
|
|
9600
9619
|
type: integer
|
|
@@ -9881,7 +9900,7 @@ paths:
|
|
|
9881
9900
|
required: false
|
|
9882
9901
|
schema:
|
|
9883
9902
|
default: 10
|
|
9884
|
-
maximum:
|
|
9903
|
+
maximum: 1000
|
|
9885
9904
|
minimum: 1
|
|
9886
9905
|
title: Page Size
|
|
9887
9906
|
type: integer
|
|
@@ -10046,7 +10065,7 @@ paths:
|
|
|
10046
10065
|
required: false
|
|
10047
10066
|
schema:
|
|
10048
10067
|
default: 10
|
|
10049
|
-
maximum:
|
|
10068
|
+
maximum: 1000
|
|
10050
10069
|
minimum: 1
|
|
10051
10070
|
title: Page Size
|
|
10052
10071
|
type: integer
|
|
@@ -10776,7 +10795,7 @@ paths:
|
|
|
10776
10795
|
required: false
|
|
10777
10796
|
schema:
|
|
10778
10797
|
default: 10
|
|
10779
|
-
maximum:
|
|
10798
|
+
maximum: 1000
|
|
10780
10799
|
minimum: 1
|
|
10781
10800
|
title: Page Size
|
|
10782
10801
|
type: integer
|
|
@@ -11025,7 +11044,7 @@ paths:
|
|
|
11025
11044
|
required: false
|
|
11026
11045
|
schema:
|
|
11027
11046
|
default: 10
|
|
11028
|
-
maximum:
|
|
11047
|
+
maximum: 1000
|
|
11029
11048
|
minimum: 1
|
|
11030
11049
|
title: Page Size
|
|
11031
11050
|
type: integer
|
|
@@ -11237,7 +11256,7 @@ paths:
|
|
|
11237
11256
|
required: false
|
|
11238
11257
|
schema:
|
|
11239
11258
|
default: 10
|
|
11240
|
-
maximum:
|
|
11259
|
+
maximum: 1000
|
|
11241
11260
|
minimum: 1
|
|
11242
11261
|
title: Page Size
|
|
11243
11262
|
type: integer
|
package/src/schema.d.ts
CHANGED
|
@@ -4112,7 +4112,7 @@ export interface components {
|
|
|
4112
4112
|
* Permission
|
|
4113
4113
|
* @enum {string}
|
|
4114
4114
|
*/
|
|
4115
|
-
Permission: "bulk_create" | "bulk_delete" | "bulk_renew_expire" | "bulk_transfer_trade" | "bulk_update" | "corporate_plan" | "create" | "delete" | "enterprise_plan" | "has_accepted_tos" | "manage_api_keys" | "manage_billing" | "manage_cms_content" | "manage_contacts" | "manage_dns_zones" | "manage_domains" | "manage_email_forwards" | "manage_events" | "manage_hosts" | "manage_opusdns_api_keys" | "manage_products" | "manage_reseller" | "manage_users" | "manage_user_relations" | "plan_manager" | "premium_plan" | "renew_expire" | "starter_plan" | "transfer_trade" | "update" | "verify" | "view" | "view_audit_logs" | "view_events";
|
|
4115
|
+
Permission: "bulk_create" | "bulk_delete" | "bulk_renew_expire" | "bulk_transfer_trade" | "bulk_update" | "corporate_plan" | "create" | "delete" | "delete_domain_forwards" | "enterprise_plan" | "has_accepted_tos" | "manage_api_keys" | "manage_billing" | "manage_cms_content" | "manage_contacts" | "manage_dns_zones" | "manage_domains" | "manage_domain_forwards" | "manage_email_forwards" | "manage_events" | "manage_hosts" | "manage_opusdns_api_keys" | "manage_products" | "manage_reseller" | "manage_users" | "manage_user_relations" | "plan_manager" | "premium_plan" | "renew_expire" | "starter_plan" | "transfer_trade" | "update" | "update_domain_forwards" | "verify" | "view" | "view_audit_logs" | "view_domain_forwards" | "view_events";
|
|
4116
4116
|
/** PermissionSet */
|
|
4117
4117
|
PermissionSet: {
|
|
4118
4118
|
/** Permissions */
|
|
@@ -4260,7 +4260,7 @@ export interface components {
|
|
|
4260
4260
|
* Relation
|
|
4261
4261
|
* @enum {string}
|
|
4262
4262
|
*/
|
|
4263
|
-
Relation: "accepted_tos" | "admin" | "api_admin" | "billing_manager" | "client_api_key" | "cms_content_editor" | "contact_manager" | "domain_manager" | "email_forward_manager" | "events_manager" | "host_manager" | "member" | "opusdns_internal_api_key" | "organization_manager" | "owner" | "parent" | "product_manager" | "reseller_manager" | "root_admin" | "self";
|
|
4263
|
+
Relation: "accepted_tos" | "admin" | "api_admin" | "billing_manager" | "client_api_key" | "cms_content_editor" | "contact_manager" | "domain_forward_manager" | "domain_manager" | "email_forward_manager" | "events_manager" | "host_manager" | "member" | "opusdns_internal_api_key" | "organization_manager" | "owner" | "parent" | "product_manager" | "reseller_manager" | "root_admin" | "self";
|
|
4264
4264
|
/** RelationSet */
|
|
4265
4265
|
RelationSet: {
|
|
4266
4266
|
/** Relations */
|
|
@@ -4506,6 +4506,19 @@ export interface components {
|
|
|
4506
4506
|
* @enum {string}
|
|
4507
4507
|
*/
|
|
4508
4508
|
TransferAckType: "none" | "registrar" | "registrant" | "both";
|
|
4509
|
+
/** TransferLockPolicyBase */
|
|
4510
|
+
TransferLockPolicyBase: {
|
|
4511
|
+
/**
|
|
4512
|
+
* Supported By Registrar
|
|
4513
|
+
* @description Whether the registrar supports transfer locks
|
|
4514
|
+
*/
|
|
4515
|
+
supported_by_registrar: boolean;
|
|
4516
|
+
/**
|
|
4517
|
+
* Supported By Registry
|
|
4518
|
+
* @description Whether the registry supports transfer locks
|
|
4519
|
+
*/
|
|
4520
|
+
supported_by_registry: boolean;
|
|
4521
|
+
};
|
|
4509
4522
|
/** TransferPoliciesBase */
|
|
4510
4523
|
TransferPoliciesBase: {
|
|
4511
4524
|
/**
|
|
@@ -4555,11 +4568,8 @@ export interface components {
|
|
|
4555
4568
|
* @description Whether an email confirmation is required to perform the transfer
|
|
4556
4569
|
*/
|
|
4557
4570
|
transfer_email_required?: boolean | null;
|
|
4558
|
-
/**
|
|
4559
|
-
|
|
4560
|
-
* @description Whether transfers are locked by default in our system
|
|
4561
|
-
*/
|
|
4562
|
-
transfer_lock_enabled: boolean;
|
|
4571
|
+
/** @description Transfer lock policy */
|
|
4572
|
+
transfer_lock_policy: components["schemas"]["TransferLockPolicyBase"];
|
|
4563
4573
|
/** @description Whether a transfer can be denied */
|
|
4564
4574
|
transfer_nack?: components["schemas"]["TransferAckType"] | null;
|
|
4565
4575
|
/**
|