@opusdns/api 1.164.0 → 1.165.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 +2 -0
- package/src/openapi.yaml +11 -1
- package/src/schema.d.ts +7 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -4130,6 +4130,7 @@ export const KEY_NOR_ID_DECLARATION_DOMAIN_NAME = 'domain_name' satisfies keyof
|
|
|
4130
4130
|
export const KEY_NOR_ID_DECLARATION_EXPIRES_ON = 'expires_on' satisfies keyof NorIdDeclaration;
|
|
4131
4131
|
export const KEY_NOR_ID_DECLARATION_IDENTITY_TYPE = 'identity_type' satisfies keyof NorIdDeclaration;
|
|
4132
4132
|
export const KEY_NOR_ID_DECLARATION_IDENTITY_VALUE = 'identity_value' satisfies keyof NorIdDeclaration;
|
|
4133
|
+
export const KEY_NOR_ID_DECLARATION_ORGANIZATION_ID = 'organization_id' satisfies keyof NorIdDeclaration;
|
|
4133
4134
|
export const KEY_NOR_ID_DECLARATION_STATUS = 'status' satisfies keyof NorIdDeclaration;
|
|
4134
4135
|
export const KEY_NOR_ID_DECLARATION_SUBSCRIBER_NAME = 'subscriber_name' satisfies keyof NorIdDeclaration;
|
|
4135
4136
|
|
|
@@ -4142,6 +4143,7 @@ export const KEYS_NOR_ID_DECLARATION = [
|
|
|
4142
4143
|
KEY_NOR_ID_DECLARATION_EXPIRES_ON,
|
|
4143
4144
|
KEY_NOR_ID_DECLARATION_IDENTITY_TYPE,
|
|
4144
4145
|
KEY_NOR_ID_DECLARATION_IDENTITY_VALUE,
|
|
4146
|
+
KEY_NOR_ID_DECLARATION_ORGANIZATION_ID,
|
|
4145
4147
|
KEY_NOR_ID_DECLARATION_STATUS,
|
|
4146
4148
|
KEY_NOR_ID_DECLARATION_SUBSCRIBER_NAME,
|
|
4147
4149
|
] as const satisfies (keyof NorIdDeclaration)[];
|
package/src/openapi.yaml
CHANGED
|
@@ -10088,6 +10088,15 @@ components:
|
|
|
10088
10088
|
- type: 'null'
|
|
10089
10089
|
description: The subscriber identity (organization number or Person-ID)
|
|
10090
10090
|
title: Identity Value
|
|
10091
|
+
organization_id:
|
|
10092
|
+
description: The organization that owns the domain; used to brand the page
|
|
10093
|
+
examples:
|
|
10094
|
+
- organization_01h45ytscbebyvny4gc8cr8ma2
|
|
10095
|
+
format: typeid
|
|
10096
|
+
pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
10097
|
+
title: Organization Id
|
|
10098
|
+
type: string
|
|
10099
|
+
x-typeid-prefix: organization
|
|
10091
10100
|
status:
|
|
10092
10101
|
$ref: '#/components/schemas/NorIdDeclarationStatus'
|
|
10093
10102
|
description: The declaration status
|
|
@@ -10096,6 +10105,7 @@ components:
|
|
|
10096
10105
|
title: Subscriber Name
|
|
10097
10106
|
type: string
|
|
10098
10107
|
required:
|
|
10108
|
+
- organization_id
|
|
10099
10109
|
- domain_name
|
|
10100
10110
|
- subscriber_name
|
|
10101
10111
|
- declaration_version
|
|
@@ -16475,7 +16485,7 @@ info:
|
|
|
16475
16485
|
\n\n"
|
|
16476
16486
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16477
16487
|
title: OpusDNS API
|
|
16478
|
-
version: 2026-09-
|
|
16488
|
+
version: 2026-09-10-085639
|
|
16479
16489
|
x-logo:
|
|
16480
16490
|
altText: OpusDNS API Reference
|
|
16481
16491
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -9958,6 +9958,13 @@ export interface components {
|
|
|
9958
9958
|
* @description The subscriber identity (organization number or Person-ID)
|
|
9959
9959
|
*/
|
|
9960
9960
|
identity_value?: string | null;
|
|
9961
|
+
/**
|
|
9962
|
+
* Organization Id
|
|
9963
|
+
* Format: typeid
|
|
9964
|
+
* @description The organization that owns the domain; used to brand the page
|
|
9965
|
+
* @example organization_01h45ytscbebyvny4gc8cr8ma2
|
|
9966
|
+
*/
|
|
9967
|
+
organization_id: TypeId<"organization">;
|
|
9961
9968
|
/** @description The declaration status */
|
|
9962
9969
|
status: components["schemas"]["NorIdDeclarationStatus"];
|
|
9963
9970
|
/**
|