@opusdns/api 0.252.0 → 0.254.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.252.0",
6
+ "version": "0.254.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, BatchSortField, BatchStatus, BillingTransactionAction, BillingTransactionProductType, BillingTransactionSortField, BillingTransactionStatus, ComplianceStatus, ConditionOperator, ContactAttributeSetSortField, ContactSortField, Currency, DeletePolicyType, DnsChangeAction, DnsProtectedReason, DnsRrsetType, DnssecAlgorithm, DnssecDigestType, DnssecModeType, DnssecRecordType, DnssecStatus, DomainAttributeKey, DomainAvailabilityStatus, DomainClientStatus, DomainContactType, DomainForwardSortField, DomainForwardZoneSortField, DomainIncludeField, DomainSortField, DomainStatus, EmailForwardLogSortField, EmailForwardLogStatus, EmailForwardSortField, EmailForwardZoneSortField, EmailVerificationStatus, EventObjectType, EventSortField, EventSubtype, EventType, ExecutingEntity, HTTPMethod, HostStatus, HttpProtocol, InvoiceResponsePaymentStatus, InvoiceResponseStatus, InvoiceResponseType, JobStatus, LaunchPhaseType, LegalRequirementOperationType, LegalRequirementType, LocalPresenceRequirementType, MetricsGrouping, ObjectEventType, ObjectLogSortField, OrganizationSortField, OrganizationStatus, ParkingSortField, PatchOp, PeriodUnit, Permission, PostTransferRequirements, PostalAddressType, PremiumAffectsType, PremiumSourceType, Protocol, RedirectCode, RegistrantChangeType, RegistryHandleAttributeType, Relation, RenewalMode, ReportStatus, ReportTriggerType, ReportType, RequestHistorySortField, ReservedSourceType, SortOrder, SyncOperationType, TLDType, TagColor, TimeRange, TransferAckType, UserSortField, UserStatus, VerificationType, ZoneSortField } from './schemas';
24
+ import { AllocationMethodType, AttributeType, BatchSortField, BatchStatus, BillingTransactionAction, BillingTransactionProductType, BillingTransactionSortField, BillingTransactionStatus, ComplianceStatus, ConditionOperator, ContactAttributeSetSortField, ContactSortField, Currency, DeletePolicyType, DnsChangeAction, DnsProtectedReason, DnsRrsetType, DnssecAlgorithm, DnssecDigestType, DnssecModeType, DnssecRecordType, DnssecStatus, DomainAttributeKey, DomainAvailabilityStatus, DomainClientStatus, DomainContactType, DomainForwardSortField, DomainForwardZoneSortField, DomainIncludeField, DomainSortField, DomainStatus, EmailForwardLogSortField, EmailForwardLogStatus, EmailForwardSortField, EmailForwardZoneSortField, EmailVerificationStatus, EventObjectType, EventSortField, EventSubtype, EventType, ExecutingEntity, HTTPMethod, HostStatus, HttpProtocol, InvoiceResponsePaymentStatus, InvoiceResponseStatus, InvoiceResponseType, JobStatus, LaunchPhaseType, LegalRequirementOperationType, LegalRequirementType, LocalPresenceRequirementType, MetricsGrouping, ObjectEventType, ObjectLogSortField, OrganizationSortField, OrganizationStatus, ParkingSortField, PatchOp, PeriodUnit, Permission, PostTransferRequirements, PostalAddressType, PremiumAffectsType, PremiumSourceType, Protocol, RedirectCode, RegistrantChangeType, RegistryHandleAttributeType, Relation, RenewalMode, ReportStatus, ReportTriggerType, ReportType, RequestHistorySortField, ReservedSourceType, SortOrder, SyncOperationType, TLDType, TagColor, TagFilterMode, TimeRange, TransferAckType, UserSortField, UserStatus, VerificationType, ZoneSortField } from './schemas';
25
25
 
