@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timum/timum_pdk",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "license": "MIT",
5
5
  "description": "Contains timum public and general api endpoints",
6
6
  "homepage": "https://www.timum.de",
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;