@bookinglab/booking-journey-api 2.16.0 → 2.17.0
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/dist/index.d.cts +72 -1
- package/dist/index.d.ts +72 -1
- package/dist/index.js +29 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1646,6 +1646,65 @@ interface BookingLabListBookingsResponse {
|
|
|
1646
1646
|
_links?: Record<string, any>;
|
|
1647
1647
|
[key: string]: any;
|
|
1648
1648
|
}
|
|
1649
|
+
interface BookingLabUpdateBookingClient {
|
|
1650
|
+
first_name?: string;
|
|
1651
|
+
first_name_extra?: string;
|
|
1652
|
+
last_name?: string;
|
|
1653
|
+
last_name_extra?: string;
|
|
1654
|
+
email?: string;
|
|
1655
|
+
mobile_prefix?: string;
|
|
1656
|
+
mobile?: string;
|
|
1657
|
+
mobile_prefix_country_code?: string;
|
|
1658
|
+
phone_prefix?: string;
|
|
1659
|
+
phone?: string;
|
|
1660
|
+
phone_prefix_country_code?: string;
|
|
1661
|
+
address1?: string;
|
|
1662
|
+
address2?: string;
|
|
1663
|
+
address3?: string;
|
|
1664
|
+
address4?: string;
|
|
1665
|
+
address5?: string;
|
|
1666
|
+
postcode?: string;
|
|
1667
|
+
country?: string;
|
|
1668
|
+
member_type?: number;
|
|
1669
|
+
member_level_id?: number;
|
|
1670
|
+
mem_join_date?: string;
|
|
1671
|
+
time_zone?: string;
|
|
1672
|
+
consent?: boolean;
|
|
1673
|
+
[key: string]: any;
|
|
1674
|
+
}
|
|
1675
|
+
interface BookingLabUpdateBookingRequest {
|
|
1676
|
+
datetime?: string;
|
|
1677
|
+
duration?: number;
|
|
1678
|
+
person_id?: number;
|
|
1679
|
+
resource_id?: number;
|
|
1680
|
+
service_id?: number;
|
|
1681
|
+
status?: string;
|
|
1682
|
+
position?: number;
|
|
1683
|
+
price?: number;
|
|
1684
|
+
paid?: number;
|
|
1685
|
+
time_zone?: string;
|
|
1686
|
+
email?: boolean;
|
|
1687
|
+
email_owner?: boolean;
|
|
1688
|
+
attended?: boolean;
|
|
1689
|
+
client_id?: number;
|
|
1690
|
+
client?: BookingLabUpdateBookingClient;
|
|
1691
|
+
extra_info?: {
|
|
1692
|
+
client_type?: number;
|
|
1693
|
+
[key: string]: any;
|
|
1694
|
+
};
|
|
1695
|
+
child_client_ids?: number[];
|
|
1696
|
+
private_note?: string;
|
|
1697
|
+
current_multi_status?: string;
|
|
1698
|
+
update_reason?: string;
|
|
1699
|
+
assets?: any[];
|
|
1700
|
+
requested_assets?: any[];
|
|
1701
|
+
attendees?: any[];
|
|
1702
|
+
[key: string]: any;
|
|
1703
|
+
}
|
|
1704
|
+
interface BookingLabUpdateBookingResponse {
|
|
1705
|
+
id?: number;
|
|
1706
|
+
[key: string]: any;
|
|
1707
|
+
}
|
|
1649
1708
|
|
|
1650
1709
|
/**
|
|
1651
1710
|
* Core API Client
|
|
@@ -1892,6 +1951,14 @@ declare class BookingLabClient extends ApiClient {
|
|
|
1892
1951
|
* @param params - Optional query params (client_id, member_id)
|
|
1893
1952
|
*/
|
|
1894
1953
|
listBookinglabBookings(companyId: number, clientToken: string, params?: BookingLabListBookingsParams): Promise<ApiResponse<BookingLabListBookingsResponse>>;
|
|
1954
|
+
/**
|
|
1955
|
+
* Update a booking for a company
|
|
1956
|
+
* @param companyId - The company ID
|
|
1957
|
+
* @param bookingId - The booking ID
|
|
1958
|
+
* @param request - Booking update body (all fields optional)
|
|
1959
|
+
* @param clientToken - Client token for authentication
|
|
1960
|
+
*/
|
|
1961
|
+
updateBookinglabBooking(companyId: number, bookingId: number, request: BookingLabUpdateBookingRequest, clientToken: string): Promise<ApiResponse<BookingLabUpdateBookingResponse>>;
|
|
1895
1962
|
}
|
|
1896
1963
|
/**
|
|
1897
1964
|
* Create a new BookingLab client instance
|
|
@@ -2393,5 +2460,9 @@ declare function useListBookinglabBookings(companyId: number, clientToken: strin
|
|
|
2393
2460
|
* @param enabled - Whether the query should run
|
|
2394
2461
|
*/
|
|
2395
2462
|
declare function useGetPurchase(companyId: number, serviceId: number, purchaseId: string | number, clientToken: string, enabled?: boolean): _tanstack_react_query.UseQueryResult<BookingLabPurchaseResponse, Error>;
|
|
2463
|
+
/**
|
|
2464
|
+
* Hook for updating a booking (BookingLab)
|
|
2465
|
+
*/
|
|
2466
|
+
declare function useUpdateBookinglabBooking(companyId: number, bookingId: number, clientToken: string): _tanstack_react_query.UseMutationResult<BookingLabUpdateBookingResponse, Error, BookingLabUpdateBookingRequest, unknown>;
|
|
2396
2467
|
|
|
2397
|
-
export { type AddBasketItemRequest, type AddServiceItemAssets, type AddServiceItemQuestion, type AddServiceItemRequest, ApiClient, type ApiClientConfig, ApiClientContext, ApiClientProvider, type ApiError, type ApiResponse, type AvailabilityTime, type AvailabilityTimesResponse, type Booking, type BookingAnswer, type BookingLabAddBasketServiceItemHeaders, type BookingLabAddBasketServiceItemQuestion, type BookingLabAddBasketServiceItemRequest, type BookingLabAddBasketServiceItemResponse, type BookingLabCheckoutBasketBooking, type BookingLabCheckoutBasketEmbeddedClient, type BookingLabCheckoutBasketEmbeddedMember, type BookingLabCheckoutBasketHeaders, type BookingLabCheckoutBasketRequest, type BookingLabCheckoutBasketResponse, BookingLabClient, type BookingLabCompany, type BookingLabConfigPage, type BookingLabConfigProduct, type BookingLabConfigRequest, type BookingLabConfigResponse, type BookingLabConfigUserJourney, BookingLabContext, type BookingLabCreateBasketHeaders, type BookingLabCreateBasketRequest, type BookingLabCreateBasketResponse, type BookingLabDay, type BookingLabDeleteBasketHeaders, type BookingLabDeleteBasketResponse, type BookingLabForgotPasswordRequest, type BookingLabForgotPasswordResponse, type BookingLabGetCompaniesParams, type BookingLabGetCompaniesResponse, type BookingLabGetDaysParams, type BookingLabGetDaysResponse, type BookingLabGetQuestionsResponse, type BookingLabGetServicesResponse, type BookingLabGetTimesParams, type BookingLabGetTimesResponse, type BookingLabGetTokenRequest, type BookingLabGetTokenResponse, type BookingLabHeldAsset, type BookingLabListBookingsParams, type BookingLabListBookingsResponse, BookingLabProvider, type BookingLabPurchaseEmbedded, type BookingLabPurchaseRefund, type BookingLabPurchaseResponse, type BookingLabQuestion, type BookingLabService, type BookingLabTime, type BookingPaymentItem, type BookingSettings, type CancelBookingRequest, type CancelBookingResponse, type CancelMemberBookingResponse, type CheckoutBasketClient, type CheckoutBasketRequest, type CheckoutBasketResponse, type ChildCompaniesResponse, type ChildCompany, type ChildCompanyAddress, type ChildCompanySettings, type ClearBasketsResponse, type ClientDetailsQuestion, type ClientDetailsResponse, type CompanyResponse, type CompanySettings, type CreateBasketRequest, type CreateBasketResponse, type CreateBookingRequest, type CreateClientRequest, type CreateClientResponse, type DateSlot, type DatesResponse, type FindClientByEmailResponse, type ForgottenPasswordRequest, type ForgottenPasswordResponse, type GetChildCompaniesParams, type GetDatesParams, type GetMemberResponse, type GetQuestionsParams, type GetTimesParams, type JrniBooking, JrniClient, type JrniConfig, JrniContext, JrniProvider, type JrniService, type ListBookingsParams, type ListBookingsResponse, type Location, type LocationsResponse, type LoginRequest, type LoginResponse, type MemberBooking, type MemberBookingsResponse, MemberType, type OrdnanceAddressDPA, type OrdnanceAddressLPI, type OrdnanceAddressLookupResponse, type OrdnanceAddressResult, type PersonImage, type PersonImagesResponse, type Question, type QuestionOption, type QuestionsResponse, type RequestOptions, type RescheduleBookingRequest, type RescheduleBookingResponse, type ResetPasswordRequest, type Resource, type ResourceLinks, type ResourcesResponse, type SendCustomEmailRequest, type SendCustomEmailResponse, type Service, type ServiceItemResponse, type ServicesResponse, type TimeSlot, type TimesResponse, type UpdateClientAnswer, type UpdateClientAnswerEntry, type UpdateClientDetailsData, type UpdateClientExtraInfo, type UpdateClientNotificationPreferences, type UpdateClientQuestionEntry, type UpdateClientRequest, type UpdateClientResponse, type UpdateMemberDetailsData, type UpdateMemberRequest, type UpdateMemberResponse, type Vehicle, type VehiclesResponse, createBookingLabClient, createJrniClient, useAddServiceItem, useApiClientContext, useBookingLabAddBasketServiceItem, useBookingLabCheckoutBasket, useBookingLabClient, useBookingLabCompanies, useBookingLabConfig, useBookingLabContext, useBookingLabCreateBasket, useBookingLabDays, useBookingLabDeleteBasket, useBookingLabForgotPassword, useBookingLabGetToken, useBookingLabQuestions, useBookingLabService, useBookingLabServices, useBookingLabTimes, useCancelBooking, useCancelMemberBooking, useCheckoutBasket, useChildCompanies, useClearBaskets, useClientDetails, useCompany, useCreateBasket, useCreateClient, useDates, useFindClientByEmail, useForgottenPassword, useGetMember, useGetPurchase, useJrniClient, useJrniContext, useListBookinglabBookings, useListBookings, useLogin, useOrdnanceAddressLookup, useQuestions, useRescheduleBooking, useResetPassword, useResources, useSendCustomEmail, useServices, useTimes, useUpdateClient, useUpdateMember };
|
|
2468
|
+
export { type AddBasketItemRequest, type AddServiceItemAssets, type AddServiceItemQuestion, type AddServiceItemRequest, ApiClient, type ApiClientConfig, ApiClientContext, ApiClientProvider, type ApiError, type ApiResponse, type AvailabilityTime, type AvailabilityTimesResponse, type Booking, type BookingAnswer, type BookingLabAddBasketServiceItemHeaders, type BookingLabAddBasketServiceItemQuestion, type BookingLabAddBasketServiceItemRequest, type BookingLabAddBasketServiceItemResponse, type BookingLabCheckoutBasketBooking, type BookingLabCheckoutBasketEmbeddedClient, type BookingLabCheckoutBasketEmbeddedMember, type BookingLabCheckoutBasketHeaders, type BookingLabCheckoutBasketRequest, type BookingLabCheckoutBasketResponse, BookingLabClient, type BookingLabCompany, type BookingLabConfigPage, type BookingLabConfigProduct, type BookingLabConfigRequest, type BookingLabConfigResponse, type BookingLabConfigUserJourney, BookingLabContext, type BookingLabCreateBasketHeaders, type BookingLabCreateBasketRequest, type BookingLabCreateBasketResponse, type BookingLabDay, type BookingLabDeleteBasketHeaders, type BookingLabDeleteBasketResponse, type BookingLabForgotPasswordRequest, type BookingLabForgotPasswordResponse, type BookingLabGetCompaniesParams, type BookingLabGetCompaniesResponse, type BookingLabGetDaysParams, type BookingLabGetDaysResponse, type BookingLabGetQuestionsResponse, type BookingLabGetServicesResponse, type BookingLabGetTimesParams, type BookingLabGetTimesResponse, type BookingLabGetTokenRequest, type BookingLabGetTokenResponse, type BookingLabHeldAsset, type BookingLabListBookingsParams, type BookingLabListBookingsResponse, BookingLabProvider, type BookingLabPurchaseEmbedded, type BookingLabPurchaseRefund, type BookingLabPurchaseResponse, type BookingLabQuestion, type BookingLabService, type BookingLabTime, type BookingLabUpdateBookingClient, type BookingLabUpdateBookingRequest, type BookingLabUpdateBookingResponse, type BookingPaymentItem, type BookingSettings, type CancelBookingRequest, type CancelBookingResponse, type CancelMemberBookingResponse, type CheckoutBasketClient, type CheckoutBasketRequest, type CheckoutBasketResponse, type ChildCompaniesResponse, type ChildCompany, type ChildCompanyAddress, type ChildCompanySettings, type ClearBasketsResponse, type ClientDetailsQuestion, type ClientDetailsResponse, type CompanyResponse, type CompanySettings, type CreateBasketRequest, type CreateBasketResponse, type CreateBookingRequest, type CreateClientRequest, type CreateClientResponse, type DateSlot, type DatesResponse, type FindClientByEmailResponse, type ForgottenPasswordRequest, type ForgottenPasswordResponse, type GetChildCompaniesParams, type GetDatesParams, type GetMemberResponse, type GetQuestionsParams, type GetTimesParams, type JrniBooking, JrniClient, type JrniConfig, JrniContext, JrniProvider, type JrniService, type ListBookingsParams, type ListBookingsResponse, type Location, type LocationsResponse, type LoginRequest, type LoginResponse, type MemberBooking, type MemberBookingsResponse, MemberType, type OrdnanceAddressDPA, type OrdnanceAddressLPI, type OrdnanceAddressLookupResponse, type OrdnanceAddressResult, type PersonImage, type PersonImagesResponse, type Question, type QuestionOption, type QuestionsResponse, type RequestOptions, type RescheduleBookingRequest, type RescheduleBookingResponse, type ResetPasswordRequest, type Resource, type ResourceLinks, type ResourcesResponse, type SendCustomEmailRequest, type SendCustomEmailResponse, type Service, type ServiceItemResponse, type ServicesResponse, type TimeSlot, type TimesResponse, type UpdateClientAnswer, type UpdateClientAnswerEntry, type UpdateClientDetailsData, type UpdateClientExtraInfo, type UpdateClientNotificationPreferences, type UpdateClientQuestionEntry, type UpdateClientRequest, type UpdateClientResponse, type UpdateMemberDetailsData, type UpdateMemberRequest, type UpdateMemberResponse, type Vehicle, type VehiclesResponse, createBookingLabClient, createJrniClient, useAddServiceItem, useApiClientContext, useBookingLabAddBasketServiceItem, useBookingLabCheckoutBasket, useBookingLabClient, useBookingLabCompanies, useBookingLabConfig, useBookingLabContext, useBookingLabCreateBasket, useBookingLabDays, useBookingLabDeleteBasket, useBookingLabForgotPassword, useBookingLabGetToken, useBookingLabQuestions, useBookingLabService, useBookingLabServices, useBookingLabTimes, useCancelBooking, useCancelMemberBooking, useCheckoutBasket, useChildCompanies, useClearBaskets, useClientDetails, useCompany, useCreateBasket, useCreateClient, useDates, useFindClientByEmail, useForgottenPassword, useGetMember, useGetPurchase, useJrniClient, useJrniContext, useListBookinglabBookings, useListBookings, useLogin, useOrdnanceAddressLookup, useQuestions, useRescheduleBooking, useResetPassword, useResources, useSendCustomEmail, useServices, useTimes, useUpdateBookinglabBooking, useUpdateClient, useUpdateMember };
|
package/dist/index.d.ts
CHANGED
|
@@ -1646,6 +1646,65 @@ interface BookingLabListBookingsResponse {
|
|
|
1646
1646
|
_links?: Record<string, any>;
|
|
1647
1647
|
[key: string]: any;
|
|
1648
1648
|
}
|
|
1649
|
+
interface BookingLabUpdateBookingClient {
|
|
1650
|
+
first_name?: string;
|
|
1651
|
+
first_name_extra?: string;
|
|
1652
|
+
last_name?: string;
|
|
1653
|
+
last_name_extra?: string;
|
|
1654
|
+
email?: string;
|
|
1655
|
+
mobile_prefix?: string;
|
|
1656
|
+
mobile?: string;
|
|
1657
|
+
mobile_prefix_country_code?: string;
|
|
1658
|
+
phone_prefix?: string;
|
|
1659
|
+
phone?: string;
|
|
1660
|
+
phone_prefix_country_code?: string;
|
|
1661
|
+
address1?: string;
|
|
1662
|
+
address2?: string;
|
|
1663
|
+
address3?: string;
|
|
1664
|
+
address4?: string;
|
|
1665
|
+
address5?: string;
|
|
1666
|
+
postcode?: string;
|
|
1667
|
+
country?: string;
|
|
1668
|
+
member_type?: number;
|
|
1669
|
+
member_level_id?: number;
|
|
1670
|
+
mem_join_date?: string;
|
|
1671
|
+
time_zone?: string;
|
|
1672
|
+
consent?: boolean;
|
|
1673
|
+
[key: string]: any;
|
|
1674
|
+
}
|
|
1675
|
+
interface BookingLabUpdateBookingRequest {
|
|
1676
|
+
datetime?: string;
|
|
1677
|
+
duration?: number;
|
|
1678
|
+
person_id?: number;
|
|
1679
|
+
resource_id?: number;
|
|
1680
|
+
service_id?: number;
|
|
1681
|
+
status?: string;
|
|
1682
|
+
position?: number;
|
|
1683
|
+
price?: number;
|
|
1684
|
+
paid?: number;
|
|
1685
|
+
time_zone?: string;
|
|
1686
|
+
email?: boolean;
|
|
1687
|
+
email_owner?: boolean;
|
|
1688
|
+
attended?: boolean;
|
|
1689
|
+
client_id?: number;
|
|
1690
|
+
client?: BookingLabUpdateBookingClient;
|
|
1691
|
+
extra_info?: {
|
|
1692
|
+
client_type?: number;
|
|
1693
|
+
[key: string]: any;
|
|
1694
|
+
};
|
|
1695
|
+
child_client_ids?: number[];
|
|
1696
|
+
private_note?: string;
|
|
1697
|
+
current_multi_status?: string;
|
|
1698
|
+
update_reason?: string;
|
|
1699
|
+
assets?: any[];
|
|
1700
|
+
requested_assets?: any[];
|
|
1701
|
+
attendees?: any[];
|
|
1702
|
+
[key: string]: any;
|
|
1703
|
+
}
|
|
1704
|
+
interface BookingLabUpdateBookingResponse {
|
|
1705
|
+
id?: number;
|
|
1706
|
+
[key: string]: any;
|
|
1707
|
+
}
|
|
1649
1708
|
|
|
1650
1709
|
/**
|
|
1651
1710
|
* Core API Client
|
|
@@ -1892,6 +1951,14 @@ declare class BookingLabClient extends ApiClient {
|
|
|
1892
1951
|
* @param params - Optional query params (client_id, member_id)
|
|
1893
1952
|
*/
|
|
1894
1953
|
listBookinglabBookings(companyId: number, clientToken: string, params?: BookingLabListBookingsParams): Promise<ApiResponse<BookingLabListBookingsResponse>>;
|
|
1954
|
+
/**
|
|
1955
|
+
* Update a booking for a company
|
|
1956
|
+
* @param companyId - The company ID
|
|
1957
|
+
* @param bookingId - The booking ID
|
|
1958
|
+
* @param request - Booking update body (all fields optional)
|
|
1959
|
+
* @param clientToken - Client token for authentication
|
|
1960
|
+
*/
|
|
1961
|
+
updateBookinglabBooking(companyId: number, bookingId: number, request: BookingLabUpdateBookingRequest, clientToken: string): Promise<ApiResponse<BookingLabUpdateBookingResponse>>;
|
|
1895
1962
|
}
|
|
1896
1963
|
/**
|
|
1897
1964
|
* Create a new BookingLab client instance
|
|
@@ -2393,5 +2460,9 @@ declare function useListBookinglabBookings(companyId: number, clientToken: strin
|
|
|
2393
2460
|
* @param enabled - Whether the query should run
|
|
2394
2461
|
*/
|
|
2395
2462
|
declare function useGetPurchase(companyId: number, serviceId: number, purchaseId: string | number, clientToken: string, enabled?: boolean): _tanstack_react_query.UseQueryResult<BookingLabPurchaseResponse, Error>;
|
|
2463
|
+
/**
|
|
2464
|
+
* Hook for updating a booking (BookingLab)
|
|
2465
|
+
*/
|
|
2466
|
+
declare function useUpdateBookinglabBooking(companyId: number, bookingId: number, clientToken: string): _tanstack_react_query.UseMutationResult<BookingLabUpdateBookingResponse, Error, BookingLabUpdateBookingRequest, unknown>;
|
|
2396
2467
|
|
|
2397
|
-
export { type AddBasketItemRequest, type AddServiceItemAssets, type AddServiceItemQuestion, type AddServiceItemRequest, ApiClient, type ApiClientConfig, ApiClientContext, ApiClientProvider, type ApiError, type ApiResponse, type AvailabilityTime, type AvailabilityTimesResponse, type Booking, type BookingAnswer, type BookingLabAddBasketServiceItemHeaders, type BookingLabAddBasketServiceItemQuestion, type BookingLabAddBasketServiceItemRequest, type BookingLabAddBasketServiceItemResponse, type BookingLabCheckoutBasketBooking, type BookingLabCheckoutBasketEmbeddedClient, type BookingLabCheckoutBasketEmbeddedMember, type BookingLabCheckoutBasketHeaders, type BookingLabCheckoutBasketRequest, type BookingLabCheckoutBasketResponse, BookingLabClient, type BookingLabCompany, type BookingLabConfigPage, type BookingLabConfigProduct, type BookingLabConfigRequest, type BookingLabConfigResponse, type BookingLabConfigUserJourney, BookingLabContext, type BookingLabCreateBasketHeaders, type BookingLabCreateBasketRequest, type BookingLabCreateBasketResponse, type BookingLabDay, type BookingLabDeleteBasketHeaders, type BookingLabDeleteBasketResponse, type BookingLabForgotPasswordRequest, type BookingLabForgotPasswordResponse, type BookingLabGetCompaniesParams, type BookingLabGetCompaniesResponse, type BookingLabGetDaysParams, type BookingLabGetDaysResponse, type BookingLabGetQuestionsResponse, type BookingLabGetServicesResponse, type BookingLabGetTimesParams, type BookingLabGetTimesResponse, type BookingLabGetTokenRequest, type BookingLabGetTokenResponse, type BookingLabHeldAsset, type BookingLabListBookingsParams, type BookingLabListBookingsResponse, BookingLabProvider, type BookingLabPurchaseEmbedded, type BookingLabPurchaseRefund, type BookingLabPurchaseResponse, type BookingLabQuestion, type BookingLabService, type BookingLabTime, type BookingPaymentItem, type BookingSettings, type CancelBookingRequest, type CancelBookingResponse, type CancelMemberBookingResponse, type CheckoutBasketClient, type CheckoutBasketRequest, type CheckoutBasketResponse, type ChildCompaniesResponse, type ChildCompany, type ChildCompanyAddress, type ChildCompanySettings, type ClearBasketsResponse, type ClientDetailsQuestion, type ClientDetailsResponse, type CompanyResponse, type CompanySettings, type CreateBasketRequest, type CreateBasketResponse, type CreateBookingRequest, type CreateClientRequest, type CreateClientResponse, type DateSlot, type DatesResponse, type FindClientByEmailResponse, type ForgottenPasswordRequest, type ForgottenPasswordResponse, type GetChildCompaniesParams, type GetDatesParams, type GetMemberResponse, type GetQuestionsParams, type GetTimesParams, type JrniBooking, JrniClient, type JrniConfig, JrniContext, JrniProvider, type JrniService, type ListBookingsParams, type ListBookingsResponse, type Location, type LocationsResponse, type LoginRequest, type LoginResponse, type MemberBooking, type MemberBookingsResponse, MemberType, type OrdnanceAddressDPA, type OrdnanceAddressLPI, type OrdnanceAddressLookupResponse, type OrdnanceAddressResult, type PersonImage, type PersonImagesResponse, type Question, type QuestionOption, type QuestionsResponse, type RequestOptions, type RescheduleBookingRequest, type RescheduleBookingResponse, type ResetPasswordRequest, type Resource, type ResourceLinks, type ResourcesResponse, type SendCustomEmailRequest, type SendCustomEmailResponse, type Service, type ServiceItemResponse, type ServicesResponse, type TimeSlot, type TimesResponse, type UpdateClientAnswer, type UpdateClientAnswerEntry, type UpdateClientDetailsData, type UpdateClientExtraInfo, type UpdateClientNotificationPreferences, type UpdateClientQuestionEntry, type UpdateClientRequest, type UpdateClientResponse, type UpdateMemberDetailsData, type UpdateMemberRequest, type UpdateMemberResponse, type Vehicle, type VehiclesResponse, createBookingLabClient, createJrniClient, useAddServiceItem, useApiClientContext, useBookingLabAddBasketServiceItem, useBookingLabCheckoutBasket, useBookingLabClient, useBookingLabCompanies, useBookingLabConfig, useBookingLabContext, useBookingLabCreateBasket, useBookingLabDays, useBookingLabDeleteBasket, useBookingLabForgotPassword, useBookingLabGetToken, useBookingLabQuestions, useBookingLabService, useBookingLabServices, useBookingLabTimes, useCancelBooking, useCancelMemberBooking, useCheckoutBasket, useChildCompanies, useClearBaskets, useClientDetails, useCompany, useCreateBasket, useCreateClient, useDates, useFindClientByEmail, useForgottenPassword, useGetMember, useGetPurchase, useJrniClient, useJrniContext, useListBookinglabBookings, useListBookings, useLogin, useOrdnanceAddressLookup, useQuestions, useRescheduleBooking, useResetPassword, useResources, useSendCustomEmail, useServices, useTimes, useUpdateClient, useUpdateMember };
|
|
2468
|
+
export { type AddBasketItemRequest, type AddServiceItemAssets, type AddServiceItemQuestion, type AddServiceItemRequest, ApiClient, type ApiClientConfig, ApiClientContext, ApiClientProvider, type ApiError, type ApiResponse, type AvailabilityTime, type AvailabilityTimesResponse, type Booking, type BookingAnswer, type BookingLabAddBasketServiceItemHeaders, type BookingLabAddBasketServiceItemQuestion, type BookingLabAddBasketServiceItemRequest, type BookingLabAddBasketServiceItemResponse, type BookingLabCheckoutBasketBooking, type BookingLabCheckoutBasketEmbeddedClient, type BookingLabCheckoutBasketEmbeddedMember, type BookingLabCheckoutBasketHeaders, type BookingLabCheckoutBasketRequest, type BookingLabCheckoutBasketResponse, BookingLabClient, type BookingLabCompany, type BookingLabConfigPage, type BookingLabConfigProduct, type BookingLabConfigRequest, type BookingLabConfigResponse, type BookingLabConfigUserJourney, BookingLabContext, type BookingLabCreateBasketHeaders, type BookingLabCreateBasketRequest, type BookingLabCreateBasketResponse, type BookingLabDay, type BookingLabDeleteBasketHeaders, type BookingLabDeleteBasketResponse, type BookingLabForgotPasswordRequest, type BookingLabForgotPasswordResponse, type BookingLabGetCompaniesParams, type BookingLabGetCompaniesResponse, type BookingLabGetDaysParams, type BookingLabGetDaysResponse, type BookingLabGetQuestionsResponse, type BookingLabGetServicesResponse, type BookingLabGetTimesParams, type BookingLabGetTimesResponse, type BookingLabGetTokenRequest, type BookingLabGetTokenResponse, type BookingLabHeldAsset, type BookingLabListBookingsParams, type BookingLabListBookingsResponse, BookingLabProvider, type BookingLabPurchaseEmbedded, type BookingLabPurchaseRefund, type BookingLabPurchaseResponse, type BookingLabQuestion, type BookingLabService, type BookingLabTime, type BookingLabUpdateBookingClient, type BookingLabUpdateBookingRequest, type BookingLabUpdateBookingResponse, type BookingPaymentItem, type BookingSettings, type CancelBookingRequest, type CancelBookingResponse, type CancelMemberBookingResponse, type CheckoutBasketClient, type CheckoutBasketRequest, type CheckoutBasketResponse, type ChildCompaniesResponse, type ChildCompany, type ChildCompanyAddress, type ChildCompanySettings, type ClearBasketsResponse, type ClientDetailsQuestion, type ClientDetailsResponse, type CompanyResponse, type CompanySettings, type CreateBasketRequest, type CreateBasketResponse, type CreateBookingRequest, type CreateClientRequest, type CreateClientResponse, type DateSlot, type DatesResponse, type FindClientByEmailResponse, type ForgottenPasswordRequest, type ForgottenPasswordResponse, type GetChildCompaniesParams, type GetDatesParams, type GetMemberResponse, type GetQuestionsParams, type GetTimesParams, type JrniBooking, JrniClient, type JrniConfig, JrniContext, JrniProvider, type JrniService, type ListBookingsParams, type ListBookingsResponse, type Location, type LocationsResponse, type LoginRequest, type LoginResponse, type MemberBooking, type MemberBookingsResponse, MemberType, type OrdnanceAddressDPA, type OrdnanceAddressLPI, type OrdnanceAddressLookupResponse, type OrdnanceAddressResult, type PersonImage, type PersonImagesResponse, type Question, type QuestionOption, type QuestionsResponse, type RequestOptions, type RescheduleBookingRequest, type RescheduleBookingResponse, type ResetPasswordRequest, type Resource, type ResourceLinks, type ResourcesResponse, type SendCustomEmailRequest, type SendCustomEmailResponse, type Service, type ServiceItemResponse, type ServicesResponse, type TimeSlot, type TimesResponse, type UpdateClientAnswer, type UpdateClientAnswerEntry, type UpdateClientDetailsData, type UpdateClientExtraInfo, type UpdateClientNotificationPreferences, type UpdateClientQuestionEntry, type UpdateClientRequest, type UpdateClientResponse, type UpdateMemberDetailsData, type UpdateMemberRequest, type UpdateMemberResponse, type Vehicle, type VehiclesResponse, createBookingLabClient, createJrniClient, useAddServiceItem, useApiClientContext, useBookingLabAddBasketServiceItem, useBookingLabCheckoutBasket, useBookingLabClient, useBookingLabCompanies, useBookingLabConfig, useBookingLabContext, useBookingLabCreateBasket, useBookingLabDays, useBookingLabDeleteBasket, useBookingLabForgotPassword, useBookingLabGetToken, useBookingLabQuestions, useBookingLabService, useBookingLabServices, useBookingLabTimes, useCancelBooking, useCancelMemberBooking, useCheckoutBasket, useChildCompanies, useClearBaskets, useClientDetails, useCompany, useCreateBasket, useCreateClient, useDates, useFindClientByEmail, useForgottenPassword, useGetMember, useGetPurchase, useJrniClient, useJrniContext, useListBookinglabBookings, useListBookings, useLogin, useOrdnanceAddressLookup, useQuestions, useRescheduleBooking, useResetPassword, useResources, useSendCustomEmail, useServices, useTimes, useUpdateBookinglabBooking, useUpdateClient, useUpdateMember };
|
package/dist/index.js
CHANGED
|
@@ -588,6 +588,25 @@ var BookingLabClient = class extends ApiClient {
|
|
|
588
588
|
}
|
|
589
589
|
);
|
|
590
590
|
}
|
|
591
|
+
/**
|
|
592
|
+
* Update a booking for a company
|
|
593
|
+
* @param companyId - The company ID
|
|
594
|
+
* @param bookingId - The booking ID
|
|
595
|
+
* @param request - Booking update body (all fields optional)
|
|
596
|
+
* @param clientToken - Client token for authentication
|
|
597
|
+
*/
|
|
598
|
+
async updateBookinglabBooking(companyId, bookingId, request, clientToken) {
|
|
599
|
+
return this.put(
|
|
600
|
+
`/company/${companyId}/booking/${bookingId}`,
|
|
601
|
+
request,
|
|
602
|
+
{
|
|
603
|
+
headers: {
|
|
604
|
+
"clienttoken": clientToken,
|
|
605
|
+
"x-company-id": String(companyId)
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
);
|
|
609
|
+
}
|
|
591
610
|
};
|
|
592
611
|
function createBookingLabClient(baseUrl, authToken, appId) {
|
|
593
612
|
const client = new BookingLabClient({ baseUrl });
|
|
@@ -1473,6 +1492,15 @@ function useGetPurchase(companyId, serviceId, purchaseId, clientToken, enabled =
|
|
|
1473
1492
|
enabled: enabled && !!companyId && !!serviceId && !!purchaseId && !!clientToken
|
|
1474
1493
|
});
|
|
1475
1494
|
}
|
|
1495
|
+
function useUpdateBookinglabBooking(companyId, bookingId, clientToken) {
|
|
1496
|
+
const client = useBookingLabClient();
|
|
1497
|
+
return reactQuery.useMutation({
|
|
1498
|
+
mutationFn: async (request) => {
|
|
1499
|
+
const response = await client.updateBookinglabBooking(companyId, bookingId, request, clientToken);
|
|
1500
|
+
return response.data;
|
|
1501
|
+
}
|
|
1502
|
+
});
|
|
1503
|
+
}
|
|
1476
1504
|
|
|
1477
1505
|
exports.ApiClient = ApiClient;
|
|
1478
1506
|
exports.ApiClientContext = ApiClientContext;
|
|
@@ -1530,6 +1558,7 @@ exports.useResources = useResources;
|
|
|
1530
1558
|
exports.useSendCustomEmail = useSendCustomEmail;
|
|
1531
1559
|
exports.useServices = useServices;
|
|
1532
1560
|
exports.useTimes = useTimes;
|
|
1561
|
+
exports.useUpdateBookinglabBooking = useUpdateBookinglabBooking;
|
|
1533
1562
|
exports.useUpdateClient = useUpdateClient;
|
|
1534
1563
|
exports.useUpdateMember = useUpdateMember;
|
|
1535
1564
|
//# sourceMappingURL=index.js.map
|