26
26
  /**
27
27
  * AllocationMethodType. Auto-generated enum for AllocationMethodType
@@ -4529,6 +4529,56 @@ export const TAG_COLOR_VALUES = [
4529
4529
  'color-10'
4530
4530
  ] as const satisfies [string, ...string[]] | TagColor[];
4531
4531
 
4532
+ /**
4533
+ * TagFilterMode. Auto-generated enum for TagFilterMode
4534
+ *
4535
+ * @remarks
4536
+ * This constant provides both object and array forms for the TagFilterMode enum.
4537
+ * The object form allows key-value access, while the array form enables iteration and validation.
4538
+ *
4539
+ * @example
4540
+ * ```typescript
4541
+ * // Using the object form for key-value access
4542
+ * const status = TAG_FILTER_MODE.SUCCESS;
4543
+ *
4544
+ * // Using the array form for iteration
4545
+ * const allStatuses = TAG_FILTER_MODE_VALUES;
4546
+ * console.log(`Available statuses: ${allStatuses.join(', ')}`);
4547
+ * ```
4548
+ *
4549
+ * @see {@link TagFilterMode} - The TypeScript type definition
4550
+ */
4551
+ export const TAG_FILTER_MODE = {
4552
+ MATCH_ANY: "match_any",
4553
+ MATCH_ALL: "match_all",
4554
+ } as const satisfies Record<string, TagFilterMode>;
4555
+
4556
+ /**
4557
+ * Array of all TagFilterMode enum values
4558
+ *
4559
+ * @remarks
4560
+ * This constant provides a array containing all valid TagFilterMode enum values.
4561
+ * Useful for iteration, validation, and generating dynamic UI components.
4562
+ *
4563
+ * @example
4564
+ * ```typescript
4565
+ * // Iterating through all values
4566
+ * for (const value of TAG_FILTER_MODE_VALUES) {
4567
+ * console.log(`Processing: ${value}`);
4568
+ * }
4569
+ *
4570
+ * // Validation
4571
+ * const isValid = TAG_FILTER_MODE_VALUES.includes(someValue);
4572
+ * ```
4573
+ *
4574
+ * @see {@link TagFilterMode} - The TypeScript type definition
4575
+ * @see {@link TAG_FILTER_MODE} - The object form of this enum
4576
+ */
4577
+ export const TAG_FILTER_MODE_VALUES = [
4578
+ 'match_any',
4579
+ 'match_all'
4580
+ ] as const satisfies [string, ...string[]] | TagFilterMode[];
4581
+
4532
4582
  /**
4533
4583
  * TimeRange. Auto-generated enum for TimeRange
4534
4584
  *
@@ -2639,8 +2639,8 @@ export type GET_DomainSearchSuggest_Request_Query = GET_DomainSearchSuggest_Requ
2639
2639
  * Use this type to ensure type safety when making API requests to this endpoint.
2640
2640
  *
2641
2641
  * @path /v1/domains
2642
+ * @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
2642
2643
  * @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
2643
- * @param tag_ids (query) - Filter domains by tag IDs (OR semantics). Can be specified multiple times.
2644
2644
  * @param include (query) - Include additional data in the response. Can be specified multiple times.
2645
2645
  *
2646
2646
  * @see {@link GET_Domains_Request_Query} - Query parameters type
@@ -2663,8 +2663,8 @@ export type GET_Domains_Request = {
2663
2663
  * Use this type to ensure type safety for query parameters.
2664
2664
  *
2665
2665
  * @path /v1/domains
2666
+ * @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
2666
2667
  * @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
2667
- * @param tag_ids (query) - Filter domains by tag IDs (OR semantics). Can be specified multiple times.
2668
2668
  * @param include (query) - Include additional data in the response. Can be specified multiple times.
2669
2669
  */
2670
2670
  export type GET_Domains_Request_Query = GET_Domains_Request['parameters']['query'];
@@ -5047,8 +5047,8 @@ export type GET_DomainSearchSuggest_Response_502 = Problem
5047
5047
 
5048
5048
  *
5049
5049
  * @path /v1/domains
5050
+ * @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
5050
5051
  * @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
5051
- * @param tag_ids (query) - Filter domains by tag IDs (OR semantics). Can be specified multiple times.
5052
5052
  * @param include (query) - Include additional data in the response. Can be specified multiple times.
5053
5053
  *
5054
5054
  * @see {@link GET_Domains_Response_200} - 200 response type
@@ -5069,8 +5069,8 @@ export type GET_Domains_Response = GET_Domains_Response_200 | GET_Domains_Respon
5069
5069
 
5070
5070
  *
5071
5071
  * @path /v1/domains
5072
+ * @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
5072
5073
  * @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
5073
- * @param tag_ids (query) - Filter domains by tag IDs (OR semantics). Can be specified multiple times.
5074
5074
  * @param include (query) - Include additional data in the response. Can be specified multiple times.
5075
5075
  *
5076
5076
  * @see {@link GET_Domains_Response} - The main response type definition
@@ -5089,8 +5089,8 @@ export type GET_Domains_Response_200 = Pagination_Domain
5089
5089
 
5090
5090
  *
5091
5091
  * @path /v1/domains
5092
+ * @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
5092
5093
  * @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
