sm-types 1.11.100 → 1.11.101

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.
Files changed (2) hide show
  1. package/common/index.d.ts +27 -0
  2. package/package.json +1 -1
package/common/index.d.ts CHANGED
@@ -461,3 +461,30 @@ export interface IRailJSON {
461
461
  departureTrip: IRailTrip;
462
462
  international: boolean;
463
463
  }
464
+ export interface ITransferLocation {
465
+ address: string;
466
+ city: string;
467
+ date: string;
468
+ time: string;
469
+ latitude: string;
470
+ longitude: string;
471
+ }
472
+ export interface ITransferDriver {
473
+ name: string;
474
+ contact: string;
475
+ }
476
+ export interface ITransferContractDetails {
477
+ dailyRate: number;
478
+ totalAmount: number;
479
+ currency: string;
480
+ freeCancellationUntil?: Date;
481
+ }
482
+ export interface ITransferJSON {
483
+ search: IOfferSearch;
484
+ international: boolean;
485
+ origin: ITransferLocation;
486
+ destination: ITransferLocation;
487
+ vehicleType: string;
488
+ driver: ITransferDriver;
489
+ contractDetails: ITransferContractDetails;
490
+ }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Smartrips",
4
4
  "license": "ISC",
5
5
  "keywords": [],
6
- "version": "1.11.100",
6
+ "version": "1.11.101",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",