@opusdns/api 1.58.0 → 1.60.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/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"]["Pagination_EmailForwardLog_"];
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"]["Pagination_EmailForwardLog_"];
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"]["Pagination_ObjectLog_"];
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"]["Pagination_ObjectLog_"];
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"]["Pagination_RequestHistory_"];
13368
+ "application/json": components["schemas"]["PageResponse_RequestHistory_"];
13369
13369
  };
13370
13370
  };
13371
13371
  /** @description Validation Error */
@@ -15834,6 +15834,22 @@ export interface operations {
15834
15834
  "application/problem+json": components["schemas"]["HTTPValidationError"];
15835
15835
  };
15836
15836
  };
15837
+ /** @description Service Unavailable */
15838
+ 503: {
15839
+ headers: {
15840
+ [name: string]: unknown;
15841
+ };
15842
+ content: {
15843
+ /** @example {
15844
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
15845
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
15846
+ * "status": 503,
15847
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
15848
+ * "type": "domain-forward-metrics-temporarily-unavailable"
15849
+ * } */
15850
+ "application/problem+json": components["schemas"]["Problem"];
15851
+ };
15852
+ };
15837
15853
  };
15838
15854
  };
15839
15855
  browser_stats_v1_domain_forwards_metrics_browser_get: {
@@ -15916,6 +15932,22 @@ export interface operations {
15916
15932
  "application/problem+json": components["schemas"]["HTTPValidationError"];
15917
15933
  };
15918
15934
  };
15935
+ /** @description Service Unavailable */
15936
+ 503: {
15937
+ headers: {
15938
+ [name: string]: unknown;
15939
+ };
15940
+ content: {
15941
+ /** @example {
15942
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
15943
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
15944
+ * "status": 503,
15945
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
15946
+ * "type": "domain-forward-metrics-temporarily-unavailable"
15947
+ * } */
15948
+ "application/problem+json": components["schemas"]["Problem"];
15949
+ };
15950
+ };
15919
15951
  };
15920
15952
  };
15921
15953
  geo_stats_v1_domain_forwards_metrics_geo_get: {
@@ -15998,6 +16030,22 @@ export interface operations {
15998
16030
  "application/problem+json": components["schemas"]["HTTPValidationError"];
15999
16031
  };
16000
16032
  };
16033
+ /** @description Service Unavailable */
16034
+ 503: {
16035
+ headers: {
16036
+ [name: string]: unknown;
16037
+ };
16038
+ content: {
16039
+ /** @example {
16040
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
16041
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
16042
+ * "status": 503,
16043
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
16044
+ * "type": "domain-forward-metrics-temporarily-unavailable"
16045
+ * } */
16046
+ "application/problem+json": components["schemas"]["Problem"];
16047
+ };
16048
+ };
16001
16049
  };
16002
16050
  };
16003
16051
  platform_stats_v1_domain_forwards_metrics_platform_get: {
@@ -16080,6 +16128,22 @@ export interface operations {
16080
16128
  "application/problem+json": components["schemas"]["HTTPValidationError"];
16081
16129
  };
16082
16130
  };
16131
+ /** @description Service Unavailable */
16132
+ 503: {
16133
+ headers: {
16134
+ [name: string]: unknown;
16135
+ };
16136
+ content: {
16137
+ /** @example {
16138
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
16139
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
16140
+ * "status": 503,
16141
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
16142
+ * "type": "domain-forward-metrics-temporarily-unavailable"
16143
+ * } */
16144
+ "application/problem+json": components["schemas"]["Problem"];
16145
+ };
16146
+ };
16083
16147
  };
16084
16148
  };
16085
16149
  referrer_stats_v1_domain_forwards_metrics_referrer_get: {
@@ -16162,6 +16226,22 @@ export interface operations {
16162
16226
  "application/problem+json": components["schemas"]["HTTPValidationError"];
16163
16227
  };
16164
16228
  };
16229
+ /** @description Service Unavailable */
16230
+ 503: {
16231
+ headers: {
16232
+ [name: string]: unknown;
16233
+ };
16234
+ content: {
16235
+ /** @example {
16236
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
16237
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
16238
+ * "status": 503,
16239
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
16240
+ * "type": "domain-forward-metrics-temporarily-unavailable"
16241
+ * } */
16242
+ "application/problem+json": components["schemas"]["Problem"];
16243
+ };
16244
+ };
16165
16245
  };
16166
16246
  };
16167
16247
  status_code_stats_v1_domain_forwards_metrics_status_code_get: {
@@ -16244,6 +16324,22 @@ export interface operations {
16244
16324
  "application/problem+json": components["schemas"]["HTTPValidationError"];
16245
16325
  };
16246
16326
  };
16327
+ /** @description Service Unavailable */
16328
+ 503: {
16329
+ headers: {
16330
+ [name: string]: unknown;
16331
+ };
16332
+ content: {
16333
+ /** @example {
16334
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
16335
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
16336
+ * "status": 503,
16337
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
16338
+ * "type": "domain-forward-metrics-temporarily-unavailable"
16339
+ * } */
16340
+ "application/problem+json": components["schemas"]["Problem"];
16341
+ };
16342
+ };
16247
16343
  };
16248
16344
  };
