@qite/tide-client 1.1.78 → 1.1.80
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.
- package/build/index.js +6 -0
- package/build/index.js.map +1 -1
- package/build/types/web/agent-dossier-allotment.d.ts +14 -0
- package/build/types/web/agent-dossier-item.d.ts +1 -0
- package/build/types/web/agent-dossier.d.ts +11 -0
- package/build/types/web/index.d.ts +2 -0
- package/build/utils/web-agent-client.d.ts +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AllotmentStatus } from "../enums";
|
|
2
|
+
export interface AgentDossierAllotment {
|
|
3
|
+
id: number;
|
|
4
|
+
startDate: Date;
|
|
5
|
+
endDate: Date;
|
|
6
|
+
allotmentStatus: AllotmentStatus;
|
|
7
|
+
bookedPlaces: number;
|
|
8
|
+
ticketingDate: Date | null;
|
|
9
|
+
paxListDeadline: Date | null;
|
|
10
|
+
firstDepositDeadline: Date | null;
|
|
11
|
+
secondDepositDeadline: Date | null;
|
|
12
|
+
thirdDepositDeadline: Date | null;
|
|
13
|
+
issueDate: Date | null;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AgentDossierAllotment } from "./agent-dossier-allotment";
|
|
2
|
+
export interface AgentDossier {
|
|
3
|
+
id: number;
|
|
4
|
+
dossierNumber: string;
|
|
5
|
+
dateCreated: Date;
|
|
6
|
+
currencyCode: string;
|
|
7
|
+
agencyContactPerson: string;
|
|
8
|
+
agentId: number;
|
|
9
|
+
paxMainBookerName: string;
|
|
10
|
+
agentAllotments: AgentDossierAllotment[];
|
|
11
|
+
}
|
|
@@ -2,7 +2,9 @@ export * from "./affiliate";
|
|
|
2
2
|
export * from "./agent-allotment-item";
|
|
3
3
|
export * from "./agent-allotment";
|
|
4
4
|
export * from "./agent-dossier-allotment-item";
|
|
5
|
+
export * from "./agent-dossier-allotment";
|
|
5
6
|
export * from "./agent-dossier-item";
|
|
7
|
+
export * from "./agent-dossier";
|
|
6
8
|
export * from "./airport";
|
|
7
9
|
export * from "./contact-form-request";
|
|
8
10
|
export * from "./generate-booking-accommodation-request";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AgentAllotment,
|
|
3
3
|
AgentAllotmentItem,
|
|
4
|
+
AgentDossier,
|
|
4
5
|
AgentInvoiceItem,
|
|
5
6
|
AgentPrintAction,
|
|
6
7
|
AgentPrintActionRequest,
|
|
@@ -58,6 +59,11 @@ export declare const getEntryTotals: (
|
|
|
58
59
|
gridColumns?: Column[] | undefined,
|
|
59
60
|
signal?: AbortSignal | undefined
|
|
60
61
|
) => Promise<EntryTotals>;
|
|
62
|
+
export declare const getEntryDetailv2: (
|
|
63
|
+
config: TideClientConfig,
|
|
64
|
+
entryId: number,
|
|
65
|
+
signal?: AbortSignal | undefined
|
|
66
|
+
) => Promise<AgentDossier>;
|
|
61
67
|
export declare const getInvoiceList: (
|
|
62
68
|
config: TideClientConfig,
|
|
63
69
|
filterItem: FilterItem,
|