mts-booking-library 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/types/BusMatrix.d.ts +0 -0
- package/lib/types/BusMatrix.js +1 -0
- package/lib/types/Info.d.ts +1 -0
- package/lib/types/Journey.d.ts +8 -0
- package/lib/types/Journey.js +2 -0
- package/lib/types/JourneySearch.d.ts +9 -0
- package/lib/types/JourneySearch.js +2 -0
- package/lib/types/Stop.d.ts +7 -0
- package/lib/types/Stop.js +2 -0
- package/lib/types/Tour.d.ts +18 -0
- package/lib/types/Tour.js +2 -0
- package/lib/types/Tours.d.ts +0 -0
- package/lib/types/Tours.js +1 -0
- package/lib/types/Trip.d.ts +9 -0
- package/lib/types/Trip.js +2 -0
- package/lib/types/TripSearch.d.ts +9 -0
- package/lib/types/TripSearch.js +2 -0
- package/package.json +1 -1
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";
|
package/lib/types/Info.d.ts
CHANGED
@@ -0,0 +1,18 @@
|
|
1
|
+
import { Info } from "./Info";
|
2
|
+
import { Line } from "./Line";
|
3
|
+
import { TariffMatrix, TariffType, TermsType } from "./TermsAndTariffs";
|
4
|
+
export type Tour = {
|
5
|
+
id: number;
|
6
|
+
line: Line;
|
7
|
+
info: Info;
|
8
|
+
tariffsMatrix: TariffMatrix;
|
9
|
+
tariffTypes: TariffType[];
|
10
|
+
termsTypes: TermsType[];
|
11
|
+
isDateOptional: boolean;
|
12
|
+
isDateRequired: boolean;
|
13
|
+
isTripMandatory: boolean;
|
14
|
+
};
|
15
|
+
export type TourTrip = {
|
16
|
+
tripId: number;
|
17
|
+
hour: Date;
|
18
|
+
};
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";
|