@opusdns/api 0.310.0 → 0.312.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.310.0",
6
+ "version": "0.312.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -3581,6 +3581,7 @@ export const OBJECT_EVENT_TYPE = {
3581
3581
  CREATED: "CREATED",
3582
3582
  UPDATED: "UPDATED",
3583
3583
  DELETED: "DELETED",
3584
+ IMPORTED: "IMPORTED",
3584
3585
  TRANSFER_STARTED: "TRANSFER_STARTED",
3585
3586
  TRANSFER_COMPLETED: "TRANSFER_COMPLETED",
3586
3587
  TRANSFER_OUT_STARTED: "TRANSFER_OUT_STARTED",
@@ -3618,6 +3619,7 @@ export const OBJECT_EVENT_TYPE_VALUES = [
3618
3619
  'CREATED',
3619
3620
  'UPDATED',
3620
3621
  'DELETED',
3622
+ 'IMPORTED',
3621
3623
  'TRANSFER_STARTED',
3622
3624
  'TRANSFER_COMPLETED',
3623
3625
  'TRANSFER_OUT_STARTED',
@@ -27390,6 +27390,31 @@ export const KEY_JOB_BATCH_STATUS_DEAD_LETTER: keyof JobBatchStatus = 'dead_lett
27390
27390
  * @see {@link KEYS_JOB_BATCH_STATUS} - Array of all keys for this type
27391
27391
  */
27392
27392
  export const KEY_JOB_BATCH_STATUS_FAILED: keyof JobBatchStatus = 'failed';
27393
+ /**
27394
+ * Label
27395
+ *
27396
+ * Human-readable label for this batch
27397
+ *
27398
+ *
27399
+ *
27400
+ * @remarks
27401
+ * This key constant provides type-safe access to the `label` property of JobBatchStatus objects.
27402
+ * Use this constant when you need to access properties dynamically or ensure type safety.
27403
+ *
27404
+ * @example
27405
+ * ```typescript
27406
+ * // Direct property access
27407
+ * const value = jobbatchstatus[KEY_JOB_BATCH_STATUS_LABEL];
27408
+ *
27409
+ * // Dynamic property access
27410
+ * const propertyName = KEY_JOB_BATCH_STATUS_LABEL;
27411
+ * const value = jobbatchstatus[propertyName];
27412
+ * ```
27413
+ *
27414
+ * @see {@link JobBatchStatus} - The TypeScript type definition
27415
+ * @see {@link KEYS_JOB_BATCH_STATUS} - Array of all keys for this type
27416
+ */
27417
+ export const KEY_JOB_BATCH_STATUS_LABEL: keyof JobBatchStatus = 'label';
27393
27418
  /**
27394
27419
  * Paused
27395
27420
  *
@@ -27573,6 +27598,7 @@ export const KEYS_JOB_BATCH_STATUS = [
27573
27598
  KEY_JOB_BATCH_STATUS_CANCELED,
27574
27599
  KEY_JOB_BATCH_STATUS_DEAD_LETTER,
27575
27600
  KEY_JOB_BATCH_STATUS_FAILED,
27601
+ KEY_JOB_BATCH_STATUS_LABEL,
27576
27602
  KEY_JOB_BATCH_STATUS_PAUSED,
27577
27603
  KEY_JOB_BATCH_STATUS_PROGRESS_PERCENTAGE,
27578
27604
  KEY_JOB_BATCH_STATUS_QUEUED,
package/src/openapi.yaml CHANGED
@@ -6618,6 +6618,12 @@ components:
6618
6618
  description: Number of jobs that failed execution
6619
6619
  title: Failed
6620
6620
  type: integer
6621
+ label:
6622
+ anyOf:
6623
+ - type: string
6624
+ - type: 'null'
6625
+ description: Human-readable label for this batch
6626
+ title: Label
6621
6627
  paused:
6622
6628
  default: 0
6623
6629
  description: Number of jobs in paused state
@@ -7275,6 +7281,7 @@ components:
7275
7281
  - CREATED
7276
7282
  - UPDATED
7277
7283
  - DELETED
7284
+ - IMPORTED
7278
7285
  - TRANSFER_STARTED
7279
7286
  - TRANSFER_COMPLETED
7280
7287
  - TRANSFER_OUT_STARTED
@@ -11533,7 +11540,7 @@ info:
11533
11540
  \n\n"
11534
11541
  summary: OpusDNS - your gateway to a seamless domain management experience.
11535
11542
  title: OpusDNS API
11536
- version: 2026-05-20-160808
11543
+ version: 2026-05-21-193646
11537
11544
  x-logo:
11538
11545
  altText: OpusDNS API Reference
11539
11546
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -22165,6 +22172,7 @@ paths:
22165
22172
  canceled: 0
22166
22173
  dead_letter: 0
22167
22174
  failed: 2
22175
+ label: Bulk RRset Patch
22168
22176
  progress_percentage: 100.0
22169
22177
  queued: 0
22170
22178
  running: 0
@@ -22179,6 +22187,7 @@ paths:
22179
22187
  canceled: 0
22180
22188
  dead_letter: 0
22181
22189
  failed: 0
22190
+ label: Bulk Domain Registration
22182
22191
  progress_percentage: 50.0
22183
22192
  queued: 3
22184
22193
  running: 2
package/src/schema.d.ts CHANGED
@@ -6868,6 +6868,11 @@ export interface components {
6868
6868
  * @description Number of jobs that failed execution
6869
6869
  */
6870
6870
  failed: number;
6871
+ /**
6872
+ * Label
6873
+ * @description Human-readable label for this batch
6874
+ */
6875
+ label?: string | null;
6871
6876
  /**
6872
6877
  * Paused
6873
6878
  * @description Number of jobs in paused state
@@ -7308,7 +7313,7 @@ export interface components {
7308
7313
  * ObjectEventType
7309
7314
  * @enum {string}
7310
7315
  */
7311
- ObjectEventType: "CREATED" | "UPDATED" | "DELETED" | "TRANSFER_STARTED" | "TRANSFER_COMPLETED" | "TRANSFER_OUT_STARTED" | "TRANSFER_OUT_COMPLETED" | "RENEWED" | "RESTORED" | "BILLING_TRANSACTION_RESERVED" | "BILLING_TRANSACTION_SUCCEEDED" | "BILLING_TRANSACTION_FAILED" | "BILLING_TRANSACTION_CANCELLED";
7316
+ ObjectEventType: "CREATED" | "UPDATED" | "DELETED" | "IMPORTED" | "TRANSFER_STARTED" | "TRANSFER_COMPLETED" | "TRANSFER_OUT_STARTED" | "TRANSFER_OUT_COMPLETED" | "RENEWED" | "RESTORED" | "BILLING_TRANSACTION_RESERVED" | "BILLING_TRANSACTION_SUCCEEDED" | "BILLING_TRANSACTION_FAILED" | "BILLING_TRANSACTION_CANCELLED";
7312
7317
  /** ObjectLog */
7313
7318
  ObjectLog: {
7314
7319
  /** @description Action performed */