@qite/tide-client 1.1.76 → 1.1.78

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.
@@ -0,0 +1,8 @@
1
+ export interface AgentDossierAllotmentItem {
2
+ id: number;
3
+ startDate: Date | null;
4
+ endDate: Date | null;
5
+ ticketingDate: Date | null;
6
+ paxListDeadline: Date | null;
7
+ firstDepositDeadline: Date | null;
8
+ }
@@ -0,0 +1,10 @@
1
+ import { AgentDossierAllotmentItem } from "./agent-dossier-allotment-item";
2
+ export interface AgentDossierItem {
3
+ id: number;
4
+ dossierNumber: string;
5
+ dateCreated: Date;
6
+ officeId: number;
7
+ isActive: boolean;
8
+ productCodes: string[];
9
+ agentAllotments: AgentDossierAllotmentItem[];
10
+ }
@@ -1,6 +1,8 @@
1
1
  export * from "./affiliate";
2
2
  export * from "./agent-allotment-item";
3
3
  export * from "./agent-allotment";
4
+ export * from "./agent-dossier-allotment-item";
5
+ export * from "./agent-dossier-item";
4
6
  export * from "./airport";
5
7
  export * from "./contact-form-request";
6
8
  export * from "./generate-booking-accommodation-request";
@@ -15,6 +15,7 @@ import {
15
15
  PrintActionGroup,
16
16
  TideClientConfig,
17
17
  } from "../types";
18
+ import { AgentDossierItem } from "../types/web/agent-dossier-item";
18
19
  /**
19
20
  * api/web/agent/print-action/{print-action-group}
20
21
  * @param config
@@ -45,6 +46,12 @@ export declare const getEntryList: (
45
46
  gridColumns?: Column[] | undefined,
46
47
  signal?: AbortSignal | undefined
47
48
  ) => Promise<PageResult<DossierViewResult>>;
49
+ export declare const getEntryListv2: (
50
+ config: TideClientConfig,
51
+ filterItem: FilterItem,
52
+ gridColumns?: Column[] | undefined,
53
+ signal?: AbortSignal | undefined
54
+ ) => Promise<PageResult<AgentDossierItem>>;
48
55
  export declare const getEntryTotals: (
49
56
  config: TideClientConfig,
50
57
  filterItem: FilterItem,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.76",
3
+ "version": "1.1.78",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {