@opusdns/api 0.221.0 → 0.222.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 +52 -0
- package/src/openapi.yaml +13 -1
- package/src/schema.d.ts +10 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -17754,6 +17754,31 @@ export const KEY_ORGANIZATION_DEFAULT_LOCALE: keyof Organization = 'default_loca
|
|
|
17754
17754
|
* @see {@link KEYS_ORGANIZATION} - Array of all keys for this type
|
|
17755
17755
|
*/
|
|
17756
17756
|
export const KEY_ORGANIZATION_DELETED_ON: keyof Organization = 'deleted_on';
|
|
17757
|
+
/**
|
|
17758
|
+
* Keycloak Organization Id
|
|
17759
|
+
*
|
|
17760
|
+
* Keycloak organization id
|
|
17761
|
+
*
|
|
17762
|
+
*
|
|
17763
|
+
*
|
|
17764
|
+
* @remarks
|
|
17765
|
+
* This key constant provides type-safe access to the `keycloak_organization_id` property of Organization objects.
|
|
17766
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17767
|
+
*
|
|
17768
|
+
* @example
|
|
17769
|
+
* ```typescript
|
|
17770
|
+
* // Direct property access
|
|
17771
|
+
* const value = organization[KEY_ORGANIZATION_KEYCLOAK_ORGANIZATION_ID];
|
|
17772
|
+
*
|
|
17773
|
+
* // Dynamic property access
|
|
17774
|
+
* const propertyName = KEY_ORGANIZATION_KEYCLOAK_ORGANIZATION_ID;
|
|
17775
|
+
* const value = organization[propertyName];
|
|
17776
|
+
* ```
|
|
17777
|
+
*
|
|
17778
|
+
* @see {@link Organization} - The TypeScript type definition
|
|
17779
|
+
* @see {@link KEYS_ORGANIZATION} - Array of all keys for this type
|
|
17780
|
+
*/
|
|
17781
|
+
export const KEY_ORGANIZATION_KEYCLOAK_ORGANIZATION_ID: keyof Organization = 'keycloak_organization_id';
|
|
17757
17782
|
/**
|
|
17758
17783
|
* Name
|
|
17759
17784
|
*
|
|
@@ -18038,6 +18063,7 @@ export const KEYS_ORGANIZATION = [
|
|
|
18038
18063
|
KEY_ORGANIZATION_CURRENCY,
|
|
18039
18064
|
KEY_ORGANIZATION_DEFAULT_LOCALE,
|
|
18040
18065
|
KEY_ORGANIZATION_DELETED_ON,
|
|
18066
|
+
KEY_ORGANIZATION_KEYCLOAK_ORGANIZATION_ID,
|
|
18041
18067
|
KEY_ORGANIZATION_NAME,
|
|
18042
18068
|
KEY_ORGANIZATION_ORGANIZATION_ID,
|
|
18043
18069
|
KEY_ORGANIZATION_PARENT_ORGANIZATION_ID,
|
|
@@ -19910,6 +19936,31 @@ export const KEY_ORGANIZATION_WITH_BILLING_DATA_DEFAULT_LOCALE: keyof Organizati
|
|
|
19910
19936
|
* @see {@link KEYS_ORGANIZATION_WITH_BILLING_DATA} - Array of all keys for this type
|
|
19911
19937
|
*/
|
|
19912
19938
|
export const KEY_ORGANIZATION_WITH_BILLING_DATA_DELETED_ON: keyof OrganizationWithBillingData = 'deleted_on';
|
|
19939
|
+
/**
|
|
19940
|
+
* Keycloak Organization Id
|
|
19941
|
+
*
|
|
19942
|
+
* Keycloak organization id
|
|
19943
|
+
*
|
|
19944
|
+
*
|
|
19945
|
+
*
|
|
19946
|
+
* @remarks
|
|
19947
|
+
* This key constant provides type-safe access to the `keycloak_organization_id` property of OrganizationWithBillingData objects.
|
|
19948
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
19949
|
+
*
|
|
19950
|
+
* @example
|
|
19951
|
+
* ```typescript
|
|
19952
|
+
* // Direct property access
|
|
19953
|
+
* const value = organizationwithbillingdata[KEY_ORGANIZATION_WITH_BILLING_DATA_KEYCLOAK_ORGANIZATION_ID];
|
|
19954
|
+
*
|
|
19955
|
+
* // Dynamic property access
|
|
19956
|
+
* const propertyName = KEY_ORGANIZATION_WITH_BILLING_DATA_KEYCLOAK_ORGANIZATION_ID;
|
|
19957
|
+
* const value = organizationwithbillingdata[propertyName];
|
|
19958
|
+
* ```
|
|
19959
|
+
*
|
|
19960
|
+
* @see {@link OrganizationWithBillingData} - The TypeScript type definition
|
|
19961
|
+
* @see {@link KEYS_ORGANIZATION_WITH_BILLING_DATA} - Array of all keys for this type
|
|
19962
|
+
*/
|
|
19963
|
+
export const KEY_ORGANIZATION_WITH_BILLING_DATA_KEYCLOAK_ORGANIZATION_ID: keyof OrganizationWithBillingData = 'keycloak_organization_id';
|
|
19913
19964
|
/**
|
|
19914
19965
|
* Name
|
|
19915
19966
|
*
|
|
@@ -20197,6 +20248,7 @@ export const KEYS_ORGANIZATION_WITH_BILLING_DATA = [
|
|
|
20197
20248
|
KEY_ORGANIZATION_WITH_BILLING_DATA_CURRENCY,
|
|
20198
20249
|
KEY_ORGANIZATION_WITH_BILLING_DATA_DEFAULT_LOCALE,
|
|
20199
20250
|
KEY_ORGANIZATION_WITH_BILLING_DATA_DELETED_ON,
|
|
20251
|
+
KEY_ORGANIZATION_WITH_BILLING_DATA_KEYCLOAK_ORGANIZATION_ID,
|
|
20200
20252
|
KEY_ORGANIZATION_WITH_BILLING_DATA_NAME,
|
|
20201
20253
|
KEY_ORGANIZATION_WITH_BILLING_DATA_ORGANIZATION_ID,
|
|
20202
20254
|
KEY_ORGANIZATION_WITH_BILLING_DATA_PARENT_ORGANIZATION_ID,
|
package/src/openapi.yaml
CHANGED
|
@@ -4415,6 +4415,12 @@ components:
|
|
|
4415
4415
|
- type: 'null'
|
|
4416
4416
|
description: The date/time the entry was deleted on
|
|
4417
4417
|
title: Deleted On
|
|
4418
|
+
keycloak_organization_id:
|
|
4419
|
+
anyOf:
|
|
4420
|
+
- type: string
|
|
4421
|
+
- type: 'null'
|
|
4422
|
+
description: Keycloak organization id
|
|
4423
|
+
title: Keycloak Organization Id
|
|
4418
4424
|
name:
|
|
4419
4425
|
description: Name of the organization.
|
|
4420
4426
|
minLength: 1
|
|
@@ -4950,6 +4956,12 @@ components:
|
|
|
4950
4956
|
- type: 'null'
|
|
4951
4957
|
description: The date/time the entry was deleted on
|
|
4952
4958
|
title: Deleted On
|
|
4959
|
+
keycloak_organization_id:
|
|
4960
|
+
anyOf:
|
|
4961
|
+
- type: string
|
|
4962
|
+
- type: 'null'
|
|
4963
|
+
description: Keycloak organization id
|
|
4964
|
+
title: Keycloak Organization Id
|
|
4953
4965
|
name:
|
|
4954
4966
|
description: Name of the organization.
|
|
4955
4967
|
minLength: 1
|
|
@@ -7313,7 +7325,7 @@ info:
|
|
|
7313
7325
|
'
|
|
7314
7326
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
7315
7327
|
title: OpusDNS API
|
|
7316
|
-
version: 2026-03-
|
|
7328
|
+
version: 2026-03-16-092857
|
|
7317
7329
|
x-logo:
|
|
7318
7330
|
altText: OpusDNS API Reference
|
|
7319
7331
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4898,6 +4898,11 @@ export interface components {
|
|
|
4898
4898
|
* @description The date/time the entry was deleted on
|
|
4899
4899
|
*/
|
|
4900
4900
|
deleted_on?: Date | null;
|
|
4901
|
+
/**
|
|
4902
|
+
* Keycloak Organization Id
|
|
4903
|
+
* @description Keycloak organization id
|
|
4904
|
+
*/
|
|
4905
|
+
keycloak_organization_id?: string | null;
|
|
4901
4906
|
/**
|
|
4902
4907
|
* Name
|
|
4903
4908
|
* @description Name of the organization.
|
|
@@ -5271,6 +5276,11 @@ export interface components {
|
|
|
5271
5276
|
* @description The date/time the entry was deleted on
|
|
5272
5277
|
*/
|
|
5273
5278
|
deleted_on?: Date | null;
|
|
5279
|
+
/**
|
|
5280
|
+
* Keycloak Organization Id
|
|
5281
|
+
* @description Keycloak organization id
|
|
5282
|
+
*/
|
|
5283
|
+
keycloak_organization_id?: string | null;
|
|
5274
5284
|
/**
|
|
5275
5285
|
* Name
|
|
5276
5286
|
* @description Name of the organization.
|