@hubs101/js-api-skd-client 1.0.10559 → 1.0.10561
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/lib/api/event/types.d.ts +9 -1
- package/package.json +1 -1
package/lib/api/event/types.d.ts
CHANGED
|
@@ -1033,11 +1033,19 @@ export type CreateOfferInput = {
|
|
|
1033
1033
|
currency?: "eur" | "usd";
|
|
1034
1034
|
tickets: TicketPackageInput[];
|
|
1035
1035
|
};
|
|
1036
|
+
export type OfferData = {
|
|
1037
|
+
offer_date: string;
|
|
1038
|
+
date_of_payment: string;
|
|
1039
|
+
availability_date: string;
|
|
1040
|
+
language: string;
|
|
1041
|
+
further_agreements: string;
|
|
1042
|
+
currency: string;
|
|
1043
|
+
};
|
|
1036
1044
|
export type OfferServerResponse = {
|
|
1037
1045
|
id: string;
|
|
1038
1046
|
customer_contact_data: Record<string, any>;
|
|
1039
1047
|
sales_person_data: Record<string, any>;
|
|
1040
|
-
offer_data:
|
|
1048
|
+
offer_data: OfferData;
|
|
1041
1049
|
ticket_packeges_data: any[];
|
|
1042
1050
|
sales_person_signature_data?: Record<string, any>;
|
|
1043
1051
|
customer_company_logo_data?: Record<string, any>;
|