@odynn/awayz-hotels 0.6.26 → 0.6.27

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.
@@ -187,3 +187,32 @@ export interface IBestCheckout {
187
187
  */
188
188
  valueCents?: number;
189
189
  }
190
+ export interface ITransferPartner {
191
+ partnerProgram: string;
192
+ ratio: number;
193
+ bonus: number;
194
+ transferMinutes: number;
195
+ minimumTransfer: number;
196
+ transferDenominator: number;
197
+ stepBonus: {
198
+ bonus: number;
199
+ stepThreshold: number;
200
+ };
201
+ steps: IStep[];
202
+ shortName: string;
203
+ program: string;
204
+ region: string;
205
+ partnerProgramCategory: string[];
206
+ transferTime: string;
207
+ programLogo: string;
208
+ }
209
+ export interface IStep {
210
+ text: string;
211
+ links: ITransferLink[];
212
+ id: string;
213
+ }
214
+ export interface ITransferLink {
215
+ text: string;
216
+ url: string;
217
+ id: string;
218
+ }
@@ -4,7 +4,6 @@ import { IAirlineProgram } from './services/wallet/WalletService.types';
4
4
  import { checkNthNightFree } from './utilities/hotelUtils/freeNightUtils';
5
5
  import { IPointsAsCash } from './utilities/pointsAsCashUtils';
6
6
  export { ESearchType } from './services/hotel/HotelService.types';
7
- export type { IStep, ITransferLink, ITransferPartner } from '@type-op/shared';
8
7
  export * from './components';
9
8
  export * from './configs';
10
9
  export * from './enums';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@odynn/awayz-hotels",
3
3
  "private": false,
4
- "version": "0.6.26",
4
+ "version": "0.6.27",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"