@myclub_se/data-access 2.15.2 → 3.0.1

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 (771) hide show
  1. package/{esm2020 → esm2022}/index.mjs +2 -1
  2. package/{esm2020 → esm2022}/lib/api-models/api-booking-calendar-application-time.mjs +1 -1
  3. package/{esm2020 → esm2022}/lib/api-models/api-booking-calendar-slot-session.mjs +1 -1
  4. package/{esm2020 → esm2022}/lib/api-models/api-booking-calendar.mjs +1 -1
  5. package/esm2022/lib/api-models/api-feature-flags.mjs +2 -0
  6. package/esm2022/lib/api-models/api-invoice/api-payment-attempt-create.mjs +11 -0
  7. package/esm2022/lib/api-models/index.mjs +57 -0
  8. package/esm2022/lib/authentication/authentication.interceptor.mjs +101 -0
  9. package/esm2022/lib/authentication/authentication.service.mjs +109 -0
  10. package/esm2022/lib/authentication/guards/authenticated.guard.mjs +38 -0
  11. package/esm2022/lib/authentication/guards/handle-grant-token.guard.mjs +31 -0
  12. package/esm2022/lib/data-access.module.mjs +39 -0
  13. package/esm2022/lib/maintenance/maintenance.interceptor.mjs +30 -0
  14. package/esm2022/lib/models/activity-extra-member.mjs +19 -0
  15. package/esm2022/lib/models/activity-invite.mjs +35 -0
  16. package/esm2022/lib/models/activity-location-group.mjs +27 -0
  17. package/esm2022/lib/models/activity-location-part.mjs +16 -0
  18. package/esm2022/lib/models/activity-location-tag.mjs +22 -0
  19. package/esm2022/lib/models/activity-location.mjs +46 -0
  20. package/esm2022/lib/models/activity-participant.mjs +19 -0
  21. package/esm2022/lib/models/activity-settings.mjs +27 -0
  22. package/esm2022/lib/models/activity-type.mjs +34 -0
  23. package/esm2022/lib/models/activity.mjs +137 -0
  24. package/esm2022/lib/models/auth/auth-member.mjs +13 -0
  25. package/{esm2020 → esm2022}/lib/models/auth/auth-section.mjs +3 -1
  26. package/{esm2020 → esm2022}/lib/models/auth/auth-team-section.mjs +3 -1
  27. package/esm2022/lib/models/auth/auth-team.mjs +13 -0
  28. package/esm2022/lib/models/auth/auth.mjs +25 -0
  29. package/{esm2020 → esm2022}/lib/models/authentication.mjs +3 -1
  30. package/esm2022/lib/models/bookable-group.mjs +27 -0
  31. package/esm2022/lib/models/bookable-item.mjs +49 -0
  32. package/esm2022/lib/models/bookable-part.mjs +16 -0
  33. package/esm2022/lib/models/bookable-tag.mjs +22 -0
  34. package/esm2022/lib/models/booking-calendar-application-time.mjs +86 -0
  35. package/esm2022/lib/models/booking-calendar-slot-session.mjs +87 -0
  36. package/esm2022/lib/models/booking-calendar-slot.mjs +79 -0
  37. package/esm2022/lib/models/booking-calendar.mjs +74 -0
  38. package/esm2022/lib/models/booking-settings.mjs +29 -0
  39. package/esm2022/lib/models/booking-slot-filter.mjs +72 -0
  40. package/esm2022/lib/models/calendar-event.mjs +35 -0
  41. package/esm2022/lib/models/calendar.mjs +15 -0
  42. package/esm2022/lib/models/card/card-deal.mjs +15 -0
  43. package/esm2022/lib/models/card/card-logo-urls.mjs +21 -0
  44. package/esm2022/lib/models/card/card-logo.mjs +11 -0
  45. package/esm2022/lib/models/card/card-member-ticket.mjs +17 -0
  46. package/esm2022/lib/models/card/card-theme.mjs +15 -0
  47. package/esm2022/lib/models/card/card-ticket-location.mjs +13 -0
  48. package/esm2022/lib/models/card/card-ticket.mjs +37 -0
  49. package/{esm2020 → esm2022}/lib/models/card/card.mjs +9 -1
  50. package/esm2022/lib/models/card/home-team.mjs +11 -0
  51. package/esm2022/lib/models/card/member-card.mjs +23 -0
  52. package/esm2022/lib/models/card/search-member-card.mjs +13 -0
  53. package/esm2022/lib/models/club-image.mjs +31 -0
  54. package/{esm2020 → esm2022}/lib/models/club-section.mjs +3 -1
  55. package/{esm2020 → esm2022}/lib/models/club.mjs +3 -1
  56. package/esm2022/lib/models/collection.mjs +19 -0
  57. package/esm2022/lib/models/contact.mjs +61 -0
  58. package/esm2022/lib/models/directory.mjs +38 -0
  59. package/esm2022/lib/models/email.mjs +11 -0
  60. package/esm2022/lib/models/event.mjs +47 -0
  61. package/{esm2020 → esm2022}/lib/models/external-link.mjs +3 -1
  62. package/esm2022/lib/models/feature-flags.mjs +14 -0
  63. package/esm2022/lib/models/file-object.mjs +23 -0
  64. package/esm2022/lib/models/general-image.mjs +11 -0
  65. package/esm2022/lib/models/group-role.mjs +17 -0
  66. package/esm2022/lib/models/image-urls.mjs +15 -0
  67. package/esm2022/lib/models/index.mjs +64 -0
  68. package/esm2022/lib/models/invoice/member-fee.mjs +13 -0
  69. package/esm2022/lib/models/invoice/member-invoice-row.mjs +31 -0
  70. package/esm2022/lib/models/invoice/member-invoice.mjs +45 -0
  71. package/esm2022/lib/models/invoice/payment-attempt.mjs +21 -0
  72. package/esm2022/lib/models/invoice/payment-types/credit-card.mjs +27 -0
  73. package/esm2022/lib/models/invoice/payment-types/giro.mjs +17 -0
  74. package/esm2022/lib/models/invoice/payment-types/swish.mjs +31 -0
  75. package/esm2022/lib/models/invoice/payment-types/zimpler.mjs +19 -0
  76. package/esm2022/lib/models/invoice/search-member-invoice.mjs +26 -0
  77. package/{esm2020 → esm2022}/lib/models/invoice/swish-qr-code.mjs +2 -1
  78. package/esm2022/lib/models/invoice/unpaid-member-invoice.mjs +13 -0
  79. package/esm2022/lib/models/member/member-attribute.mjs +44 -0
  80. package/esm2022/lib/models/member/member-contact.mjs +26 -0
  81. package/esm2022/lib/models/member/member-function.mjs +24 -0
  82. package/esm2022/lib/models/member/member-validation-settings.mjs +21 -0
  83. package/esm2022/lib/models/member/member.mjs +101 -0
  84. package/{esm2020 → esm2022}/lib/models/member/other-member-field.mjs +4 -1
  85. package/esm2022/lib/models/member/other-member.mjs +21 -0
  86. package/esm2022/lib/models/member/search-member.mjs +35 -0
  87. package/esm2022/lib/models/member-activity-invite.mjs +42 -0
  88. package/esm2022/lib/models/member-public-form-field-option.mjs +13 -0
  89. package/esm2022/lib/models/member-public-form-field.mjs +27 -0
  90. package/esm2022/lib/models/member-public-form.mjs +55 -0
  91. package/esm2022/lib/models/member-team-through.mjs +23 -0
  92. package/esm2022/lib/models/member-team.mjs +21 -0
  93. package/esm2022/lib/models/member-type.mjs +11 -0
  94. package/esm2022/lib/models/news.mjs +66 -0
  95. package/esm2022/lib/models/open-activity.mjs +117 -0
  96. package/esm2022/lib/models/optional-fee.mjs +16 -0
  97. package/esm2022/lib/models/overbooked-bookable-item.mjs +15 -0
  98. package/esm2022/lib/models/overbooked-location.mjs +15 -0
  99. package/esm2022/lib/models/partner.mjs +13 -0
  100. package/esm2022/lib/models/public-authentication.mjs +9 -0
  101. package/esm2022/lib/models/registration-qr-code.mjs +19 -0
  102. package/esm2022/lib/models/search-club.mjs +23 -0
  103. package/esm2022/lib/models/search-team.mjs +24 -0
  104. package/{esm2020 → esm2022}/lib/models/section.mjs +3 -1
  105. package/esm2022/lib/models/token.mjs +11 -0
  106. package/esm2022/lib/models/user-notification.mjs +21 -0
  107. package/esm2022/lib/models/user.mjs +41 -0
  108. package/esm2022/lib/services/activity.service.mjs +508 -0
  109. package/esm2022/lib/services/api.service.mjs +108 -0
  110. package/esm2022/lib/services/auth.service.mjs +62 -0
  111. package/esm2022/lib/services/bookable.service.mjs +279 -0
  112. package/esm2022/lib/services/booking-calendar.service.mjs +736 -0
  113. package/esm2022/lib/services/club.service.mjs +35 -0
  114. package/esm2022/lib/services/constant.service.mjs +97 -0
  115. package/esm2022/lib/services/email.service.mjs +28 -0
  116. package/esm2022/lib/services/external-link.service.mjs +25 -0
  117. package/esm2022/lib/services/factories/activity-settings-factory.mjs +3 -0
  118. package/{esm2020 → esm2022}/lib/services/factories/booking-calendar-application-time-factory.mjs +2 -2
  119. package/{esm2020 → esm2022}/lib/services/factories/booking-calendar-factory.mjs +2 -2
  120. package/{esm2020 → esm2022}/lib/services/factories/booking-calendar-slot-session-factory.mjs +2 -2
  121. package/esm2022/lib/services/factories/feature-flags-factory.mjs +5 -0
  122. package/esm2022/lib/services/factories/index.mjs +87 -0
  123. package/esm2022/lib/services/factories/member-public-form-factory.mjs +26 -0
  124. package/esm2022/lib/services/factories/payment-attempt-factory.mjs +23 -0
  125. package/esm2022/lib/services/feature-flags.service.mjs +44 -0
  126. package/esm2022/lib/services/file.service.mjs +65 -0
  127. package/esm2022/lib/services/index.mjs +24 -0
  128. package/esm2022/lib/services/invoice/invoice.service.mjs +42 -0
  129. package/esm2022/lib/services/invoice/payment-attempt.service.mjs +52 -0
  130. package/esm2022/lib/services/maintenance-mode.service.mjs +20 -0
  131. package/esm2022/lib/services/member-card.service.mjs +104 -0
  132. package/esm2022/lib/services/member-public-form.service.mjs +33 -0
  133. package/esm2022/lib/services/member.service.mjs +85 -0
  134. package/esm2022/lib/services/news.service.mjs +94 -0
  135. package/esm2022/lib/services/registration-qr-code.service.mjs +37 -0
  136. package/esm2022/lib/services/section.service.mjs +24 -0
  137. package/esm2022/lib/services/storage.service.mjs +44 -0
  138. package/esm2022/lib/services/team.service.mjs +89 -0
  139. package/esm2022/lib/services/token.service.mjs +58 -0
  140. package/esm2022/lib/services/user-notification.service.mjs +24 -0
  141. package/esm2022/lib/services/user.service.mjs +69 -0
  142. package/esm2022/lib/store/actions/activity.actions.mjs +177 -0
  143. package/esm2022/lib/store/actions/auth.actions.mjs +45 -0
  144. package/esm2022/lib/store/actions/booking.actions.mjs +187 -0
  145. package/esm2022/lib/store/actions/calendar.actions.mjs +77 -0
  146. package/esm2022/lib/store/actions/club-info.actions.mjs +23 -0
  147. package/esm2022/lib/store/actions/constant.actions.mjs +124 -0
  148. package/esm2022/lib/store/actions/email.actions.mjs +19 -0
  149. package/esm2022/lib/store/actions/external-link.actions.mjs +11 -0
  150. package/esm2022/lib/store/actions/file.actions.mjs +41 -0
  151. package/esm2022/lib/store/actions/index.mjs +19 -0
  152. package/esm2022/lib/store/actions/invoice.actions.mjs +75 -0
  153. package/esm2022/lib/store/actions/member-card.actions.mjs +73 -0
  154. package/esm2022/lib/store/actions/member.actions.mjs +69 -0
  155. package/esm2022/lib/store/actions/news.actions.mjs +47 -0
  156. package/esm2022/lib/store/actions/public-form.actions.mjs +17 -0
  157. package/esm2022/lib/store/actions/store.actions.mjs +7 -0
  158. package/esm2022/lib/store/actions/team.actions.mjs +91 -0
  159. package/esm2022/lib/store/actions/token.actions.mjs +53 -0
  160. package/esm2022/lib/store/actions/user.actions.mjs +49 -0
  161. package/esm2022/lib/store/effects/activity.effects.mjs +211 -0
  162. package/esm2022/lib/store/effects/auth.effects.mjs +96 -0
  163. package/esm2022/lib/store/effects/booking.effects.mjs +102 -0
  164. package/esm2022/lib/store/effects/calendar.effects.mjs +84 -0
  165. package/esm2022/lib/store/effects/club-info.effects.mjs +26 -0
  166. package/esm2022/lib/store/effects/constant.effects.mjs +69 -0
  167. package/esm2022/lib/store/effects/data-access.effects.mjs +37 -0
  168. package/esm2022/lib/store/effects/email.effects.mjs +27 -0
  169. package/esm2022/lib/store/effects/external-link.effects.mjs +20 -0
  170. package/esm2022/lib/store/effects/file.effects.mjs +149 -0
  171. package/esm2022/lib/store/effects/index.mjs +2 -0
  172. package/esm2022/lib/store/effects/invoice.effects.mjs +72 -0
  173. package/esm2022/lib/store/effects/member-card.effects.mjs +80 -0
  174. package/esm2022/lib/store/effects/member.effects.mjs +75 -0
  175. package/esm2022/lib/store/effects/mixins/extra-members-mixin.mjs +60 -0
  176. package/esm2022/lib/store/effects/news.effects.mjs +82 -0
  177. package/esm2022/lib/store/effects/public-form.effects.mjs +33 -0
  178. package/esm2022/lib/store/effects/team.effects.mjs +82 -0
  179. package/esm2022/lib/store/effects/token.effects.mjs +81 -0
  180. package/esm2022/lib/store/effects/user.effects.mjs +59 -0
  181. package/esm2022/lib/store/index.mjs +8 -0
  182. package/esm2022/lib/store/interfaces/activate-card-ticket.interface.mjs +2 -0
  183. package/esm2022/lib/store/interfaces/activate-user.interface.mjs +2 -0
  184. package/esm2022/lib/store/interfaces/calendar-activity-locations.interface.mjs +2 -0
  185. package/esm2022/lib/store/interfaces/calendar-activity-types.interface.mjs +2 -0
  186. package/esm2022/lib/store/interfaces/calendar-open-activity-result.interface.mjs +2 -0
  187. package/esm2022/lib/store/interfaces/calendar-public-open-activity-results.interface.mjs +2 -0
  188. package/esm2022/lib/store/interfaces/directory-result.interface.mjs +2 -0
  189. package/esm2022/lib/store/interfaces/email-settings.interface.mjs +2 -0
  190. package/esm2022/lib/store/interfaces/index.mjs +20 -0
  191. package/esm2022/lib/store/interfaces/list-result-interface.mjs +4 -0
  192. package/esm2022/lib/store/interfaces/location.interface.mjs +2 -0
  193. package/esm2022/lib/store/interfaces/member-calendar-event-result.interface.mjs +2 -0
  194. package/esm2022/lib/store/interfaces/member-card-deals.interface.mjs +2 -0
  195. package/esm2022/lib/store/interfaces/member-card-tickets.interface.mjs +2 -0
  196. package/esm2022/lib/store/interfaces/public-activate-card-ticket.interface.mjs +2 -0
  197. package/esm2022/lib/store/interfaces/remove-member-auth.interface.mjs +2 -0
  198. package/esm2022/lib/store/interfaces/remove-team-auth.interface.mjs +2 -0
  199. package/esm2022/lib/store/interfaces/retrieve-result.interface.mjs +4 -0
  200. package/esm2022/lib/store/interfaces/team-activity.interface.mjs +2 -0
  201. package/esm2022/lib/store/interfaces/team-calendar-event-result.interface.mjs +2 -0
  202. package/esm2022/lib/store/operators/ensure-activity.mjs +8 -0
  203. package/esm2022/lib/store/operators/ensure-auths.mjs +18 -0
  204. package/esm2022/lib/store/operators/ensure-calendar-events-loading-done.mjs +23 -0
  205. package/esm2022/lib/store/operators/ensure-constants.mjs +21 -0
  206. package/esm2022/lib/store/operators/ensure-current-auth.mjs +17 -0
  207. package/esm2022/lib/store/operators/ensure-current-user.mjs +16 -0
  208. package/esm2022/lib/store/operators/ensure-loading-done.mjs +24 -0
  209. package/esm2022/lib/store/operators/ensure-open-activities-loading-done.mjs +5 -0
  210. package/esm2022/lib/store/operators/ensure-public-open-activities-loading-done.mjs +5 -0
  211. package/esm2022/lib/store/operators/ensure-updated-data.mjs +10 -0
  212. package/esm2022/lib/store/operators/index.mjs +11 -0
  213. package/esm2022/lib/store/reducers/auth.reducer.mjs +52 -0
  214. package/esm2022/lib/store/reducers/booking.reducers.mjs +79 -0
  215. package/esm2022/lib/store/reducers/calendar.reducer.mjs +449 -0
  216. package/esm2022/lib/store/reducers/club-info.reducer.mjs +9 -0
  217. package/esm2022/lib/store/reducers/constant.reducer.mjs +181 -0
  218. package/esm2022/lib/store/reducers/data-access.reducer.mjs +37 -0
  219. package/esm2022/lib/store/reducers/email.reducer.mjs +21 -0
  220. package/esm2022/lib/store/reducers/external-link.reducer.mjs +6 -0
  221. package/esm2022/lib/store/reducers/file.reducer.mjs +118 -0
  222. package/esm2022/lib/store/reducers/index.mjs +2 -0
  223. package/esm2022/lib/store/reducers/invoice.reducer.mjs +29 -0
  224. package/esm2022/lib/store/reducers/member-card.reducer.mjs +33 -0
  225. package/esm2022/lib/store/reducers/member.reducer.mjs +21 -0
  226. package/esm2022/lib/store/reducers/news.reducer.mjs +96 -0
  227. package/esm2022/lib/store/reducers/public-form.reducer.mjs +21 -0
  228. package/esm2022/lib/store/reducers/public.reducer.mjs +109 -0
  229. package/esm2022/lib/store/reducers/reducer-helpers.mjs +61 -0
  230. package/esm2022/lib/store/reducers/team.reducer.mjs +77 -0
  231. package/esm2022/lib/store/reducers/token.reducer.mjs +21 -0
  232. package/esm2022/lib/store/reducers/user.reducer.mjs +18 -0
  233. package/esm2022/lib/store/selectors/auth.selectors.mjs +6 -0
  234. package/esm2022/lib/store/selectors/booking.selectors.mjs +15 -0
  235. package/esm2022/lib/store/selectors/calendar.selectors.mjs +18 -0
  236. package/esm2022/lib/store/selectors/club-info.selectors.mjs +5 -0
  237. package/esm2022/lib/store/selectors/constant.selectors.mjs +38 -0
  238. package/esm2022/lib/store/selectors/email.selectors.mjs +5 -0
  239. package/esm2022/lib/store/selectors/external-links.selectors.mjs +5 -0
  240. package/esm2022/lib/store/selectors/file.selectors.mjs +6 -0
  241. package/esm2022/lib/store/selectors/index.mjs +18 -0
  242. package/esm2022/lib/store/selectors/invoice.selectors.mjs +6 -0
  243. package/esm2022/lib/store/selectors/member-card.selectors.mjs +8 -0
  244. package/esm2022/lib/store/selectors/member.selectors.mjs +10 -0
  245. package/esm2022/lib/store/selectors/news.selectors.mjs +8 -0
  246. package/esm2022/lib/store/selectors/public-form.selectors.mjs +5 -0
  247. package/esm2022/lib/store/selectors/public.selectors.mjs +18 -0
  248. package/esm2022/lib/store/selectors/team.selectors.mjs +12 -0
  249. package/esm2022/lib/store/selectors/token.selectors.mjs +6 -0
  250. package/esm2022/lib/store/selectors/user.selectors.mjs +6 -0
  251. package/esm2022/lib/store/state/auth.state.mjs +5 -0
  252. package/esm2022/lib/store/state/booking.state.mjs +16 -0
  253. package/esm2022/lib/store/state/calendar.state.mjs +17 -0
  254. package/esm2022/lib/store/state/club-info.state.mjs +4 -0
  255. package/esm2022/lib/store/state/constant.state.mjs +21 -0
  256. package/esm2022/lib/store/state/data-access.state.mjs +2 -0
  257. package/esm2022/lib/store/state/email.state.mjs +7 -0
  258. package/esm2022/lib/store/state/external-link.state.mjs +4 -0
  259. package/esm2022/lib/store/state/file.state.mjs +5 -0
  260. package/esm2022/lib/store/state/index.mjs +19 -0
  261. package/esm2022/lib/store/state/invoice.state.mjs +5 -0
  262. package/esm2022/lib/store/state/member-card.state.mjs +7 -0
  263. package/esm2022/lib/store/state/member.state.mjs +10 -0
  264. package/esm2022/lib/store/state/news.state.mjs +7 -0
  265. package/esm2022/lib/store/state/public-form.state.mjs +5 -0
  266. package/esm2022/lib/store/state/public.state.mjs +17 -0
  267. package/esm2022/lib/store/state/team.state.mjs +11 -0
  268. package/esm2022/lib/store/state/token.state.mjs +5 -0
  269. package/esm2022/lib/store/state/user.state.mjs +5 -0
  270. package/fesm2022/myclub_se-data-access.mjs +10118 -0
  271. package/fesm2022/myclub_se-data-access.mjs.map +1 -0
  272. package/index.d.ts +1 -0
  273. package/lib/api-models/api-booking-calendar-application-time.d.ts +3 -0
  274. package/lib/api-models/api-booking-calendar-slot-session.d.ts +3 -0
  275. package/lib/api-models/api-booking-calendar.d.ts +2 -0
  276. package/lib/api-models/api-feature-flags.d.ts +5 -0
  277. package/lib/api-models/api-invoice/payment-attempt-data-types/api-payment-attempt-credit-card-data-type.d.ts +1 -1
  278. package/lib/api-models/api-invoice/payment-attempt-data-types/api-payment-attempt-swish-data-type.d.ts +1 -1
  279. package/lib/api-models/api-invoice/payment-attempt-data-types/api-payment-attempt-zimpler-data-type.d.ts +1 -1
  280. package/lib/api-models/index.d.ts +1 -0
  281. package/lib/authentication/authentication.interceptor.d.ts +12 -7
  282. package/lib/data-access.module.d.ts +3 -1
  283. package/lib/models/activity-settings.d.ts +3 -1
  284. package/lib/models/auth/auth.d.ts +3 -2
  285. package/lib/models/booking-calendar-application-time.d.ts +8 -3
  286. package/lib/models/booking-calendar-slot-session.d.ts +10 -5
  287. package/lib/models/booking-calendar-slot.d.ts +7 -6
  288. package/lib/models/booking-calendar.d.ts +4 -1
  289. package/lib/models/booking-settings.d.ts +5 -4
  290. package/lib/models/booking-slot-filter.d.ts +17 -0
  291. package/lib/models/directory.d.ts +1 -0
  292. package/lib/models/feature-flags.d.ts +7 -0
  293. package/lib/models/index.d.ts +2 -0
  294. package/lib/models/invoice/payment-attempt-data-types/payment-attempt-credit-card-data-type.d.ts +1 -1
  295. package/lib/models/invoice/payment-attempt-data-types/payment-attempt-swish-data-type.d.ts +1 -1
  296. package/lib/models/invoice/payment-attempt-data-types/payment-attempt-zimpler-data-type.d.ts +1 -1
  297. package/lib/services/activity.service.d.ts +55 -52
  298. package/lib/services/bookable.service.d.ts +9 -9
  299. package/lib/services/booking-calendar.service.d.ts +6 -23
  300. package/lib/services/constant.service.d.ts +5 -11
  301. package/lib/services/email.service.d.ts +0 -9
  302. package/lib/services/factories/feature-flags-factory.d.ts +3 -0
  303. package/lib/services/factories/index.d.ts +1 -0
  304. package/lib/services/feature-flags.service.d.ts +13 -0
  305. package/lib/services/index.d.ts +2 -0
  306. package/lib/services/member.service.d.ts +7 -3
  307. package/lib/services/storage.service.d.ts +20 -0
  308. package/lib/store/actions/activity.actions.d.ts +641 -0
  309. package/lib/store/actions/auth.actions.d.ts +83 -0
  310. package/lib/store/actions/booking.actions.d.ts +652 -0
  311. package/lib/store/actions/calendar.actions.d.ts +381 -0
  312. package/lib/store/actions/club-info.actions.d.ts +54 -0
  313. package/lib/store/actions/constant.actions.d.ts +249 -0
  314. package/lib/store/actions/email.actions.d.ts +57 -0
  315. package/lib/store/actions/external-link.actions.d.ts +22 -0
  316. package/lib/store/actions/file.actions.d.ts +169 -0
  317. package/lib/store/actions/index.d.ts +18 -0
  318. package/lib/store/actions/invoice.actions.d.ts +300 -0
  319. package/lib/store/actions/member-card.actions.d.ts +253 -0
  320. package/lib/store/actions/member.actions.d.ts +216 -0
  321. package/lib/store/actions/news.actions.d.ts +164 -0
  322. package/lib/store/actions/public-form.actions.d.ts +46 -0
  323. package/lib/store/actions/store.actions.d.ts +4 -0
  324. package/lib/store/actions/team.actions.d.ts +334 -0
  325. package/lib/store/actions/token.actions.d.ts +151 -0
  326. package/lib/store/actions/user.actions.d.ts +102 -0
  327. package/lib/store/effects/activity.effects.d.ts +152 -0
  328. package/lib/store/effects/auth.effects.d.ts +35 -0
  329. package/lib/store/effects/booking.effects.d.ts +196 -0
  330. package/lib/store/effects/calendar.effects.d.ts +129 -0
  331. package/lib/store/effects/club-info.effects.d.ts +24 -0
  332. package/lib/store/effects/constant.effects.d.ts +96 -0
  333. package/lib/store/effects/data-access.effects.d.ts +18 -0
  334. package/lib/store/effects/email.effects.d.ts +14 -0
  335. package/lib/store/effects/external-link.effects.d.ts +14 -0
  336. package/lib/store/effects/file.effects.d.ts +55 -0
  337. package/lib/store/effects/index.d.ts +1 -0
  338. package/lib/store/effects/invoice.effects.d.ts +80 -0
  339. package/lib/store/effects/member-card.effects.d.ts +69 -0
  340. package/lib/store/effects/member.effects.d.ts +58 -0
  341. package/lib/store/effects/mixins/extra-members-mixin.d.ts +10 -0
  342. package/lib/store/effects/news.effects.d.ts +49 -0
  343. package/lib/store/effects/public-form.effects.d.ts +19 -0
  344. package/lib/store/effects/team.effects.d.ts +80 -0
  345. package/lib/store/effects/token.effects.d.ts +66 -0
  346. package/lib/store/effects/user.effects.d.ts +36 -0
  347. package/lib/store/index.d.ts +7 -0
  348. package/lib/store/interfaces/activate-card-ticket.interface.d.ts +6 -0
  349. package/lib/store/interfaces/activate-user.interface.d.ts +4 -0
  350. package/lib/store/interfaces/calendar-activity-locations.interface.d.ts +7 -0
  351. package/lib/store/interfaces/calendar-activity-types.interface.d.ts +7 -0
  352. package/lib/store/interfaces/calendar-open-activity-result.interface.d.ts +8 -0
  353. package/lib/store/interfaces/calendar-public-open-activity-results.interface.d.ts +7 -0
  354. package/lib/store/interfaces/directory-result.interface.d.ts +5 -0
  355. package/lib/store/interfaces/email-settings.interface.d.ts +5 -0
  356. package/lib/store/interfaces/index.d.ts +19 -0
  357. package/lib/store/interfaces/list-result-interface.d.ts +13 -0
  358. package/lib/store/interfaces/location.interface.d.ts +7 -0
  359. package/lib/store/interfaces/member-calendar-event-result.interface.d.ts +8 -0
  360. package/lib/store/interfaces/member-card-deals.interface.d.ts +5 -0
  361. package/lib/store/interfaces/member-card-tickets.interface.d.ts +5 -0
  362. package/lib/store/interfaces/public-activate-card-ticket.interface.d.ts +6 -0
  363. package/lib/store/interfaces/remove-member-auth.interface.d.ts +4 -0
  364. package/lib/store/interfaces/remove-team-auth.interface.d.ts +4 -0
  365. package/lib/store/interfaces/retrieve-result.interface.d.ts +13 -0
  366. package/lib/store/interfaces/team-activity.interface.d.ts +9 -0
  367. package/lib/store/interfaces/team-calendar-event-result.interface.d.ts +8 -0
  368. package/lib/store/operators/ensure-activity.d.ts +4 -0
  369. package/lib/store/operators/ensure-auths.d.ts +13 -0
  370. package/lib/store/operators/ensure-calendar-events-loading-done.d.ts +19 -0
  371. package/lib/store/operators/ensure-constants.d.ts +12 -0
  372. package/lib/store/operators/ensure-current-auth.d.ts +12 -0
  373. package/lib/store/operators/ensure-current-user.d.ts +11 -0
  374. package/lib/store/operators/ensure-loading-done.d.ts +20 -0
  375. package/lib/store/operators/ensure-open-activities-loading-done.d.ts +3 -0
  376. package/lib/store/operators/ensure-public-open-activities-loading-done.d.ts +3 -0
  377. package/lib/store/operators/ensure-updated-data.d.ts +4 -0
  378. package/lib/store/operators/index.d.ts +10 -0
  379. package/lib/store/reducers/auth.reducer.d.ts +2 -0
  380. package/lib/store/reducers/booking.reducers.d.ts +2 -0
  381. package/lib/store/reducers/calendar.reducer.d.ts +2 -0
  382. package/lib/store/reducers/club-info.reducer.d.ts +2 -0
  383. package/lib/store/reducers/constant.reducer.d.ts +2 -0
  384. package/lib/store/reducers/data-access.reducer.d.ts +3 -0
  385. package/lib/store/reducers/email.reducer.d.ts +2 -0
  386. package/lib/store/reducers/external-link.reducer.d.ts +2 -0
  387. package/lib/store/reducers/file.reducer.d.ts +2 -0
  388. package/lib/store/reducers/index.d.ts +1 -0
  389. package/lib/store/reducers/invoice.reducer.d.ts +2 -0
  390. package/lib/store/reducers/member-card.reducer.d.ts +2 -0
  391. package/lib/store/reducers/member.reducer.d.ts +2 -0
  392. package/lib/store/reducers/news.reducer.d.ts +2 -0
  393. package/lib/store/reducers/public-form.reducer.d.ts +2 -0
  394. package/lib/store/reducers/public.reducer.d.ts +2 -0
  395. package/lib/store/reducers/reducer-helpers.d.ts +8 -0
  396. package/lib/store/reducers/team.reducer.d.ts +2 -0
  397. package/lib/store/reducers/token.reducer.d.ts +2 -0
  398. package/lib/store/reducers/user.reducer.d.ts +2 -0
  399. package/lib/store/selectors/auth.selectors.d.ts +4 -0
  400. package/lib/store/selectors/booking.selectors.d.ts +13 -0
  401. package/lib/store/selectors/calendar.selectors.d.ts +16 -0
  402. package/lib/store/selectors/club-info.selectors.d.ts +3 -0
  403. package/lib/store/selectors/constant.selectors.d.ts +19 -0
  404. package/lib/store/selectors/email.selectors.d.ts +3 -0
  405. package/lib/store/selectors/external-links.selectors.d.ts +3 -0
  406. package/lib/store/selectors/file.selectors.d.ts +4 -0
  407. package/lib/store/selectors/index.d.ts +17 -0
  408. package/lib/store/selectors/invoice.selectors.d.ts +4 -0
  409. package/lib/store/selectors/member-card.selectors.d.ts +6 -0
  410. package/lib/store/selectors/member.selectors.d.ts +8 -0
  411. package/lib/store/selectors/news.selectors.d.ts +6 -0
  412. package/lib/store/selectors/public-form.selectors.d.ts +3 -0
  413. package/lib/store/selectors/public.selectors.d.ts +16 -0
  414. package/lib/store/selectors/team.selectors.d.ts +10 -0
  415. package/lib/store/selectors/token.selectors.d.ts +4 -0
  416. package/lib/store/selectors/user.selectors.d.ts +4 -0
  417. package/lib/store/state/auth.state.d.ts +7 -0
  418. package/lib/store/state/booking.state.d.ts +16 -0
  419. package/lib/store/state/calendar.state.d.ts +19 -0
  420. package/lib/store/state/club-info.state.d.ts +6 -0
  421. package/lib/store/state/constant.state.d.ts +23 -0
  422. package/lib/store/state/data-access.state.d.ts +36 -0
  423. package/lib/store/state/email.state.d.ts +5 -0
  424. package/lib/store/state/external-link.state.d.ts +6 -0
  425. package/lib/store/state/file.state.d.ts +6 -0
  426. package/lib/store/state/index.d.ts +18 -0
  427. package/lib/store/state/invoice.state.d.ts +7 -0
  428. package/lib/store/state/member-card.state.d.ts +9 -0
  429. package/lib/store/state/member.state.d.ts +11 -0
  430. package/lib/store/state/news.state.d.ts +9 -0
  431. package/lib/store/state/public-form.state.d.ts +7 -0
  432. package/lib/store/state/public.state.d.ts +19 -0
  433. package/lib/store/state/team.state.d.ts +13 -0
  434. package/lib/store/state/token.state.d.ts +7 -0
  435. package/lib/store/state/user.state.d.ts +7 -0
  436. package/lib/types/attribute-type.d.ts +1 -1
  437. package/lib/types/booking-calendar-slot-reserved-time-position.d.ts +1 -1
  438. package/lib/types/booking-calendar-slot-type.d.ts +1 -1
  439. package/lib/types/contact-type.d.ts +1 -1
  440. package/lib/types/grant-type.d.ts +1 -1
  441. package/lib/types/payment-attempt-status-type.d.ts +1 -1
  442. package/lib/types/payment-attempt-type.d.ts +1 -1
  443. package/lib/types/sex-type.d.ts +1 -1
  444. package/package.json +13 -18
  445. package/esm2020/lib/api-models/api-invoice/api-payment-attempt-create.mjs +0 -8
  446. package/esm2020/lib/api-models/index.mjs +0 -56
  447. package/esm2020/lib/authentication/authentication.interceptor.mjs +0 -66
  448. package/esm2020/lib/authentication/authentication.service.mjs +0 -106
  449. package/esm2020/lib/authentication/guards/authenticated.guard.mjs +0 -36
  450. package/esm2020/lib/authentication/guards/handle-grant-token.guard.mjs +0 -29
  451. package/esm2020/lib/data-access.module.mjs +0 -30
  452. package/esm2020/lib/maintenance/maintenance.interceptor.mjs +0 -29
  453. package/esm2020/lib/models/activity-extra-member.mjs +0 -12
  454. package/esm2020/lib/models/activity-invite.mjs +0 -20
  455. package/esm2020/lib/models/activity-location-group.mjs +0 -21
  456. package/esm2020/lib/models/activity-location-part.mjs +0 -14
  457. package/esm2020/lib/models/activity-location-tag.mjs +0 -17
  458. package/esm2020/lib/models/activity-location.mjs +0 -36
  459. package/esm2020/lib/models/activity-participant.mjs +0 -12
  460. package/esm2020/lib/models/activity-settings.mjs +0 -14
  461. package/esm2020/lib/models/activity-type.mjs +0 -26
  462. package/esm2020/lib/models/activity.mjs +0 -92
  463. package/esm2020/lib/models/auth/auth-member.mjs +0 -10
  464. package/esm2020/lib/models/auth/auth-team.mjs +0 -9
  465. package/esm2020/lib/models/auth/auth.mjs +0 -15
  466. package/esm2020/lib/models/bookable-group.mjs +0 -21
  467. package/esm2020/lib/models/bookable-item.mjs +0 -39
  468. package/esm2020/lib/models/bookable-part.mjs +0 -14
  469. package/esm2020/lib/models/bookable-tag.mjs +0 -17
  470. package/esm2020/lib/models/booking-calendar-application-time.mjs +0 -52
  471. package/esm2020/lib/models/booking-calendar-slot-session.mjs +0 -54
  472. package/esm2020/lib/models/booking-calendar-slot.mjs +0 -53
  473. package/esm2020/lib/models/booking-calendar.mjs +0 -54
  474. package/esm2020/lib/models/booking-settings.mjs +0 -22
  475. package/esm2020/lib/models/calendar-event.mjs +0 -20
  476. package/esm2020/lib/models/calendar.mjs +0 -10
  477. package/esm2020/lib/models/card/card-deal.mjs +0 -10
  478. package/esm2020/lib/models/card/card-logo-urls.mjs +0 -13
  479. package/esm2020/lib/models/card/card-logo.mjs +0 -8
  480. package/esm2020/lib/models/card/card-member-ticket.mjs +0 -11
  481. package/esm2020/lib/models/card/card-theme.mjs +0 -10
  482. package/esm2020/lib/models/card/card-ticket-location.mjs +0 -9
  483. package/esm2020/lib/models/card/card-ticket.mjs +0 -21
  484. package/esm2020/lib/models/card/home-team.mjs +0 -8
  485. package/esm2020/lib/models/card/member-card.mjs +0 -14
  486. package/esm2020/lib/models/card/search-member-card.mjs +0 -9
  487. package/esm2020/lib/models/club-image.mjs +0 -18
  488. package/esm2020/lib/models/collection.mjs +0 -15
  489. package/esm2020/lib/models/contact.mjs +0 -46
  490. package/esm2020/lib/models/directory.mjs +0 -26
  491. package/esm2020/lib/models/email.mjs +0 -8
  492. package/esm2020/lib/models/event.mjs +0 -26
  493. package/esm2020/lib/models/file-object.mjs +0 -14
  494. package/esm2020/lib/models/general-image.mjs +0 -8
  495. package/esm2020/lib/models/group-role.mjs +0 -11
  496. package/esm2020/lib/models/image-urls.mjs +0 -10
  497. package/esm2020/lib/models/index.mjs +0 -62
  498. package/esm2020/lib/models/invoice/member-fee.mjs +0 -9
  499. package/esm2020/lib/models/invoice/member-invoice-row.mjs +0 -18
  500. package/esm2020/lib/models/invoice/member-invoice.mjs +0 -25
  501. package/esm2020/lib/models/invoice/payment-attempt.mjs +0 -13
  502. package/esm2020/lib/models/invoice/payment-types/credit-card.mjs +0 -16
  503. package/esm2020/lib/models/invoice/payment-types/giro.mjs +0 -11
  504. package/esm2020/lib/models/invoice/payment-types/swish.mjs +0 -18
  505. package/esm2020/lib/models/invoice/payment-types/zimpler.mjs +0 -12
  506. package/esm2020/lib/models/invoice/search-member-invoice.mjs +0 -17
  507. package/esm2020/lib/models/invoice/unpaid-member-invoice.mjs +0 -9
  508. package/esm2020/lib/models/member/member-attribute.mjs +0 -33
  509. package/esm2020/lib/models/member/member-contact.mjs +0 -21
  510. package/esm2020/lib/models/member/member-function.mjs +0 -19
  511. package/esm2020/lib/models/member/member-validation-settings.mjs +0 -13
  512. package/esm2020/lib/models/member/member.mjs +0 -75
  513. package/esm2020/lib/models/member/other-member.mjs +0 -13
  514. package/esm2020/lib/models/member/search-member.mjs +0 -20
  515. package/esm2020/lib/models/member-activity-invite.mjs +0 -31
  516. package/esm2020/lib/models/member-public-form-field-option.mjs +0 -9
  517. package/esm2020/lib/models/member-public-form-field.mjs +0 -16
  518. package/esm2020/lib/models/member-public-form.mjs +0 -30
  519. package/esm2020/lib/models/member-team-through.mjs +0 -14
  520. package/esm2020/lib/models/member-team.mjs +0 -13
  521. package/esm2020/lib/models/member-type.mjs +0 -8
  522. package/esm2020/lib/models/news.mjs +0 -47
  523. package/esm2020/lib/models/open-activity.mjs +0 -62
  524. package/esm2020/lib/models/optional-fee.mjs +0 -11
  525. package/esm2020/lib/models/overbooked-bookable-item.mjs +0 -10
  526. package/esm2020/lib/models/overbooked-location.mjs +0 -10
  527. package/esm2020/lib/models/partner.mjs +0 -9
  528. package/esm2020/lib/models/public-authentication.mjs +0 -7
  529. package/esm2020/lib/models/registration-qr-code.mjs +0 -12
  530. package/esm2020/lib/models/search-club.mjs +0 -14
  531. package/esm2020/lib/models/search-team.mjs +0 -18
  532. package/esm2020/lib/models/token.mjs +0 -8
  533. package/esm2020/lib/models/user-notification.mjs +0 -13
  534. package/esm2020/lib/models/user.mjs +0 -31
  535. package/esm2020/lib/services/activity.service.mjs +0 -470
  536. package/esm2020/lib/services/api.service.mjs +0 -106
  537. package/esm2020/lib/services/auth.service.mjs +0 -61
  538. package/esm2020/lib/services/bookable.service.mjs +0 -278
  539. package/esm2020/lib/services/booking-calendar.service.mjs +0 -794
  540. package/esm2020/lib/services/club.service.mjs +0 -34
  541. package/esm2020/lib/services/constant.service.mjs +0 -131
  542. package/esm2020/lib/services/email.service.mjs +0 -53
  543. package/esm2020/lib/services/external-link.service.mjs +0 -24
  544. package/esm2020/lib/services/factories/activity-settings-factory.mjs +0 -3
  545. package/esm2020/lib/services/factories/index.mjs +0 -86
  546. package/esm2020/lib/services/factories/member-public-form-factory.mjs +0 -26
  547. package/esm2020/lib/services/factories/payment-attempt-factory.mjs +0 -23
  548. package/esm2020/lib/services/file.service.mjs +0 -64
  549. package/esm2020/lib/services/index.mjs +0 -22
  550. package/esm2020/lib/services/invoice/invoice.service.mjs +0 -41
  551. package/esm2020/lib/services/invoice/payment-attempt.service.mjs +0 -51
  552. package/esm2020/lib/services/maintenance-mode.service.mjs +0 -21
  553. package/esm2020/lib/services/member-card.service.mjs +0 -103
  554. package/esm2020/lib/services/member-public-form.service.mjs +0 -32
  555. package/esm2020/lib/services/member.service.mjs +0 -63
  556. package/esm2020/lib/services/news.service.mjs +0 -102
  557. package/esm2020/lib/services/registration-qr-code.service.mjs +0 -36
  558. package/esm2020/lib/services/section.service.mjs +0 -23
  559. package/esm2020/lib/services/team.service.mjs +0 -88
  560. package/esm2020/lib/services/token.service.mjs +0 -57
  561. package/esm2020/lib/services/user-notification.service.mjs +0 -23
  562. package/esm2020/lib/services/user.service.mjs +0 -68
  563. package/fesm2015/myclub_se-data-access.mjs +0 -4835
  564. package/fesm2015/myclub_se-data-access.mjs.map +0 -1
  565. package/fesm2020/myclub_se-data-access.mjs +0 -4831
  566. package/fesm2020/myclub_se-data-access.mjs.map +0 -1
  567. /package/{esm2020 → esm2022}/lib/api-models/api-activity-extra-member.mjs +0 -0
  568. /package/{esm2020 → esm2022}/lib/api-models/api-activity-invite.mjs +0 -0
  569. /package/{esm2020 → esm2022}/lib/api-models/api-activity-location-group.mjs +0 -0
  570. /package/{esm2020 → esm2022}/lib/api-models/api-activity-location-part.mjs +0 -0
  571. /package/{esm2020 → esm2022}/lib/api-models/api-activity-location-tag.mjs +0 -0
  572. /package/{esm2020 → esm2022}/lib/api-models/api-activity-location.mjs +0 -0
  573. /package/{esm2020 → esm2022}/lib/api-models/api-activity-participant.mjs +0 -0
  574. /package/{esm2020 → esm2022}/lib/api-models/api-activity-settings.mjs +0 -0
  575. /package/{esm2020 → esm2022}/lib/api-models/api-activity-type.mjs +0 -0
  576. /package/{esm2020 → esm2022}/lib/api-models/api-activity.mjs +0 -0
  577. /package/{esm2020 → esm2022}/lib/api-models/api-auth/api-auth-member.mjs +0 -0
  578. /package/{esm2020 → esm2022}/lib/api-models/api-auth/api-auth-section.mjs +0 -0
  579. /package/{esm2020 → esm2022}/lib/api-models/api-auth/api-auth-team-section.mjs +0 -0
  580. /package/{esm2020 → esm2022}/lib/api-models/api-auth/api-auth-team.mjs +0 -0
  581. /package/{esm2020 → esm2022}/lib/api-models/api-auth/api-auth.mjs +0 -0
  582. /package/{esm2020 → esm2022}/lib/api-models/api-auth/index.mjs +0 -0
  583. /package/{esm2020 → esm2022}/lib/api-models/api-bookable-group.mjs +0 -0
  584. /package/{esm2020 → esm2022}/lib/api-models/api-bookable-item.mjs +0 -0
  585. /package/{esm2020 → esm2022}/lib/api-models/api-bookable-part.mjs +0 -0
  586. /package/{esm2020 → esm2022}/lib/api-models/api-bookable-tag.mjs +0 -0
  587. /package/{esm2020 → esm2022}/lib/api-models/api-booking-calendar-slot.mjs +0 -0
  588. /package/{esm2020 → esm2022}/lib/api-models/api-booking-settings.mjs +0 -0
  589. /package/{esm2020 → esm2022}/lib/api-models/api-calendar-event.mjs +0 -0
  590. /package/{esm2020 → esm2022}/lib/api-models/api-calendar.mjs +0 -0
  591. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-card-deal.mjs +0 -0
  592. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-card-logo-urls.mjs +0 -0
  593. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-card-logo.mjs +0 -0
  594. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-card-member-ticket.mjs +0 -0
  595. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-card-theme.mjs +0 -0
  596. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-card-ticket-location.mjs +0 -0
  597. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-card-ticket.mjs +0 -0
  598. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-card.mjs +0 -0
  599. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-home-team.mjs +0 -0
  600. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-member-card.mjs +0 -0
  601. /package/{esm2020 → esm2022}/lib/api-models/api-card/api-search-member-card.mjs +0 -0
  602. /package/{esm2020 → esm2022}/lib/api-models/api-card/index.mjs +0 -0
  603. /package/{esm2020 → esm2022}/lib/api-models/api-club-image.mjs +0 -0
  604. /package/{esm2020 → esm2022}/lib/api-models/api-club-section.mjs +0 -0
  605. /package/{esm2020 → esm2022}/lib/api-models/api-club.mjs +0 -0
  606. /package/{esm2020 → esm2022}/lib/api-models/api-collection.mjs +0 -0
  607. /package/{esm2020 → esm2022}/lib/api-models/api-directory.mjs +0 -0
  608. /package/{esm2020 → esm2022}/lib/api-models/api-event.mjs +0 -0
  609. /package/{esm2020 → esm2022}/lib/api-models/api-external-link.mjs +0 -0
  610. /package/{esm2020 → esm2022}/lib/api-models/api-file-object.mjs +0 -0
  611. /package/{esm2020 → esm2022}/lib/api-models/api-general-image.mjs +0 -0
  612. /package/{esm2020 → esm2022}/lib/api-models/api-group-role.mjs +0 -0
  613. /package/{esm2020 → esm2022}/lib/api-models/api-image-urls.mjs +0 -0
  614. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-invoice-payments/api-credit-card.mjs +0 -0
  615. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-invoice-payments/api-giro.mjs +0 -0
  616. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-invoice-payments/api-swish.mjs +0 -0
  617. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-invoice-payments/api-zimpler.mjs +0 -0
  618. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-invoice-payments/index.mjs +0 -0
  619. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-member-fee.mjs +0 -0
  620. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-member-invoice-row.mjs +0 -0
  621. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-member-invoice.mjs +0 -0
  622. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-payment-attempt.mjs +0 -0
  623. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-search-member-invoice.mjs +0 -0
  624. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-swish-qr-code.mjs +0 -0
  625. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/api-unpaid-member-invoice.mjs +0 -0
  626. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/index.mjs +0 -0
  627. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/payment-attempt-data-types/api-payment-attempt-credit-card-data-type.mjs +0 -0
  628. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/payment-attempt-data-types/api-payment-attempt-swish-data-type.mjs +0 -0
  629. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/payment-attempt-data-types/api-payment-attempt-zimpler-data-type.mjs +0 -0
  630. /package/{esm2020 → esm2022}/lib/api-models/api-invoice/payment-attempt-data-types/index.mjs +0 -0
  631. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-contact.mjs +0 -0
  632. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-member-attribute.mjs +0 -0
  633. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-member-contact.mjs +0 -0
  634. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-member-function.mjs +0 -0
  635. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-member-validation-settings.mjs +0 -0
  636. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-member.mjs +0 -0
  637. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-other-member-field.mjs +0 -0
  638. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-other-member.mjs +0 -0
  639. /package/{esm2020 → esm2022}/lib/api-models/api-member/api-search-member.mjs +0 -0
  640. /package/{esm2020 → esm2022}/lib/api-models/api-member/index.mjs +0 -0
  641. /package/{esm2020 → esm2022}/lib/api-models/api-member-activity-invite.mjs +0 -0
  642. /package/{esm2020 → esm2022}/lib/api-models/api-member-public-form-field-option.mjs +0 -0
  643. /package/{esm2020 → esm2022}/lib/api-models/api-member-public-form-field.mjs +0 -0
  644. /package/{esm2020 → esm2022}/lib/api-models/api-member-public-form.mjs +0 -0
  645. /package/{esm2020 → esm2022}/lib/api-models/api-member-team-through.mjs +0 -0
  646. /package/{esm2020 → esm2022}/lib/api-models/api-member-team.mjs +0 -0
  647. /package/{esm2020 → esm2022}/lib/api-models/api-member-type.mjs +0 -0
  648. /package/{esm2020 → esm2022}/lib/api-models/api-news.mjs +0 -0
  649. /package/{esm2020 → esm2022}/lib/api-models/api-open-activity.mjs +0 -0
  650. /package/{esm2020 → esm2022}/lib/api-models/api-optional-fee.mjs +0 -0
  651. /package/{esm2020 → esm2022}/lib/api-models/api-overbooked-bookable-item.mjs +0 -0
  652. /package/{esm2020 → esm2022}/lib/api-models/api-overbooked-location.mjs +0 -0
  653. /package/{esm2020 → esm2022}/lib/api-models/api-partner.mjs +0 -0
  654. /package/{esm2020 → esm2022}/lib/api-models/api-public-token.mjs +0 -0
  655. /package/{esm2020 → esm2022}/lib/api-models/api-registration-qr-code.mjs +0 -0
  656. /package/{esm2020 → esm2022}/lib/api-models/api-search-club.mjs +0 -0
  657. /package/{esm2020 → esm2022}/lib/api-models/api-search-team.mjs +0 -0
  658. /package/{esm2020 → esm2022}/lib/api-models/api-section.mjs +0 -0
  659. /package/{esm2020 → esm2022}/lib/api-models/api-token.mjs +0 -0
  660. /package/{esm2020 → esm2022}/lib/api-models/api-user-notification.mjs +0 -0
  661. /package/{esm2020 → esm2022}/lib/api-models/api-user.mjs +0 -0
  662. /package/{esm2020 → esm2022}/lib/authentication/authentication.config.mjs +0 -0
  663. /package/{esm2020 → esm2022}/lib/authentication/index.mjs +0 -0
  664. /package/{esm2020 → esm2022}/lib/interfaces/email-recipient.interface.mjs +0 -0
  665. /package/{esm2020 → esm2022}/lib/interfaces/index.mjs +0 -0
  666. /package/{esm2020 → esm2022}/lib/interfaces/new-account.interface.mjs +0 -0
  667. /package/{esm2020 → esm2022}/lib/interfaces/open-activity-search-params.interface.mjs +0 -0
  668. /package/{esm2020 → esm2022}/lib/interfaces/option.interface.mjs +0 -0
  669. /package/{esm2020 → esm2022}/lib/interfaces/sms-recipient.interface.mjs +0 -0
  670. /package/{esm2020 → esm2022}/lib/maintenance/index.mjs +0 -0
  671. /package/{esm2020 → esm2022}/lib/models/auth/index.mjs +0 -0
  672. /package/{esm2020 → esm2022}/lib/models/card/index.mjs +0 -0
  673. /package/{esm2020 → esm2022}/lib/models/invoice/index.mjs +0 -0
  674. /package/{esm2020 → esm2022}/lib/models/invoice/payment-attempt-data-types/index.mjs +0 -0
  675. /package/{esm2020 → esm2022}/lib/models/invoice/payment-attempt-data-types/payment-attempt-credit-card-data-type.mjs +0 -0
  676. /package/{esm2020 → esm2022}/lib/models/invoice/payment-attempt-data-types/payment-attempt-swish-data-type.mjs +0 -0
  677. /package/{esm2020 → esm2022}/lib/models/invoice/payment-attempt-data-types/payment-attempt-zimpler-data-type.mjs +0 -0
  678. /package/{esm2020 → esm2022}/lib/models/invoice/payment-types/index.mjs +0 -0
  679. /package/{esm2020 → esm2022}/lib/models/member/index.mjs +0 -0
  680. /package/{esm2020 → esm2022}/lib/models/role.mjs +0 -0
  681. /package/{esm2020 → esm2022}/lib/services/factories/activity-extra-member-factory.mjs +0 -0
  682. /package/{esm2020 → esm2022}/lib/services/factories/activity-factory.mjs +0 -0
  683. /package/{esm2020 → esm2022}/lib/services/factories/activity-invite-factory.mjs +0 -0
  684. /package/{esm2020 → esm2022}/lib/services/factories/activity-location-factory.mjs +0 -0
  685. /package/{esm2020 → esm2022}/lib/services/factories/activity-location-group-factory.mjs +0 -0
  686. /package/{esm2020 → esm2022}/lib/services/factories/activity-location-part-factory.mjs +0 -0
  687. /package/{esm2020 → esm2022}/lib/services/factories/activity-location-tag-factory.mjs +0 -0
  688. /package/{esm2020 → esm2022}/lib/services/factories/activity-participant-factory.mjs +0 -0
  689. /package/{esm2020 → esm2022}/lib/services/factories/activity-type-factory.mjs +0 -0
  690. /package/{esm2020 → esm2022}/lib/services/factories/auth-factory.mjs +0 -0
  691. /package/{esm2020 → esm2022}/lib/services/factories/auth-member-factory.mjs +0 -0
  692. /package/{esm2020 → esm2022}/lib/services/factories/auth-section-factory.mjs +0 -0
  693. /package/{esm2020 → esm2022}/lib/services/factories/auth-team-factory.mjs +0 -0
  694. /package/{esm2020 → esm2022}/lib/services/factories/auth-team-section-factory.mjs +0 -0
  695. /package/{esm2020 → esm2022}/lib/services/factories/bookable-group-factory.mjs +0 -0
  696. /package/{esm2020 → esm2022}/lib/services/factories/bookable-item-factory.mjs +0 -0
  697. /package/{esm2020 → esm2022}/lib/services/factories/bookable-part-factory.mjs +0 -0
  698. /package/{esm2020 → esm2022}/lib/services/factories/bookable-tag-factory.mjs +0 -0
  699. /package/{esm2020 → esm2022}/lib/services/factories/booking-calendar-slot-factory.mjs +0 -0
  700. /package/{esm2020 → esm2022}/lib/services/factories/booking-settings-factory.mjs +0 -0
  701. /package/{esm2020 → esm2022}/lib/services/factories/card-deal-factory.mjs +0 -0
  702. /package/{esm2020 → esm2022}/lib/services/factories/card-factory.mjs +0 -0
  703. /package/{esm2020 → esm2022}/lib/services/factories/card-logo-factory.mjs +0 -0
  704. /package/{esm2020 → esm2022}/lib/services/factories/card-logo-urls-factory.mjs +0 -0
  705. /package/{esm2020 → esm2022}/lib/services/factories/card-member-ticket-factory.mjs +0 -0
  706. /package/{esm2020 → esm2022}/lib/services/factories/card-theme-factory.mjs +0 -0
  707. /package/{esm2020 → esm2022}/lib/services/factories/card-ticket-factory.mjs +0 -0
  708. /package/{esm2020 → esm2022}/lib/services/factories/card-ticket-location-factory.mjs +0 -0
  709. /package/{esm2020 → esm2022}/lib/services/factories/club-factory.mjs +0 -0
  710. /package/{esm2020 → esm2022}/lib/services/factories/club-image-factory.mjs +0 -0
  711. /package/{esm2020 → esm2022}/lib/services/factories/club-section-factory.mjs +0 -0
  712. /package/{esm2020 → esm2022}/lib/services/factories/contact-factory.mjs +0 -0
  713. /package/{esm2020 → esm2022}/lib/services/factories/credit-card-factory.mjs +0 -0
  714. /package/{esm2020 → esm2022}/lib/services/factories/directory-factory.mjs +0 -0
  715. /package/{esm2020 → esm2022}/lib/services/factories/event-factory.mjs +0 -0
  716. /package/{esm2020 → esm2022}/lib/services/factories/external-link-factory.mjs +0 -0
  717. /package/{esm2020 → esm2022}/lib/services/factories/file-factory.mjs +0 -0
  718. /package/{esm2020 → esm2022}/lib/services/factories/general-image-factory.mjs +0 -0
  719. /package/{esm2020 → esm2022}/lib/services/factories/giro-factory.mjs +0 -0
  720. /package/{esm2020 → esm2022}/lib/services/factories/group-role-factory.mjs +0 -0
  721. /package/{esm2020 → esm2022}/lib/services/factories/home-team-factory.mjs +0 -0
  722. /package/{esm2020 → esm2022}/lib/services/factories/image-urls-factory.mjs +0 -0
  723. /package/{esm2020 → esm2022}/lib/services/factories/member-attribute-factory.mjs +0 -0
  724. /package/{esm2020 → esm2022}/lib/services/factories/member-card-factory.mjs +0 -0
  725. /package/{esm2020 → esm2022}/lib/services/factories/member-contact-factory.mjs +0 -0
  726. /package/{esm2020 → esm2022}/lib/services/factories/member-factory.mjs +0 -0
  727. /package/{esm2020 → esm2022}/lib/services/factories/member-fee-factory.mjs +0 -0
  728. /package/{esm2020 → esm2022}/lib/services/factories/member-function-factory.mjs +0 -0
  729. /package/{esm2020 → esm2022}/lib/services/factories/member-invite-factory.mjs +0 -0
  730. /package/{esm2020 → esm2022}/lib/services/factories/member-invoice-factory.mjs +0 -0
  731. /package/{esm2020 → esm2022}/lib/services/factories/member-invoice-row-factory.mjs +0 -0
  732. /package/{esm2020 → esm2022}/lib/services/factories/member-public-form-field-factory.mjs +0 -0
  733. /package/{esm2020 → esm2022}/lib/services/factories/member-public-form-field-option-factory.mjs +0 -0
  734. /package/{esm2020 → esm2022}/lib/services/factories/member-team-factory.mjs +0 -0
  735. /package/{esm2020 → esm2022}/lib/services/factories/member-team-through-factory.mjs +0 -0
  736. /package/{esm2020 → esm2022}/lib/services/factories/member-type-factory.mjs +0 -0
  737. /package/{esm2020 → esm2022}/lib/services/factories/member-validation-settings-factory.mjs +0 -0
  738. /package/{esm2020 → esm2022}/lib/services/factories/news-factory.mjs +0 -0
  739. /package/{esm2020 → esm2022}/lib/services/factories/open-activity-factory.mjs +0 -0
  740. /package/{esm2020 → esm2022}/lib/services/factories/optional-fee-factory.mjs +0 -0
  741. /package/{esm2020 → esm2022}/lib/services/factories/other-member-factory.mjs +0 -0
  742. /package/{esm2020 → esm2022}/lib/services/factories/other-member-field-factory.mjs +0 -0
  743. /package/{esm2020 → esm2022}/lib/services/factories/overbooked-bookable-item-factory.mjs +0 -0
  744. /package/{esm2020 → esm2022}/lib/services/factories/overbooked-location-factory.mjs +0 -0
  745. /package/{esm2020 → esm2022}/lib/services/factories/partner-factory.mjs +0 -0
  746. /package/{esm2020 → esm2022}/lib/services/factories/public-authentication-factory.mjs +0 -0
  747. /package/{esm2020 → esm2022}/lib/services/factories/registration-qr-code-factory.mjs +0 -0
  748. /package/{esm2020 → esm2022}/lib/services/factories/search-club-factory.mjs +0 -0
  749. /package/{esm2020 → esm2022}/lib/services/factories/search-member-card-factory.mjs +0 -0
  750. /package/{esm2020 → esm2022}/lib/services/factories/search-member-factory.mjs +0 -0
  751. /package/{esm2020 → esm2022}/lib/services/factories/search-member-invoice-factory.mjs +0 -0
  752. /package/{esm2020 → esm2022}/lib/services/factories/search-member-team-through-factory.mjs +0 -0
  753. /package/{esm2020 → esm2022}/lib/services/factories/search-team-factory.mjs +0 -0
  754. /package/{esm2020 → esm2022}/lib/services/factories/section-factory.mjs +0 -0
  755. /package/{esm2020 → esm2022}/lib/services/factories/swish-factory.mjs +0 -0
  756. /package/{esm2020 → esm2022}/lib/services/factories/token-factory.mjs +0 -0
  757. /package/{esm2020 → esm2022}/lib/services/factories/unpaid-invoice-factory.mjs +0 -0
  758. /package/{esm2020 → esm2022}/lib/services/factories/user-factory.mjs +0 -0
  759. /package/{esm2020 → esm2022}/lib/services/factories/user-notification-factory.mjs +0 -0
  760. /package/{esm2020 → esm2022}/lib/services/factories/zimpler-factory.mjs +0 -0
  761. /package/{esm2020 → esm2022}/lib/services/invoice/index.mjs +0 -0
  762. /package/{esm2020 → esm2022}/lib/types/attribute-type.mjs +0 -0
  763. /package/{esm2020 → esm2022}/lib/types/booking-calendar-slot-reserved-time-position.mjs +0 -0
  764. /package/{esm2020 → esm2022}/lib/types/booking-calendar-slot-type.mjs +0 -0
  765. /package/{esm2020 → esm2022}/lib/types/contact-type.mjs +0 -0
  766. /package/{esm2020 → esm2022}/lib/types/grant-type.mjs +0 -0
  767. /package/{esm2020 → esm2022}/lib/types/index.mjs +0 -0
  768. /package/{esm2020 → esm2022}/lib/types/payment-attempt-status-type.mjs +0 -0
  769. /package/{esm2020 → esm2022}/lib/types/payment-attempt-type.mjs +0 -0
  770. /package/{esm2020 → esm2022}/lib/types/sex-type.mjs +0 -0
  771. /package/{esm2020 → esm2022}/myclub_se-data-access.mjs +0 -0
