@opusdns/api 0.286.0 → 0.288.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.286.0",
6
+ "version": "0.288.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -4070,6 +4070,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
4070
4070
  US_NEXUS_CATEGORY: "US_NEXUS_CATEGORY",
4071
4071
  US_NEXUS_COUNTRY_CODE: "US_NEXUS_COUNTRY_CODE",
4072
4072
  US_APP_PURPOSE: "US_APP_PURPOSE",
4073
+ NIC_IT_ENTITY_TYPE: "NIC_IT_ENTITY_TYPE",
4074
+ NIC_IT_REG_CODE: "NIC_IT_REG_CODE",
4073
4075
  } as const satisfies Record<string, RegistryHandleAttributeType>;
4074
4076
 
4075
4077
  /**
@@ -4128,7 +4130,9 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
4128
4130
  'SIDN_LEGAL_REG_NO',
4129
4131
  'US_NEXUS_CATEGORY',
4130
4132
  'US_NEXUS_COUNTRY_CODE',
4131
- 'US_APP_PURPOSE'
4133
+ 'US_APP_PURPOSE',
4134
+ 'NIC_IT_ENTITY_TYPE',
4135
+ 'NIC_IT_REG_CODE'
4132
4136
  ] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
4133
4137
 
4134
4138
  /**
@@ -31901,30 +31901,30 @@ export const KEYS_PAGINATION_METADATA = [
31901
31901
  ] as const satisfies (keyof PaginationMetadata)[];
31902
31902
 
31903
31903
  /**
31904
- * Parking Id
31904
+ * Parking Reference
31905
31905
  *
31906
31906
  *
31907
31907
  * @type {string}
31908
31908
  *
31909
31909
  *
31910
31910
  * @remarks
31911
- * This key constant provides type-safe access to the `parking_id` property of ParkingActionPayloadData objects.
31911
+ * This key constant provides type-safe access to the `parking_reference` property of ParkingActionPayloadData objects.
31912
31912
  * Use this constant when you need to access properties dynamically or ensure type safety.
31913
31913
  *
31914
31914
  * @example
31915
31915
  * ```typescript
31916
31916
  * // Direct property access
31917
- * const value = parkingactionpayloaddata[KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_ID];
31917
+ * const value = parkingactionpayloaddata[KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_REFERENCE];
31918
31918
  *
31919
31919
  * // Dynamic property access
31920
- * const propertyName = KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_ID;
31920
+ * const propertyName = KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_REFERENCE;
31921
31921
  * const value = parkingactionpayloaddata[propertyName];
31922
31922
  * ```
31923
31923
  *
31924
31924
  * @see {@link ParkingActionPayloadData} - The TypeScript type definition
31925
31925
  * @see {@link KEYS_PARKING_ACTION_PAYLOAD_DATA} - Array of all keys for this type
31926
31926
  */
31927
- export const KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_ID: keyof ParkingActionPayloadData = 'parking_id';
31927
+ export const KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_REFERENCE: keyof ParkingActionPayloadData = 'parking_reference';
31928
31928
 
31929
31929
  /**
31930
31930
  * Array of all ParkingActionPayloadData property keys
@@ -31947,7 +31947,7 @@ export const KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_ID: keyof ParkingActionPayl
31947
31947
  * @see {@link ParkingActionPayloadData} - The TypeScript type definition
31948
31948
  */
31949
31949
  export const KEYS_PARKING_ACTION_PAYLOAD_DATA = [
31950
- KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_ID,
31950
+ KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_REFERENCE,
31951
31951
  ] as const satisfies (keyof ParkingActionPayloadData)[];
31952
31952
 
31953
31953
  /**
@@ -32696,31 +32696,30 @@ export const KEYS_PARKING_DELETE_BULK_COMMAND = [
32696
32696
  ] as const satisfies (keyof ParkingDeleteBulkCommand)[];
32697
32697
 
32698
32698
  /**
32699
- * Parking Id
32699
+ * Parking Reference
32700
32700
  *
32701
- * The parking ID of the entry to delete
32701
+ * The parking ID or domain name of the entry to delete
32702
32702
  *
32703
- * @type {string}
32704
32703
  *
32705
32704
  *
32706
32705
  * @remarks
32707
- * This key constant provides type-safe access to the `parking_id` property of ParkingDeleteBulkInstance objects.
32706
+ * This key constant provides type-safe access to the `parking_reference` property of ParkingDeleteBulkInstance objects.
32708
32707
  * Use this constant when you need to access properties dynamically or ensure type safety.
32709
32708
  *
32710
32709
  * @example
32711
32710
  * ```typescript
32712
32711
  * // Direct property access
32713
- * const value = parkingdeletebulkinstance[KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_ID];
32712
+ * const value = parkingdeletebulkinstance[KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_REFERENCE];
32714
32713
  *
32715
32714
  * // Dynamic property access
32716
- * const propertyName = KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_ID;
32715
+ * const propertyName = KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_REFERENCE;
32717
32716
  * const value = parkingdeletebulkinstance[propertyName];
32718
32717
  * ```
32719
32718
  *
32720
32719
  * @see {@link ParkingDeleteBulkInstance} - The TypeScript type definition
32721
32720
  * @see {@link KEYS_PARKING_DELETE_BULK_INSTANCE} - Array of all keys for this type
32722
32721
  */