5093
- * @param tag_ids (query) - Filter domains by tag IDs (OR semantics). Can be specified multiple times.
5094
5094
  * @param include (query) - Include additional data in the response. Can be specified multiple times.
5095
5095
  *
5096
5096
  * @see {@link GET_Domains_Response} - The main response type definition
@@ -5604,6 +5604,22 @@ export type StatusChanges = components['schemas']['StatusChanges'];
5604
5604
  * @see {@link components} - The OpenAPI components schema definition
5605
5605
  */
5606
5606
  export type StatusCodeStatsBucket = components['schemas']['StatusCodeStatsBucket'];
5607
+ /**
5608
+ * StrictMoneyDecimal
5609
+ *
5610
+ * @remarks
5611
+ * Type alias for the `StrictMoneyDecimal` OpenAPI schema.
5612
+ * This type represents strictmoneydecimal data structures used in API requests and responses.
5613
+ *
5614
+ * @example
5615
+ * ```typescript
5616
+ * const response = await api.getStrictMoneyDecimal();
5617
+ * const item: StrictMoneyDecimal = response.results;
5618
+ * ```
5619
+ *
5620
+ * @see {@link components} - The OpenAPI components schema definition
5621
+ */
5622
+ export type StrictMoneyDecimal = components['schemas']['StrictMoneyDecimal'];
5607
5623
  /**
5608
5624
  * SyncOperationType
5609
5625
  *
@@ -5652,6 +5668,22 @@ export type TLDType = components['schemas']['TLDType'];
5652
5668
  * @see {@link components} - The OpenAPI components schema definition
5653
5669
  */
5654
5670
  export type TagColor = components['schemas']['TagColor'];
