@opusdns/api 0.302.0 → 0.303.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/constants.ts +1 -5
- package/src/openapi.yaml +1 -3
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -3165,8 +3165,6 @@ export const MESSAGE_CONTEXT_KIND = {
|
|
|
3165
3165
|
ZONES: "zones",
|
|
3166
3166
|
CONTACTS: "contacts",
|
|
3167
3167
|
DOMAINS: "domains",
|
|
3168
|
-
BATCH_IDS: "batch_ids",
|
|
3169
|
-
OTHER: "other",
|
|
3170
3168
|
} as const satisfies Record<string, MessageContextKind>;
|
|
3171
3169
|
|
|
3172
3170
|
/**
|
|
@@ -3193,9 +3191,7 @@ export const MESSAGE_CONTEXT_KIND = {
|
|
|
3193
3191
|
export const MESSAGE_CONTEXT_KIND_VALUES = [
|
|
3194
3192
|
'zones',
|
|
3195
3193
|
'contacts',
|
|
3196
|
-
'domains'
|
|
3197
|
-
'batch_ids',
|
|
3198
|
-
'other'
|
|
3194
|
+
'domains'
|
|
3199
3195
|
] as const satisfies [string, ...string[]] | MessageContextKind[];
|
|
3200
3196
|
|
|
3201
3197
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -7024,8 +7024,6 @@ components:
|
|
|
7024
7024
|
- zones
|
|
7025
7025
|
- contacts
|
|
7026
7026
|
- domains
|
|
7027
|
-
- batch_ids
|
|
7028
|
-
- other
|
|
7029
7027
|
title: MessageContextKind
|
|
7030
7028
|
type: string
|
|
7031
7029
|
MessageCreateRequest:
|
|
@@ -11347,7 +11345,7 @@ info:
|
|
|
11347
11345
|
\n\n"
|
|
11348
11346
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11349
11347
|
title: OpusDNS API
|
|
11350
|
-
version: 2026-05-
|
|
11348
|
+
version: 2026-05-18-081817
|
|
11351
11349
|
x-logo:
|
|
11352
11350
|
altText: OpusDNS API Reference
|
|
11353
11351
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7139,7 +7139,7 @@ export interface components {
|
|
|
7139
7139
|
* MessageContextKind
|
|
7140
7140
|
* @enum {string}
|
|
7141
7141
|
*/
|
|
7142
|
-
MessageContextKind: "zones" | "contacts" | "domains"
|
|
7142
|
+
MessageContextKind: "zones" | "contacts" | "domains";
|
|
7143
7143
|
/** MessageCreateRequest */
|
|
7144
7144
|
MessageCreateRequest: {
|
|
7145
7145
|
/** Content */
|