@opusdns/api 0.77.0 → 0.79.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 +1 -103
- package/src/helpers/keys.ts +245 -1279
- package/src/helpers/requests.d.ts +1 -173
- package/src/helpers/responses.d.ts +1 -334
- package/src/helpers/schemas-arrays.d.ts +1 -29
- package/src/helpers/schemas.d.ts +16 -176
- package/src/openapi.yaml +28 -508
- package/src/schema.d.ts +20 -512
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -26,22 +26,6 @@
|
|
|
26
26
|
*/
|
|
27
27
|
import { components } from '../schema';
|
|
28
28
|
|
|
29
|
-
/**
|
|
30
|
-
* AgreementType
|
|
31
|
-
*
|
|
32
|
-
* @remarks
|
|
33
|
-
* Type alias for the `AgreementType` OpenAPI schema.
|
|
34
|
-
* This type represents agreementtype data structures used in API requests and responses.
|
|
35
|
-
*
|
|
36
|
-
* @example
|
|
37
|
-
* ```typescript
|
|
38
|
-
* const response = await api.getAgreementType();
|
|
39
|
-
* const item: AgreementType = response.results;
|
|
40
|
-
* ```
|
|
41
|
-
*
|
|
42
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
43
|
-
*/
|
|
44
|
-
export type AgreementType = components['schemas']['AgreementType'];
|
|
45
29
|
/**
|
|
46
30
|
* AllocationMethodType
|
|
47
31
|
*
|
|
@@ -202,22 +186,6 @@ export type BillingTransactionSortField = components['schemas']['BillingTransact
|
|
|
202
186
|
* @see {@link components} - The OpenAPI components schema definition
|
|
203
187
|
*/
|
|
204
188
|
export type BillingTransactionStatus = components['schemas']['BillingTransactionStatus'];
|
|
205
|
-
/**
|
|
206
|
-
* Body_issue_organization_token_v1_auth_token_post
|
|
207
|
-
*
|
|
208
|
-
* @remarks
|
|
209
|
-
* Type alias for the `Body_issue_organization_token_v1_auth_token_post` OpenAPI schema.
|
|
210
|
-
* This type represents body_issue_organization_token_v1_auth_token_post data structures used in API requests and responses.
|
|
211
|
-
*
|
|
212
|
-
* @example
|
|
213
|
-
* ```typescript
|
|
214
|
-
* const response = await api.getBody_issue_organization_token_v1_auth_token_post();
|
|
215
|
-
* const item: Body_issue_organization_token_v1_auth_token_post = response.results;
|
|
216
|
-
* ```
|
|
217
|
-
*
|
|
218
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
219
|
-
*/
|
|
220
|
-
export type Body_issue_organization_token_v1_auth_token_post = components['schemas']['Body_issue_organization_token_v1_auth_token_post'];
|
|
221
189
|
/**
|
|
222
190
|
* CheckoutSessionRequest
|
|
223
191
|
*
|
|
@@ -1919,70 +1887,6 @@ export type OrganizationAttributeUpdate = components['schemas']['OrganizationAtt
|
|
|
1919
1887
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1920
1888
|
*/
|
|
1921
1889
|
export type OrganizationCreate = components['schemas']['OrganizationCreate'];
|
|
1922
|
-
/**
|
|
1923
|
-
* OrganizationCredential
|
|
1924
|
-
*
|
|
1925
|
-
* @remarks
|
|
1926
|
-
* Type alias for the `OrganizationCredential` OpenAPI schema.
|
|
1927
|
-
* This type represents organizationcredential data structures used in API requests and responses.
|
|
1928
|
-
*
|
|
1929
|
-
* @example
|
|
1930
|
-
* ```typescript
|
|
1931
|
-
* const response = await api.getOrganizationCredential();
|
|
1932
|
-
* const item: OrganizationCredential = response.results;
|
|
1933
|
-
* ```
|
|
1934
|
-
*
|
|
1935
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
1936
|
-
*/
|
|
1937
|
-
export type OrganizationCredential = components['schemas']['OrganizationCredential'];
|
|
1938
|
-
/**
|
|
1939
|
-
* OrganizationCredentialCreated
|
|
1940
|
-
*
|
|
1941
|
-
* @remarks
|
|
1942
|
-
* Type alias for the `OrganizationCredentialCreated` OpenAPI schema.
|
|
1943
|
-
* This type represents organizationcredentialcreated data structures used in API requests and responses.
|
|
1944
|
-
*
|
|
1945
|
-
* @example
|
|
1946
|
-
* ```typescript
|
|
1947
|
-
* const response = await api.getOrganizationCredentialCreated();
|
|
1948
|
-
* const item: OrganizationCredentialCreated = response.results;
|
|
1949
|
-
* ```
|
|
1950
|
-
*
|
|
1951
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
1952
|
-
*/
|
|
1953
|
-
export type OrganizationCredentialCreated = components['schemas']['OrganizationCredentialCreated'];
|
|
1954
|
-
/**
|
|
1955
|
-
* OrganizationCredentialExtra
|
|
1956
|
-
*
|
|
1957
|
-
* @remarks
|
|
1958
|
-
* Type alias for the `OrganizationCredentialExtra` OpenAPI schema.
|
|
1959
|
-
* This type represents organizationcredentialextra data structures used in API requests and responses.
|
|
1960
|
-
*
|
|
1961
|
-
* @example
|
|
1962
|
-
* ```typescript
|
|
1963
|
-
* const response = await api.getOrganizationCredentialExtra();
|
|
1964
|
-
* const item: OrganizationCredentialExtra = response.results;
|
|
1965
|
-
* ```
|
|
1966
|
-
*
|
|
1967
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
1968
|
-
*/
|
|
1969
|
-
export type OrganizationCredentialExtra = components['schemas']['OrganizationCredentialExtra'];
|
|
1970
|
-
/**
|
|
1971
|
-
* OrganizationCredentialStatus
|
|
1972
|
-
*
|
|
1973
|
-
* @remarks
|
|
1974
|
-
* Type alias for the `OrganizationCredentialStatus` OpenAPI schema.
|
|
1975
|
-
* This type represents organizationcredentialstatus data structures used in API requests and responses.
|
|
1976
|
-
*
|
|
1977
|
-
* @example
|
|
1978
|
-
* ```typescript
|
|
1979
|
-
* const response = await api.getOrganizationCredentialStatus();
|
|
1980
|
-
* const item: OrganizationCredentialStatus = response.results;
|
|
1981
|
-
* ```
|
|
1982
|
-
*
|
|
1983
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
1984
|
-
*/
|
|
1985
|
-
export type OrganizationCredentialStatus = components['schemas']['OrganizationCredentialStatus'];
|
|
1986
1890
|
/**
|
|
1987
1891
|
* OrganizationStatus
|
|
1988
1892
|
*
|
|
@@ -2159,22 +2063,6 @@ export type Pagination_EmailForwardAlias = components['schemas']['Pagination_Ema
|
|
|
2159
2063
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2160
2064
|
*/
|
|
2161
2065
|
export type Pagination_Event = components['schemas']['Pagination_EventResponse_'];
|
|
2162
|
-
/**
|
|
2163
|
-
* Pagination[OrganizationCredential]
|
|
2164
|
-
*
|
|
2165
|
-
* @remarks
|
|
2166
|
-
* Type alias for the `Pagination_OrganizationCredential_` OpenAPI schema.
|
|
2167
|
-
* This type represents pagination[organizationcredential] data structures used in API requests and responses.
|
|
2168
|
-
*
|
|
2169
|
-
* @example
|
|
2170
|
-
* ```typescript
|
|
2171
|
-
* const response = await api.getPagination_OrganizationCredential();
|
|
2172
|
-
* const item: Pagination_OrganizationCredential = response.results;
|
|
2173
|
-
* ```
|
|
2174
|
-
*
|
|
2175
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2176
|
-
*/
|
|
2177
|
-
export type Pagination_OrganizationCredential = components['schemas']['Pagination_OrganizationCredential_'];
|
|
2178
2066
|
/**
|
|
2179
2067
|
* Pagination[Organization]
|
|
2180
2068
|
*
|
|
@@ -2479,6 +2367,22 @@ export type PricingPeriod = components['schemas']['PricingPeriod'];
|
|
|
2479
2367
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2480
2368
|
*/
|
|
2481
2369
|
export type Problem = components['schemas']['Problem'];
|
|
2370
|
+
/**
|
|
2371
|
+
* PublicAuthRequestForm
|
|
2372
|
+
*
|
|
2373
|
+
* @remarks
|
|
2374
|
+
* Type alias for the `PublicAuthRequestForm` OpenAPI schema.
|
|
2375
|
+
* This type represents publicauthrequestform data structures used in API requests and responses.
|
|
2376
|
+
*
|
|
2377
|
+
* @example
|
|
2378
|
+
* ```typescript
|
|
2379
|
+
* const response = await api.getPublicAuthRequestForm();
|
|
2380
|
+
* const item: PublicAuthRequestForm = response.results;
|
|
2381
|
+
* ```
|
|
2382
|
+
*
|
|
2383
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2384
|
+
*/
|
|
2385
|
+
export type PublicAuthRequestForm = components['schemas']['PublicAuthRequestForm'];
|
|
2482
2386
|
/**
|
|
2483
2387
|
* RdapBase
|
|
2484
2388
|
*
|
|
@@ -2639,38 +2543,6 @@ export type ReservedSourceType = components['schemas']['ReservedSourceType'];
|
|
|
2639
2543
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2640
2544
|
*/
|
|
2641
2545
|
export type RgpOperations = components['schemas']['RgpOperations'];
|
|
2642
|
-
/**
|
|
2643
|
-
* SignupCreate
|
|
2644
|
-
*
|
|
2645
|
-
* @remarks
|
|
2646
|
-
* Type alias for the `SignupCreate` OpenAPI schema.
|
|
2647
|
-
* This type represents signupcreate data structures used in API requests and responses.
|
|
2648
|
-
*
|
|
2649
|
-
* @example
|
|
2650
|
-
* ```typescript
|
|
2651
|
-
* const response = await api.getSignupCreate();
|
|
2652
|
-
* const item: SignupCreate = response.results;
|
|
2653
|
-
* ```
|
|
2654
|
-
*
|
|
2655
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2656
|
-
*/
|
|
2657
|
-
export type SignupCreate = components['schemas']['SignupCreate'];
|
|
2658
|
-
/**
|
|
2659
|
-
* SignupResponse
|
|
2660
|
-
*
|
|
2661
|
-
* @remarks
|
|
2662
|
-
* Type alias for the `SignupResponse` OpenAPI schema.
|
|
2663
|
-
* This type represents signupresponse data structures used in API requests and responses.
|
|
2664
|
-
*
|
|
2665
|
-
* @example
|
|
2666
|
-
* ```typescript
|
|
2667
|
-
* const response = await api.getSignup();
|
|
2668
|
-
* const item: Signup = response.results;
|
|
2669
|
-
* ```
|
|
2670
|
-
*
|
|
2671
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2672
|
-
*/
|
|
2673
|
-
export type Signup = components['schemas']['SignupResponse'];
|
|
2674
2546
|
/**
|
|
2675
2547
|
* SldLength
|
|
2676
2548
|
*
|
|
@@ -2751,22 +2623,6 @@ export type SyncOperationType = components['schemas']['SyncOperationType'];
|
|
|
2751
2623
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2752
2624
|
*/
|
|
2753
2625
|
export type TLDType = components['schemas']['TLDType'];
|
|
2754
|
-
/**
|
|
2755
|
-
* TermsOfServiceAccept
|
|
2756
|
-
*
|
|
2757
|
-
* @remarks
|
|
2758
|
-
* Type alias for the `TermsOfServiceAccept` OpenAPI schema.
|
|
2759
|
-
* This type represents termsofserviceaccept data structures used in API requests and responses.
|
|
2760
|
-
*
|
|
2761
|
-
* @example
|
|
2762
|
-
* ```typescript
|
|
2763
|
-
* const response = await api.getTermsOfServiceAccept();
|
|
2764
|
-
* const item: TermsOfServiceAccept = response.results;
|
|
2765
|
-
* ```
|
|
2766
|
-
*
|
|
2767
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2768
|
-
*/
|
|
2769
|
-
export type TermsOfServiceAccept = components['schemas']['TermsOfServiceAccept'];
|
|
2770
2626
|
/**
|
|
2771
2627
|
* TldBase
|
|
2772
2628
|
*
|
|
@@ -2879,22 +2735,6 @@ export type TransferPoliciesBase = components['schemas']['TransferPoliciesBase']
|
|
|
2879
2735
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2880
2736
|
*/
|
|
2881
2737
|
export type User = components['schemas']['User'];
|
|
2882
|
-
/**
|
|
2883
|
-
* UserAgreementAcceptance
|
|
2884
|
-
*
|
|
2885
|
-
* @remarks
|
|
2886
|
-
* Type alias for the `UserAgreementAcceptance` OpenAPI schema.
|
|
2887
|
-
* This type represents useragreementacceptance data structures used in API requests and responses.
|
|
2888
|
-
*
|
|
2889
|
-
* @example
|
|
2890
|
-
* ```typescript
|
|
2891
|
-
* const response = await api.getUserAgreementAcceptance();
|
|
2892
|
-
* const item: UserAgreementAcceptance = response.results;
|
|
2893
|
-
* ```
|
|
2894
|
-
*
|
|
2895
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2896
|
-
*/
|
|
2897
|
-
export type UserAgreementAcceptance = components['schemas']['UserAgreementAcceptance'];
|
|
2898
2738
|
/**
|
|
2899
2739
|
* UserAttributeBase
|
|
2900
2740
|
*
|