package/index.d.ts CHANGED
@@ -3,4 +3,5 @@ export * from './lib/data-access.module';
3
3
  export * from './lib/interfaces';
4
4
  export * from './lib/models';
5
5
  export * from './lib/services';
6
+ export * from './lib/store';
6
7
  export * from './lib/types';
@@ -25,4 +25,7 @@ export interface ApiBookingCalendarApplicationTime {
25
25
  bookable_part_id: string | null;
26
26
  readonly bookable_part_name: string | null;
27
27
  readonly bookable_id: string;
28
+ member_id: string | null;
29
+ readonly member_name: string | null;
30
+ readonly member_email: string | null;
28
31
  }
@@ -24,4 +24,7 @@ export interface ApiBookingCalendarSlotSession {
24
24
  readonly color: string | null;
25
25
  update_repeating: boolean;
26
26
  update_until_date: string | null;
27
+ member_id: string | null;
28
+ readonly member_name: string | null;
29
+ readonly member_email: string | null;
27
30
  }
@@ -16,4 +16,6 @@ export interface ApiBookingCalendar {
16
16
  max_application_number: number;
17
17
  allow_team_export: boolean;
18
18
  allow_repeated_bookings: boolean;
19
+ type?: string | null;
20
+ type_display?: string | null;
19
21
  }
