@opusdns/api 0.99.0 → 0.101.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 +207 -3
- package/src/helpers/keys.ts +608 -0
- package/src/helpers/requests.d.ts +131 -0
- package/src/helpers/responses.d.ts +169 -1
- package/src/helpers/schemas-arrays.d.ts +29 -1
- package/src/helpers/schemas.d.ts +112 -0
- package/src/openapi.yaml +613 -1
- package/src/schema.d.ts +334 -2
|
@@ -36,6 +36,137 @@ import { DomainDnssecDataCreateArray, OrganizationAttributeUpdateArray } from '.
|
|
|
36
36
|
|
|
37
37
|
import { ContactCreate, DnsZoneCreate, DnsZoneRecordsPatchOps, DnsZoneRrsetsPatchOps, DnsZoneRrsetsCreate, DomainForwardPatchOps, DomainForwardRequest, DomainForwardSetRequest, DomainCreate, DomainUpdate, DomainRenewRequest, DomainRestoreRequest, DomainTransferIn, EmailForwardAlias, EmailForwardAliasUpdate, OrganizationCreate, IpRestrictionCreate, IpRestrictionUpdate, OrganizationUpdate, UserCreate, PasswordUpdate, UserUpdate, SpiceDbRelationshipUpdate } from './schemas.d';
|
|
38
38
|
|
|
39
|
+
/**
|
|
40
|
+
* Request type for GET ArchiveObjectLogs endpoint
|
|
41
|
+
*
|
|
42
|
+
* Get organization logs
|
|
43
|
+
* Retrieve paginated audit logs for a specific organization with optional filtering and sorting
|
|
44
|
+
*
|
|
45
|
+
* @remarks
|
|
46
|
+
* This type defines the complete request structure for the GET ArchiveObjectLogs endpoint.
|
|
47
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
48
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
49
|
+
*
|
|
50
|
+
* @example
|
|
51
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
52
|
+
*
|
|
53
|
+
* @path /v1/archive/object-logs
|
|
54
|
+
*
|
|
55
|
+
* @see {@link GET_ArchiveObjectLogs_Request_Query} - Query parameters type
|
|
56
|
+
* @see {@link GET_ArchiveObjectLogs_Request_Path} - Path parameters type
|
|
57
|
+
* @see {@link GET_ArchiveObjectLogs_Request_Body} - Request body type
|
|
58
|
+
*/
|
|
59
|
+
export type GET_ArchiveObjectLogs_Request = {
|
|
60
|
+
parameters: {
|
|
61
|
+
query: operations['get_object_logs_v1_archive_object_logs_get']['parameters']['query'];
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Query parameters for GET /v1/archive/object-logs
|
|
66
|
+
*
|
|
67
|
+
* @remarks
|
|
68
|
+
* This type defines the query parameters for the GET /v1/archive/object-logs endpoint.
|
|
69
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
70
|
+
*
|
|
71
|
+
* @example
|
|
72
|
+
* Use this type to ensure type safety for query parameters.
|
|
73
|
+
*
|
|
74
|
+
* @path /v1/archive/object-logs
|
|
75
|
+
*/
|
|
76
|
+
export type GET_ArchiveObjectLogs_Request_Query = GET_ArchiveObjectLogs_Request['parameters']['query'];
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Request type for GET ArchiveObjectLogsObjectId endpoint
|
|
80
|
+
*
|
|
81
|
+
* Get organization logs
|
|
82
|
+
* Retrieve paginated audit logs for a specific organization with optional filtering and sorting
|
|
83
|
+
*
|
|
84
|
+
* @remarks
|
|
85
|
+
* This type defines the complete request structure for the GET ArchiveObjectLogsObjectId endpoint.
|
|
86
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
87
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
88
|
+
*
|
|
89
|
+
* @example
|
|
90
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
91
|
+
*
|
|
92
|
+
* @path /v1/archive/object-logs/{object_id}
|
|
93
|
+
*
|
|
94
|
+
* @see {@link GET_ArchiveObjectLogsObjectId_Request_Query} - Query parameters type
|
|
95
|
+
* @see {@link GET_ArchiveObjectLogsObjectId_Request_Path} - Path parameters type
|
|
96
|
+
* @see {@link GET_ArchiveObjectLogsObjectId_Request_Body} - Request body type
|
|
97
|
+
*/
|
|
98
|
+
export type GET_ArchiveObjectLogsObjectId_Request = {
|
|
99
|
+
parameters: {
|
|
100
|
+
query: operations['get_object_logs_by_object_id_v1_archive_object_logs__object_id__get']['parameters']['query'];
|
|
101
|
+
path: operations['get_object_logs_by_object_id_v1_archive_object_logs__object_id__get']['parameters']['path'];
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Query parameters for GET /v1/archive/object-logs/{object_id}
|
|
106
|
+
*
|
|
107
|
+
* @remarks
|
|
108
|
+
* This type defines the query parameters for the GET /v1/archive/object-logs/{object_id} endpoint.
|
|
109
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
110
|
+
*
|
|
111
|
+
* @example
|
|
112
|
+
* Use this type to ensure type safety for query parameters.
|
|
113
|
+
*
|
|
114
|
+
* @path /v1/archive/object-logs/{object_id}
|
|
115
|
+
*/
|
|
116
|
+
export type GET_ArchiveObjectLogsObjectId_Request_Query = GET_ArchiveObjectLogsObjectId_Request['parameters']['query'];
|
|
117
|
+
/**
|
|
118
|
+
* Path parameters for GET /v1/archive/object-logs/{object_id}
|
|
119
|
+
*
|
|
120
|
+
* @remarks
|
|
121
|
+
* This type defines the path parameters for the GET /v1/archive/object-logs/{object_id} endpoint.
|
|
122
|
+
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
123
|
+
*
|
|
124
|
+
* @example
|
|
125
|
+
* Use this type to ensure type safety for path parameters.
|
|
126
|
+
*
|
|
127
|
+
* @path /v1/archive/object-logs/{object_id}
|
|
128
|
+
*/
|
|
129
|
+
export type GET_ArchiveObjectLogsObjectId_Request_Path = GET_ArchiveObjectLogsObjectId_Request['parameters']['path'];
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Request type for GET ArchiveRequestHistory endpoint
|
|
133
|
+
*
|
|
134
|
+
* Get request history logs
|
|
135
|
+
* Retrieves a paginated list of request history logs
|
|
136
|
+
*
|
|
137
|
+
* @remarks
|
|
138
|
+
* This type defines the complete request structure for the GET ArchiveRequestHistory endpoint.
|
|
139
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
140
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
141
|
+
*
|
|
142
|
+
* @example
|
|
143
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
144
|
+
*
|
|
145
|
+
* @path /v1/archive/request-history
|
|
146
|
+
*
|
|
147
|
+
* @see {@link GET_ArchiveRequestHistory_Request_Query} - Query parameters type
|
|
148
|
+
* @see {@link GET_ArchiveRequestHistory_Request_Path} - Path parameters type
|
|
149
|
+
* @see {@link GET_ArchiveRequestHistory_Request_Body} - Request body type
|
|
150
|
+
*/
|
|
151
|
+
export type GET_ArchiveRequestHistory_Request = {
|
|
152
|
+
parameters: {
|
|
153
|
+
query: operations['get_request_history_v1_archive_request_history_get']['parameters']['query'];
|
|
154
|
+
};
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* Query parameters for GET /v1/archive/request-history
|
|
158
|
+
*
|
|
159
|
+
* @remarks
|
|
160
|
+
* This type defines the query parameters for the GET /v1/archive/request-history endpoint.
|
|
161
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
162
|
+
*
|
|
163
|
+
* @example
|
|
164
|
+
* Use this type to ensure type safety for query parameters.
|
|
165
|
+
*
|
|
166
|
+
* @path /v1/archive/request-history
|
|
167
|
+
*/
|
|
168
|
+
export type GET_ArchiveRequestHistory_Request_Query = GET_ArchiveRequestHistory_Request['parameters']['query'];
|
|
169
|
+
|
|
39
170
|
/**
|
|
40
171
|
* Request type for POST AuthToken endpoint
|
|
41
172
|
*
|
|
@@ -34,7 +34,175 @@
|
|
|
34
34
|
|
|
35
35
|
import { DomainDnssecDataArray, OrganizationAttribute2Array, IpRestrictionArray, TldResponseShortArray } from './schemas-arrays.d';
|
|
36
36
|
|
|
37
|
-
import {
|
|
37
|
+
import { Pagination_ObjectLog, HTTPValidationError, Pagination_RequestHistory, Problem, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DomainForwardZone, Pagination_DomainForwardZone, DnsZoneSummary, Pagination_DomainForward, DomainForward, DomainForwardSet, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, DomainSummary, Pagination_EmailForwardAlias, EmailForwardAlias, Pagination_Event, EventSchema, Pagination_Organization, Organization, OrganizationWithBillingData, Pagination_Invoice, GetPrices, Pagination_BillingTransaction, BillingTransaction, IpRestriction, Pagination_User, TldSpecification, User, UserWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Response types for GET ArchiveObjectLogs endpoint
|
|
41
|
+
*
|
|
42
|
+
* Get organization logs
|
|
43
|
+
* Retrieve paginated audit logs for a specific organization with optional filtering and sorting
|
|
44
|
+
*
|
|
45
|
+
* @remarks
|
|
46
|
+
* This type defines all possible response structures for the GET ArchiveObjectLogs endpoint.
|
|
47
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
48
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
49
|
+
*
|
|
50
|
+
|
|
51
|
+
*
|
|
52
|
+
* @path /v1/archive/object-logs
|
|
53
|
+
*
|
|
54
|
+
* @see {@link GET_ArchiveObjectLogs_Response_200} - 200 response type
|
|
55
|
+
* @see {@link GET_ArchiveObjectLogs_Response_422} - 422 response type
|
|
56
|
+
*
|
|
57
|
+
|
|
58
|
+
*/
|
|
59
|
+
export type GET_ArchiveObjectLogs_Response = GET_ArchiveObjectLogs_Response_200 | GET_ArchiveObjectLogs_Response_422;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* 200 response for GET ArchiveObjectLogs endpoint
|
|
63
|
+
*
|
|
64
|
+
* @remarks
|
|
65
|
+
* This type defines the response structure for the 200 status code
|
|
66
|
+
* of the GET ArchiveObjectLogs endpoint.
|
|
67
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
68
|
+
*
|
|
69
|
+
|
|
70
|
+
*
|
|
71
|
+
* @path /v1/archive/object-logs
|
|
72
|
+
*
|
|
73
|
+
* @see {@link GET_ArchiveObjectLogs_Response} - The main response type definition
|
|
74
|
+
* @see {@link Pagination_ObjectLog} - The actual schema type definition
|
|
75
|
+
*/
|
|
76
|
+
export type GET_ArchiveObjectLogs_Response_200 = Pagination_ObjectLog
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* 422 response for GET ArchiveObjectLogs endpoint
|
|
80
|
+
*
|
|
81
|
+
* @remarks
|
|
82
|
+
* This type defines the response structure for the 422 status code
|
|
83
|
+
* of the GET ArchiveObjectLogs endpoint.
|
|
84
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
85
|
+
*
|
|
86
|
+
|
|
87
|
+
*
|
|
88
|
+
* @path /v1/archive/object-logs
|
|
89
|
+
*
|
|
90
|
+
* @see {@link GET_ArchiveObjectLogs_Response} - The main response type definition
|
|
91
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
92
|
+
*/
|
|
93
|
+
export type GET_ArchiveObjectLogs_Response_422 = HTTPValidationError
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Response types for GET ArchiveObjectLogsByObjectId endpoint
|
|
97
|
+
*
|
|
98
|
+
* Get organization logs
|
|
99
|
+
* Retrieve paginated audit logs for a specific organization with optional filtering and sorting
|
|
100
|
+
*
|
|
101
|
+
* @remarks
|
|
102
|
+
* This type defines all possible response structures for the GET ArchiveObjectLogsByObjectId endpoint.
|
|
103
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
104
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
105
|
+
*
|
|
106
|
+
|
|
107
|
+
*
|
|
108
|
+
* @path /v1/archive/object-logs/{object_id}
|
|
109
|
+
*
|
|
110
|
+
* @see {@link GET_ArchiveObjectLogsByObjectId_Response_200} - 200 response type
|
|
111
|
+
* @see {@link GET_ArchiveObjectLogsByObjectId_Response_422} - 422 response type
|
|
112
|
+
*
|
|
113
|
+
|
|
114
|
+
*/
|
|
115
|
+
export type GET_ArchiveObjectLogsByObjectId_Response = GET_ArchiveObjectLogsByObjectId_Response_200 | GET_ArchiveObjectLogsByObjectId_Response_422;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* 200 response for GET ArchiveObjectLogsByObjectId endpoint
|
|
119
|
+
*
|
|
120
|
+
* @remarks
|
|
121
|
+
* This type defines the response structure for the 200 status code
|
|
122
|
+
* of the GET ArchiveObjectLogsByObjectId endpoint.
|
|
123
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
124
|
+
*
|
|
125
|
+
|
|
126
|
+
*
|
|
127
|
+
* @path /v1/archive/object-logs/{object_id}
|
|
128
|
+
*
|
|
129
|
+
* @see {@link GET_ArchiveObjectLogsByObjectId_Response} - The main response type definition
|
|
130
|
+
* @see {@link Pagination_ObjectLog} - The actual schema type definition
|
|
131
|
+
*/
|
|
132
|
+
export type GET_ArchiveObjectLogsByObjectId_Response_200 = Pagination_ObjectLog
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* 422 response for GET ArchiveObjectLogsByObjectId endpoint
|
|
136
|
+
*
|
|
137
|
+
* @remarks
|
|
138
|
+
* This type defines the response structure for the 422 status code
|
|
139
|
+
* of the GET ArchiveObjectLogsByObjectId endpoint.
|
|
140
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
141
|
+
*
|
|
142
|
+
|
|
143
|
+
*
|
|
144
|
+
* @path /v1/archive/object-logs/{object_id}
|
|
145
|
+
*
|
|
146
|
+
* @see {@link GET_ArchiveObjectLogsByObjectId_Response} - The main response type definition
|
|
147
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
148
|
+
*/
|
|
149
|
+
export type GET_ArchiveObjectLogsByObjectId_Response_422 = HTTPValidationError
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Response types for GET ArchiveRequestHistory endpoint
|
|
153
|
+
*
|
|
154
|
+
* Get request history logs
|
|
155
|
+
* Retrieves a paginated list of request history logs
|
|
156
|
+
*
|
|
157
|
+
* @remarks
|
|
158
|
+
* This type defines all possible response structures for the GET ArchiveRequestHistory endpoint.
|
|
159
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
160
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
161
|
+
*
|
|
162
|
+
|
|
163
|
+
*
|
|
164
|
+
* @path /v1/archive/request-history
|
|
165
|
+
*
|
|
166
|
+
* @see {@link GET_ArchiveRequestHistory_Response_200} - 200 response type
|
|
167
|
+
* @see {@link GET_ArchiveRequestHistory_Response_422} - 422 response type
|
|
168
|
+
*
|
|
169
|
+
|
|
170
|
+
*/
|
|
171
|
+
export type GET_ArchiveRequestHistory_Response = GET_ArchiveRequestHistory_Response_200 | GET_ArchiveRequestHistory_Response_422;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* 200 response for GET ArchiveRequestHistory endpoint
|
|
175
|
+
*
|
|
176
|
+
* @remarks
|
|
177
|
+
* This type defines the response structure for the 200 status code
|
|
178
|
+
* of the GET ArchiveRequestHistory endpoint.
|
|
179
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
180
|
+
*
|
|
181
|
+
|
|
182
|
+
*
|
|
183
|
+
* @path /v1/archive/request-history
|
|
184
|
+
*
|
|
185
|
+
* @see {@link GET_ArchiveRequestHistory_Response} - The main response type definition
|
|
186
|
+
* @see {@link Pagination_RequestHistory} - The actual schema type definition
|
|
187
|
+
*/
|
|
188
|
+
export type GET_ArchiveRequestHistory_Response_200 = Pagination_RequestHistory
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* 422 response for GET ArchiveRequestHistory endpoint
|
|
192
|
+
*
|
|
193
|
+
* @remarks
|
|
194
|
+
* This type defines the response structure for the 422 status code
|
|
195
|
+
* of the GET ArchiveRequestHistory endpoint.
|
|
196
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
197
|
+
*
|
|
198
|
+
|
|
199
|
+
*
|
|
200
|
+
* @path /v1/archive/request-history
|
|
201
|
+
*
|
|
202
|
+
* @see {@link GET_ArchiveRequestHistory_Response} - The main response type definition
|
|
203
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
204
|
+
*/
|
|
205
|
+
export type GET_ArchiveRequestHistory_Response_422 = HTTPValidationError
|
|
38
206
|
|
|
39
207
|
/**
|
|
40
208
|
* Response types for POST AuthToken endpoint
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* This file is auto-generated from the OpenAPI specification.
|
|
22
22
|
* Do not edit manually.
|
|
23
23
|
*/
|
|
24
|
-
import { DomainDnssecData, DomainDnssecDataCreate, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, TldResponseShort, RegistryHandleAttributeType, ContactAttributeDefinition, ContactRoleAttributeRequirement, PostalAddressType, ContactConfigBase, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsRecordPatchOp, DnsRrset, DnsRrsetPatchOp, DomainAvailabilityCheck, ContactHandle, Nameserver, DomainForwardPatchOp, HttpRedirectList, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainSearchSuggestionWithPrice, DomainStatus, DomainClientStatus, PriceInfo, ValidationError, LaunchPhaseBase, LocalPresenceRequirementType, ContactRoleType, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactSchema, DnsZone, DomainForwardZone, Domain, EmailForwardAlias, EventResponse, Invoice, Organization, Period, Permission, PremiumAffectsType, Relation, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
24
|
+
import { DomainDnssecData, DomainDnssecDataCreate, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, TldResponseShort, RegistryHandleAttributeType, ContactAttributeDefinition, ContactRoleAttributeRequirement, PostalAddressType, ContactConfigBase, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsRecordPatchOp, DnsRrset, DnsRrsetPatchOp, DomainAvailabilityCheck, ContactHandle, Nameserver, DomainForwardPatchOp, HttpRedirectList, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainSearchSuggestionWithPrice, DomainStatus, DomainClientStatus, PriceInfo, ValidationError, LaunchPhaseBase, LocalPresenceRequirementType, ContactRoleType, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactSchema, DnsZone, DomainForwardZone, Domain, EmailForwardAlias, EventResponse, Invoice, ObjectLog, Organization, RequestHistory, Period, Permission, PremiumAffectsType, Relation, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* DomainDnssecDataResponse
|
|
@@ -681,6 +681,20 @@ export type EventResponseArray = EventResponse[];
|
|
|
681
681
|
* @see {@link Invoice} - The individual InvoiceResponse type definition
|
|
682
682
|
*/
|
|
683
683
|
export type InvoiceArray = Invoice[];
|
|
684
|
+
/**
|
|
685
|
+
* ObjectLog
|
|
686
|
+
*
|
|
687
|
+
* @remarks
|
|
688
|
+
* Array type for ObjectLog objects. Used when the API returns a collection of ObjectLog instances.
|
|
689
|
+
*
|
|
690
|
+
* @example
|
|
691
|
+
* ```typescript
|
|
692
|
+
* const items: ObjectLogArray = await api.getObjectLogs();
|
|
693
|
+
* ```
|
|
694
|
+
*
|
|
695
|
+
* @see {@link ObjectLog} - The individual ObjectLog type definition
|
|
696
|
+
*/
|
|
697
|
+
export type ObjectLogArray = ObjectLog[];
|
|
684
698
|
/**
|
|
685
699
|
* Organization
|
|
686
700
|
*
|
|
@@ -695,6 +709,20 @@ export type InvoiceArray = Invoice[];
|
|
|
695
709
|
* @see {@link Organization} - The individual Organization type definition
|
|
696
710
|
*/
|
|
697
711
|
export type OrganizationArray = Organization[];
|
|
712
|
+
/**
|
|
713
|
+
* RequestHistory
|
|
714
|
+
*
|
|
715
|
+
* @remarks
|
|
716
|
+
* Array type for RequestHistory objects. Used when the API returns a collection of RequestHistory instances.
|
|
717
|
+
*
|
|
718
|
+
* @example
|
|
719
|
+
* ```typescript
|
|
720
|
+
* const items: RequestHistoryArray = await api.getRequestHistorys();
|
|
721
|
+
* ```
|
|
722
|
+
*
|
|
723
|
+
* @see {@link RequestHistory} - The individual RequestHistory type definition
|
|
724
|
+
*/
|
|
725
|
+
export type RequestHistoryArray = RequestHistory[];
|
|
698
726
|
/**
|
|
699
727
|
* Period
|
|
700
728
|
*
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -2063,6 +2063,54 @@ export type LocalPresenceRequirementType = components['schemas']['LocalPresenceR
|
|
|
2063
2063
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2064
2064
|
*/
|
|
2065
2065
|
export type Nameserver = components['schemas']['Nameserver'];
|
|
2066
|
+
/**
|
|
2067
|
+
* ObjectEventType
|
|
2068
|
+
*
|
|
2069
|
+
* @remarks
|
|
2070
|
+
* Type alias for the `ObjectEventType` OpenAPI schema.
|
|
2071
|
+
* This type represents objecteventtype data structures used in API requests and responses.
|
|
2072
|
+
*
|
|
2073
|
+
* @example
|
|
2074
|
+
* ```typescript
|
|
2075
|
+
* const response = await api.getObjectEventType();
|
|
2076
|
+
* const item: ObjectEventType = response.results;
|
|
2077
|
+
* ```
|
|
2078
|
+
*
|
|
2079
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2080
|
+
*/
|
|
2081
|
+
export type ObjectEventType = components['schemas']['ObjectEventType'];
|
|
2082
|
+
/**
|
|
2083
|
+
* ObjectLog
|
|
2084
|
+
*
|
|
2085
|
+
* @remarks
|
|
2086
|
+
* Type alias for the `ObjectLog` OpenAPI schema.
|
|
2087
|
+
* This type represents objectlog data structures used in API requests and responses.
|
|
2088
|
+
*
|
|
2089
|
+
* @example
|
|
2090
|
+
* ```typescript
|
|
2091
|
+
* const response = await api.getObjectLog();
|
|
2092
|
+
* const item: ObjectLog = response.results;
|
|
2093
|
+
* ```
|
|
2094
|
+
*
|
|
2095
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2096
|
+
*/
|
|
2097
|
+
export type ObjectLog = components['schemas']['ObjectLog'];
|
|
2098
|
+
/**
|
|
2099
|
+
* ObjectLogSortField
|
|
2100
|
+
*
|
|
2101
|
+
* @remarks
|
|
2102
|
+
* Type alias for the `ObjectLogSortField` OpenAPI schema.
|
|
2103
|
+
* This type represents objectlogsortfield data structures used in API requests and responses.
|
|
2104
|
+
*
|
|
2105
|
+
* @example
|
|
2106
|
+
* ```typescript
|
|
2107
|
+
* const response = await api.getObjectLogSortField();
|
|
2108
|
+
* const item: ObjectLogSortField = response.results;
|
|
2109
|
+
* ```
|
|
2110
|
+
*
|
|
2111
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2112
|
+
*/
|
|
2113
|
+
export type ObjectLogSortField = components['schemas']['ObjectLogSortField'];
|
|
2066
2114
|
/**
|
|
2067
2115
|
* Organization
|
|
2068
2116
|
*
|
|
@@ -2383,6 +2431,22 @@ export type Pagination_Event = components['schemas']['Pagination_EventResponse_'
|
|
|
2383
2431
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2384
2432
|
*/
|
|
2385
2433
|
export type Pagination_Invoice = components['schemas']['Pagination_InvoiceResponse_'];
|
|
2434
|
+
/**
|
|
2435
|
+
* Pagination[ObjectLog]
|
|
2436
|
+
*
|
|
2437
|
+
* @remarks
|
|
2438
|
+
* Type alias for the `Pagination_ObjectLog_` OpenAPI schema.
|
|
2439
|
+
* This type represents pagination[objectlog] data structures used in API requests and responses.
|
|
2440
|
+
*
|
|
2441
|
+
* @example
|
|
2442
|
+
* ```typescript
|
|
2443
|
+
* const response = await api.getPagination_ObjectLog();
|
|
2444
|
+
* const item: Pagination_ObjectLog = response.results;
|
|
2445
|
+
* ```
|
|
2446
|
+
*
|
|
2447
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2448
|
+
*/
|
|
2449
|
+
export type Pagination_ObjectLog = components['schemas']['Pagination_ObjectLog_'];
|
|
2386
2450
|
/**
|
|
2387
2451
|
* Pagination[Organization]
|
|
2388
2452
|
*
|
|
@@ -2399,6 +2463,22 @@ export type Pagination_Invoice = components['schemas']['Pagination_InvoiceRespon
|
|
|
2399
2463
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2400
2464
|
*/
|
|
2401
2465
|
export type Pagination_Organization = components['schemas']['Pagination_Organization_'];
|
|
2466
|
+
/**
|
|
2467
|
+
* Pagination[RequestHistory]
|
|
2468
|
+
*
|
|
2469
|
+
* @remarks
|
|
2470
|
+
* Type alias for the `Pagination_RequestHistory_` OpenAPI schema.
|
|
2471
|
+
* This type represents pagination[requesthistory] data structures used in API requests and responses.
|
|
2472
|
+
*
|
|
2473
|
+
* @example
|
|
2474
|
+
* ```typescript
|
|
2475
|
+
* const response = await api.getPagination_RequestHistory();
|
|
2476
|
+
* const item: Pagination_RequestHistory = response.results;
|
|
2477
|
+
* ```
|
|
2478
|
+
*
|
|
2479
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2480
|
+
*/
|
|
2481
|
+
export type Pagination_RequestHistory = components['schemas']['Pagination_RequestHistory_'];
|
|
2402
2482
|
/**
|
|
2403
2483
|
* Pagination[User]
|
|
2404
2484
|
*
|
|
@@ -2799,6 +2879,38 @@ export type RelationSet = components['schemas']['RelationSet'];
|
|
|
2799
2879
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2800
2880
|
*/
|
|
2801
2881
|
export type RenewalMode = components['schemas']['RenewalMode'];
|
|
2882
|
+
/**
|
|
2883
|
+
* RequestHistory
|
|
2884
|
+
*
|
|
2885
|
+
* @remarks
|
|
2886
|
+
* Type alias for the `RequestHistory` OpenAPI schema.
|
|
2887
|
+
* This type represents requesthistory data structures used in API requests and responses.
|
|
2888
|
+
*
|
|
2889
|
+
* @example
|
|
2890
|
+
* ```typescript
|
|
2891
|
+
* const response = await api.getRequestHistory();
|
|
2892
|
+
* const item: RequestHistory = response.results;
|
|
2893
|
+
* ```
|
|
2894
|
+
*
|
|
2895
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2896
|
+
*/
|
|
2897
|
+
export type RequestHistory = components['schemas']['RequestHistory'];
|
|
2898
|
+
/**
|
|
2899
|
+
* RequestHistorySortField
|
|
2900
|
+
*
|
|
2901
|
+
* @remarks
|
|
2902
|
+
* Type alias for the `RequestHistorySortField` OpenAPI schema.
|
|
2903
|
+
* This type represents requesthistorysortfield data structures used in API requests and responses.
|
|
2904
|
+
*
|
|
2905
|
+
* @example
|
|
2906
|
+
* ```typescript
|
|
2907
|
+
* const response = await api.getRequestHistorySortField();
|
|
2908
|
+
* const item: RequestHistorySortField = response.results;
|
|
2909
|
+
* ```
|
|
2910
|
+
*
|
|
2911
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2912
|
+
*/
|
|
2913
|
+
export type RequestHistorySortField = components['schemas']['RequestHistorySortField'];
|
|
2802
2914
|
/**
|
|
2803
2915
|
* ReservedDomainsBase
|
|
2804
2916
|
*
|