@opusdns/api 0.248.0 → 0.250.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.248.0",
6
+ "version": "0.250.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -3329,6 +3329,7 @@ export const PERMISSION = {
3329
3329
  VIEW_EVENTS: "view_events",
3330
3330
  VIEW_PARKING: "view_parking",
3331
3331
  MANAGE_PARKING: "manage_parking",
3332
+ MANAGE_TAGS: "manage_tags",
3332
3333
  } as const satisfies Record<string, Permission>;
3333
3334
 
3334
3335
  /**
@@ -3395,7 +3396,8 @@ export const PERMISSION_VALUES = [
3395
3396
  'view_email_forwards',
3396
3397
  'view_events',
3397
3398
  'view_parking',
3398
- 'manage_parking'
3399
+ 'manage_parking',
3400
+ 'manage_tags'
3399
3401
  ] as const satisfies [string, ...string[]] | Permission[];
3400
3402
 
3401
3403
  /**
@@ -7972,6 +7972,31 @@ export const KEYS_DNS_ZONE_CREATE_BULK_COMMAND = [
7972
7972
  KEY_DNS_ZONE_CREATE_BULK_COMMAND_VERSION,
7973
7973
  ] as const satisfies (keyof DnsZoneCreateBulkCommand)[];
7974
7974
 
7975
+ /**
7976
+ * dnssec_status property
7977
+ *
7978
+ * Override DNSSEC status for this zone
7979
+ *
7980
+ *
7981
+ *
7982
+ * @remarks
7983
+ * This key constant provides type-safe access to the `dnssec_status` property of DnsZoneCreateBulkInstance objects.
7984
+ * Use this constant when you need to access properties dynamically or ensure type safety.
7985
+ *
7986
+ * @example
7987
+ * ```typescript
7988
+ * // Direct property access
7989
+ * const value = dnszonecreatebulkinstance[KEY_DNS_ZONE_CREATE_BULK_INSTANCE_DNSSEC_STATUS];
7990
+ *
7991
+ * // Dynamic property access
7992
+ * const propertyName = KEY_DNS_ZONE_CREATE_BULK_INSTANCE_DNSSEC_STATUS;
7993
+ * const value = dnszonecreatebulkinstance[propertyName];
7994
+ * ```
7995
+ *
7996
+ * @see {@link DnsZoneCreateBulkInstance} - The TypeScript type definition
7997
+ * @see {@link KEYS_DNS_ZONE_CREATE_BULK_INSTANCE} - Array of all keys for this type
7998
+ */
7999
+ export const KEY_DNS_ZONE_CREATE_BULK_INSTANCE_DNSSEC_STATUS: keyof DnsZoneCreateBulkInstance = 'dnssec_status';
7975
8000
  /**
7976
8001
  * Name
7977
8002
  *
@@ -8045,6 +8070,7 @@ export const KEY_DNS_ZONE_CREATE_BULK_INSTANCE_RRSETS: keyof DnsZoneCreateBulkIn
8045
8070
  * @see {@link DnsZoneCreateBulkInstance} - The TypeScript type definition
8046
8071
  */
8047
8072
  export const KEYS_DNS_ZONE_CREATE_BULK_INSTANCE = [
8073
+ KEY_DNS_ZONE_CREATE_BULK_INSTANCE_DNSSEC_STATUS,
8048
8074
  KEY_DNS_ZONE_CREATE_BULK_INSTANCE_NAME,
8049
8075
  KEY_DNS_ZONE_CREATE_BULK_INSTANCE_RRSETS,
8050
8076
  ] as const satisfies (keyof DnsZoneCreateBulkInstance)[];
@@ -8126,6 +8152,31 @@ export const KEYS_DNS_ZONE_CREATE_BULK_PAYLOAD = [
8126
8152
  KEY_DNS_ZONE_CREATE_BULK_PAYLOAD_TEMPLATE,
8127
8153
  ] as const satisfies (keyof DnsZoneCreateBulkPayload)[];
8128
8154
 
