@opusdns/api 1.57.0 → 1.59.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 +54 -0
- package/src/helpers/responses.d.ts +14 -14
- package/src/helpers/schemas.d.ts +6 -6
- package/src/openapi.yaml +341 -329
- package/src/schema.d.ts +76 -70
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -287,6 +287,12 @@ import type {
|
|
|
287
287
|
OrganizationToken,
|
|
288
288
|
OrganizationUpdate,
|
|
289
289
|
OrganizationWithBillingData,
|
|
290
|
+
PageResponse_EmailForwardLog,
|
|
291
|
+
PageResponse_JobBatchMetadata,
|
|
292
|
+
PageResponse_Job,
|
|
293
|
+
PageResponse_ObjectLog,
|
|
294
|
+
PageResponse_Parking,
|
|
295
|
+
PageResponse_RequestHistory,
|
|
290
296
|
PaginationMetadata,
|
|
291
297
|
PaginationMetadataDTO,
|
|
292
298
|
ParkingActionPayloadData,
|
|
@@ -4038,6 +4044,54 @@ export const KEYS_ORGANIZATION_WITH_BILLING_DATA = [
|
|
|
4038
4044
|
KEY_ORGANIZATION_WITH_BILLING_DATA_USERS,
|
|
4039
4045
|
] as const satisfies (keyof OrganizationWithBillingData)[];
|
|
4040
4046
|
|
|
4047
|
+
export const KEY_PAGE_RESPONSE_EMAIL_FORWARD_LOG_PAGINATION = 'pagination' satisfies keyof PageResponse_EmailForwardLog;
|
|
4048
|
+
export const KEY_PAGE_RESPONSE_EMAIL_FORWARD_LOG_RESULTS = 'results' satisfies keyof PageResponse_EmailForwardLog;
|
|
4049
|
+
|
|
4050
|
+
export const KEYS_PAGE_RESPONSE_EMAIL_FORWARD_LOG = [
|
|
4051
|
+
KEY_PAGE_RESPONSE_EMAIL_FORWARD_LOG_PAGINATION,
|
|
4052
|
+
KEY_PAGE_RESPONSE_EMAIL_FORWARD_LOG_RESULTS,
|
|
4053
|
+
] as const satisfies (keyof PageResponse_EmailForwardLog)[];
|
|
4054
|
+
|
|
4055
|
+
export const KEY_PAGE_RESPONSE_JOB_BATCH_METADATA_PAGINATION = 'pagination' satisfies keyof PageResponse_JobBatchMetadata;
|
|
4056
|
+
export const KEY_PAGE_RESPONSE_JOB_BATCH_METADATA_RESULTS = 'results' satisfies keyof PageResponse_JobBatchMetadata;
|
|
4057
|
+
|
|
4058
|
+
export const KEYS_PAGE_RESPONSE_JOB_BATCH_METADATA = [
|
|
4059
|
+
KEY_PAGE_RESPONSE_JOB_BATCH_METADATA_PAGINATION,
|
|
4060
|
+
KEY_PAGE_RESPONSE_JOB_BATCH_METADATA_RESULTS,
|
|
4061
|
+
] as const satisfies (keyof PageResponse_JobBatchMetadata)[];
|
|
4062
|
+
|
|
4063
|
+
export const KEY_PAGE_RESPONSE_JOB_PAGINATION = 'pagination' satisfies keyof PageResponse_Job;
|
|
4064
|
+
export const KEY_PAGE_RESPONSE_JOB_RESULTS = 'results' satisfies keyof PageResponse_Job;
|
|
4065
|
+
|
|
4066
|
+
export const KEYS_PAGE_RESPONSE_JOB = [
|
|
4067
|
+
KEY_PAGE_RESPONSE_JOB_PAGINATION,
|
|
4068
|
+
KEY_PAGE_RESPONSE_JOB_RESULTS,
|
|
4069
|
+
] as const satisfies (keyof PageResponse_Job)[];
|
|
4070
|
+
|
|
4071
|
+
export const KEY_PAGE_RESPONSE_OBJECT_LOG_PAGINATION = 'pagination' satisfies keyof PageResponse_ObjectLog;
|
|
4072
|
+
export const KEY_PAGE_RESPONSE_OBJECT_LOG_RESULTS = 'results' satisfies keyof PageResponse_ObjectLog;
|
|
4073
|
+
|
|
4074
|
+
export const KEYS_PAGE_RESPONSE_OBJECT_LOG = [
|
|
4075
|
+
KEY_PAGE_RESPONSE_OBJECT_LOG_PAGINATION,
|
|
4076
|
+
KEY_PAGE_RESPONSE_OBJECT_LOG_RESULTS,
|
|
4077
|
+
] as const satisfies (keyof PageResponse_ObjectLog)[];
|
|
4078
|
+
|
|
4079
|
+
export const KEY_PAGE_RESPONSE_PARKING_PAGINATION = 'pagination' satisfies keyof PageResponse_Parking;
|
|
4080
|
+
export const KEY_PAGE_RESPONSE_PARKING_RESULTS = 'results' satisfies keyof PageResponse_Parking;
|
|
4081
|
+
|
|
4082
|
+
export const KEYS_PAGE_RESPONSE_PARKING = [
|
|
4083
|
+
KEY_PAGE_RESPONSE_PARKING_PAGINATION,
|
|
4084
|
+
KEY_PAGE_RESPONSE_PARKING_RESULTS,
|
|
4085
|
+
] as const satisfies (keyof PageResponse_Parking)[];
|
|
4086
|
+
|
|
4087
|
+
export const KEY_PAGE_RESPONSE_REQUEST_HISTORY_PAGINATION = 'pagination' satisfies keyof PageResponse_RequestHistory;
|
|
4088
|
+
export const KEY_PAGE_RESPONSE_REQUEST_HISTORY_RESULTS = 'results' satisfies keyof PageResponse_RequestHistory;
|
|
4089
|
+
|
|
4090
|
+
export const KEYS_PAGE_RESPONSE_REQUEST_HISTORY = [
|
|
4091
|
+
KEY_PAGE_RESPONSE_REQUEST_HISTORY_PAGINATION,
|
|
4092
|
+
KEY_PAGE_RESPONSE_REQUEST_HISTORY_RESULTS,
|
|
4093
|
+
] as const satisfies (keyof PageResponse_RequestHistory)[];
|
|
4094
|
+
|
|
4041
4095
|
export const KEY_PAGINATION_METADATA_CURRENT_PAGE = 'current_page' satisfies keyof PaginationMetadata;
|
|
4042
4096
|
export const KEY_PAGINATION_METADATA_HAS_NEXT_PAGE = 'has_next_page' satisfies keyof PaginationMetadata;
|
|
4043
4097
|
export const KEY_PAGINATION_METADATA_HAS_PREVIOUS_PAGE = 'has_previous_page' satisfies keyof PaginationMetadata;
|
|
@@ -60,6 +60,12 @@ import type {
|
|
|
60
60
|
OrganizationAttribute2,
|
|
61
61
|
OrganizationCredential,
|
|
62
62
|
OrganizationWithBillingData,
|
|
63
|
+
PageResponse_EmailForwardLog,
|
|
64
|
+
PageResponse_Job,
|
|
65
|
+
PageResponse_JobBatchMetadata,
|
|
66
|
+
PageResponse_ObjectLog,
|
|
67
|
+
PageResponse_Parking,
|
|
68
|
+
PageResponse_RequestHistory,
|
|
63
69
|
Pagination_BillingTransaction,
|
|
64
70
|
Pagination_Contact,
|
|
65
71
|
Pagination_ContactAttributeSet,
|
|
@@ -68,16 +74,10 @@ import type {
|
|
|
68
74
|
Pagination_DomainForward,
|
|
69
75
|
Pagination_DomainForwardZone,
|
|
70
76
|
Pagination_EmailForward,
|
|
71
|
-
Pagination_EmailForwardLog,
|
|
72
77
|
Pagination_EmailForwardZone,
|
|
73
78
|
Pagination_Event,
|
|
74
79
|
Pagination_Invoice,
|
|
75
|
-
Pagination_Job,
|
|
76
|
-
Pagination_JobBatchMetadata,
|
|
77
|
-
Pagination_ObjectLog,
|
|
78
80
|
Pagination_Organization,
|
|
79
|
-
Pagination_Parking,
|
|
80
|
-
Pagination_RequestHistory,
|
|
81
81
|
Pagination_Tag,
|
|
82
82
|
Pagination_UserPublicWithRole,
|
|
83
83
|
ParkingMetrics,
|
|
@@ -298,27 +298,27 @@ export type GET_AiConciergeMemoryFacts_Response_502 = Problem;
|
|
|
298
298
|
|
|
299
299
|
export type GET_ArchiveEmailForwardLogsAliasesByEmailForwardAliasId_Response = GET_ArchiveEmailForwardLogsAliasesByEmailForwardAliasId_Response_200 | GET_ArchiveEmailForwardLogsAliasesByEmailForwardAliasId_Response_422;
|
|
300
300
|
|
|
301
|
-
export type GET_ArchiveEmailForwardLogsAliasesByEmailForwardAliasId_Response_200 =
|
|
301
|
+
export type GET_ArchiveEmailForwardLogsAliasesByEmailForwardAliasId_Response_200 = PageResponse_EmailForwardLog;
|
|
302
302
|
export type GET_ArchiveEmailForwardLogsAliasesByEmailForwardAliasId_Response_422 = HTTPValidationError;
|
|
303
303
|
|
|
304
304
|
export type GET_ArchiveEmailForwardLogsByEmailForwardId_Response = GET_ArchiveEmailForwardLogsByEmailForwardId_Response_200 | GET_ArchiveEmailForwardLogsByEmailForwardId_Response_422;
|
|
305
305
|
|
|
306
|
-
export type GET_ArchiveEmailForwardLogsByEmailForwardId_Response_200 =
|
|
306
|
+
export type GET_ArchiveEmailForwardLogsByEmailForwardId_Response_200 = PageResponse_EmailForwardLog;
|
|
307
307
|
export type GET_ArchiveEmailForwardLogsByEmailForwardId_Response_422 = HTTPValidationError;
|
|
308
308
|
|
|
309
309
|
export type GET_ArchiveObjectLogs_Response = GET_ArchiveObjectLogs_Response_200 | GET_ArchiveObjectLogs_Response_422;
|
|
310
310
|
|
|
311
|
-
export type GET_ArchiveObjectLogs_Response_200 =
|
|
311
|
+
export type GET_ArchiveObjectLogs_Response_200 = PageResponse_ObjectLog;
|
|
312
312
|
export type GET_ArchiveObjectLogs_Response_422 = HTTPValidationError;
|
|
313
313
|
|
|
314
314
|
export type GET_ArchiveObjectLogsByObjectId_Response = GET_ArchiveObjectLogsByObjectId_Response_200 | GET_ArchiveObjectLogsByObjectId_Response_422;
|
|
315
315
|
|
|
316
|
-
export type GET_ArchiveObjectLogsByObjectId_Response_200 =
|
|
316
|
+
export type GET_ArchiveObjectLogsByObjectId_Response_200 = PageResponse_ObjectLog;
|
|
317
317
|
export type GET_ArchiveObjectLogsByObjectId_Response_422 = HTTPValidationError;
|
|
318
318
|
|
|
319
319
|
export type GET_ArchiveRequestHistory_Response = GET_ArchiveRequestHistory_Response_200 | GET_ArchiveRequestHistory_Response_422;
|
|
320
320
|
|
|
321
|
-
export type GET_ArchiveRequestHistory_Response_200 =
|
|
321
|
+
export type GET_ArchiveRequestHistory_Response_200 = PageResponse_RequestHistory;
|
|
322
322
|
export type GET_ArchiveRequestHistory_Response_422 = HTTPValidationError;
|
|
323
323
|
|
|
324
324
|
export type GET_AuthClientCredentialsIntrospect_Response = GET_AuthClientCredentialsIntrospect_Response_200 | GET_AuthClientCredentialsIntrospect_Response_401 | GET_AuthClientCredentialsIntrospect_Response_422;
|
|
@@ -601,7 +601,7 @@ export type GET_JobByJobId_Response_422 = HTTPValidationError;
|
|
|
601
601
|
|
|
602
602
|
export type GET_Jobs_Response = GET_Jobs_Response_200 | GET_Jobs_Response_422;
|
|
603
603
|
|
|
604
|
-
export type GET_Jobs_Response_200 =
|
|
604
|
+
export type GET_Jobs_Response_200 = PageResponse_JobBatchMetadata;
|
|
605
605
|
export type GET_Jobs_Response_422 = HTTPValidationError;
|
|
606
606
|
|
|
607
607
|
export type GET_JobsByBatchId_Response = GET_JobsByBatchId_Response_200 | GET_JobsByBatchId_Response_404 | GET_JobsByBatchId_Response_422 | GET_JobsByBatchId_Response_503;
|
|
@@ -613,7 +613,7 @@ export type GET_JobsByBatchId_Response_503 = Problem;
|
|
|
613
613
|
|
|
614
614
|
export type GET_JobsByBatchIdJobs_Response = GET_JobsByBatchIdJobs_Response_200 | GET_JobsByBatchIdJobs_Response_404 | GET_JobsByBatchIdJobs_Response_422 | GET_JobsByBatchIdJobs_Response_503;
|
|
615
615
|
|
|
616
|
-
export type GET_JobsByBatchIdJobs_Response_200 =
|
|
616
|
+
export type GET_JobsByBatchIdJobs_Response_200 = PageResponse_Job;
|
|
617
617
|
export type GET_JobsByBatchIdJobs_Response_404 = Problem;
|
|
618
618
|
export type GET_JobsByBatchIdJobs_Response_422 = HTTPValidationError;
|
|
619
619
|
export type GET_JobsByBatchIdJobs_Response_503 = Problem;
|
|
@@ -717,7 +717,7 @@ export type GET_OrganizationsUsers_Response_422 = HTTPValidationError;
|
|
|
717
717
|
|
|
718
718
|
export type GET_Parking_Response = GET_Parking_Response_200 | GET_Parking_Response_401 | GET_Parking_Response_403 | GET_Parking_Response_422;
|
|
719
719
|
|
|
720
|
-
export type GET_Parking_Response_200 =
|
|
720
|
+
export type GET_Parking_Response_200 = PageResponse_Parking;
|
|
721
721
|
export type GET_Parking_Response_401 = Problem;
|
|
722
722
|
export type GET_Parking_Response_403 = Problem;
|
|
723
723
|
export type GET_Parking_Response_422 = HTTPValidationError;
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -363,6 +363,12 @@ export type OrganizationStatus = components['schemas']['OrganizationStatus'];
|
|
|
363
363
|
export type OrganizationToken = components['schemas']['OrganizationTokenResponse'];
|
|
364
364
|
export type OrganizationUpdate = components['schemas']['OrganizationUpdate'];
|
|
365
365
|
export type OrganizationWithBillingData = components['schemas']['OrganizationWithBillingData'];
|
|
366
|
+
export type PageResponse_EmailForwardLog = components['schemas']['PageResponse_EmailForwardLog_'];
|
|
367
|
+
export type PageResponse_JobBatchMetadata = components['schemas']['PageResponse_JobBatchMetadataResponse_'];
|
|
368
|
+
export type PageResponse_Job = components['schemas']['PageResponse_JobResponse_'];
|
|
369
|
+
export type PageResponse_ObjectLog = components['schemas']['PageResponse_ObjectLog_'];
|
|
370
|
+
export type PageResponse_Parking = components['schemas']['PageResponse_ParkingResponse_'];
|
|
371
|
+
export type PageResponse_RequestHistory = components['schemas']['PageResponse_RequestHistory_'];
|
|
366
372
|
export type PaginationMetadata = components['schemas']['PaginationMetadata'];
|
|
367
373
|
export type PaginationMetadataDTO = components['schemas']['PaginationMetadataDTO'];
|
|
368
374
|
export type Pagination_BillingTransaction = components['schemas']['Pagination_BillingTransactionResponse_'];
|
|
@@ -372,17 +378,11 @@ export type Pagination_DnsZone = components['schemas']['Pagination_DnsZoneRespon
|
|
|
372
378
|
export type Pagination_DomainForwardZone = components['schemas']['Pagination_DomainForwardZone_'];
|
|
373
379
|
export type Pagination_DomainForward = components['schemas']['Pagination_DomainForward_'];
|
|
374
380
|
export type Pagination_Domain = components['schemas']['Pagination_DomainResponse_'];
|
|
375
|
-
export type Pagination_EmailForwardLog = components['schemas']['Pagination_EmailForwardLog_'];
|
|
376
381
|
export type Pagination_EmailForward = components['schemas']['Pagination_EmailForwardResponse_'];
|
|
377
382
|
export type Pagination_EmailForwardZone = components['schemas']['Pagination_EmailForwardZone_'];
|
|
378
383
|
export type Pagination_Event = components['schemas']['Pagination_EventResponse_'];
|
|
379
384
|
export type Pagination_Invoice = components['schemas']['Pagination_InvoiceResponse_'];
|
|
380
|
-
export type Pagination_JobBatchMetadata = components['schemas']['Pagination_JobBatchMetadataResponse_'];
|
|
381
|
-
export type Pagination_Job = components['schemas']['Pagination_JobResponse_'];
|
|
382
|
-
export type Pagination_ObjectLog = components['schemas']['Pagination_ObjectLog_'];
|
|
383
385
|
export type Pagination_Organization = components['schemas']['Pagination_Organization_'];
|
|
384
|
-
export type Pagination_Parking = components['schemas']['Pagination_ParkingResponse_'];
|
|
385
|
-
export type Pagination_RequestHistory = components['schemas']['Pagination_RequestHistory_'];
|
|
386
386
|
export type Pagination_Tag = components['schemas']['Pagination_TagResponse_'];
|
|
387
387
|
export type Pagination_UserPublicWithRole = components['schemas']['Pagination_UserPublicWithRole_'];
|
|
388
388
|
export type ParkingActionPayloadData = components['schemas']['ParkingActionPayloadData'];
|