@myclub_se/data-access 3.1.6 → 3.1.8

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 (93) hide show
  1. package/esm2022/lib/api-models/api-bookable-item.mjs +1 -1
  2. package/esm2022/lib/api-models/api-booking-calendar-application-time.mjs +1 -1
  3. package/esm2022/lib/api-models/api-booking-calendar-slot-session.mjs +1 -1
  4. package/esm2022/lib/api-models/api-booking-calendar-slot.mjs +1 -1
  5. package/esm2022/lib/api-models/api-booking-calendar.mjs +1 -1
  6. package/esm2022/lib/api-models/api-invoice/api-payment-attempt-create.mjs +12 -2
  7. package/esm2022/lib/api-models/api-invoice/api-payment-attempt.mjs +1 -1
  8. package/esm2022/lib/api-models/api-invoice/api-payment-order.mjs +2 -0
  9. package/esm2022/lib/api-models/api-invoice/index.mjs +2 -1
  10. package/esm2022/lib/models/activity-type.mjs +3 -3
  11. package/esm2022/lib/models/bookable-item.mjs +4 -2
  12. package/esm2022/lib/models/booking-calendar-application-time.mjs +6 -2
  13. package/esm2022/lib/models/booking-calendar-slot-session.mjs +8 -2
  14. package/esm2022/lib/models/booking-calendar-slot.mjs +5 -2
  15. package/esm2022/lib/models/booking-calendar.mjs +8 -2
  16. package/esm2022/lib/models/booking-slot-filter.mjs +4 -1
  17. package/esm2022/lib/models/invoice/index.mjs +2 -1
  18. package/esm2022/lib/models/invoice/payment-attempt.mjs +4 -2
  19. package/esm2022/lib/models/invoice/payment-order.mjs +25 -0
  20. package/esm2022/lib/services/activity.service.mjs +17 -6
  21. package/esm2022/lib/services/bookable.service.mjs +46 -14
  22. package/esm2022/lib/services/booking-calendar.service.mjs +94 -26
  23. package/esm2022/lib/services/constant.service.mjs +9 -1
  24. package/esm2022/lib/services/constants.mjs +2 -0
  25. package/esm2022/lib/services/factories/bookable-item-factory.mjs +2 -2
  26. package/esm2022/lib/services/factories/booking-calendar-application-time-factory.mjs +2 -2
  27. package/esm2022/lib/services/factories/booking-calendar-factory.mjs +2 -2
  28. package/esm2022/lib/services/factories/booking-calendar-slot-factory.mjs +2 -2
  29. package/esm2022/lib/services/factories/booking-calendar-slot-session-factory.mjs +2 -2
  30. package/esm2022/lib/services/factories/payment-attempt-factory.mjs +2 -2
  31. package/esm2022/lib/services/factories/payment-order-factory.mjs +5 -0
  32. package/esm2022/lib/services/feature-flags.service.mjs +5 -2
  33. package/esm2022/lib/services/invoice/index.mjs +2 -1
  34. package/esm2022/lib/services/invoice/payment-attempt.service.mjs +44 -19
  35. package/esm2022/lib/services/invoice/payment-order.service.mjs +46 -0
  36. package/esm2022/lib/services/member.service.mjs +5 -2
  37. package/esm2022/lib/services/team.service.mjs +5 -2
  38. package/esm2022/lib/store/actions/booking.actions.mjs +19 -1
  39. package/esm2022/lib/store/actions/constant.actions.mjs +13 -1
  40. package/esm2022/lib/store/actions/invoice.actions.mjs +105 -37
  41. package/esm2022/lib/store/effects/booking.effects.mjs +49 -3
  42. package/esm2022/lib/store/effects/constant.effects.mjs +8 -2
  43. package/esm2022/lib/store/effects/invoice.effects.mjs +89 -29
  44. package/esm2022/lib/store/reducers/booking.reducers.mjs +63 -12
  45. package/esm2022/lib/store/reducers/constant.reducer.mjs +14 -2
  46. package/esm2022/lib/store/reducers/invoice.reducer.mjs +4 -4
  47. package/esm2022/lib/store/selectors/booking.selectors.mjs +4 -1
  48. package/esm2022/lib/store/selectors/constant.selectors.mjs +3 -1
  49. package/esm2022/lib/store/selectors/invoice.selectors.mjs +3 -1
  50. package/esm2022/lib/store/state/booking.state.mjs +4 -1
  51. package/esm2022/lib/store/state/constant.state.mjs +3 -1
  52. package/esm2022/lib/store/state/invoice.state.mjs +3 -1
  53. package/fesm2022/myclub_se-data-access.mjs +689 -152
  54. package/fesm2022/myclub_se-data-access.mjs.map +1 -1
  55. package/lib/api-models/api-bookable-item.d.ts +1 -0
  56. package/lib/api-models/api-booking-calendar-application-time.d.ts +2 -0
  57. package/lib/api-models/api-booking-calendar-slot-session.d.ts +3 -0
  58. package/lib/api-models/api-booking-calendar-slot.d.ts +1 -0
  59. package/lib/api-models/api-booking-calendar.d.ts +2 -0
  60. package/lib/api-models/api-invoice/api-payment-attempt-create.d.ts +7 -1
  61. package/lib/api-models/api-invoice/api-payment-attempt.d.ts +2 -1
  62. package/lib/api-models/api-invoice/api-payment-order.d.ts +13 -0
  63. package/lib/api-models/api-invoice/index.d.ts +1 -0
  64. package/lib/models/bookable-item.d.ts +2 -1
  65. package/lib/models/booking-calendar-application-time.d.ts +3 -1
  66. package/lib/models/booking-calendar-slot-session.d.ts +4 -1
  67. package/lib/models/booking-calendar-slot.d.ts +3 -1
  68. package/lib/models/booking-calendar.d.ts +5 -1
  69. package/lib/models/booking-slot-filter.d.ts +1 -0
  70. package/lib/models/invoice/index.d.ts +1 -0
  71. package/lib/models/invoice/payment-attempt.d.ts +3 -2
  72. package/lib/models/invoice/payment-order.d.ts +14 -0
  73. package/lib/services/bookable.service.d.ts +2 -1
  74. package/lib/services/booking-calendar.service.d.ts +2 -0
  75. package/lib/services/constant.service.d.ts +2 -0
  76. package/lib/services/constants.d.ts +1 -0
  77. package/lib/services/factories/payment-order-factory.d.ts +3 -0
  78. package/lib/services/invoice/index.d.ts +1 -0
  79. package/lib/services/invoice/payment-attempt.service.d.ts +14 -7
  80. package/lib/services/invoice/payment-order.service.d.ts +18 -0
  81. package/lib/store/actions/booking.actions.d.ts +60 -0
  82. package/lib/store/actions/constant.actions.d.ts +28 -0
  83. package/lib/store/actions/invoice.actions.d.ts +335 -55
  84. package/lib/store/effects/booking.effects.d.ts +15 -0
  85. package/lib/store/effects/constant.effects.d.ts +10 -0
  86. package/lib/store/effects/invoice.effects.d.ts +89 -25
  87. package/lib/store/selectors/booking.selectors.d.ts +3 -0
  88. package/lib/store/selectors/constant.selectors.d.ts +2 -0
  89. package/lib/store/selectors/invoice.selectors.d.ts +2 -0
  90. package/lib/store/state/booking.state.d.ts +4 -1
  91. package/lib/store/state/constant.state.d.ts +2 -0
  92. package/lib/store/state/invoice.state.d.ts +3 -1
  93. package/package.json +1 -1