8155
+ /**
8156
+ * dnssec_status property
8157
+ *
8158
+ * DNSSEC status for all zones
8159
+ *
8160
+ *
8161
+ *
8162
+ * @remarks
8163
+ * This key constant provides type-safe access to the `dnssec_status` property of DnsZoneCreateBulkTemplate objects.
8164
+ * Use this constant when you need to access properties dynamically or ensure type safety.
8165
+ *
8166
+ * @example
8167
+ * ```typescript
8168
+ * // Direct property access
8169
+ * const value = dnszonecreatebulktemplate[KEY_DNS_ZONE_CREATE_BULK_TEMPLATE_DNSSEC_STATUS];
8170
+ *
8171
+ * // Dynamic property access
8172
+ * const propertyName = KEY_DNS_ZONE_CREATE_BULK_TEMPLATE_DNSSEC_STATUS;
8173
+ * const value = dnszonecreatebulktemplate[propertyName];
8174
+ * ```
8175
+ *
8176
+ * @see {@link DnsZoneCreateBulkTemplate} - The TypeScript type definition
8177
+ * @see {@link KEYS_DNS_ZONE_CREATE_BULK_TEMPLATE} - Array of all keys for this type
8178
+ */
8179
+ export const KEY_DNS_ZONE_CREATE_BULK_TEMPLATE_DNSSEC_STATUS: keyof DnsZoneCreateBulkTemplate = 'dnssec_status';
8129
8180
  /**
8130
8181
  * Rrsets
8131
8182
  *
@@ -8174,6 +8225,7 @@ export const KEY_DNS_ZONE_CREATE_BULK_TEMPLATE_RRSETS: keyof DnsZoneCreateBulkTe
8174
8225
  * @see {@link DnsZoneCreateBulkTemplate} - The TypeScript type definition
8175
8226
  */
8176
8227
  export const KEYS_DNS_ZONE_CREATE_BULK_TEMPLATE = [
8228
+ KEY_DNS_ZONE_CREATE_BULK_TEMPLATE_DNSSEC_STATUS,
8177
8229
  KEY_DNS_ZONE_CREATE_BULK_TEMPLATE_RRSETS,
8178
8230
  ] as const satisfies (keyof DnsZoneCreateBulkTemplate)[];
8179
8231
 
@@ -9759,6 +9811,31 @@ export const KEYS_DNS_ZONE_UPDATE_BULK_COMMAND = [
9759
9811
  KEY_DNS_ZONE_UPDATE_BULK_COMMAND_VERSION,
9760
9812
  ] as const satisfies (keyof DnsZoneUpdateBulkCommand)[];
9761
9813
 
9814
+ /**
9815
+ * dnssec_status property
9816
+ *
9817
+ * Override DNSSEC status for this zone
9818
+ *
9819
+ *
9820
+ *
9821
+ * @remarks
9822
+ * This key constant provides type-safe access to the `dnssec_status` property of DnsZoneUpdateBulkInstance objects.
9823
+ * Use this constant when you need to access properties dynamically or ensure type safety.
9824
+ *
9825
+ * @example
9826
+ * ```typescript
9827
+ * // Direct property access
9828
+ * const value = dnszoneupdatebulkinstance[KEY_DNS_ZONE_UPDATE_BULK_INSTANCE_DNSSEC_STATUS];
9829
+ *
9830
+ * // Dynamic property access
9831
+ * const propertyName = KEY_DNS_ZONE_UPDATE_BULK_INSTANCE_DNSSEC_STATUS;
9832
+ * const value = dnszoneupdatebulkinstance[propertyName];
9833
+ * ```
9834
+ *
9835
+ * @see {@link DnsZoneUpdateBulkInstance} - The TypeScript type definition
9836
+ * @see {@link KEYS_DNS_ZONE_UPDATE_BULK_INSTANCE} - Array of all keys for this type
9837
+ */
9838
+ export const KEY_DNS_ZONE_UPDATE_BULK_INSTANCE_DNSSEC_STATUS: keyof DnsZoneUpdateBulkInstance = 'dnssec_status';
9762
9839
  /**
9763
9840
  * Name
9764
9841
  *
@@ -9832,6 +9909,7 @@ export const KEY_DNS_ZONE_UPDATE_BULK_INSTANCE_RRSETS: keyof DnsZoneUpdateBulkIn
9832
9909
  * @see {@link DnsZoneUpdateBulkInstance} - The TypeScript type definition
9833
9910
  */
9834
9911
  export const KEYS_DNS_ZONE_UPDATE_BULK_INSTANCE = [
9912
+ KEY_DNS_ZONE_UPDATE_BULK_INSTANCE_DNSSEC_STATUS,
9835
9913
  KEY_DNS_ZONE_UPDATE_BULK_INSTANCE_NAME,
9836
9914
  KEY_DNS_ZONE_UPDATE_BULK_INSTANCE_RRSETS,
9837
9915
  ] as const satisfies (keyof DnsZoneUpdateBulkInstance)[];
