@gojinko/api-client 2.25.0 → 2.26.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/dist/types/generated.d.ts +37 -0
- package/dist/types/generated.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.yaml +143 -92
package/public-api.yaml
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# synced from jinko-api@
|
|
1
|
+
# synced from jinko-api@558277d11f0dc4707c3e6bf121a97ddf60b12a77 (558277d1)
|
|
2
2
|
# Vendored copy of the canonical public contract. Do not hand-edit: change it in
|
|
3
3
|
# jinko-api, then `pnpm sync:api-spec <ref>` here, which also runs `pnpm generate:api-types`.
|
|
4
4
|
openapi: 3.0.0
|
|
5
5
|
info:
|
|
6
6
|
title: Jinko Public API
|
|
7
|
-
version: 0.
|
|
7
|
+
version: 0.11.0
|
|
8
8
|
description: >-
|
|
9
9
|
Curated public REST surface for Jinko. Authenticated with jnk_ API keys. See
|
|
10
10
|
https://docs.gojinko.com for guides.
|
|
@@ -458,6 +458,26 @@ components:
|
|
|
458
458
|
direct_only:
|
|
459
459
|
type: boolean
|
|
460
460
|
example: false
|
|
461
|
+
include_carriers:
|
|
462
|
+
type: array
|
|
463
|
+
items:
|
|
464
|
+
type: string
|
|
465
|
+
pattern: ^[A-Za-z0-9]{2,3}$
|
|
466
|
+
description: Keep only itineraries whose VALIDATING (ticketing) carrier is in
|
|
467
|
+
this list — the only carrier field the flight cache carries, unlike
|
|
468
|
+
the marketing-carrier match on flight_search. 2-3 character
|
|
469
|
+
IATA/ICAO codes. Must not overlap `exclude_carriers`.
|
|
470
|
+
example: &a8
|
|
471
|
+
- UA
|
|
472
|
+
exclude_carriers:
|
|
473
|
+
type: array
|
|
474
|
+
items:
|
|
475
|
+
type: string
|
|
476
|
+
pattern: ^[A-Za-z0-9]{2,3}$
|
|
477
|
+
description: Drop itineraries whose VALIDATING (ticketing) carrier is in this
|
|
478
|
+
list. Same semantics as `include_carriers`; must not overlap it.
|
|
479
|
+
example: &a9
|
|
480
|
+
- NK
|
|
461
481
|
adults:
|
|
462
482
|
type: integer
|
|
463
483
|
minimum: 0
|
|
@@ -508,7 +528,7 @@ components:
|
|
|
508
528
|
default: 0
|
|
509
529
|
sort_by:
|
|
510
530
|
type: string
|
|
511
|
-
enum: &
|
|
531
|
+
enum: &a10
|
|
512
532
|
- lowest
|
|
513
533
|
- recommendation
|
|
514
534
|
default: lowest
|
|
@@ -545,6 +565,19 @@ components:
|
|
|
545
565
|
next_page_token:
|
|
546
566
|
type: string
|
|
547
567
|
example: eyJvZmZzZXQiOjIwfQ==
|
|
568
|
+
available_airlines:
|
|
569
|
+
type: array
|
|
570
|
+
items:
|
|
571
|
+
type: string
|
|
572
|
+
description: VALIDATING (ticketing) carrier codes present across the WHOLE
|
|
573
|
+
cached match set — not just this page — ordered by itinerary count
|
|
574
|
+
descending. Lets a caller discover which airlines are available
|
|
575
|
+
(e.g. to retry with `include_carriers`) without paging through every
|
|
576
|
+
result. Absent when the platform reports no facet data.
|
|
577
|
+
example:
|
|
578
|
+
- UA
|
|
579
|
+
- DL
|
|
580
|
+
- AA
|
|
548
581
|
required:
|
|
549
582
|
- itineraries
|
|
550
583
|
FlightDiscoveryRequest:
|
|
@@ -615,6 +648,24 @@ components:
|
|
|
615
648
|
direct_only:
|
|
616
649
|
type: boolean
|
|
617
650
|
example: false
|
|
651
|
+
include_carriers:
|
|
652
|
+
type: array
|
|
653
|
+
items:
|
|
654
|
+
type: string
|
|
655
|
+
pattern: ^[A-Za-z0-9]{2,3}$
|
|
656
|
+
description: Keep only itineraries whose VALIDATING (ticketing) carrier is in
|
|
657
|
+
this list — the only carrier field the flight cache carries, unlike
|
|
658
|
+
the marketing-carrier match on flight_search. 2-3 character
|
|
659
|
+
IATA/ICAO codes. Must not overlap `exclude_carriers`.
|
|
660
|
+
example: *a8
|
|
661
|
+
exclude_carriers:
|
|
662
|
+
type: array
|
|
663
|
+
items:
|
|
664
|
+
type: string
|
|
665
|
+
pattern: ^[A-Za-z0-9]{2,3}$
|
|
666
|
+
description: Drop itineraries whose VALIDATING (ticketing) carrier is in this
|
|
667
|
+
list. Same semantics as `include_carriers`; must not overlap it.
|
|
668
|
+
example: *a9
|
|
618
669
|
adults:
|
|
619
670
|
type: integer
|
|
620
671
|
minimum: 0
|
|
@@ -665,7 +716,7 @@ components:
|
|
|
665
716
|
default: 0
|
|
666
717
|
sort_by:
|
|
667
718
|
type: string
|
|
668
|
-
enum: *
|
|
719
|
+
enum: *a10
|
|
669
720
|
default: lowest
|
|
670
721
|
intent:
|
|
671
722
|
$ref: "#/components/schemas/IntentInput"
|
|
@@ -1507,12 +1558,12 @@ components:
|
|
|
1507
1558
|
pattern: ^\d{4}-\d{2}-\d{2}$
|
|
1508
1559
|
origin_type:
|
|
1509
1560
|
type: string
|
|
1510
|
-
enum: &
|
|
1561
|
+
enum: &a11
|
|
1511
1562
|
- city
|
|
1512
1563
|
- airport
|
|
1513
1564
|
destination_type:
|
|
1514
1565
|
type: string
|
|
1515
|
-
enum: *
|
|
1566
|
+
enum: *a11
|
|
1516
1567
|
cabin_class:
|
|
1517
1568
|
type: string
|
|
1518
1569
|
enum: *a7
|
|
@@ -1929,7 +1980,7 @@ components:
|
|
|
1929
1980
|
example: trip_1048576
|
|
1930
1981
|
status:
|
|
1931
1982
|
type: string
|
|
1932
|
-
enum: &
|
|
1983
|
+
enum: &a12
|
|
1933
1984
|
- draft
|
|
1934
1985
|
- quoting
|
|
1935
1986
|
- quoted
|
|
@@ -2009,7 +2060,7 @@ components:
|
|
|
2009
2060
|
- message
|
|
2010
2061
|
status:
|
|
2011
2062
|
type: string
|
|
2012
|
-
enum: *
|
|
2063
|
+
enum: *a12
|
|
2013
2064
|
description: The trip state that refused the write. `expired` on TRIP_EXPIRED;
|
|
2014
2065
|
on TRIP_STATE_CONFLICT it is whichever state the trip is actually
|
|
2015
2066
|
in. Nothing was changed, so re-reading the trip returns this same
|
|
@@ -2214,7 +2265,7 @@ components:
|
|
|
2214
2265
|
example: trip_1048576
|
|
2215
2266
|
status:
|
|
2216
2267
|
type: string
|
|
2217
|
-
enum: *
|
|
2268
|
+
enum: *a12
|
|
2218
2269
|
description: "Where the trip is in its lifecycle. `expired` is the 24-hour
|
|
2219
2270
|
lapse: it is evaluated LAZILY, on the read that first observes it,
|
|
2220
2271
|
so this call is where a dead trip becomes visible. Once a trip is
|
|
@@ -3663,7 +3714,7 @@ components:
|
|
|
3663
3714
|
required:
|
|
3664
3715
|
- booking_ref
|
|
3665
3716
|
- last_name
|
|
3666
|
-
example: &
|
|
3717
|
+
example: &a13
|
|
3667
3718
|
booking_ref: JNK-8PT9VS
|
|
3668
3719
|
last_name: Carrard
|
|
3669
3720
|
CarCancelCommitResponse:
|
|
@@ -3768,7 +3819,7 @@ components:
|
|
|
3768
3819
|
required:
|
|
3769
3820
|
- booking_ref
|
|
3770
3821
|
- last_name
|
|
3771
|
-
example: *
|
|
3822
|
+
example: *a13
|
|
3772
3823
|
CarExchangeVehicle:
|
|
3773
3824
|
type: object
|
|
3774
3825
|
properties:
|
|
@@ -4122,7 +4173,7 @@ components:
|
|
|
4122
4173
|
required:
|
|
4123
4174
|
- booking_ref
|
|
4124
4175
|
- last_name
|
|
4125
|
-
example: *
|
|
4176
|
+
example: *a13
|
|
4126
4177
|
DestinationSnapshotRow:
|
|
4127
4178
|
type: object
|
|
4128
4179
|
properties:
|
|
@@ -4448,7 +4499,7 @@ components:
|
|
|
4448
4499
|
required:
|
|
4449
4500
|
- booking_ref
|
|
4450
4501
|
- last_name
|
|
4451
|
-
example: &
|
|
4502
|
+
example: &a14
|
|
4452
4503
|
booking_ref: JNK-A0AUR2
|
|
4453
4504
|
last_name: Carrard
|
|
4454
4505
|
ServicingState:
|
|
@@ -4581,7 +4632,7 @@ components:
|
|
|
4581
4632
|
required:
|
|
4582
4633
|
- booking_ref
|
|
4583
4634
|
- last_name
|
|
4584
|
-
example: *
|
|
4635
|
+
example: *a14
|
|
4585
4636
|
RefundStatusResponse:
|
|
4586
4637
|
type: object
|
|
4587
4638
|
properties:
|
|
@@ -4642,7 +4693,7 @@ components:
|
|
|
4642
4693
|
required:
|
|
4643
4694
|
- booking_ref
|
|
4644
4695
|
- last_name
|
|
4645
|
-
example: *
|
|
4696
|
+
example: *a14
|
|
4646
4697
|
ExchangeOffer:
|
|
4647
4698
|
type: object
|
|
4648
4699
|
properties:
|
|
@@ -4703,7 +4754,7 @@ components:
|
|
|
4703
4754
|
required:
|
|
4704
4755
|
- booking_ref
|
|
4705
4756
|
- last_name
|
|
4706
|
-
example: *
|
|
4757
|
+
example: *a14
|
|
4707
4758
|
ExchangePriceResponse:
|
|
4708
4759
|
type: object
|
|
4709
4760
|
properties:
|
|
@@ -4850,7 +4901,7 @@ components:
|
|
|
4850
4901
|
required:
|
|
4851
4902
|
- booking_ref
|
|
4852
4903
|
- last_name
|
|
4853
|
-
example: *
|
|
4904
|
+
example: *a14
|
|
4854
4905
|
ProviderFigures:
|
|
4855
4906
|
type: object
|
|
4856
4907
|
properties:
|
|
@@ -5619,7 +5670,7 @@ components:
|
|
|
5619
5670
|
example: Carrard
|
|
5620
5671
|
intent:
|
|
5621
5672
|
$ref: "#/components/schemas/IntentInput"
|
|
5622
|
-
example: *
|
|
5673
|
+
example: *a14
|
|
5623
5674
|
FlightRefundCommitResponse:
|
|
5624
5675
|
type: object
|
|
5625
5676
|
properties:
|
|
@@ -6261,7 +6312,7 @@ paths:
|
|
|
6261
6312
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
6262
6313
|
"503":
|
|
6263
6314
|
description: No travel provider can serve the request right now
|
|
6264
|
-
headers: &
|
|
6315
|
+
headers: &a15
|
|
6265
6316
|
Retry-After:
|
|
6266
6317
|
description: Seconds to wait before retrying, forwarded verbatim from the
|
|
6267
6318
|
upstream service. Absent when the upstream named no interval.
|
|
@@ -6402,7 +6453,7 @@ paths:
|
|
|
6402
6453
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
6403
6454
|
"503":
|
|
6404
6455
|
description: No travel provider can serve the request right now
|
|
6405
|
-
headers: *
|
|
6456
|
+
headers: *a15
|
|
6406
6457
|
content:
|
|
6407
6458
|
application/json:
|
|
6408
6459
|
schema:
|
|
@@ -6544,7 +6595,7 @@ paths:
|
|
|
6544
6595
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
6545
6596
|
"503":
|
|
6546
6597
|
description: No travel provider can serve the request right now
|
|
6547
|
-
headers: *
|
|
6598
|
+
headers: *a15
|
|
6548
6599
|
content:
|
|
6549
6600
|
application/json:
|
|
6550
6601
|
schema:
|
|
@@ -6685,7 +6736,7 @@ paths:
|
|
|
6685
6736
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
6686
6737
|
"503":
|
|
6687
6738
|
description: No travel provider can serve the request right now
|
|
6688
|
-
headers: *
|
|
6739
|
+
headers: *a15
|
|
6689
6740
|
content:
|
|
6690
6741
|
application/json:
|
|
6691
6742
|
schema:
|
|
@@ -6825,7 +6876,7 @@ paths:
|
|
|
6825
6876
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
6826
6877
|
"503":
|
|
6827
6878
|
description: No travel provider can serve the request right now
|
|
6828
|
-
headers: *
|
|
6879
|
+
headers: *a15
|
|
6829
6880
|
content:
|
|
6830
6881
|
application/json:
|
|
6831
6882
|
schema:
|
|
@@ -6961,7 +7012,7 @@ paths:
|
|
|
6961
7012
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
6962
7013
|
"503":
|
|
6963
7014
|
description: No travel provider can serve the request right now
|
|
6964
|
-
headers: *
|
|
7015
|
+
headers: *a15
|
|
6965
7016
|
content:
|
|
6966
7017
|
application/json:
|
|
6967
7018
|
schema:
|
|
@@ -7114,7 +7165,7 @@ paths:
|
|
|
7114
7165
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
7115
7166
|
"503":
|
|
7116
7167
|
description: No travel provider can serve the request right now
|
|
7117
|
-
headers: *
|
|
7168
|
+
headers: *a15
|
|
7118
7169
|
content:
|
|
7119
7170
|
application/json:
|
|
7120
7171
|
schema:
|
|
@@ -7252,7 +7303,7 @@ paths:
|
|
|
7252
7303
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
7253
7304
|
"503":
|
|
7254
7305
|
description: No travel provider can serve the request right now
|
|
7255
|
-
headers: *
|
|
7306
|
+
headers: *a15
|
|
7256
7307
|
content:
|
|
7257
7308
|
application/json:
|
|
7258
7309
|
schema:
|
|
@@ -7400,7 +7451,7 @@ paths:
|
|
|
7400
7451
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
7401
7452
|
"503":
|
|
7402
7453
|
description: No travel provider can serve the request right now
|
|
7403
|
-
headers: *
|
|
7454
|
+
headers: *a15
|
|
7404
7455
|
content:
|
|
7405
7456
|
application/json:
|
|
7406
7457
|
schema:
|
|
@@ -7536,7 +7587,7 @@ paths:
|
|
|
7536
7587
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
7537
7588
|
"503":
|
|
7538
7589
|
description: No travel provider can serve the request right now
|
|
7539
|
-
headers: *
|
|
7590
|
+
headers: *a15
|
|
7540
7591
|
content:
|
|
7541
7592
|
application/json:
|
|
7542
7593
|
schema:
|
|
@@ -7638,7 +7689,7 @@ paths:
|
|
|
7638
7689
|
anyOf:
|
|
7639
7690
|
- $ref: "#/components/schemas/TripStateResponse"
|
|
7640
7691
|
- $ref: "#/components/schemas/ErrorResponse"
|
|
7641
|
-
example: &
|
|
7692
|
+
example: &a16
|
|
7642
7693
|
error:
|
|
7643
7694
|
code: CONFLICT
|
|
7644
7695
|
message: This trip is already being checked out; no second checkout was started.
|
|
@@ -7690,7 +7741,7 @@ paths:
|
|
|
7690
7741
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
7691
7742
|
"503":
|
|
7692
7743
|
description: No travel provider can serve the request right now
|
|
7693
|
-
headers: *
|
|
7744
|
+
headers: *a15
|
|
7694
7745
|
content:
|
|
7695
7746
|
application/json:
|
|
7696
7747
|
schema:
|
|
@@ -7799,7 +7850,7 @@ paths:
|
|
|
7799
7850
|
anyOf:
|
|
7800
7851
|
- $ref: "#/components/schemas/TripStateResponse"
|
|
7801
7852
|
- $ref: "#/components/schemas/ErrorResponse"
|
|
7802
|
-
example: *
|
|
7853
|
+
example: *a16
|
|
7803
7854
|
"410":
|
|
7804
7855
|
description: The resource this request names no longer exists
|
|
7805
7856
|
content:
|
|
@@ -7847,7 +7898,7 @@ paths:
|
|
|
7847
7898
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
7848
7899
|
"503":
|
|
7849
7900
|
description: No travel provider can serve the request right now
|
|
7850
|
-
headers: *
|
|
7901
|
+
headers: *a15
|
|
7851
7902
|
content:
|
|
7852
7903
|
application/json:
|
|
7853
7904
|
schema:
|
|
@@ -7999,7 +8050,7 @@ paths:
|
|
|
7999
8050
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
8000
8051
|
"503":
|
|
8001
8052
|
description: No travel provider can serve the request right now
|
|
8002
|
-
headers: *
|
|
8053
|
+
headers: *a15
|
|
8003
8054
|
content:
|
|
8004
8055
|
application/json:
|
|
8005
8056
|
schema:
|
|
@@ -8135,7 +8186,7 @@ paths:
|
|
|
8135
8186
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
8136
8187
|
"503":
|
|
8137
8188
|
description: No travel provider can serve the request right now
|
|
8138
|
-
headers: *
|
|
8189
|
+
headers: *a15
|
|
8139
8190
|
content:
|
|
8140
8191
|
application/json:
|
|
8141
8192
|
schema:
|
|
@@ -8283,7 +8334,7 @@ paths:
|
|
|
8283
8334
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
8284
8335
|
"503":
|
|
8285
8336
|
description: No travel provider can serve the request right now
|
|
8286
|
-
headers: *
|
|
8337
|
+
headers: *a15
|
|
8287
8338
|
content:
|
|
8288
8339
|
application/json:
|
|
8289
8340
|
schema:
|
|
@@ -8424,7 +8475,7 @@ paths:
|
|
|
8424
8475
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
8425
8476
|
"503":
|
|
8426
8477
|
description: No travel provider can serve the request right now
|
|
8427
|
-
headers: *
|
|
8478
|
+
headers: *a15
|
|
8428
8479
|
content:
|
|
8429
8480
|
application/json:
|
|
8430
8481
|
schema:
|
|
@@ -8570,7 +8621,7 @@ paths:
|
|
|
8570
8621
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
8571
8622
|
"503":
|
|
8572
8623
|
description: No travel provider can serve the request right now
|
|
8573
|
-
headers: *
|
|
8624
|
+
headers: *a15
|
|
8574
8625
|
content:
|
|
8575
8626
|
application/json:
|
|
8576
8627
|
schema:
|
|
@@ -8723,7 +8774,7 @@ paths:
|
|
|
8723
8774
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
8724
8775
|
"503":
|
|
8725
8776
|
description: No travel provider can serve the request right now
|
|
8726
|
-
headers: *
|
|
8777
|
+
headers: *a15
|
|
8727
8778
|
content:
|
|
8728
8779
|
application/json:
|
|
8729
8780
|
schema:
|
|
@@ -8876,7 +8927,7 @@ paths:
|
|
|
8876
8927
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
8877
8928
|
"503":
|
|
8878
8929
|
description: No travel provider can serve the request right now
|
|
8879
|
-
headers: *
|
|
8930
|
+
headers: *a15
|
|
8880
8931
|
content:
|
|
8881
8932
|
application/json:
|
|
8882
8933
|
schema:
|
|
@@ -9028,7 +9079,7 @@ paths:
|
|
|
9028
9079
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
9029
9080
|
"503":
|
|
9030
9081
|
description: No travel provider can serve the request right now
|
|
9031
|
-
headers: *
|
|
9082
|
+
headers: *a15
|
|
9032
9083
|
content:
|
|
9033
9084
|
application/json:
|
|
9034
9085
|
schema:
|
|
@@ -9188,7 +9239,7 @@ paths:
|
|
|
9188
9239
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
9189
9240
|
"503":
|
|
9190
9241
|
description: No travel provider can serve the request right now
|
|
9191
|
-
headers: *
|
|
9242
|
+
headers: *a15
|
|
9192
9243
|
content:
|
|
9193
9244
|
application/json:
|
|
9194
9245
|
schema:
|
|
@@ -9347,7 +9398,7 @@ paths:
|
|
|
9347
9398
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
9348
9399
|
"503":
|
|
9349
9400
|
description: No travel provider can serve the request right now
|
|
9350
|
-
headers: *
|
|
9401
|
+
headers: *a15
|
|
9351
9402
|
content:
|
|
9352
9403
|
application/json:
|
|
9353
9404
|
schema:
|
|
@@ -9501,7 +9552,7 @@ paths:
|
|
|
9501
9552
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
9502
9553
|
"503":
|
|
9503
9554
|
description: No travel provider can serve the request right now
|
|
9504
|
-
headers: *
|
|
9555
|
+
headers: *a15
|
|
9505
9556
|
content:
|
|
9506
9557
|
application/json:
|
|
9507
9558
|
schema:
|
|
@@ -9567,7 +9618,7 @@ paths:
|
|
|
9567
9618
|
in: query
|
|
9568
9619
|
- schema:
|
|
9569
9620
|
type: string
|
|
9570
|
-
enum: &
|
|
9621
|
+
enum: &a17
|
|
9571
9622
|
- Solo
|
|
9572
9623
|
- Couple
|
|
9573
9624
|
- Group
|
|
@@ -9578,7 +9629,7 @@ paths:
|
|
|
9578
9629
|
in: query
|
|
9579
9630
|
- schema:
|
|
9580
9631
|
type: string
|
|
9581
|
-
enum: &
|
|
9632
|
+
enum: &a18
|
|
9582
9633
|
- One-Way
|
|
9583
9634
|
- Round-Trip
|
|
9584
9635
|
example: Round-Trip
|
|
@@ -9648,7 +9699,7 @@ paths:
|
|
|
9648
9699
|
in: query
|
|
9649
9700
|
- schema:
|
|
9650
9701
|
type: string
|
|
9651
|
-
enum: &
|
|
9702
|
+
enum: &a19
|
|
9652
9703
|
- country
|
|
9653
9704
|
- city
|
|
9654
9705
|
description: "Ranked output granularity: country (default) or city. Applies to
|
|
@@ -9767,7 +9818,7 @@ paths:
|
|
|
9767
9818
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
9768
9819
|
"503":
|
|
9769
9820
|
description: No travel provider can serve the request right now
|
|
9770
|
-
headers: *
|
|
9821
|
+
headers: *a15
|
|
9771
9822
|
content:
|
|
9772
9823
|
application/json:
|
|
9773
9824
|
schema:
|
|
@@ -9833,14 +9884,14 @@ paths:
|
|
|
9833
9884
|
in: query
|
|
9834
9885
|
- schema:
|
|
9835
9886
|
type: string
|
|
9836
|
-
enum: *
|
|
9887
|
+
enum: *a17
|
|
9837
9888
|
example: Couple
|
|
9838
9889
|
required: false
|
|
9839
9890
|
name: traveler_type
|
|
9840
9891
|
in: query
|
|
9841
9892
|
- schema:
|
|
9842
9893
|
type: string
|
|
9843
|
-
enum: *
|
|
9894
|
+
enum: *a18
|
|
9844
9895
|
example: Round-Trip
|
|
9845
9896
|
required: false
|
|
9846
9897
|
name: trip_type
|
|
@@ -9908,7 +9959,7 @@ paths:
|
|
|
9908
9959
|
in: query
|
|
9909
9960
|
- schema:
|
|
9910
9961
|
type: string
|
|
9911
|
-
enum: *
|
|
9962
|
+
enum: *a19
|
|
9912
9963
|
description: "Ranked output granularity: country (default) or city. Applies to
|
|
9913
9964
|
destination/market (not audience)."
|
|
9914
9965
|
example: city
|
|
@@ -10025,7 +10076,7 @@ paths:
|
|
|
10025
10076
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
10026
10077
|
"503":
|
|
10027
10078
|
description: No travel provider can serve the request right now
|
|
10028
|
-
headers: *
|
|
10079
|
+
headers: *a15
|
|
10029
10080
|
content:
|
|
10030
10081
|
application/json:
|
|
10031
10082
|
schema:
|
|
@@ -10097,14 +10148,14 @@ paths:
|
|
|
10097
10148
|
in: query
|
|
10098
10149
|
- schema:
|
|
10099
10150
|
type: string
|
|
10100
|
-
enum: *
|
|
10151
|
+
enum: *a17
|
|
10101
10152
|
example: Couple
|
|
10102
10153
|
required: false
|
|
10103
10154
|
name: traveler_type
|
|
10104
10155
|
in: query
|
|
10105
10156
|
- schema:
|
|
10106
10157
|
type: string
|
|
10107
|
-
enum: *
|
|
10158
|
+
enum: *a18
|
|
10108
10159
|
example: Round-Trip
|
|
10109
10160
|
required: false
|
|
10110
10161
|
name: trip_type
|
|
@@ -10270,7 +10321,7 @@ paths:
|
|
|
10270
10321
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
10271
10322
|
"503":
|
|
10272
10323
|
description: No travel provider can serve the request right now
|
|
10273
|
-
headers: *
|
|
10324
|
+
headers: *a15
|
|
10274
10325
|
content:
|
|
10275
10326
|
application/json:
|
|
10276
10327
|
schema:
|
|
@@ -10348,14 +10399,14 @@ paths:
|
|
|
10348
10399
|
in: query
|
|
10349
10400
|
- schema:
|
|
10350
10401
|
type: string
|
|
10351
|
-
enum: *
|
|
10402
|
+
enum: *a17
|
|
10352
10403
|
example: Couple
|
|
10353
10404
|
required: false
|
|
10354
10405
|
name: traveler_type
|
|
10355
10406
|
in: query
|
|
10356
10407
|
- schema:
|
|
10357
10408
|
type: string
|
|
10358
|
-
enum: *
|
|
10409
|
+
enum: *a18
|
|
10359
10410
|
example: Round-Trip
|
|
10360
10411
|
required: false
|
|
10361
10412
|
name: trip_type
|
|
@@ -10407,7 +10458,7 @@ paths:
|
|
|
10407
10458
|
in: query
|
|
10408
10459
|
- schema:
|
|
10409
10460
|
type: string
|
|
10410
|
-
enum: &
|
|
10461
|
+
enum: &a20
|
|
10411
10462
|
- day
|
|
10412
10463
|
- week
|
|
10413
10464
|
- month
|
|
@@ -10517,7 +10568,7 @@ paths:
|
|
|
10517
10568
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
10518
10569
|
"503":
|
|
10519
10570
|
description: No travel provider can serve the request right now
|
|
10520
|
-
headers: *
|
|
10571
|
+
headers: *a15
|
|
10521
10572
|
content:
|
|
10522
10573
|
application/json:
|
|
10523
10574
|
schema:
|
|
@@ -10585,14 +10636,14 @@ paths:
|
|
|
10585
10636
|
in: query
|
|
10586
10637
|
- schema:
|
|
10587
10638
|
type: string
|
|
10588
|
-
enum: *
|
|
10639
|
+
enum: *a17
|
|
10589
10640
|
example: Couple
|
|
10590
10641
|
required: false
|
|
10591
10642
|
name: traveler_type
|
|
10592
10643
|
in: query
|
|
10593
10644
|
- schema:
|
|
10594
10645
|
type: string
|
|
10595
|
-
enum: *
|
|
10646
|
+
enum: *a18
|
|
10596
10647
|
example: Round-Trip
|
|
10597
10648
|
required: false
|
|
10598
10649
|
name: trip_type
|
|
@@ -10644,7 +10695,7 @@ paths:
|
|
|
10644
10695
|
in: query
|
|
10645
10696
|
- schema:
|
|
10646
10697
|
type: string
|
|
10647
|
-
enum: *
|
|
10698
|
+
enum: *a20
|
|
10648
10699
|
description: "Bucket size for the returned series: week (default), day, or
|
|
10649
10700
|
month."
|
|
10650
10701
|
example: week
|
|
@@ -10653,7 +10704,7 @@ paths:
|
|
|
10653
10704
|
in: query
|
|
10654
10705
|
- schema:
|
|
10655
10706
|
type: string
|
|
10656
|
-
enum: *
|
|
10707
|
+
enum: *a19
|
|
10657
10708
|
description: "Ranked output granularity: country (default) or city. Applies to
|
|
10658
10709
|
destination/market (not audience)."
|
|
10659
10710
|
example: city
|
|
@@ -10780,7 +10831,7 @@ paths:
|
|
|
10780
10831
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
10781
10832
|
"503":
|
|
10782
10833
|
description: No travel provider can serve the request right now
|
|
10783
|
-
headers: *
|
|
10834
|
+
headers: *a15
|
|
10784
10835
|
content:
|
|
10785
10836
|
application/json:
|
|
10786
10837
|
schema:
|
|
@@ -10848,14 +10899,14 @@ paths:
|
|
|
10848
10899
|
in: query
|
|
10849
10900
|
- schema:
|
|
10850
10901
|
type: string
|
|
10851
|
-
enum: *
|
|
10902
|
+
enum: *a17
|
|
10852
10903
|
example: Couple
|
|
10853
10904
|
required: false
|
|
10854
10905
|
name: traveler_type
|
|
10855
10906
|
in: query
|
|
10856
10907
|
- schema:
|
|
10857
10908
|
type: string
|
|
10858
|
-
enum: *
|
|
10909
|
+
enum: *a18
|
|
10859
10910
|
example: Round-Trip
|
|
10860
10911
|
required: false
|
|
10861
10912
|
name: trip_type
|
|
@@ -10907,7 +10958,7 @@ paths:
|
|
|
10907
10958
|
in: query
|
|
10908
10959
|
- schema:
|
|
10909
10960
|
type: string
|
|
10910
|
-
enum: *
|
|
10961
|
+
enum: *a20
|
|
10911
10962
|
description: "Bucket size for the returned series: week (default), day, or
|
|
10912
10963
|
month."
|
|
10913
10964
|
example: week
|
|
@@ -10916,7 +10967,7 @@ paths:
|
|
|
10916
10967
|
in: query
|
|
10917
10968
|
- schema:
|
|
10918
10969
|
type: string
|
|
10919
|
-
enum: *
|
|
10970
|
+
enum: *a19
|
|
10920
10971
|
description: "Ranked output granularity: country (default) or city. Applies to
|
|
10921
10972
|
destination/market (not audience)."
|
|
10922
10973
|
example: city
|
|
@@ -11043,7 +11094,7 @@ paths:
|
|
|
11043
11094
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
11044
11095
|
"503":
|
|
11045
11096
|
description: No travel provider can serve the request right now
|
|
11046
|
-
headers: *
|
|
11097
|
+
headers: *a15
|
|
11047
11098
|
content:
|
|
11048
11099
|
application/json:
|
|
11049
11100
|
schema:
|
|
@@ -11117,14 +11168,14 @@ paths:
|
|
|
11117
11168
|
in: query
|
|
11118
11169
|
- schema:
|
|
11119
11170
|
type: string
|
|
11120
|
-
enum: *
|
|
11171
|
+
enum: *a17
|
|
11121
11172
|
example: Couple
|
|
11122
11173
|
required: false
|
|
11123
11174
|
name: traveler_type
|
|
11124
11175
|
in: query
|
|
11125
11176
|
- schema:
|
|
11126
11177
|
type: string
|
|
11127
|
-
enum: *
|
|
11178
|
+
enum: *a18
|
|
11128
11179
|
example: Round-Trip
|
|
11129
11180
|
required: false
|
|
11130
11181
|
name: trip_type
|
|
@@ -11176,7 +11227,7 @@ paths:
|
|
|
11176
11227
|
in: query
|
|
11177
11228
|
- schema:
|
|
11178
11229
|
type: string
|
|
11179
|
-
enum: *
|
|
11230
|
+
enum: *a20
|
|
11180
11231
|
description: "Bucket size for the returned series: week (default), day, or
|
|
11181
11232
|
month."
|
|
11182
11233
|
example: week
|
|
@@ -11293,7 +11344,7 @@ paths:
|
|
|
11293
11344
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
11294
11345
|
"503":
|
|
11295
11346
|
description: No travel provider can serve the request right now
|
|
11296
|
-
headers: *
|
|
11347
|
+
headers: *a15
|
|
11297
11348
|
content:
|
|
11298
11349
|
application/json:
|
|
11299
11350
|
schema:
|
|
@@ -11431,7 +11482,7 @@ paths:
|
|
|
11431
11482
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
11432
11483
|
"503":
|
|
11433
11484
|
description: No travel provider can serve the request right now
|
|
11434
|
-
headers: *
|
|
11485
|
+
headers: *a15
|
|
11435
11486
|
content:
|
|
11436
11487
|
application/json:
|
|
11437
11488
|
schema:
|
|
@@ -11567,7 +11618,7 @@ paths:
|
|
|
11567
11618
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
11568
11619
|
"503":
|
|
11569
11620
|
description: No travel provider can serve the request right now
|
|
11570
|
-
headers: *
|
|
11621
|
+
headers: *a15
|
|
11571
11622
|
content:
|
|
11572
11623
|
application/json:
|
|
11573
11624
|
schema:
|
|
@@ -11703,7 +11754,7 @@ paths:
|
|
|
11703
11754
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
11704
11755
|
"503":
|
|
11705
11756
|
description: No travel provider can serve the request right now
|
|
11706
|
-
headers: *
|
|
11757
|
+
headers: *a15
|
|
11707
11758
|
content:
|
|
11708
11759
|
application/json:
|
|
11709
11760
|
schema:
|
|
@@ -11850,7 +11901,7 @@ paths:
|
|
|
11850
11901
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
11851
11902
|
"503":
|
|
11852
11903
|
description: No travel provider can serve the request right now
|
|
11853
|
-
headers: *
|
|
11904
|
+
headers: *a15
|
|
11854
11905
|
content:
|
|
11855
11906
|
application/json:
|
|
11856
11907
|
schema:
|
|
@@ -11986,7 +12037,7 @@ paths:
|
|
|
11986
12037
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
11987
12038
|
"503":
|
|
11988
12039
|
description: No travel provider can serve the request right now
|
|
11989
|
-
headers: *
|
|
12040
|
+
headers: *a15
|
|
11990
12041
|
content:
|
|
11991
12042
|
application/json:
|
|
11992
12043
|
schema:
|
|
@@ -12122,7 +12173,7 @@ paths:
|
|
|
12122
12173
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
12123
12174
|
"503":
|
|
12124
12175
|
description: No travel provider can serve the request right now
|
|
12125
|
-
headers: *
|
|
12176
|
+
headers: *a15
|
|
12126
12177
|
content:
|
|
12127
12178
|
application/json:
|
|
12128
12179
|
schema:
|
|
@@ -12258,7 +12309,7 @@ paths:
|
|
|
12258
12309
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
12259
12310
|
"503":
|
|
12260
12311
|
description: No travel provider can serve the request right now
|
|
12261
|
-
headers: *
|
|
12312
|
+
headers: *a15
|
|
12262
12313
|
content:
|
|
12263
12314
|
application/json:
|
|
12264
12315
|
schema:
|
|
@@ -12394,7 +12445,7 @@ paths:
|
|
|
12394
12445
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
12395
12446
|
"503":
|
|
12396
12447
|
description: No travel provider can serve the request right now
|
|
12397
|
-
headers: *
|
|
12448
|
+
headers: *a15
|
|
12398
12449
|
content:
|
|
12399
12450
|
application/json:
|
|
12400
12451
|
schema:
|
|
@@ -12552,7 +12603,7 @@ paths:
|
|
|
12552
12603
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
12553
12604
|
"503":
|
|
12554
12605
|
description: No travel provider can serve the request right now
|
|
12555
|
-
headers: *
|
|
12606
|
+
headers: *a15
|
|
12556
12607
|
content:
|
|
12557
12608
|
application/json:
|
|
12558
12609
|
schema:
|
|
@@ -12710,7 +12761,7 @@ paths:
|
|
|
12710
12761
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
12711
12762
|
"503":
|
|
12712
12763
|
description: No travel provider can serve the request right now
|
|
12713
|
-
headers: *
|
|
12764
|
+
headers: *a15
|
|
12714
12765
|
content:
|
|
12715
12766
|
application/json:
|
|
12716
12767
|
schema:
|
|
@@ -12885,7 +12936,7 @@ paths:
|
|
|
12885
12936
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
12886
12937
|
"503":
|
|
12887
12938
|
description: No travel provider can serve the request right now
|
|
12888
|
-
headers: *
|
|
12939
|
+
headers: *a15
|
|
12889
12940
|
content:
|
|
12890
12941
|
application/json:
|
|
12891
12942
|
schema:
|
|
@@ -13040,7 +13091,7 @@ paths:
|
|
|
13040
13091
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
13041
13092
|
"503":
|
|
13042
13093
|
description: No travel provider can serve the request right now
|
|
13043
|
-
headers: *
|
|
13094
|
+
headers: *a15
|
|
13044
13095
|
content:
|
|
13045
13096
|
application/json:
|
|
13046
13097
|
schema:
|
|
@@ -13207,7 +13258,7 @@ paths:
|
|
|
13207
13258
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
13208
13259
|
"503":
|
|
13209
13260
|
description: No travel provider can serve the request right now
|
|
13210
|
-
headers: *
|
|
13261
|
+
headers: *a15
|
|
13211
13262
|
content:
|
|
13212
13263
|
application/json:
|
|
13213
13264
|
schema:
|
|
@@ -13388,7 +13439,7 @@ paths:
|
|
|
13388
13439
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
13389
13440
|
"503":
|
|
13390
13441
|
description: No travel provider can serve the request right now
|
|
13391
|
-
headers: *
|
|
13442
|
+
headers: *a15
|
|
13392
13443
|
content:
|
|
13393
13444
|
application/json:
|
|
13394
13445
|
schema:
|
|
@@ -13547,7 +13598,7 @@ paths:
|
|
|
13547
13598
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
13548
13599
|
"503":
|
|
13549
13600
|
description: No travel provider can serve the request right now
|
|
13550
|
-
headers: *
|
|
13601
|
+
headers: *a15
|
|
13551
13602
|
content:
|
|
13552
13603
|
application/json:
|
|
13553
13604
|
schema:
|
|
@@ -13687,7 +13738,7 @@ paths:
|
|
|
13687
13738
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
13688
13739
|
"503":
|
|
13689
13740
|
description: No travel provider can serve the request right now
|
|
13690
|
-
headers: *
|
|
13741
|
+
headers: *a15
|
|
13691
13742
|
content:
|
|
13692
13743
|
application/json:
|
|
13693
13744
|
schema:
|
|
@@ -13817,7 +13868,7 @@ paths:
|
|
|
13817
13868
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
13818
13869
|
"503":
|
|
13819
13870
|
description: No travel provider can serve the request right now
|
|
13820
|
-
headers: *
|
|
13871
|
+
headers: *a15
|
|
13821
13872
|
content:
|
|
13822
13873
|
application/json:
|
|
13823
13874
|
schema:
|
|
@@ -13955,7 +14006,7 @@ paths:
|
|
|
13955
14006
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
13956
14007
|
"503":
|
|
13957
14008
|
description: No travel provider can serve the request right now
|
|
13958
|
-
headers: *
|
|
14009
|
+
headers: *a15
|
|
13959
14010
|
content:
|
|
13960
14011
|
application/json:
|
|
13961
14012
|
schema:
|
|
@@ -14092,7 +14143,7 @@ paths:
|
|
|
14092
14143
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
14093
14144
|
"503":
|
|
14094
14145
|
description: No travel provider can serve the request right now
|
|
14095
|
-
headers: *
|
|
14146
|
+
headers: *a15
|
|
14096
14147
|
content:
|
|
14097
14148
|
application/json:
|
|
14098
14149
|
schema:
|
|
@@ -14232,7 +14283,7 @@ paths:
|
|
|
14232
14283
|
doc_url: https://docs.gojinko.com/concepts/errors
|
|
14233
14284
|
"503":
|
|
14234
14285
|
description: No travel provider can serve the request right now
|
|
14235
|
-
headers: *
|
|
14286
|
+
headers: *a15
|
|
14236
14287
|
content:
|
|
14237
14288
|
application/json:
|
|
14238
14289
|
schema:
|