@opusdns/api 0.311.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 +1 -1
- package/src/helpers/keys.ts +26 -0
- package/src/openapi.yaml +9 -1
- package/src/schema.d.ts +5 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -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
|
|
@@ -11534,7 +11540,7 @@ info:
|
|
|
11534
11540
|
\n\n"
|
|
11535
11541
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11536
11542
|
title: OpusDNS API
|
|
11537
|
-
version: 2026-05-21-
|
|
11543
|
+
version: 2026-05-21-193646
|
|
11538
11544
|
x-logo:
|
|
11539
11545
|
altText: OpusDNS API Reference
|
|
11540
11546
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -22166,6 +22172,7 @@ paths:
|
|
|
22166
22172
|
canceled: 0
|
|
22167
22173
|
dead_letter: 0
|
|
22168
22174
|
failed: 2
|
|
22175
|
+
label: Bulk RRset Patch
|
|
22169
22176
|
progress_percentage: 100.0
|
|
22170
22177
|
queued: 0
|
|
22171
22178
|
running: 0
|
|
@@ -22180,6 +22187,7 @@ paths:
|
|
|
22180
22187
|
canceled: 0
|
|
22181
22188
|
dead_letter: 0
|
|
22182
22189
|
failed: 0
|
|
22190
|
+
label: Bulk Domain Registration
|
|
22183
22191
|
progress_percentage: 50.0
|
|
22184
22192
|
queued: 3
|
|
22185
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
|