16249
16345
  time_series_v1_domain_forwards_metrics_time_series_get: {
@@ -16326,6 +16422,22 @@ export interface operations {
16326
16422
  "application/problem+json": components["schemas"]["HTTPValidationError"];
16327
16423
  };
16328
16424
  };
16425
+ /** @description Service Unavailable */
16426
+ 503: {
16427
+ headers: {
16428
+ [name: string]: unknown;
16429
+ };
16430
+ content: {
16431
+ /** @example {
16432
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
16433
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
16434
+ * "status": 503,
16435
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
16436
+ * "type": "domain-forward-metrics-temporarily-unavailable"
16437
+ * } */
16438
+ "application/problem+json": components["schemas"]["Problem"];
16439
+ };
16440
+ };
16329
16441
  };
16330
16442
  };
16331
16443
  user_agent_stats_v1_domain_forwards_metrics_user_agent_get: {
@@ -16408,6 +16520,22 @@ export interface operations {
16408
16520
  "application/problem+json": components["schemas"]["HTTPValidationError"];
16409
16521
  };
16410
16522
  };
16523
+ /** @description Service Unavailable */
16524
+ 503: {
16525
+ headers: {
16526
+ [name: string]: unknown;
16527
+ };
16528
+ content: {
16529
+ /** @example {
16530
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
16531
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
16532
+ * "status": 503,
16533
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
16534
+ * "type": "domain-forward-metrics-temporarily-unavailable"
16535
+ * } */
16536
+ "application/problem+json": components["schemas"]["Problem"];
16537
+ };
16538
+ };
16411
16539
  };
16412
16540
  };
16413
16541
  visits_by_key_v1_domain_forwards_metrics_visits_by_key_get: {
@@ -16492,6 +16620,22 @@ export interface operations {
16492
16620
  "application/problem+json": components["schemas"]["HTTPValidationError"];
16493
16621
  };
16494
16622
  };
16623
+ /** @description Service Unavailable */
16624
+ 503: {
16625
+ headers: {
16626
+ [name: string]: unknown;
16627
+ };
16628
+ content: {
16629
+ /** @example {
16630
+ * "code": "ERROR_DOMAIN_FORWARD_METRICS_TEMPORARILY_UNAVAILABLE",
16631
+ * "detail": "Domain forward metrics are currently unavailable. Please try again later.",
16632
+ * "status": 503,
16633
+ * "title": "Domain Forward Metrics Temporarily Unavailable",
16634
+ * "type": "domain-forward-metrics-temporarily-unavailable"
16635
+ * } */
16636
+ "application/problem+json": components["schemas"]["Problem"];
16637
+ };
16638
+ };
16495
16639
  };
16496
16640
  };
16497
16641
  get_domain_forward_v1_domain_forwards__hostname__get: {
@@ -19999,7 +20143,9 @@ export interface operations {
19999
20143
  sort_by?: components["schemas"]["BatchSortField"];
20000
20144
  /** @description Sort order */
20001
20145
  sort_order?: components["schemas"]["SortOrder"];
20146
+ /** @description Page number (1-indexed) */
20002
20147
  page?: number;
20148
+ /** @description Number of batches per page */
20003
20149
  page_size?: number;
20004
20150
  };
20005
20151
  header?: never;
@@ -20014,7 +20160,7 @@ export interface operations {
20014
20160
  [name: string]: unknown;
20015
20161
  };
20016
20162
  content: {
20017
- "application/json": components["schemas"]["Pagination_JobBatchMetadataResponse_"];
20163
+ "application/json": components["schemas"]["PageResponse_JobBatchMetadataResponse_"];
20018
20164
  };
20019
20165
  };
20020
20166
  /** @description Validation Error */
@@ -20216,7 +20362,9 @@ export interface operations {
20216
20362
  sort_by?: components["schemas"]["BatchSortField"] | null;
20217
20363
  /** @description Sort order */
20218
20364
  sort_order?: components["schemas"]["SortOrder"] | null;
20365
+ /** @description Page number (1-indexed) */
20219
20366
  page?: number;
20367
+ /** @description Number of jobs per page */
20220
20368
  page_size?: number;
20221
20369
  };
20222
20370
  header?: never;
@@ -20234,7 +20382,7 @@ export interface operations {
20234
20382
  [name: string]: unknown;
20235
20383
  };
20236
20384
  content: {
20237
- "application/json": components["schemas"]["Pagination_JobResponse_"];
20385
+ "application/json": components["schemas"]["PageResponse_JobResponse_"];
20238
20386
  };
20239
20387
  };
20240
20388
  /** @description Not Found */
@@ -22129,7 +22277,9 @@ export interface operations {
22129
22277
  list_parking_v1_parking_get: {
22130
22278
  parameters: {
22131
22279
  query?: {
22280
+ /** @description Page number */
22132
22281
  page?: number;
22282
+ /** @description Page size */
22133
22283
  page_size?: number;
22134
22284
  sort_by?: components["schemas"]["ParkingSortField"];
22135
22285
  sort_order?: components["schemas"]["SortOrder"];
@@ -22149,7 +22299,7 @@ export interface operations {
22149
22299
  [name: string]: unknown;
22150
22300
  };
22151
22301
  content: {
22152
- "application/json": components["schemas"]["Pagination_ParkingResponse_"];
22302
+ "application/json": components["schemas"]["PageResponse_ParkingResponse_"];
22153
22303
  };
22154
22304
  };
22155
22305
  /** @description Unauthorized */