32723
- export const KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_ID: keyof ParkingDeleteBulkInstance = 'parking_id';
32722
+ export const KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_REFERENCE: keyof ParkingDeleteBulkInstance = 'parking_reference';
32724
32723
 
32725
32724
  /**
32726
32725
  * Array of all ParkingDeleteBulkInstance property keys
@@ -32743,7 +32742,7 @@ export const KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_ID: keyof ParkingDeleteBul
32743
32742
  * @see {@link ParkingDeleteBulkInstance} - The TypeScript type definition
32744
32743
  */
32745
32744
  export const KEYS_PARKING_DELETE_BULK_INSTANCE = [
32746
- KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_ID,
32745
+ KEY_PARKING_DELETE_BULK_INSTANCE_PARKING_REFERENCE,
32747
32746
  ] as const satisfies (keyof ParkingDeleteBulkInstance)[];
32748
32747
 
32749
32748
  /**
@@ -33028,31 +33027,30 @@ export const KEYS_PARKING_DISABLE_BULK_COMMAND = [
33028
33027
  ] as const satisfies (keyof ParkingDisableBulkCommand)[];
33029
33028
 
33030
33029
  /**
33031
- * Parking Id
33030
+ * Parking Reference
33032
33031
  *
33033
- * The parking ID of the entry to disable
33032
+ * The parking ID or domain name of the entry to disable
33034
33033
  *
33035
- * @type {string}
33036
33034
  *
33037
33035
  *
33038
33036
  * @remarks
33039
- * This key constant provides type-safe access to the `parking_id` property of ParkingDisableBulkInstance objects.
33037
+ * This key constant provides type-safe access to the `parking_reference` property of ParkingDisableBulkInstance objects.
33040
33038
  * Use this constant when you need to access properties dynamically or ensure type safety.
33041
33039
  *
33042
33040
  * @example
33043
33041
  * ```typescript
33044
33042
  * // Direct property access
33045
- * const value = parkingdisablebulkinstance[KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_ID];
33043
+ * const value = parkingdisablebulkinstance[KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_REFERENCE];
33046
33044
  *
33047
33045
  * // Dynamic property access
33048
- * const propertyName = KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_ID;
33046
+ * const propertyName = KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_REFERENCE;
33049
33047
  * const value = parkingdisablebulkinstance[propertyName];
33050
33048
  * ```
33051
33049
  *
33052
33050
  * @see {@link ParkingDisableBulkInstance} - The TypeScript type definition
33053
33051
  * @see {@link KEYS_PARKING_DISABLE_BULK_INSTANCE} - Array of all keys for this type
33054
33052
  */
33055
- export const KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_ID: keyof ParkingDisableBulkInstance = 'parking_id';
33053
+ export const KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_REFERENCE: keyof ParkingDisableBulkInstance = 'parking_reference';
33056
33054
 
33057
33055
  /**
33058
33056
  * Array of all ParkingDisableBulkInstance property keys
@@ -33075,7 +33073,7 @@ export const KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_ID: keyof ParkingDisableB
33075
33073
  * @see {@link ParkingDisableBulkInstance} - The TypeScript type definition
33076
33074
  */
33077
33075
  export const KEYS_PARKING_DISABLE_BULK_INSTANCE = [
33078
- KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_ID,
33076
+ KEY_PARKING_DISABLE_BULK_INSTANCE_PARKING_REFERENCE,
33079
33077
  ] as const satisfies (keyof ParkingDisableBulkInstance)[];
33080
33078
 
33081
33079
  /**
@@ -33360,31 +33358,30 @@ export const KEYS_PARKING_ENABLE_BULK_COMMAND = [
33360
33358
  ] as const satisfies (keyof ParkingEnableBulkCommand)[];
33361
33359
 
33362
33360
  /**
33363
- * Parking Id
33361
+ * Parking Reference
33364
33362
  *
33365
- * The parking ID of the entry to enable
33363
+ * The parking ID or domain name of the entry to enable
33366
33364
  *
33367
- * @type {string}
33368
33365
  *
33369
33366
  *
33370
33367
  * @remarks
33371
- * This key constant provides type-safe access to the `parking_id` property of ParkingEnableBulkInstance objects.
33368
+ * This key constant provides type-safe access to the `parking_reference` property of ParkingEnableBulkInstance objects.
33372
33369
  * Use this constant when you need to access properties dynamically or ensure type safety.
33373
33370
  *
33374
33371
  * @example
33375
33372
  * ```typescript
33376
33373
  * // Direct property access
33377
- * const value = parkingenablebulkinstance[KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_ID];
33374
+ * const value = parkingenablebulkinstance[KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_REFERENCE];
33378
33375
  *
33379
33376
  * // Dynamic property access
33380
- * const propertyName = KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_ID;
33377
+ * const propertyName = KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_REFERENCE;
33381
33378
  * const value = parkingenablebulkinstance[propertyName];
33382
33379
  * ```
33383
33380
  *
33384
33381
  * @see {@link ParkingEnableBulkInstance} - The TypeScript type definition
33385
33382
  * @see {@link KEYS_PARKING_ENABLE_BULK_INSTANCE} - Array of all keys for this type
33386
33383
  */