@@ -1,15 +1,24 @@
1
1
  import { HttpErrorResponse } from '@angular/common/http';
2
- import { ClubImage, MemberInvoice, PaymentAttempt, SearchMemberInvoice, SwishQrCode } from '../../models';
2
+ import { ClubImage, MemberInvoice, PaymentAttempt, PaymentOrder, SearchMemberInvoice, SwishQrCode } from '../../models';
3
3
  export declare enum InvoiceActionType {
4
4
  ClearMemberInvoice = "[Invoice] Clear member invoice",
5
- CreateMondidoMemberPayment = "[Invoice] Create Mondido member payment",
6
- CreateMondidoPublicPayment = "[Invoice] Create Mondido public payment",
7
- CreateMondidoPaymentFailure = "[Invoice] Create Mondido payment failure",
8
- CreateMondidoPaymentSuccess = "[Invoice] Create Mondido payment success",
9
- CreateSwishMemberPayment = "[Invoice] Create swish member payment",
10
- CreateSwishPublicPayment = "[Invoice] Create swish public payment",
11
- CreateSwishPaymentFailure = "[Invoice] Create swish payment failure",
12
- CreateSwishPaymentSuccess = "[Invoice] Create swish payment success",
5
+ ClearPaymentOrder = "[Invoice] Clear payment order",
6
+ CreateMondidoMemberInvoicePayment = "[Invoice] Create Mondido member payment",
7
+ CreateMondidoPublicInvoicePayment = "[Invoice] Create Mondido public payment",
8
+ CreateMondidoInvoicePaymentFailure = "[Invoice] Create Mondido payment failure",
9
+ CreateMondidoInvoicePaymentSuccess = "[Invoice] Create Mondido payment success",
10
+ CreateSwishMemberInvoicePayment = "[Invoice] Create swish member payment",
11
+ CreateSwishPublicInvoicePayment = "[Invoice] Create swish public payment",
12
+ CreateSwishInvoicePaymentFailure = "[Invoice] Create swish payment failure",
13
+ CreateSwishInvoicePaymentSuccess = "[Invoice] Create swish payment success",
14
+ CreateMondidoMemberPaymentOrderPayment = "[Payment Order] Create Mondido member payment",
15
+ CreateMondidoPublicPaymentOrderPayment = "[Payment Order] Create Mondido public payment",
16
+ CreateMondidoPaymentOrderPaymentFailure = "[Payment Order] Create Mondido payment failure",
17
+ CreateMondidoPaymentOrderPaymentSuccess = "[Payment Order] Create Mondido payment success",
18
+ CreateSwishMemberPaymentOrderPayment = "[Payment Order] Create swish member payment",
19
+ CreateSwishPublicPaymentOrderPayment = "[Payment Order] Create swish public payment",
20
+ CreateSwishPaymentOrderPaymentFailure = "[Payment Order] Create swish payment failure",
21
+ CreateSwishPaymentOrderPaymentSuccess = "[Payment Order] Create swish payment success",
13
22
  CreateZimplerMemberPayment = "[Invoice] Create zimpler member payment",
14
23
  CreateZimplerPublicPayment = "[Invoice] Create zimpler public payment",
15
24
  CreateZimplerPaymentFailure = "[Invoice] Create zimpler payment failure",
@@ -20,25 +29,51 @@ export declare enum InvoiceActionType {
20
29
  RetrieveMemberInvoice = "[Invoice] Retrieve member invoice",
21
30
  RetrieveMemberInvoiceFailure = "[Invoice] Retrieve member invoice failure",
22
31
  RetrieveMemberInvoiceSuccess = "[Invoice] Retrieve member invoice success",
23
- RetrieveMemberSwishQRCode = "[Invoice] Get member swish QR code",
24
- RetrieveMemberPaymentAttempt = "[Invoice] Retrieve member payment attempt",
25
- RetrieveMemberPaymentAttemptFailure = "[Invoice] Retrieve member payment attempt failure",
26
- RetrieveMemberPaymentAttemptSuccess = "[Invoice] Retrieve member payment attempt success",
32
+ RetrieveMemberInvoiceSwishQRCode = "[Invoice] Get member swish QR code",
33
+ RetrieveMemberInvoicePaymentAttempt = "[Invoice] Retrieve member payment attempt",
34
+ RetrieveMemberInvoicePaymentAttemptFailure = "[Invoice] Retrieve member payment attempt failure",
35
+ RetrieveMemberInvoicePaymentAttemptSuccess = "[Invoice] Retrieve member payment attempt success",
36
+ RetrieveMemberPaymentOrderSwishQRCode = "[Payment Order] Get member swish QR code",
37
+ RetrieveMemberPaymentOrderPaymentAttempt = "[Payment Order] Retrieve member payment attempt",
38
+ RetrieveMemberPaymentOrderPaymentAttemptFailure = "[Payment Order] Retrieve member payment attempt failure",
39
+ RetrieveMemberPaymentOrderPaymentAttemptSuccess = "[Payment Order] Retrieve member payment attempt success",
27
40
  RetrievePublicInvoiceLogo = "[Invoice] Retrieve public invoice logo",
28
41
  RetrievePublicInvoiceLogoFailure = "[Invoice] Retrieve public invoice logo failure",
29
42
  RetrievePublicInvoiceLogoSuccess = "[Invoice] Retrieve public invoice logo success",
30
43
  RetrievePublicInvoice = "[Invoice] Retrieve public invoice",
31
44
  RetrievePublicInvoiceFailure = "[Invoice] Retrieve public invoice failure",
32
45
  RetrievePublicInvoiceSuccess = "[Invoice] Retrieve public invoice success",
33
- RetrievePublicPaymentAttempt = "[Invoice] Retrieve public payment attempt",
34
- RetrievePublicPaymentAttemptFailure = "[Invoice] Retrieve public payment attempt failure",
35
- RetrievePublicPaymentAttemptSuccess = "[Invoice] Retrieve public payment attempt success",
36
- RetrievePublicSwishQRCode = "[Invoice] Get public swish QR code",
37
- RetrieveSwishQRCodeFailure = "[Invoice] Get swish QR code failure",
38
- RetrieveSwishQRCodeSuccess = "[Invoice] Get swish QR code success"
46
+ RetrievePublicPaymentOrderLogo = "[Payment Order] Retrieve public payment order logo",
47
+ RetrievePublicPaymentOrderLogoFailure = "[Payment Order] Retrieve public payment order logo failure",
48
+ RetrievePublicPaymentOrderLogoSuccess = "[Payment Order] Retrieve public payment order logo success",
49
+ RetrievePublicPaymentOrder = "[Payment Order] Retrieve public payment order",
50
+ RetrievePublicPaymentOrderFailure = "[Payment Order] Retrieve public payment order failure",
51
+ RetrievePublicPaymentOrderSuccess = "[Payment Order] Retrieve public payment order success",
52
+ RetrievePublicInvoicePaymentAttempt = "[Invoice] Retrieve public payment attempt",
53
+ RetrievePublicInvoicePaymentAttemptFailure = "[Invoice] Retrieve public payment attempt failure",
54
+ RetrievePublicInvoicePaymentAttemptSuccess = "[Invoice] Retrieve public payment attempt success",
55
+ RetrievePublicInvoiceSwishQRCode = "[Invoice] Get public swish QR code",
56
+ RetrieveInvoiceSwishQRCodeFailure = "[Invoice] Get swish QR code failure",
57
+ RetrieveInvoiceSwishQRCodeSuccess = "[Invoice] Get swish QR code success",
58
+ RetrievePublicPaymentOrderPaymentAttempt = "[Payment Order] Retrieve public payment attempt",
59
+ RetrievePublicPaymentOrderPaymentAttemptFailure = "[Payment Order] Retrieve public payment attempt failure",
60
+ RetrievePublicPaymentOrderPaymentAttemptSuccess = "[Payment Order] Retrieve public payment attempt success",
61
+ RetrievePublicPaymentOrderSwishQRCode = "[Payment Order] Get public swish QR code",
62
+ RetrievePaymentOrderSwishQRCodeFailure = "[Payment Order] Get swish QR code failure",
63
+ RetrievePaymentOrderSwishQRCodeSuccess = "[Payment Order] Get swish QR code success",
64
+ ListMemberPaymentOrders = "[Payment Order] List payment orders",
65
+ ListMemberPaymentOrdersFailure = "[Payment Order] List payment orders failure",
66
+ ListMemberPaymentOrdersSuccess = "[Payment Order] List payment orders success",
67
+ RetrievePaymentOrder = "[Payment Order] Retrieve payment order",
68
+ RetrievePaymentOrderFailure = "[Payment Order] Retrieve payment order failure",
69
+ RetrievePaymentOrderSuccess = "[Payment Order] Retrieve payment order success",
70
+ DeletePaymentOrder = "[Payment Order] Delete payment order",
71
+ DeletePaymentOrderFailure = "[Payment Order] Delete payment order failure",
72
+ DeletePaymentOrderSuccess = "[Payment Order] Delete payment order success"
39
73
  }
40
74
  export declare const clearMemberInvoiceAction: import("@ngrx/store").ActionCreator<InvoiceActionType.ClearMemberInvoice, () => import("@ngrx/store").Action<InvoiceActionType.ClearMemberInvoice>>;
41
- export declare const createMondidoMemberPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoMemberPayment, (props: {
75
+ export declare const clearPaymentOrderAction: import("@ngrx/store").ActionCreator<InvoiceActionType.ClearPaymentOrder, () => import("@ngrx/store").Action<InvoiceActionType.ClearPaymentOrder>>;
76
+ export declare const createMondidoMemberInvoicePaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoMemberInvoicePayment, (props: {
42
77
  payload: {
43
78
  memberId: string;
44
79
  invoiceId: string;
@@ -48,8 +83,8 @@ export declare const createMondidoMemberPaymentAction: import("@ngrx/store").Act
48
83
  memberId: string;
49
84
  invoiceId: string;
50
85
  };
51
- } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoMemberPayment>>;
52
- export declare const createMondidoPublicPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoPublicPayment, (props: {
86
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoMemberInvoicePayment>>;
87
+ export declare const createMondidoPublicInvoicePaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoPublicInvoicePayment, (props: {
53
88
  payload: {
54
89
  token: string;
55
90
  invoiceId: string;
@@ -59,18 +94,18 @@ export declare const createMondidoPublicPaymentAction: import("@ngrx/store").Act
59
94
  token: string;
60
95
  invoiceId: string;
61
96
  };
62
- } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoPublicPayment>>;
63
- export declare const createMondidoPaymentFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoPaymentFailure, (props: {
97
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoPublicInvoicePayment>>;
98
+ export declare const createMondidoInvoicePaymentFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoInvoicePaymentFailure, (props: {
64
99
  payload: HttpErrorResponse;
65
100
  }) => {
66
101
  payload: HttpErrorResponse;
67
- } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoPaymentFailure>>;
68
- export declare const createMondidoPaymentSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoPaymentSuccess, (props: {
102
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoInvoicePaymentFailure>>;
103
+ export declare const createMondidoInvoicePaymentSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoInvoicePaymentSuccess, (props: {
69
104
  payload: PaymentAttempt;
70
105
  }) => {
71
106
  payload: PaymentAttempt;
72
- } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoPaymentSuccess>>;
73
- export declare const createSwishMemberPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishMemberPayment, (props: {
107
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoInvoicePaymentSuccess>>;
108
+ export declare const createSwishMemberInvoicePaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishMemberInvoicePayment, (props: {
74
109
  payload: {
75
110
  memberId: string;
76
111
  invoiceId: string;
@@ -82,8 +117,8 @@ export declare const createSwishMemberPaymentAction: import("@ngrx/store").Actio
82
117
  invoiceId: string;
83
118
  telephoneNumber: string;
84
119
  };
85
- } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishMemberPayment>>;
86
- export declare const createSwishPublicPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishPublicPayment, (props: {
120
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishMemberInvoicePayment>>;
121
+ export declare const createSwishPublicInvoicePaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishPublicInvoicePayment, (props: {
87
122
  payload: {
88
123
  token: string;
89
124
  invoiceId: string;
@@ -95,17 +130,17 @@ export declare const createSwishPublicPaymentAction: import("@ngrx/store").Actio
95
130
  invoiceId: string;
96
131
  telephoneNumber: string;
97
132
  };
98
- } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishPublicPayment>>;
99
- export declare const createSwishPaymentFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishPaymentFailure, (props: {
133
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishPublicInvoicePayment>>;
134
+ export declare const createSwishInvoicePaymentFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishInvoicePaymentFailure, (props: {
100
135
  payload: HttpErrorResponse;
101
136
  }) => {
102
137
  payload: HttpErrorResponse;
103
- } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishPaymentFailure>>;
104
- export declare const createSwishPaymentSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishPaymentSuccess, (props: {
138
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishInvoicePaymentFailure>>;
139
+ export declare const createSwishInvoicePaymentSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishInvoicePaymentSuccess, (props: {
105
140
  payload: PaymentAttempt;
106
141
  }) => {
107
142
  payload: PaymentAttempt;
108
- } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishPaymentSuccess>>;
143
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishInvoicePaymentSuccess>>;
109
144
  export declare const createZimplerMemberPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateZimplerMemberPayment, (props: {
110
145
  payload: {
111
146
  memberId: string;
@@ -138,6 +173,74 @@ export declare const createZimplerPaymentSuccessAction: import("@ngrx/store").Ac
138
173
  }) => {
139
174
  payload: PaymentAttempt;
140
175
  } & import("@ngrx/store").Action<InvoiceActionType.CreateZimplerPaymentSuccess>>;
176
+ export declare const createMondidoMemberPaymentOrderPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoMemberPaymentOrderPayment, (props: {
177
+ payload: {
178
+ memberId: string;
179
+ paymentOrderId: string;
180
+ };
181
+ }) => {
182
+ payload: {
183
+ memberId: string;
184
+ paymentOrderId: string;
185
+ };
186
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoMemberPaymentOrderPayment>>;
187
+ export declare const createMondidoPublicPaymentOrderPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoPublicPaymentOrderPayment, (props: {
188
+ payload: {
189
+ token: string;
190
+ paymentOrderId: string;
191
+ };
192
+ }) => {
193
+ payload: {
194
+ token: string;
195
+ paymentOrderId: string;
196
+ };
197
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoPublicPaymentOrderPayment>>;
198
+ export declare const createMondidoPaymentOrderPaymentFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoPaymentOrderPaymentFailure, (props: {
199
+ payload: HttpErrorResponse;
200
+ }) => {
201
+ payload: HttpErrorResponse;
202
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoPaymentOrderPaymentFailure>>;
203
+ export declare const createMondidoPaymentOrderPaymentSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateMondidoPaymentOrderPaymentSuccess, (props: {
204
+ payload: PaymentAttempt;
205
+ }) => {
206
+ payload: PaymentAttempt;
207
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateMondidoPaymentOrderPaymentSuccess>>;
208
+ export declare const createSwishMemberPaymentOrderPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishMemberPaymentOrderPayment, (props: {
209
+ payload: {
210
+ memberId: string;
211
+ paymentOrderId: string;
212
+ telephoneNumber: string;
213
+ };
214
+ }) => {
215
+ payload: {
216
+ memberId: string;
217
+ paymentOrderId: string;
218
+ telephoneNumber: string;
219
+ };
220
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishMemberPaymentOrderPayment>>;
221
+ export declare const createSwishPublicPaymentOrderPaymentAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishPublicPaymentOrderPayment, (props: {
222
+ payload: {
223
+ token: string;
224
+ paymentOrderId: string;
225
+ telephoneNumber: string;
226
+ };
227
+ }) => {
228
+ payload: {
229
+ token: string;
230
+ paymentOrderId: string;
231
+ telephoneNumber: string;
232
+ };
233
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishPublicPaymentOrderPayment>>;
234
+ export declare const createSwishPaymentOrderPaymentFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishPaymentOrderPaymentFailure, (props: {
235
+ payload: HttpErrorResponse;
236
+ }) => {
237
+ payload: HttpErrorResponse;
238
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishPaymentOrderPaymentFailure>>;
239
+ export declare const createSwishPaymentOrderPaymentSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.CreateSwishPaymentOrderPaymentSuccess, (props: {
240
+ payload: PaymentAttempt;
241
+ }) => {
242
+ payload: PaymentAttempt;
243
+ } & import("@ngrx/store").Action<InvoiceActionType.CreateSwishPaymentOrderPaymentSuccess>>;
141
244
  export declare const listMemberInvoicesAction: import("@ngrx/store").ActionCreator<InvoiceActionType.ListMemberInvoices, (props: {
142
245
  payload: Array<string>;
143
246
  }) => {
@@ -174,7 +277,60 @@ export declare const retrieveMemberInvoiceSuccessAction: import("@ngrx/store").A
174
277
  }) => {
175
278
  payload: MemberInvoice;
176
279
  } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberInvoiceSuccess>>;
177
- export declare const retrieveMemberPaymentAttemptAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberPaymentAttempt, (props: {
280
+ export declare const listMemberPaymentOrdersAction: import("@ngrx/store").ActionCreator<InvoiceActionType.ListMemberPaymentOrders, (props: {
281
+ payload: Array<string>;
282
+ }) => {
283
+ payload: Array<string>;
284
+ } & import("@ngrx/store").Action<InvoiceActionType.ListMemberPaymentOrders>>;
285
+ export declare const listMemberPaymentOrdersFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.ListMemberPaymentOrdersFailure, (props: {
286
+ payload: HttpErrorResponse;
287
+ }) => {
288
+ payload: HttpErrorResponse;
289
+ } & import("@ngrx/store").Action<InvoiceActionType.ListMemberPaymentOrdersFailure>>;
290
+ export declare const listMemberPaymentOrdersSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.ListMemberPaymentOrdersSuccess, (props: {
291
+ payload: Map<string, Array<PaymentOrder>>;
292
+ }) => {
293
+ payload: Map<string, Array<PaymentOrder>>;
294
+ } & import("@ngrx/store").Action<InvoiceActionType.ListMemberPaymentOrdersSuccess>>;
295
+ export declare const retrievePaymentOrderAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePaymentOrder, (props: {
296
+ payload: {
297
+ memberId: string;
298
+ paymentOrderId: string;
299
+ };
300
+ }) => {
301
+ payload: {
302
+ memberId: string;
303
+ paymentOrderId: string;
304
+ };
305
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePaymentOrder>>;
306
+ export declare const retrievePaymentOrderFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePaymentOrderFailure, (props: {
307
+ payload: HttpErrorResponse;
308
+ }) => {
309
+ payload: HttpErrorResponse;
310
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePaymentOrderFailure>>;
311
+ export declare const retrievePaymentOrderSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePaymentOrderSuccess, (props: {
312
+ payload: PaymentOrder;
313
+ }) => {
314
+ payload: PaymentOrder;
315
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePaymentOrderSuccess>>;
316
+ export declare const deletePaymentOrderAction: import("@ngrx/store").ActionCreator<InvoiceActionType.DeletePaymentOrder, (props: {
317
+ payload: {
318
+ memberId: string;
319
+ paymentOrderId: string;
320
+ };
321
+ }) => {
322
+ payload: {
323
+ memberId: string;
324
+ paymentOrderId: string;
325
+ };
326
+ } & import("@ngrx/store").Action<InvoiceActionType.DeletePaymentOrder>>;
327
+ export declare const deletePaymentOrderFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.DeletePaymentOrderFailure, (props: {
328
+ payload: HttpErrorResponse;
329
+ }) => {
330
+ payload: HttpErrorResponse;
331
+ } & import("@ngrx/store").Action<InvoiceActionType.DeletePaymentOrderFailure>>;
332
+ export declare const deletePaymentOrderSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.DeletePaymentOrderSuccess, () => import("@ngrx/store").Action<InvoiceActionType.DeletePaymentOrderSuccess>>;
333
+ export declare const retrieveMemberInvoicePaymentAttemptAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberInvoicePaymentAttempt, (props: {
178
334
  payload: {
179
335
  memberId: string;
180
336
  invoiceId: string;
@@ -186,18 +342,18 @@ export declare const retrieveMemberPaymentAttemptAction: import("@ngrx/store").A
186
342
  invoiceId: string;
187
343
  paymentAttemptId: number;
188
344
  };
189
- } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberPaymentAttempt>>;
190
- export declare const retrieveMemberPaymentAttemptFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberPaymentAttemptFailure, (props: {
345
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberInvoicePaymentAttempt>>;
346
+ export declare const retrieveMemberInvoicePaymentAttemptFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberInvoicePaymentAttemptFailure, (props: {
191
347
  payload: HttpErrorResponse;
192
348
  }) => {
193
349
  payload: HttpErrorResponse;
194
- } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberPaymentAttemptFailure>>;
195
- export declare const retrieveMemberPaymentAttemptSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberPaymentAttemptSuccess, (props: {
350
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberInvoicePaymentAttemptFailure>>;
351
+ export declare const retrieveMemberInvoicePaymentAttemptSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberInvoicePaymentAttemptSuccess, (props: {
196
352
  payload: PaymentAttempt;
197
353
  }) => {
198
354
  payload: PaymentAttempt;
199
- } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberPaymentAttemptSuccess>>;
200
- export declare const retrieveMemberSwishQRCodeAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberSwishQRCode, (props: {
355
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberInvoicePaymentAttemptSuccess>>;
356
+ export declare const retrieveMemberInvoiceSwishQRCodeAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberInvoiceSwishQRCode, (props: {
201
357
  payload: {
202
358
  memberId: string;
203
359
  invoiceId: string;
@@ -209,7 +365,43 @@ export declare const retrieveMemberSwishQRCodeAction: import("@ngrx/store").Acti
209
365
  invoiceId: string;
210
366
  paymentAttemptId: number;
211
367
  };
212
- } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberSwishQRCode>>;
368
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberInvoiceSwishQRCode>>;
369
+ export declare const retrieveMemberPaymentOrderPaymentAttemptAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberPaymentOrderPaymentAttempt, (props: {
370
+ payload: {
371
+ memberId: string;
372
+ paymentOrderId: string;
373
+ paymentAttemptId: number;
374
+ };
375
+ }) => {
376
+ payload: {
377
+ memberId: string;
378
+ paymentOrderId: string;
379
+ paymentAttemptId: number;
380
+ };
381
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberPaymentOrderPaymentAttempt>>;
382
+ export declare const retrieveMemberPaymentOrderPaymentAttemptFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberPaymentOrderPaymentAttemptFailure, (props: {
383
+ payload: HttpErrorResponse;
384
+ }) => {
385
+ payload: HttpErrorResponse;
386
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberPaymentOrderPaymentAttemptFailure>>;
387
+ export declare const retrieveMemberPaymentOrderPaymentAttemptSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberPaymentOrderPaymentAttemptSuccess, (props: {
388
+ payload: PaymentAttempt;
389
+ }) => {
390
+ payload: PaymentAttempt;
391
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberPaymentOrderPaymentAttemptSuccess>>;
392
+ export declare const retrieveMemberPaymentOrderSwishQRCodeAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveMemberPaymentOrderSwishQRCode, (props: {
393
+ payload: {
394
+ memberId: string;
395
+ paymentOrderId: string;
396
+ paymentAttemptId: number;
397
+ };
398
+ }) => {
399
+ payload: {
400
+ memberId: string;
401
+ paymentOrderId: string;
402
+ paymentAttemptId: number;
403
+ };
404
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveMemberPaymentOrderSwishQRCode>>;
213
405
  export declare const retrievePublicInvoiceLogoAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicInvoiceLogo, (props: {
214
406
  payload: {
215
407
  invoiceId: string;
@@ -252,7 +444,49 @@ export declare const retrievePublicInvoiceSuccessAction: import("@ngrx/store").A
252
444
  }) => {
253
445
  payload: MemberInvoice;
254
446
  } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicInvoiceSuccess>>;
255
- export declare const retrievePublicPaymentAttemptAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentAttempt, (props: {
447
+ export declare const retrievePublicPaymentOrderLogoAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderLogo, (props: {
448
+ payload: {
449
+ paymentOrderId: string;
450
+ token: string;
451
+ };
452
+ }) => {
453
+ payload: {
454
+ paymentOrderId: string;
455
+ token: string;
456
+ };
457
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderLogo>>;
458
+ export declare const retrievePublicPaymentOrderLogoFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderLogoFailure, (props: {
459
+ payload: HttpErrorResponse;
460
+ }) => {
461
+ payload: HttpErrorResponse;
462
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderLogoFailure>>;
463
+ export declare const retrievePublicPaymentOrderLogoSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderLogoSuccess, (props: {
464
+ payload: ClubImage;
465
+ }) => {
466
+ payload: ClubImage;
467
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderLogoSuccess>>;
468
+ export declare const retrievePublicPaymentOrderAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrder, (props: {
469
+ payload: {
470
+ paymentOrderId: string;
471
+ token: string;
472
+ };
473
+ }) => {
474
+ payload: {
475
+ paymentOrderId: string;
476
+ token: string;
477
+ };
478
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrder>>;
479
+ export declare const retrievePublicPaymentOrderFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderFailure, (props: {
480
+ payload: HttpErrorResponse;
481
+ }) => {
482
+ payload: HttpErrorResponse;
483
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderFailure>>;
484
+ export declare const retrievePublicPaymentOrderSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderSuccess, (props: {
485
+ payload: PaymentOrder;
486
+ }) => {
487
+ payload: PaymentOrder;
488
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderSuccess>>;
489
+ export declare const retrievePublicInvoicePaymentAttemptAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicInvoicePaymentAttempt, (props: {
256
490
  payload: {
257
491
  invoiceId: string;
258
492
  token: string;
@@ -264,18 +498,18 @@ export declare const retrievePublicPaymentAttemptAction: import("@ngrx/store").A
264
498
  token: string;
265
499
  paymentAttemptId: number;
266
500
  };
267
- } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentAttempt>>;
268
- export declare const retrievePublicPaymentAttemptFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentAttemptFailure, (props: {
501
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicInvoicePaymentAttempt>>;
502
+ export declare const retrievePublicInvoicePaymentAttemptFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicInvoicePaymentAttemptFailure, (props: {
269
503
  payload: HttpErrorResponse;
270
504
  }) => {
271
505
  payload: HttpErrorResponse;
272
- } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentAttemptFailure>>;
273
- export declare const retrievePublicPaymentAttemptSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentAttemptSuccess, (props: {
506
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicInvoicePaymentAttemptFailure>>;
507
+ export declare const retrievePublicInvoicePaymentAttemptSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicInvoicePaymentAttemptSuccess, (props: {
274
508
  payload: PaymentAttempt;
275
509
  }) => {
276
510
  payload: PaymentAttempt;
277
- } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentAttemptSuccess>>;
278
- export declare const retrievePublicSwishQRCodeAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicSwishQRCode, (props: {
511
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicInvoicePaymentAttemptSuccess>>;
512
+ export declare const retrievePublicInvoiceSwishQRCodeAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicInvoiceSwishQRCode, (props: {
279
513
  payload: {
280
514
  token: string;
281
515
  invoiceId: string;
@@ -287,14 +521,60 @@ export declare const retrievePublicSwishQRCodeAction: import("@ngrx/store").Acti
287
521
  invoiceId: string;
288
522
  paymentAttemptId: number;
289
523
  };
290
- } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicSwishQRCode>>;
291
- export declare const retrieveSwishQRCodeFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveSwishQRCodeFailure, (props: {
524
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicInvoiceSwishQRCode>>;
525
+ export declare const retrieveInvoiceSwishQRCodeFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveInvoiceSwishQRCodeFailure, (props: {
526
+ payload: HttpErrorResponse;
527
+ }) => {
528
+ payload: HttpErrorResponse;
529
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveInvoiceSwishQRCodeFailure>>;
530
+ export declare const retrieveInvoiceSwishQRCodeSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveInvoiceSwishQRCodeSuccess, (props: {
531
+ payload: SwishQrCode;
532
+ }) => {
533
+ payload: SwishQrCode;
534
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrieveInvoiceSwishQRCodeSuccess>>;
535
+ export declare const retrievePublicPaymentOrderPaymentAttemptAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderPaymentAttempt, (props: {
536
+ payload: {
537
+ paymentOrderId: string;
538
+ token: string;
539
+ paymentAttemptId: number;
540
+ };
541
+ }) => {
542
+ payload: {
543
+ paymentOrderId: string;
544
+ token: string;
545
+ paymentAttemptId: number;
546
+ };
547
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderPaymentAttempt>>;
548
+ export declare const retrievePublicPaymentOrderPaymentAttemptFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderPaymentAttemptFailure, (props: {
549
+ payload: HttpErrorResponse;
550
+ }) => {
551
+ payload: HttpErrorResponse;
552
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderPaymentAttemptFailure>>;
553
+ export declare const retrievePublicPaymentOrderPaymentAttemptSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderPaymentAttemptSuccess, (props: {
554
+ payload: PaymentAttempt;
555
+ }) => {
556
+ payload: PaymentAttempt;
557
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderPaymentAttemptSuccess>>;
558
+ export declare const retrievePublicPaymentOrderSwishQRCodeAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePublicPaymentOrderSwishQRCode, (props: {
559
+ payload: {
560
+ token: string;
561
+ paymentOrderId: string;
562
+ paymentAttemptId: number;
563
+ };
564
+ }) => {
565
+ payload: {
566
+ token: string;
567
+ paymentOrderId: string;
568
+ paymentAttemptId: number;
569
+ };
570
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePublicPaymentOrderSwishQRCode>>;
571
+ export declare const retrievePaymentOrderSwishQRCodeFailureAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePaymentOrderSwishQRCodeFailure, (props: {
292
572
  payload: HttpErrorResponse;
293
573
  }) => {
294
574
  payload: HttpErrorResponse;
295
- } & import("@ngrx/store").Action<InvoiceActionType.RetrieveSwishQRCodeFailure>>;
296
- export declare const retrieveSwishQRCodeSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrieveSwishQRCodeSuccess, (props: {
575
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePaymentOrderSwishQRCodeFailure>>;
576
+ export declare const retrievePaymentOrderSwishQRCodeSuccessAction: import("@ngrx/store").ActionCreator<InvoiceActionType.RetrievePaymentOrderSwishQRCodeSuccess, (props: {
297
577
  payload: SwishQrCode;
298
578
  }) => {
299
579
  payload: SwishQrCode;
300
- } & import("@ngrx/store").Action<InvoiceActionType.RetrieveSwishQRCodeSuccess>>;
580
+ } & import("@ngrx/store").Action<InvoiceActionType.RetrievePaymentOrderSwishQRCodeSuccess>>;
@@ -12,6 +12,21 @@ export declare class BookingEffects {
12
12
  } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListCalendarSuccess>) | ({
13
13
  payload: HttpErrorResponse;
14
14
  } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListCalendarFailure>)> & import("@ngrx/effects").CreateEffectMetadata;
15
+ listMemberCalendars$: import("rxjs").Observable<({
16
+ payload: HttpErrorResponse;
17
+ } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListMemberCalendarFailure>) | ({
18
+ bookingCalendarsMap: Map<string, BookingCalendar[]>;
19
+ } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListMemberCalendarSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
20
+ listMemberSessions$: import("rxjs").Observable<({
21
+ payload: HttpErrorResponse;
22
+ } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListMemberBookingCalendarSlotSessionFailure>) | ({
23
+ sessionsMap: Map<string, BookingCalendarSlotSession[]>;
24
+ } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListMemberBookingCalendarSlotSessionSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
25
+ listMemberBookableSlots$: import("rxjs").Observable<({
26
+ payload: HttpErrorResponse;
27
+ } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListMemberBookingCalendarBookableSlotsFailure>) | ({
28
+ slotsMap: Map<string, BookingCalendarSlot[]>;
29
+ } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListMemberBookingCalendarBookableSlotsSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
15
30
  listLocations$: import("rxjs").Observable<({
16
31
  locations: ActivityLocation[];
17
32
  } & import("@ngrx/store").Action<import("../actions").BookingActionTypes.ListLocationSuccess>) | ({
@@ -66,6 +66,16 @@ export declare class ConstantEffects {
66
66
  } & import("@ngrx/store").Action<import("../actions").ConstantActionType.RetrieveBookingSlotTypesSuccess>) | ({
67
67
  payload: HttpErrorResponse;
68
68
  } & import("@ngrx/store").Action<import("../actions").ConstantActionType.RetrieveBookingSlotTypesFailure>)> & import("@ngrx/effects").CreateEffectMetadata;
69
+ retrieveTeamBookingSlotTypes$: import("rxjs").Observable<({
70
+ payload: OptionInterface[];
71
+ } & import("@ngrx/store").Action<import("../actions").ConstantActionType.RetrieveTeamBookingSlotTypesSuccess>) | ({
72
+ payload: HttpErrorResponse;
73
+ } & import("@ngrx/store").Action<import("../actions").ConstantActionType.RetrieveTeamBookingSlotTypesFailure>)> & import("@ngrx/effects").CreateEffectMetadata;
74
+ retrieveMemberBookingSlotTypes$: import("rxjs").Observable<({
75
+ payload: OptionInterface[];
76
+ } & import("@ngrx/store").Action<import("../actions").ConstantActionType.RetrieveMemberBookingSlotTypesSuccess>) | ({
77
+ payload: HttpErrorResponse;
78
+ } & import("@ngrx/store").Action<import("../actions").ConstantActionType.RetrieveMemberBookingSlotTypesFailure>)> & import("@ngrx/effects").CreateEffectMetadata;
69
79
  retrieveBookingSlotReservedTimePositions$: import("rxjs").Observable<({
70
80
  payload: OptionInterface[];
71
81
  } & import("@ngrx/store").Action<import("../actions").ConstantActionType.RetrieveBookingSlotReservedTimePositionsSuccess>) | ({