@opusdns/api 0.198.0 → 0.200.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 +55 -1
- package/src/helpers/keys.ts +1596 -271
- package/src/helpers/requests.d.ts +241 -2
- package/src/helpers/responses.d.ts +408 -4
- package/src/helpers/schemas-arrays.d.ts +44 -30
- package/src/helpers/schemas.d.ts +160 -16
- package/src/openapi.yaml +684 -27
- package/src/schema.d.ts +622 -23
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -58,6 +58,22 @@ export type AllocationMethodType = components['schemas']['AllocationMethodType']
|
|
|
58
58
|
* @see {@link components} - The OpenAPI components schema definition
|
|
59
59
|
*/
|
|
60
60
|
export type AllowedNumberOfNameserverBase = components['schemas']['AllowedNumberOfNameserverBase'];
|
|
61
|
+
/**
|
|
62
|
+
* AttributeCondition
|
|
63
|
+
*
|
|
64
|
+
* @remarks
|
|
65
|
+
* Type alias for the `AttributeCondition` OpenAPI schema.
|
|
66
|
+
* This type represents attributecondition data structures used in API requests and responses.
|
|
67
|
+
*
|
|
68
|
+
* @example
|
|
69
|
+
* ```typescript
|
|
70
|
+
* const response = await api.getAttributeCondition();
|
|
71
|
+
* const item: AttributeCondition = response.results;
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
75
|
+
*/
|
|
76
|
+
export type AttributeCondition = components['schemas']['AttributeCondition'];
|
|
61
77
|
/**
|
|
62
78
|
* AttributeType
|
|
63
79
|
*
|
|
@@ -218,6 +234,22 @@ export type BrowserStatsBucket = components['schemas']['BrowserStatsBucket'];
|
|
|
218
234
|
* @see {@link components} - The OpenAPI components schema definition
|
|
219
235
|
*/
|
|
220
236
|
export type ComplianceStatus = components['schemas']['ComplianceStatus'];
|
|
237
|
+
/**
|
|
238
|
+
* ConditionOperator
|
|
239
|
+
*
|
|
240
|
+
* @remarks
|
|
241
|
+
* Type alias for the `ConditionOperator` OpenAPI schema.
|
|
242
|
+
* This type represents conditionoperator data structures used in API requests and responses.
|
|
243
|
+
*
|
|
244
|
+
* @example
|
|
245
|
+
* ```typescript
|
|
246
|
+
* const response = await api.getConditionOperator();
|
|
247
|
+
* const item: ConditionOperator = response.results;
|
|
248
|
+
* ```
|
|
249
|
+
*
|
|
250
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
251
|
+
*/
|
|
252
|
+
export type ConditionOperator = components['schemas']['ConditionOperator'];
|
|
221
253
|
/**
|
|
222
254
|
* ContactAttributeDefinition. Definition of a possible attribute for a TLD.
|
|
223
255
|
*
|
|
@@ -234,6 +266,102 @@ export type ComplianceStatus = components['schemas']['ComplianceStatus'];
|
|
|
234
266
|
* @see {@link components} - The OpenAPI components schema definition
|
|
235
267
|
*/
|
|
236
268
|
export type ContactAttributeDefinition = components['schemas']['ContactAttributeDefinition'];
|
|
269
|
+
/**
|
|
270
|
+
* ContactAttributeLinkCreate
|
|
271
|
+
*
|
|
272
|
+
* @remarks
|
|
273
|
+
* Type alias for the `ContactAttributeLinkCreate` OpenAPI schema.
|
|
274
|
+
* This type represents contactattributelinkcreate data structures used in API requests and responses.
|
|
275
|
+
*
|
|
276
|
+
* @example
|
|
277
|
+
* ```typescript
|
|
278
|
+
* const response = await api.getContactAttributeLinkCreate();
|
|
279
|
+
* const item: ContactAttributeLinkCreate = response.results;
|
|
280
|
+
* ```
|
|
281
|
+
*
|
|
282
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
283
|
+
*/
|
|
284
|
+
export type ContactAttributeLinkCreate = components['schemas']['ContactAttributeLinkCreate'];
|
|
285
|
+
/**
|
|
286
|
+
* ContactAttributeLinkDetail
|
|
287
|
+
*
|
|
288
|
+
* @remarks
|
|
289
|
+
* Type alias for the `ContactAttributeLinkDetail` OpenAPI schema.
|
|
290
|
+
* This type represents contactattributelinkdetail data structures used in API requests and responses.
|
|
291
|
+
*
|
|
292
|
+
* @example
|
|
293
|
+
* ```typescript
|
|
294
|
+
* const response = await api.getContactAttributeLinkDetail();
|
|
295
|
+
* const item: ContactAttributeLinkDetail = response.results;
|
|
296
|
+
* ```
|
|
297
|
+
*
|
|
298
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
299
|
+
*/
|
|
300
|
+
export type ContactAttributeLinkDetail = components['schemas']['ContactAttributeLinkDetail'];
|
|
301
|
+
/**
|
|
302
|
+
* ContactAttributeLinkResponse
|
|
303
|
+
*
|
|
304
|
+
* @remarks
|
|
305
|
+
* Type alias for the `ContactAttributeLinkResponse` OpenAPI schema.
|
|
306
|
+
* This type represents contactattributelinkresponse data structures used in API requests and responses.
|
|
307
|
+
*
|
|
308
|
+
* @example
|
|
309
|
+
* ```typescript
|
|
310
|
+
* const response = await api.getContactAttributeLink();
|
|
311
|
+
* const item: ContactAttributeLink = response.results;
|
|
312
|
+
* ```
|
|
313
|
+
*
|
|
314
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
315
|
+
*/
|
|
316
|
+
export type ContactAttributeLink = components['schemas']['ContactAttributeLinkResponse'];
|
|
317
|
+
/**
|
|
318
|
+
* ContactAttributeSetCreate
|
|
319
|
+
*
|
|
320
|
+
* @remarks
|
|
321
|
+
* Type alias for the `ContactAttributeSetCreate` OpenAPI schema.
|
|
322
|
+
* This type represents contactattributesetcreate data structures used in API requests and responses.
|
|
323
|
+
*
|
|
324
|
+
* @example
|
|
325
|
+
* ```typescript
|
|
326
|
+
* const response = await api.getContactAttributeSetCreate();
|
|
327
|
+
* const item: ContactAttributeSetCreate = response.results;
|
|
328
|
+
* ```
|
|
329
|
+
*
|
|
330
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
331
|
+
*/
|
|
332
|
+
export type ContactAttributeSetCreate = components['schemas']['ContactAttributeSetCreate'];
|
|
333
|
+
/**
|
|
334
|
+
* ContactAttributeSetResponse
|
|
335
|
+
*
|
|
336
|
+
* @remarks
|
|
337
|
+
* Type alias for the `ContactAttributeSetResponse` OpenAPI schema.
|
|
338
|
+
* This type represents contactattributesetresponse data structures used in API requests and responses.
|
|
339
|
+
*
|
|
340
|
+
* @example
|
|
341
|
+
* ```typescript
|
|
342
|
+
* const response = await api.getContactAttributeSet();
|
|
343
|
+
* const item: ContactAttributeSet = response.results;
|
|
344
|
+
* ```
|
|
345
|
+
*
|
|
346
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
347
|
+
*/
|
|
348
|
+
export type ContactAttributeSet = components['schemas']['ContactAttributeSetResponse'];
|
|
349
|
+
/**
|
|
350
|
+
* ContactAttributeSetUpdate
|
|
351
|
+
*
|
|
352
|
+
* @remarks
|
|
353
|
+
* Type alias for the `ContactAttributeSetUpdate` OpenAPI schema.
|
|
354
|
+
* This type represents contactattributesetupdate data structures used in API requests and responses.
|
|
355
|
+
*
|
|
356
|
+
* @example
|
|
357
|
+
* ```typescript
|
|
358
|
+
* const response = await api.getContactAttributeSetUpdate();
|
|
359
|
+
* const item: ContactAttributeSetUpdate = response.results;
|
|
360
|
+
* ```
|
|
361
|
+
*
|
|
362
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
363
|
+
*/
|
|
364
|
+
export type ContactAttributeSetUpdate = components['schemas']['ContactAttributeSetUpdate'];
|
|
237
365
|
/**
|
|
238
366
|
* ContactConfigBase
|
|
239
367
|
*
|
|
@@ -266,6 +394,22 @@ export type ContactConfigBase = components['schemas']['ContactConfigBase'];
|
|
|
266
394
|
* @see {@link components} - The OpenAPI components schema definition
|
|
267
395
|
*/
|
|
268
396
|
export type ContactCreate = components['schemas']['ContactCreate'];
|
|
397
|
+
/**
|
|
398
|
+
* ContactDetailResponse
|
|
399
|
+
*
|
|
400
|
+
* @remarks
|
|
401
|
+
* Type alias for the `ContactDetailResponse` OpenAPI schema.
|
|
402
|
+
* This type represents contactdetailresponse data structures used in API requests and responses.
|
|
403
|
+
*
|
|
404
|
+
* @example
|
|
405
|
+
* ```typescript
|
|
406
|
+
* const response = await api.getContactDetail();
|
|
407
|
+
* const item: ContactDetail = response.results;
|
|
408
|
+
* ```
|
|
409
|
+
*
|
|
410
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
411
|
+
*/
|
|
412
|
+
export type ContactDetail = components['schemas']['ContactDetailResponse'];
|
|
269
413
|
/**
|
|
270
414
|
* ContactHandle
|
|
271
415
|
*
|
|
@@ -314,22 +458,6 @@ export type ContactIdList = components['schemas']['ContactIdList'];
|
|
|
314
458
|
* @see {@link components} - The OpenAPI components schema definition
|
|
315
459
|
*/
|
|
316
460
|
export type Contact = components['schemas']['ContactResponse'];
|
|
317
|
-
/**
|
|
318
|
-
* ContactRoleAttributeRequirement. Attribute requirements for a specific contact role.
|
|
319
|
-
*
|
|
320
|
-
* @remarks
|
|
321
|
-
* Type alias for the `ContactRoleAttributeRequirement` OpenAPI schema.
|
|
322
|
-
* This type represents contactroleattributerequirement data structures used in API requests and responses.
|
|
323
|
-
*
|
|
324
|
-
* @example
|
|
325
|
-
* ```typescript
|
|
326
|
-
* const response = await api.getContactRoleAttributeRequirement();
|
|
327
|
-
* const item: ContactRoleAttributeRequirement = response.results;
|
|
328
|
-
* ```
|
|
329
|
-
*
|
|
330
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
331
|
-
*/
|
|
332
|
-
export type ContactRoleAttributeRequirement = components['schemas']['ContactRoleAttributeRequirement'];
|
|
333
461
|
/**
|
|
334
462
|
* ContactSchema
|
|
335
463
|
*
|
|
@@ -2932,6 +3060,22 @@ export type PaginationMetadata = components['schemas']['PaginationMetadata'];
|
|
|
2932
3060
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2933
3061
|
*/
|
|
2934
3062
|
export type Pagination_BillingTransaction = components['schemas']['Pagination_BillingTransactionResponse_'];
|
|
3063
|
+
/**
|
|
3064
|
+
* Pagination[ContactAttributeSetResponse]
|
|
3065
|
+
*
|
|
3066
|
+
* @remarks
|
|
3067
|
+
* Type alias for the `Pagination_ContactAttributeSetResponse_` OpenAPI schema.
|
|
3068
|
+
* This type represents pagination[contactattributesetresponse] data structures used in API requests and responses.
|
|
3069
|
+
*
|
|
3070
|
+
* @example
|
|
3071
|
+
* ```typescript
|
|
3072
|
+
* const response = await api.getPagination_ContactAttributeSet();
|
|
3073
|
+
* const item: Pagination_ContactAttributeSet = response.results;
|
|
3074
|
+
* ```
|
|
3075
|
+
*
|
|
3076
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3077
|
+
*/
|
|
3078
|
+
export type Pagination_ContactAttributeSet = components['schemas']['Pagination_ContactAttributeSetResponse_'];
|
|
2935
3079
|
/**
|
|
2936
3080
|
* Pagination[ContactSchema]
|
|
2937
3081
|
*
|