@qite/tide-client 1.1.155 → 1.1.157

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.
@@ -1,6 +1,8 @@
1
1
  import { EntryStatus } from "../../../enums";
2
2
  export interface PackagingEntry {
3
+ language?: string;
3
4
  transactionId: string;
5
+ magicLink?: string;
4
6
  dossierNumber: string;
5
7
  status: EntryStatus;
6
8
  bookingDate?: string | null;
@@ -4,6 +4,7 @@ import {
4
4
  PackagingAccommodationRequest,
5
5
  PackagingAccommodationResponse,
6
6
  PackagingEntry,
7
+ BookingPriceDetails,
7
8
  } from "../types";
8
9
  export declare const startTransaction: (
9
10
  config: TideClientConfig,
@@ -19,3 +20,8 @@ export declare const getEntry: (
19
20
  magicLinkCode: string,
20
21
  signal?: AbortSignal | undefined
21
22
  ) => Promise<PackagingEntry>;
23
+ export declare const getPriceDetails: (
24
+ config: TideClientConfig,
25
+ request: PackagingEntry,
26
+ signal?: AbortSignal | undefined
27
+ ) => Promise<BookingPriceDetails>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.155",
3
+ "version": "1.1.157",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {