@opusdns/api 0.159.0 → 0.161.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^0.19.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "0.159.0",
6
+ "version": "0.161.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -21,7 +21,7 @@
21
21
  * ```
22
22
  */
23
23
 
24
- import { AllocationMethodType, AttributeType, BillingTransactionAction, BillingTransactionProductType, BillingTransactionSortField, BillingTransactionStatus, ContactSortField, Currency, DeletePolicyType, DnsChangeAction, DnsRrsetType, DnssecAlgorithm, DnssecDigestType, DnssecModeType, DnssecRecordType, DnssecStatus, DomainAttributeKey, DomainAvailabilityStatus, DomainClientStatus, DomainContactType, DomainForwardSortField, DomainForwardZoneSortField, DomainSortField, DomainStatus, EmailForwardLogSortField, EmailForwardLogStatus, EmailForwardSortField, EmailForwardZoneSortField, EmailVerificationStatus, EventObjectType, EventSortField, EventSubtype, EventType, GrantType, HostStatus, HttpProtocol, InvoiceResponsePaymentStatus, InvoiceResponseStatus, InvoiceResponseType, LaunchPhaseType, LocalPresenceRequirementType, MetricsGrouping, ObjectEventType, ObjectLogSortField, OrganizationStatus, PatchOp, PeriodUnit, Permission, PostTransferRequirements, PostalAddressType, PremiumAffectsType, PremiumSourceType, Protocol, RedirectCode, RegistrantChangeType, RegistryHandleAttributeType, Relation, RenewalMode, RequestHistorySortField, ReservedSourceType, SortOrder, SyncOperationType, TLDType, TimeRange, TransferAckType, UserStatus, VerificationType, ZoneSortField } from './schemas';
24
+ import { AllocationMethodType, AttributeType, BillingTransactionAction, BillingTransactionProductType, BillingTransactionSortField, BillingTransactionStatus, ComplianceStatus, ContactSortField, Currency, DeletePolicyType, DnsChangeAction, DnsRrsetType, DnssecAlgorithm, DnssecDigestType, DnssecModeType, DnssecRecordType, DnssecStatus, DomainAttributeKey, DomainAvailabilityStatus, DomainClientStatus, DomainContactType, DomainForwardSortField, DomainForwardZoneSortField, DomainSortField, DomainStatus, EmailForwardLogSortField, EmailForwardLogStatus, EmailForwardSortField, EmailForwardZoneSortField, EmailVerificationStatus, EventObjectType, EventSortField, EventSubtype, EventType, GrantType, HostStatus, HttpProtocol, InvoiceResponsePaymentStatus, InvoiceResponseStatus, InvoiceResponseType, LaunchPhaseType, LocalPresenceRequirementType, MetricsGrouping, ObjectEventType, ObjectLogSortField, OrganizationStatus, ParkingSortField, PatchOp, PeriodUnit, Permission, PostTransferRequirements, PostalAddressType, PremiumAffectsType, PremiumSourceType, Protocol, RedirectCode, RegistrantChangeType, RegistryHandleAttributeType, Relation, RenewalMode, RequestHistorySortField, ReservedSourceType, SortOrder, SyncOperationType, TLDType, TimeRange, TransferAckType, UserStatus, VerificationType, ZoneSortField } from './schemas';
25
25
 
26
26
  /**
27
27
  * AllocationMethodType. Auto-generated enum for AllocationMethodType
@@ -359,6 +359,60 @@ export const BILLING_TRANSACTION_STATUS_VALUES = [
359
359
  'canceled'
360
360
  ] as const satisfies [string, ...string[]] | BillingTransactionStatus[];
361
361
 
362
+ /**
363
+ * ComplianceStatus. Auto-generated enum for ComplianceStatus
364
+ *
365
+ * @remarks
366
+ * This constant provides both object and array forms for the ComplianceStatus enum.
367
+ * The object form allows key-value access, while the array form enables iteration and validation.
368
+ *
369
+ * @example
370
+ * ```typescript
371
+ * // Using the object form for key-value access
372
+ * const status = COMPLIANCE_STATUS.SUCCESS;
373
+ *
374
+ * // Using the array form for iteration
375
+ * const allStatuses = COMPLIANCE_STATUS_VALUES;
376
+ * console.log(`Available statuses: ${allStatuses.join(', ')}`);
377
+ * ```
378
+ *
379
+ * @see {@link ComplianceStatus} - The TypeScript type definition
380
+ */
381
+ export const COMPLIANCE_STATUS = {
382
+ PREPARING: "preparing",
383
+ PENDING: "pending",
384
+ APPROVED: "approved",
385
+ DISAPPROVED: "disapproved",
386
+ } as const satisfies Record<string, ComplianceStatus>;
387
+
388
+ /**
389
+ * Array of all ComplianceStatus enum values
390
+ *
391
+ * @remarks
392
+ * This constant provides a array containing all valid ComplianceStatus enum values.
393
+ * Useful for iteration, validation, and generating dynamic UI components.
394
+ *
395
+ * @example
396
+ * ```typescript
397
+ * // Iterating through all values
398
+ * for (const value of COMPLIANCE_STATUS_VALUES) {
399
+ * console.log(`Processing: ${value}`);
400
+ * }
401
+ *
402
+ * // Validation
403
+ * const isValid = COMPLIANCE_STATUS_VALUES.includes(someValue);
404
+ * ```
405
+ *
406
+ * @see {@link ComplianceStatus} - The TypeScript type definition
407
+ * @see {@link COMPLIANCE_STATUS} - The object form of this enum
408
+ */
409
+ export const COMPLIANCE_STATUS_VALUES = [
410
+ 'preparing',
411
+ 'pending',
412
+ 'approved',
413
+ 'disapproved'
414
+ ] as const satisfies [string, ...string[]] | ComplianceStatus[];
415
+
362
416
  /**
363
417
  * ContactSortField. Auto-generated enum for ContactSortField
364
418
  *
@@ -2497,6 +2551,58 @@ export const ORGANIZATION_STATUS_VALUES = [
2497
2551
  'inactive'
2498
2552
  ] as const satisfies [string, ...string[]] | OrganizationStatus[];
2499
2553
 
2554
+ /**
2555
+ * ParkingSortField. Auto-generated enum for ParkingSortField
2556
+ *
2557
+ * @remarks
2558
+ * This constant provides both object and array forms for the ParkingSortField enum.
2559
+ * The object form allows key-value access, while the array form enables iteration and validation.
2560
+ *
2561
+ * @example
2562
+ * ```typescript
2563
+ * // Using the object form for key-value access
2564
+ * const status = PARKING_SORT_FIELD.SUCCESS;
2565
+ *
2566
+ * // Using the array form for iteration
2567
+ * const allStatuses = PARKING_SORT_FIELD_VALUES;
2568
+ * console.log(`Available statuses: ${allStatuses.join(', ')}`);
2569
+ * ```
2570
+ *
2571
+ * @see {@link ParkingSortField} - The TypeScript type definition
2572
+ */
2573
+ export const PARKING_SORT_FIELD = {
2574
+ DOMAIN: "domain",
2575
+ CREATED_ON: "created_on",
2576
+ UPDATED_ON: "updated_on",
2577
+ } as const satisfies Record<string, ParkingSortField>;
2578
+
2579
+ /**
2580
+ * Array of all ParkingSortField enum values
2581
+ *
2582
+ * @remarks
2583
+ * This constant provides a array containing all valid ParkingSortField enum values.
2584
+ * Useful for iteration, validation, and generating dynamic UI components.
2585
+ *
2586
+ * @example
2587
+ * ```typescript
2588
+ * // Iterating through all values
2589
+ * for (const value of PARKING_SORT_FIELD_VALUES) {
2590
+ * console.log(`Processing: ${value}`);
2591
+ * }
2592
+ *
2593
+ * // Validation
2594
+ * const isValid = PARKING_SORT_FIELD_VALUES.includes(someValue);
2595
+ * ```
2596
+ *
2597
+ * @see {@link ParkingSortField} - The TypeScript type definition
2598
+ * @see {@link PARKING_SORT_FIELD} - The object form of this enum
2599
+ */
2600
+ export const PARKING_SORT_FIELD_VALUES = [
2601
+ 'domain',
2602
+ 'created_on',
2603
+ 'updated_on'
2604
+ ] as const satisfies [string, ...string[]] | ParkingSortField[];
2605
+
2500
2606
  /**
2501
2607
  * PatchOp. Auto-generated enum for PatchOp
2502
2608
  *
@@ -2659,6 +2765,8 @@ export const PERMISSION = {
2659
2765
  VIEW_DOMAIN_FORWARDS: "view_domain_forwards",
2660
2766
  VIEW_EMAIL_FORWARDS: "view_email_forwards",
2661
2767
  VIEW_EVENTS: "view_events",
2768
+ VIEW_PARKING: "view_parking",
2769
+ MANAGE_PARKING: "manage_parking",
2662
2770
  } as const satisfies Record<string, Permission>;
2663
2771
 
2664
2772
  /**
@@ -2722,7 +2830,9 @@ export const PERMISSION_VALUES = [
2722
2830
  'view_audit_logs',
2723
2831
  'view_domain_forwards',
2724
2832
  'view_email_forwards',
2725
- 'view_events'
2833
+ 'view_events',
2834
+ 'view_parking',
2835
+ 'manage_parking'
2726
2836
  ] as const satisfies [string, ...string[]] | Permission[];
2727
2837
 
2728
2838
  /**
@@ -156,6 +156,7 @@ import { OrganizationToken } from './schemas';
156
156
  import { OrganizationUpdate } from './schemas';
157
157
  import { OrganizationWithBillingData } from './schemas';
158
158
  import { PaginationMetadata } from './schemas';
159
+ import { Parking } from './schemas';
159
160
  import { PasswordUpdate } from './schemas';
160
161
  import { Period } from './schemas';
161
162
  import { PermissionSet } from './schemas';
@@ -19193,6 +19194,269 @@ export const KEYS_PAGINATION_METADATA = [
19193
19194
  KEY_PAGINATION_METADATA_TOTAL_PAGES,
19194
19195
  ] as const satisfies (keyof PaginationMetadata)[];
19195
19196
 
19197
+ /**
19198
+ * compliance_status property
19199
+ *
19200
+ * The compliance status of the parking ad
19201
+ *
19202
+ *
19203
+ *
19204
+ * @remarks
19205
+ * This key constant provides type-safe access to the `compliance_status` property of Parking objects.
19206
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19207
+ *
19208
+ * @example
19209
+ * ```typescript
19210
+ * // Direct property access
19211
+ * const value = parking[KEY_PARKING_COMPLIANCE_STATUS];
19212
+ *
19213
+ * // Dynamic property access
19214
+ * const propertyName = KEY_PARKING_COMPLIANCE_STATUS;
19215
+ * const value = parking[propertyName];
19216
+ * ```
19217
+ *
19218
+ * @see {@link Parking} - The TypeScript type definition
19219
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19220
+ */
19221
+ export const KEY_PARKING_COMPLIANCE_STATUS: keyof Parking = 'compliance_status';
19222
+ /**
19223
+ * Content Language
19224
+ *
19225
+ * The primary language code for the ad content
19226
+ *
19227
+ *
19228
+ *
19229
+ * @remarks
19230
+ * This key constant provides type-safe access to the `content_language` property of Parking objects.
19231
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19232
+ *
19233
+ * @example
19234
+ * ```typescript
19235
+ * // Direct property access
19236
+ * const value = parking[KEY_PARKING_CONTENT_LANGUAGE];
19237
+ *
19238
+ * // Dynamic property access
19239
+ * const propertyName = KEY_PARKING_CONTENT_LANGUAGE;
19240
+ * const value = parking[propertyName];
19241
+ * ```
19242
+ *
19243
+ * @see {@link Parking} - The TypeScript type definition
19244
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19245
+ */
19246
+ export const KEY_PARKING_CONTENT_LANGUAGE: keyof Parking = 'content_language';
19247
+ /**
19248
+ * Content Url
19249
+ *
19250
+ * The content URL for approved parking ads
19251
+ *
19252
+ *
19253
+ *
19254
+ * @remarks
19255
+ * This key constant provides type-safe access to the `content_url` property of Parking objects.
19256
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19257
+ *
19258
+ * @example
19259
+ * ```typescript
19260
+ * // Direct property access
19261
+ * const value = parking[KEY_PARKING_CONTENT_URL];
19262
+ *
19263
+ * // Dynamic property access
19264
+ * const propertyName = KEY_PARKING_CONTENT_URL;
19265
+ * const value = parking[propertyName];
19266
+ * ```
19267
+ *
19268
+ * @see {@link Parking} - The TypeScript type definition
19269
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19270
+ */
19271
+ export const KEY_PARKING_CONTENT_URL: keyof Parking = 'content_url';
19272
+ /**
19273
+ * Created On
19274
+ *
19275
+ * When the parking entry was created
19276
+ *
19277
+ * @type {string}
19278
+ *
19279
+ *
19280
+ * @remarks
19281
+ * This key constant provides type-safe access to the `created_on` property of Parking objects.
19282
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19283
+ *
19284
+ * @example
19285
+ * ```typescript
19286
+ * // Direct property access
19287
+ * const value = parking[KEY_PARKING_CREATED_ON];
19288
+ *
19289
+ * // Dynamic property access
19290
+ * const propertyName = KEY_PARKING_CREATED_ON;
19291
+ * const value = parking[propertyName];
19292
+ * ```
19293
+ *
19294
+ * @see {@link Parking} - The TypeScript type definition
19295
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19296
+ */
19297
+ export const KEY_PARKING_CREATED_ON: keyof Parking = 'created_on';
19298
+ /**
19299
+ * Domain
19300
+ *
19301
+ * The domain name for the parking ad
19302
+ *
19303
+ * @type {string}
19304
+ *
19305
+ *
19306
+ * @remarks
19307
+ * This key constant provides type-safe access to the `domain` property of Parking objects.
19308
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19309
+ *
19310
+ * @example
19311
+ * ```typescript
19312
+ * // Direct property access
19313
+ * const value = parking[KEY_PARKING_DOMAIN];
19314
+ *
19315
+ * // Dynamic property access
19316
+ * const propertyName = KEY_PARKING_DOMAIN;
19317
+ * const value = parking[propertyName];
19318
+ * ```
19319
+ *
19320
+ * @see {@link Parking} - The TypeScript type definition
19321
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19322
+ */
19323
+ export const KEY_PARKING_DOMAIN: keyof Parking = 'domain';
19324
+ /**
19325
+ * Enabled
19326
+ *
19327
+ * Whether parking is enabled
19328
+ *
19329
+ * @type {boolean}
19330
+ *
19331
+ *
19332
+ * @remarks
19333
+ * This key constant provides type-safe access to the `enabled` property of Parking objects.
19334
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19335
+ *
19336
+ * @example
19337
+ * ```typescript
19338
+ * // Direct property access
19339
+ * const value = parking[KEY_PARKING_ENABLED];
19340
+ *
19341
+ * // Dynamic property access
19342
+ * const propertyName = KEY_PARKING_ENABLED;
19343
+ * const value = parking[propertyName];
19344
+ * ```
19345
+ *
19346
+ * @see {@link Parking} - The TypeScript type definition
19347
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19348
+ */
19349
+ export const KEY_PARKING_ENABLED: keyof Parking = 'enabled';
19350
+ /**
19351
+ * Note
19352
+ *
19353
+ * Additional notes about the parking ad
19354
+ *
19355
+ *
19356
+ *
19357
+ * @remarks
19358
+ * This key constant provides type-safe access to the `note` property of Parking objects.
19359
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19360
+ *
19361
+ * @example
19362
+ * ```typescript
19363
+ * // Direct property access
19364
+ * const value = parking[KEY_PARKING_NOTE];
19365
+ *
19366
+ * // Dynamic property access
19367
+ * const propertyName = KEY_PARKING_NOTE;
19368
+ * const value = parking[propertyName];
19369
+ * ```
19370
+ *
19371
+ * @see {@link Parking} - The TypeScript type definition
19372
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19373
+ */
19374
+ export const KEY_PARKING_NOTE: keyof Parking = 'note';
19375
+ /**
19376
+ * Parking Id
19377
+ *
19378
+ * Unique identifier for the parking entry
19379
+ *
19380
+ * @type {string}
19381
+ *
19382
+ *
19383
+ * @remarks
19384
+ * This key constant provides type-safe access to the `parking_id` property of Parking objects.
19385
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19386
+ *
19387
+ * @example
19388
+ * ```typescript
19389
+ * // Direct property access
19390
+ * const value = parking[KEY_PARKING_PARKING_ID];
19391
+ *
19392
+ * // Dynamic property access
19393
+ * const propertyName = KEY_PARKING_PARKING_ID;
19394
+ * const value = parking[propertyName];
19395
+ * ```
19396
+ *
19397
+ * @see {@link Parking} - The TypeScript type definition
19398
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19399
+ */
19400
+ export const KEY_PARKING_PARKING_ID: keyof Parking = 'parking_id';
19401
+ /**
19402
+ * Updated On
19403
+ *
19404
+ * When the parking entry was last updated
19405
+ *
19406
+ * @type {string}
19407
+ *
19408
+ *
19409
+ * @remarks
19410
+ * This key constant provides type-safe access to the `updated_on` property of Parking objects.
19411
+ * Use this constant when you need to access properties dynamically or ensure type safety.
19412
+ *
19413
+ * @example
19414
+ * ```typescript
19415
+ * // Direct property access
19416
+ * const value = parking[KEY_PARKING_UPDATED_ON];
19417
+ *
19418
+ * // Dynamic property access
19419
+ * const propertyName = KEY_PARKING_UPDATED_ON;
19420
+ * const value = parking[propertyName];
19421
+ * ```
19422
+ *
19423
+ * @see {@link Parking} - The TypeScript type definition
19424
+ * @see {@link KEYS_PARKING} - Array of all keys for this type
19425
+ */
19426
+ export const KEY_PARKING_UPDATED_ON: keyof Parking = 'updated_on';
19427
+
19428
+ /**
19429
+ * Array of all Parking property keys
19430
+ *
19431
+ * @remarks
19432
+ * This constant provides a readonly array containing all valid property keys for Parking objects.
19433
+ * Useful for iteration, validation, and generating dynamic UI components.
19434
+ *
19435
+ * @example
19436
+ * ```typescript
19437
+ * // Iterating through all keys
19438
+ * for (const key of KEYS_PARKING) {
19439
+ * console.log(`Property: ${key}, Value: ${parking[key]}`);
19440
+ * }
19441
+ *
19442
+ * // Validation
19443
+ * const isValidKey = KEYS_PARKING.includes(someKey);
19444
+ * ```
19445
+ *
19446
+ * @see {@link Parking} - The TypeScript type definition
19447
+ */
19448
+ export const KEYS_PARKING = [
19449
+ KEY_PARKING_COMPLIANCE_STATUS,
19450
+ KEY_PARKING_CONTENT_LANGUAGE,
19451
+ KEY_PARKING_CONTENT_URL,
19452
+ KEY_PARKING_CREATED_ON,
19453
+ KEY_PARKING_DOMAIN,
19454
+ KEY_PARKING_ENABLED,
19455
+ KEY_PARKING_NOTE,
19456
+ KEY_PARKING_PARKING_ID,
19457
+ KEY_PARKING_UPDATED_ON,
19458
+ ] as const satisfies (keyof Parking)[];
19459
+
19196
19460
  /**
19197
19461
  * New Password
19198
19462
  *
@@ -4633,6 +4633,45 @@ export type GET_OrganizationsUsers_Request = {
4633
4633
  */
4634
4634
  export type GET_OrganizationsUsers_Request_Query = GET_OrganizationsUsers_Request['parameters']['query'];
4635
4635
 
4636
+ /**
4637
+ * Request type for GET Parking endpoint
4638
+ *
4639
+ * List parking entries
4640
+ * Retrieves a paginated list of parking entries for the organization
4641
+ *
4642
+ * @remarks
4643
+ * This type defines the complete request structure for the GET Parking endpoint.
4644
+ * It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
4645
+ * Use this type to ensure type safety when making API requests to this endpoint.
4646
+ *
4647
+ * @example
4648
+ * Use this type to ensure type safety when making API requests to this endpoint.
4649
+ *
4650
+ * @path /v1/parking
4651
+ *
4652
+ * @see {@link GET_Parking_Request_Query} - Query parameters type
4653
+ * @see {@link GET_Parking_Request_Path} - Path parameters type
4654
+ * @see {@link GET_Parking_Request_Body} - Request body type
4655
+ */
4656
+ export type GET_Parking_Request = {
4657
+ parameters: {
4658
+ query: operations['list_parking_v1_parking_get']['parameters']['query'];
4659
+ };
4660
+ }
4661
+ /**
4662
+ * Query parameters for GET /v1/parking
4663
+ *
4664
+ * @remarks
4665
+ * This type defines the query parameters for the GET /v1/parking endpoint.
4666
+ * It provides type safety for all query parameters as defined in the OpenAPI specification.
4667
+ *
4668
+ * @example
4669
+ * Use this type to ensure type safety for query parameters.
4670
+ *
4671
+ * @path /v1/parking
4672
+ */
4673
+ export type GET_Parking_Request_Query = GET_Parking_Request['parameters']['query'];
4674
+
4636
4675
  /**
4637
4676
  * Request type for GET Tlds endpoint
4638
4677
  *
@@ -34,7 +34,7 @@
34
34
 
35
35
  import { DomainDnssecDataArray, OrganizationAttribute2Array, IpRestrictionArray, TldResponseShortArray } from './schemas-arrays.d';
36
36
 
37
- import { Pagination_EmailForwardLog, HTTPValidationError, Pagination_ObjectLog, Pagination_RequestHistory, Problem, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DomainForwardZone, EmailForwardZone, Pagination_DomainForwardZone, Pagination_EmailForwardZone, DnsZoneSummary, Pagination_DomainForward, DomainForward, DomainForwardSet, DomainForwardMetrics, DomainForwardBrowserStats, DomainForwardGeoStats, DomainForwardPlatformStats, DomainForwardReferrerStats, DomainForwardStatusCodeStats, DomainForwardMetricsTimeSeries, DomainForwardUserAgentStats, DomainForwardVisitsByKey, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, DomainSummary, DomainWithdraw, RequestAuthcode, DomainTransit, RequestAuthcode2, Pagination_EmailForward, EmailForward, EmailForwardAlias, EmailForwardMetrics, Pagination_Event, EventSchema, Pagination_Organization, Organization, OrganizationWithBillingData, Pagination_Invoice, GetPrices, Pagination_BillingTransaction, BillingTransaction, IpRestriction, Pagination_UserPublic, TldSpecification, UserPublic, UserPublicWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
37
+ import { Pagination_EmailForwardLog, HTTPValidationError, Pagination_ObjectLog, Pagination_RequestHistory, Problem, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DomainForwardZone, EmailForwardZone, Pagination_DomainForwardZone, Pagination_EmailForwardZone, DnsZoneSummary, Pagination_DomainForward, DomainForward, DomainForwardSet, DomainForwardMetrics, DomainForwardBrowserStats, DomainForwardGeoStats, DomainForwardPlatformStats, DomainForwardReferrerStats, DomainForwardStatusCodeStats, DomainForwardMetricsTimeSeries, DomainForwardUserAgentStats, DomainForwardVisitsByKey, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, DomainSummary, DomainWithdraw, RequestAuthcode, DomainTransit, RequestAuthcode2, Pagination_EmailForward, EmailForward, EmailForwardAlias, EmailForwardMetrics, Pagination_Event, EventSchema, Pagination_Organization, Organization, OrganizationWithBillingData, Pagination_Invoice, GetPrices, Pagination_BillingTransaction, BillingTransaction, IpRestriction, Pagination_UserPublic, Pagination_Parking, TldSpecification, UserPublic, UserPublicWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
38
38
 
39
39
  /**
40
40
  * Response types for GET ArchiveEmailForwardLogsAliasesByEmailForwardAliasId endpoint
@@ -8852,6 +8852,98 @@ export type GET_OrganizationsUsers_Response_403 = Problem
8852
8852
  */
8853
8853
  export type GET_OrganizationsUsers_Response_422 = HTTPValidationError
8854
8854
 
8855
+ /**
8856
+ * Response types for GET Parking endpoint
8857
+ *
8858
+ * List parking entries
8859
+ * Retrieves a paginated list of parking entries for the organization
8860
+ *
8861
+ * @remarks
8862
+ * This type defines all possible response structures for the GET Parking endpoint.
8863
+ * Each response code maps to a specific response type as defined in the OpenAPI specification.
8864
+ * Use this type to ensure type safety when handling API responses from this endpoint.
8865
+ *
8866
+
8867
+ *
8868
+ * @path /v1/parking
8869
+ *
8870
+ * @see {@link GET_Parking_Response_200} - 200 response type
8871
+ * @see {@link GET_Parking_Response_401} - 401 response type
8872
+ * @see {@link GET_Parking_Response_403} - 403 response type
8873
+ * @see {@link GET_Parking_Response_422} - 422 response type
8874
+ *
8875
+
8876
+ */
8877
+ export type GET_Parking_Response = GET_Parking_Response_200 | GET_Parking_Response_401 | GET_Parking_Response_403 | GET_Parking_Response_422;
8878
+
8879
+ /**
8880
+ * 200 response for GET Parking endpoint
8881
+ *
8882
+ * @remarks
8883
+ * This type defines the response structure for the 200 status code
8884
+ * of the GET Parking endpoint.
8885
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
8886
+ *
8887
+
8888
+ *
8889
+ * @path /v1/parking
8890
+ *
8891
+ * @see {@link GET_Parking_Response} - The main response type definition
8892
+ * @see {@link Pagination_Parking} - The actual schema type definition
8893
+ */
8894
+ export type GET_Parking_Response_200 = Pagination_Parking
8895
+
8896
+ /**
8897
+ * 401 response for GET Parking endpoint
8898
+ *
8899
+ * @remarks
8900
+ * This type defines the response structure for the 401 status code
8901
+ * of the GET Parking endpoint.
8902
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
8903
+ *
8904
+
8905
+ *
8906
+ * @path /v1/parking
8907
+ *
8908
+ * @see {@link GET_Parking_Response} - The main response type definition
8909
+ * @see {@link Problem} - The actual schema type definition
8910
+ */
8911
+ export type GET_Parking_Response_401 = Problem
8912
+
8913
+ /**
8914
+ * 403 response for GET Parking endpoint
8915
+ *
8916
+ * @remarks
8917
+ * This type defines the response structure for the 403 status code
8918
+ * of the GET Parking endpoint.
8919
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
8920
+ *
8921
+
8922
+ *
8923
+ * @path /v1/parking
8924
+ *
8925
+ * @see {@link GET_Parking_Response} - The main response type definition
8926
+ * @see {@link Problem} - The actual schema type definition
8927
+ */
8928
+ export type GET_Parking_Response_403 = Problem
8929
+
8930
+ /**
8931
+ * 422 response for GET Parking endpoint
8932
+ *
8933
+ * @remarks
8934
+ * This type defines the response structure for the 422 status code
8935
+ * of the GET Parking endpoint.
8936
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
8937
+ *
8938
+
8939
+ *
8940
+ * @path /v1/parking
8941
+ *
8942
+ * @see {@link GET_Parking_Response} - The main response type definition
8943
+ * @see {@link HTTPValidationError} - The actual schema type definition
8944
+ */
8945
+ export type GET_Parking_Response_422 = HTTPValidationError
8946
+
8855
8947
  /**
8856
8948
  * Response types for GET Tlds endpoint
8857
8949
  *
@@ -21,7 +21,7 @@
21
21
  * This file is auto-generated from the OpenAPI specification.
22
22
  * Do not edit manually.
23
23
  */
24
- import { DomainDnssecData, DomainDnssecDataCreate, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, TldResponseShort, RegistryHandleAttributeType, ContactAttributeDefinition, ContactRoleAttributeRequirement, PostalAddressType, ContactConfigBase, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsRecordPatchOp, DnsRrset, DnsRrsetPatchOp, DomainAvailabilityCheck, ContactHandle, Nameserver, BrowserStatsBucket, GeoStatsBucket, TimeSeriesBucket, DomainForwardPatchOp, PlatformStatsBucket, HttpRedirectList, ReferrerStatsBucket, StatusCodeStatsBucket, UserAgentStatsBucket, VisitsByKeyBucket, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost, DomainSearchSuggestionWithPrice, DomainStatus, DomainClientStatus, EmailForwardAliasCreate, EmailForwardLogEvent, EmailForwardAliasMetrics, EmailForwardAlias, EmailForward, PriceInfo, ValidationError, LaunchPhaseBase, LocalPresenceRequirementType, DomainContactType, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactSchema, DnsZone, DomainForwardZone, Domain, EmailForwardLog, EmailForwardZone, EventResponse, Invoice, ObjectLog, Organization, RequestHistory, UserPublic, Period, Permission, PremiumAffectsType, Relation, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
24
+ import { DomainDnssecData, DomainDnssecDataCreate, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, TldResponseShort, RegistryHandleAttributeType, ContactAttributeDefinition, ContactRoleAttributeRequirement, PostalAddressType, ContactConfigBase, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsRecordPatchOp, DnsRrset, DnsRrsetPatchOp, DomainAvailabilityCheck, ContactHandle, Nameserver, BrowserStatsBucket, GeoStatsBucket, TimeSeriesBucket, DomainForwardPatchOp, PlatformStatsBucket, HttpRedirectList, ReferrerStatsBucket, StatusCodeStatsBucket, UserAgentStatsBucket, VisitsByKeyBucket, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost, DomainSearchSuggestionWithPrice, DomainStatus, DomainClientStatus, EmailForwardAliasCreate, EmailForwardLogEvent, EmailForwardAliasMetrics, EmailForwardAlias, EmailForward, PriceInfo, ValidationError, LaunchPhaseBase, LocalPresenceRequirementType, DomainContactType, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactSchema, DnsZone, DomainForwardZone, Domain, EmailForwardLog, EmailForwardZone, EventResponse, Invoice, ObjectLog, Organization, Parking, RequestHistory, UserPublic, Period, Permission, PremiumAffectsType, Relation, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
25
25
 
26
26
  /**
27
27
  * DomainDnssecDataResponse
@@ -919,6 +919,20 @@ export type ObjectLogArray = ObjectLog[];
919
919
  * @see {@link Organization} - The individual Organization type definition
920
920
  */
921
921
  export type OrganizationArray = Organization[];
922
+ /**
923
+ * ParkingResponse
924
+ *
925
+ * @remarks
926
+ * Array type for ParkingResponse objects. Used when the API returns a collection of ParkingResponse instances.
927
+ *
928
+ * @example
929
+ * ```typescript
930
+ * const items: ParkingArray = await api.getParkings();
931
+ * ```
932
+ *
933
+ * @see {@link Parking} - The individual ParkingResponse type definition
934
+ */
935
+ export type ParkingArray = Parking[];
922
936
  /**
923
937
  * RequestHistory
924
938
  *
@@ -202,6 +202,22 @@ export type BillingTransactionStatus = components['schemas']['BillingTransaction
202
202
  * @see {@link components} - The OpenAPI components schema definition
203
203
  */
204
204
  export type BrowserStatsBucket = components['schemas']['BrowserStatsBucket'];
205
+ /**
206
+ * ComplianceStatus
207
+ *
208
+ * @remarks
209
+ * Type alias for the `ComplianceStatus` OpenAPI schema.
210
+ * This type represents compliancestatus data structures used in API requests and responses.
211
+ *
212
+ * @example
213
+ * ```typescript
214
+ * const response = await api.getComplianceStatus();
215
+ * const item: ComplianceStatus = response.results;
216
+ * ```
217
+ *
218
+ * @see {@link components} - The OpenAPI components schema definition
219
+ */
220
+ export type ComplianceStatus = components['schemas']['ComplianceStatus'];
205
221
  /**
206
222
  * ContactAttributeDefinition. Definition of a possible attribute for a TLD.
207
223
  *
@@ -3071,6 +3087,22 @@ export type Pagination_ObjectLog = components['schemas']['Pagination_ObjectLog_'
3071
3087
  * @see {@link components} - The OpenAPI components schema definition
3072
3088
  */
3073
3089
  export type Pagination_Organization = components['schemas']['Pagination_Organization_'];
3090
+ /**
3091
+ * Pagination[ParkingResponse]
3092
+ *
3093
+ * @remarks
3094
+ * Type alias for the `Pagination_ParkingResponse_` OpenAPI schema.
3095
+ * This type represents pagination[parkingresponse] data structures used in API requests and responses.
3096
+ *
3097
+ * @example
3098
+ * ```typescript
3099
+ * const response = await api.getPagination_Parking();
3100
+ * const item: Pagination_Parking = response.results;
3101
+ * ```
3102
+ *
3103
+ * @see {@link components} - The OpenAPI components schema definition
3104
+ */
3105
+ export type Pagination_Parking = components['schemas']['Pagination_ParkingResponse_'];
3074
3106
  /**
3075
3107
  * Pagination[RequestHistory]
3076
3108
  *
@@ -3103,6 +3135,38 @@ export type Pagination_RequestHistory = components['schemas']['Pagination_Reques
3103
3135
  * @see {@link components} - The OpenAPI components schema definition
3104
3136
  */
3105
3137
  export type Pagination_UserPublic = components['schemas']['Pagination_UserPublic_'];
3138
+ /**
3139
+ * ParkingResponse
3140
+ *
3141
+ * @remarks
3142
+ * Type alias for the `ParkingResponse` OpenAPI schema.
3143
+ * This type represents parkingresponse data structures used in API requests and responses.
3144
+ *
3145
+ * @example
3146
+ * ```typescript
3147
+ * const response = await api.getParking();
3148
+ * const item: Parking = response.results;
3149
+ * ```
3150
+ *
3151
+ * @see {@link components} - The OpenAPI components schema definition
3152
+ */
3153
+ export type Parking = components['schemas']['ParkingResponse'];
3154
+ /**
3155
+ * ParkingSortField
3156
+ *
3157
+ * @remarks
3158
+ * Type alias for the `ParkingSortField` OpenAPI schema.
3159
+ * This type represents parkingsortfield data structures used in API requests and responses.
3160
+ *
3161
+ * @example
3162
+ * ```typescript
3163
+ * const response = await api.getParkingSortField();
3164
+ * const item: ParkingSortField = response.results;
3165
+ * ```
3166
+ *
3167
+ * @see {@link components} - The OpenAPI components schema definition
3168
+ */
3169
+ export type ParkingSortField = components['schemas']['ParkingSortField'];
3106
3170
  /**
3107
3171
  * PasswordUpdate
3108
3172
  *
package/src/openapi.yaml CHANGED
@@ -223,6 +223,14 @@ components:
223
223
  - unique
224
224
  title: BrowserStatsBucket
225
225
  type: object
226
+ ComplianceStatus:
227
+ enum:
228
+ - preparing
229
+ - pending
230
+ - approved
231
+ - disapproved
232
+ title: ComplianceStatus
233
+ type: string
226
234
  ContactAttributeDefinition:
227
235
  description: Definition of a possible attribute for a TLD.
228
236
  properties:
@@ -4850,6 +4858,20 @@ components:
4850
4858
  - pagination
4851
4859
  title: Pagination[Organization]
4852
4860
  type: object
4861
+ Pagination_ParkingResponse_:
4862
+ properties:
4863
+ pagination:
4864
+ $ref: '#/components/schemas/PaginationMetadata'
4865
+ results:
4866
+ items:
4867
+ $ref: '#/components/schemas/ParkingResponse'
4868
+ title: Results
4869
+ type: array
4870
+ required:
4871
+ - results
4872
+ - pagination
4873
+ title: Pagination[ParkingResponse]
4874
+ type: object
4853
4875
  Pagination_RequestHistory_:
4854
4876
  properties:
4855
4877
  pagination:
@@ -4878,6 +4900,73 @@ components:
4878
4900
  - pagination
4879
4901
  title: Pagination[UserPublic]
4880
4902
  type: object
4903
+ ParkingResponse:
4904
+ properties:
4905
+ compliance_status:
4906
+ anyOf:
4907
+ - $ref: '#/components/schemas/ComplianceStatus'
4908
+ - type: 'null'
4909
+ description: The compliance status of the parking ad
4910
+ content_language:
4911
+ anyOf:
4912
+ - type: string
4913
+ - type: 'null'
4914
+ description: The primary language code for the ad content
4915
+ title: Content Language
4916
+ content_url:
4917
+ anyOf:
4918
+ - type: string
4919
+ - type: 'null'
4920
+ description: The content URL for approved parking ads
4921
+ title: Content Url
4922
+ created_on:
4923
+ description: When the parking entry was created
4924
+ format: date-time
4925
+ title: Created On
4926
+ type: string
4927
+ domain:
4928
+ description: The domain name for the parking ad
4929
+ title: Domain
4930
+ type: string
4931
+ enabled:
4932
+ description: Whether parking is enabled
4933
+ title: Enabled
4934
+ type: boolean
4935
+ note:
4936
+ anyOf:
4937
+ - type: string
4938
+ - type: 'null'
4939
+ description: Additional notes about the parking ad
4940
+ title: Note
4941
+ parking_id:
4942
+ description: Unique identifier for the parking entry
4943
+ examples:
4944
+ - parking_01h45ytscbebyvny4gc8cr8ma2
4945
+ format: typeid
4946
+ pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
4947
+ title: Parking Id
4948
+ type: string
4949
+ x-typeid-prefix: parking
4950
+ updated_on:
4951
+ description: When the parking entry was last updated
4952
+ format: date-time
4953
+ title: Updated On
4954
+ type: string
4955
+ required:
4956
+ - parking_id
4957
+ - domain
4958
+ - enabled
4959
+ - created_on
4960
+ - updated_on
4961
+ title: ParkingResponse
4962
+ type: object
4963
+ ParkingSortField:
4964
+ enum:
4965
+ - domain
4966
+ - created_on
4967
+ - updated_on
4968
+ title: ParkingSortField
4969
+ type: string
4881
4970
  PasswordUpdate:
4882
4971
  properties:
4883
4972
  new_password:
@@ -4965,6 +5054,8 @@ components:
4965
5054
  - view_domain_forwards
4966
5055
  - view_email_forwards
4967
5056
  - view_events
5057
+ - view_parking
5058
+ - manage_parking
4968
5059
  title: Permission
4969
5060
  type: string
4970
5061
  PermissionSet:
@@ -6657,7 +6748,7 @@ info:
6657
6748
  '
6658
6749
  summary: OpusDNS - your gateway to a seamless domain management experience.
6659
6750
  title: OpusDNS API
6660
- version: 2026-01-15-095407
6751
+ version: 2026-01-20-080953
6661
6752
  x-logo:
6662
6753
  altText: OpusDNS API Reference
6663
6754
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -14456,6 +14547,106 @@ paths:
14456
14547
  summary: Get a specific transaction
14457
14548
  tags:
14458
14549
  - organization
14550
+ /v1/parking:
14551
+ get:
14552
+ description: Retrieves a paginated list of parking entries for the organization
14553
+ operationId: list_parking_v1_parking_get
14554
+ parameters:
14555
+ - in: query
14556
+ name: sort_by
14557
+ required: false
14558
+ schema:
14559
+ $ref: '#/components/schemas/ParkingSortField'
14560
+ default: created_on
14561
+ - in: query
14562
+ name: sort_order
14563
+ required: false
14564
+ schema:
14565
+ $ref: '#/components/schemas/SortOrder'
14566
+ default: desc
14567
+ - in: query
14568
+ name: search
14569
+ required: false
14570
+ schema:
14571
+ anyOf:
14572
+ - type: string
14573
+ - type: 'null'
14574
+ title: Search
14575
+ - in: query
14576
+ name: enabled
14577
+ required: false
14578
+ schema:
14579
+ anyOf:
14580
+ - type: boolean
14581
+ - type: 'null'
14582
+ title: Enabled
14583
+ - in: query
14584
+ name: compliance_status
14585
+ required: false
14586
+ schema:
14587
+ anyOf:
14588
+ - $ref: '#/components/schemas/ComplianceStatus'
14589
+ - type: 'null'
14590
+ title: Compliance Status
14591
+ - in: query
14592
+ name: page
14593
+ required: false
14594
+ schema:
14595
+ default: 1
14596
+ minimum: 1
14597
+ title: Page
14598
+ type: integer
14599
+ - in: query
14600
+ name: page_size
14601
+ required: false
14602
+ schema:
14603
+ default: 10
14604
+ maximum: 1000
14605
+ minimum: 1
14606
+ title: Page Size
14607
+ type: integer
14608
+ responses:
14609
+ '200':
14610
+ content:
14611
+ application/json:
14612
+ schema:
14613
+ $ref: '#/components/schemas/Pagination_ParkingResponse_'
14614
+ description: Successful Response
14615
+ '401':
14616
+ content:
14617
+ application/problem+json:
14618
+ example:
14619
+ code: ERROR_AUTHENTICATION
14620
+ detail: Additional error context.
14621
+ status: 401
14622
+ title: Authentication Error
14623
+ type: authentication
14624
+ schema:
14625
+ $ref: '#/components/schemas/Problem'
14626
+ description: Unauthorized
14627
+ '403':
14628
+ content:
14629
+ application/problem+json:
14630
+ example:
14631
+ code: ERROR_PERMISSION_DENIED
14632
+ detail: Insufficient permissions to perform this action
14633
+ status: 403
14634
+ title: Permission Denied
14635
+ type: permission-denied
14636
+ schema:
14637
+ $ref: '#/components/schemas/Problem'
14638
+ description: Forbidden
14639
+ '422':
14640
+ content:
14641
+ application/problem+json:
14642
+ schema:
14643
+ $ref: '#/components/schemas/HTTPValidationError'
14644
+ description: Validation Error
14645
+ security:
14646
+ - OAuth2PasswordBearer: []
14647
+ summary: List parking entries
14648
+ tags:
14649
+ - parking
14459
14650
  /v1/tlds/:
14460
14651
  get:
14461
14652
  description: Retrieves a list of TLD Specifications we have support for
@@ -15022,6 +15213,11 @@ tags:
15022
15213
  '
15023
15214
  name: domain_forward
15024
15215
  x-displayName: Domain forwards
15216
+ - description: 'Endpoints for managing domain parking.
15217
+
15218
+ '
15219
+ name: parking
15220
+ x-displayName: Domain parking
15025
15221
  - description: 'Endpoints for interacting with events.
15026
15222
 
15027
15223
  '
@@ -15065,6 +15261,7 @@ x-tagGroups:
15065
15261
  - dns
15066
15262
  - email_forward
15067
15263
  - domain_forward
15264
+ - parking
15068
15265
  - domain_search
15069
15266
  - archive
15070
15267
  - jobs
package/src/schema.d.ts CHANGED
@@ -1548,6 +1548,26 @@ export interface paths {
1548
1548
  patch?: never;
1549
1549
  trace?: never;
1550
1550
  };
1551
+ "/v1/parking": {
1552
+ parameters: {
1553
+ query?: never;
1554
+ header?: never;
1555
+ path?: never;
1556
+ cookie?: never;
1557
+ };
1558
+ /**
1559
+ * List parking entries
1560
+ * @description Retrieves a paginated list of parking entries for the organization
1561
+ */
1562
+ get: operations["list_parking_v1_parking_get"];
1563
+ put?: never;
1564
+ post?: never;
1565
+ delete?: never;
1566
+ options?: never;
1567
+ head?: never;
1568
+ patch?: never;
1569
+ trace?: never;
1570
+ };
1551
1571
  "/v1/tlds/": {
1552
1572
  parameters: {
1553
1573
  query?: never;
@@ -1903,6 +1923,11 @@ export interface components {
1903
1923
  /** Unique */
1904
1924
  unique: number;
1905
1925
  };
1926
+ /**
1927
+ * ComplianceStatus
1928
+ * @enum {string}
1929
+ */
1930
+ ComplianceStatus: "preparing" | "pending" | "approved" | "disapproved";
1906
1931
  /**
1907
1932
  * ContactAttributeDefinition
1908
1933
  * @description Definition of a possible attribute for a TLD.
@@ -4970,6 +4995,12 @@ export interface components {
4970
4995
  /** Results */
4971
4996
  results: components["schemas"]["Organization"][];
4972
4997
  };
4998
+ /** Pagination[ParkingResponse] */
4999
+ Pagination_ParkingResponse_: {
5000
+ pagination: components["schemas"]["PaginationMetadata"];
5001
+ /** Results */
5002
+ results: components["schemas"]["ParkingResponse"][];
5003
+ };
4973
5004
  /** Pagination[RequestHistory] */
4974
5005
  Pagination_RequestHistory_: {
4975
5006
  pagination: components["schemas"]["PaginationMetadata"];
@@ -4982,6 +5013,60 @@ export interface components {
4982
5013
  /** Results */
4983
5014
  results: components["schemas"]["UserPublic"][];
4984
5015
  };
5016
+ /** ParkingResponse */
5017
+ ParkingResponse: {
5018
+ /** @description The compliance status of the parking ad */
5019
+ compliance_status?: components["schemas"]["ComplianceStatus"] | null;
5020
+ /**
5021
+ * Content Language
5022
+ * @description The primary language code for the ad content
5023
+ */
5024
+ content_language?: string | null;
5025
+ /**
5026
+ * Content Url
5027
+ * @description The content URL for approved parking ads
5028
+ */
5029
+ content_url?: string | null;
5030
+ /**
5031
+ * Created On
5032
+ * Format: date-time
5033
+ * @description When the parking entry was created
5034
+ */
5035
+ created_on: Date;
5036
+ /**
5037
+ * Domain
5038
+ * @description The domain name for the parking ad
5039
+ */
5040
+ domain: string;
5041
+ /**
5042
+ * Enabled
5043
+ * @description Whether parking is enabled
5044
+ */
5045
+ enabled: boolean;
5046
+ /**
5047
+ * Note
5048
+ * @description Additional notes about the parking ad
5049
+ */
5050
+ note?: string | null;
5051
+ /**
5052
+ * Parking Id
5053
+ * Format: typeid
5054
+ * @description Unique identifier for the parking entry
5055
+ * @example parking_01h45ytscbebyvny4gc8cr8ma2
5056
+ */
5057
+ parking_id: TypeId<"parking">;
5058
+ /**
5059
+ * Updated On
5060
+ * Format: date-time
5061
+ * @description When the parking entry was last updated
5062
+ */
5063
+ updated_on: Date;
5064
+ };
5065
+ /**
5066
+ * ParkingSortField
5067
+ * @enum {string}
5068
+ */
5069
+ ParkingSortField: "domain" | "created_on" | "updated_on";
4985
5070
  /** PasswordUpdate */
4986
5071
  PasswordUpdate: {
4987
5072
  /**
@@ -5015,7 +5100,7 @@ export interface components {
5015
5100
  * Permission
5016
5101
  * @enum {string}
5017
5102
  */
5018
- 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_sub_zones" | "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_email_forwards" | "view_events";
5103
+ 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_sub_zones" | "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_email_forwards" | "view_events" | "view_parking" | "manage_parking";
5019
5104
  /** PermissionSet */
5020
5105
  PermissionSet: {
5021
5106
  /** Permissions */
@@ -12565,6 +12650,75 @@ export interface operations {
12565
12650
  };
12566
12651
  };
12567
12652
  };
12653
+ list_parking_v1_parking_get: {
12654
+ parameters: {
12655
+ query?: {
12656
+ sort_by?: components["schemas"]["ParkingSortField"];
12657
+ sort_order?: components["schemas"]["SortOrder"];
12658
+ search?: string | null;
12659
+ enabled?: boolean | null;
12660
+ compliance_status?: components["schemas"]["ComplianceStatus"] | null;
12661
+ page?: number;
12662
+ page_size?: number;
12663
+ };
12664
+ header?: never;
12665
+ path?: never;
12666
+ cookie?: never;
12667
+ };
12668
+ requestBody?: never;
12669
+ responses: {
12670
+ /** @description Successful Response */
12671
+ 200: {
12672
+ headers: {
12673
+ [name: string]: unknown;
12674
+ };
12675
+ content: {
12676
+ "application/json": components["schemas"]["Pagination_ParkingResponse_"];
12677
+ };
12678
+ };
12679
+ /** @description Unauthorized */
12680
+ 401: {
12681
+ headers: {
12682
+ [name: string]: unknown;
12683
+ };
12684
+ content: {
12685
+ /** @example {
12686
+ * "code": "ERROR_AUTHENTICATION",
12687
+ * "detail": "Additional error context.",
12688
+ * "status": 401,
12689
+ * "title": "Authentication Error",
12690
+ * "type": "authentication"
12691
+ * } */
12692
+ "application/problem+json": components["schemas"]["Problem"];
12693
+ };
12694
+ };
12695
+ /** @description Forbidden */
12696
+ 403: {
12697
+ headers: {
12698
+ [name: string]: unknown;
12699
+ };
12700
+ content: {
12701
+ /** @example {
12702
+ * "code": "ERROR_PERMISSION_DENIED",
12703
+ * "detail": "Insufficient permissions to perform this action",
12704
+ * "status": 403,
12705
+ * "title": "Permission Denied",
12706
+ * "type": "permission-denied"
12707
+ * } */
12708
+ "application/problem+json": components["schemas"]["Problem"];
12709
+ };
12710
+ };
12711
+ /** @description Validation Error */
12712
+ 422: {
12713
+ headers: {
12714
+ [name: string]: unknown;
12715
+ };
12716
+ content: {
12717
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
12718
+ };
12719
+ };
12720
+ };
12721
+ };
12568
12722
  get_tld_specifications_v1_tlds__get: {
12569
12723
  parameters: {
12570
12724
  query?: {