33387
- export const KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_ID: keyof ParkingEnableBulkInstance = 'parking_id';
33384
+ export const KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_REFERENCE: keyof ParkingEnableBulkInstance = 'parking_reference';
33388
33385
 
33389
33386
  /**
33390
33387
  * Array of all ParkingEnableBulkInstance property keys
@@ -33407,7 +33404,7 @@ export const KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_ID: keyof ParkingEnableBul
33407
33404
  * @see {@link ParkingEnableBulkInstance} - The TypeScript type definition
33408
33405
  */
33409
33406
  export const KEYS_PARKING_ENABLE_BULK_INSTANCE = [
33410
- KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_ID,
33407
+ KEY_PARKING_ENABLE_BULK_INSTANCE_PARKING_REFERENCE,
33411
33408
  ] as const satisfies (keyof ParkingEnableBulkInstance)[];
33412
33409
 
33413
33410
  /**
@@ -6152,57 +6152,57 @@ export type GET_ParkingMetrics_Request = {
6152
6152
  export type GET_ParkingMetrics_Request_Query = GET_ParkingMetrics_Request['parameters']['query'];
6153
6153
 
6154
6154
  /**
6155
- * Request type for GET ParkingParkingIdMetrics endpoint
6155
+ * Request type for GET ParkingParkingReferenceMetrics endpoint
6156
6156
  *
6157
6157
  * Get metrics for a parking entry
6158
- * Retrieves metrics for a specific parking entry by ID.
6158
+ * Retrieves metrics for a specific parking entry by ID or domain name.
6159
6159
  *
6160
6160
  * @remarks
6161
- * This type defines the complete request structure for the GET ParkingParkingIdMetrics endpoint.
6161
+ * This type defines the complete request structure for the GET ParkingParkingReferenceMetrics endpoint.
6162
6162
  * It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
6163
6163
  * Use this type to ensure type safety when making API requests to this endpoint.
6164
6164
  *
6165
6165
  * @example
6166
6166
  * Use this type to ensure type safety when making API requests to this endpoint.
6167
6167
  *
6168
- * @path /v1/parking/{parking_id}/metrics
6168
+ * @path /v1/parking/{parking_reference}/metrics
6169
6169
  *
6170
- * @see {@link GET_ParkingParkingIdMetrics_Request_Query} - Query parameters type
6171
- * @see {@link GET_ParkingParkingIdMetrics_Request_Path} - Path parameters type
6172
- * @see {@link GET_ParkingParkingIdMetrics_Request_Body} - Request body type
6170
+ * @see {@link GET_ParkingParkingReferenceMetrics_Request_Query} - Query parameters type
6171
+ * @see {@link GET_ParkingParkingReferenceMetrics_Request_Path} - Path parameters type
6172
+ * @see {@link GET_ParkingParkingReferenceMetrics_Request_Body} - Request body type
6173
6173
  */
