@qite/tide-client 1.1.22 → 1.1.23
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 +8 -0
- package/build/index.js.map +1 -1
- package/build/types/accommodation-occupancy.d.ts +9 -9
- package/build/types/accommodation-with-available-places.d.ts +15 -15
- package/build/types/accommodation.d.ts +7 -7
- package/build/types/additional-services.d.ts +5 -5
- package/build/types/alternative-flight-data.d.ts +10 -10
- package/build/types/alternative-flight-leg.d.ts +18 -18
- package/build/types/alternative-flight.d.ts +12 -12
- package/build/types/availability-request.d.ts +11 -11
- package/build/types/availability.d.ts +5 -5
- package/build/types/available-products-request.d.ts +28 -28
- package/build/types/availablility-request.d.ts +11 -11
- package/build/types/duration.d.ts +4 -4
- package/build/types/entry-line-meta-data.d.ts +5 -5
- package/build/types/enums/online-payment-type.d.ts +3 -3
- package/build/types/enums/print-action-group.enum.d.ts +10 -10
- package/build/types/flight-leg.d.ts +18 -18
- package/build/types/flight.d.ts +23 -23
- package/build/types/hotel.d.ts +34 -34
- package/build/types/offer/affiliates.d.ts +5 -5
- package/build/types/offer/booking-v2/request/booking-package-update-request.d.ts +4 -0
- package/build/types/offer/booking-v2/request/index.d.ts +1 -0
- package/build/types/offer/booking-v2/request/tour-codes-request.d.ts +3 -3
- package/build/types/offer/package-search-response.d.ts +4 -4
- package/build/types/option-pax.d.ts +4 -4
- package/build/types/option.d.ts +26 -26
- package/build/types/package-details-request.d.ts +12 -12
- package/build/types/package-flight.d.ts +11 -11
- package/build/types/package-flights.d.ts +5 -5
- package/build/types/package-option.d.ts +19 -19
- package/build/types/package-room-option.d.ts +8 -8
- package/build/types/package-room.d.ts +7 -7
- package/build/types/package-search-destination.d.ts +9 -9
- package/build/types/package-search-request-date.d.ts +4 -4
- package/build/types/package-search-request-room.d.ts +5 -5
- package/build/types/package-search-request.d.ts +21 -21
- package/build/types/package-search-response.d.ts +4 -4
- package/build/types/package-search-result.d.ts +12 -12
- package/build/types/package-sub-option.d.ts +6 -6
- package/build/types/pax.d.ts +4 -4
- package/build/types/regime.d.ts +5 -5
- package/build/types/traveler-grouping.d.ts +5 -5
- package/build/utils/booking-v2-client.d.ts +2 -1
- package/build/utils/bookingClient.d.ts +9 -9
- package/build/utils/client.d.ts +4 -4
- package/package.json +60 -60
- package/rollup.config.js +20 -20
- package/src/index.ts +69 -69
- package/src/types/aapi/accommodation-occupancy.ts +9 -9
- package/src/types/aapi/accommodation-with-available-places.ts +15 -15
- package/src/types/aapi/accommodation.ts +8 -8
- package/src/types/aapi/additional-services.ts +6 -6
- package/src/types/aapi/alternative-flight-data.ts +11 -11
- package/src/types/aapi/alternative-flight-leg.ts +18 -18
- package/src/types/aapi/alternative-flight.ts +13 -13
- package/src/types/aapi/availability-request.ts +12 -12
- package/src/types/aapi/availability.ts +6 -6
- package/src/types/aapi/available-products-request.ts +33 -33
- package/src/types/aapi/duration.ts +4 -4
- package/src/types/aapi/flight-leg.ts +18 -18
- package/src/types/aapi/flight.ts +24 -24
- package/src/types/aapi/hotel.ts +36 -36
- package/src/types/aapi/index.ts +22 -22
- package/src/types/aapi/mollie-payment-request.ts +6 -6
- package/src/types/aapi/mollie-payment.ts +3 -3
- package/src/types/aapi/option-pax.ts +4 -4
- package/src/types/aapi/option.ts +29 -29
- package/src/types/aapi/pax.ts +4 -4
- package/src/types/aapi/price-detail.ts +8 -8
- package/src/types/aapi/regime.ts +5 -5
- package/src/types/aapi/traveler-grouping.ts +5 -5
- package/src/types/company/agent-print-action-request.ts +11 -11
- package/src/types/company/agent-print-action.ts +7 -7
- package/src/types/company/index.ts +2 -2
- package/src/types/enums/allotment-type.ts +5 -5
- package/src/types/enums/availability-search-type.ts +4 -4
- package/src/types/enums/dossier-type.ts +6 -6
- package/src/types/enums/entry-line-flag.ts +6 -6
- package/src/types/enums/entry-line-status.ts +19 -19
- package/src/types/enums/entry-status.ts +8 -8
- package/src/types/enums/export-status.ts +5 -5
- package/src/types/enums/gender.ts +5 -5
- package/src/types/enums/index.ts +16 -16
- package/src/types/enums/meta-data-type.ts +10 -10
- package/src/types/enums/payment-type.ts +6 -6
- package/src/types/enums/price-chart-type.ts +4 -4
- package/src/types/enums/print-action-group.ts +10 -10
- package/src/types/enums/requirement-type.ts +5 -5
- package/src/types/enums/room-type.ts +8 -8
- package/src/types/enums/sale-type.ts +4 -4
- package/src/types/enums/service-type.ts +28 -28
- package/src/types/index.ts +27 -27
- package/src/types/offer/additional-services.ts +6 -6
- package/src/types/offer/address.ts +11 -11
- package/src/types/offer/affiliate.ts +5 -5
- package/src/types/offer/alternative-flight-data.ts +11 -11
- package/src/types/offer/alternative-flight-leg.ts +18 -18
- package/src/types/offer/alternative-flight.ts +15 -15
- package/src/types/offer/available-package-accommodation.ts +8 -8
- package/src/types/offer/available-package-flight.ts +10 -10
- package/src/types/offer/available-package-option.ts +18 -18
- package/src/types/offer/available-package-pax-price.ts +6 -6
- package/src/types/offer/available-package-regime.ts +4 -4
- package/src/types/offer/available-package.ts +8 -8
- package/src/types/offer/base-price.ts +6 -6
- package/src/types/offer/base-prices-from-date-request.ts +12 -12
- package/src/types/offer/base-prices-request.ts +12 -12
- package/src/types/offer/book-request.ts +38 -38
- package/src/types/offer/booking-response.ts +4 -4
- package/src/types/offer/booking-v2/index.ts +3 -3
- package/src/types/offer/booking-v2/request/bookable-dates-request.ts +4 -4
- package/src/types/offer/booking-v2/request/booking-package-address.ts +14 -14
- package/src/types/offer/booking-v2/request/booking-package-book-request.ts +22 -22
- package/src/types/offer/booking-v2/request/booking-package-destination.ts +9 -9
- package/src/types/offer/booking-v2/request/booking-package-details-request.ts +24 -24
- package/src/types/offer/booking-v2/request/booking-package-flight-pool-request.ts +13 -13
- package/src/types/offer/booking-v2/request/booking-package-request.ts +5 -5
- package/src/types/offer/booking-v2/request/booking-package-search-request.ts +29 -29
- package/src/types/offer/booking-v2/request/booking-package-update-request.ts +5 -0
- package/src/types/offer/booking-v2/request/booking-package-voucher-request.ts +4 -4
- package/src/types/offer/booking-v2/request/index.ts +13 -12
- package/src/types/offer/booking-v2/request/selected-flight.ts +6 -6
- package/src/types/offer/booking-v2/request/selected-hotel.ts +5 -5
- package/src/types/offer/booking-v2/request/tour-codes.request.ts +3 -3
- package/src/types/offer/booking-v2/response/bookable-dates.ts +4 -4
- package/src/types/offer/booking-v2/response/booking-package-allotment-info.ts +17 -17
- package/src/types/offer/booking-v2/response/booking-package-dossier.ts +6 -6
- package/src/types/offer/booking-v2/response/booking-package-flight-pool.ts +6 -6
- package/src/types/offer/booking-v2/response/booking-package-hotel-pool.ts +5 -5
- package/src/types/offer/booking-v2/response/booking-package-item.ts +40 -40
- package/src/types/offer/booking-v2/response/booking-price-detail.ts +19 -19
- package/src/types/offer/booking-v2/response/booking-price-details.ts +10 -10
- package/src/types/offer/booking-v2/response/booking-price-per-pax.ts +4 -4
- package/src/types/offer/booking-v2/response/booking-product-notification.ts +7 -7
- package/src/types/offer/booking-v2/response/booking-travel-agent.ts +7 -7
- package/src/types/offer/booking-v2/response/booking-voucher-result.ts +3 -3
- package/src/types/offer/booking-v2/response/changed-line.ts +4 -4
- package/src/types/offer/booking-v2/response/index.ts +15 -15
- package/src/types/offer/booking-v2/response/tide-response.ts +6 -6
- package/src/types/offer/booking-v2/response/tour-codes-response.ts +3 -3
- package/src/types/offer/booking-v2/shared/booking-option-group.ts +5 -5
- package/src/types/offer/booking-v2/shared/booking-option-pax.ts +8 -8
- package/src/types/offer/booking-v2/shared/booking-option-unit.ts +7 -7
- package/src/types/offer/booking-v2/shared/booking-package-availability.ts +7 -7
- package/src/types/offer/booking-v2/shared/booking-package-flight-meta-data-line.ts +17 -17
- package/src/types/offer/booking-v2/shared/booking-package-flight-meta-data.ts +11 -11
- package/src/types/offer/booking-v2/shared/booking-package-flight.ts +15 -15
- package/src/types/offer/booking-v2/shared/booking-package-hotel-option.ts +10 -10
- package/src/types/offer/booking-v2/shared/booking-package-hotel-room.ts +6 -6
- package/src/types/offer/booking-v2/shared/booking-package-hotel.ts +25 -25
- package/src/types/offer/booking-v2/shared/booking-package-line.ts +12 -12
- package/src/types/offer/booking-v2/shared/booking-package-option.ts +48 -48
- package/src/types/offer/booking-v2/shared/booking-package-pax.ts +19 -19
- package/src/types/offer/booking-v2/shared/booking-package-request-room.ts +6 -6
- package/src/types/offer/booking-v2/shared/booking-package-room-option.ts +17 -17
- package/src/types/offer/booking-v2/shared/booking-package-room.ts +6 -6
- package/src/types/offer/booking-v2/shared/booking-package-tag.ts +5 -5
- package/src/types/offer/booking-v2/shared/booking-package.ts +13 -13
- package/src/types/offer/booking-v2/shared/index.ts +19 -19
- package/src/types/offer/booking-v2/shared/per-booking-package-option.ts +10 -10
- package/src/types/offer/booking-v2/shared/per-package-option.ts +10 -10
- package/src/types/offer/booking-v2/shared/per-pax-package-option.ts +6 -6
- package/src/types/offer/booking-v2/shared/per-unit-package-option.ts +8 -8
- package/src/types/offer/cached-package-search-result.ts +6 -6
- package/src/types/offer/confirmed-dossier-check.ts +6 -6
- package/src/types/offer/country-item.ts +4 -4
- package/src/types/offer/crm-contact-request.ts +37 -37
- package/src/types/offer/customer-request.ts +5 -5
- package/src/types/offer/dossier-default-product.ts +14 -14
- package/src/types/offer/entry-check-response.ts +5 -5
- package/src/types/offer/entry-line-meta-data.ts +5 -5
- package/src/types/offer/entry-line-pax.ts +9 -9
- package/src/types/offer/entry-line.ts +74 -74
- package/src/types/offer/entry-price-line.ts +40 -40
- package/src/types/offer/entry-room2.ts +5 -5
- package/src/types/offer/entry.ts +60 -60
- package/src/types/offer/flight-meta-data-line.ts +16 -16
- package/src/types/offer/flight-meta-data.ts +15 -15
- package/src/types/offer/flight-pool.ts +6 -6
- package/src/types/offer/index.ts +72 -72
- package/src/types/offer/language.ts +5 -5
- package/src/types/offer/member-confirmation-request.ts +5 -5
- package/src/types/offer/member-forgot-password-request.ts +4 -4
- package/src/types/offer/member-info.ts +10 -10
- package/src/types/offer/member-login-request.ts +4 -4
- package/src/types/offer/member-reset-password-request.ts +4 -4
- package/src/types/offer/multiroom-book-request.ts +11 -11
- package/src/types/offer/note.ts +16 -16
- package/src/types/offer/other-product.ts +14 -14
- package/src/types/offer/package-book-request-room.ts +6 -6
- package/src/types/offer/package-book-request.ts +13 -13
- package/src/types/offer/package-flight.ts +14 -14
- package/src/types/offer/package-flights.ts +6 -6
- package/src/types/offer/package-option.ts +23 -23
- package/src/types/offer/package-price-details-request-room.ts +4 -4
- package/src/types/offer/package-price-details-request.ts +9 -9
- package/src/types/offer/package-room-option.ts +10 -10
- package/src/types/offer/package-room.ts +8 -8
- package/src/types/offer/package-search-destination.ts +9 -9
- package/src/types/offer/package-search-request-date.ts +4 -4
- package/src/types/offer/package-search-request-room.ts +5 -5
- package/src/types/offer/package-search-request.ts +23 -23
- package/src/types/offer/package-search-result.ts +13 -13
- package/src/types/offer/package-sub-option.ts +6 -6
- package/src/types/offer/page-result.ts +5 -5
- package/src/types/offer/pax.ts +30 -30
- package/src/types/offer/payment.ts +20 -20
- package/src/types/offer/person-country-preference.ts +7 -7
- package/src/types/offer/person-location-preference.ts +7 -7
- package/src/types/offer/person-oord-preference.ts +7 -7
- package/src/types/offer/person-period-date-range-preference.ts +6 -6
- package/src/types/offer/person-period-preference.ts +7 -7
- package/src/types/offer/person-region-preference.ts +7 -7
- package/src/types/offer/person-tour-group-preference.ts +7 -7
- package/src/types/offer/price-detail.ts +19 -19
- package/src/types/offer/price-per-pax.ts +6 -6
- package/src/types/offer/product-notification-result.ts +9 -9
- package/src/types/offer/web-contact-form-request.ts +13 -13
- package/src/types/offer/web-contact-has-tag-request.ts +4 -4
- package/src/types/tide-client-config.ts +4 -4
- package/src/utils/booking-client.ts +310 -310
- package/src/utils/booking-v2-client.ts +208 -194
- package/src/utils/common-client.ts +33 -33
- package/src/utils/json.ts +26 -26
- package/src/utils/member-client.ts +76 -76
- package/src/utils/mollie-client.ts +27 -27
- package/src/utils/search-client.ts +22 -22
- package/src/utils/web-client.ts +46 -46
- package/src/utils/web-contact-client.ts +43 -43
- package/src/utils/web-file.ts +24 -24
- package/tests/bookingClient.test.ts +728 -728
- package/tests/mocks/available-products.json +183 -183
- package/tests/mocks/base-prices-from-date.json +74 -74
- package/tests/mocks/base-prices.json +236 -236
- package/tests/mocks/entry-multiroom.json +2043 -2043
- package/tests/mocks/entry-multiroom.short.json +4 -4
- package/tests/mocks/offer-entry.json +2043 -2043
- package/tests/mocks/offer-entry.short.json +4 -4
- package/tests/mocks/package-entry.json +2043 -2043
- package/tests/mocks/package-entry.short.json +4 -4
- package/tests/mocks/package-offer-entry.json +2043 -2043
- package/tests/mocks/package-offer-entry.short.json +4 -4
- package/tests/mocks/package-price-details.json +176 -176
- package/tests/mocks/package-search.json +179 -179
- package/tests/webClient.test.ts +38 -38
- package/tests/webContactClient.test.ts +61 -61
- package/tsconfig.json +23 -23
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
import { TideClientConfig } from "..";
|
|
2
|
-
import {
|
|
3
|
-
MemberConfirmationRequest,
|
|
4
|
-
MemberForgotPasswordRequest,
|
|
5
|
-
MemberInfo,
|
|
6
|
-
MemberLoginRequest,
|
|
7
|
-
MemberResetPasswordRequest,
|
|
8
|
-
} from "../types";
|
|
9
|
-
import { post } from "./common-client";
|
|
10
|
-
import { post as apiPost } from "./api";
|
|
11
|
-
|
|
12
|
-
const ENDPOINT = "/api/member";
|
|
13
|
-
const ENDPOINT_LOGIN = `${ENDPOINT}/login`;
|
|
14
|
-
const ENDPOINT_LOGOUT = `${ENDPOINT}/logout`;
|
|
15
|
-
const ENDPOINT_CONFIRM = `${ENDPOINT}/confirm`;
|
|
16
|
-
const ENDPOINT_FORGOT_PASSWORD = `${ENDPOINT}/forgot-password`;
|
|
17
|
-
const ENDPOINT_RESET_PASSWORD = `${ENDPOINT}/reset-password`;
|
|
18
|
-
|
|
19
|
-
export const login = (
|
|
20
|
-
config: TideClientConfig,
|
|
21
|
-
request: MemberLoginRequest,
|
|
22
|
-
signal?: AbortSignal
|
|
23
|
-
): Promise<MemberInfo> => {
|
|
24
|
-
const url = `${config.host}${ENDPOINT_LOGIN}`;
|
|
25
|
-
const apiKey = config.apiKey;
|
|
26
|
-
const body = JSON.stringify(request);
|
|
27
|
-
|
|
28
|
-
return post(url, apiKey, body, signal);
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
export const logout = (
|
|
32
|
-
config: TideClientConfig,
|
|
33
|
-
signal?: AbortSignal
|
|
34
|
-
): Promise<Response> => {
|
|
35
|
-
const url = `${config.host}${ENDPOINT_LOGOUT}`;
|
|
36
|
-
const apiKey = config.apiKey;
|
|
37
|
-
const body = "";
|
|
38
|
-
|
|
39
|
-
return apiPost(url, apiKey, body, signal);
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
export const confirm = (
|
|
43
|
-
config: TideClientConfig,
|
|
44
|
-
request: MemberConfirmationRequest,
|
|
45
|
-
signal?: AbortSignal
|
|
46
|
-
): Promise<Response> => {
|
|
47
|
-
const url = `${config.host}${ENDPOINT_CONFIRM}`;
|
|
48
|
-
const apiKey = config.apiKey;
|
|
49
|
-
const body = JSON.stringify(request);
|
|
50
|
-
|
|
51
|
-
return apiPost(url, apiKey, body, signal);
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
export const forgotPassword = (
|
|
55
|
-
config: TideClientConfig,
|
|
56
|
-
request: MemberForgotPasswordRequest,
|
|
57
|
-
signal?: AbortSignal
|
|
58
|
-
): Promise<Response> => {
|
|
59
|
-
const url = `${config.host}${ENDPOINT_FORGOT_PASSWORD}`;
|
|
60
|
-
const apiKey = config.apiKey;
|
|
61
|
-
const body = JSON.stringify(request);
|
|
62
|
-
|
|
63
|
-
return apiPost(url, apiKey, body, signal);
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
export const resetPassword = (
|
|
67
|
-
config: TideClientConfig,
|
|
68
|
-
request: MemberResetPasswordRequest,
|
|
69
|
-
signal?: AbortSignal
|
|
70
|
-
): Promise<Response> => {
|
|
71
|
-
const url = `${config.host}${ENDPOINT_RESET_PASSWORD}`;
|
|
72
|
-
const apiKey = config.apiKey;
|
|
73
|
-
const body = JSON.stringify(request);
|
|
74
|
-
|
|
75
|
-
return apiPost(url, apiKey, body, signal);
|
|
76
|
-
};
|
|
1
|
+
import { TideClientConfig } from "..";
|
|
2
|
+
import {
|
|
3
|
+
MemberConfirmationRequest,
|
|
4
|
+
MemberForgotPasswordRequest,
|
|
5
|
+
MemberInfo,
|
|
6
|
+
MemberLoginRequest,
|
|
7
|
+
MemberResetPasswordRequest,
|
|
8
|
+
} from "../types";
|
|
9
|
+
import { post } from "./common-client";
|
|
10
|
+
import { post as apiPost } from "./api";
|
|
11
|
+
|
|
12
|
+
const ENDPOINT = "/api/member";
|
|
13
|
+
const ENDPOINT_LOGIN = `${ENDPOINT}/login`;
|
|
14
|
+
const ENDPOINT_LOGOUT = `${ENDPOINT}/logout`;
|
|
15
|
+
const ENDPOINT_CONFIRM = `${ENDPOINT}/confirm`;
|
|
16
|
+
const ENDPOINT_FORGOT_PASSWORD = `${ENDPOINT}/forgot-password`;
|
|
17
|
+
const ENDPOINT_RESET_PASSWORD = `${ENDPOINT}/reset-password`;
|
|
18
|
+
|
|
19
|
+
export const login = (
|
|
20
|
+
config: TideClientConfig,
|
|
21
|
+
request: MemberLoginRequest,
|
|
22
|
+
signal?: AbortSignal
|
|
23
|
+
): Promise<MemberInfo> => {
|
|
24
|
+
const url = `${config.host}${ENDPOINT_LOGIN}`;
|
|
25
|
+
const apiKey = config.apiKey;
|
|
26
|
+
const body = JSON.stringify(request);
|
|
27
|
+
|
|
28
|
+
return post(url, apiKey, body, signal);
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export const logout = (
|
|
32
|
+
config: TideClientConfig,
|
|
33
|
+
signal?: AbortSignal
|
|
34
|
+
): Promise<Response> => {
|
|
35
|
+
const url = `${config.host}${ENDPOINT_LOGOUT}`;
|
|
36
|
+
const apiKey = config.apiKey;
|
|
37
|
+
const body = "";
|
|
38
|
+
|
|
39
|
+
return apiPost(url, apiKey, body, signal);
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export const confirm = (
|
|
43
|
+
config: TideClientConfig,
|
|
44
|
+
request: MemberConfirmationRequest,
|
|
45
|
+
signal?: AbortSignal
|
|
46
|
+
): Promise<Response> => {
|
|
47
|
+
const url = `${config.host}${ENDPOINT_CONFIRM}`;
|
|
48
|
+
const apiKey = config.apiKey;
|
|
49
|
+
const body = JSON.stringify(request);
|
|
50
|
+
|
|
51
|
+
return apiPost(url, apiKey, body, signal);
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export const forgotPassword = (
|
|
55
|
+
config: TideClientConfig,
|
|
56
|
+
request: MemberForgotPasswordRequest,
|
|
57
|
+
signal?: AbortSignal
|
|
58
|
+
): Promise<Response> => {
|
|
59
|
+
const url = `${config.host}${ENDPOINT_FORGOT_PASSWORD}`;
|
|
60
|
+
const apiKey = config.apiKey;
|
|
61
|
+
const body = JSON.stringify(request);
|
|
62
|
+
|
|
63
|
+
return apiPost(url, apiKey, body, signal);
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
export const resetPassword = (
|
|
67
|
+
config: TideClientConfig,
|
|
68
|
+
request: MemberResetPasswordRequest,
|
|
69
|
+
signal?: AbortSignal
|
|
70
|
+
): Promise<Response> => {
|
|
71
|
+
const url = `${config.host}${ENDPOINT_RESET_PASSWORD}`;
|
|
72
|
+
const apiKey = config.apiKey;
|
|
73
|
+
const body = JSON.stringify(request);
|
|
74
|
+
|
|
75
|
+
return apiPost(url, apiKey, body, signal);
|
|
76
|
+
};
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import {
|
|
2
|
-
MolliePayment,
|
|
3
|
-
MolliePaymentRequest,
|
|
4
|
-
TideClientConfig,
|
|
5
|
-
} from "../types";
|
|
6
|
-
|
|
7
|
-
import { post } from "./common-client";
|
|
8
|
-
|
|
9
|
-
const ENDPOINT = "/api/mollie";
|
|
10
|
-
const ENDPOINT_CREATE_PAYMENTS = `${ENDPOINT}/create-payment`;
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* api/mollie/create-payment
|
|
14
|
-
* @param request
|
|
15
|
-
* @returns mollie payment url
|
|
16
|
-
*/
|
|
17
|
-
export const getMolliePayment = (
|
|
18
|
-
config: TideClientConfig,
|
|
19
|
-
request: MolliePaymentRequest,
|
|
20
|
-
signal?: AbortSignal
|
|
21
|
-
): Promise<MolliePayment> => {
|
|
22
|
-
const url = `${config.host}${ENDPOINT_CREATE_PAYMENTS}`;
|
|
23
|
-
const apiKey = config.apiKey;
|
|
24
|
-
const body = JSON.stringify(request);
|
|
25
|
-
|
|
26
|
-
return post(url, apiKey, body, signal);
|
|
27
|
-
};
|
|
1
|
+
import {
|
|
2
|
+
MolliePayment,
|
|
3
|
+
MolliePaymentRequest,
|
|
4
|
+
TideClientConfig,
|
|
5
|
+
} from "../types";
|
|
6
|
+
|
|
7
|
+
import { post } from "./common-client";
|
|
8
|
+
|
|
9
|
+
const ENDPOINT = "/api/mollie";
|
|
10
|
+
const ENDPOINT_CREATE_PAYMENTS = `${ENDPOINT}/create-payment`;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* api/mollie/create-payment
|
|
14
|
+
* @param request
|
|
15
|
+
* @returns mollie payment url
|
|
16
|
+
*/
|
|
17
|
+
export const getMolliePayment = (
|
|
18
|
+
config: TideClientConfig,
|
|
19
|
+
request: MolliePaymentRequest,
|
|
20
|
+
signal?: AbortSignal
|
|
21
|
+
): Promise<MolliePayment> => {
|
|
22
|
+
const url = `${config.host}${ENDPOINT_CREATE_PAYMENTS}`;
|
|
23
|
+
const apiKey = config.apiKey;
|
|
24
|
+
const body = JSON.stringify(request);
|
|
25
|
+
|
|
26
|
+
return post(url, apiKey, body, signal);
|
|
27
|
+
};
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { CountryItem, PageResult, TideClientConfig } from "../types";
|
|
2
|
-
import { get } from "./common-client";
|
|
3
|
-
|
|
4
|
-
const ENDPOINT = "/api/web/search";
|
|
5
|
-
const ENDPOINT_COUNTRIES = `${ENDPOINT}/countries`;
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* api/search/countries
|
|
9
|
-
* Gets all Countries
|
|
10
|
-
* @param config
|
|
11
|
-
* @param signal
|
|
12
|
-
* @returns OK if succeeded.
|
|
13
|
-
*/
|
|
14
|
-
export const getCountries = (
|
|
15
|
-
config: TideClientConfig,
|
|
16
|
-
signal?: AbortSignal
|
|
17
|
-
): Promise<PageResult<CountryItem>> => {
|
|
18
|
-
const url = `${config.host}${ENDPOINT_COUNTRIES}`;
|
|
19
|
-
const apiKey = config.apiKey;
|
|
20
|
-
|
|
21
|
-
return get(url, apiKey, signal, true);
|
|
22
|
-
};
|
|
1
|
+
import { CountryItem, PageResult, TideClientConfig } from "../types";
|
|
2
|
+
import { get } from "./common-client";
|
|
3
|
+
|
|
4
|
+
const ENDPOINT = "/api/web/search";
|
|
5
|
+
const ENDPOINT_COUNTRIES = `${ENDPOINT}/countries`;
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* api/search/countries
|
|
9
|
+
* Gets all Countries
|
|
10
|
+
* @param config
|
|
11
|
+
* @param signal
|
|
12
|
+
* @returns OK if succeeded.
|
|
13
|
+
*/
|
|
14
|
+
export const getCountries = (
|
|
15
|
+
config: TideClientConfig,
|
|
16
|
+
signal?: AbortSignal
|
|
17
|
+
): Promise<PageResult<CountryItem>> => {
|
|
18
|
+
const url = `${config.host}${ENDPOINT_COUNTRIES}`;
|
|
19
|
+
const apiKey = config.apiKey;
|
|
20
|
+
|
|
21
|
+
return get(url, apiKey, signal, true);
|
|
22
|
+
};
|
package/src/utils/web-client.ts
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import { CrmContactRequest, TideClientConfig } from "../types";
|
|
2
|
-
import { Affiliate } from "../types/offer/affiliate";
|
|
3
|
-
|
|
4
|
-
import { post } from "./api";
|
|
5
|
-
import { get } from "./common-client";
|
|
6
|
-
|
|
7
|
-
const ENDPOINT = "/api/web";
|
|
8
|
-
const ENDPOINT_CREATE_CRM_CONTACT = `${ENDPOINT}/crmcontact`;
|
|
9
|
-
const ENDPOINT_CREATE_AFFILIATES = `${ENDPOINT}/affiliates`;
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* api/web/crmcontact
|
|
13
|
-
* Creates a CRM contact.
|
|
14
|
-
* @param config
|
|
15
|
-
* @param request
|
|
16
|
-
* @param signal
|
|
17
|
-
* @returns OK if succeeded.
|
|
18
|
-
*/
|
|
19
|
-
export const createCrmContact = (
|
|
20
|
-
config: TideClientConfig,
|
|
21
|
-
request: CrmContactRequest,
|
|
22
|
-
signal?: AbortSignal
|
|
23
|
-
): Promise<Response> => {
|
|
24
|
-
const url = `${config.host}${ENDPOINT_CREATE_CRM_CONTACT}`;
|
|
25
|
-
const apiKey = config.apiKey;
|
|
26
|
-
const body = JSON.stringify(request);
|
|
27
|
-
|
|
28
|
-
return post(url, apiKey, body, signal);
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* api/web/affiliates
|
|
33
|
-
* Gets all Affiliates
|
|
34
|
-
* @param config
|
|
35
|
-
* @param signal
|
|
36
|
-
* @returns OK if succeeded.
|
|
37
|
-
*/
|
|
38
|
-
export const getAffiliates = (
|
|
39
|
-
config: TideClientConfig,
|
|
40
|
-
signal?: AbortSignal
|
|
41
|
-
): Promise<[Affiliate]> => {
|
|
42
|
-
const url = `${config.host}${ENDPOINT_CREATE_AFFILIATES}`;
|
|
43
|
-
const apiKey = config.apiKey;
|
|
44
|
-
|
|
45
|
-
return get(url, apiKey, signal, true);
|
|
46
|
-
};
|
|
1
|
+
import { CrmContactRequest, TideClientConfig } from "../types";
|
|
2
|
+
import { Affiliate } from "../types/offer/affiliate";
|
|
3
|
+
|
|
4
|
+
import { post } from "./api";
|
|
5
|
+
import { get } from "./common-client";
|
|
6
|
+
|
|
7
|
+
const ENDPOINT = "/api/web";
|
|
8
|
+
const ENDPOINT_CREATE_CRM_CONTACT = `${ENDPOINT}/crmcontact`;
|
|
9
|
+
const ENDPOINT_CREATE_AFFILIATES = `${ENDPOINT}/affiliates`;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* api/web/crmcontact
|
|
13
|
+
* Creates a CRM contact.
|
|
14
|
+
* @param config
|
|
15
|
+
* @param request
|
|
16
|
+
* @param signal
|
|
17
|
+
* @returns OK if succeeded.
|
|
18
|
+
*/
|
|
19
|
+
export const createCrmContact = (
|
|
20
|
+
config: TideClientConfig,
|
|
21
|
+
request: CrmContactRequest,
|
|
22
|
+
signal?: AbortSignal
|
|
23
|
+
): Promise<Response> => {
|
|
24
|
+
const url = `${config.host}${ENDPOINT_CREATE_CRM_CONTACT}`;
|
|
25
|
+
const apiKey = config.apiKey;
|
|
26
|
+
const body = JSON.stringify(request);
|
|
27
|
+
|
|
28
|
+
return post(url, apiKey, body, signal);
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* api/web/affiliates
|
|
33
|
+
* Gets all Affiliates
|
|
34
|
+
* @param config
|
|
35
|
+
* @param signal
|
|
36
|
+
* @returns OK if succeeded.
|
|
37
|
+
*/
|
|
38
|
+
export const getAffiliates = (
|
|
39
|
+
config: TideClientConfig,
|
|
40
|
+
signal?: AbortSignal
|
|
41
|
+
): Promise<[Affiliate]> => {
|
|
42
|
+
const url = `${config.host}${ENDPOINT_CREATE_AFFILIATES}`;
|
|
43
|
+
const apiKey = config.apiKey;
|
|
44
|
+
|
|
45
|
+
return get(url, apiKey, signal, true);
|
|
46
|
+
};
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
import {
|
|
2
|
-
TideClientConfig,
|
|
3
|
-
WebContactFormRequest,
|
|
4
|
-
WebContactHasTagRequest,
|
|
5
|
-
} from "../types";
|
|
6
|
-
|
|
7
|
-
import { post } from "./api";
|
|
8
|
-
|
|
9
|
-
const ENDPOINT = "/api/web/contact";
|
|
10
|
-
const ENDPOINT_CONTACT_FORM = `${ENDPOINT}/contact-form`;
|
|
11
|
-
const ENDPOINT_CONTACT_HAS_TAG = `${ENDPOINT}/has-tag`;
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* api/web/contact/contact-form
|
|
15
|
-
* Processes a contact form.
|
|
16
|
-
* @param config
|
|
17
|
-
* @param request
|
|
18
|
-
* @param signal
|
|
19
|
-
* @returns OK if succeeded.
|
|
20
|
-
*/
|
|
21
|
-
export const contactForm = (
|
|
22
|
-
config: TideClientConfig,
|
|
23
|
-
request: WebContactFormRequest,
|
|
24
|
-
signal?: AbortSignal
|
|
25
|
-
): Promise<Response> => {
|
|
26
|
-
const url = `${config.host}${ENDPOINT_CONTACT_FORM}`;
|
|
27
|
-
const apiKey = config.apiKey;
|
|
28
|
-
const body = JSON.stringify(request);
|
|
29
|
-
|
|
30
|
-
return post(url, apiKey, body, signal);
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
export const contactHasTag = (
|
|
34
|
-
config: TideClientConfig,
|
|
35
|
-
request: WebContactHasTagRequest,
|
|
36
|
-
signal?: AbortSignal
|
|
37
|
-
): Promise<Response> => {
|
|
38
|
-
const url = `${config.host}${ENDPOINT_CONTACT_HAS_TAG}`;
|
|
39
|
-
const apiKey = config.apiKey;
|
|
40
|
-
const body = JSON.stringify(request);
|
|
41
|
-
|
|
42
|
-
return post(url, apiKey, body, signal);
|
|
43
|
-
};
|
|
1
|
+
import {
|
|
2
|
+
TideClientConfig,
|
|
3
|
+
WebContactFormRequest,
|
|
4
|
+
WebContactHasTagRequest,
|
|
5
|
+
} from "../types";
|
|
6
|
+
|
|
7
|
+
import { post } from "./api";
|
|
8
|
+
|
|
9
|
+
const ENDPOINT = "/api/web/contact";
|
|
10
|
+
const ENDPOINT_CONTACT_FORM = `${ENDPOINT}/contact-form`;
|
|
11
|
+
const ENDPOINT_CONTACT_HAS_TAG = `${ENDPOINT}/has-tag`;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* api/web/contact/contact-form
|
|
15
|
+
* Processes a contact form.
|
|
16
|
+
* @param config
|
|
17
|
+
* @param request
|
|
18
|
+
* @param signal
|
|
19
|
+
* @returns OK if succeeded.
|
|
20
|
+
*/
|
|
21
|
+
export const contactForm = (
|
|
22
|
+
config: TideClientConfig,
|
|
23
|
+
request: WebContactFormRequest,
|
|
24
|
+
signal?: AbortSignal
|
|
25
|
+
): Promise<Response> => {
|
|
26
|
+
const url = `${config.host}${ENDPOINT_CONTACT_FORM}`;
|
|
27
|
+
const apiKey = config.apiKey;
|
|
28
|
+
const body = JSON.stringify(request);
|
|
29
|
+
|
|
30
|
+
return post(url, apiKey, body, signal);
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export const contactHasTag = (
|
|
34
|
+
config: TideClientConfig,
|
|
35
|
+
request: WebContactHasTagRequest,
|
|
36
|
+
signal?: AbortSignal
|
|
37
|
+
): Promise<Response> => {
|
|
38
|
+
const url = `${config.host}${ENDPOINT_CONTACT_HAS_TAG}`;
|
|
39
|
+
const apiKey = config.apiKey;
|
|
40
|
+
const body = JSON.stringify(request);
|
|
41
|
+
|
|
42
|
+
return post(url, apiKey, body, signal);
|
|
43
|
+
};
|
package/src/utils/web-file.ts
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { TideClientConfig } from "../types";
|
|
2
|
-
import { get } from "./api";
|
|
3
|
-
|
|
4
|
-
const ENDPOINT = "/api/web/file";
|
|
5
|
-
const ENDPOINT_FEED = `${ENDPOINT}/feed`;
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* api/web/file/feed
|
|
9
|
-
* fetch a xml from blob feed.
|
|
10
|
-
* @param config
|
|
11
|
-
* @param request
|
|
12
|
-
* @param signal
|
|
13
|
-
* @returns OK if succeeded.
|
|
14
|
-
*/
|
|
15
|
-
export const feedXml = (
|
|
16
|
-
config: TideClientConfig,
|
|
17
|
-
request: string,
|
|
18
|
-
signal?: AbortSignal
|
|
19
|
-
): Promise<Response> => {
|
|
20
|
-
const url = `${config.host}${ENDPOINT_FEED}/${request}`;
|
|
21
|
-
const apiKey = config.apiKey;
|
|
22
|
-
|
|
23
|
-
return get(url, apiKey, signal);
|
|
24
|
-
};
|
|
1
|
+
import { TideClientConfig } from "../types";
|
|
2
|
+
import { get } from "./api";
|
|
3
|
+
|
|
4
|
+
const ENDPOINT = "/api/web/file";
|
|
5
|
+
const ENDPOINT_FEED = `${ENDPOINT}/feed`;
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* api/web/file/feed
|
|
9
|
+
* fetch a xml from blob feed.
|
|
10
|
+
* @param config
|
|
11
|
+
* @param request
|
|
12
|
+
* @param signal
|
|
13
|
+
* @returns OK if succeeded.
|
|
14
|
+
*/
|
|
15
|
+
export const feedXml = (
|
|
16
|
+
config: TideClientConfig,
|
|
17
|
+
request: string,
|
|
18
|
+
signal?: AbortSignal
|
|
19
|
+
): Promise<Response> => {
|
|
20
|
+
const url = `${config.host}${ENDPOINT_FEED}/${request}`;
|
|
21
|
+
const apiKey = config.apiKey;
|
|
22
|
+
|
|
23
|
+
return get(url, apiKey, signal);
|
|
24
|
+
};
|