@timum/timum_pdk 2.0.2 → 2.0.3
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/package.json +1 -1
- package/src/index.js +5 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -291,7 +291,9 @@ export const {
|
|
|
291
291
|
// ##########################################
|
|
292
292
|
|
|
293
293
|
useUpcomingBookablesQuery,
|
|
294
|
+
useLazyUpcomingBookablesQuery,
|
|
294
295
|
useActiveProductsQuery,
|
|
296
|
+
useLazyActiveProductsQuery,
|
|
295
297
|
useCreateAppointmentWithConsumerMutation,
|
|
296
298
|
useIdentifyCustomerQuery,
|
|
297
299
|
useLazyIdentifyCustomerQuery,
|
|
@@ -308,9 +310,12 @@ export const {
|
|
|
308
310
|
// ##########################################
|
|
309
311
|
useCreateAccountMutation,
|
|
310
312
|
useGetAccountQuery,
|
|
313
|
+
useLazyGetAccountQuery,
|
|
311
314
|
useGetProvidersQuery,
|
|
315
|
+
useLazyGetProvidersQuery,
|
|
312
316
|
useCreateProviderMutation,
|
|
313
317
|
// useLoginUserViaApiQuery,
|
|
314
318
|
useCreateUserMutation,
|
|
315
319
|
useGetUserQuery,
|
|
320
|
+
useLazyGetUserQuery
|
|
316
321
|
} = timumApiSlice;
|