@opusdns/api 0.199.0 → 0.201.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 +1334 -165
- package/src/helpers/requests.d.ts +243 -2
- package/src/helpers/responses.d.ts +446 -6
- package/src/helpers/schemas-arrays.d.ts +34 -6
- package/src/helpers/schemas.d.ts +118 -6
- package/src/openapi.yaml +654 -7
- package/src/schema.d.ts +609 -9
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -266,6 +266,86 @@ export type ConditionOperator = components['schemas']['ConditionOperator'];
|
|
|
266
266
|
* @see {@link components} - The OpenAPI components schema definition
|
|
267
267
|
*/
|
|
268
268
|
export type ContactAttributeDefinition = components['schemas']['ContactAttributeDefinition'];
|
|
269
|
+
/**
|
|
270
|
+
* ContactAttributeLinkDetail
|
|
271
|
+
*
|
|
272
|
+
* @remarks
|
|
273
|
+
* Type alias for the `ContactAttributeLinkDetail` OpenAPI schema.
|
|
274
|
+
* This type represents contactattributelinkdetail data structures used in API requests and responses.
|
|
275
|
+
*
|
|
276
|
+
* @example
|
|
277
|
+
* ```typescript
|
|
278
|
+
* const response = await api.getContactAttributeLinkDetail();
|
|
279
|
+
* const item: ContactAttributeLinkDetail = response.results;
|
|
280
|
+
* ```
|
|
281
|
+
*
|
|
282
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
283
|
+
*/
|
|
284
|
+
export type ContactAttributeLinkDetail = components['schemas']['ContactAttributeLinkDetail'];
|
|
285
|
+
/**
|
|
286
|
+
* ContactAttributeLinkResponse
|
|
287
|
+
*
|
|
288
|
+
* @remarks
|
|
289
|
+
* Type alias for the `ContactAttributeLinkResponse` OpenAPI schema.
|
|
290
|
+
* This type represents contactattributelinkresponse data structures used in API requests and responses.
|
|
291
|
+
*
|
|
292
|
+
* @example
|
|
293
|
+
* ```typescript
|
|
294
|
+
* const response = await api.getContactAttributeLink();
|
|
295
|
+
* const item: ContactAttributeLink = response.results;
|
|
296
|
+
* ```
|
|
297
|
+
*
|
|
298
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
299
|
+
*/
|
|
300
|
+
export type ContactAttributeLink = components['schemas']['ContactAttributeLinkResponse'];
|
|
301
|
+
/**
|
|
302
|
+
* ContactAttributeSetCreate
|
|
303
|
+
*
|
|
304
|
+
* @remarks
|
|
305
|
+
* Type alias for the `ContactAttributeSetCreate` OpenAPI schema.
|
|
306
|
+
* This type represents contactattributesetcreate data structures used in API requests and responses.
|
|
307
|
+
*
|
|
308
|
+
* @example
|
|
309
|
+
* ```typescript
|
|
310
|
+
* const response = await api.getContactAttributeSetCreate();
|
|
311
|
+
* const item: ContactAttributeSetCreate = response.results;
|
|
312
|
+
* ```
|
|
313
|
+
*
|
|
314
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
315
|
+
*/
|
|
316
|
+
export type ContactAttributeSetCreate = components['schemas']['ContactAttributeSetCreate'];
|
|
317
|
+
/**
|
|
318
|
+
* ContactAttributeSetResponse
|
|
319
|
+
*
|
|
320
|
+
* @remarks
|
|
321
|
+
* Type alias for the `ContactAttributeSetResponse` OpenAPI schema.
|
|
322
|
+
* This type represents contactattributesetresponse data structures used in API requests and responses.
|
|
323
|
+
*
|
|
324
|
+
* @example
|
|
325
|
+
* ```typescript
|
|
326
|
+
* const response = await api.getContactAttributeSet();
|
|
327
|
+
* const item: ContactAttributeSet = response.results;
|
|
328
|
+
* ```
|
|
329
|
+
*
|
|
330
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
331
|
+
*/
|
|
332
|
+
export type ContactAttributeSet = components['schemas']['ContactAttributeSetResponse'];
|
|
333
|
+
/**
|
|
334
|
+
* ContactAttributeSetUpdate
|
|
335
|
+
*
|
|
336
|
+
* @remarks
|
|
337
|
+
* Type alias for the `ContactAttributeSetUpdate` OpenAPI schema.
|
|
338
|
+
* This type represents contactattributesetupdate data structures used in API requests and responses.
|
|
339
|
+
*
|
|
340
|
+
* @example
|
|
341
|
+
* ```typescript
|
|
342
|
+
* const response = await api.getContactAttributeSetUpdate();
|
|
343
|
+
* const item: ContactAttributeSetUpdate = response.results;
|
|
344
|
+
* ```
|
|
345
|
+
*
|
|
346
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
347
|
+
*/
|
|
348
|
+
export type ContactAttributeSetUpdate = components['schemas']['ContactAttributeSetUpdate'];
|
|
269
349
|
/**
|
|
270
350
|
* ContactConfigBase
|
|
271
351
|
*
|
|
@@ -298,6 +378,22 @@ export type ContactConfigBase = components['schemas']['ContactConfigBase'];
|
|
|
298
378
|
* @see {@link components} - The OpenAPI components schema definition
|
|
299
379
|
*/
|
|
300
380
|
export type ContactCreate = components['schemas']['ContactCreate'];
|
|
381
|
+
/**
|
|
382
|
+
* ContactDetailResponse
|
|
383
|
+
*
|
|
384
|
+
* @remarks
|
|
385
|
+
* Type alias for the `ContactDetailResponse` OpenAPI schema.
|
|
386
|
+
* This type represents contactdetailresponse data structures used in API requests and responses.
|
|
387
|
+
*
|
|
388
|
+
* @example
|
|
389
|
+
* ```typescript
|
|
390
|
+
* const response = await api.getContactDetail();
|
|
391
|
+
* const item: ContactDetail = response.results;
|
|
392
|
+
* ```
|
|
393
|
+
*
|
|
394
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
395
|
+
*/
|
|
396
|
+
export type ContactDetail = components['schemas']['ContactDetailResponse'];
|
|
301
397
|
/**
|
|
302
398
|
* ContactHandle
|
|
303
399
|
*
|
|
@@ -2949,21 +3045,37 @@ export type PaginationMetadata = components['schemas']['PaginationMetadata'];
|
|
|
2949
3045
|
*/
|
|
2950
3046
|
export type Pagination_BillingTransaction = components['schemas']['Pagination_BillingTransactionResponse_'];
|
|
2951
3047
|
/**
|
|
2952
|
-
* Pagination[
|
|
3048
|
+
* Pagination[ContactAttributeSetResponse]
|
|
3049
|
+
*
|
|
3050
|
+
* @remarks
|
|
3051
|
+
* Type alias for the `Pagination_ContactAttributeSetResponse_` OpenAPI schema.
|
|
3052
|
+
* This type represents pagination[contactattributesetresponse] data structures used in API requests and responses.
|
|
3053
|
+
*
|
|
3054
|
+
* @example
|
|
3055
|
+
* ```typescript
|
|
3056
|
+
* const response = await api.getPagination_ContactAttributeSet();
|
|
3057
|
+
* const item: Pagination_ContactAttributeSet = response.results;
|
|
3058
|
+
* ```
|
|
3059
|
+
*
|
|
3060
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3061
|
+
*/
|
|
3062
|
+
export type Pagination_ContactAttributeSet = components['schemas']['Pagination_ContactAttributeSetResponse_'];
|
|
3063
|
+
/**
|
|
3064
|
+
* Pagination[ContactDetailResponse]
|
|
2953
3065
|
*
|
|
2954
3066
|
* @remarks
|
|
2955
|
-
* Type alias for the `
|
|
2956
|
-
* This type represents pagination[
|
|
3067
|
+
* Type alias for the `Pagination_ContactDetailResponse_` OpenAPI schema.
|
|
3068
|
+
* This type represents pagination[contactdetailresponse] data structures used in API requests and responses.
|
|
2957
3069
|
*
|
|
2958
3070
|
* @example
|
|
2959
3071
|
* ```typescript
|
|
2960
|
-
* const response = await api.
|
|
2961
|
-
* const item:
|
|
3072
|
+
* const response = await api.getPagination_ContactDetail();
|
|
3073
|
+
* const item: Pagination_ContactDetail = response.results;
|
|
2962
3074
|
* ```
|
|
2963
3075
|
*
|
|
2964
3076
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2965
3077
|
*/
|
|
2966
|
-
export type
|
|
3078
|
+
export type Pagination_ContactDetail = components['schemas']['Pagination_ContactDetailResponse_'];
|
|
2967
3079
|
/**
|
|
2968
3080
|
* Pagination[DnsZoneResponse]
|
|
2969
3081
|
*
|