@@ -9913,6 +9991,31 @@ export const KEYS_DNS_ZONE_UPDATE_BULK_PAYLOAD = [
9913
9991
  KEY_DNS_ZONE_UPDATE_BULK_PAYLOAD_TEMPLATE,
9914
9992
  ] as const satisfies (keyof DnsZoneUpdateBulkPayload)[];
9915
9993
 
9994
+ /**
9995
+ * dnssec_status property
9996
+ *
9997
+ * DNSSEC status for all zones
9998
+ *
9999
+ *
10000
+ *
10001
+ * @remarks
10002
+ * This key constant provides type-safe access to the `dnssec_status` property of DnsZoneUpdateBulkTemplate objects.
10003
+ * Use this constant when you need to access properties dynamically or ensure type safety.
10004
+ *
10005
+ * @example
10006
+ * ```typescript
10007
+ * // Direct property access
10008
+ * const value = dnszoneupdatebulktemplate[KEY_DNS_ZONE_UPDATE_BULK_TEMPLATE_DNSSEC_STATUS];
10009
+ *
10010
+ * // Dynamic property access
10011
+ * const propertyName = KEY_DNS_ZONE_UPDATE_BULK_TEMPLATE_DNSSEC_STATUS;
10012
+ * const value = dnszoneupdatebulktemplate[propertyName];
10013
+ * ```
10014
+ *
10015
+ * @see {@link DnsZoneUpdateBulkTemplate} - The TypeScript type definition
10016
+ * @see {@link KEYS_DNS_ZONE_UPDATE_BULK_TEMPLATE} - Array of all keys for this type
10017
+ */
10018
+ export const KEY_DNS_ZONE_UPDATE_BULK_TEMPLATE_DNSSEC_STATUS: keyof DnsZoneUpdateBulkTemplate = 'dnssec_status';
9916
10019
  /**
9917
10020
  * Rrsets
9918
10021
  *
@@ -9961,6 +10064,7 @@ export const KEY_DNS_ZONE_UPDATE_BULK_TEMPLATE_RRSETS: keyof DnsZoneUpdateBulkTe
9961
10064
  * @see {@link DnsZoneUpdateBulkTemplate} - The TypeScript type definition
9962
10065
  */
9963
10066
  export const KEYS_DNS_ZONE_UPDATE_BULK_TEMPLATE = [
10067
+ KEY_DNS_ZONE_UPDATE_BULK_TEMPLATE_DNSSEC_STATUS,
9964
10068
  KEY_DNS_ZONE_UPDATE_BULK_TEMPLATE_RRSETS,
9965
10069
  ] as const satisfies (keyof DnsZoneUpdateBulkTemplate)[];
9966
10070
 
package/src/openapi.yaml CHANGED
@@ -1884,6 +1884,11 @@ components:
1884
1884
  type: object
1885
1885
  DnsZoneCreateBulkInstance:
1886
1886
  properties:
1887
+ dnssec_status:
1888
+ anyOf:
1889
+ - $ref: '#/components/schemas/DnssecStatus'
1890
+ - type: 'null'
1891
+ description: Override DNSSEC status for this zone
1887
1892
  name:
1888
1893
  description: The DNS zone name (e.g., example.com)
1889
1894
  title: Name
@@ -1920,6 +1925,10 @@ components:
1920
1925
  type: object
1921
1926
  DnsZoneCreateBulkTemplate:
1922
1927
  properties:
1928
+ dnssec_status:
1929
+ $ref: '#/components/schemas/DnssecStatus'
1930
+ default: disabled
1931
+ description: DNSSEC status for all zones
1923
1932
  rrsets:
1924
1933
  description: DNS record sets to create
1925
1934
  items:
@@ -2240,6 +2249,11 @@ components:
2240
2249
  type: object
2241
2250
  DnsZoneUpdateBulkInstance:
2242
2251
  properties:
2252
+ dnssec_status:
2253
+ anyOf:
2254
+ - $ref: '#/components/schemas/DnssecStatus'
2255
+ - type: 'null'
2256
+ description: Override DNSSEC status for this zone
2243
2257
  name:
2244
2258
  description: The DNS zone name (e.g., example.com)
2245
2259
  title: Name
@@ -2276,6 +2290,11 @@ components:
2276
2290
  type: object