5671
+ /**
5672
+ * TagFilterMode
5673
+ *
5674
+ * @remarks
5675
+ * Type alias for the `TagFilterMode` OpenAPI schema.
5676
+ * This type represents tagfiltermode data structures used in API requests and responses.
5677
+ *
5678
+ * @example
5679
+ * ```typescript
5680
+ * const response = await api.getTagFilterMode();
5681
+ * const item: TagFilterMode = response.results;
5682
+ * ```
5683
+ *
5684
+ * @see {@link components} - The OpenAPI components schema definition
5685
+ */
5686
+ export type TagFilterMode = components['schemas']['TagFilterMode'];
5655
5687
  /**
5656
5688
  * TimeRange
5657
5689
  *
package/src/openapi.yaml CHANGED
@@ -2543,12 +2543,9 @@ components:
2543
2543
  type: boolean
2544
2544
  expected_price:
2545
2545
  anyOf:
2546
- - pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
2547
- type: string
2546
+ - $ref: '#/components/schemas/StrictMoneyDecimal'
2548
2547
  - type: 'null'
2549
2548
  description: Expected price for premium domain confirmation
2550
- examples:
2551
- - '12.50'
2552
2549
  title: Expected Price
2553
2550
  name:
2554
2551
  description: The domain to be created
@@ -2756,12 +2753,9 @@ components:
2756
2753
  type: boolean
2757
2754
  expected_price:
2758
2755
  anyOf:
2759
- - pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
2760
- type: string
2756
+ - $ref: '#/components/schemas/StrictMoneyDecimal'
2761
2757
  - type: 'null'
2762
2758
  description: Expected price for premium domain confirmation
2763
- examples:
2764
- - '12.50'
2765
2759
  title: Expected Price
2766
2760
  name:
2767
2761
  description: The domain to be created
@@ -3453,12 +3447,9 @@ components:
3453
3447
  type: string
3454
3448
  expected_price:
3455
3449
  anyOf:
3456
- - pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
3457
- type: string
3450
+ - $ref: '#/components/schemas/StrictMoneyDecimal'
3458
3451
  - type: 'null'
3459
3452
  description: Expected price for premium domain confirmation
3460
- examples:
3461
- - '12.50'
3462
3453
  title: Expected Price
3463
3454
  period:
3464
3455
  $ref: '#/components/schemas/DomainPeriod'
@@ -3658,12 +3649,9 @@ components:
3658
3649
  title: Additional Info
3659
3650
  expected_price:
3660
3651
  anyOf:
3661
- - pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
3662
- type: string
3652
+ - $ref: '#/components/schemas/StrictMoneyDecimal'
3663
3653
  - type: 'null'
3664
3654
  description: Expected price for premium domain confirmation
3665
- examples:
3666
- - '12.50'
3667
3655
  title: Expected Price
3668
3656
  reason:
3669
3657
  anyOf:
@@ -4118,12 +4106,9 @@ components:
4118
4106
  type: boolean
4119
4107
  expected_price:
4120
4108
  anyOf:
4121
- - pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
4122
- type: string
4109
+ - $ref: '#/components/schemas/StrictMoneyDecimal'
4123
4110
  - type: 'null'
4124
4111
  description: Expected price for premium domain confirmation
4125
- examples:
4126
- - '12.50'
4127
4112
  title: Expected Price
4128
4113
  name:
4129
4114
  description: The domain to be created
@@ -4184,12 +4169,9 @@ components:
4184
4169
  type: boolean
4185
4170
  expected_price:
4186
4171
  anyOf:
4187
- - pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
4188
- type: string
4172
+ - $ref: '#/components/schemas/StrictMoneyDecimal'
4189
4173
  - type: 'null'
4190
4174
  description: Expected price for premium domain confirmation
4191
- examples:
4192
- - '12.50'
4193
4175
  title: Expected Price
4194
4176
  name:
4195
4177
  description: The domain to be created
@@ -8649,6 +8631,11 @@ components:
8649
8631
  - total
8650
8632
  title: StatusCodeStatsBucket
8651
8633
  type: object
8634
+ StrictMoneyDecimal:
8635
+ examples:
8636
+ - '12.50'
8637
+ pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
8638
+ type: string
8652
8639
  SyncOperationType:
8653
8640
  enum:
8654
8641
  - registration
@@ -8676,6 +8663,12 @@ components:
8676
8663
  - color-10
8677
8664
  title: TagColor
8678
8665
  type: string
8666
+ TagFilterMode:
8667
+ enum:
8668
+ - match_any
8669
+ - match_all
8670
+ title: TagFilterMode
8671
+ type: string
8679
8672
  TimeRange:
8680
8673
  enum:
8681
8674
  - 1h
@@ -9860,7 +9853,7 @@ info:
9860
9853
  \n\n"
9861
9854
  summary: OpusDNS - your gateway to a seamless domain management experience.
9862
9855
  title: OpusDNS API
9863
- version: 2026-04-16-100706
9856
+ version: 2026-04-17-200229
9864
9857
  x-logo:
9865
9858
  altText: OpusDNS API Reference
9866
9859
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -15436,6 +15429,29 @@ paths:
15436
15429
  schema:
15437
15430
  $ref: '#/components/schemas/SortOrder'
15438
15431
  default: desc
15432
+ - description: Filter by tag IDs. Can be specified multiple times.
15433
+ in: query
15434
+ name: tag_ids
15435
+ required: false
15436
+ schema:
15437
+ anyOf:
15438
+ - items:
15439
+ examples:
15440
+ - tag_01h45ytscbebyvny4gc8cr8ma2
15441
+ format: typeid
15442
+ pattern: ^tag_[0-7][0-9a-hjkmnpq-tv-z]{25}$
15443
+ type: string
15444
+ x-typeid-prefix: tag
15445
+ type: array
15446
+ - type: 'null'
15447
+ description: Filter by tag IDs. Can be specified multiple times.
15448
+ title: Tag Ids
15449
+ - in: query
15450
+ name: tag_mode
15451
+ required: false
15452
+ schema:
15453
+ $ref: '#/components/schemas/TagFilterMode'
15454
+ default: match_any
15439
15455
  - in: query
15440
15456
  name: name
15441
15457
  required: false
@@ -15586,25 +15602,6 @@ paths:
15586
15602
  description: Filter domains by registry status. Can be specified multiple
15587
15603
  times (union of all provided values).
15588
15604
  title: Registry Statuses
15589
- - description: Filter domains by tag IDs (OR semantics). Can be specified multiple
15590
- times.
15591
- in: query
15592
- name: tag_ids
15593
- required: false
15594
- schema:
15595
- anyOf:
15596
- - items:
15597
- examples:
15598
- - tag_01h45ytscbebyvny4gc8cr8ma2
15599
- format: typeid
15600
- pattern: ^tag_[0-7][0-9a-hjkmnpq-tv-z]{25}$
15601
- type: string
15602
- x-typeid-prefix: tag
15603
- type: array
15604
- - type: 'null'
15605
- description: Filter domains by tag IDs (OR semantics). Can be specified
15606
- multiple times.
15607
- title: Tag Ids
15608
15605
  - description: Include additional data in the response. Can be specified multiple
15609
15606
  times.
15610
15607
  in: query
package/src/schema.d.ts CHANGED
@@ -3894,9 +3894,8 @@ export interface components {
3894
3894
  /**
3895
3895
  * Expected Price
3896
3896
  * @description Expected price for premium domain confirmation
3897
- * @example 12.50
3898
3897
  */
