@opusdns/api 0.177.0 → 0.179.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 +122 -1
- package/src/helpers/keys.ts +3 -4
- package/src/helpers/schemas.d.ts +37 -0
- package/src/openapi.yaml +46 -24
- package/src/schema.d.ts +33 -25
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
23
|
|
|
24
|
-
import { AllocationMethodType, AttributeType, BillingTransactionAction, BillingTransactionProductType, BillingTransactionSortField, BillingTransactionStatus, ComplianceStatus, ContactSortField, Currency, DeletePolicyType, DnsChangeAction, DnsRrsetType, DnssecAlgorithm, DnssecDigestType, DnssecModeType, DnssecRecordType, DnssecStatus, DomainAttributeKey, DomainAvailabilityStatus, DomainClientStatus, DomainContactType, DomainForwardSortField, DomainForwardZoneSortField, DomainSortField, DomainStatus, EmailForwardLogSortField, EmailForwardLogStatus, EmailForwardSortField, EmailForwardZoneSortField, EmailVerificationStatus, EventObjectType, EventSortField, EventSubtype, EventType, GrantType, HostStatus, HttpProtocol, InvoiceResponsePaymentStatus, InvoiceResponseStatus, InvoiceResponseType, LaunchPhaseType, LocalPresenceRequirementType, MetricsGrouping, ObjectEventType, ObjectLogSortField, OrganizationStatus, ParkingSortField, PatchOp, PeriodUnit, Permission, PostTransferRequirements, PostalAddressType, PremiumAffectsType, PremiumSourceType, Protocol, RedirectCode, RegistrantChangeType, RegistryHandleAttributeType, Relation, RenewalMode, RequestHistorySortField, ReservedSourceType, SortOrder, SyncOperationType, TLDType, TimeRange, TransferAckType, UserStatus, VerificationType, ZoneSortField } from './schemas';
|
|
24
|
+
import { AllocationMethodType, AttributeType, BillingTransactionAction, BillingTransactionProductType, BillingTransactionSortField, BillingTransactionStatus, ComplianceStatus, ContactSortField, Currency, DeletePolicyType, DnsChangeAction, DnsRrsetType, DnssecAlgorithm, DnssecDigestType, DnssecModeType, DnssecRecordType, DnssecStatus, DomainAttributeKey, DomainAvailabilityStatus, DomainClientStatus, DomainContactType, DomainForwardSortField, DomainForwardZoneSortField, DomainSortField, DomainStatus, EmailForwardLogSortField, EmailForwardLogStatus, EmailForwardSortField, EmailForwardZoneSortField, EmailVerificationStatus, EventObjectType, EventSortField, EventSubtype, EventType, ExecutingEntity, GrantType, HTTPMethod, HostStatus, HttpProtocol, InvoiceResponsePaymentStatus, InvoiceResponseStatus, InvoiceResponseType, LaunchPhaseType, LocalPresenceRequirementType, MetricsGrouping, ObjectEventType, ObjectLogSortField, OrganizationStatus, ParkingSortField, PatchOp, PeriodUnit, Permission, PostTransferRequirements, PostalAddressType, PremiumAffectsType, PremiumSourceType, Protocol, RedirectCode, RegistrantChangeType, RegistryHandleAttributeType, Relation, RenewalMode, RequestHistorySortField, ReservedSourceType, SortOrder, SyncOperationType, TLDType, TimeRange, TransferAckType, UserStatus, VerificationType, ZoneSortField } from './schemas';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* AllocationMethodType. Auto-generated enum for AllocationMethodType
|
|
@@ -1887,6 +1887,58 @@ export const EVENT_TYPE_VALUES = [
|
|
|
1887
1887
|
'VERIFICATION'
|
|
1888
1888
|
] as const satisfies [string, ...string[]] | EventType[];
|
|
1889
1889
|
|
|
1890
|
+
/**
|
|
1891
|
+
* ExecutingEntity. Auto-generated enum for ExecutingEntity
|
|
1892
|
+
*
|
|
1893
|
+
* @remarks
|
|
1894
|
+
* This constant provides both object and array forms for the ExecutingEntity enum.
|
|
1895
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
1896
|
+
*
|
|
1897
|
+
* @example
|
|
1898
|
+
* ```typescript
|
|
1899
|
+
* // Using the object form for key-value access
|
|
1900
|
+
* const status = EXECUTING_ENTITY.SUCCESS;
|
|
1901
|
+
*
|
|
1902
|
+
* // Using the array form for iteration
|
|
1903
|
+
* const allStatuses = EXECUTING_ENTITY_VALUES;
|
|
1904
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
1905
|
+
* ```
|
|
1906
|
+
*
|
|
1907
|
+
* @see {@link ExecutingEntity} - The TypeScript type definition
|
|
1908
|
+
*/
|
|
1909
|
+
export const EXECUTING_ENTITY = {
|
|
1910
|
+
USER: "user",
|
|
1911
|
+
ORGANIZATION: "organization",
|
|
1912
|
+
SYSTEM: "system",
|
|
1913
|
+
} as const satisfies Record<string, ExecutingEntity>;
|
|
1914
|
+
|
|
1915
|
+
/**
|
|
1916
|
+
* Array of all ExecutingEntity enum values
|
|
1917
|
+
*
|
|
1918
|
+
* @remarks
|
|
1919
|
+
* This constant provides a array containing all valid ExecutingEntity enum values.
|
|
1920
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1921
|
+
*
|
|
1922
|
+
* @example
|
|
1923
|
+
* ```typescript
|
|
1924
|
+
* // Iterating through all values
|
|
1925
|
+
* for (const value of EXECUTING_ENTITY_VALUES) {
|
|
1926
|
+
* console.log(`Processing: ${value}`);
|
|
1927
|
+
* }
|
|
1928
|
+
*
|
|
1929
|
+
* // Validation
|
|
1930
|
+
* const isValid = EXECUTING_ENTITY_VALUES.includes(someValue);
|
|
1931
|
+
* ```
|
|
1932
|
+
*
|
|
1933
|
+
* @see {@link ExecutingEntity} - The TypeScript type definition
|
|
1934
|
+
* @see {@link EXECUTING_ENTITY} - The object form of this enum
|
|
1935
|
+
*/
|
|
1936
|
+
export const EXECUTING_ENTITY_VALUES = [
|
|
1937
|
+
'user',
|
|
1938
|
+
'organization',
|
|
1939
|
+
'system'
|
|
1940
|
+
] as const satisfies [string, ...string[]] | ExecutingEntity[];
|
|
1941
|
+
|
|
1890
1942
|
/**
|
|
1891
1943
|
* GrantType. Auto-generated enum for GrantType
|
|
1892
1944
|
*
|
|
@@ -1939,6 +1991,75 @@ export const GRANT_TYPE_VALUES = [
|
|
|
1939
1991
|
'refresh_token'
|
|
1940
1992
|
] as const satisfies [string, ...string[]] | GrantType[];
|
|
1941
1993
|
|
|
1994
|
+
/**
|
|
1995
|
+
* HTTPMethod. HTTP methods and descriptions
|
|
1996
|
+
|
|
1997
|
+
Methods from the following RFCs are all observed:
|
|
1998
|
+
|
|
1999
|
+
* RFC 9110: HTTP Semantics, obsoletes 7231, which obsoleted 2616
|
|
2000
|
+
* RFC 5789: PATCH Method for HTTP
|
|
2001
|
+
*
|
|
2002
|
+
* @remarks
|
|
2003
|
+
* This constant provides both object and array forms for the HTTPMethod enum.
|
|
2004
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
2005
|
+
*
|
|
2006
|
+
* @example
|
|
2007
|
+
* ```typescript
|
|
2008
|
+
* // Using the object form for key-value access
|
|
2009
|
+
* const status = HTTP_METHOD.SUCCESS;
|
|
2010
|
+
*
|
|
2011
|
+
* // Using the array form for iteration
|
|
2012
|
+
* const allStatuses = HTTP_METHOD_VALUES;
|
|
2013
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
2014
|
+
* ```
|
|
2015
|
+
*
|
|
2016
|
+
* @see {@link HTTPMethod} - The TypeScript type definition
|
|
2017
|
+
*/
|
|
2018
|
+
export const HTTP_METHOD = {
|
|
2019
|
+
CONNECT: "CONNECT",
|
|
2020
|
+
DELETE: "DELETE",
|
|
2021
|
+
GET: "GET",
|
|
2022
|
+
HEAD: "HEAD",
|
|
2023
|
+
OPTIONS: "OPTIONS",
|
|
2024
|
+
PATCH: "PATCH",
|
|
2025
|
+
POST: "POST",
|
|
2026
|
+
PUT: "PUT",
|
|
2027
|
+
TRACE: "TRACE",
|
|
2028
|
+
} as const satisfies Record<string, HTTPMethod>;
|
|
2029
|
+
|
|
2030
|
+
/**
|
|
2031
|
+
* Array of all HTTPMethod enum values
|
|
2032
|
+
*
|
|
2033
|
+
* @remarks
|
|
2034
|
+
* This constant provides a array containing all valid HTTPMethod enum values.
|
|
2035
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
2036
|
+
*
|
|
2037
|
+
* @example
|
|
2038
|
+
* ```typescript
|
|
2039
|
+
* // Iterating through all values
|
|
2040
|
+
* for (const value of HTTP_METHOD_VALUES) {
|
|
2041
|
+
* console.log(`Processing: ${value}`);
|
|
2042
|
+
* }
|
|
2043
|
+
*
|
|
2044
|
+
* // Validation
|
|
2045
|
+
* const isValid = HTTP_METHOD_VALUES.includes(someValue);
|
|
2046
|
+
* ```
|
|
2047
|
+
*
|
|
2048
|
+
* @see {@link HTTPMethod} - The TypeScript type definition
|
|
2049
|
+
* @see {@link HTTP_METHOD} - The object form of this enum
|
|
2050
|
+
*/
|
|
2051
|
+
export const HTTP_METHOD_VALUES = [
|
|
2052
|
+
'CONNECT',
|
|
2053
|
+
'DELETE',
|
|
2054
|
+
'GET',
|
|
2055
|
+
'HEAD',
|
|
2056
|
+
'OPTIONS',
|
|
2057
|
+
'PATCH',
|
|
2058
|
+
'POST',
|
|
2059
|
+
'PUT',
|
|
2060
|
+
'TRACE'
|
|
2061
|
+
] as const satisfies [string, ...string[]] | HTTPMethod[];
|
|
2062
|
+
|
|
1942
2063
|
/**
|
|
1943
2064
|
* HostStatus. Auto-generated enum for HostStatus
|
|
1944
2065
|
*
|
package/src/helpers/keys.ts
CHANGED
|
@@ -16311,7 +16311,7 @@ export const KEY_OBJECT_LOG_OBJECT_TYPE: keyof ObjectLog = 'object_type';
|
|
|
16311
16311
|
*/
|
|
16312
16312
|
export const KEY_OBJECT_LOG_PERFORMED_BY_ID: keyof ObjectLog = 'performed_by_id';
|
|
16313
16313
|
/**
|
|
16314
|
-
*
|
|
16314
|
+
* performed_by_type property
|
|
16315
16315
|
*
|
|
16316
16316
|
* Type of the actor who performed the action
|
|
16317
16317
|
*
|
|
@@ -21522,11 +21522,10 @@ export const KEY_REQUEST_HISTORY_CLIENT_IP: keyof RequestHistory = 'client_ip';
|
|
|
21522
21522
|
*/
|
|
21523
21523
|
export const KEY_REQUEST_HISTORY_DURATION: keyof RequestHistory = 'duration';
|
|
21524
21524
|
/**
|
|
21525
|
-
*
|
|
21525
|
+
* method property
|
|
21526
21526
|
*
|
|
21527
21527
|
* HTTP method
|
|
21528
21528
|
*
|
|
21529
|
-
* @type {string}
|
|
21530
21529
|
*
|
|
21531
21530
|
*
|
|
21532
21531
|
* @remarks
|
|
@@ -21599,7 +21598,7 @@ export const KEY_REQUEST_HISTORY_PATH: keyof RequestHistory = 'path';
|
|
|
21599
21598
|
*/
|
|
21600
21599
|
export const KEY_REQUEST_HISTORY_PERFORMED_BY_ID: keyof RequestHistory = 'performed_by_id';
|
|
21601
21600
|
/**
|
|
21602
|
-
*
|
|
21601
|
+
* performed_by_type property
|
|
21603
21602
|
*
|
|
21604
21603
|
* Type of the actor who performed the request
|
|
21605
21604
|
*
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -2202,6 +2202,22 @@ export type EventSubtype = components['schemas']['EventSubtype'];
|
|
|
2202
2202
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2203
2203
|
*/
|
|
2204
2204
|
export type EventType = components['schemas']['EventType'];
|
|
2205
|
+
/**
|
|
2206
|
+
* ExecutingEntity
|
|
2207
|
+
*
|
|
2208
|
+
* @remarks
|
|
2209
|
+
* Type alias for the `ExecutingEntity` OpenAPI schema.
|
|
2210
|
+
* This type represents executingentity data structures used in API requests and responses.
|
|
2211
|
+
*
|
|
2212
|
+
* @example
|
|
2213
|
+
* ```typescript
|
|
2214
|
+
* const response = await api.getExecutingEntity();
|
|
2215
|
+
* const item: ExecutingEntity = response.results;
|
|
2216
|
+
* ```
|
|
2217
|
+
*
|
|
2218
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2219
|
+
*/
|
|
2220
|
+
export type ExecutingEntity = components['schemas']['ExecutingEntity'];
|
|
2205
2221
|
/**
|
|
2206
2222
|
* GeneralAvailabilityBase
|
|
2207
2223
|
*
|
|
@@ -2266,6 +2282,27 @@ export type GetPrices = components['schemas']['GetPricesResponse'];
|
|
|
2266
2282
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2267
2283
|
*/
|
|
2268
2284
|
export type GrantType = components['schemas']['GrantType'];
|
|
2285
|
+
/**
|
|
2286
|
+
* HTTPMethod. HTTP methods and descriptions
|
|
2287
|
+
|
|
2288
|
+
Methods from the following RFCs are all observed:
|
|
2289
|
+
|
|
2290
|
+
* RFC 9110: HTTP Semantics, obsoletes 7231, which obsoleted 2616
|
|
2291
|
+
* RFC 5789: PATCH Method for HTTP
|
|
2292
|
+
*
|
|
2293
|
+
* @remarks
|
|
2294
|
+
* Type alias for the `HTTPMethod` OpenAPI schema.
|
|
2295
|
+
* This type represents httpmethod data structures used in API requests and responses.
|
|
2296
|
+
*
|
|
2297
|
+
* @example
|
|
2298
|
+
* ```typescript
|
|
2299
|
+
* const response = await api.getHTTPMethod();
|
|
2300
|
+
* const item: HTTPMethod = response.results;
|
|
2301
|
+
* ```
|
|
2302
|
+
*
|
|
2303
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2304
|
+
*/
|
|
2305
|
+
export type HTTPMethod = components['schemas']['HTTPMethod'];
|
|
2269
2306
|
/**
|
|
2270
2307
|
* RequestValidationError
|
|
2271
2308
|
*
|
package/src/openapi.yaml
CHANGED
|
@@ -3313,6 +3313,13 @@ components:
|
|
|
3313
3313
|
- VERIFICATION
|
|
3314
3314
|
title: EventType
|
|
3315
3315
|
type: string
|
|
3316
|
+
ExecutingEntity:
|
|
3317
|
+
enum:
|
|
3318
|
+
- user
|
|
3319
|
+
- organization
|
|
3320
|
+
- system
|
|
3321
|
+
title: ExecutingEntity
|
|
3322
|
+
type: string
|
|
3316
3323
|
GeneralAvailabilityBase:
|
|
3317
3324
|
properties:
|
|
3318
3325
|
start_date:
|
|
@@ -3356,6 +3363,22 @@ components:
|
|
|
3356
3363
|
- refresh_token
|
|
3357
3364
|
title: GrantType
|
|
3358
3365
|
type: string
|
|
3366
|
+
HTTPMethod:
|
|
3367
|
+
description: "HTTP methods and descriptions\n\nMethods from the following RFCs\
|
|
3368
|
+
\ are all observed:\n\n * RFC 9110: HTTP Semantics, obsoletes 7231, which\
|
|
3369
|
+
\ obsoleted 2616\n * RFC 5789: PATCH Method for HTTP"
|
|
3370
|
+
enum:
|
|
3371
|
+
- CONNECT
|
|
3372
|
+
- DELETE
|
|
3373
|
+
- GET
|
|
3374
|
+
- HEAD
|
|
3375
|
+
- OPTIONS
|
|
3376
|
+
- PATCH
|
|
3377
|
+
- POST
|
|
3378
|
+
- PUT
|
|
3379
|
+
- TRACE
|
|
3380
|
+
title: HTTPMethod
|
|
3381
|
+
type: string
|
|
3359
3382
|
HTTPValidationError:
|
|
3360
3383
|
properties:
|
|
3361
3384
|
errors:
|
|
@@ -3971,10 +3994,9 @@ components:
|
|
|
3971
3994
|
title: Performed By Id
|
|
3972
3995
|
performed_by_type:
|
|
3973
3996
|
anyOf:
|
|
3974
|
-
-
|
|
3997
|
+
- $ref: '#/components/schemas/ExecutingEntity'
|
|
3975
3998
|
- type: 'null'
|
|
3976
3999
|
description: Type of the actor who performed the action
|
|
3977
|
-
title: Performed By Type
|
|
3978
4000
|
server_request_id:
|
|
3979
4001
|
anyOf:
|
|
3980
4002
|
- type: string
|
|
@@ -5568,6 +5590,7 @@ components:
|
|
|
5568
5590
|
properties:
|
|
5569
5591
|
client_ip:
|
|
5570
5592
|
description: Client IP address
|
|
5593
|
+
format: ipvanyaddress
|
|
5571
5594
|
title: Client Ip
|
|
5572
5595
|
type: string
|
|
5573
5596
|
duration:
|
|
@@ -5575,9 +5598,8 @@ components:
|
|
|
5575
5598
|
title: Duration
|
|
5576
5599
|
type: number
|
|
5577
5600
|
method:
|
|
5601
|
+
$ref: '#/components/schemas/HTTPMethod'
|
|
5578
5602
|
description: HTTP method
|
|
5579
|
-
title: Method
|
|
5580
|
-
type: string
|
|
5581
5603
|
path:
|
|
5582
5604
|
description: Request path
|
|
5583
5605
|
title: Path
|
|
@@ -5590,10 +5612,9 @@ components:
|
|
|
5590
5612
|
title: Performed By Id
|
|
5591
5613
|
performed_by_type:
|
|
5592
5614
|
anyOf:
|
|
5593
|
-
-
|
|
5615
|
+
- $ref: '#/components/schemas/ExecutingEntity'
|
|
5594
5616
|
- type: 'null'
|
|
5595
5617
|
description: Type of the actor who performed the request
|
|
5596
|
-
title: Performed By Type
|
|
5597
5618
|
request_body:
|
|
5598
5619
|
anyOf:
|
|
5599
5620
|
- additionalProperties: true
|
|
@@ -6939,7 +6960,7 @@ info:
|
|
|
6939
6960
|
'
|
|
6940
6961
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6941
6962
|
title: OpusDNS API
|
|
6942
|
-
version: 2026-01-
|
|
6963
|
+
version: 2026-01-29-081753
|
|
6943
6964
|
x-logo:
|
|
6944
6965
|
altText: OpusDNS API Reference
|
|
6945
6966
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -7210,7 +7231,7 @@ paths:
|
|
|
7210
7231
|
required: false
|
|
7211
7232
|
schema:
|
|
7212
7233
|
anyOf:
|
|
7213
|
-
-
|
|
7234
|
+
- $ref: '#/components/schemas/ExecutingEntity'
|
|
7214
7235
|
- type: 'null'
|
|
7215
7236
|
title: Performed By Type
|
|
7216
7237
|
- in: query
|
|
@@ -7222,23 +7243,23 @@ paths:
|
|
|
7222
7243
|
- type: 'null'
|
|
7223
7244
|
title: Performed By Id
|
|
7224
7245
|
- in: query
|
|
7225
|
-
name:
|
|
7246
|
+
name: created_before
|
|
7226
7247
|
required: false
|
|
7227
7248
|
schema:
|
|
7228
7249
|
anyOf:
|
|
7229
7250
|
- format: date-time
|
|
7230
7251
|
type: string
|
|
7231
7252
|
- type: 'null'
|
|
7232
|
-
title:
|
|
7253
|
+
title: Created Before
|
|
7233
7254
|
- in: query
|
|
7234
|
-
name:
|
|
7255
|
+
name: created_after
|
|
7235
7256
|
required: false
|
|
7236
7257
|
schema:
|
|
7237
7258
|
anyOf:
|
|
7238
7259
|
- format: date-time
|
|
7239
7260
|
type: string
|
|
7240
7261
|
- type: 'null'
|
|
7241
|
-
title:
|
|
7262
|
+
title: Created After
|
|
7242
7263
|
- in: query
|
|
7243
7264
|
name: object_id
|
|
7244
7265
|
required: false
|
|
@@ -7344,7 +7365,7 @@ paths:
|
|
|
7344
7365
|
required: false
|
|
7345
7366
|
schema:
|
|
7346
7367
|
anyOf:
|
|
7347
|
-
-
|
|
7368
|
+
- $ref: '#/components/schemas/ExecutingEntity'
|
|
7348
7369
|
- type: 'null'
|
|
7349
7370
|
title: Performed By Type
|
|
7350
7371
|
- in: query
|
|
@@ -7356,23 +7377,23 @@ paths:
|
|
|
7356
7377
|
- type: 'null'
|
|
7357
7378
|
title: Performed By Id
|
|
7358
7379
|
- in: query
|
|
7359
|
-
name:
|
|
7380
|
+
name: created_before
|
|
7360
7381
|
required: false
|
|
7361
7382
|
schema:
|
|
7362
7383
|
anyOf:
|
|
7363
7384
|
- format: date-time
|
|
7364
7385
|
type: string
|
|
7365
7386
|
- type: 'null'
|
|
7366
|
-
title:
|
|
7387
|
+
title: Created Before
|
|
7367
7388
|
- in: query
|
|
7368
|
-
name:
|
|
7389
|
+
name: created_after
|
|
7369
7390
|
required: false
|
|
7370
7391
|
schema:
|
|
7371
7392
|
anyOf:
|
|
7372
7393
|
- format: date-time
|
|
7373
7394
|
type: string
|
|
7374
7395
|
- type: 'null'
|
|
7375
|
-
title:
|
|
7396
|
+
title: Created After
|
|
7376
7397
|
responses:
|
|
7377
7398
|
'200':
|
|
7378
7399
|
content:
|
|
@@ -7431,7 +7452,7 @@ paths:
|
|
|
7431
7452
|
required: false
|
|
7432
7453
|
schema:
|
|
7433
7454
|
anyOf:
|
|
7434
|
-
-
|
|
7455
|
+
- $ref: '#/components/schemas/HTTPMethod'
|
|
7435
7456
|
- type: 'null'
|
|
7436
7457
|
title: Method
|
|
7437
7458
|
- in: query
|
|
@@ -7487,7 +7508,8 @@ paths:
|
|
|
7487
7508
|
required: false
|
|
7488
7509
|
schema:
|
|
7489
7510
|
anyOf:
|
|
7490
|
-
-
|
|
7511
|
+
- format: ipvanyaddress
|
|
7512
|
+
type: string
|
|
7491
7513
|
- type: 'null'
|
|
7492
7514
|
title: Client Ip
|
|
7493
7515
|
- in: query
|
|
@@ -7503,7 +7525,7 @@ paths:
|
|
|
7503
7525
|
required: false
|
|
7504
7526
|
schema:
|
|
7505
7527
|
anyOf:
|
|
7506
|
-
-
|
|
7528
|
+
- $ref: '#/components/schemas/ExecutingEntity'
|
|
7507
7529
|
- type: 'null'
|
|
7508
7530
|
title: Performed By Type
|
|
7509
7531
|
- in: query
|
|
@@ -7515,23 +7537,23 @@ paths:
|
|
|
7515
7537
|
- type: 'null'
|
|
7516
7538
|
title: Performed By Id
|
|
7517
7539
|
- in: query
|
|
7518
|
-
name:
|
|
7540
|
+
name: request_started_before
|
|
7519
7541
|
required: false
|
|
7520
7542
|
schema:
|
|
7521
7543
|
anyOf:
|
|
7522
7544
|
- format: date-time
|
|
7523
7545
|
type: string
|
|
7524
7546
|
- type: 'null'
|
|
7525
|
-
title:
|
|
7547
|
+
title: Request Started Before
|
|
7526
7548
|
- in: query
|
|
7527
|
-
name:
|
|
7549
|
+
name: request_started_after
|
|
7528
7550
|
required: false
|
|
7529
7551
|
schema:
|
|
7530
7552
|
anyOf:
|
|
7531
7553
|
- format: date-time
|
|
7532
7554
|
type: string
|
|
7533
7555
|
- type: 'null'
|
|
7534
|
-
title:
|
|
7556
|
+
title: Request Started After
|
|
7535
7557
|
responses:
|
|
7536
7558
|
'200':
|
|
7537
7559
|
content:
|
package/src/schema.d.ts
CHANGED
|
@@ -4064,6 +4064,11 @@ export interface components {
|
|
|
4064
4064
|
* @enum {string}
|
|
4065
4065
|
*/
|
|
4066
4066
|
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "VERIFICATION";
|
|
4067
|
+
/**
|
|
4068
|
+
* ExecutingEntity
|
|
4069
|
+
* @enum {string}
|
|
4070
|
+
*/
|
|
4071
|
+
ExecutingEntity: "user" | "organization" | "system";
|
|
4067
4072
|
/** GeneralAvailabilityBase */
|
|
4068
4073
|
GeneralAvailabilityBase: {
|
|
4069
4074
|
/**
|
|
@@ -4093,6 +4098,17 @@ export interface components {
|
|
|
4093
4098
|
* @enum {string}
|
|
4094
4099
|
*/
|
|
4095
4100
|
GrantType: "client_credentials" | "password" | "refresh_token";
|
|
4101
|
+
/**
|
|
4102
|
+
* HTTPMethod
|
|
4103
|
+
* @description HTTP methods and descriptions
|
|
4104
|
+
*
|
|
4105
|
+
* Methods from the following RFCs are all observed:
|
|
4106
|
+
*
|
|
4107
|
+
* * RFC 9110: HTTP Semantics, obsoletes 7231, which obsoleted 2616
|
|
4108
|
+
* * RFC 5789: PATCH Method for HTTP
|
|
4109
|
+
* @enum {string}
|
|
4110
|
+
*/
|
|
4111
|
+
HTTPMethod: "CONNECT" | "DELETE" | "GET" | "HEAD" | "OPTIONS" | "PATCH" | "POST" | "PUT" | "TRACE";
|
|
4096
4112
|
/** RequestValidationError */
|
|
4097
4113
|
HTTPValidationError: {
|
|
4098
4114
|
errors: components["schemas"]["ValidationError"][];
|
|
@@ -4511,11 +4527,8 @@ export interface components {
|
|
|
4511
4527
|
* @description ID of the actor who performed the action
|
|
4512
4528
|
*/
|
|
4513
4529
|
performed_by_id?: string | null;
|
|
4514
|
-
/**
|
|
4515
|
-
|
|
4516
|
-
* @description Type of the actor who performed the action
|
|
4517
|
-
*/
|
|
4518
|
-
performed_by_type?: string | null;
|
|
4530
|
+
/** @description Type of the actor who performed the action */
|
|
4531
|
+
performed_by_type?: components["schemas"]["ExecutingEntity"] | null;
|
|
4519
4532
|
/**
|
|
4520
4533
|
* Server Request Id
|
|
4521
4534
|
* @description Server request ID
|
|
@@ -5506,6 +5519,7 @@ export interface components {
|
|
|
5506
5519
|
RequestHistory: {
|
|
5507
5520
|
/**
|
|
5508
5521
|
* Client Ip
|
|
5522
|
+
* Format: ipvanyaddress
|
|
5509
5523
|
* @description Client IP address
|
|
5510
5524
|
*/
|
|
5511
5525
|
client_ip: string;
|
|
@@ -5514,11 +5528,8 @@ export interface components {
|
|
|
5514
5528
|
* @description Request duration in milliseconds
|
|
5515
5529
|
*/
|
|
5516
5530
|
duration: number;
|
|
5517
|
-
/**
|
|
5518
|
-
|
|
5519
|
-
* @description HTTP method
|
|
5520
|
-
*/
|
|
5521
|
-
method: string;
|
|
5531
|
+
/** @description HTTP method */
|
|
5532
|
+
method: components["schemas"]["HTTPMethod"];
|
|
5522
5533
|
/**
|
|
5523
5534
|
* Path
|
|
5524
5535
|
* @description Request path
|
|
@@ -5529,11 +5540,8 @@ export interface components {
|
|
|
5529
5540
|
* @description ID of the actor who performed the request
|
|
5530
5541
|
*/
|
|
5531
5542
|
performed_by_id?: string | null;
|
|
5532
|
-
/**
|
|
5533
|
-
|
|
5534
|
-
* @description Type of the actor who performed the request
|
|
5535
|
-
*/
|
|
5536
|
-
performed_by_type?: string | null;
|
|
5543
|
+
/** @description Type of the actor who performed the request */
|
|
5544
|
+
performed_by_type?: components["schemas"]["ExecutingEntity"] | null;
|
|
5537
5545
|
/**
|
|
5538
5546
|
* Request Body
|
|
5539
5547
|
* @description Request body
|
|
@@ -6520,10 +6528,10 @@ export interface operations {
|
|
|
6520
6528
|
object_type?: string | null;
|
|
6521
6529
|
action?: components["schemas"]["ObjectEventType"] | null;
|
|
6522
6530
|
server_request_id?: string | null;
|
|
6523
|
-
performed_by_type?:
|
|
6531
|
+
performed_by_type?: components["schemas"]["ExecutingEntity"] | null;
|
|
6524
6532
|
performed_by_id?: string | null;
|
|
6525
|
-
|
|
6526
|
-
|
|
6533
|
+
created_before?: Date | null;
|
|
6534
|
+
created_after?: Date | null;
|
|
6527
6535
|
object_id?: string | null;
|
|
6528
6536
|
};
|
|
6529
6537
|
header?: never;
|
|
@@ -6563,10 +6571,10 @@ export interface operations {
|
|
|
6563
6571
|
object_type?: string | null;
|
|
6564
6572
|
action?: components["schemas"]["ObjectEventType"] | null;
|
|
6565
6573
|
server_request_id?: string | null;
|
|
6566
|
-
performed_by_type?:
|
|
6574
|
+
performed_by_type?: components["schemas"]["ExecutingEntity"] | null;
|
|
6567
6575
|
performed_by_id?: string | null;
|
|
6568
|
-
|
|
6569
|
-
|
|
6576
|
+
created_before?: Date | null;
|
|
6577
|
+
created_after?: Date | null;
|
|
6570
6578
|
};
|
|
6571
6579
|
header?: never;
|
|
6572
6580
|
path: {
|
|
@@ -6603,7 +6611,7 @@ export interface operations {
|
|
|
6603
6611
|
sort_order?: components["schemas"]["SortOrder"];
|
|
6604
6612
|
page_size?: number;
|
|
6605
6613
|
page?: number;
|
|
6606
|
-
method?:
|
|
6614
|
+
method?: components["schemas"]["HTTPMethod"] | null;
|
|
6607
6615
|
path?: string | null;
|
|
6608
6616
|
status_code?: number | null;
|
|
6609
6617
|
min_status_code?: number | null;
|
|
@@ -6612,10 +6620,10 @@ export interface operations {
|
|
|
6612
6620
|
max_duration?: number | null;
|
|
6613
6621
|
client_ip?: string | null;
|
|
6614
6622
|
server_request_id?: string | null;
|
|
6615
|
-
performed_by_type?:
|
|
6623
|
+
performed_by_type?: components["schemas"]["ExecutingEntity"] | null;
|
|
6616
6624
|
performed_by_id?: string | null;
|
|
6617
|
-
|
|
6618
|
-
|
|
6625
|
+
request_started_before?: Date | null;
|
|
6626
|
+
request_started_after?: Date | null;
|
|
6619
6627
|
};
|
|
6620
6628
|
header?: never;
|
|
6621
6629
|
path?: never;
|