2277
2291
  DnsZoneUpdateBulkTemplate:
2278
2292
  properties:
2293
+ dnssec_status:
2294
+ anyOf:
2295
+ - $ref: '#/components/schemas/DnssecStatus'
2296
+ - type: 'null'
2297
+ description: DNSSEC status for all zones
2279
2298
  rrsets:
2280
2299
  description: DNS record sets to update
2281
2300
  items:
@@ -7908,6 +7927,7 @@ components:
7908
7927
  - view_events
7909
7928
  - view_parking
7910
7929
  - manage_parking
7930
+ - manage_tags
7911
7931
  title: Permission
7912
7932
  type: string
7913
7933
  PermissionSet:
@@ -9782,7 +9802,7 @@ info:
9782
9802
  \n\n"
9783
9803
  summary: OpusDNS - your gateway to a seamless domain management experience.
9784
9804
  title: OpusDNS API
9785
- version: 2026-04-14-081732
9805
+ version: 2026-04-14-135714
9786
9806
  x-logo:
9787
9807
  altText: OpusDNS API Reference
9788
9808
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -17981,6 +18001,7 @@ paths:
17981
18001
  - name: zone2.com
17982
18002
  - name: zone3.com
17983
18003
  template:
18004
+ dnssec_status: disabled
17984
18005
  rrsets:
17985
18006
  - name: '@'
17986
18007
  records:
@@ -21576,6 +21597,9 @@ tags:
21576
21597
  \ | Only reports created before this timestamp |\n"
21577
21598
  name: report
21578
21599
  x-displayName: Reports
21600
+ - description: Endpoints for creating new Tags
21601
+ name: tag
21602
+ x-displayName: Tags
21579
21603
  x-tagGroups:
21580
21604
  - name: Account management
21581
21605
  tags:
@@ -21590,6 +21614,7 @@ x-tagGroups:
21590
21614
  - contact
21591
21615
  - event
21592
21616
  - availability
21617
+ - tag
21593
21618
  - name: Services
21594
21619
  tags:
21595
21620
  - dns
package/src/schema.d.ts CHANGED
@@ -3469,6 +3469,8 @@ export interface components {
3469
3469
  };
3470
3470
  /** DnsZoneCreateBulkInstance */
3471
3471
  DnsZoneCreateBulkInstance: {
3472
+ /** @description Override DNSSEC status for this zone */
3473
+ dnssec_status?: components["schemas"]["DnssecStatus"] | null;
3472
3474
  /**
3473
3475
  * Name
3474
3476
  * @description The DNS zone name (e.g., example.com)
@@ -3492,6 +3494,11 @@ export interface components {
3492
3494
  };
3493
3495
  /** DnsZoneCreateBulkTemplate */
3494
3496
  DnsZoneCreateBulkTemplate: {
3497
+ /**
3498
+ * @description DNSSEC status for all zones
3499
+ * @default disabled
3500
+ */
3501
+ dnssec_status: components["schemas"]["DnssecStatus"];
3495
3502
  /**
3496
3503
  * Rrsets
3497
3504
  * @description DNS record sets to create
@@ -3708,6 +3715,8 @@ export interface components {
3708
3715
  };
3709
3716
  /** DnsZoneUpdateBulkInstance */
3710
3717
  DnsZoneUpdateBulkInstance: {
3718
+ /** @description Override DNSSEC status for this zone */
3719
+ dnssec_status?: components["schemas"]["DnssecStatus"] | null;
3711
3720
  /**
3712
3721
  * Name
3713
3722
  * @description The DNS zone name (e.g., example.com)
@@ -3731,6 +3740,8 @@ export interface components {
3731
3740
  };
3732
3741
  /** DnsZoneUpdateBulkTemplate */
3733
3742
  DnsZoneUpdateBulkTemplate: {
3743
+ /** @description DNSSEC status for all zones */
3744
+ dnssec_status?: components["schemas"]["DnssecStatus"] | null;
3734
3745
  /**
3735
3746
  * Rrsets
3736
3747
  * @description DNS record sets to update
@@ -7465,7 +7476,7 @@ export interface components {
7465
7476
  * Permission
7466
7477
  * @enum {string}
7467
7478
  */
7468
- 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_jobs" | "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";
7479
+ 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_jobs" | "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" | "manage_tags";
7469
7480
  /** PermissionSet */
7470
7481
  PermissionSet: {
7471
7482
  /** Permissions */