3899
- expected_price?: string | null;
3898
+ expected_price?: components["schemas"]["StrictMoneyDecimal"] | null;
3900
3899
  /**
3901
3900
  * Name
3902
3901
  * @description The domain to be created
@@ -4045,9 +4044,8 @@ export interface components {
4045
4044
  /**
4046
4045
  * Expected Price
4047
4046
  * @description Expected price for premium domain confirmation
4048
- * @example 12.50
4049
4047
  */
4050
- expected_price?: string | null;
4048
+ expected_price?: components["schemas"]["StrictMoneyDecimal"] | null;
4051
4049
  /**
4052
4050
  * Name
4053
4051
  * @description The domain to be created
@@ -4460,9 +4458,8 @@ export interface components {
4460
4458
  /**
4461
4459
  * Expected Price
4462
4460
  * @description Expected price for premium domain confirmation
4463
- * @example 12.50
4464
4461
  */
4465
- expected_price?: string | null;
4462
+ expected_price?: components["schemas"]["StrictMoneyDecimal"] | null;
4466
4463
  /** @description How long to extend the domain registration */
4467
4464
  period: components["schemas"]["DomainPeriod"];
4468
4465
  };
@@ -4621,9 +4618,8 @@ export interface components {
4621
4618
  /**
4622
4619
  * Expected Price
4623
4620
  * @description Expected price for premium domain confirmation
4624
- * @example 12.50
4625
4621
  */
4626
- expected_price?: string | null;
4622
+ expected_price?: components["schemas"]["StrictMoneyDecimal"] | null;
4627
4623
  /**
4628
4624
  * Reason
4629
4625
  * @description Reason for restoring the domain
@@ -4922,9 +4918,8 @@ export interface components {
4922
4918
  /**
4923
4919
  * Expected Price
4924
4920
  * @description Expected price for premium domain confirmation
4925
- * @example 12.50
4926
4921
  */
4927
- expected_price?: string | null;
4922
+ expected_price?: components["schemas"]["StrictMoneyDecimal"] | null;
4928
4923
  /**
4929
4924
  * Name
4930
4925
  * @description The domain to be created
@@ -4968,9 +4963,8 @@ export interface components {
4968
4963
  /**
4969
4964
  * Expected Price
4970
4965
  * @description Expected price for premium domain confirmation
4971
- * @example 12.50
4972
4966
  */
4973
- expected_price?: string | null;
4967
+ expected_price?: components["schemas"]["StrictMoneyDecimal"] | null;
4974
4968
  /**
4975
4969
  * Name
4976
4970
  * @description The domain to be created
@@ -7926,6 +7920,8 @@ export interface components {
7926
7920
  /** Total */
7927
7921
  total: number;
7928
7922
  };
7923
+ /** @example 12.50 */
7924
+ StrictMoneyDecimal: string;
7929
7925
  /**
7930
7926
  * SyncOperationType
7931
7927
  * @enum {string}
@@ -7941,6 +7937,11 @@ export interface components {
7941
7937
  * @enum {string}
7942
7938
  */
7943
7939
  TagColor: "color-1" | "color-2" | "color-3" | "color-4" | "color-5" | "color-6" | "color-7" | "color-8" | "color-9" | "color-10";
7940
+ /**
7941
+ * TagFilterMode
7942
+ * @enum {string}
7943
+ */
7944
+ TagFilterMode: "match_any" | "match_all";
7944
7945
  /**
7945
7946
  * TimeRange
7946
7947
  * @enum {string}
@@ -12480,6 +12481,9 @@ export interface operations {
12480
12481
  query?: {
12481
12482
  sort_by?: components["schemas"]["DomainSortField"];
12482
12483
  sort_order?: components["schemas"]["SortOrder"];
12484
+ /** @description Filter by tag IDs. Can be specified multiple times. */
12485
+ tag_ids?: TypeId<"tag">[] | null;
12486
+ tag_mode?: components["schemas"]["TagFilterMode"];
12483
12487
  name?: string | null;
12484
12488
  search?: string | null;
12485
12489
  tld?: string | null;
@@ -12498,8 +12502,6 @@ export interface operations {
12498
12502
  registered_before?: Date | null;
12499
12503
  /** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
12500
12504
  registry_statuses?: string[] | null;
12501
- /** @description Filter domains by tag IDs (OR semantics). Can be specified multiple times. */
12502
- tag_ids?: TypeId<"tag">[] | null;
12503
12505
  /** @description Include additional data in the response. Can be specified multiple times. */
12504
12506
  include?: components["schemas"]["DomainIncludeField"][] | null;
12505
12507
  page?: number;