@opusdns/api 1.18.0 → 1.20.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": "^1.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.18.0",
6
+ "version": "1.20.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -582,6 +582,7 @@ export const DNSSEC_STATUS_VALUES = [
582
582
  export const DOMAIN_ATTRIBUTE_KEY = {
583
583
  AUTO_RENEW_PERIOD: "auto_renew_period",
584
584
  MUSIC_REGISTRANT_ATTESTATION: "music_registrant_attestation",
585
+ NIC_IT_COMPLIANCE_CONFIRMATION: "nic_it_compliance_confirmation",
585
586
  TRAVEL_INDUSTRY_ACKNOWLEDGEMENT: "travel_industry_acknowledgement",
586
587
  VERIFICATION_REQUIRED: "verification_required",
587
588
  } as const satisfies Record<string, DomainAttributeKey>;
@@ -589,6 +590,7 @@ export const DOMAIN_ATTRIBUTE_KEY = {
589
590
  export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
590
591
  'auto_renew_period',
591
592
  'music_registrant_attestation',
593
+ 'nic_it_compliance_confirmation',
592
594
  'travel_industry_acknowledgement',
593
595
  'verification_required',
594
596
  ] as const satisfies ReadonlyArray<DomainAttributeKey>;
@@ -186,12 +186,29 @@ import type {
186
186
  EmailForwardAliasMetrics,
187
187
  EmailForwardAliasUpdate,
188
188
  EmailForwardCreate,
189
+ EmailForwardCreateBulkCommand,
190
+ EmailForwardCreateBulkInstance,
191
+ EmailForwardCreateBulkPayload,
192
+ EmailForwardCreateBulkTemplate,
193
+ EmailForwardDeleteBulkCommand,
194
+ EmailForwardDeleteBulkInstance,
195
+ EmailForwardDeleteBulkPayload,
196
+ EmailForwardDisableBulkCommand,
197
+ EmailForwardDisableBulkInstance,
198
+ EmailForwardDisableBulkPayload,
199
+ EmailForwardEnableBulkCommand,
200
+ EmailForwardEnableBulkInstance,
201
+ EmailForwardEnableBulkPayload,
189
202
  EmailForwardLog,
190
203
  EmailForwardLogEvent,
191
204
  EmailForwardMetrics,
192
205
  EmailForwardMetricsFilters,
193
206
  EmailForwardMetricsRates,
194
207
  EmailForward,
208
+ EmailForwardUpdateBulkCommand,
209
+ EmailForwardUpdateBulkInstance,
210
+ EmailForwardUpdateBulkPayload,
211
+ EmailForwardUpdateBulkTemplate,
195
212
  EmailForwardZone,
196
213
  EventData,
197
214
  EventError,
@@ -2622,6 +2639,124 @@ export const KEYS_EMAIL_FORWARD_CREATE = [
2622
2639
  KEY_EMAIL_FORWARD_CREATE_HOSTNAME,
2623
2640
  ] as const satisfies (keyof EmailForwardCreate)[];
2624
2641
 
2642
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_COMMAND_COMMAND = 'command' satisfies keyof EmailForwardCreateBulkCommand;
2643
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof EmailForwardCreateBulkCommand;
2644
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof EmailForwardCreateBulkCommand;
2645
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_COMMAND_VERSION = 'version' satisfies keyof EmailForwardCreateBulkCommand;
2646
+
2647
+ export const KEYS_EMAIL_FORWARD_CREATE_BULK_COMMAND = [
2648
+ KEY_EMAIL_FORWARD_CREATE_BULK_COMMAND_COMMAND,
2649
+ KEY_EMAIL_FORWARD_CREATE_BULK_COMMAND_IDEMPOTENCY_KEY,
2650
+ KEY_EMAIL_FORWARD_CREATE_BULK_COMMAND_PAYLOAD,
2651
+ KEY_EMAIL_FORWARD_CREATE_BULK_COMMAND_VERSION,
2652
+ ] as const satisfies (keyof EmailForwardCreateBulkCommand)[];
2653
+
2654
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_INSTANCE_ALIASES = 'aliases' satisfies keyof EmailForwardCreateBulkInstance;
2655
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_INSTANCE_ENABLED = 'enabled' satisfies keyof EmailForwardCreateBulkInstance;
2656
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof EmailForwardCreateBulkInstance;
2657
+
2658
+ export const KEYS_EMAIL_FORWARD_CREATE_BULK_INSTANCE = [
2659
+ KEY_EMAIL_FORWARD_CREATE_BULK_INSTANCE_ALIASES,
2660
+ KEY_EMAIL_FORWARD_CREATE_BULK_INSTANCE_ENABLED,
2661
+ KEY_EMAIL_FORWARD_CREATE_BULK_INSTANCE_HOSTNAME,
2662
+ ] as const satisfies (keyof EmailForwardCreateBulkInstance)[];
2663
+
2664
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof EmailForwardCreateBulkPayload;
2665
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_PAYLOAD_TEMPLATE = 'template' satisfies keyof EmailForwardCreateBulkPayload;
2666
+
2667
+ export const KEYS_EMAIL_FORWARD_CREATE_BULK_PAYLOAD = [
2668
+ KEY_EMAIL_FORWARD_CREATE_BULK_PAYLOAD_INSTANCES,
2669
+ KEY_EMAIL_FORWARD_CREATE_BULK_PAYLOAD_TEMPLATE,
2670
+ ] as const satisfies (keyof EmailForwardCreateBulkPayload)[];
2671
+
2672
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_TEMPLATE_ALIASES = 'aliases' satisfies keyof EmailForwardCreateBulkTemplate;
2673
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_TEMPLATE_AUTO_CREATE_ZONE = 'auto_create_zone' satisfies keyof EmailForwardCreateBulkTemplate;
2674
+ export const KEY_EMAIL_FORWARD_CREATE_BULK_TEMPLATE_ENABLED = 'enabled' satisfies keyof EmailForwardCreateBulkTemplate;
2675
+
2676
+ export const KEYS_EMAIL_FORWARD_CREATE_BULK_TEMPLATE = [
2677
+ KEY_EMAIL_FORWARD_CREATE_BULK_TEMPLATE_ALIASES,
2678
+ KEY_EMAIL_FORWARD_CREATE_BULK_TEMPLATE_AUTO_CREATE_ZONE,
2679
+ KEY_EMAIL_FORWARD_CREATE_BULK_TEMPLATE_ENABLED,
2680
+ ] as const satisfies (keyof EmailForwardCreateBulkTemplate)[];
2681
+
2682
+ export const KEY_EMAIL_FORWARD_DELETE_BULK_COMMAND_COMMAND = 'command' satisfies keyof EmailForwardDeleteBulkCommand;
2683
+ export const KEY_EMAIL_FORWARD_DELETE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof EmailForwardDeleteBulkCommand;
2684
+ export const KEY_EMAIL_FORWARD_DELETE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof EmailForwardDeleteBulkCommand;
2685
+ export const KEY_EMAIL_FORWARD_DELETE_BULK_COMMAND_VERSION = 'version' satisfies keyof EmailForwardDeleteBulkCommand;
2686
+
2687
+ export const KEYS_EMAIL_FORWARD_DELETE_BULK_COMMAND = [
2688
+ KEY_EMAIL_FORWARD_DELETE_BULK_COMMAND_COMMAND,
2689
+ KEY_EMAIL_FORWARD_DELETE_BULK_COMMAND_IDEMPOTENCY_KEY,
2690
+ KEY_EMAIL_FORWARD_DELETE_BULK_COMMAND_PAYLOAD,
2691
+ KEY_EMAIL_FORWARD_DELETE_BULK_COMMAND_VERSION,
2692
+ ] as const satisfies (keyof EmailForwardDeleteBulkCommand)[];
2693
+
2694
+ export const KEY_EMAIL_FORWARD_DELETE_BULK_INSTANCE_EMAIL_FORWARD_ID = 'email_forward_id' satisfies keyof EmailForwardDeleteBulkInstance;
2695
+ export const KEY_EMAIL_FORWARD_DELETE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof EmailForwardDeleteBulkInstance;
2696
+
2697
+ export const KEYS_EMAIL_FORWARD_DELETE_BULK_INSTANCE = [
2698
+ KEY_EMAIL_FORWARD_DELETE_BULK_INSTANCE_EMAIL_FORWARD_ID,
2699
+ KEY_EMAIL_FORWARD_DELETE_BULK_INSTANCE_HOSTNAME,
2700
+ ] as const satisfies (keyof EmailForwardDeleteBulkInstance)[];
2701
+
2702
+ export const KEY_EMAIL_FORWARD_DELETE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof EmailForwardDeleteBulkPayload;
2703
+
2704
+ export const KEYS_EMAIL_FORWARD_DELETE_BULK_PAYLOAD = [
2705
+ KEY_EMAIL_FORWARD_DELETE_BULK_PAYLOAD_INSTANCES,
2706
+ ] as const satisfies (keyof EmailForwardDeleteBulkPayload)[];
2707
+
2708
+ export const KEY_EMAIL_FORWARD_DISABLE_BULK_COMMAND_COMMAND = 'command' satisfies keyof EmailForwardDisableBulkCommand;
2709
+ export const KEY_EMAIL_FORWARD_DISABLE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof EmailForwardDisableBulkCommand;
2710
+ export const KEY_EMAIL_FORWARD_DISABLE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof EmailForwardDisableBulkCommand;
2711
+ export const KEY_EMAIL_FORWARD_DISABLE_BULK_COMMAND_VERSION = 'version' satisfies keyof EmailForwardDisableBulkCommand;
2712
+
2713
+ export const KEYS_EMAIL_FORWARD_DISABLE_BULK_COMMAND = [
2714
+ KEY_EMAIL_FORWARD_DISABLE_BULK_COMMAND_COMMAND,
2715
+ KEY_EMAIL_FORWARD_DISABLE_BULK_COMMAND_IDEMPOTENCY_KEY,
2716
+ KEY_EMAIL_FORWARD_DISABLE_BULK_COMMAND_PAYLOAD,
2717
+ KEY_EMAIL_FORWARD_DISABLE_BULK_COMMAND_VERSION,
2718
+ ] as const satisfies (keyof EmailForwardDisableBulkCommand)[];
2719
+
2720
+ export const KEY_EMAIL_FORWARD_DISABLE_BULK_INSTANCE_EMAIL_FORWARD_ID = 'email_forward_id' satisfies keyof EmailForwardDisableBulkInstance;
2721
+ export const KEY_EMAIL_FORWARD_DISABLE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof EmailForwardDisableBulkInstance;
2722
+
2723
+ export const KEYS_EMAIL_FORWARD_DISABLE_BULK_INSTANCE = [
2724
+ KEY_EMAIL_FORWARD_DISABLE_BULK_INSTANCE_EMAIL_FORWARD_ID,
2725
+ KEY_EMAIL_FORWARD_DISABLE_BULK_INSTANCE_HOSTNAME,
2726
+ ] as const satisfies (keyof EmailForwardDisableBulkInstance)[];
2727
+
2728
+ export const KEY_EMAIL_FORWARD_DISABLE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof EmailForwardDisableBulkPayload;
2729
+
2730
+ export const KEYS_EMAIL_FORWARD_DISABLE_BULK_PAYLOAD = [
2731
+ KEY_EMAIL_FORWARD_DISABLE_BULK_PAYLOAD_INSTANCES,
2732
+ ] as const satisfies (keyof EmailForwardDisableBulkPayload)[];
2733
+
2734
+ export const KEY_EMAIL_FORWARD_ENABLE_BULK_COMMAND_COMMAND = 'command' satisfies keyof EmailForwardEnableBulkCommand;
2735
+ export const KEY_EMAIL_FORWARD_ENABLE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof EmailForwardEnableBulkCommand;
2736
+ export const KEY_EMAIL_FORWARD_ENABLE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof EmailForwardEnableBulkCommand;
2737
+ export const KEY_EMAIL_FORWARD_ENABLE_BULK_COMMAND_VERSION = 'version' satisfies keyof EmailForwardEnableBulkCommand;
2738
+
2739
+ export const KEYS_EMAIL_FORWARD_ENABLE_BULK_COMMAND = [
2740
+ KEY_EMAIL_FORWARD_ENABLE_BULK_COMMAND_COMMAND,
2741
+ KEY_EMAIL_FORWARD_ENABLE_BULK_COMMAND_IDEMPOTENCY_KEY,
2742
+ KEY_EMAIL_FORWARD_ENABLE_BULK_COMMAND_PAYLOAD,
2743
+ KEY_EMAIL_FORWARD_ENABLE_BULK_COMMAND_VERSION,
2744
+ ] as const satisfies (keyof EmailForwardEnableBulkCommand)[];
2745
+
2746
+ export const KEY_EMAIL_FORWARD_ENABLE_BULK_INSTANCE_EMAIL_FORWARD_ID = 'email_forward_id' satisfies keyof EmailForwardEnableBulkInstance;
2747
+ export const KEY_EMAIL_FORWARD_ENABLE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof EmailForwardEnableBulkInstance;
2748
+
2749
+ export const KEYS_EMAIL_FORWARD_ENABLE_BULK_INSTANCE = [
2750
+ KEY_EMAIL_FORWARD_ENABLE_BULK_INSTANCE_EMAIL_FORWARD_ID,
2751
+ KEY_EMAIL_FORWARD_ENABLE_BULK_INSTANCE_HOSTNAME,
2752
+ ] as const satisfies (keyof EmailForwardEnableBulkInstance)[];
2753
+
2754
+ export const KEY_EMAIL_FORWARD_ENABLE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof EmailForwardEnableBulkPayload;
2755
+
2756
+ export const KEYS_EMAIL_FORWARD_ENABLE_BULK_PAYLOAD = [
2757
+ KEY_EMAIL_FORWARD_ENABLE_BULK_PAYLOAD_INSTANCES,
2758
+ ] as const satisfies (keyof EmailForwardEnableBulkPayload)[];
2759
+
2625
2760
  export const KEY_EMAIL_FORWARD_LOG_CREATED_ON = 'created_on' satisfies keyof EmailForwardLog;
2626
2761
  export const KEY_EMAIL_FORWARD_LOG_DOMAIN = 'domain' satisfies keyof EmailForwardLog;
2627
2762
  export const KEY_EMAIL_FORWARD_LOG_EVENTS = 'events' satisfies keyof EmailForwardLog;
@@ -2732,6 +2867,46 @@ export const KEYS_EMAIL_FORWARD = [
2732
2867
  KEY_EMAIL_FORWARD_UPDATED_ON,
2733
2868
  ] as const satisfies (keyof EmailForward)[];
2734
2869
 
2870
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_COMMAND_COMMAND = 'command' satisfies keyof EmailForwardUpdateBulkCommand;
2871
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof EmailForwardUpdateBulkCommand;
2872
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof EmailForwardUpdateBulkCommand;
2873
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_COMMAND_VERSION = 'version' satisfies keyof EmailForwardUpdateBulkCommand;
2874
+
2875
+ export const KEYS_EMAIL_FORWARD_UPDATE_BULK_COMMAND = [
2876
+ KEY_EMAIL_FORWARD_UPDATE_BULK_COMMAND_COMMAND,
2877
+ KEY_EMAIL_FORWARD_UPDATE_BULK_COMMAND_IDEMPOTENCY_KEY,
2878
+ KEY_EMAIL_FORWARD_UPDATE_BULK_COMMAND_PAYLOAD,
2879
+ KEY_EMAIL_FORWARD_UPDATE_BULK_COMMAND_VERSION,
2880
+ ] as const satisfies (keyof EmailForwardUpdateBulkCommand)[];
2881
+
2882
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_INSTANCE_ALIASES = 'aliases' satisfies keyof EmailForwardUpdateBulkInstance;
2883
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_INSTANCE_EMAIL_FORWARD_ID = 'email_forward_id' satisfies keyof EmailForwardUpdateBulkInstance;
2884
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_INSTANCE_ENABLED = 'enabled' satisfies keyof EmailForwardUpdateBulkInstance;
2885
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_INSTANCE_HOSTNAME = 'hostname' satisfies keyof EmailForwardUpdateBulkInstance;
2886
+
2887
+ export const KEYS_EMAIL_FORWARD_UPDATE_BULK_INSTANCE = [
2888
+ KEY_EMAIL_FORWARD_UPDATE_BULK_INSTANCE_ALIASES,
2889
+ KEY_EMAIL_FORWARD_UPDATE_BULK_INSTANCE_EMAIL_FORWARD_ID,
2890
+ KEY_EMAIL_FORWARD_UPDATE_BULK_INSTANCE_ENABLED,
2891
+ KEY_EMAIL_FORWARD_UPDATE_BULK_INSTANCE_HOSTNAME,
2892
+ ] as const satisfies (keyof EmailForwardUpdateBulkInstance)[];
2893
+
2894
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof EmailForwardUpdateBulkPayload;
2895
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_PAYLOAD_TEMPLATE = 'template' satisfies keyof EmailForwardUpdateBulkPayload;
2896
+
2897
+ export const KEYS_EMAIL_FORWARD_UPDATE_BULK_PAYLOAD = [
2898
+ KEY_EMAIL_FORWARD_UPDATE_BULK_PAYLOAD_INSTANCES,
2899
+ KEY_EMAIL_FORWARD_UPDATE_BULK_PAYLOAD_TEMPLATE,
2900
+ ] as const satisfies (keyof EmailForwardUpdateBulkPayload)[];
2901
+
2902
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_TEMPLATE_ALIASES = 'aliases' satisfies keyof EmailForwardUpdateBulkTemplate;
2903
+ export const KEY_EMAIL_FORWARD_UPDATE_BULK_TEMPLATE_ENABLED = 'enabled' satisfies keyof EmailForwardUpdateBulkTemplate;
2904
+
2905
+ export const KEYS_EMAIL_FORWARD_UPDATE_BULK_TEMPLATE = [
2906
+ KEY_EMAIL_FORWARD_UPDATE_BULK_TEMPLATE_ALIASES,
2907
+ KEY_EMAIL_FORWARD_UPDATE_BULK_TEMPLATE_ENABLED,
2908
+ ] as const satisfies (keyof EmailForwardUpdateBulkTemplate)[];
2909
+
2735
2910
  export const KEY_EMAIL_FORWARD_ZONE_EMAIL_FORWARDS = 'email_forwards' satisfies keyof EmailForwardZone;
2736
2911
  export const KEY_EMAIL_FORWARD_ZONE_ZONE_ID = 'zone_id' satisfies keyof EmailForwardZone;
2737
2912
  export const KEY_EMAIL_FORWARD_ZONE_ZONE_NAME = 'zone_name' satisfies keyof EmailForwardZone;
@@ -228,6 +228,19 @@ export type EmailForwardAliasCreate = components['schemas']['EmailForwardAliasCr
228
228
  export type EmailForwardAliasMetrics = components['schemas']['EmailForwardAliasMetrics'];
229
229
  export type EmailForwardAliasUpdate = components['schemas']['EmailForwardAliasUpdate'];
230
230
  export type EmailForwardCreate = components['schemas']['EmailForwardCreate'];
231
+ export type EmailForwardCreateBulkCommand = components['schemas']['EmailForwardCreateBulkCommand'];
232
+ export type EmailForwardCreateBulkInstance = components['schemas']['EmailForwardCreateBulkInstance'];
233
+ export type EmailForwardCreateBulkPayload = components['schemas']['EmailForwardCreateBulkPayload'];
234
+ export type EmailForwardCreateBulkTemplate = components['schemas']['EmailForwardCreateBulkTemplate'];
235
+ export type EmailForwardDeleteBulkCommand = components['schemas']['EmailForwardDeleteBulkCommand'];
236
+ export type EmailForwardDeleteBulkInstance = components['schemas']['EmailForwardDeleteBulkInstance'];
237
+ export type EmailForwardDeleteBulkPayload = components['schemas']['EmailForwardDeleteBulkPayload'];
238
+ export type EmailForwardDisableBulkCommand = components['schemas']['EmailForwardDisableBulkCommand'];
239
+ export type EmailForwardDisableBulkInstance = components['schemas']['EmailForwardDisableBulkInstance'];
240
+ export type EmailForwardDisableBulkPayload = components['schemas']['EmailForwardDisableBulkPayload'];
241
+ export type EmailForwardEnableBulkCommand = components['schemas']['EmailForwardEnableBulkCommand'];
242
+ export type EmailForwardEnableBulkInstance = components['schemas']['EmailForwardEnableBulkInstance'];
243
+ export type EmailForwardEnableBulkPayload = components['schemas']['EmailForwardEnableBulkPayload'];
231
244
  export type EmailForwardLog = components['schemas']['EmailForwardLog'];
232
245
  export type EmailForwardLogEvent = components['schemas']['EmailForwardLogEvent'];
233
246
  export type EmailForwardLogSortField = components['schemas']['EmailForwardLogSortField'];
@@ -237,6 +250,10 @@ export type EmailForwardMetricsFilters = components['schemas']['EmailForwardMetr
237
250
  export type EmailForwardMetricsRates = components['schemas']['EmailForwardMetricsRates'];
238
251
  export type EmailForward = components['schemas']['EmailForwardResponse'];
239
252
  export type EmailForwardSortField = components['schemas']['EmailForwardSortField'];
253
+ export type EmailForwardUpdateBulkCommand = components['schemas']['EmailForwardUpdateBulkCommand'];
254
+ export type EmailForwardUpdateBulkInstance = components['schemas']['EmailForwardUpdateBulkInstance'];
255
+ export type EmailForwardUpdateBulkPayload = components['schemas']['EmailForwardUpdateBulkPayload'];
256
+ export type EmailForwardUpdateBulkTemplate = components['schemas']['EmailForwardUpdateBulkTemplate'];
240
257
  export type EmailForwardZone = components['schemas']['EmailForwardZone'];
241
258
  export type EmailForwardZoneSortField = components['schemas']['EmailForwardZoneSortField'];
242
259
  export type EmailVerificationStatus = components['schemas']['EmailVerificationStatus'];
package/src/openapi.yaml CHANGED
@@ -3182,6 +3182,7 @@ components:
3182
3182
  enum:
3183
3183
  - auto_renew_period
3184
3184
  - music_registrant_attestation
3185
+ - nic_it_compliance_confirmation
3185
3186
  - travel_industry_acknowledgement
3186
3187
  - verification_required
3187
3188
  title: DomainAttributeKey
@@ -5946,6 +5947,273 @@ components:
5946
5947
  - hostname
5947
5948
  title: EmailForwardCreate
5948
5949
  type: object
5950
+ EmailForwardCreateBulkCommand:
5951
+ properties:
5952
+ command:
5953
+ const: email_forward_create_bulk
5954
+ default: email_forward_create_bulk
5955
+ title: Command
5956
+ type: string
5957
+ idempotency_key:
5958
+ anyOf:
5959
+ - type: string
5960
+ - type: 'null'
5961
+ description: Idempotency key for this bulk command
5962
+ title: Idempotency Key
5963
+ payload:
5964
+ $ref: '#/components/schemas/EmailForwardCreateBulkPayload'
5965
+ description: Bulk email forward create payload
5966
+ version:
5967
+ default: v1
5968
+ description: Command version
5969
+ title: Version
5970
+ type: string
5971
+ required:
5972
+ - payload
5973
+ title: EmailForwardCreateBulkCommand
5974
+ type: object
5975
+ EmailForwardCreateBulkInstance:
5976
+ properties:
5977
+ aliases:
5978
+ anyOf:
5979
+ - items:
5980
+ $ref: '#/components/schemas/EmailForwardAliasCreate'
5981
+ type: array
5982
+ - type: 'null'
5983
+ description: Override aliases
5984
+ title: Aliases
5985
+ enabled:
5986
+ anyOf:
5987
+ - type: boolean
5988
+ - type: 'null'
5989
+ description: Override enabled setting for this hostname
5990
+ title: Enabled
5991
+ hostname:
5992
+ description: Hostname to create email forwarding for
5993
+ title: Hostname
5994
+ type: string
5995
+ required:
5996
+ - hostname
5997
+ title: EmailForwardCreateBulkInstance
5998
+ type: object
5999
+ EmailForwardCreateBulkPayload:
6000
+ properties:
6001
+ instances:
6002
+ description: List of email forwards to create (1-1000)
6003
+ items:
6004
+ $ref: '#/components/schemas/EmailForwardCreateBulkInstance'
6005
+ maxItems: 1000
6006
+ minItems: 1
6007
+ title: Instances
6008
+ type: array
6009
+ template:
6010
+ $ref: '#/components/schemas/EmailForwardCreateBulkTemplate'
6011
+ description: Shared settings for all email forwards
6012
+ required:
6013
+ - template
6014
+ - instances
6015
+ title: EmailForwardCreateBulkPayload
6016
+ type: object
6017
+ EmailForwardCreateBulkTemplate:
6018
+ properties:
6019
+ aliases:
6020
+ description: Aliases to create
6021
+ items:
6022
+ $ref: '#/components/schemas/EmailForwardAliasCreate'
6023
+ title: Aliases
6024
+ type: array
6025
+ auto_create_zone:
6026
+ default: false
6027
+ description: Create apex DNS zone automatically when missing
6028
+ title: Auto Create Zone
6029
+ type: boolean
6030
+ enabled:
6031
+ default: false
6032
+ description: Whether email forwarding should be enabled
6033
+ title: Enabled
6034
+ type: boolean
6035
+ title: EmailForwardCreateBulkTemplate
6036
+ type: object
6037
+ EmailForwardDeleteBulkCommand:
6038
+ properties:
6039
+ command:
6040
+ const: email_forward_delete_bulk
6041
+ default: email_forward_delete_bulk
6042
+ title: Command
6043
+ type: string
6044
+ idempotency_key:
6045
+ anyOf:
6046
+ - type: string
6047
+ - type: 'null'
6048
+ description: Idempotency key for this bulk command
6049
+ title: Idempotency Key
6050
+ payload:
6051
+ $ref: '#/components/schemas/EmailForwardDeleteBulkPayload'
6052
+ description: Bulk email forward delete payload
6053
+ version:
6054
+ default: v1
6055
+ description: Command version
6056
+ title: Version
6057
+ type: string
6058
+ required:
6059
+ - payload
6060
+ title: EmailForwardDeleteBulkCommand
6061
+ type: object
6062
+ EmailForwardDeleteBulkInstance:
6063
+ properties:
6064
+ email_forward_id:
6065
+ anyOf:
6066
+ - examples:
6067
+ - email_forward_01h45ytscbebyvny4gc8cr8ma2
6068
+ format: typeid
6069
+ pattern: ^email_forward_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6070
+ type: string
6071
+ x-typeid-prefix: email_forward
6072
+ - type: 'null'
6073
+ description: Email forward ID to target
6074
+ title: Email Forward Id
6075
+ hostname:
6076
+ anyOf:
6077
+ - type: string
6078
+ - type: 'null'
6079
+ description: Hostname to target
6080
+ title: Hostname
6081
+ title: EmailForwardDeleteBulkInstance
6082
+ type: object
6083
+ EmailForwardDeleteBulkPayload:
6084
+ properties:
6085
+ instances:
6086
+ description: List of email forwards to delete (1-1000)
6087
+ items:
6088
+ $ref: '#/components/schemas/EmailForwardDeleteBulkInstance'
6089
+ maxItems: 1000
6090
+ minItems: 1
6091
+ title: Instances
6092
+ type: array
6093
+ required:
6094
+ - instances
6095
+ title: EmailForwardDeleteBulkPayload
6096
+ type: object
6097
+ EmailForwardDisableBulkCommand:
6098
+ properties:
6099
+ command:
6100
+ const: email_forward_disable_bulk
6101
+ default: email_forward_disable_bulk
6102
+ title: Command
6103
+ type: string
6104
+ idempotency_key:
6105
+ anyOf:
6106
+ - type: string
6107
+ - type: 'null'
6108
+ description: Idempotency key for this bulk command
6109
+ title: Idempotency Key
6110
+ payload:
6111
+ $ref: '#/components/schemas/EmailForwardDisableBulkPayload'
6112
+ description: Bulk email forward disable payload
6113
+ version:
6114
+ default: v1
6115
+ description: Command version
6116
+ title: Version
6117
+ type: string
6118
+ required:
6119
+ - payload
6120
+ title: EmailForwardDisableBulkCommand
6121
+ type: object
6122
+ EmailForwardDisableBulkInstance:
6123
+ properties:
6124
+ email_forward_id:
6125
+ anyOf:
6126
+ - examples:
6127
+ - email_forward_01h45ytscbebyvny4gc8cr8ma2
6128
+ format: typeid
6129
+ pattern: ^email_forward_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6130
+ type: string
6131
+ x-typeid-prefix: email_forward
6132
+ - type: 'null'
6133
+ description: Email forward ID to target
6134
+ title: Email Forward Id
6135
+ hostname:
6136
+ anyOf:
6137
+ - type: string
6138
+ - type: 'null'
6139
+ description: Hostname to target
6140
+ title: Hostname
6141
+ title: EmailForwardDisableBulkInstance
6142
+ type: object
6143
+ EmailForwardDisableBulkPayload:
6144
+ properties:
6145
+ instances:
6146
+ description: List of email forwards to disable (1-1000)
6147
+ items:
6148
+ $ref: '#/components/schemas/EmailForwardDisableBulkInstance'
6149
+ maxItems: 1000
6150
+ minItems: 1
6151
+ title: Instances
6152
+ type: array
6153
+ required:
6154
+ - instances
6155
+ title: EmailForwardDisableBulkPayload
6156
+ type: object
6157
+ EmailForwardEnableBulkCommand:
6158
+ properties:
6159
+ command:
6160
+ const: email_forward_enable_bulk
6161
+ default: email_forward_enable_bulk
6162
+ title: Command
6163
+ type: string
6164
+ idempotency_key:
6165
+ anyOf:
6166
+ - type: string
6167
+ - type: 'null'
6168
+ description: Idempotency key for this bulk command
6169
+ title: Idempotency Key
6170
+ payload:
6171
+ $ref: '#/components/schemas/EmailForwardEnableBulkPayload'
6172
+ description: Bulk email forward enable payload
6173
+ version:
6174
+ default: v1
6175
+ description: Command version
6176
+ title: Version
6177
+ type: string
6178
+ required:
6179
+ - payload
6180
+ title: EmailForwardEnableBulkCommand
6181
+ type: object
6182
+ EmailForwardEnableBulkInstance:
6183
+ properties:
6184
+ email_forward_id:
6185
+ anyOf:
6186
+ - examples:
6187
+ - email_forward_01h45ytscbebyvny4gc8cr8ma2
6188
+ format: typeid
6189
+ pattern: ^email_forward_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6190
+ type: string
6191
+ x-typeid-prefix: email_forward
6192
+ - type: 'null'
6193
+ description: Email forward ID to target
6194
+ title: Email Forward Id
6195
+ hostname:
6196
+ anyOf:
6197
+ - type: string
6198
+ - type: 'null'
6199
+ description: Hostname to target
6200
+ title: Hostname
6201
+ title: EmailForwardEnableBulkInstance
6202
+ type: object
6203
+ EmailForwardEnableBulkPayload:
6204
+ properties:
6205
+ instances:
6206
+ description: List of email forwards to enable (1-1000)
6207
+ items:
6208
+ $ref: '#/components/schemas/EmailForwardEnableBulkInstance'
6209
+ maxItems: 1000
6210
+ minItems: 1
6211
+ title: Instances
6212
+ type: array
6213
+ required:
6214
+ - instances
6215
+ title: EmailForwardEnableBulkPayload
6216
+ type: object
5949
6217
  EmailForwardLog:
5950
6218
  properties:
5951
6219
  created_on:
@@ -6240,6 +6508,102 @@ components:
6240
6508
  - updated_on
6241
6509
  title: EmailForwardSortField
6242
6510
  type: string
6511
+ EmailForwardUpdateBulkCommand:
6512
+ properties:
6513
+ command:
6514
+ const: email_forward_update_bulk
6515
+ default: email_forward_update_bulk
6516
+ title: Command
6517
+ type: string
6518
+ idempotency_key:
6519
+ anyOf:
6520
+ - type: string
6521
+ - type: 'null'
6522
+ description: Idempotency key for this bulk command
6523
+ title: Idempotency Key
6524
+ payload:
6525
+ $ref: '#/components/schemas/EmailForwardUpdateBulkPayload'
6526
+ description: Bulk email forward update payload
6527
+ version:
6528
+ default: v1
6529
+ description: Command version
6530
+ title: Version
6531
+ type: string
6532
+ required:
6533
+ - payload
6534
+ title: EmailForwardUpdateBulkCommand
6535
+ type: object
6536
+ EmailForwardUpdateBulkInstance:
6537
+ properties:
6538
+ aliases:
6539
+ anyOf:
6540
+ - items:
6541
+ $ref: '#/components/schemas/EmailForwardAliasCreate'
6542
+ type: array
6543
+ - type: 'null'
6544
+ description: Override aliases (replace-all)
6545
+ title: Aliases
6546
+ email_forward_id:
6547
+ anyOf:
6548
+ - examples:
6549
+ - email_forward_01h45ytscbebyvny4gc8cr8ma2
6550
+ format: typeid
6551
+ pattern: ^email_forward_[0-7][0-9a-hjkmnpq-tv-z]{25}$
6552
+ type: string
6553
+ x-typeid-prefix: email_forward
6554
+ - type: 'null'
6555
+ description: Email forward ID to target
6556
+ title: Email Forward Id
6557
+ enabled:
6558
+ anyOf:
6559
+ - type: boolean
6560
+ - type: 'null'
6561
+ description: Override enabled setting
6562
+ title: Enabled
6563
+ hostname:
6564
+ anyOf:
6565
+ - type: string
6566
+ - type: 'null'
6567
+ description: Hostname to target
6568
+ title: Hostname
6569
+ title: EmailForwardUpdateBulkInstance
6570
+ type: object
6571
+ EmailForwardUpdateBulkPayload:
6572
+ properties:
6573
+ instances:
6574
+ description: List of email forwards to update (1-1000)
6575
+ items:
6576
+ $ref: '#/components/schemas/EmailForwardUpdateBulkInstance'
6577
+ maxItems: 1000
6578
+ minItems: 1
6579
+ title: Instances
6580
+ type: array
6581
+ template:
6582
+ $ref: '#/components/schemas/EmailForwardUpdateBulkTemplate'
6583
+ description: Shared settings for all email forwards
6584
+ required:
6585
+ - template
6586
+ - instances
6587
+ title: EmailForwardUpdateBulkPayload
6588
+ type: object
6589
+ EmailForwardUpdateBulkTemplate:
6590
+ properties:
6591
+ aliases:
6592
+ anyOf:
6593
+ - items:
6594
+ $ref: '#/components/schemas/EmailForwardAliasCreate'
6595
+ type: array
6596
+ - type: 'null'
6597
+ description: Aliases to set (replace-all)
6598
+ title: Aliases
6599
+ enabled:
6600
+ description: Whether email forwarding should be enabled
6601
+ title: Enabled
6602
+ type: boolean
6603
+ required:
6604
+ - enabled
6605
+ title: EmailForwardUpdateBulkTemplate
6606
+ type: object
6243
6607
  EmailForwardZone:
6244
6608
  properties:
6245
6609
  email_forwards:
@@ -7121,6 +7485,11 @@ components:
7121
7485
  domain_transfer_bulk: '#/components/schemas/DomainTransferBulkCommand'
7122
7486
  domain_update: '#/components/schemas/DomainUpdateCommand'
7123
7487
  domain_update_bulk: '#/components/schemas/DomainUpdateBulkCommand'
7488
+ email_forward_create_bulk: '#/components/schemas/EmailForwardCreateBulkCommand'
7489
+ email_forward_delete_bulk: '#/components/schemas/EmailForwardDeleteBulkCommand'
7490
+ email_forward_disable_bulk: '#/components/schemas/EmailForwardDisableBulkCommand'
7491
+ email_forward_enable_bulk: '#/components/schemas/EmailForwardEnableBulkCommand'
7492
+ email_forward_update_bulk: '#/components/schemas/EmailForwardUpdateBulkCommand'
7124
7493
  parking_create_bulk: '#/components/schemas/ParkingCreateBulkCommand'
7125
7494
  parking_delete_bulk: '#/components/schemas/ParkingDeleteBulkCommand'
7126
7495
  parking_disable_bulk: '#/components/schemas/ParkingDisableBulkCommand'
@@ -7145,6 +7514,11 @@ components:
7145
7514
  - $ref: '#/components/schemas/ParkingEnableBulkCommand'
7146
7515
  - $ref: '#/components/schemas/ParkingDisableBulkCommand'
7147
7516
  - $ref: '#/components/schemas/ParkingDeleteBulkCommand'
7517
+ - $ref: '#/components/schemas/EmailForwardCreateBulkCommand'
7518
+ - $ref: '#/components/schemas/EmailForwardEnableBulkCommand'
7519
+ - $ref: '#/components/schemas/EmailForwardDisableBulkCommand'
7520
+ - $ref: '#/components/schemas/EmailForwardDeleteBulkCommand'
7521
+ - $ref: '#/components/schemas/EmailForwardUpdateBulkCommand'
7148
7522
  - $ref: '#/components/schemas/DomainForwardCreateBulkCommand'
7149
7523
  - $ref: '#/components/schemas/DomainForwardUpdateBulkCommand'
7150
7524
  - $ref: '#/components/schemas/DomainForwardEnableBulkCommand'
@@ -12342,7 +12716,7 @@ info:
12342
12716
  \n\n"
12343
12717
  summary: OpusDNS - your gateway to a seamless domain management experience.
12344
12718
  title: OpusDNS API
12345
- version: 2026-06-17-145023
12719
+ version: 2026-06-18-104959
12346
12720
  x-logo:
12347
12721
  altText: OpusDNS API Reference
12348
12722
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -4711,7 +4711,7 @@ export interface components {
4711
4711
  * DomainAttributeKey
4712
4712
  * @enum {string}
4713
4713
  */
4714
- DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "travel_industry_acknowledgement" | "verification_required";
4714
+ DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required";
4715
4715
  /** DomainAvailability */
4716
4716
  DomainAvailability: {
4717
4717
  /** Domain */
@@ -6524,6 +6524,201 @@ export interface components {
6524
6524
  /** Hostname */
6525
6525
  hostname: string;
6526
6526
  };
6527
+ /** EmailForwardCreateBulkCommand */
6528
+ EmailForwardCreateBulkCommand: {
6529
+ /**
6530
+ * @description discriminator enum property added by openapi-typescript
6531
+ * @enum {string}
6532
+ */
6533
+ command: "email_forward_create_bulk";
6534
+ /**
6535
+ * Idempotency Key
6536
+ * @description Idempotency key for this bulk command
6537
+ */
6538
+ idempotency_key?: string | null;
6539
+ /** @description Bulk email forward create payload */
6540
+ payload: components["schemas"]["EmailForwardCreateBulkPayload"];
6541
+ /**
6542
+ * Version
6543
+ * @description Command version
6544
+ * @default v1
6545
+ */
6546
+ version: string;
6547
+ };
6548
+ /** EmailForwardCreateBulkInstance */
6549
+ EmailForwardCreateBulkInstance: {
6550
+ /**
6551
+ * Aliases
6552
+ * @description Override aliases
6553
+ */
6554
+ aliases?: components["schemas"]["EmailForwardAliasCreate"][] | null;
6555
+ /**
6556
+ * Enabled
6557
+ * @description Override enabled setting for this hostname
6558
+ */
6559
+ enabled?: boolean | null;
6560
+ /**
6561
+ * Hostname
6562
+ * @description Hostname to create email forwarding for
6563
+ */
6564
+ hostname: string;
6565
+ };
6566
+ /** EmailForwardCreateBulkPayload */
6567
+ EmailForwardCreateBulkPayload: {
6568
+ /**
6569
+ * Instances
6570
+ * @description List of email forwards to create (1-1000)
6571
+ */
6572
+ instances: components["schemas"]["EmailForwardCreateBulkInstance"][];
6573
+ /** @description Shared settings for all email forwards */
6574
+ template: components["schemas"]["EmailForwardCreateBulkTemplate"];
6575
+ };
6576
+ /** EmailForwardCreateBulkTemplate */
6577
+ EmailForwardCreateBulkTemplate: {
6578
+ /**
6579
+ * Aliases
6580
+ * @description Aliases to create
6581
+ */
6582
+ aliases?: components["schemas"]["EmailForwardAliasCreate"][];
6583
+ /**
6584
+ * Auto Create Zone
6585
+ * @description Create apex DNS zone automatically when missing
6586
+ * @default false
6587
+ */
6588
+ auto_create_zone: boolean;
6589
+ /**
6590
+ * Enabled
6591
+ * @description Whether email forwarding should be enabled
6592
+ * @default false
6593
+ */
6594
+ enabled: boolean;
6595
+ };
6596
+ /** EmailForwardDeleteBulkCommand */
6597
+ EmailForwardDeleteBulkCommand: {
6598
+ /**
6599
+ * @description discriminator enum property added by openapi-typescript
6600
+ * @enum {string}
6601
+ */
6602
+ command: "email_forward_delete_bulk";
6603
+ /**
6604
+ * Idempotency Key
6605
+ * @description Idempotency key for this bulk command
6606
+ */
6607
+ idempotency_key?: string | null;
6608
+ /** @description Bulk email forward delete payload */
6609
+ payload: components["schemas"]["EmailForwardDeleteBulkPayload"];
6610
+ /**
6611
+ * Version
6612
+ * @description Command version
6613
+ * @default v1
6614
+ */
6615
+ version: string;
6616
+ };
6617
+ /** EmailForwardDeleteBulkInstance */
6618
+ EmailForwardDeleteBulkInstance: {
6619
+ /**
6620
+ * Email Forward Id
6621
+ * @description Email forward ID to target
6622
+ */
6623
+ email_forward_id?: TypeId<"email_forward"> | null;
6624
+ /**
6625
+ * Hostname
6626
+ * @description Hostname to target
6627
+ */
6628
+ hostname?: string | null;
6629
+ };
6630
+ /** EmailForwardDeleteBulkPayload */
6631
+ EmailForwardDeleteBulkPayload: {
6632
+ /**
6633
+ * Instances
6634
+ * @description List of email forwards to delete (1-1000)
6635
+ */
6636
+ instances: components["schemas"]["EmailForwardDeleteBulkInstance"][];
6637
+ };
6638
+ /** EmailForwardDisableBulkCommand */
6639
+ EmailForwardDisableBulkCommand: {
6640
+ /**
6641
+ * @description discriminator enum property added by openapi-typescript
6642
+ * @enum {string}
6643
+ */
6644
+ command: "email_forward_disable_bulk";
6645
+ /**
6646
+ * Idempotency Key
6647
+ * @description Idempotency key for this bulk command
6648
+ */
6649
+ idempotency_key?: string | null;
6650
+ /** @description Bulk email forward disable payload */
6651
+ payload: components["schemas"]["EmailForwardDisableBulkPayload"];
6652
+ /**
6653
+ * Version
6654
+ * @description Command version
6655
+ * @default v1
6656
+ */
6657
+ version: string;
6658
+ };
6659
+ /** EmailForwardDisableBulkInstance */
6660
+ EmailForwardDisableBulkInstance: {
6661
+ /**
6662
+ * Email Forward Id
6663
+ * @description Email forward ID to target
6664
+ */
6665
+ email_forward_id?: TypeId<"email_forward"> | null;
6666
+ /**
6667
+ * Hostname
6668
+ * @description Hostname to target
6669
+ */
6670
+ hostname?: string | null;
6671
+ };
6672
+ /** EmailForwardDisableBulkPayload */
6673
+ EmailForwardDisableBulkPayload: {
6674
+ /**
6675
+ * Instances
6676
+ * @description List of email forwards to disable (1-1000)
6677
+ */
6678
+ instances: components["schemas"]["EmailForwardDisableBulkInstance"][];
6679
+ };
6680
+ /** EmailForwardEnableBulkCommand */
6681
+ EmailForwardEnableBulkCommand: {
6682
+ /**
6683
+ * @description discriminator enum property added by openapi-typescript
6684
+ * @enum {string}
6685
+ */
6686
+ command: "email_forward_enable_bulk";
6687
+ /**
6688
+ * Idempotency Key
6689
+ * @description Idempotency key for this bulk command
6690
+ */
6691
+ idempotency_key?: string | null;
6692
+ /** @description Bulk email forward enable payload */
6693
+ payload: components["schemas"]["EmailForwardEnableBulkPayload"];
6694
+ /**
6695
+ * Version
6696
+ * @description Command version
6697
+ * @default v1
6698
+ */
6699
+ version: string;
6700
+ };
6701
+ /** EmailForwardEnableBulkInstance */
6702
+ EmailForwardEnableBulkInstance: {
6703
+ /**
6704
+ * Email Forward Id
6705
+ * @description Email forward ID to target
6706
+ */
6707
+ email_forward_id?: TypeId<"email_forward"> | null;
6708
+ /**
6709
+ * Hostname
6710
+ * @description Hostname to target
6711
+ */
6712
+ hostname?: string | null;
6713
+ };
6714
+ /** EmailForwardEnableBulkPayload */
6715
+ EmailForwardEnableBulkPayload: {
6716
+ /**
6717
+ * Instances
6718
+ * @description List of email forwards to enable (1-1000)
6719
+ */
6720
+ instances: components["schemas"]["EmailForwardEnableBulkInstance"][];
6721
+ };
6527
6722
  /** EmailForwardLog */
6528
6723
  EmailForwardLog: {
6529
6724
  /**
@@ -6760,6 +6955,73 @@ export interface components {
6760
6955
  * @enum {string}
6761
6956
  */
6762
6957
  EmailForwardSortField: "hostname" | "enabled" | "created_on" | "updated_on";
6958
+ /** EmailForwardUpdateBulkCommand */
6959
+ EmailForwardUpdateBulkCommand: {
6960
+ /**
6961
+ * @description discriminator enum property added by openapi-typescript
6962
+ * @enum {string}
6963
+ */
6964
+ command: "email_forward_update_bulk";
6965
+ /**
6966
+ * Idempotency Key
6967
+ * @description Idempotency key for this bulk command
6968
+ */
6969
+ idempotency_key?: string | null;
6970
+ /** @description Bulk email forward update payload */
6971
+ payload: components["schemas"]["EmailForwardUpdateBulkPayload"];
6972
+ /**
6973
+ * Version
6974
+ * @description Command version
6975
+ * @default v1
6976
+ */
6977
+ version: string;
6978
+ };
6979
+ /** EmailForwardUpdateBulkInstance */
6980
+ EmailForwardUpdateBulkInstance: {
6981
+ /**
6982
+ * Aliases
6983
+ * @description Override aliases (replace-all)
6984
+ */
6985
+ aliases?: components["schemas"]["EmailForwardAliasCreate"][] | null;
6986
+ /**
6987
+ * Email Forward Id
6988
+ * @description Email forward ID to target
6989
+ */
6990
+ email_forward_id?: TypeId<"email_forward"> | null;
6991
+ /**
6992
+ * Enabled
6993
+ * @description Override enabled setting
6994
+ */
6995
+ enabled?: boolean | null;
6996
+ /**
6997
+ * Hostname
6998
+ * @description Hostname to target
6999
+ */
7000
+ hostname?: string | null;
7001
+ };
7002
+ /** EmailForwardUpdateBulkPayload */
7003
+ EmailForwardUpdateBulkPayload: {
7004
+ /**
7005
+ * Instances
7006
+ * @description List of email forwards to update (1-1000)
7007
+ */
7008
+ instances: components["schemas"]["EmailForwardUpdateBulkInstance"][];
7009
+ /** @description Shared settings for all email forwards */
7010
+ template: components["schemas"]["EmailForwardUpdateBulkTemplate"];
7011
+ };
7012
+ /** EmailForwardUpdateBulkTemplate */
7013
+ EmailForwardUpdateBulkTemplate: {
7014
+ /**
7015
+ * Aliases
7016
+ * @description Aliases to set (replace-all)
7017
+ */
7018
+ aliases?: components["schemas"]["EmailForwardAliasCreate"][] | null;
7019
+ /**
7020
+ * Enabled
7021
+ * @description Whether email forwarding should be enabled
7022
+ */
7023
+ enabled: boolean;
7024
+ };
6763
7025
  /** EmailForwardZone */
6764
7026
  EmailForwardZone: {
6765
7027
  /** Email Forwards */
@@ -7338,7 +7600,7 @@ export interface components {
7338
7600
  * Commands
7339
7601
  * @description List of commands to execute
7340
7602
  */
7341
- commands: (components["schemas"]["DomainCreateCommand"] | components["schemas"]["DomainUpdateCommand"] | components["schemas"]["DomainTransferCommand"] | components["schemas"]["DnsZoneCreateCommand"] | components["schemas"]["DnsZoneUpdateCommand"] | components["schemas"]["DomainCreateBulkCommand"] | components["schemas"]["DomainTransferBulkCommand"] | components["schemas"]["DomainUpdateBulkCommand"] | components["schemas"]["DnsZoneCreateBulkCommand"] | components["schemas"]["DnsZoneUpdateBulkCommand"] | components["schemas"]["DnsZonePatchRrsetsBulkCommand"] | components["schemas"]["DnsZonePatchRecordsBulkCommand"] | components["schemas"]["ContactCreateBulkCommand"] | components["schemas"]["ContactCreateCommand"] | components["schemas"]["ParkingCreateBulkCommand"] | components["schemas"]["ParkingEnableBulkCommand"] | components["schemas"]["ParkingDisableBulkCommand"] | components["schemas"]["ParkingDeleteBulkCommand"] | components["schemas"]["DomainForwardCreateBulkCommand"] | components["schemas"]["DomainForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardEnableBulkCommand"] | components["schemas"]["DomainForwardDisableBulkCommand"] | components["schemas"]["DomainForwardDeleteBulkCommand"])[];
7603
+ commands: (components["schemas"]["DomainCreateCommand"] | components["schemas"]["DomainUpdateCommand"] | components["schemas"]["DomainTransferCommand"] | components["schemas"]["DnsZoneCreateCommand"] | components["schemas"]["DnsZoneUpdateCommand"] | components["schemas"]["DomainCreateBulkCommand"] | components["schemas"]["DomainTransferBulkCommand"] | components["schemas"]["DomainUpdateBulkCommand"] | components["schemas"]["DnsZoneCreateBulkCommand"] | components["schemas"]["DnsZoneUpdateBulkCommand"] | components["schemas"]["DnsZonePatchRrsetsBulkCommand"] | components["schemas"]["DnsZonePatchRecordsBulkCommand"] | components["schemas"]["ContactCreateBulkCommand"] | components["schemas"]["ContactCreateCommand"] | components["schemas"]["ParkingCreateBulkCommand"] | components["schemas"]["ParkingEnableBulkCommand"] | components["schemas"]["ParkingDisableBulkCommand"] | components["schemas"]["ParkingDeleteBulkCommand"] | components["schemas"]["EmailForwardCreateBulkCommand"] | components["schemas"]["EmailForwardEnableBulkCommand"] | components["schemas"]["EmailForwardDisableBulkCommand"] | components["schemas"]["EmailForwardDeleteBulkCommand"] | components["schemas"]["EmailForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardCreateBulkCommand"] | components["schemas"]["DomainForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardEnableBulkCommand"] | components["schemas"]["DomainForwardDisableBulkCommand"] | components["schemas"]["DomainForwardDeleteBulkCommand"])[];
7342
7604
  /**
7343
7605
  * Label
7344
7606
  * @description Human-readable label for this batch