6174
- export type GET_ParkingParkingIdMetrics_Request = {
6174
+ export type GET_ParkingParkingReferenceMetrics_Request = {
6175
6175
  parameters: {
6176
- query: operations['get_parking_metrics_v1_parking__parking_id__metrics_get']['parameters']['query'];
6177
- path: operations['get_parking_metrics_v1_parking__parking_id__metrics_get']['parameters']['path'];
6176
+ query: operations['get_parking_metrics_v1_parking__parking_reference__metrics_get']['parameters']['query'];
6177
+ path: operations['get_parking_metrics_v1_parking__parking_reference__metrics_get']['parameters']['path'];
6178
6178
  };
6179
6179
  }
6180
6180
  /**
6181
- * Query parameters for GET /v1/parking/{parking_id}/metrics
6181
+ * Query parameters for GET /v1/parking/{parking_reference}/metrics
6182
6182
  *
6183
6183
  * @remarks
6184
- * This type defines the query parameters for the GET /v1/parking/{parking_id}/metrics endpoint.
6184
+ * This type defines the query parameters for the GET /v1/parking/{parking_reference}/metrics endpoint.
6185
6185
  * It provides type safety for all query parameters as defined in the OpenAPI specification.
6186
6186
  *
6187
6187
  * @example
6188
6188
  * Use this type to ensure type safety for query parameters.
6189
6189
  *
6190
- * @path /v1/parking/{parking_id}/metrics
6190
+ * @path /v1/parking/{parking_reference}/metrics
6191
6191
  */
6192
- export type GET_ParkingParkingIdMetrics_Request_Query = GET_ParkingParkingIdMetrics_Request['parameters']['query'];
6192
+ export type GET_ParkingParkingReferenceMetrics_Request_Query = GET_ParkingParkingReferenceMetrics_Request['parameters']['query'];
6193
6193
  /**
6194
- * Path parameters for GET /v1/parking/{parking_id}/metrics
6194
+ * Path parameters for GET /v1/parking/{parking_reference}/metrics
6195
6195
  *
6196
6196
  * @remarks
6197
- * This type defines the path parameters for the GET /v1/parking/{parking_id}/metrics endpoint.
6197
+ * This type defines the path parameters for the GET /v1/parking/{parking_reference}/metrics endpoint.
6198
6198
  * It provides type safety for all path parameters as defined in the OpenAPI specification.
6199
6199
  *
6200
6200
  * @example
6201
6201
  * Use this type to ensure type safety for path parameters.
6202
6202
  *
6203
- * @path /v1/parking/{parking_id}/metrics
6203
+ * @path /v1/parking/{parking_reference}/metrics
6204
6204
  */
6205
- export type GET_ParkingParkingIdMetrics_Request_Path = GET_ParkingParkingIdMetrics_Request['parameters']['path'];
6205
+ export type GET_ParkingParkingReferenceMetrics_Request_Path = GET_ParkingParkingReferenceMetrics_Request['parameters']['path'];
6206
6206
 
6207
6207
  /**
6208
6208
  * Request type for POST ParkingSignup endpoint
@@ -12133,114 +12133,114 @@ export type GET_Parking_Response_403 = Problem
12133
12133
  export type GET_Parking_Response_422 = HTTPValidationError
12134
12134
 
12135
12135
  /**
12136
- * Response types for GET ParkingByParkingIdMetrics endpoint
12136
+ * Response types for GET ParkingByParkingReferenceMetrics endpoint
12137
12137
  *
12138
12138
  * Get metrics for a parking entry
12139
- * Retrieves metrics for a specific parking entry by ID.
12139
+ * Retrieves metrics for a specific parking entry by ID or domain name.
12140
12140
  *
12141
12141
  * @remarks
12142
- * This type defines all possible response structures for the GET ParkingByParkingIdMetrics endpoint.
12142
+ * This type defines all possible response structures for the GET ParkingByParkingReferenceMetrics endpoint.
12143
12143
  * Each response code maps to a specific response type as defined in the OpenAPI specification.
12144
12144
  * Use this type to ensure type safety when handling API responses from this endpoint.
12145
12145
  *
12146
12146
 
12147
12147
  *
12148
- * @path /v1/parking/{parking_id}/metrics
12148
+ * @path /v1/parking/{parking_reference}/metrics
12149
12149
  *
12150
- * @see {@link GET_ParkingByParkingIdMetrics_Response_200} - 200 response type
12151
- * @see {@link GET_ParkingByParkingIdMetrics_Response_401} - 401 response type
12152
- * @see {@link GET_ParkingByParkingIdMetrics_Response_403} - 403 response type
12153
- * @see {@link GET_ParkingByParkingIdMetrics_Response_404} - 404 response type
12154
- * @see {@link GET_ParkingByParkingIdMetrics_Response_422} - 422 response type
12150
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response_200} - 200 response type
12151
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response_401} - 401 response type
12152
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response_403} - 403 response type
12153
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response_404} - 404 response type
12154
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response_422} - 422 response type
12155
12155
  *
12156
12156
 
12157
12157
  */
12158
- export type GET_ParkingByParkingIdMetrics_Response = GET_ParkingByParkingIdMetrics_Response_200 | GET_ParkingByParkingIdMetrics_Response_401 | GET_ParkingByParkingIdMetrics_Response_403 | GET_ParkingByParkingIdMetrics_Response_404 | GET_ParkingByParkingIdMetrics_Response_422;
12158
+ export type GET_ParkingByParkingReferenceMetrics_Response = GET_ParkingByParkingReferenceMetrics_Response_200 | GET_ParkingByParkingReferenceMetrics_Response_401 | GET_ParkingByParkingReferenceMetrics_Response_403 | GET_ParkingByParkingReferenceMetrics_Response_404 | GET_ParkingByParkingReferenceMetrics_Response_422;
12159
12159
 
12160
12160
  /**
12161
- * 200 response for GET ParkingByParkingIdMetrics endpoint
12161
+ * 200 response for GET ParkingByParkingReferenceMetrics endpoint
12162
12162
  *
12163
12163
  * @remarks
12164
12164
  * This type defines the response structure for the 200 status code
12165
- * of the GET ParkingByParkingIdMetrics endpoint.
12165
+ * of the GET ParkingByParkingReferenceMetrics endpoint.
12166
12166
  * It provides type safety for handling this specific response as defined in the OpenAPI specification.
12167
12167
  *
12168
12168
 
12169
12169
  *
12170
- * @path /v1/parking/{parking_id}/metrics
12170
+ * @path /v1/parking/{parking_reference}/metrics
12171
12171
  *
12172
- * @see {@link GET_ParkingByParkingIdMetrics_Response} - The main response type definition
12172
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response} - The main response type definition
12173
12173
  * @see {@link ParkingMetrics} - The actual schema type definition
12174
12174
  */
12175
- export type GET_ParkingByParkingIdMetrics_Response_200 = ParkingMetrics
12175
+ export type GET_ParkingByParkingReferenceMetrics_Response_200 = ParkingMetrics
12176
12176
 
12177
12177
  /**
12178
- * 401 response for GET ParkingByParkingIdMetrics endpoint
12178
+ * 401 response for GET ParkingByParkingReferenceMetrics endpoint
12179
12179
  *
12180
12180
  * @remarks
12181
12181
  * This type defines the response structure for the 401 status code
12182
- * of the GET ParkingByParkingIdMetrics endpoint.
12182
+ * of the GET ParkingByParkingReferenceMetrics endpoint.
12183
12183
  * It provides type safety for handling this specific response as defined in the OpenAPI specification.
12184
12184
  *
12185
12185
 
12186
12186
  *
12187
- * @path /v1/parking/{parking_id}/metrics
12187
+ * @path /v1/parking/{parking_reference}/metrics
12188
12188
  *
12189
- * @see {@link GET_ParkingByParkingIdMetrics_Response} - The main response type definition
12189
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response} - The main response type definition
12190
12190
  * @see {@link Problem} - The actual schema type definition
12191
12191
  */
12192
- export type GET_ParkingByParkingIdMetrics_Response_401 = Problem
12192
+ export type GET_ParkingByParkingReferenceMetrics_Response_401 = Problem
12193
12193
 
12194
12194
  /**
12195
- * 403 response for GET ParkingByParkingIdMetrics endpoint
12195
+ * 403 response for GET ParkingByParkingReferenceMetrics endpoint
12196
12196
  *
12197
12197
  * @remarks
12198
12198
  * This type defines the response structure for the 403 status code
12199
- * of the GET ParkingByParkingIdMetrics endpoint.
12199
+ * of the GET ParkingByParkingReferenceMetrics endpoint.
12200
12200
  * It provides type safety for handling this specific response as defined in the OpenAPI specification.
12201
12201
  *
12202
12202
 
12203
12203
  *
12204
- * @path /v1/parking/{parking_id}/metrics
12204
+ * @path /v1/parking/{parking_reference}/metrics
12205
12205
  *
12206
- * @see {@link GET_ParkingByParkingIdMetrics_Response} - The main response type definition
12206
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response} - The main response type definition
12207
12207
  * @see {@link Problem} - The actual schema type definition
12208
12208
  */
12209
- export type GET_ParkingByParkingIdMetrics_Response_403 = Problem
12209
+ export type GET_ParkingByParkingReferenceMetrics_Response_403 = Problem
12210
12210
 
12211
12211
  /**
12212
- * 404 response for GET ParkingByParkingIdMetrics endpoint
12212
+ * 404 response for GET ParkingByParkingReferenceMetrics endpoint
12213
12213
  *
12214
12214
  * @remarks
12215
12215
  * This type defines the response structure for the 404 status code
12216
- * of the GET ParkingByParkingIdMetrics endpoint.
12216
+ * of the GET ParkingByParkingReferenceMetrics endpoint.
12217
12217
  * It provides type safety for handling this specific response as defined in the OpenAPI specification.
12218
12218
  *
12219
12219
 
12220
12220
  *
12221
- * @path /v1/parking/{parking_id}/metrics
12221
+ * @path /v1/parking/{parking_reference}/metrics
12222
12222
  *
12223
- * @see {@link GET_ParkingByParkingIdMetrics_Response} - The main response type definition
12223
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response} - The main response type definition
12224
12224
  * @see {@link Problem} - The actual schema type definition
12225
12225
  */
12226
- export type GET_ParkingByParkingIdMetrics_Response_404 = Problem
12226
+ export type GET_ParkingByParkingReferenceMetrics_Response_404 = Problem
12227
12227
 
12228
12228
  /**
12229
- * 422 response for GET ParkingByParkingIdMetrics endpoint
12229
+ * 422 response for GET ParkingByParkingReferenceMetrics endpoint
12230
12230
  *
12231
12231
  * @remarks
12232
12232
  * This type defines the response structure for the 422 status code
12233
- * of the GET ParkingByParkingIdMetrics endpoint.
12233
+ * of the GET ParkingByParkingReferenceMetrics endpoint.
12234
12234
  * It provides type safety for handling this specific response as defined in the OpenAPI specification.
12235
12235
  *
12236
12236
 
12237
12237
  *
12238
- * @path /v1/parking/{parking_id}/metrics
12238
+ * @path /v1/parking/{parking_reference}/metrics
12239
12239
  *
12240
- * @see {@link GET_ParkingByParkingIdMetrics_Response} - The main response type definition
12240
+ * @see {@link GET_ParkingByParkingReferenceMetrics_Response} - The main response type definition
12241
12241
  * @see {@link HTTPValidationError} - The actual schema type definition
12242
12242
  */
12243
- export type GET_ParkingByParkingIdMetrics_Response_422 = HTTPValidationError
12243
+ export type GET_ParkingByParkingReferenceMetrics_Response_422 = HTTPValidationError
12244
12244
 
12245
12245
  /**
12246
12246
  * Response types for GET ParkingMetrics endpoint
package/src/openapi.yaml CHANGED
@@ -8043,11 +8043,11 @@ components:
8043
8043
  type: object
8044
8044
  ParkingActionPayloadData:
8045
8045
  properties:
8046
- parking_id:
8047
- title: Parking Id
8046
+ parking_reference:
8047
+ title: Parking Reference
8048
8048
  type: string
8049
8049
  required:
8050
- - parking_id
8050
+ - parking_reference
8051
8051
  title: ParkingActionPayloadData
8052
8052
  type: object
8053
8053
  ParkingAgreementAcceptance:
@@ -8199,17 +8199,19 @@ components:
8199
8199
  type: object
8200
8200
  ParkingDeleteBulkInstance:
8201
8201
  properties:
8202
- parking_id:
8203
- description: The parking ID of the entry to delete
8204
- examples:
8205
- - parking_01h45ytscbebyvny4gc8cr8ma2
8206
- format: typeid
8207
- pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
8208
- title: Parking Id
8209
- type: string
8210
- x-typeid-prefix: parking
8202
+ parking_reference:
8203
+ anyOf:
8204
+ - examples:
8205
+ - parking_01h45ytscbebyvny4gc8cr8ma2
8206
+ format: typeid
8207
+ pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
8208
+ type: string
8209
+ x-typeid-prefix: parking
8210
+ - type: string
8211
+ description: The parking ID or domain name of the entry to delete
8212
+ title: Parking Reference
8211
8213
  required:
8212
- - parking_id
8214
+ - parking_reference
8213
8215
  title: ParkingDeleteBulkInstance
8214
8216
  type: object
8215
8217
  ParkingDeleteBulkPayload:
@@ -8270,17 +8272,19 @@ components:
8270
8272
  type: object
8271
8273
  ParkingDisableBulkInstance:
8272
8274
  properties:
8273
- parking_id:
8274
- description: The parking ID of the entry to disable
8275
- examples:
8276
- - parking_01h45ytscbebyvny4gc8cr8ma2
8277
- format: typeid
8278
- pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
8279
- title: Parking Id
8280
- type: string
8281
- x-typeid-prefix: parking
8275
+ parking_reference:
8276
+ anyOf:
8277
+ - examples:
8278
+ - parking_01h45ytscbebyvny4gc8cr8ma2
8279
+ format: typeid
8280
+ pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
8281
+ type: string
8282
+ x-typeid-prefix: parking
8283
+ - type: string
8284
+ description: The parking ID or domain name of the entry to disable
8285
+ title: Parking Reference
8282
8286
  required:
8283
- - parking_id
8287
+ - parking_reference
8284
8288
  title: ParkingDisableBulkInstance
8285
8289
  type: object
8286
8290
  ParkingDisableBulkPayload:
@@ -8341,17 +8345,19 @@ components:
8341
8345
  type: object
8342
8346
  ParkingEnableBulkInstance:
8343
8347
  properties:
8344
- parking_id:
8345
- description: The parking ID of the entry to enable
8346
- examples:
8347
- - parking_01h45ytscbebyvny4gc8cr8ma2
8348
- format: typeid
8349
- pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
8350
- title: Parking Id
8351
- type: string
8352
- x-typeid-prefix: parking
8348
+ parking_reference:
8349
+ anyOf:
8350
+ - examples:
8351
+ - parking_01h45ytscbebyvny4gc8cr8ma2
8352
+ format: typeid
8353
+ pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
8354
+ type: string
8355
+ x-typeid-prefix: parking
8356
+ - type: string
8357
+ description: The parking ID or domain name of the entry to enable
8358
+ title: Parking Reference
8353
8359
  required:
8354
- - parking_id
8360
+ - parking_reference
8355
8361
  title: ParkingEnableBulkInstance
8356
8362
  type: object
8357
8363
  ParkingEnableBulkPayload:
@@ -9090,6 +9096,8 @@ components:
9090
9096
  - US_NEXUS_CATEGORY
9091
9097
  - US_NEXUS_COUNTRY_CODE
9092
9098
  - US_APP_PURPOSE
9099
+ - NIC_IT_ENTITY_TYPE
9100
+ - NIC_IT_REG_CODE
9093
9101
  title: RegistryHandleAttributeType
9094
9102
  type: string
9095
9103
  RegistryLockBase:
@@ -10760,7 +10768,7 @@ info:
10760
10768
  \n\n"
10761
10769
  summary: OpusDNS - your gateway to a seamless domain management experience.
10762
10770
  title: OpusDNS API
10763
- version: 2026-05-06-130436
10771
+ version: 2026-05-06-194040
10764
10772
  x-logo:
10765
10773
  altText: OpusDNS API Reference
10766
10774
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -20665,9 +20673,9 @@ paths:
20665
20673
  idempotency_key: bulk-parking-delete-2025-01
20666
20674
  payload:
20667
20675
  instances:
20668
- - parking_id: parking_01kfzcw9vze6crvqd6mhdw8rkc
20669
- - parking_id: parking_01kfzcw9w0e3qvme8v2ftq49qd
20670
- - parking_id: parking_01kfzcw9w1ebbse9qcrkdxsv6b
20676
+ - parking_reference: parking_01kfzcw9vze6crvqd6mhdw8rkc
20677
+ - parking_reference: parked2.com
20678
+ - parking_reference: parking_01kfzcw9w1ebbse9qcrkdxsv6b
20671
20679
  version: v1
20672
20680
  bulk_parking_disable:
20673
20681
  description: Disable multiple parking entries at once by specifying
@@ -20679,9 +20687,9 @@ paths:
20679
20687
  idempotency_key: bulk-parking-disable-2025-01
20680
20688
  payload:
20681
20689
  instances:
20682
- - parking_id: parking_01kfzcw9vze6crvqd6mhdw8rkc
20683
- - parking_id: parking_01kfzcw9w0e3qvme8v2ftq49qd
20684
- - parking_id: parking_01kfzcw9w1ebbse9qcrkdxsv6b
20690
+ - parking_reference: parking_01kfzcw9vze6crvqd6mhdw8rkc
20691
+ - parking_reference: parked2.com
20692
+ - parking_reference: parking_01kfzcw9w1ebbse9qcrkdxsv6b
20685
20693
  version: v1
20686
20694
  bulk_parking_enable:
20687
20695
  description: Enable multiple parking entries at once by specifying
@@ -20693,9 +20701,9 @@ paths:
20693
20701
  idempotency_key: bulk-parking-enable-2025-01
20694
20702
  payload:
20695
20703
  instances:
20696
- - parking_id: parking_01kfzcw9vze6crvqd6mhdw8rkc
20697
- - parking_id: parking_01kfzcw9w0e3qvme8v2ftq49qd
20698
- - parking_id: parking_01kfzcw9w1ebbse9qcrkdxsv6b
20704
+ - parking_reference: parking_01kfzcw9vze6crvqd6mhdw8rkc
20705
+ - parking_reference: parked2.com
20706
+ - parking_reference: parking_01kfzcw9w1ebbse9qcrkdxsv6b
20699
20707
  version: v1
20700
20708
  bulk_updates:
20701
20709
  description: Submit multiple domain update commands in a single batch
@@ -23062,22 +23070,25 @@ paths:
23062
23070
  summary: Get parking signup status
23063
23071
  tags:
23064
23072
  - parking
23065
- /v1/parking/{parking_id}/metrics:
23073
+ /v1/parking/{parking_reference}/metrics:
23066
23074
  get:
23067
- description: Retrieves metrics for a specific parking entry by ID.
23068
- operationId: get_parking_metrics_v1_parking__parking_id__metrics_get
23075
+ description: Retrieves metrics for a specific parking entry by ID or domain
23076
+ name.
23077
+ operationId: get_parking_metrics_v1_parking__parking_reference__metrics_get
23069
23078
  parameters:
23070
23079
  - in: path
23071
- name: parking_id
23080
+ name: parking_reference
23072
23081
  required: true
23073
23082
  schema:
23074
- examples:
23075
- - parking_01h45ytscbebyvny4gc8cr8ma2
23076
- format: typeid
23077
- pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
23078
- title: Parking Id
23079
- type: string
23080
- x-typeid-prefix: parking
23083
+ anyOf:
23084
+ - examples:
23085
+ - parking_01h45ytscbebyvny4gc8cr8ma2
23086
+ format: typeid
23087
+ pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
23088
+ type: string
23089
+ x-typeid-prefix: parking
23090
+ - type: string
23091
+ title: Parking Reference
23081
23092
  - in: query
23082
23093
  name: start_time
23083
23094
  required: false
package/src/schema.d.ts CHANGED
@@ -2010,7 +2010,7 @@ export interface paths {
2010
2010
  patch?: never;
2011
2011
  trace?: never;
2012
2012
  };
2013
- "/v1/parking/{parking_id}/metrics": {
2013
+ "/v1/parking/{parking_reference}/metrics": {
2014
2014
  parameters: {
2015
2015
  query?: never;
2016
2016
  header?: never;
@@ -2019,9 +2019,9 @@ export interface paths {
2019
2019
  };
2020
2020
  /**
2021
2021
  * Get metrics for a parking entry
2022
- * @description Retrieves metrics for a specific parking entry by ID.
2022
+ * @description Retrieves metrics for a specific parking entry by ID or domain name.
2023
2023
  */
2024
- get: operations["get_parking_metrics_v1_parking__parking_id__metrics_get"];
2024
+ get: operations["get_parking_metrics_v1_parking__parking_reference__metrics_get"];
2025
2025
  put?: never;
2026
2026
  post?: never;
2027
2027
  delete?: never;
@@ -7747,8 +7747,8 @@ export interface components {
7747
7747
  };
7748
7748
  /** ParkingActionPayloadData */
7749
7749
  ParkingActionPayloadData: {
7750
- /** Parking Id */
7751
- parking_id: string;
7750
+ /** Parking Reference */
7751
+ parking_reference: string;
7752
7752
  };
7753
7753
  /**
7754
7754
  * ParkingAgreementAcceptance
@@ -7870,12 +7870,10 @@ export interface components {
7870
7870
  /** ParkingDeleteBulkInstance */
7871
7871
  ParkingDeleteBulkInstance: {
7872
7872
  /**
7873
- * Parking Id
7874
- * Format: typeid
7875
- * @description The parking ID of the entry to delete
7876
- * @example parking_01h45ytscbebyvny4gc8cr8ma2
7873
+ * Parking Reference
7874
+ * @description The parking ID or domain name of the entry to delete
7877
7875
  */
7878
- parking_id: TypeId<"parking">;
7876
+ parking_reference: TypeId<"parking"> | string;
7879
7877
  };
7880
7878
  /** ParkingDeleteBulkPayload */
7881
7879
  ParkingDeleteBulkPayload: {
@@ -7920,12 +7918,10 @@ export interface components {
7920
7918
  /** ParkingDisableBulkInstance */
7921
7919
  ParkingDisableBulkInstance: {
7922
7920
  /**
7923
- * Parking Id
7924
- * Format: typeid
7925
- * @description The parking ID of the entry to disable
7926
- * @example parking_01h45ytscbebyvny4gc8cr8ma2
7921
+ * Parking Reference
7922
+ * @description The parking ID or domain name of the entry to disable
7927
7923
  */
7928
- parking_id: TypeId<"parking">;
7924
+ parking_reference: TypeId<"parking"> | string;
7929
7925
  };
7930
7926
  /** ParkingDisableBulkPayload */
7931
7927
  ParkingDisableBulkPayload: {
@@ -7970,12 +7966,10 @@ export interface components {
7970
7966
  /** ParkingEnableBulkInstance */
7971
7967
  ParkingEnableBulkInstance: {
7972
7968
  /**
7973
- * Parking Id
7974
- * Format: typeid
7975
- * @description The parking ID of the entry to enable
7976
- * @example parking_01h45ytscbebyvny4gc8cr8ma2
7969
+ * Parking Reference
7970
+ * @description The parking ID or domain name of the entry to enable
7977
7971
  */
7978
- parking_id: TypeId<"parking">;
7972
+ parking_reference: TypeId<"parking"> | string;
7979
7973
  };
7980
7974
  /** ParkingEnableBulkPayload */
7981
7975
  ParkingEnableBulkPayload: {
@@ -8432,7 +8426,7 @@ export interface components {
8432
8426
  * @description Registry handle attribute types for type-safe attribute key access.
8433
8427
  * @enum {string}
8434
8428
  */
8435
- RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE";
8429
+ RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE";
8436
8430
  /** RegistryLockBase */
8437
8431
  RegistryLockBase: {
8438
8432
  /**
@@ -18710,7 +18704,7 @@ export interface operations {
18710
18704
  };
18711
18705
  };
18712
18706
  };
18713
- get_parking_metrics_v1_parking__parking_id__metrics_get: {
18707
+ get_parking_metrics_v1_parking__parking_reference__metrics_get: {
18714
18708
  parameters: {
18715
18709
  query?: {
18716
18710
  start_time?: Date | null;
@@ -18718,7 +18712,7 @@ export interface operations {
18718
18712
  };
18719
18713
  header?: never;
18720
18714
  path: {
18721
- parking_id: TypeId<"parking">;
18715
+ parking_reference: TypeId<"parking"> | string;
18722
18716
  };
18723
18717
  cookie?: never;
18724
18718
  };