@opusdns/api 0.67.0 → 0.69.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 +310 -0
- package/src/helpers/requests.d.ts +91 -66
- package/src/helpers/responses.d.ts +114 -77
- package/src/helpers/schemas-arrays.d.ts +43 -1
- package/src/helpers/schemas.d.ts +64 -0
- package/src/openapi.yaml +172 -81
- package/src/schema.d.ts +215 -82
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -74,6 +74,22 @@ export type AllocationMethodType = components['schemas']['AllocationMethodType']
|
|
|
74
74
|
* @see {@link components} - The OpenAPI components schema definition
|
|
75
75
|
*/
|
|
76
76
|
export type AllowedNumberOfNameserverBase = components['schemas']['AllowedNumberOfNameserverBase'];
|
|
77
|
+
/**
|
|
78
|
+
* AttributeType
|
|
79
|
+
*
|
|
80
|
+
* @remarks
|
|
81
|
+
* Type alias for the `AttributeType` OpenAPI schema.
|
|
82
|
+
* This type represents attributetype data structures used in API requests and responses.
|
|
83
|
+
*
|
|
84
|
+
* @example
|
|
85
|
+
* ```typescript
|
|
86
|
+
* const response = await api.getAttributeType();
|
|
87
|
+
* const item: AttributeType = response.results;
|
|
88
|
+
* ```
|
|
89
|
+
*
|
|
90
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
91
|
+
*/
|
|
92
|
+
export type AttributeType = components['schemas']['AttributeType'];
|
|
77
93
|
/**
|
|
78
94
|
* BillingMetadata
|
|
79
95
|
*
|
|
@@ -234,6 +250,22 @@ export type CheckoutSessionRequest = components['schemas']['CheckoutSessionReque
|
|
|
234
250
|
* @see {@link components} - The OpenAPI components schema definition
|
|
235
251
|
*/
|
|
236
252
|
export type CheckoutSession = components['schemas']['CheckoutSessionResponse'];
|
|
253
|
+
/**
|
|
254
|
+
* ContactAttributeDefinition. Definition of a possible attribute for a TLD.
|
|
255
|
+
*
|
|
256
|
+
* @remarks
|
|
257
|
+
* Type alias for the `ContactAttributeDefinition` OpenAPI schema.
|
|
258
|
+
* This type represents contactattributedefinition data structures used in API requests and responses.
|
|
259
|
+
*
|
|
260
|
+
* @example
|
|
261
|
+
* ```typescript
|
|
262
|
+
* const response = await api.getContactAttributeDefinition();
|
|
263
|
+
* const item: ContactAttributeDefinition = response.results;
|
|
264
|
+
* ```
|
|
265
|
+
*
|
|
266
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
267
|
+
*/
|
|
268
|
+
export type ContactAttributeDefinition = components['schemas']['ContactAttributeDefinition'];
|
|
237
269
|
/**
|
|
238
270
|
* ContactConfigBase
|
|
239
271
|
*
|
|
@@ -314,6 +346,22 @@ export type ContactIdList = components['schemas']['ContactIdList'];
|
|
|
314
346
|
* @see {@link components} - The OpenAPI components schema definition
|
|
315
347
|
*/
|
|
316
348
|
export type Contact = components['schemas']['ContactResponse'];
|
|
349
|
+
/**
|
|
350
|
+
* ContactRoleAttributeRequirement. Attribute requirements for a specific contact role.
|
|
351
|
+
*
|
|
352
|
+
* @remarks
|
|
353
|
+
* Type alias for the `ContactRoleAttributeRequirement` OpenAPI schema.
|
|
354
|
+
* This type represents contactroleattributerequirement data structures used in API requests and responses.
|
|
355
|
+
*
|
|
356
|
+
* @example
|
|
357
|
+
* ```typescript
|
|
358
|
+
* const response = await api.getContactRoleAttributeRequirement();
|
|
359
|
+
* const item: ContactRoleAttributeRequirement = response.results;
|
|
360
|
+
* ```
|
|
361
|
+
*
|
|
362
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
363
|
+
*/
|
|
364
|
+
export type ContactRoleAttributeRequirement = components['schemas']['ContactRoleAttributeRequirement'];
|
|
317
365
|
/**
|
|
318
366
|
* ContactRoleType
|
|
319
367
|
*
|
|
@@ -2591,6 +2639,22 @@ export type RgpOperations = components['schemas']['RgpOperations'];
|
|
|
2591
2639
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2592
2640
|
*/
|
|
2593
2641
|
export type SignupCreate = components['schemas']['SignupCreate'];
|
|
2642
|
+
/**
|
|
2643
|
+
* SignupResponse
|
|
2644
|
+
*
|
|
2645
|
+
* @remarks
|
|
2646
|
+
* Type alias for the `SignupResponse` OpenAPI schema.
|
|
2647
|
+
* This type represents signupresponse data structures used in API requests and responses.
|
|
2648
|
+
*
|
|
2649
|
+
* @example
|
|
2650
|
+
* ```typescript
|
|
2651
|
+
* const response = await api.getSignup();
|
|
2652
|
+
* const item: Signup = response.results;
|
|
2653
|
+
* ```
|
|
2654
|
+
*
|
|
2655
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2656
|
+
*/
|
|
2657
|
+
export type Signup = components['schemas']['SignupResponse'];
|
|
2594
2658
|
/**
|
|
2595
2659
|
* SldLength
|
|
2596
2660
|
*
|