@opusdns/api 1.58.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 +184 -172
- package/src/schema.d.ts +60 -54
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'];
|
package/src/openapi.yaml
CHANGED
|
@@ -9736,6 +9736,90 @@ components:
|
|
|
9736
9736
|
- name
|
|
9737
9737
|
title: OrganizationWithBillingData
|
|
9738
9738
|
type: object
|
|
9739
|
+
PageResponse_EmailForwardLog_:
|
|
9740
|
+
properties:
|
|
9741
|
+
pagination:
|
|
9742
|
+
$ref: '#/components/schemas/PaginationMetadata'
|
|
9743
|
+
results:
|
|
9744
|
+
items:
|
|
9745
|
+
$ref: '#/components/schemas/EmailForwardLog'
|
|
9746
|
+
title: Results
|
|
9747
|
+
type: array
|
|
9748
|
+
required:
|
|
9749
|
+
- results
|
|
9750
|
+
- pagination
|
|
9751
|
+
title: PageResponse[EmailForwardLog]
|
|
9752
|
+
type: object
|
|
9753
|
+
PageResponse_JobBatchMetadataResponse_:
|
|
9754
|
+
properties:
|
|
9755
|
+
pagination:
|
|
9756
|
+
$ref: '#/components/schemas/PaginationMetadata'
|
|
9757
|
+
results:
|
|
9758
|
+
items:
|
|
9759
|
+
$ref: '#/components/schemas/JobBatchMetadataResponse'
|
|
9760
|
+
title: Results
|
|
9761
|
+
type: array
|
|
9762
|
+
required:
|
|
9763
|
+
- results
|
|
9764
|
+
- pagination
|
|
9765
|
+
title: PageResponse[JobBatchMetadataResponse]
|
|
9766
|
+
type: object
|
|
9767
|
+
PageResponse_JobResponse_:
|
|
9768
|
+
properties:
|
|
9769
|
+
pagination:
|
|
9770
|
+
$ref: '#/components/schemas/PaginationMetadata'
|
|
9771
|
+
results:
|
|
9772
|
+
items:
|
|
9773
|
+
$ref: '#/components/schemas/JobResponse'
|
|
9774
|
+
title: Results
|
|
9775
|
+
type: array
|
|
9776
|
+
required:
|
|
9777
|
+
- results
|
|
9778
|
+
- pagination
|
|
9779
|
+
title: PageResponse[JobResponse]
|
|
9780
|
+
type: object
|
|
9781
|
+
PageResponse_ObjectLog_:
|
|
9782
|
+
properties:
|
|
9783
|
+
pagination:
|
|
9784
|
+
$ref: '#/components/schemas/PaginationMetadata'
|
|
9785
|
+
results:
|
|
9786
|
+
items:
|
|
9787
|
+
$ref: '#/components/schemas/ObjectLog'
|
|
9788
|
+
title: Results
|
|
9789
|
+
type: array
|
|
9790
|
+
required:
|
|
9791
|
+
- results
|
|
9792
|
+
- pagination
|
|
9793
|
+
title: PageResponse[ObjectLog]
|
|
9794
|
+
type: object
|
|
9795
|
+
PageResponse_ParkingResponse_:
|
|
9796
|
+
properties:
|
|
9797
|
+
pagination:
|
|
9798
|
+
$ref: '#/components/schemas/PaginationMetadata'
|
|
9799
|
+
results:
|
|
9800
|
+
items:
|
|
9801
|
+
$ref: '#/components/schemas/ParkingResponse'
|
|
9802
|
+
title: Results
|
|
9803
|
+
type: array
|
|
9804
|
+
required:
|
|
9805
|
+
- results
|
|
9806
|
+
- pagination
|
|
9807
|
+
title: PageResponse[ParkingResponse]
|
|
9808
|
+
type: object
|
|
9809
|
+
PageResponse_RequestHistory_:
|
|
9810
|
+
properties:
|
|
9811
|
+
pagination:
|
|
9812
|
+
$ref: '#/components/schemas/PaginationMetadata'
|
|
9813
|
+
results:
|
|
9814
|
+
items:
|
|
9815
|
+
$ref: '#/components/schemas/RequestHistory'
|
|
9816
|
+
title: Results
|
|
9817
|
+
type: array
|
|
9818
|
+
required:
|
|
9819
|
+
- results
|
|
9820
|
+
- pagination
|
|
9821
|
+
title: PageResponse[RequestHistory]
|
|
9822
|
+
type: object
|
|
9739
9823
|
PaginationMetadata:
|
|
9740
9824
|
properties:
|
|
9741
9825
|
current_page:
|
|
@@ -9898,20 +9982,6 @@ components:
|
|
|
9898
9982
|
- pagination
|
|
9899
9983
|
title: Pagination[DomainResponse]
|
|
9900
9984
|
type: object
|
|
9901
|
-
Pagination_EmailForwardLog_:
|
|
9902
|
-
properties:
|
|
9903
|
-
pagination:
|
|
9904
|
-
$ref: '#/components/schemas/PaginationMetadata'
|
|
9905
|
-
results:
|
|
9906
|
-
items:
|
|
9907
|
-
$ref: '#/components/schemas/EmailForwardLog'
|
|
9908
|
-
title: Results
|
|
9909
|
-
type: array
|
|
9910
|
-
required:
|
|
9911
|
-
- results
|
|
9912
|
-
- pagination
|
|
9913
|
-
title: Pagination[EmailForwardLog]
|
|
9914
|
-
type: object
|
|
9915
9985
|
Pagination_EmailForwardResponse_:
|
|
9916
9986
|
properties:
|
|
9917
9987
|
pagination:
|
|
@@ -9968,48 +10038,6 @@ components:
|
|
|
9968
10038
|
- pagination
|
|
9969
10039
|
title: Pagination[InvoiceResponse]
|
|
9970
10040
|
type: object
|
|
9971
|
-
Pagination_JobBatchMetadataResponse_:
|
|
9972
|
-
properties:
|
|
9973
|
-
pagination:
|
|
9974
|
-
$ref: '#/components/schemas/PaginationMetadata'
|
|
9975
|
-
results:
|
|
9976
|
-
items:
|
|
9977
|
-
$ref: '#/components/schemas/JobBatchMetadataResponse'
|
|
9978
|
-
title: Results
|
|
9979
|
-
type: array
|
|
9980
|
-
required:
|
|
9981
|
-
- results
|
|
9982
|
-
- pagination
|
|
9983
|
-
title: Pagination[JobBatchMetadataResponse]
|
|
9984
|
-
type: object
|
|
9985
|
-
Pagination_JobResponse_:
|
|
9986
|
-
properties:
|
|
9987
|
-
pagination:
|
|
9988
|
-
$ref: '#/components/schemas/PaginationMetadata'
|
|
9989
|
-
results:
|
|
9990
|
-
items:
|
|
9991
|
-
$ref: '#/components/schemas/JobResponse'
|
|
9992
|
-
title: Results
|
|
9993
|
-
type: array
|
|
9994
|
-
required:
|
|
9995
|
-
- results
|
|
9996
|
-
- pagination
|
|
9997
|
-
title: Pagination[JobResponse]
|
|
9998
|
-
type: object
|
|
9999
|
-
Pagination_ObjectLog_:
|
|
10000
|
-
properties:
|
|
10001
|
-
pagination:
|
|
10002
|
-
$ref: '#/components/schemas/PaginationMetadata'
|
|
10003
|
-
results:
|
|
10004
|
-
items:
|
|
10005
|
-
$ref: '#/components/schemas/ObjectLog'
|
|
10006
|
-
title: Results
|
|
10007
|
-
type: array
|
|
10008
|
-
required:
|
|
10009
|
-
- results
|
|
10010
|
-
- pagination
|
|
10011
|
-
title: Pagination[ObjectLog]
|
|
10012
|
-
type: object
|
|
10013
10041
|
Pagination_Organization_:
|
|
10014
10042
|
properties:
|
|
10015
10043
|
pagination:
|
|
@@ -10024,34 +10052,6 @@ components:
|
|
|
10024
10052
|
- pagination
|
|
10025
10053
|
title: Pagination[Organization]
|
|
10026
10054
|
type: object
|
|
10027
|
-
Pagination_ParkingResponse_:
|
|
10028
|
-
properties:
|
|
10029
|
-
pagination:
|
|
10030
|
-
$ref: '#/components/schemas/PaginationMetadata'
|
|
10031
|
-
results:
|
|
10032
|
-
items:
|
|
10033
|
-
$ref: '#/components/schemas/ParkingResponse'
|
|
10034
|
-
title: Results
|
|
10035
|
-
type: array
|
|
10036
|
-
required:
|
|
10037
|
-
- results
|
|
10038
|
-
- pagination
|
|
10039
|
-
title: Pagination[ParkingResponse]
|
|
10040
|
-
type: object
|
|
10041
|
-
Pagination_RequestHistory_:
|
|
10042
|
-
properties:
|
|
10043
|
-
pagination:
|
|
10044
|
-
$ref: '#/components/schemas/PaginationMetadata'
|
|
10045
|
-
results:
|
|
10046
|
-
items:
|
|
10047
|
-
$ref: '#/components/schemas/RequestHistory'
|
|
10048
|
-
title: Results
|
|
10049
|
-
type: array
|
|
10050
|
-
required:
|
|
10051
|
-
- results
|
|
10052
|
-
- pagination
|
|
10053
|
-
title: Pagination[RequestHistory]
|
|
10054
|
-
type: object
|
|
10055
10055
|
Pagination_TagResponse_:
|
|
10056
10056
|
properties:
|
|
10057
10057
|
pagination:
|
|
@@ -13867,7 +13867,7 @@ info:
|
|
|
13867
13867
|
\n\n"
|
|
13868
13868
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13869
13869
|
title: OpusDNS API
|
|
13870
|
-
version: 2026-07-15-
|
|
13870
|
+
version: 2026-07-15-161550
|
|
13871
13871
|
x-logo:
|
|
13872
13872
|
altText: OpusDNS API Reference
|
|
13873
13873
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -15153,13 +15153,17 @@ paths:
|
|
|
15153
15153
|
type: string
|
|
15154
15154
|
x-typeid-prefix: email_forward
|
|
15155
15155
|
- in: query
|
|
15156
|
-
name:
|
|
15156
|
+
name: sort_by
|
|
15157
15157
|
required: false
|
|
15158
15158
|
schema:
|
|
15159
|
-
|
|
15160
|
-
|
|
15161
|
-
|
|
15162
|
-
|
|
15159
|
+
$ref: '#/components/schemas/EmailForwardLogSortField'
|
|
15160
|
+
default: created_on
|
|
15161
|
+
- in: query
|
|
15162
|
+
name: sort_order
|
|
15163
|
+
required: false
|
|
15164
|
+
schema:
|
|
15165
|
+
$ref: '#/components/schemas/SortOrder'
|
|
15166
|
+
default: desc
|
|
15163
15167
|
- in: query
|
|
15164
15168
|
name: page_size
|
|
15165
15169
|
required: false
|
|
@@ -15170,17 +15174,13 @@ paths:
|
|
|
15170
15174
|
title: Page Size
|
|
15171
15175
|
type: integer
|
|
15172
15176
|
- in: query
|
|
15173
|
-
name:
|
|
15174
|
-
required: false
|
|
15175
|
-
schema:
|
|
15176
|
-
$ref: '#/components/schemas/EmailForwardLogSortField'
|
|
15177
|
-
default: created_on
|
|
15178
|
-
- in: query
|
|
15179
|
-
name: sort_order
|
|
15177
|
+
name: page
|
|
15180
15178
|
required: false
|
|
15181
15179
|
schema:
|
|
15182
|
-
|
|
15183
|
-
|
|
15180
|
+
default: 1
|
|
15181
|
+
minimum: 1
|
|
15182
|
+
title: Page
|
|
15183
|
+
type: integer
|
|
15184
15184
|
- in: query
|
|
15185
15185
|
name: final_status
|
|
15186
15186
|
required: false
|
|
@@ -15212,7 +15212,7 @@ paths:
|
|
|
15212
15212
|
content:
|
|
15213
15213
|
application/json:
|
|
15214
15214
|
schema:
|
|
15215
|
-
$ref: '#/components/schemas/
|
|
15215
|
+
$ref: '#/components/schemas/PageResponse_EmailForwardLog_'
|
|
15216
15216
|
description: Successful Response
|
|
15217
15217
|
'422':
|
|
15218
15218
|
content:
|
|
@@ -15246,13 +15246,17 @@ paths:
|
|
|
15246
15246
|
type: string
|
|
15247
15247
|
x-typeid-prefix: email_forward
|
|
15248
15248
|
- in: query
|
|
15249
|
-
name:
|
|
15249
|
+
name: sort_by
|
|
15250
15250
|
required: false
|
|
15251
15251
|
schema:
|
|
15252
|
-
|
|
15253
|
-
|
|
15254
|
-
|
|
15255
|
-
|
|
15252
|
+
$ref: '#/components/schemas/EmailForwardLogSortField'
|
|
15253
|
+
default: created_on
|
|
15254
|
+
- in: query
|
|
15255
|
+
name: sort_order
|
|
15256
|
+
required: false
|
|
15257
|
+
schema:
|
|
15258
|
+
$ref: '#/components/schemas/SortOrder'
|
|
15259
|
+
default: desc
|
|
15256
15260
|
- in: query
|
|
15257
15261
|
name: page_size
|
|
15258
15262
|
required: false
|
|
@@ -15263,17 +15267,13 @@ paths:
|
|
|
15263
15267
|
title: Page Size
|
|
15264
15268
|
type: integer
|
|
15265
15269
|
- in: query
|
|
15266
|
-
name:
|
|
15267
|
-
required: false
|
|
15268
|
-
schema:
|
|
15269
|
-
$ref: '#/components/schemas/EmailForwardLogSortField'
|
|
15270
|
-
default: created_on
|
|
15271
|
-
- in: query
|
|
15272
|
-
name: sort_order
|
|
15270
|
+
name: page
|
|
15273
15271
|
required: false
|
|
15274
15272
|
schema:
|
|
15275
|
-
|
|
15276
|
-
|
|
15273
|
+
default: 1
|
|
15274
|
+
minimum: 1
|
|
15275
|
+
title: Page
|
|
15276
|
+
type: integer
|
|
15277
15277
|
- in: query
|
|
15278
15278
|
name: final_status
|
|
15279
15279
|
required: false
|
|
@@ -15305,7 +15305,7 @@ paths:
|
|
|
15305
15305
|
content:
|
|
15306
15306
|
application/json:
|
|
15307
15307
|
schema:
|
|
15308
|
-
$ref: '#/components/schemas/
|
|
15308
|
+
$ref: '#/components/schemas/PageResponse_EmailForwardLog_'
|
|
15309
15309
|
description: Successful Response
|
|
15310
15310
|
'422':
|
|
15311
15311
|
content:
|
|
@@ -15327,13 +15327,17 @@ paths:
|
|
|
15327
15327
|
operationId: get_object_logs_v1_archive_object_logs_get
|
|
15328
15328
|
parameters:
|
|
15329
15329
|
- in: query
|
|
15330
|
-
name:
|
|
15330
|
+
name: sort_by
|
|
15331
15331
|
required: false
|
|
15332
15332
|
schema:
|
|
15333
|
-
|
|
15334
|
-
|
|
15335
|
-
|
|
15336
|
-
|
|
15333
|
+
$ref: '#/components/schemas/ObjectLogSortField'
|
|
15334
|
+
default: created_on
|
|
15335
|
+
- in: query
|
|
15336
|
+
name: sort_order
|
|
15337
|
+
required: false
|
|
15338
|
+
schema:
|
|
15339
|
+
$ref: '#/components/schemas/SortOrder'
|
|
15340
|
+
default: desc
|
|
15337
15341
|
- in: query
|
|
15338
15342
|
name: page_size
|
|
15339
15343
|
required: false
|
|
@@ -15344,17 +15348,13 @@ paths:
|
|
|
15344
15348
|
title: Page Size
|
|
15345
15349
|
type: integer
|
|
15346
15350
|
- in: query
|
|
15347
|
-
name:
|
|
15348
|
-
required: false
|
|
15349
|
-
schema:
|
|
15350
|
-
$ref: '#/components/schemas/ObjectLogSortField'
|
|
15351
|
-
default: created_on
|
|
15352
|
-
- in: query
|
|
15353
|
-
name: sort_order
|
|
15351
|
+
name: page
|
|
15354
15352
|
required: false
|
|
15355
15353
|
schema:
|
|
15356
|
-
|
|
15357
|
-
|
|
15354
|
+
default: 1
|
|
15355
|
+
minimum: 1
|
|
15356
|
+
title: Page
|
|
15357
|
+
type: integer
|
|
15358
15358
|
- in: query
|
|
15359
15359
|
name: object_log_id
|
|
15360
15360
|
required: false
|
|
@@ -15434,7 +15434,7 @@ paths:
|
|
|
15434
15434
|
content:
|
|
15435
15435
|
application/json:
|
|
15436
15436
|
schema:
|
|
15437
|
-
$ref: '#/components/schemas/
|
|
15437
|
+
$ref: '#/components/schemas/PageResponse_ObjectLog_'
|
|
15438
15438
|
description: Successful Response
|
|
15439
15439
|
'422':
|
|
15440
15440
|
content:
|
|
@@ -15463,13 +15463,17 @@ paths:
|
|
|
15463
15463
|
title: Object Id
|
|
15464
15464
|
type: string
|
|
15465
15465
|
- in: query
|
|
15466
|
-
name:
|
|
15466
|
+
name: sort_by
|
|
15467
15467
|
required: false
|
|
15468
15468
|
schema:
|
|
15469
|
-
|
|
15470
|
-
|
|
15471
|
-
|
|
15472
|
-
|
|
15469
|
+
$ref: '#/components/schemas/ObjectLogSortField'
|
|
15470
|
+
default: created_on
|
|
15471
|
+
- in: query
|
|
15472
|
+
name: sort_order
|
|
15473
|
+
required: false
|
|
15474
|
+
schema:
|
|
15475
|
+
$ref: '#/components/schemas/SortOrder'
|
|
15476
|
+
default: desc
|
|
15473
15477
|
- in: query
|
|
15474
15478
|
name: page_size
|
|
15475
15479
|
required: false
|
|
@@ -15480,17 +15484,13 @@ paths:
|
|
|
15480
15484
|
title: Page Size
|
|
15481
15485
|
type: integer
|
|
15482
15486
|
- in: query
|
|
15483
|
-
name:
|
|
15484
|
-
required: false
|
|
15485
|
-
schema:
|
|
15486
|
-
$ref: '#/components/schemas/ObjectLogSortField'
|
|
15487
|
-
default: created_on
|
|
15488
|
-
- in: query
|
|
15489
|
-
name: sort_order
|
|
15487
|
+
name: page
|
|
15490
15488
|
required: false
|
|
15491
15489
|
schema:
|
|
15492
|
-
|
|
15493
|
-
|
|
15490
|
+
default: 1
|
|
15491
|
+
minimum: 1
|
|
15492
|
+
title: Page
|
|
15493
|
+
type: integer
|
|
15494
15494
|
- in: query
|
|
15495
15495
|
name: object_log_id
|
|
15496
15496
|
required: false
|
|
@@ -15562,7 +15562,7 @@ paths:
|
|
|
15562
15562
|
content:
|
|
15563
15563
|
application/json:
|
|
15564
15564
|
schema:
|
|
15565
|
-
$ref: '#/components/schemas/
|
|
15565
|
+
$ref: '#/components/schemas/PageResponse_ObjectLog_'
|
|
15566
15566
|
description: Successful Response
|
|
15567
15567
|
'422':
|
|
15568
15568
|
content:
|
|
@@ -15584,13 +15584,17 @@ paths:
|
|
|
15584
15584
|
operationId: get_request_history_v1_archive_request_history_get
|
|
15585
15585
|
parameters:
|
|
15586
15586
|
- in: query
|
|
15587
|
-
name:
|
|
15587
|
+
name: sort_by
|
|
15588
15588
|
required: false
|
|
15589
15589
|
schema:
|
|
15590
|
-
|
|
15591
|
-
|
|
15592
|
-
|
|
15593
|
-
|
|
15590
|
+
$ref: '#/components/schemas/RequestHistorySortField'
|
|
15591
|
+
default: created_on
|
|
15592
|
+
- in: query
|
|
15593
|
+
name: sort_order
|
|
15594
|
+
required: false
|
|
15595
|
+
schema:
|
|
15596
|
+
$ref: '#/components/schemas/SortOrder'
|
|
15597
|
+
default: desc
|
|
15594
15598
|
- in: query
|
|
15595
15599
|
name: page_size
|
|
15596
15600
|
required: false
|
|
@@ -15601,17 +15605,13 @@ paths:
|
|
|
15601
15605
|
title: Page Size
|
|
15602
15606
|
type: integer
|
|
15603
15607
|
- in: query
|
|
15604
|
-
name:
|
|
15605
|
-
required: false
|
|
15606
|
-
schema:
|
|
15607
|
-
$ref: '#/components/schemas/RequestHistorySortField'
|
|
15608
|
-
default: created_on
|
|
15609
|
-
- in: query
|
|
15610
|
-
name: sort_order
|
|
15608
|
+
name: page
|
|
15611
15609
|
required: false
|
|
15612
15610
|
schema:
|
|
15613
|
-
|
|
15614
|
-
|
|
15611
|
+
default: 1
|
|
15612
|
+
minimum: 1
|
|
15613
|
+
title: Page
|
|
15614
|
+
type: integer
|
|
15615
15615
|
- in: query
|
|
15616
15616
|
name: method
|
|
15617
15617
|
required: false
|
|
@@ -15724,7 +15724,7 @@ paths:
|
|
|
15724
15724
|
content:
|
|
15725
15725
|
application/json:
|
|
15726
15726
|
schema:
|
|
15727
|
-
$ref: '#/components/schemas/
|
|
15727
|
+
$ref: '#/components/schemas/PageResponse_RequestHistory_'
|
|
15728
15728
|
description: Successful Response
|
|
15729
15729
|
'422':
|
|
15730
15730
|
content:
|
|
@@ -24686,20 +24686,24 @@ paths:
|
|
|
24686
24686
|
$ref: '#/components/schemas/SortOrder'
|
|
24687
24687
|
default: desc
|
|
24688
24688
|
description: Sort order
|
|
24689
|
-
-
|
|
24689
|
+
- description: Page number (1-indexed)
|
|
24690
|
+
in: query
|
|
24690
24691
|
name: page
|
|
24691
24692
|
required: false
|
|
24692
24693
|
schema:
|
|
24693
24694
|
default: 1
|
|
24695
|
+
description: Page number (1-indexed)
|
|
24694
24696
|
minimum: 1
|
|
24695
24697
|
title: Page
|
|
24696
24698
|
type: integer
|
|
24697
|
-
-
|
|
24699
|
+
- description: Number of batches per page
|
|
24700
|
+
in: query
|
|
24698
24701
|
name: page_size
|
|
24699
24702
|
required: false
|
|
24700
24703
|
schema:
|
|
24701
|
-
default:
|
|
24702
|
-
|
|
24704
|
+
default: 50
|
|
24705
|
+
description: Number of batches per page
|
|
24706
|
+
maximum: 100
|
|
24703
24707
|
minimum: 1
|
|
24704
24708
|
title: Page Size
|
|
24705
24709
|
type: integer
|
|
@@ -24708,7 +24712,7 @@ paths:
|
|
|
24708
24712
|
content:
|
|
24709
24713
|
application/json:
|
|
24710
24714
|
schema:
|
|
24711
|
-
$ref: '#/components/schemas/
|
|
24715
|
+
$ref: '#/components/schemas/PageResponse_JobBatchMetadataResponse_'
|
|
24712
24716
|
description: Successful Response
|
|
24713
24717
|
'422':
|
|
24714
24718
|
content:
|
|
@@ -25438,19 +25442,23 @@ paths:
|
|
|
25438
25442
|
- type: 'null'
|
|
25439
25443
|
description: Sort order
|
|
25440
25444
|
title: Sort Order
|
|
25441
|
-
-
|
|
25445
|
+
- description: Page number (1-indexed)
|
|
25446
|
+
in: query
|
|
25442
25447
|
name: page
|
|
25443
25448
|
required: false
|
|
25444
25449
|
schema:
|
|
25445
25450
|
default: 1
|
|
25451
|
+
description: Page number (1-indexed)
|
|
25446
25452
|
minimum: 1
|
|
25447
25453
|
title: Page
|
|
25448
25454
|
type: integer
|
|
25449
|
-
-
|
|
25455
|
+
- description: Number of jobs per page
|
|
25456
|
+
in: query
|
|
25450
25457
|
name: page_size
|
|
25451
25458
|
required: false
|
|
25452
25459
|
schema:
|
|
25453
|
-
default:
|
|
25460
|
+
default: 100
|
|
25461
|
+
description: Number of jobs per page
|
|
25454
25462
|
maximum: 1000
|
|
25455
25463
|
minimum: 1
|
|
25456
25464
|
title: Page Size
|
|
@@ -25632,7 +25640,7 @@ paths:
|
|
|
25632
25640
|
resource_key: example.net
|
|
25633
25641
|
status: queued
|
|
25634
25642
|
schema:
|
|
25635
|
-
$ref: '#/components/schemas/
|
|
25643
|
+
$ref: '#/components/schemas/PageResponse_JobResponse_'
|
|
25636
25644
|
description: Batch jobs retrieved successfully
|
|
25637
25645
|
'404':
|
|
25638
25646
|
content:
|
|
@@ -27604,19 +27612,23 @@ paths:
|
|
|
27604
27612
|
description: Retrieves a paginated list of parking entries for the organization
|
|
27605
27613
|
operationId: list_parking_v1_parking_get
|
|
27606
27614
|
parameters:
|
|
27607
|
-
-
|
|
27615
|
+
- description: Page number
|
|
27616
|
+
in: query
|
|
27608
27617
|
name: page
|
|
27609
27618
|
required: false
|
|
27610
27619
|
schema:
|
|
27611
27620
|
default: 1
|
|
27621
|
+
description: Page number
|
|
27612
27622
|
minimum: 1
|
|
27613
27623
|
title: Page
|
|
27614
27624
|
type: integer
|
|
27615
|
-
-
|
|
27625
|
+
- description: Page size
|
|
27626
|
+
in: query
|
|
27616
27627
|
name: page_size
|
|
27617
27628
|
required: false
|
|
27618
27629
|
schema:
|
|
27619
27630
|
default: 10
|
|
27631
|
+
description: Page size
|
|
27620
27632
|
maximum: 1000
|
|
27621
27633
|
minimum: 1
|
|
27622
27634
|
title: Page Size
|
|
@@ -27662,7 +27674,7 @@ paths:
|
|
|
27662
27674
|
content:
|
|
27663
27675
|
application/json:
|
|
27664
27676
|
schema:
|
|
27665
|
-
$ref: '#/components/schemas/
|
|
27677
|
+
$ref: '#/components/schemas/PageResponse_ParkingResponse_'
|
|
27666
27678
|
description: Successful Response
|
|
27667
27679
|
'401':
|
|
27668
27680
|
content:
|
package/src/schema.d.ts
CHANGED
|
@@ -9191,6 +9191,42 @@ export interface components {
|
|
|
9191
9191
|
/** Users */
|
|
9192
9192
|
users?: components["schemas"]["User"][];
|
|
9193
9193
|
};
|
|
9194
|
+
/** PageResponse[EmailForwardLog] */
|
|
9195
|
+
PageResponse_EmailForwardLog_: {
|
|
9196
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
9197
|
+
/** Results */
|
|
9198
|
+
results: components["schemas"]["EmailForwardLog"][];
|
|
9199
|
+
};
|
|
9200
|
+
/** PageResponse[JobBatchMetadataResponse] */
|
|
9201
|
+
PageResponse_JobBatchMetadataResponse_: {
|
|
9202
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
9203
|
+
/** Results */
|
|
9204
|
+
results: components["schemas"]["JobBatchMetadataResponse"][];
|
|
9205
|
+
};
|
|
9206
|
+
/** PageResponse[JobResponse] */
|
|
9207
|
+
PageResponse_JobResponse_: {
|
|
9208
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
9209
|
+
/** Results */
|
|
9210
|
+
results: components["schemas"]["JobResponse"][];
|
|
9211
|
+
};
|
|
9212
|
+
/** PageResponse[ObjectLog] */
|
|
9213
|
+
PageResponse_ObjectLog_: {
|
|
9214
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
9215
|
+
/** Results */
|
|
9216
|
+
results: components["schemas"]["ObjectLog"][];
|
|
9217
|
+
};
|
|
9218
|
+
/** PageResponse[ParkingResponse] */
|
|
9219
|
+
PageResponse_ParkingResponse_: {
|
|
9220
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
9221
|
+
/** Results */
|
|
9222
|
+
results: components["schemas"]["ParkingResponse"][];
|
|
9223
|
+
};
|
|
9224
|
+
/** PageResponse[RequestHistory] */
|
|
9225
|
+
PageResponse_RequestHistory_: {
|
|
9226
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
9227
|
+
/** Results */
|
|
9228
|
+
results: components["schemas"]["RequestHistory"][];
|
|
9229
|
+
};
|
|
9194
9230
|
/** PaginationMetadata */
|
|
9195
9231
|
PaginationMetadata: {
|
|
9196
9232
|
/** Current Page */
|
|
@@ -9281,12 +9317,6 @@ export interface components {
|
|
|
9281
9317
|
/** Results */
|
|
9282
9318
|
results: components["schemas"]["DomainResponse"][];
|
|
9283
9319
|
};
|
|
9284
|
-
/** Pagination[EmailForwardLog] */
|
|
9285
|
-
Pagination_EmailForwardLog_: {
|
|
9286
|
-
pagination: components["schemas"]["PaginationMetadata"];
|
|
9287
|
-
/** Results */
|
|
9288
|
-
results: components["schemas"]["EmailForwardLog"][];
|
|
9289
|
-
};
|
|
9290
9320
|
/** Pagination[EmailForwardResponse] */
|
|
9291
9321
|
Pagination_EmailForwardResponse_: {
|
|
9292
9322
|
pagination: components["schemas"]["PaginationMetadata"];
|
|
@@ -9311,42 +9341,12 @@ export interface components {
|
|
|
9311
9341
|
/** Results */
|
|
9312
9342
|
results: components["schemas"]["InvoiceResponse"][];
|
|
9313
9343
|
};
|
|
9314
|
-
/** Pagination[JobBatchMetadataResponse] */
|
|
9315
|
-
Pagination_JobBatchMetadataResponse_: {
|
|
9316
|
-
pagination: components["schemas"]["PaginationMetadata"];
|
|
9317
|
-
/** Results */
|
|
9318
|
-
results: components["schemas"]["JobBatchMetadataResponse"][];
|
|
9319
|
-
};
|
|
9320
|
-
/** Pagination[JobResponse] */
|
|
9321
|
-
Pagination_JobResponse_: {
|
|
9322
|
-
pagination: components["schemas"]["PaginationMetadata"];
|
|
9323
|
-
/** Results */
|
|
9324
|
-
results: components["schemas"]["JobResponse"][];
|
|
9325
|
-
};
|
|
9326
|
-
/** Pagination[ObjectLog] */
|
|
9327
|
-
Pagination_ObjectLog_: {
|
|
9328
|
-
pagination: components["schemas"]["PaginationMetadata"];
|
|
9329
|
-
/** Results */
|
|
9330
|
-
results: components["schemas"]["ObjectLog"][];
|
|
9331
|
-
};
|
|
9332
9344
|
/** Pagination[Organization] */
|
|
9333
9345
|
Pagination_Organization_: {
|
|
9334
9346
|
pagination: components["schemas"]["PaginationMetadata"];
|
|
9335
9347
|
/** Results */
|
|
9336
9348
|
results: components["schemas"]["Organization"][];
|
|
9337
9349
|
};
|
|
9338
|
-
/** Pagination[ParkingResponse] */
|
|
9339
|
-
Pagination_ParkingResponse_: {
|
|
9340
|
-
pagination: components["schemas"]["PaginationMetadata"];
|
|
9341
|
-
/** Results */
|
|
9342
|
-
results: components["schemas"]["ParkingResponse"][];
|
|
9343
|
-
};
|
|
9344
|
-
/** Pagination[RequestHistory] */
|
|
9345
|
-
Pagination_RequestHistory_: {
|
|
9346
|
-
pagination: components["schemas"]["PaginationMetadata"];
|
|
9347
|
-
/** Results */
|
|
9348
|
-
results: components["schemas"]["RequestHistory"][];
|
|
9349
|
-
};
|
|
9350
9350
|
/** Pagination[TagResponse] */
|
|
9351
9351
|
Pagination_TagResponse_: {
|
|
9352
9352
|
pagination: components["schemas"]["PaginationMetadata"];
|
|
@@ -13170,10 +13170,10 @@ export interface operations {
|
|
|
13170
13170
|
parameters: {
|
|
13171
13171
|
query: {
|
|
13172
13172
|
email_forward_id: TypeId<"email_forward">;
|
|
13173
|
-
page?: number;
|
|
13174
|
-
page_size?: number;
|
|
13175
13173
|
sort_by?: components["schemas"]["EmailForwardLogSortField"];
|
|
13176
13174
|
sort_order?: components["schemas"]["SortOrder"];
|
|
13175
|
+
page_size?: number;
|
|
13176
|
+
page?: number;
|
|
13177
13177
|
final_status?: components["schemas"]["EmailForwardLogStatus"] | null;
|
|
13178
13178
|
start_time?: Date | null;
|
|
13179
13179
|
end_time?: Date | null;
|
|
@@ -13192,7 +13192,7 @@ export interface operations {
|
|
|
13192
13192
|
[name: string]: unknown;
|
|
13193
13193
|
};
|
|
13194
13194
|
content: {
|
|
13195
|
-
"application/json": components["schemas"]["
|
|
13195
|
+
"application/json": components["schemas"]["PageResponse_EmailForwardLog_"];
|
|
13196
13196
|
};
|
|
13197
13197
|
};
|
|
13198
13198
|
/** @description Validation Error */
|
|
@@ -13209,10 +13209,10 @@ export interface operations {
|
|
|
13209
13209
|
get_email_forward_logs_v1_archive_email_forward_logs__email_forward_id__get: {
|
|
13210
13210
|
parameters: {
|
|
13211
13211
|
query?: {
|
|
13212
|
-
page?: number;
|
|
13213
|
-
page_size?: number;
|
|
13214
13212
|
sort_by?: components["schemas"]["EmailForwardLogSortField"];
|
|
13215
13213
|
sort_order?: components["schemas"]["SortOrder"];
|
|
13214
|
+
page_size?: number;
|
|
13215
|
+
page?: number;
|
|
13216
13216
|
final_status?: components["schemas"]["EmailForwardLogStatus"] | null;
|
|
13217
13217
|
start_time?: Date | null;
|
|
13218
13218
|
end_time?: Date | null;
|
|
@@ -13231,7 +13231,7 @@ export interface operations {
|
|
|
13231
13231
|
[name: string]: unknown;
|
|
13232
13232
|
};
|
|
13233
13233
|
content: {
|
|
13234
|
-
"application/json": components["schemas"]["
|
|
13234
|
+
"application/json": components["schemas"]["PageResponse_EmailForwardLog_"];
|
|
13235
13235
|
};
|
|
13236
13236
|
};
|
|
13237
13237
|
/** @description Validation Error */
|
|
@@ -13248,10 +13248,10 @@ export interface operations {
|
|
|
13248
13248
|
get_object_logs_v1_archive_object_logs_get: {
|
|
13249
13249
|
parameters: {
|
|
13250
13250
|
query?: {
|
|
13251
|
-
page?: number;
|
|
13252
|
-
page_size?: number;
|
|
13253
13251
|
sort_by?: components["schemas"]["ObjectLogSortField"];
|
|
13254
13252
|
sort_order?: components["schemas"]["SortOrder"];
|
|
13253
|
+
page_size?: number;
|
|
13254
|
+
page?: number;
|
|
13255
13255
|
object_log_id?: string | null;
|
|
13256
13256
|
object_type?: string | null;
|
|
13257
13257
|
action?: components["schemas"]["ObjectEventType"] | null;
|
|
@@ -13274,7 +13274,7 @@ export interface operations {
|
|
|
13274
13274
|
[name: string]: unknown;
|
|
13275
13275
|
};
|
|
13276
13276
|
content: {
|
|
13277
|
-
"application/json": components["schemas"]["
|
|
13277
|
+
"application/json": components["schemas"]["PageResponse_ObjectLog_"];
|
|
13278
13278
|
};
|
|
13279
13279
|
};
|
|
13280
13280
|
/** @description Validation Error */
|
|
@@ -13291,10 +13291,10 @@ export interface operations {
|
|
|
13291
13291
|
get_object_logs_by_object_id_v1_archive_object_logs__object_id__get: {
|
|
13292
13292
|
parameters: {
|
|
13293
13293
|
query?: {
|
|
13294
|
-
page?: number;
|
|
13295
|
-
page_size?: number;
|
|
13296
13294
|
sort_by?: components["schemas"]["ObjectLogSortField"];
|
|
13297
13295
|
sort_order?: components["schemas"]["SortOrder"];
|
|
13296
|
+
page_size?: number;
|
|
13297
|
+
page?: number;
|
|
13298
13298
|
object_log_id?: string | null;
|
|
13299
13299
|
object_type?: string | null;
|
|
13300
13300
|
action?: components["schemas"]["ObjectEventType"] | null;
|
|
@@ -13318,7 +13318,7 @@ export interface operations {
|
|
|
13318
13318
|
[name: string]: unknown;
|
|
13319
13319
|
};
|
|
13320
13320
|
content: {
|
|
13321
|
-
"application/json": components["schemas"]["
|
|
13321
|
+
"application/json": components["schemas"]["PageResponse_ObjectLog_"];
|
|
13322
13322
|
};
|
|
13323
13323
|
};
|
|
13324
13324
|
/** @description Validation Error */
|
|
@@ -13335,10 +13335,10 @@ export interface operations {
|
|
|
13335
13335
|
get_request_history_v1_archive_request_history_get: {
|
|
13336
13336
|
parameters: {
|
|
13337
13337
|
query?: {
|
|
13338
|
-
page?: number;
|
|
13339
|
-
page_size?: number;
|
|
13340
13338
|
sort_by?: components["schemas"]["RequestHistorySortField"];
|
|
13341
13339
|
sort_order?: components["schemas"]["SortOrder"];
|
|
13340
|
+
page_size?: number;
|
|
13341
|
+
page?: number;
|
|
13342
13342
|
method?: components["schemas"]["HTTPMethod"] | null;
|
|
13343
13343
|
path?: string | null;
|
|
13344
13344
|
status_code?: number | null;
|
|
@@ -13365,7 +13365,7 @@ export interface operations {
|
|
|
13365
13365
|
[name: string]: unknown;
|
|
13366
13366
|
};
|
|
13367
13367
|
content: {
|
|
13368
|
-
"application/json": components["schemas"]["
|
|
13368
|
+
"application/json": components["schemas"]["PageResponse_RequestHistory_"];
|
|
13369
13369
|
};
|
|
13370
13370
|
};
|
|
13371
13371
|
/** @description Validation Error */
|
|
@@ -19999,7 +19999,9 @@ export interface operations {
|
|
|
19999
19999
|
sort_by?: components["schemas"]["BatchSortField"];
|
|
20000
20000
|
/** @description Sort order */
|
|
20001
20001
|
sort_order?: components["schemas"]["SortOrder"];
|
|
20002
|
+
/** @description Page number (1-indexed) */
|
|
20002
20003
|
page?: number;
|
|
20004
|
+
/** @description Number of batches per page */
|
|
20003
20005
|
page_size?: number;
|
|
20004
20006
|
};
|
|
20005
20007
|
header?: never;
|
|
@@ -20014,7 +20016,7 @@ export interface operations {
|
|
|
20014
20016
|
[name: string]: unknown;
|
|
20015
20017
|
};
|
|
20016
20018
|
content: {
|
|
20017
|
-
"application/json": components["schemas"]["
|
|
20019
|
+
"application/json": components["schemas"]["PageResponse_JobBatchMetadataResponse_"];
|
|
20018
20020
|
};
|
|
20019
20021
|
};
|
|
20020
20022
|
/** @description Validation Error */
|
|
@@ -20216,7 +20218,9 @@ export interface operations {
|
|
|
20216
20218
|
sort_by?: components["schemas"]["BatchSortField"] | null;
|
|
20217
20219
|
/** @description Sort order */
|
|
20218
20220
|
sort_order?: components["schemas"]["SortOrder"] | null;
|
|
20221
|
+
/** @description Page number (1-indexed) */
|
|
20219
20222
|
page?: number;
|
|
20223
|
+
/** @description Number of jobs per page */
|
|
20220
20224
|
page_size?: number;
|
|
20221
20225
|
};
|
|
20222
20226
|
header?: never;
|
|
@@ -20234,7 +20238,7 @@ export interface operations {
|
|
|
20234
20238
|
[name: string]: unknown;
|
|
20235
20239
|
};
|
|
20236
20240
|
content: {
|
|
20237
|
-
"application/json": components["schemas"]["
|
|
20241
|
+
"application/json": components["schemas"]["PageResponse_JobResponse_"];
|
|
20238
20242
|
};
|
|
20239
20243
|
};
|
|
20240
20244
|
/** @description Not Found */
|
|
@@ -22129,7 +22133,9 @@ export interface operations {
|
|
|
22129
22133
|
list_parking_v1_parking_get: {
|
|
22130
22134
|
parameters: {
|
|
22131
22135
|
query?: {
|
|
22136
|
+
/** @description Page number */
|
|
22132
22137
|
page?: number;
|
|
22138
|
+
/** @description Page size */
|
|
22133
22139
|
page_size?: number;
|
|
22134
22140
|
sort_by?: components["schemas"]["ParkingSortField"];
|
|
22135
22141
|
sort_order?: components["schemas"]["SortOrder"];
|
|
@@ -22149,7 +22155,7 @@ export interface operations {
|
|
|
22149
22155
|
[name: string]: unknown;
|
|
22150
22156
|
};
|
|
22151
22157
|
content: {
|
|
22152
|
-
"application/json": components["schemas"]["
|
|
22158
|
+
"application/json": components["schemas"]["PageResponse_ParkingResponse_"];
|
|
22153
22159
|
};
|
|
22154
22160
|
};
|
|
22155
22161
|
/** @description Unauthorized */
|