@@ -0,0 +1,5 @@
1
+ export interface ApiFeatureFlags {
2
+ newsletter: boolean;
3
+ booking_system: boolean;
4
+ member_booking: boolean;
5
+ }
@@ -1,4 +1,4 @@
1
- export declare type ApiPaymentAttemptCreditCardDataType = {
1
+ export type ApiPaymentAttemptCreditCardDataType = {
2
2
  readonly hash: string;
3
3
  readonly payment_attempt_id: string;
4
4
  };
@@ -1,3 +1,3 @@
1
- export declare type ApiPaymentAttemptSwishDataType = {
1
+ export type ApiPaymentAttemptSwishDataType = {
2
2
  readonly payment_request_token: string;
3
3
  };
@@ -1,3 +1,3 @@
1
- export declare type ApiPaymentAttemptZimplerDataType = {
1
+ export type ApiPaymentAttemptZimplerDataType = {
2
2
  readonly user_form_url: string;
3
3
  };
@@ -27,6 +27,7 @@ export * from './api-collection';
27
27
  export * from './api-directory';
28
28
  export * from './api-event';
29
29
  export * from './api-external-link';
30
+ export * from './api-feature-flags';
30
31
  export * from './api-file-object';
31
32
  export * from './api-general-image';
32
33
  export * from './api-group-role';
@@ -1,12 +1,17 @@
1
- import { HttpRequest, HttpHandler, HttpInterceptor } from '@angular/common/http';
2
- import { AuthenticationService } from './authentication.service';
1
+ import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { Store } from '@ngrx/store';
4
+ import { Actions } from '@ngrx/effects';
3
5
  import * as i0 from "@angular/core";
4
6
  export declare class AuthenticationInterceptor implements HttpInterceptor {
5
- private authenticationService;
6
- private isRefreshing;
7
- private refreshTokenSubject;
8
- constructor(authenticationService: AuthenticationService);
9
- intercept(request: HttpRequest<unknown>, next: HttpHandler): import("rxjs").Observable<import("@angular/common/http").HttpEvent<any>>;
7
+ private store;
8
+ private actions$;
9
+ private refreshTokenInProgress;
10
+ private requestQueue;
11
+ constructor(store: Store, actions$: Actions);
12
+ intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
13
+ private handleAuthenticatedRequest;
14
+ private handlePublicRequest;
10
15
  private addAuthorizationHeader;
11
16
  private handle401Error;
12
17
  static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationInterceptor, never>;
@@ -1,6 +1,8 @@
1
1
  import { ModuleWithProviders } from '@angular/core';
2
2
  import { App } from './authentication';
3
3
  import * as i0 from "@angular/core";
4
+ import * as i1 from "@ngrx/store";
5
+ import * as i2 from "@ngrx/effects";
4
6
  export interface ModuleConfig {
5
7
  app: App;
6
8
  domain: string;
@@ -8,6 +10,6 @@ export interface ModuleConfig {
8
10
  export declare class DataAccessModule {
9
11
  static forRoot(config: ModuleConfig): ModuleWithProviders<DataAccessModule>;
10
12
  static ɵfac: i0.ɵɵFactoryDeclaration<DataAccessModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<DataAccessModule, never, never, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DataAccessModule, never, [typeof i1.StoreFeatureModule, typeof i2.EffectsFeatureModule], never>;
12
14
  static ɵinj: i0.ɵɵInjectorDeclaration<DataAccessModule>;
13
15
  }
@@ -1,5 +1,7 @@
1
1
  import { OptionInterface } from '../interfaces';
2
2
  export declare class ActivitySettings {
3
+ activityLocations: Array<OptionInterface>;
4
+ activityTypes: Array<OptionInterface>;
3
5
  dayOptions: Array<OptionInterface>;
4
6
  hourOptions: Array<OptionInterface>;
5
7
  inviteGroupOptions: Array<OptionInterface>;
@@ -9,5 +11,5 @@ export declare class ActivitySettings {
9
11
  remindReceiverOptions: Array<OptionInterface>;
10
12
  repeatOptions: Array<OptionInterface>;
11
13
  repeatTypeOptions: Array<OptionInterface>;
12
- constructor(dayOptions: Array<OptionInterface>, hourOptions: Array<OptionInterface>, inviteGroupOptions: Array<OptionInterface>, inviteSettingsOptions: Array<OptionInterface>, maxAttendanceOptions: Array<OptionInterface>, meetUpTimeOptions: Array<OptionInterface>, remindReceiverOptions: Array<OptionInterface>, repeatOptions: Array<OptionInterface>, repeatTypeOptions: Array<OptionInterface>);
14
+ constructor(activityLocations: Array<OptionInterface>, activityTypes: Array<OptionInterface>, dayOptions: Array<OptionInterface>, hourOptions: Array<OptionInterface>, inviteGroupOptions: Array<OptionInterface>, inviteSettingsOptions: Array<OptionInterface>, maxAttendanceOptions: Array<OptionInterface>, meetUpTimeOptions: Array<OptionInterface>, remindReceiverOptions: Array<OptionInterface>, repeatOptions: Array<OptionInterface>, repeatTypeOptions: Array<OptionInterface>);
13
15
  }
@@ -1,6 +1,7 @@
1
1
  import { AuthMember } from './auth-member';
2
2
  import { AuthSection } from './auth-section';
3
3
  import { AuthTeam } from './auth-team';
4
+ import { SearchTeam } from '../search-team';
4
5
  export declare class Auth {
5
6
  id: string;
6
7
  name: string;
@@ -10,7 +11,7 @@ export declare class Auth {
10
11
  registrationEnabled: boolean;
11
12
  sections: AuthSection[];
12
13
  siteEnabled: boolean;
13
- teams: AuthTeam[];
14
+ teams: AuthTeam[] | SearchTeam[];
14
15
  user_name: string;
15
- constructor(id: string, name: string, clubAdmin: boolean, isSectionClub: boolean, members: AuthMember[], registrationEnabled: boolean, sections: AuthSection[], siteEnabled: boolean, teams: AuthTeam[], user_name: string);
16
+ constructor(id: string, name: string, clubAdmin: boolean, isSectionClub: boolean, members: AuthMember[], registrationEnabled: boolean, sections: AuthSection[], siteEnabled: boolean, teams: AuthTeam[] | SearchTeam[], user_name: string);
16
17
  }
@@ -1,4 +1,5 @@
1
1
  import { FormControl, FormGroup } from "@angular/forms";
2
+ import moment from "moment";
2
3
  export declare class BookingCalendarApplicationTime {
3
4
  id: string;
4
5
  section_id: string | null;
@@ -26,15 +27,18 @@ export declare class BookingCalendarApplicationTime {
26
27
  readonly bookable_part_name: string | null;
27
28
  readonly bookable_id: string;
28
29
  readonly bookable_name: string | null;
30
+ member_id: string | null;
31
+ readonly member_name: string | null;
32
+ readonly member_email: string | null;
29
33
  static asFormGroup(session?: BookingCalendarApplicationTime): FormGroup<{
30
34
  id: FormControl<string | null>;
31
35
  section_id: FormControl<string | null>;
32
36
  slot_id: FormControl<string | null>;
33
37
  team_id: FormControl<string | null>;
34
38
  title: FormControl<string | null>;
35
- end_time: FormControl<string | null>;
36
39
  section_name: FormControl<string | null>;
37
- start_time: FormControl<string | null>;
40
+ start_time: FormControl<moment.Moment | null>;
41
+ end_time: FormControl<moment.Moment | null>;
38
42
  team_name: FormControl<string | null>;
39
43
  applicant_comment: FormControl<string | null>;
40
44
  reviewer_comment: FormControl<string | null>;
@@ -43,6 +47,7 @@ export declare class BookingCalendarApplicationTime {
43
47
  activity_type_id: FormControl<string | null>;
44
48
  bookable_zones_taken: FormControl<number | null>;
45
49
  bookable_part_id: FormControl<string | null>;
50
+ member_id: FormControl<string | null>;
46
51
  }>;
47
- constructor(id: string, section_id: string | null, slot_id: string, team_id: string | null, title: string, end_time: string, section_name: string | null, start_time: string, team_name: string | null, applicant_comment: string | null, reviewer_comment: string | null, status: string, repeat: boolean, activity_type_id: string | null, color: string | null, slot_start_time: string, slot_end_time: string, slot_day: string, slot_number_of_available_sessions: string, slot_last_repeating_date: string | null, created: string, bookable_zones_taken: number, bookable_part_id: string | null, bookable_part_name: string | null, bookable_id: string, bookable_name: string | null);
52
+ constructor(id: string, section_id: string | null, slot_id: string, team_id: string | null, title: string, end_time: string, section_name: string | null, start_time: string, team_name: string | null, applicant_comment: string | null, reviewer_comment: string | null, status: string, repeat: boolean, activity_type_id: string | null, color: string | null, slot_start_time: string, slot_end_time: string, slot_day: string, slot_number_of_available_sessions: string, slot_last_repeating_date: string | null, created: string, bookable_zones_taken: number, bookable_part_id: string | null, bookable_part_name: string | null, bookable_id: string, bookable_name: string | null, member_id: string | null, member_name: string | null, member_email: string | null);
48
53
  }
@@ -1,4 +1,5 @@
1
1
  import { FormControl, FormGroup } from "@angular/forms";
2
+ import moment from "moment/moment";
2
3
  export declare class BookingCalendarSlotSession {
3
4
  id: string;
4
5
  section_id: string | null;
@@ -25,26 +26,30 @@ export declare class BookingCalendarSlotSession {
25
26
  readonly bookable_part_name: string | null;
26
27
  readonly bookable_name: string | null;
27
28
  readonly bookable_id: string;
29
+ member_id: string | null;
30
+ readonly member_name: string | null;
31
+ readonly member_email: string | null;
28
32
  static asFormGroup(session?: BookingCalendarSlotSession): FormGroup<{
29
33
  id: FormControl<string | null>;
30
34
  section_id: FormControl<string | null>;
31
35
  slot_id: FormControl<string | null>;
32
36
  team_id: FormControl<string | null>;
33
37
  title: FormControl<string | null>;
34
- end_time: FormControl<string | null>;
35
38
  section_name: FormControl<string | null>;
36
- start_time: FormControl<string | null>;
39
+ start_time: FormControl<moment.Moment | null>;
40
+ end_time: FormControl<moment.Moment | null>;
41
+ last_repeating_date: FormControl<moment.Moment | null>;
37
42
  team_name: FormControl<string | null>;
38
43
  is_overbooked: FormControl<boolean | null>;
39
- last_repeating_date: FormControl<string | null>;
40
44
  type: FormControl<string | null>;
41
45
  comment: FormControl<string | null>;
42
46
  repeat: FormControl<boolean | null>;
43
47
  activity_type_id: FormControl<string | null>;
44
48
  update_repeating: FormControl<boolean | null>;
45
- update_until_date: FormControl<string | null>;
49
+ update_until_date: FormControl<moment.Moment | null>;
46
50
  bookable_zones_taken: FormControl<number | null>;
47
51
  bookable_part_id: FormControl<string | null>;
52
+ member_id: FormControl<string | null>;
48
53
  }>;
49
- constructor(id: string, section_id: string | null, slot_id: string, team_id: string | null, title: string, end_time: string, section_name: string | null, start_time: string, team_name: string | null, is_overbooked: boolean, last_repeating_date: string | null, type: string, slot_index: number, comment: string | null, day: string, repeat: boolean, activity_type_id: string | null, color: string | null, update_repeating: boolean, update_until_date: string | null, bookable_zones_taken: number, bookable_part_id: string | null, bookable_part_name: string | null, bookable_name: string | null, bookable_id: string);
54
+ constructor(id: string, section_id: string | null, slot_id: string, team_id: string | null, title: string, end_time: string, section_name: string | null, start_time: string, team_name: string | null, is_overbooked: boolean, last_repeating_date: string | null, type: string, slot_index: number, comment: string | null, day: string, repeat: boolean, activity_type_id: string | null, color: string | null, update_repeating: boolean, update_until_date: string | null, bookable_zones_taken: number, bookable_part_id: string | null, bookable_part_name: string | null, bookable_name: string | null, bookable_id: string, member_id: string | null, member_name: string | null, member_email: string | null);
50
55
  }
@@ -3,6 +3,7 @@ import { BookingCalendarSlotType } from "../types/booking-calendar-slot-type";
3
3
  import { FormControl, FormGroup } from "@angular/forms";
4
4
  import { BookingCalendarSlotReservedTimePosition } from "../types/booking-calendar-slot-reserved-time-position";
5
5
  import { BookingCalendarApplicationTime } from "./booking-calendar-application-time";
6
+ import moment from 'moment';
6
7
  export declare class BookingCalendarSlot {
7
8
  id: string;
8
9
  calendar_id: string;
@@ -32,20 +33,20 @@ export declare class BookingCalendarSlot {
32
33
  static asFormGroup(slot?: BookingCalendarSlot): FormGroup<{
33
34
  id: FormControl<string | null>;
34
35
  calendar_id: FormControl<string | null>;
35
- day: FormControl<string | null>;
36
- end_time: FormControl<string | null>;
37
36
  group_id: FormControl<string | null>;
38
37
  number_of_available_sessions: FormControl<number | null>;
39
- start_time: FormControl<string | null>;
38
+ day: FormControl<moment.Moment | null>;
39
+ end_time: FormControl<moment.Moment | null>;
40
+ start_time: FormControl<moment.Moment | null>;
40
41
  type: FormControl<string | null>;
41
42
  repeat: FormControl<string | null>;
42
43
  repeat_num: FormControl<number | null>;
43
- repeat_to_day: FormControl<string | null>;
44
+ repeat_to_day: FormControl<moment.Moment | null>;
44
45
  repeat_type: FormControl<string | null>;
45
46
  update_repeating: FormControl<boolean | null>;
46
- update_until_date: FormControl<string | null>;
47
+ update_until_date: FormControl<moment.Moment | null>;
47
48
  reserved_time_enabled: FormControl<boolean | null>;
48
- reserved_time: FormControl<string | null>;
49
+ reserved_time: FormControl<moment.Moment | null>;
49
50
  reserved_time_position: FormControl<string | null>;
50
51
  bookable_id: FormControl<string | null>;
51
52
  }>;
@@ -17,6 +17,8 @@ export declare class BookingCalendar {
17
17
  is_default: boolean;
18
18
  available_for_teams?: SearchTeam[] | null | undefined;
19
19
  bookable_groups?: BookableGroup[] | null | undefined;
20
+ type?: string | null | undefined;
21
+ type_display?: string | null | undefined;
20
22
  static asFormGroup(calendar?: BookingCalendar): FormGroup<{
21
23
  id: FormControl<string | null>;
22
24
  club_id: FormControl<string | null>;
@@ -33,6 +35,7 @@ export declare class BookingCalendar {
33
35
  is_default: FormControl<boolean | null>;
34
36
  allow_team_export: FormControl<boolean | null>;
35
37
  allow_repeated_bookings: FormControl<boolean | null>;
38
+ type: FormControl<string | null>;
36
39
  }>;
37
- constructor(id: string, club_id: string, section_id: string | null, team_id: string | null, club_name: string, name: string, section_name: string | null, team_name: string | null, status: string | null, max_application_number: number, allow_team_export: boolean, allow_repeated_bookings: boolean, is_default: boolean, available_for_teams?: SearchTeam[] | null | undefined, bookable_groups?: BookableGroup[] | null | undefined);
40
+ constructor(id: string, club_id: string, section_id: string | null, team_id: string | null, club_name: string, name: string, section_name: string | null, team_name: string | null, status: string | null, max_application_number: number, allow_team_export: boolean, allow_repeated_bookings: boolean, is_default: boolean, available_for_teams?: SearchTeam[] | null | undefined, bookable_groups?: BookableGroup[] | null | undefined, type?: string | null | undefined, type_display?: string | null | undefined);
38
41
  }
@@ -1,4 +1,5 @@
1
1
  import { FormControl, FormGroup } from "@angular/forms";
2
+ import moment from 'moment';
2
3
  export declare class BookingSettings {
3
4
  id: string;
4
5
  calendar_step: string;
@@ -8,10 +9,10 @@ export declare class BookingSettings {
8
9
  should_split_booking_into_zones: boolean;
9
10
  static asFormGroup(settings?: BookingSettings): FormGroup<{
10
11
  id: FormControl<string | null>;
11
- calendar_step: FormControl<string | null>;
12
- calendar_min_time: FormControl<string | null>;
13
- calendar_max_time: FormControl<string | null>;
14
- calendar_session_duration: FormControl<string | null>;
12
+ calendar_step: FormControl<moment.Moment | null>;
13
+ calendar_min_time: FormControl<moment.Moment | null>;
14
+ calendar_max_time: FormControl<moment.Moment | null>;
15
+ calendar_session_duration: FormControl<moment.Moment | null>;
15
16
  should_split_booking_into_zones: FormControl<boolean | null>;
16
17
  }>;
17
18
  constructor(id: string, calendar_step: string, calendar_min_time: string, calendar_max_time: string, calendar_session_duration: string, should_split_booking_into_zones: boolean);
@@ -0,0 +1,17 @@
1
+ export declare class BookingSlotFilter {
2
+ startDate: string | null;
3
+ endDate: string | null;
4
+ calendarIds: string[] | null;
5
+ locationIds: string[] | null;
6
+ bookableItemIds: string[] | null;
7
+ tagIds: string[] | null;
8
+ teamIds: string[] | null;
9
+ bookableGroupIds: string[] | null;
10
+ activityTypeIds: string[] | null;
11
+ hasOpenSessions: boolean | null;
12
+ showApplicationTimes: boolean | null;
13
+ sortBy: string | null;
14
+ constructor(startDate?: string | null, endDate?: string | null, calendarIds?: string[] | null, locationIds?: string[] | null, bookableItemIds?: string[] | null, tagIds?: string[] | null, teamIds?: string[] | null, bookableGroupIds?: string[] | null, activityTypeIds?: string[] | null, hasOpenSessions?: boolean | null, showApplicationTimes?: boolean | null, sortBy?: string | null);
15
+ static fromFilter(filter: BookingSlotFilter): BookingSlotFilter;
16
+ toParams(): any;
17
+ }
@@ -12,4 +12,5 @@ export declare class Directory {
12
12
  constructor(id: string, club_id: string, section_id: string | null, team_id: string | null, created: string, files: Array<FileObject>, name: string, location_name: string, updated: string);
13
13
  belongsToTeam(teamId?: string | null): boolean;
14
14
  belongsToSection(sectionId?: string | null): boolean;
15
+ static fromPlainObject(obj: any): Directory;
15
16
  }
@@ -0,0 +1,7 @@
1
+ export declare class FeatureFlags {
2
+ newsletter: boolean;
3
+ booking_system: boolean;
4
+ member_booking: boolean;
5
+ constructor(newsletter: boolean, booking_system: boolean, member_booking: boolean);
6
+ static defaultValues(): FeatureFlags;
7
+ }
@@ -19,6 +19,7 @@ export * from './booking-calendar-application-time';
19
19
  export * from './booking-calendar-slot';
20
20
  export * from './booking-calendar-slot-session';
21
21
  export * from './booking-settings';
22
+ export * from './booking-slot-filter';
22
23
  export * from './calendar';
23
24
  export * from './calendar-event';
24
25
  export * from './card';
@@ -31,6 +32,7 @@ export * from './directory';
31
32
  export * from './email';
32
33
  export * from './event';
33
34
  export * from './external-link';
35
+ export * from './feature-flags';
34
36
  export * from './file-object';
35
37
  export * from './general-image';
36
38
  export * from './group-role';
@@ -1,4 +1,4 @@
1
- export declare type PaymentAttemptCreditCardDataType = {
1
+ export type PaymentAttemptCreditCardDataType = {
2
2
  readonly hash: string;
3
3
  readonly paymentAttemptId: string;
4
4
  };
@@ -1,3 +1,3 @@
1
- export declare type PaymentAttemptSwishDataType = {
1
+ export type PaymentAttemptSwishDataType = {
2
2
  readonly paymentRequestToken: string;
3
3
  };
@@ -1,3 +1,3 @@
1
- export declare type PaymentAttemptZimplerDataType = {
1
+ export type PaymentAttemptZimplerDataType = {
2
2
  readonly userFormUrl: string;
3
3
  };
@@ -1,5 +1,6 @@
1
1
  import { ApiService } from './api.service';
2
2
  import { Activity, ActivityLocation, ActivityType, Collection, MemberActivityInvite, Role } from '../models';
3
+ import { Observable } from 'rxjs';
3
4
  import { OpenActivitySearchParamsInterface } from '../interfaces';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class ActivityService {
@@ -7,58 +8,60 @@ export declare class ActivityService {
7
8
  activityLocationCollection: Collection<ActivityLocation> | undefined;
8
9
  activityLocationResponseDate: Date | undefined;
9
10
  constructor(apiService: ApiService);
10
- addTeamActivityInvites(teamId: string, activityId: string, memberIds: Array<string>): import("rxjs").Observable<boolean>;
11
- createTeamActivity(teamId: string, data: Partial<Activity>): import("rxjs").Observable<Activity>;
12
- deleteTeamActivity(teamId: string, id: string): import("rxjs").Observable<boolean>;
13
- deleteTeamActivityInvite(teamId: string, activityId: string, activityInviteId: string): import("rxjs").Observable<boolean>;
14
- getMemberActivity(memberId: string, activityId: string): import("rxjs").Observable<Activity>;
15
- getMemberActivityInvite(memberId: string, activityInviteId: string): import("rxjs").Observable<import("../models").ActivityInvite>;
16
- getMemberActivityInvites(memberId: string): import("rxjs").Observable<Collection<import("../models").ActivityInvite>>;
17
- getMemberCalendarEvents(memberId: string, startDate?: string | null, endDate?: string | null): import("rxjs").Observable<Collection<import("../models").Event>>;
18
- getMemberOpenActivities(memberId: string, openActivitySearchParams: OpenActivitySearchParamsInterface): import("rxjs").Observable<Collection<import("../models").OpenActivity>>;
19
- getMemberOpenActivity(memberId: string, activityId: string): import("rxjs").Observable<import("../models").OpenActivity>;
20
- getMemberOpenActivityActivityTypes(memberId: string, startDate?: string | null, endDate?: string | null, all?: boolean): import("rxjs").Observable<Collection<ActivityType>>;
21
- getMemberOpenActivityLocations(memberId: string, startDate?: string | null, endDate?: string | null, all?: boolean): import("rxjs").Observable<Collection<ActivityLocation>>;
22
- getPublicActivityInvite(id: string, token: string): import("rxjs").Observable<import("../models").ActivityInvite>;
23
- getPublicOpenActivities(openActivitySearchParams: OpenActivitySearchParamsInterface): import("rxjs").Observable<Collection<import("../models").OpenActivity>>;
24
- getPublicOpenActivity(activityId: string): import("rxjs").Observable<import("../models").OpenActivity>;
25
- getPublicOpenActivityActivityTypes(startDate?: string | null, endDate?: string | null, all?: boolean): import("rxjs").Observable<Collection<ActivityType>>;
26
- getPublicOpenActivityLocations(startDate?: string | null, endDate?: string | null, all?: boolean): import("rxjs").Observable<Collection<ActivityLocation>>;
27
- getTeamActivity(teamId: string, id: string): import("rxjs").Observable<Activity>;
28
- getTeamActivityQRCode(teamId: string, id: string): import("rxjs").Observable<Activity>;
29
- getActivityLocations(role: Role, clubOrSectionOrTeamId: string, force?: boolean): import("rxjs").Observable<Collection<ActivityLocation> | undefined>;
30
- getTeamActivityLocations(teamId: string, force?: boolean): import("rxjs").Observable<Collection<ActivityLocation> | undefined>;
31
- getClubActivityLocations(clubId: string, force?: boolean): import("rxjs").Observable<Collection<ActivityLocation> | undefined>;
32
- getSectionActivityLocations(sectionId: string, force?: boolean): import("rxjs").Observable<Collection<ActivityLocation> | undefined>;
33
- updateActivityLocation(role: Role, clubOrSectionOrTeamId: string, location: ActivityLocation): import("rxjs").Observable<ActivityLocation>;
34
- updateClubActivityLocation(clubId: string, location: ActivityLocation): import("rxjs").Observable<ActivityLocation>;
35
- updateMemberActivityAttendance(memberId: string, activityId: string): import("rxjs").Observable<boolean>;
36
- updateSectionActivityLocation(sectionId: string, location: ActivityLocation): import("rxjs").Observable<ActivityLocation>;
37
- getTeamActivityNew(teamId: string): import("rxjs").Observable<Activity>;
38
- getTeamActivityParticipants(teamId: string, activityId: string): import("rxjs").Observable<Collection<import("../models").SearchMember>>;
39
- getActivitySettings(role: Role, clubOrSectionOrTeamId: string): import("rxjs").Observable<import("../models").ActivitySettings>;
40
- getTeamActivitySettings(teamId: string): import("rxjs").Observable<import("../models").ActivitySettings>;
41
- getSectionActivitySettings(sectionId: string): import("rxjs").Observable<import("../models").ActivitySettings>;
42
- getClubActivitySettings(clubId: string): import("rxjs").Observable<import("../models").ActivitySettings>;
43
- getActivityTypes(role: Role, clubOrSectionOrTeamId: string): import("rxjs").Observable<Collection<ActivityType>>;
44
- getTeamActivityTypes(teamId: string): import("rxjs").Observable<Collection<ActivityType>>;
45
- getClubActivityTypes(clubId: string): import("rxjs").Observable<Collection<ActivityType>>;
46
- getSectionActivityTypes(sectionId: string): import("rxjs").Observable<Collection<ActivityType>>;
47
- updateActivityType(role: Role, clubOrSectionOrTeamId: string, activityType: ActivityType): import("rxjs").Observable<ActivityType>;
48
- updateClubActivityType(clubId: string, activityType: ActivityType): import("rxjs").Observable<ActivityType>;
49
- updateSectionActivityType(sectionId: string, activityType: ActivityType): import("rxjs").Observable<ActivityType>;
50
- getTeamCalendarEvents(teamId: string, startDate?: string | null, endDate?: string | null): import("rxjs").Observable<Collection<import("../models").Event>>;
51
- resendInvite(teamId: string, activityId: string, activityInviteId: string): import("rxjs").Observable<import("../models").ActivityInvite>;
52
- removeMemberOpenActivity(memberId: string, activityId: string): import("rxjs").Observable<boolean>;
53
- removePublicOpenActivity(activityId: string): import("rxjs").Observable<boolean>;
54
- signUpMemberOpenActivity(memberId: string, activityId: string, comment: string, optionalFees: Array<string>): import("rxjs").Observable<boolean>;
55
- signUpPublicOpenActivity(activityId: string, comment: string, optionalFees: Array<string>): import("rxjs").Observable<boolean>;
56
- updateMemberActivity(memberId: string, activityInviteId: string, activityInvite: unknown): import("rxjs").Observable<import("../models").ActivityInvite>;
57
- updatePublicActivityInvite(id: string, token: string, activityInvite: unknown): import("rxjs").Observable<import("../models").ActivityInvite>;
58
- updatePublicOpenActivityInvite(id: string, activityInvite: unknown): import("rxjs").Observable<import("../models").ActivityInvite>;
59
- updateTeamActivity(teamId: string, activity: Activity): import("rxjs").Observable<Activity>;
60
- updateTeamActivityInvite(teamId: string, activityId: string, activityInviteId: string, activityInvite: MemberActivityInvite): import("rxjs").Observable<MemberActivityInvite>;
61
- updateTeamActivityParticipants(teamId: string, activityId: string, members: Array<string>): import("rxjs").Observable<void>;
11
+ addTeamActivityInvites(teamId: string, activityId: string, memberIds: Array<string>): Observable<boolean>;
12
+ createTeamActivity(teamId: string, data: Partial<Activity>): Observable<Activity>;
13
+ deleteTeamActivity(teamId: string, id: string): Observable<boolean>;
14
+ deleteTeamActivityInvite(teamId: string, activityId: string, activityInviteId: string): Observable<boolean>;
15
+ getMemberActivity(memberId: string, activityId: string): Observable<Activity>;
16
+ getMemberActivityInvite(memberId: string, activityInviteId: string): Observable<import("../models").ActivityInvite>;
17
+ getMemberActivityInvites(memberId: string): Observable<Collection<import("../models").ActivityInvite>>;
18
+ getMemberCalendarEvents(memberId: string, startDate?: string | null, endDate?: string | null): Observable<Collection<import("../models").Event>>;
19
+ getMemberOpenActivities(memberId: string, openActivitySearchParams: OpenActivitySearchParamsInterface): Observable<Collection<import("../models").OpenActivity>>;
20
+ getMemberOpenActivity(memberId: string, activityId: string): Observable<import("../models").OpenActivity>;
21
+ getMemberOpenActivityActivityTypes(memberId: string, startDate?: string | null, endDate?: string | null, all?: boolean): Observable<Collection<ActivityType>>;
22
+ getMemberOpenActivityLocations(memberId: string, startDate?: string | null, endDate?: string | null, all?: boolean): Observable<Collection<ActivityLocation>>;
23
+ getPublicActivityInvite(id: string, token: string): Observable<import("../models").ActivityInvite>;
24
+ getPublicOpenActivities(openActivitySearchParams: OpenActivitySearchParamsInterface): Observable<Collection<import("../models").OpenActivity>>;
25
+ getPublicOpenActivity(activityId: string): Observable<import("../models").OpenActivity>;
26
+ getPublicOpenActivityActivityTypes(startDate?: string | null, endDate?: string | null, all?: boolean): Observable<Collection<ActivityType>>;
27
+ getPublicOpenActivityLocations(startDate?: string | null, endDate?: string | null, all?: boolean): Observable<Collection<ActivityLocation>>;
28
+ getTeamActivity(teamId: string, id: string): Observable<Activity>;
29
+ getTeamActivityQRCode(teamId: string, id: string): Observable<Activity>;
30
+ getActivityLocations(role: Role, clubOrSectionOrTeamId: string, force?: boolean): Observable<Collection<ActivityLocation>>;
31
+ getTeamActivityLocations(teamId: string, force?: boolean): Observable<Collection<ActivityLocation>>;
32
+ getClubActivityLocations(clubId: string, force?: boolean): Observable<Collection<ActivityLocation>>;
33
+ getSectionActivityLocations(sectionId: string, force?: boolean): Observable<Collection<ActivityLocation>>;
34
+ updateActivityLocation(role: Role, clubOrSectionOrTeamId: string, location: ActivityLocation): Observable<ActivityLocation>;
35
+ updateClubActivityLocation(clubId: string, location: ActivityLocation): Observable<ActivityLocation>;
36
+ updateMemberActivityAttendance(memberId: string, activityId: string): Observable<boolean>;
37
+ updateSectionActivityLocation(sectionId: string, location: ActivityLocation): Observable<ActivityLocation>;
38
+ getTeamActivityNew(teamId: string): Observable<Activity>;
39
+ getTeamActivityParticipants(teamId: string, activityId: string): Observable<Collection<import("../models").SearchMember>>;
40
+ getActivitySettings(role: Role, clubOrSectionOrTeamId: string): Observable<import("../models").ActivitySettings>;
41
+ getTeamActivitySettings(teamId: string): Observable<import("../models").ActivitySettings>;
42
+ getSectionActivitySettings(sectionId: string): Observable<import("../models").ActivitySettings>;
43
+ getClubActivitySettings(clubId: string): Observable<import("../models").ActivitySettings>;
44
+ getActivityTypes(role: Role, clubOrSectionOrTeamId: string): Observable<Collection<ActivityType>>;
45
+ getTeamActivityTypes(teamId: string): Observable<Collection<ActivityType>>;
46
+ getClubActivityTypes(clubId: string): Observable<Collection<ActivityType>>;
47
+ getSectionActivityTypes(sectionId: string): Observable<Collection<ActivityType>>;
48
+ updateActivityType(role: Role, clubOrSectionOrTeamId: string, activityType: ActivityType): Observable<ActivityType>;
49
+ updateClubActivityType(clubId: string, activityType: ActivityType): Observable<ActivityType>;
50
+ updateSectionActivityType(sectionId: string, activityType: ActivityType): Observable<ActivityType>;
51
+ getTeamCalendarEvents(teamId: string, startDate?: string | null, endDate?: string | null): Observable<Collection<import("../models").Event>>;
52
+ resendInvite(teamId: string, activityId: string, activityInviteId: string): Observable<import("../models").ActivityInvite>;
53
+ removeMemberOpenActivity(memberId: string, activityId: string): Observable<boolean>;
54
+ removePublicOpenActivity(activityId: string): Observable<boolean>;
55
+ signUpMemberOpenActivity(memberId: string, activityId: string, comment: string, optionalFees: Array<string>): Observable<boolean>;
56
+ signUpMemberOpenActivityWithResponse(memberId: string, activityId: string, comment: string, optionalFees: Array<string>): Observable<import("../models").OpenActivity>;
57
+ signUpPublicOpenActivity(activityId: string, comment: string, optionalFees: Array<string>): Observable<boolean>;
58
+ signUpPublicOpenActivityWithResponse(activityId: string, comment: string, optionalFees: Array<string>): Observable<import("../models").OpenActivity>;
59
+ updateMemberActivity(memberId: string, activityInviteId: string, activityInvite: unknown): Observable<import("../models").ActivityInvite>;
60
+ updatePublicActivityInvite(id: string, token: string, activityInvite: unknown): Observable<import("../models").ActivityInvite>;
61
+ updatePublicOpenActivityInvite(id: string, activityInvite: unknown): Observable<import("../models").ActivityInvite>;
62
+ updateTeamActivity(teamId: string, activity: Activity): Observable<Activity>;
63
+ updateTeamActivityInvite(teamId: string, activityId: string, activityInviteId: string, activityInvite: MemberActivityInvite): Observable<MemberActivityInvite>;
64
+ updateTeamActivityParticipants(teamId: string, activityId: string, members: Array<string>): Observable<void>;
62
65
  private getOpenActivityDateParams;
63
66
  private getOpenActivitySearchParams;
64
67
  private removeUnusedActivityFields;
@@ -8,9 +8,9 @@ export declare class BookableService {
8
8
  getTeamBookableItems(teamId: string): import("rxjs").Observable<import("../models").Collection<BookableItem>>;
9
9
  getClubBookableItems(clubId: string): import("rxjs").Observable<import("../models").Collection<BookableItem>>;
10
10
  getSectionBookableItems(sectionId: string): import("rxjs").Observable<import("../models").Collection<BookableItem>>;
11
- updateBookableItem(role: Role, clubOrSectionOrTeamId: string, bookableItem: BookableItem): import("rxjs").Observable<BookableItem>;
12
- updateClubBookableItem(clubId: string, bookableItem: BookableItem): import("rxjs").Observable<BookableItem>;
13
- updateSectionBookableItem(sectionId: string, bookableItem: BookableItem): import("rxjs").Observable<BookableItem>;
11
+ updateBookableItem(role: Role, clubOrSectionOrTeamId: string, bookableItem: Partial<BookableItem>): import("rxjs").Observable<BookableItem>;
12
+ updateClubBookableItem(clubId: string, bookableItem: Partial<BookableItem>): import("rxjs").Observable<BookableItem>;
13
+ updateSectionBookableItem(sectionId: string, bookableItem: Partial<BookableItem>): import("rxjs").Observable<BookableItem>;
14
14
  createBookableItem(role: Role, clubOrSectionOrTeamId: string, bookableItem: Partial<BookableItem>): import("rxjs").Observable<BookableItem>;
15
15
  createClubBookableItem(clubId: string, bookableItem: Partial<BookableItem>): import("rxjs").Observable<BookableItem>;
16
16
  createSectionBookableItem(sectionId: string, bookableItem: Partial<BookableItem>): import("rxjs").Observable<BookableItem>;
@@ -18,9 +18,9 @@ export declare class BookableService {
18
18
  getClubBookableGroups(clubId: string): import("rxjs").Observable<import("../models").Collection<BookableGroup>>;
19
19
  getSectionBookableGroups(sectionId: string): import("rxjs").Observable<import("../models").Collection<BookableGroup>>;
20
20
  getTeamBookableGroups(teamId: string): import("rxjs").Observable<import("../models").Collection<BookableGroup>>;
21
- updateBookableGroup(role: Role, clubOrSectionOrTeamId: string, bookableGroup: BookableGroup): import("rxjs").Observable<BookableGroup>;
22
- updateClubBookableGroup(clubId: string, bookableGroup: BookableGroup): import("rxjs").Observable<BookableGroup>;
23
- updateSectionBookableGroup(sectionId: string, bookableGroup: BookableGroup): import("rxjs").Observable<BookableGroup>;
21
+ updateBookableGroup(role: Role, clubOrSectionOrTeamId: string, bookableGroup: Partial<BookableGroup>): import("rxjs").Observable<BookableGroup>;
22
+ updateClubBookableGroup(clubId: string, bookableGroup: Partial<BookableGroup>): import("rxjs").Observable<BookableGroup>;
23
+ updateSectionBookableGroup(sectionId: string, bookableGroup: Partial<BookableGroup>): import("rxjs").Observable<BookableGroup>;
24
24
  createBookableGroup(role: Role, clubOrSectionOrTeamId: string, bookableGroup: Partial<BookableGroup>): import("rxjs").Observable<BookableGroup>;
25
25
  createClubBookableGroup(clubId: string, bookableGroup: Partial<BookableGroup>): import("rxjs").Observable<BookableGroup>;
26
26
  createSectionBookableGroup(sectionId: string, bookableGroup: Partial<BookableGroup>): import("rxjs").Observable<BookableGroup>;
@@ -32,9 +32,9 @@ export declare class BookableService {
32
32
  createClubBookableTag(clubId: string, tag: Partial<BookableTag>): import("rxjs").Observable<BookableTag>;
33
33
  createSectionBookableTag(sectionId: string, tag: Partial<BookableTag>): import("rxjs").Observable<BookableTag>;
34
34
  createTeamBookableTag(teamId: string, tag: Partial<BookableTag>): import("rxjs").Observable<BookableTag>;
35
- updateBookableTag(role: Role, clubOrSectionOrTeamId: string, tag: BookableTag): import("rxjs").Observable<BookableTag>;
36
- updateClubBookableTag(clubId: string, tag: BookableTag): import("rxjs").Observable<BookableTag>;
37
- updateSectionBookableTag(sectionId: string, tag: BookableTag): import("rxjs").Observable<BookableTag>;
35
+ updateBookableTag(role: Role, clubOrSectionOrTeamId: string, tag: Partial<BookableTag>): import("rxjs").Observable<BookableTag>;
36
+ updateClubBookableTag(clubId: string, tag: Partial<BookableTag>): import("rxjs").Observable<BookableTag>;
37
+ updateSectionBookableTag(sectionId: string, tag: Partial<BookableTag>): import("rxjs").Observable<BookableTag>;
38
38
  deleteBookableTag(role: Role, clubOrSectionOrTeamId: string, tag: BookableTag): import("rxjs").Observable<boolean>;
39
39
  deleteClubBookableTag(clubId: string, tag: BookableTag): import("rxjs").Observable<boolean>;
40
40
  deleteSectionBookableTag(sectionId: string, tag: BookableTag): import("rxjs").Observable<boolean>;