@glissandoo/lib 1.123.2 → 1.124.0-dev.219.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 (839) hide show
  1. package/functions/auth.d.ts +22 -0
  2. package/functions/composer.d.ts +13 -0
  3. package/functions/composerComposition.d.ts +102 -0
  4. package/functions/composerNotification.d.ts +38 -0
  5. package/functions/composerPayout.d.ts +20 -0
  6. package/functions/customer.d.ts +102 -0
  7. package/functions/event.js +29 -0
  8. package/functions/eventPlayer.js +13 -0
  9. package/functions/eventRepertory.d.ts +42 -0
  10. package/functions/eventRepertory.js +16 -0
  11. package/functions/groupRepertory.d.ts +250 -0
  12. package/functions/index.d.ts +256 -0
  13. package/functions/index.js +261 -0
  14. package/functions/misc.d.ts +24 -0
  15. package/functions/regions.js +270 -0
  16. package/helpers/appScenes.js +109 -0
  17. package/helpers/auth.d.ts +21 -0
  18. package/helpers/auth.js +43 -0
  19. package/helpers/badges.js +162 -0
  20. package/helpers/catalogBridge.d.ts +121 -0
  21. package/helpers/catalogBridge.js +95 -0
  22. package/helpers/collections.js +49 -0
  23. package/helpers/communicationTemplate/index.d.ts +33 -0
  24. package/helpers/communicationTemplate/index.js +47 -0
  25. package/helpers/compositionCategories/genres.d.ts +922 -0
  26. package/helpers/compositionCategories/genres.js +940 -0
  27. package/helpers/compositionCategories/index.d.ts +2 -0
  28. package/helpers/compositionCategories/index.js +18 -0
  29. package/helpers/compositionCategories/styles.d.ts +181 -0
  30. package/helpers/compositionCategories/styles.js +197 -0
  31. package/helpers/compositionSoloistOffstageParts/index.d.ts +34 -0
  32. package/helpers/compositionSoloistOffstageParts/index.js +117 -0
  33. package/helpers/currency.d.ts +23 -0
  34. package/helpers/currency.js +346 -0
  35. package/helpers/currencyConversion.d.ts +45 -0
  36. package/helpers/currencyConversion.js +119 -0
  37. package/helpers/dataStructures/trees/index.d.ts +12 -0
  38. package/helpers/dataStructures/trees/index.js +71 -0
  39. package/helpers/dataStructures/trees/types.d.ts +14 -0
  40. package/helpers/dataStructures/trees/types.js +5 -0
  41. package/helpers/dlinks.js +12 -0
  42. package/helpers/errors.d.ts +93 -0
  43. package/helpers/errors.js +85 -0
  44. package/helpers/externalUrls.d.ts +12 -0
  45. package/helpers/externalUrls.js +40 -0
  46. package/helpers/instruments/index.d.ts +164 -0
  47. package/helpers/instruments/index.js +344 -0
  48. package/helpers/instruments/lists.d.ts +6 -0
  49. package/helpers/instruments/lists.js +21 -0
  50. package/helpers/musicStyles/index.d.ts +40 -0
  51. package/helpers/musicStyles/index.js +227 -0
  52. package/helpers/notifications/index.js +231 -0
  53. package/helpers/objects.d.ts +15 -0
  54. package/helpers/objects.js +40 -0
  55. package/helpers/paymentForecast.js +57 -0
  56. package/helpers/payoutRules.js +165 -0
  57. package/helpers/plans.js +99 -0
  58. package/helpers/rates.d.ts +13 -0
  59. package/helpers/slate.d.ts +75 -0
  60. package/helpers/slate.js +26 -0
  61. package/helpers/ts-extras/array-includes.js +26 -0
  62. package/helpers/ts-extras/as-mutable.js +20 -0
  63. package/helpers/ts-extras/assert-error.js +37 -0
  64. package/helpers/ts-extras/index.js +33 -0
  65. package/helpers/ts-extras/is-defined.js +21 -0
  66. package/helpers/ts-extras/is-empty.js +6 -0
  67. package/helpers/ts-extras/is-infinite.js +11 -0
  68. package/helpers/ts-extras/is-present.js +21 -0
  69. package/helpers/ts-extras/object-entries.d.ts +23 -0
  70. package/helpers/ts-extras/object-from-entries.d.ts +26 -0
  71. package/helpers/ts-extras/object-has-own.js +25 -0
  72. package/helpers/ts-extras/object-keys.d.ts +21 -0
  73. package/helpers/ts-extras/object-keys.js +23 -0
  74. package/helpers/ts-extras/set-has.js +27 -0
  75. package/helpers/types.d.ts +69 -0
  76. package/helpers/types.js +65 -0
  77. package/lang/ca.json +704 -0
  78. package/lang/de.json +704 -0
  79. package/lang/en.json +704 -0
  80. package/lang/es.json +704 -0
  81. package/lang/eu.json +704 -0
  82. package/lang/fr.json +704 -0
  83. package/lang/gl.json +704 -0
  84. package/lang/index.js +203 -0
  85. package/lang/it.json +704 -0
  86. package/lang/nl.json +704 -0
  87. package/lang/pt.json +704 -0
  88. package/models/Communication/types.d.ts +63 -0
  89. package/models/Communication/types.js +26 -0
  90. package/models/CompositionGenre/index.d.ts +9 -0
  91. package/models/CompositionGenre/index.js +16 -0
  92. package/models/CompositionStyle/index.d.ts +9 -0
  93. package/models/CompositionStyle/index.js +16 -0
  94. package/models/Counters/Group/Analytics/types.js +17 -0
  95. package/models/Customer/index.d.ts +30 -0
  96. package/models/Customer/index.js +79 -0
  97. package/models/Customer/types.js +7 -0
  98. package/models/Evento/Player/types.js +22 -0
  99. package/models/Evento/Repertory/types.d.ts +8 -0
  100. package/models/Evento/index.d.ts +94 -0
  101. package/models/Evento/index.js +256 -0
  102. package/models/Evento/types.d.ts +177 -0
  103. package/models/Evento/types.js +55 -0
  104. package/models/Federation/index.d.ts +28 -0
  105. package/models/Federation/index.js +85 -0
  106. package/models/Group/Analytics/types.js +13 -0
  107. package/models/Group/Payment/supabase.js +46 -0
  108. package/models/Group/Payment/types.js +38 -0
  109. package/models/Group/Player/types.js +9 -0
  110. package/models/Group/Repertory/File/Section/index.d.ts +12 -0
  111. package/models/Group/Repertory/File/Section/index.js +26 -0
  112. package/models/Group/Repertory/File/Section/types.d.ts +12 -0
  113. package/models/Group/Repertory/File/Section/types.js +7 -0
  114. package/models/Group/Repertory/File/index.d.ts +31 -0
  115. package/models/Group/Repertory/File/index.js +81 -0
  116. package/models/Group/Repertory/FilePath/index.d.ts +22 -0
  117. package/models/Group/Repertory/index.d.ts +64 -0
  118. package/models/Group/Repertory/index.js +160 -0
  119. package/models/Group/Repertory/types.d.ts +80 -0
  120. package/models/Group/Repertory/types.js +14 -0
  121. package/models/Group/index.d.ts +145 -0
  122. package/models/Group/index.js +340 -0
  123. package/models/Group/types.d.ts +272 -0
  124. package/models/Group/types.js +90 -0
  125. package/models/Instrument/fromRecord.d.ts +11 -0
  126. package/models/Instrument/fromRecord.js +33 -0
  127. package/models/Instrument/index.d.ts +11 -0
  128. package/models/Instrument/index.js +55 -0
  129. package/models/Inventory/Item/types.js +15 -0
  130. package/models/Inventory/types.js +15 -0
  131. package/models/Notification/types.js +279 -0
  132. package/models/Offer/types.d.ts +57 -0
  133. package/models/Offer/types.js +8 -0
  134. package/models/Partnership/Communication/supabase.js +25 -0
  135. package/models/Partnership/Group/index.d.ts +29 -0
  136. package/models/Partnership/Group/index.js +73 -0
  137. package/models/Partnership/Group/supabase.js +25 -0
  138. package/models/Partnership/Partner/supabase.js +38 -0
  139. package/models/Partnership/Partner/types.js +9 -0
  140. package/models/Partnership/Payment/supabase.js +40 -0
  141. package/models/Partnership/Payment/types.js +17 -0
  142. package/models/Partnership/Plan/supabase.js +22 -0
  143. package/models/Partnership/SepaPaymentGroup/supabase.js +18 -0
  144. package/models/Partnership/Subscription/supabase.js +23 -0
  145. package/models/Partnership/index.d.ts +35 -0
  146. package/models/Partnership/index.js +118 -0
  147. package/models/Partnership/types.js +8 -0
  148. package/models/Repertory/types.d.ts +44 -0
  149. package/models/Repertory/types.js +16 -0
  150. package/models/User/Group/index.js +45 -0
  151. package/models/User/index.d.ts +103 -0
  152. package/models/User/index.js +198 -0
  153. package/models/User/types.d.ts +142 -0
  154. package/models/User/types.js +58 -0
  155. package/models/WebhookEvent/types.js +9 -0
  156. package/models/supabase/Comm/index.d.ts +24 -0
  157. package/models/supabase/Comm/index.js +68 -0
  158. package/models/supabase/Comm/types.d.ts +6 -0
  159. package/models/supabase/CommHistory/index.d.ts +22 -0
  160. package/models/supabase/CommHistory/index.js +37 -0
  161. package/models/supabase/CommHistory/types.d.ts +11 -0
  162. package/models/supabase/CommHistory/types.js +9 -0
  163. package/models/supabase/Composer/Composition/Acquisition/index.d.ts +4 -0
  164. package/models/supabase/Composer/Composition/Acquisition/index.js +9 -0
  165. package/models/supabase/Composer/Composition/Acquisition/types.d.ts +36 -0
  166. package/models/supabase/Composer/Composition/Favorite/index.d.ts +4 -0
  167. package/models/supabase/Composer/Composition/Favorite/index.js +9 -0
  168. package/models/supabase/Composer/Composition/Favorite/types.d.ts +6 -0
  169. package/models/supabase/Composer/Composition/View/index.d.ts +4 -0
  170. package/models/supabase/Composer/Composition/View/index.js +9 -0
  171. package/models/supabase/Composer/Composition/View/types.d.ts +6 -0
  172. package/models/supabase/Composer/Composition/index.d.ts +5284 -0
  173. package/models/supabase/Composer/Composition/index.js +166 -0
  174. package/models/supabase/Composer/Composition/types.d.ts +96 -0
  175. package/models/supabase/Composer/Composition/types.js +32 -0
  176. package/models/supabase/Composer/Notification/index.d.ts +4 -0
  177. package/models/supabase/Composer/Notification/index.js +9 -0
  178. package/models/supabase/Composer/Notification/types.d.ts +39 -0
  179. package/models/supabase/Composer/Notification/types.js +27 -0
  180. package/models/supabase/Composer/Payout/index.d.ts +4 -0
  181. package/models/supabase/Composer/Payout/index.js +9 -0
  182. package/models/supabase/Composer/Payout/status.d.ts +1 -0
  183. package/models/supabase/Composer/Payout/types.d.ts +5 -0
  184. package/models/supabase/Composer/PerformanceAttendance/types.d.ts +4 -0
  185. package/models/supabase/Composer/index.d.ts +78 -0
  186. package/models/supabase/Composer/index.js +105 -0
  187. package/models/supabase/Composer/types.d.ts +6 -0
  188. package/models/supabase/EventHistory/index.d.ts +22 -0
  189. package/models/supabase/EventHistory/index.js +37 -0
  190. package/models/supabase/EventHistory/types.d.ts +39 -0
  191. package/models/supabase/EventHistory/types.js +37 -0
  192. package/models/supabase/GroupHistory/index.d.ts +21 -0
  193. package/models/supabase/GroupHistory/index.js +34 -0
  194. package/models/supabase/GroupHistory/types.d.ts +27 -0
  195. package/models/supabase/GroupHistory/types.js +25 -0
  196. package/models/supabase/Model/index.d.ts +10 -0
  197. package/models/supabase/Model/index.js +21 -0
  198. package/models/supabase/OfferHistory/index.d.ts +22 -0
  199. package/models/supabase/OfferHistory/index.js +37 -0
  200. package/models/supabase/OfferHistory/types.d.ts +18 -0
  201. package/models/supabase/OfferHistory/types.js +16 -0
  202. package/models/supabase/Repertoire/index.d.ts +16 -0
  203. package/models/supabase/Repertoire/index.js +43 -0
  204. package/models/supabase/Repertoire/types.d.ts +6 -0
  205. package/models/supabase/RepertoireHistory/index.d.ts +22 -0
  206. package/models/supabase/RepertoireHistory/index.js +37 -0
  207. package/models/supabase/RepertoireHistory/types.d.ts +21 -0
  208. package/models/supabase/RepertoireHistory/types.js +19 -0
  209. package/models/supabase/User/Group/index.d.ts +11 -0
  210. package/models/supabase/User/Group/index.js +30 -0
  211. package/models/supabase/User/Group/types.d.ts +6 -0
  212. package/models/supabase/User/index.d.ts +13 -0
  213. package/models/supabase/User/index.js +37 -0
  214. package/models/supabase/User/types.d.ts +6 -0
  215. package/package.json +15 -13
  216. package/types/firestore.d.ts +1746 -0
  217. package/types/firestore.js +57 -0
  218. package/types/firestore.ts +1998 -0
  219. package/types/messagebirdChatWidget.js +2 -0
  220. package/types/messagebirdChatWidget.ts +20 -0
  221. package/types/minVersion.js +2 -0
  222. package/types/minVersion.ts +4 -0
  223. package/types/payoutRule.js +34 -0
  224. package/types/payoutRule.ts +132 -0
  225. package/types/supabase/catalog.d.ts +46 -0
  226. package/types/supabase/catalog.js +2 -0
  227. package/types/supabase/catalog.ts +67 -0
  228. package/types/supabase/composerMetrics.d.ts +27 -0
  229. package/types/supabase/composerMetrics.js +2 -0
  230. package/types/supabase/composerMetrics.ts +26 -0
  231. package/types/supabase/generated.d.ts +4092 -0
  232. package/types/supabase/generated.js +34 -0
  233. package/types/supabase/generated.ts +4076 -0
  234. package/types/supabase/index.d.ts +169 -0
  235. package/types/supabase/index.js +17 -0
  236. package/types/supabase/index.ts +307 -0
  237. package/types/supabase/overwrites/index.d.ts +6 -0
  238. package/types/supabase/overwrites/index.js +2 -0
  239. package/types/supabase/overwrites/index.ts +7 -0
  240. package/types/supabase/overwrites/tables/comm/model.d.ts +4 -0
  241. package/types/supabase/overwrites/tables/comm/model.js +2 -0
  242. package/types/supabase/overwrites/tables/comm/model.ts +4 -0
  243. package/types/supabase/overwrites/tables/comm_history/index.d.ts +7 -0
  244. package/types/supabase/overwrites/tables/comm_history/index.js +2 -0
  245. package/types/supabase/overwrites/tables/comm_history/index.ts +9 -0
  246. package/types/supabase/overwrites/tables/comm_history/model.d.ts +10 -0
  247. package/types/supabase/overwrites/tables/comm_history/model.js +2 -0
  248. package/types/supabase/overwrites/tables/comm_history/model.ts +13 -0
  249. package/types/supabase/overwrites/tables/common/index.js +2 -0
  250. package/types/supabase/overwrites/tables/common/index.ts +4 -0
  251. package/types/supabase/overwrites/tables/composer/index.d.ts +9 -0
  252. package/types/supabase/overwrites/tables/composer/index.js +2 -0
  253. package/types/supabase/overwrites/tables/composer/index.ts +10 -0
  254. package/types/supabase/overwrites/tables/composer/model.d.ts +12 -0
  255. package/types/supabase/overwrites/tables/composer/model.js +2 -0
  256. package/types/supabase/overwrites/tables/composer/model.ts +15 -0
  257. package/types/supabase/overwrites/tables/composer/publicModel.d.ts +11 -0
  258. package/types/supabase/overwrites/tables/composer/publicModel.js +2 -0
  259. package/types/supabase/overwrites/tables/composer/publicModel.ts +15 -0
  260. package/types/supabase/overwrites/tables/composerComposition/index.d.ts +18 -0
  261. package/types/supabase/overwrites/tables/composerComposition/index.js +2 -0
  262. package/types/supabase/overwrites/tables/composerComposition/index.ts +24 -0
  263. package/types/supabase/overwrites/tables/composerComposition/model.d.ts +9 -0
  264. package/types/supabase/overwrites/tables/composerComposition/model.js +2 -0
  265. package/types/supabase/overwrites/tables/composerComposition/model.ts +26 -0
  266. package/types/supabase/overwrites/tables/composerComposition/publicModel.d.ts +9 -0
  267. package/types/supabase/overwrites/tables/composerComposition/publicModel.js +2 -0
  268. package/types/supabase/overwrites/tables/composerComposition/publicModel.ts +37 -0
  269. package/types/supabase/overwrites/tables/composerNotification/index.d.ts +19 -0
  270. package/types/supabase/overwrites/tables/composerNotification/index.js +2 -0
  271. package/types/supabase/overwrites/tables/composerNotification/index.ts +25 -0
  272. package/types/supabase/overwrites/tables/composerOwnedTransaction/model.d.ts +2 -0
  273. package/types/supabase/overwrites/tables/composerOwnedTransaction/model.js +2 -0
  274. package/types/supabase/overwrites/tables/composerOwnedTransaction/model.ts +3 -0
  275. package/types/supabase/overwrites/tables/composerPayout/index.d.ts +7 -0
  276. package/types/supabase/overwrites/tables/composerPayout/index.js +2 -0
  277. package/types/supabase/overwrites/tables/composerPayout/index.ts +8 -0
  278. package/types/supabase/overwrites/tables/compositionAcquisition/index.d.ts +4 -0
  279. package/types/supabase/overwrites/tables/compositionAcquisition/index.js +2 -0
  280. package/types/supabase/overwrites/tables/compositionAcquisition/index.ts +8 -0
  281. package/types/supabase/overwrites/tables/compositionAcquisition/model.d.ts +6 -0
  282. package/types/supabase/overwrites/tables/compositionAcquisition/model.js +2 -0
  283. package/types/supabase/overwrites/tables/compositionAcquisition/model.ts +11 -0
  284. package/types/supabase/overwrites/tables/compositionFavorite/index.d.ts +1 -0
  285. package/types/supabase/overwrites/tables/compositionFavorite/index.js +2 -0
  286. package/types/supabase/overwrites/tables/compositionFavorite/index.ts +2 -0
  287. package/types/supabase/overwrites/tables/compositionFavorite/model.d.ts +1 -0
  288. package/types/supabase/overwrites/tables/compositionFavorite/model.js +2 -0
  289. package/types/supabase/overwrites/tables/compositionFavorite/model.ts +1 -0
  290. package/types/supabase/overwrites/tables/compositionView/index.d.ts +1 -0
  291. package/types/supabase/overwrites/tables/compositionView/index.js +2 -0
  292. package/types/supabase/overwrites/tables/compositionView/index.ts +2 -0
  293. package/types/supabase/overwrites/tables/compositionView/model.d.ts +1 -0
  294. package/types/supabase/overwrites/tables/compositionView/model.js +2 -0
  295. package/types/supabase/overwrites/tables/compositionView/model.ts +1 -0
  296. package/types/supabase/overwrites/tables/currencyExchangeRate/index.d.ts +16 -0
  297. package/types/supabase/overwrites/tables/currencyExchangeRate/index.js +2 -0
  298. package/types/supabase/overwrites/tables/currencyExchangeRate/index.ts +18 -0
  299. package/types/supabase/overwrites/tables/event/index.d.ts +23 -0
  300. package/types/supabase/overwrites/tables/event/index.js +2 -0
  301. package/types/supabase/overwrites/tables/event/index.ts +28 -0
  302. package/types/supabase/overwrites/tables/event_history/index.d.ts +7 -0
  303. package/types/supabase/overwrites/tables/event_history/index.js +2 -0
  304. package/types/supabase/overwrites/tables/event_history/index.ts +9 -0
  305. package/types/supabase/overwrites/tables/event_history/model.d.ts +10 -0
  306. package/types/supabase/overwrites/tables/event_history/model.js +2 -0
  307. package/types/supabase/overwrites/tables/event_history/model.ts +13 -0
  308. package/types/supabase/overwrites/tables/group/index.d.ts +38 -0
  309. package/types/supabase/overwrites/tables/group/index.js +2 -0
  310. package/types/supabase/overwrites/tables/group/index.ts +45 -0
  311. package/types/supabase/overwrites/tables/group_history/index.d.ts +7 -0
  312. package/types/supabase/overwrites/tables/group_history/index.js +2 -0
  313. package/types/supabase/overwrites/tables/group_history/index.ts +9 -0
  314. package/types/supabase/overwrites/tables/group_history/model.d.ts +10 -0
  315. package/types/supabase/overwrites/tables/group_history/model.js +2 -0
  316. package/types/supabase/overwrites/tables/group_history/model.ts +13 -0
  317. package/types/supabase/overwrites/tables/offer/index.d.ts +17 -0
  318. package/types/supabase/overwrites/tables/offer/index.js +2 -0
  319. package/types/supabase/overwrites/tables/offer/index.ts +20 -0
  320. package/types/supabase/overwrites/tables/offer_history/index.d.ts +7 -0
  321. package/types/supabase/overwrites/tables/offer_history/index.js +2 -0
  322. package/types/supabase/overwrites/tables/offer_history/index.ts +9 -0
  323. package/types/supabase/overwrites/tables/offer_history/model.d.ts +10 -0
  324. package/types/supabase/overwrites/tables/offer_history/model.js +2 -0
  325. package/types/supabase/overwrites/tables/offer_history/model.ts +13 -0
  326. package/types/supabase/overwrites/tables/repertoire/model.d.ts +7 -0
  327. package/types/supabase/overwrites/tables/repertoire/model.js +2 -0
  328. package/types/supabase/overwrites/tables/repertoire/model.ts +7 -0
  329. package/types/supabase/overwrites/tables/repertoire_history/index.d.ts +7 -0
  330. package/types/supabase/overwrites/tables/repertoire_history/index.js +2 -0
  331. package/types/supabase/overwrites/tables/repertoire_history/index.ts +9 -0
  332. package/types/supabase/overwrites/tables/repertoire_history/model.d.ts +10 -0
  333. package/types/supabase/overwrites/tables/repertoire_history/model.js +2 -0
  334. package/types/supabase/overwrites/tables/repertoire_history/model.ts +13 -0
  335. package/types/supabase/overwrites/tables/user/index.d.ts +11 -0
  336. package/types/supabase/overwrites/tables/user/index.js +2 -0
  337. package/types/supabase/overwrites/tables/user/index.ts +13 -0
  338. package/.firebaserc +0 -7
  339. package/.husky/pre-commit +0 -4
  340. package/README.md +0 -70
  341. package/lib/functions/auth.d.ts +0 -20
  342. package/lib/functions/customer.d.ts +0 -98
  343. package/lib/functions/event.js +0 -29
  344. package/lib/functions/eventPlayer.js +0 -13
  345. package/lib/functions/eventRepertory.d.ts +0 -40
  346. package/lib/functions/eventRepertory.js +0 -16
  347. package/lib/functions/groupRepertory.d.ts +0 -140
  348. package/lib/functions/index.d.ts +0 -226
  349. package/lib/functions/index.js +0 -231
  350. package/lib/functions/misc.d.ts +0 -18
  351. package/lib/functions/regions.js +0 -240
  352. package/lib/helpers/appScenes.js +0 -109
  353. package/lib/helpers/auth.d.ts +0 -28
  354. package/lib/helpers/auth.js +0 -24
  355. package/lib/helpers/badges.js +0 -162
  356. package/lib/helpers/collections.js +0 -49
  357. package/lib/helpers/communicationTemplate/index.d.ts +0 -32
  358. package/lib/helpers/communicationTemplate/index.js +0 -47
  359. package/lib/helpers/currency.d.ts +0 -4
  360. package/lib/helpers/currency.js +0 -277
  361. package/lib/helpers/dlinks.js +0 -12
  362. package/lib/helpers/errors.d.ts +0 -92
  363. package/lib/helpers/errors.js +0 -84
  364. package/lib/helpers/instruments/index.d.ts +0 -147
  365. package/lib/helpers/instruments/index.js +0 -340
  366. package/lib/helpers/instruments/lists.d.ts +0 -6
  367. package/lib/helpers/instruments/lists.js +0 -21
  368. package/lib/helpers/musicStyles/index.d.ts +0 -22
  369. package/lib/helpers/musicStyles/index.js +0 -148
  370. package/lib/helpers/notifications/index.js +0 -231
  371. package/lib/helpers/objects.d.ts +0 -11
  372. package/lib/helpers/objects.js +0 -39
  373. package/lib/helpers/paymentForecast.js +0 -58
  374. package/lib/helpers/payoutRules.js +0 -166
  375. package/lib/helpers/plans.js +0 -99
  376. package/lib/helpers/rates.d.ts +0 -13
  377. package/lib/helpers/slate.d.ts +0 -16
  378. package/lib/helpers/slate.js +0 -20
  379. package/lib/helpers/ts-extras/array-includes.js +0 -27
  380. package/lib/helpers/ts-extras/as-mutable.js +0 -21
  381. package/lib/helpers/ts-extras/assert-error.js +0 -38
  382. package/lib/helpers/ts-extras/index.js +0 -33
  383. package/lib/helpers/ts-extras/is-defined.js +0 -22
  384. package/lib/helpers/ts-extras/is-empty.js +0 -7
  385. package/lib/helpers/ts-extras/is-infinite.js +0 -12
  386. package/lib/helpers/ts-extras/is-present.js +0 -22
  387. package/lib/helpers/ts-extras/object-entries.d.ts +0 -23
  388. package/lib/helpers/ts-extras/object-from-entries.d.ts +0 -26
  389. package/lib/helpers/ts-extras/object-has-own.js +0 -26
  390. package/lib/helpers/ts-extras/object-keys.d.ts +0 -21
  391. package/lib/helpers/ts-extras/object-keys.js +0 -24
  392. package/lib/helpers/ts-extras/set-has.js +0 -28
  393. package/lib/helpers/types.d.ts +0 -43
  394. package/lib/helpers/types.js +0 -45
  395. package/lib/lang/ca.json +0 -470
  396. package/lib/lang/de.json +0 -470
  397. package/lib/lang/en.json +0 -470
  398. package/lib/lang/es.json +0 -470
  399. package/lib/lang/eu.json +0 -470
  400. package/lib/lang/fr.json +0 -470
  401. package/lib/lang/gl.json +0 -470
  402. package/lib/lang/index.js +0 -202
  403. package/lib/lang/it.json +0 -470
  404. package/lib/lang/nl.json +0 -470
  405. package/lib/lang/pt.json +0 -470
  406. package/lib/models/Communication/types.d.ts +0 -79
  407. package/lib/models/Communication/types.js +0 -32
  408. package/lib/models/Counters/Group/Analytics/types.js +0 -17
  409. package/lib/models/Customer/index.d.ts +0 -30
  410. package/lib/models/Customer/index.js +0 -79
  411. package/lib/models/Customer/types.js +0 -7
  412. package/lib/models/Evento/Player/types.js +0 -22
  413. package/lib/models/Evento/Repertory/types.d.ts +0 -7
  414. package/lib/models/Evento/index.d.ts +0 -93
  415. package/lib/models/Evento/index.js +0 -255
  416. package/lib/models/Evento/types.d.ts +0 -208
  417. package/lib/models/Evento/types.js +0 -87
  418. package/lib/models/Federation/index.d.ts +0 -28
  419. package/lib/models/Federation/index.js +0 -85
  420. package/lib/models/Group/Analytics/types.js +0 -13
  421. package/lib/models/Group/Payment/supabase.js +0 -46
  422. package/lib/models/Group/Payment/types.js +0 -38
  423. package/lib/models/Group/Player/types.js +0 -9
  424. package/lib/models/Group/Repertory/File/Section/index.d.ts +0 -12
  425. package/lib/models/Group/Repertory/File/Section/index.js +0 -25
  426. package/lib/models/Group/Repertory/File/Section/types.d.ts +0 -5
  427. package/lib/models/Group/Repertory/File/Section/types.js +0 -7
  428. package/lib/models/Group/Repertory/File/index.d.ts +0 -29
  429. package/lib/models/Group/Repertory/File/index.js +0 -81
  430. package/lib/models/Group/Repertory/FilePath/index.d.ts +0 -23
  431. package/lib/models/Group/Repertory/index.d.ts +0 -56
  432. package/lib/models/Group/Repertory/index.js +0 -151
  433. package/lib/models/Group/Repertory/types.d.ts +0 -91
  434. package/lib/models/Group/Repertory/types.js +0 -24
  435. package/lib/models/Group/index.d.ts +0 -140
  436. package/lib/models/Group/index.js +0 -326
  437. package/lib/models/Group/types.d.ts +0 -291
  438. package/lib/models/Group/types.js +0 -109
  439. package/lib/models/Instrument/index.d.ts +0 -9
  440. package/lib/models/Instrument/index.js +0 -18
  441. package/lib/models/Inventory/Item/types.js +0 -15
  442. package/lib/models/Inventory/types.js +0 -15
  443. package/lib/models/Notification/types.js +0 -279
  444. package/lib/models/Offer/types.d.ts +0 -69
  445. package/lib/models/Offer/types.js +0 -21
  446. package/lib/models/Partnership/Communication/supabase.js +0 -25
  447. package/lib/models/Partnership/Group/index.d.ts +0 -28
  448. package/lib/models/Partnership/Group/index.js +0 -61
  449. package/lib/models/Partnership/Group/supabase.js +0 -25
  450. package/lib/models/Partnership/Partner/supabase.js +0 -38
  451. package/lib/models/Partnership/Partner/types.js +0 -9
  452. package/lib/models/Partnership/Payment/supabase.js +0 -40
  453. package/lib/models/Partnership/Payment/types.js +0 -17
  454. package/lib/models/Partnership/Plan/supabase.js +0 -22
  455. package/lib/models/Partnership/SepaPaymentGroup/supabase.js +0 -18
  456. package/lib/models/Partnership/Subscription/supabase.js +0 -23
  457. package/lib/models/Partnership/index.d.ts +0 -34
  458. package/lib/models/Partnership/index.js +0 -114
  459. package/lib/models/Partnership/types.js +0 -8
  460. package/lib/models/Repertory/types.d.ts +0 -32
  461. package/lib/models/Repertory/types.js +0 -16
  462. package/lib/models/User/Group/index.js +0 -46
  463. package/lib/models/User/index.d.ts +0 -103
  464. package/lib/models/User/index.js +0 -198
  465. package/lib/models/User/types.d.ts +0 -141
  466. package/lib/models/User/types.js +0 -58
  467. package/lib/models/WebhookEvent/types.js +0 -9
  468. package/lib/types/firestore.d.ts +0 -1747
  469. package/lib/types/firestore.js +0 -57
  470. package/lib/types/payoutRule.js +0 -34
  471. package/lib/types/supabase/generated.d.ts +0 -1629
  472. package/lib/types/supabase/generated.js +0 -25
  473. package/lib/types/supabase/index.d.ts +0 -29
  474. package/lib/types/supabase/overwrites/comm.d.ts +0 -18
  475. package/lib/types/supabase/overwrites/comm_history.d.ts +0 -10
  476. package/lib/types/supabase/overwrites/event.d.ts +0 -23
  477. package/lib/types/supabase/overwrites/event_history.d.ts +0 -10
  478. package/lib/types/supabase/overwrites/group.d.ts +0 -41
  479. package/lib/types/supabase/overwrites/group_history.d.ts +0 -9
  480. package/lib/types/supabase/overwrites/index.d.ts +0 -6
  481. package/lib/types/supabase/overwrites/offer.d.ts +0 -13
  482. package/lib/types/supabase/overwrites/offer_history.d.ts +0 -10
  483. package/lib/types/supabase/overwrites/repertoire.d.ts +0 -12
  484. package/lib/types/supabase/overwrites/repertoire_history.d.ts +0 -10
  485. package/scripts/setHusky.js +0 -11
  486. package/supabase/.dev.env +0 -1
  487. package/supabase/.prod.env +0 -1
  488. package/supabase/.sample.env +0 -2
  489. package/supabase/README.md +0 -126
  490. package/supabase/config.toml +0 -68
  491. package/supabase/migrations/20231117044943_remote_schema.sql +0 -228
  492. package/supabase/migrations/20231117124947_event_selection_mode_closed_at_nullable.sql +0 -1
  493. package/supabase/migrations/20231121002132_remote_schema.sql +0 -31
  494. package/supabase/migrations/20231121004031_references_nullable.sql +0 -3
  495. package/supabase/migrations/20231121014339_updated_at_trigger.sql +0 -13
  496. package/supabase/migrations/20231122111241_remote_schema.sql +0 -25
  497. package/supabase/migrations/20231124151424_snake_case_to_camel_case.sql +0 -105
  498. package/supabase/migrations/20231129133721_add_columns_for_sites.sql +0 -11
  499. package/supabase/migrations/20231129142806_promoter_can_be_null.sql +0 -3
  500. package/supabase/migrations/20231130125327_group_location_latlon.sql +0 -3
  501. package/supabase/migrations/20231130150154_error_solvings.sql +0 -9
  502. package/supabase/migrations/20240405115914_new_columns.sql +0 -9
  503. package/supabase/migrations/20240405121956_init_offer.sql +0 -81
  504. package/supabase/migrations/20240503032440_add_columns_to_offer.sql +0 -11
  505. package/supabase/migrations/20240503101641_add_column_createdOn.sql +0 -19
  506. package/supabase/migrations/20240506035104_add_groupInfo_to_offer.sql +0 -10
  507. package/supabase/migrations/20240510110328_add_relationships_to_offer.sql +0 -9
  508. package/supabase/migrations/20240514100316_offers_public.sql +0 -9
  509. package/supabase/migrations/20260506013030_add_user_mirror.sql +0 -50
  510. package/supabase/migrations/20260506013031_add_user_group_mirror.sql +0 -31
  511. package/supabase/migrations/20260529000000_init_group_payment.sql +0 -79
  512. package/supabase/migrations/20260529120000_group_payment_realtime.sql +0 -19
  513. package/supabase/migrations/20260529130000_group_payment_anon_read.sql +0 -16
  514. package/supabase/migrations/20260601000000_group_payment_concept_norm.sql +0 -20
  515. package/supabase/migrations/20260605000000_init_partnership_domain.sql +0 -333
  516. package/supabase/migrations/20260605000100_partnership_recurring_rpc.sql +0 -62
  517. package/supabase/migrations/20260606000000_partnership_payer.sql +0 -83
  518. package/supabase/migrations/20260607000000_partnership_partner_number_not_unique.sql +0 -10
  519. package/supabase/migrations/20260608000000_partnership_payment_method_bizum.sql +0 -2
  520. package/supabase/migrations/20260609000000_partnership_payment_sepa_end_to_end.sql +0 -13
  521. package/supabase/migrations/20260617000000_partnership_portal_query_indexes.sql +0 -23
  522. package/supabase/migrations/20260618000000_partnership_communication_attachments.sql +0 -5
  523. package/supabase/migrations/20260701000000_partnership_recurring_rpc_drop_ambiguous.sql +0 -29
  524. package/supabase/migrations/20260713191700_add_personal_calendar_feed.sql +0 -506
  525. package/supabase/migrations/20260714193734_add_pending_calendar_invitations.sql +0 -403
  526. package/supabase/migrations/20260714205623_add_event_datetime_end_backfill.sql +0 -64
  527. package/supabase/migrations/20260729161126_remove_calendar_event_history_dependency.sql +0 -19
  528. package/supabase/migrations/20260729161202_reconcile_production_remote_schema.sql +0 -135
  529. package/supabase/migrations/20260804120000_add_calendar_feed_token_cipher.sql +0 -9
  530. package/supabase/migrations/20260805120000_replace_usergroup_with_group_playerids.sql +0 -363
  531. package/supabase/seed.sql +0 -2973
  532. /package/{lib/functions → functions}/auth.js +0 -0
  533. /package/{lib/functions → functions}/calendarFeed.d.ts +0 -0
  534. /package/{lib/functions → functions}/calendarFeed.js +0 -0
  535. /package/{lib/functions → functions}/communication.d.ts +0 -0
  536. /package/{lib/functions → functions}/communication.js +0 -0
  537. /package/{lib/functions → functions}/communicationComment.d.ts +0 -0
  538. /package/{lib/functions → functions}/communicationComment.js +0 -0
  539. /package/{lib/functions/customer.js → functions/composer.js} +0 -0
  540. /package/{lib/functions/customerGroup.js → functions/composerComposition.js} +0 -0
  541. /package/{lib/functions/eventoPayout.js → functions/composerNotification.js} +0 -0
  542. /package/{lib/functions/federation.js → functions/composerPayout.js} +0 -0
  543. /package/{lib/functions/federationPartnership.js → functions/customer.js} +0 -0
  544. /package/{lib/functions → functions}/customerGroup.d.ts +0 -0
  545. /package/{lib/functions/group.js → functions/customerGroup.js} +0 -0
  546. /package/{lib/functions → functions}/event.d.ts +0 -0
  547. /package/{lib/functions → functions}/eventPlayer.d.ts +0 -0
  548. /package/{lib/functions → functions}/eventoPayout.d.ts +0 -0
  549. /package/{lib/functions/groupEventStage.js → functions/eventoPayout.js} +0 -0
  550. /package/{lib/functions → functions}/federation.d.ts +0 -0
  551. /package/{lib/functions/groupModule.js → functions/federation.js} +0 -0
  552. /package/{lib/functions → functions}/federationPartnership.d.ts +0 -0
  553. /package/{lib/functions/groupPayment.js → functions/federationPartnership.js} +0 -0
  554. /package/{lib/functions → functions}/group.d.ts +0 -0
  555. /package/{lib/types/supabase/overwrites → functions}/group.js +0 -0
  556. /package/{lib/functions → functions}/groupEventStage.d.ts +0 -0
  557. /package/{lib/functions/groupPayoutRule.js → functions/groupEventStage.js} +0 -0
  558. /package/{lib/functions → functions}/groupModule.d.ts +0 -0
  559. /package/{lib/functions/groupPlayer.js → functions/groupModule.js} +0 -0
  560. /package/{lib/functions → functions}/groupPayment.d.ts +0 -0
  561. /package/{lib/functions/groupRepertory.js → functions/groupPayment.js} +0 -0
  562. /package/{lib/functions → functions}/groupPayoutRule.d.ts +0 -0
  563. /package/{lib/functions/inventory.js → functions/groupPayoutRule.js} +0 -0
  564. /package/{lib/functions → functions}/groupPlayer.d.ts +0 -0
  565. /package/{lib/functions/inventoryItem.js → functions/groupPlayer.js} +0 -0
  566. /package/{lib/functions/jwt.js → functions/groupRepertory.js} +0 -0
  567. /package/{lib/functions → functions}/inventory.d.ts +0 -0
  568. /package/{lib/functions/misc.js → functions/inventory.js} +0 -0
  569. /package/{lib/functions → functions}/inventoryItem.d.ts +0 -0
  570. /package/{lib/functions/notification.js → functions/inventoryItem.js} +0 -0
  571. /package/{lib/functions → functions}/jwt.d.ts +0 -0
  572. /package/{lib/functions/offer.js → functions/jwt.js} +0 -0
  573. /package/{lib/functions/offerApplicant.js → functions/misc.js} +0 -0
  574. /package/{lib/functions → functions}/notification.d.ts +0 -0
  575. /package/{lib/functions/partnership.js → functions/notification.js} +0 -0
  576. /package/{lib/functions → functions}/offer.d.ts +0 -0
  577. /package/{lib/types/supabase/overwrites → functions}/offer.js +0 -0
  578. /package/{lib/functions → functions}/offerApplicant.d.ts +0 -0
  579. /package/{lib/functions/partnershipCommunication.js → functions/offerApplicant.js} +0 -0
  580. /package/{lib/functions → functions}/partnership.d.ts +0 -0
  581. /package/{lib/functions/partnershipGroup.js → functions/partnership.js} +0 -0
  582. /package/{lib/functions → functions}/partnershipCommunication.d.ts +0 -0
  583. /package/{lib/functions/partnershipPartner.js → functions/partnershipCommunication.js} +0 -0
  584. /package/{lib/functions → functions}/partnershipGroup.d.ts +0 -0
  585. /package/{lib/functions/partnershipPayment.js → functions/partnershipGroup.js} +0 -0
  586. /package/{lib/functions → functions}/partnershipPartner.d.ts +0 -0
  587. /package/{lib/functions/partnershipPlan.js → functions/partnershipPartner.js} +0 -0
  588. /package/{lib/functions → functions}/partnershipPayment.d.ts +0 -0
  589. /package/{lib/functions/partnershipSepaPaymentGroup.js → functions/partnershipPayment.js} +0 -0
  590. /package/{lib/functions → functions}/partnershipPlan.d.ts +0 -0
  591. /package/{lib/functions/partnershipSubscription.js → functions/partnershipPlan.js} +0 -0
  592. /package/{lib/functions → functions}/partnershipSepaPaymentGroup.d.ts +0 -0
  593. /package/{lib/functions/subscription.js → functions/partnershipSepaPaymentGroup.js} +0 -0
  594. /package/{lib/functions → functions}/partnershipSubscription.d.ts +0 -0
  595. /package/{lib/functions/user.js → functions/partnershipSubscription.js} +0 -0
  596. /package/{lib/functions → functions}/regions.d.ts +0 -0
  597. /package/{lib/functions → functions}/subscription.d.ts +0 -0
  598. /package/{lib/functions/userNotification.js → functions/subscription.js} +0 -0
  599. /package/{lib/functions → functions}/user.d.ts +0 -0
  600. /package/{lib/models/Communication/Comment/types.js → functions/user.js} +0 -0
  601. /package/{lib/functions → functions}/userNotification.d.ts +0 -0
  602. /package/{lib/models/Counters/Group/types.js → functions/userNotification.js} +0 -0
  603. /package/{lib/helpers → helpers}/appScenes.d.ts +0 -0
  604. /package/{lib/helpers → helpers}/audios.d.ts +0 -0
  605. /package/{lib/helpers → helpers}/audios.js +0 -0
  606. /package/{lib/helpers → helpers}/badges.d.ts +0 -0
  607. /package/{lib/helpers → helpers}/collections.d.ts +0 -0
  608. /package/{lib/helpers → helpers}/communicationTemplate/newGroup.d.ts +0 -0
  609. /package/{lib/helpers → helpers}/communicationTemplate/newGroup.js +0 -0
  610. /package/{lib/helpers → helpers}/communicationTemplate/newMember.d.ts +0 -0
  611. /package/{lib/helpers → helpers}/communicationTemplate/newMember.js +0 -0
  612. /package/{lib/helpers → helpers}/countries.d.ts +0 -0
  613. /package/{lib/helpers → helpers}/countries.js +0 -0
  614. /package/{lib/helpers → helpers}/dlinks.d.ts +0 -0
  615. /package/{lib/helpers → helpers}/fileSections/index.d.ts +0 -0
  616. /package/{lib/helpers → helpers}/fileSections/index.js +0 -0
  617. /package/{lib/helpers → helpers}/fileSections/orders.d.ts +0 -0
  618. /package/{lib/helpers → helpers}/fileSections/orders.js +0 -0
  619. /package/{lib/helpers → helpers}/glissandooAdmin.d.ts +0 -0
  620. /package/{lib/helpers → helpers}/glissandooAdmin.js +0 -0
  621. /package/{lib/helpers → helpers}/instruments/orders.d.ts +0 -0
  622. /package/{lib/helpers → helpers}/instruments/orders.js +0 -0
  623. /package/{lib/helpers → helpers}/musicStyles/orders.d.ts +0 -0
  624. /package/{lib/helpers → helpers}/musicStyles/orders.js +0 -0
  625. /package/{lib/helpers → helpers}/notifications/index.d.ts +0 -0
  626. /package/{lib/helpers → helpers}/notifications/placeholders.d.ts +0 -0
  627. /package/{lib/helpers → helpers}/notifications/placeholders.js +0 -0
  628. /package/{lib/helpers → helpers}/paymentForecast.d.ts +0 -0
  629. /package/{lib/helpers → helpers}/payoutRules.d.ts +0 -0
  630. /package/{lib/helpers → helpers}/plans.d.ts +0 -0
  631. /package/{lib/helpers → helpers}/rates.js +0 -0
  632. /package/{lib/helpers → helpers}/reasons.d.ts +0 -0
  633. /package/{lib/helpers → helpers}/reasons.js +0 -0
  634. /package/{lib/helpers → helpers}/styles.d.ts +0 -0
  635. /package/{lib/helpers → helpers}/styles.js +0 -0
  636. /package/{lib/helpers → helpers}/ts-extras/array-includes.d.ts +0 -0
  637. /package/{lib/helpers → helpers}/ts-extras/as-mutable.d.ts +0 -0
  638. /package/{lib/helpers → helpers}/ts-extras/assert-error.d.ts +0 -0
  639. /package/{lib/helpers → helpers}/ts-extras/index.d.ts +0 -0
  640. /package/{lib/helpers → helpers}/ts-extras/is-defined.d.ts +0 -0
  641. /package/{lib/helpers → helpers}/ts-extras/is-empty.d.ts +0 -0
  642. /package/{lib/helpers → helpers}/ts-extras/is-finite.d.ts +0 -0
  643. /package/{lib/helpers → helpers}/ts-extras/is-finite.js +0 -0
  644. /package/{lib/helpers → helpers}/ts-extras/is-infinite.d.ts +0 -0
  645. /package/{lib/helpers → helpers}/ts-extras/is-integer.d.ts +0 -0
  646. /package/{lib/helpers → helpers}/ts-extras/is-integer.js +0 -0
  647. /package/{lib/helpers → helpers}/ts-extras/is-present.d.ts +0 -0
  648. /package/{lib/helpers → helpers}/ts-extras/is-safe-integer.d.ts +0 -0
  649. /package/{lib/helpers → helpers}/ts-extras/is-safe-integer.js +0 -0
  650. /package/{lib/helpers → helpers}/ts-extras/object-entries.js +0 -0
  651. /package/{lib/helpers → helpers}/ts-extras/object-from-entries.js +0 -0
  652. /package/{lib/helpers → helpers}/ts-extras/object-has-own.d.ts +0 -0
  653. /package/{lib/helpers → helpers}/ts-extras/set-has.d.ts +0 -0
  654. /package/{lib/helpers → helpers}/utils.d.ts +0 -0
  655. /package/{lib/helpers → helpers}/utils.js +0 -0
  656. /package/{lib/index.d.ts → index.d.ts} +0 -0
  657. /package/{lib/index.js → index.js} +0 -0
  658. /package/{lib/lang → lang}/index.d.ts +0 -0
  659. /package/{lib/models → models}/Communication/Comment/index.d.ts +0 -0
  660. /package/{lib/models → models}/Communication/Comment/index.js +0 -0
  661. /package/{lib/models → models}/Communication/Comment/types.d.ts +0 -0
  662. /package/{lib/models/Counters → models/Communication/Comment}/types.js +0 -0
  663. /package/{lib/models → models}/Communication/index.d.ts +0 -0
  664. /package/{lib/models → models}/Communication/index.js +0 -0
  665. /package/{lib/models → models}/Counters/Group/Analytics/index.d.ts +0 -0
  666. /package/{lib/models → models}/Counters/Group/Analytics/index.js +0 -0
  667. /package/{lib/models → models}/Counters/Group/Analytics/types.d.ts +0 -0
  668. /package/{lib/models → models}/Counters/Group/index.d.ts +0 -0
  669. /package/{lib/models → models}/Counters/Group/index.js +0 -0
  670. /package/{lib/models → models}/Counters/Group/types.d.ts +0 -0
  671. /package/{lib/models/Customer → models/Counters}/Group/types.js +0 -0
  672. /package/{lib/models → models}/Counters/event.d.ts +0 -0
  673. /package/{lib/models → models}/Counters/event.js +0 -0
  674. /package/{lib/models → models}/Counters/index.d.ts +0 -0
  675. /package/{lib/models → models}/Counters/index.js +0 -0
  676. /package/{lib/models → models}/Counters/types.d.ts +0 -0
  677. /package/{lib/models/Evento/Repertory → models/Counters}/types.js +0 -0
  678. /package/{lib/models → models}/Customer/Group/index.d.ts +0 -0
  679. /package/{lib/models → models}/Customer/Group/index.js +0 -0
  680. /package/{lib/models → models}/Customer/Group/types.d.ts +0 -0
  681. /package/{lib/models/Federation/Partnership → models/Customer/Group}/types.js +0 -0
  682. /package/{lib/models → models}/Customer/basic.d.ts +0 -0
  683. /package/{lib/models → models}/Customer/basic.js +0 -0
  684. /package/{lib/models → models}/Customer/types.d.ts +0 -0
  685. /package/{lib/models → models}/Evento/Player/basic.d.ts +0 -0
  686. /package/{lib/models → models}/Evento/Player/basic.js +0 -0
  687. /package/{lib/models → models}/Evento/Player/index.d.ts +0 -0
  688. /package/{lib/models → models}/Evento/Player/index.js +0 -0
  689. /package/{lib/models → models}/Evento/Player/types.d.ts +0 -0
  690. /package/{lib/models → models}/Evento/Repertory/index.d.ts +0 -0
  691. /package/{lib/models → models}/Evento/Repertory/index.js +0 -0
  692. /package/{lib/models/Federation → models/Evento/Repertory}/types.js +0 -0
  693. /package/{lib/models → models}/Evento/basic.d.ts +0 -0
  694. /package/{lib/models → models}/Evento/basic.js +0 -0
  695. /package/{lib/models → models}/Evento/promoter.d.ts +0 -0
  696. /package/{lib/models → models}/Evento/promoter.js +0 -0
  697. /package/{lib/models → models}/Evento/tiny.d.ts +0 -0
  698. /package/{lib/models → models}/Evento/tiny.js +0 -0
  699. /package/{lib/models → models}/Federation/Partnership/index.d.ts +0 -0
  700. /package/{lib/models → models}/Federation/Partnership/index.js +0 -0
  701. /package/{lib/models → models}/Federation/Partnership/types.d.ts +0 -0
  702. /package/{lib/models/Group/Event → models/Federation/Partnership}/types.js +0 -0
  703. /package/{lib/models → models}/Federation/types.d.ts +0 -0
  704. /package/{lib/models/Group/Player/Event → models/Federation}/types.js +0 -0
  705. /package/{lib/models → models}/Group/Analytics/index.d.ts +0 -0
  706. /package/{lib/models → models}/Group/Analytics/index.js +0 -0
  707. /package/{lib/models → models}/Group/Analytics/types.d.ts +0 -0
  708. /package/{lib/models → models}/Group/Event/index.d.ts +0 -0
  709. /package/{lib/models → models}/Group/Event/index.js +0 -0
  710. /package/{lib/models → models}/Group/Event/types.d.ts +0 -0
  711. /package/{lib/models/Group/Player/Log → models/Group/Event}/types.js +0 -0
  712. /package/{lib/models → models}/Group/Payment/index.d.ts +0 -0
  713. /package/{lib/models → models}/Group/Payment/index.js +0 -0
  714. /package/{lib/models → models}/Group/Payment/supabase.d.ts +0 -0
  715. /package/{lib/models → models}/Group/Payment/types.d.ts +0 -0
  716. /package/{lib/models → models}/Group/Player/Event/index.d.ts +0 -0
  717. /package/{lib/models → models}/Group/Player/Event/index.js +0 -0
  718. /package/{lib/models → models}/Group/Player/Event/types.d.ts +0 -0
  719. /package/{lib/models/Group/Repertory/File → models/Group/Player/Event}/types.js +0 -0
  720. /package/{lib/models → models}/Group/Player/Log/index.d.ts +0 -0
  721. /package/{lib/models → models}/Group/Player/Log/index.js +0 -0
  722. /package/{lib/models → models}/Group/Player/Log/types.d.ts +0 -0
  723. /package/{lib/models/Group/StageTemplate → models/Group/Player/Log}/types.js +0 -0
  724. /package/{lib/models → models}/Group/Player/index.d.ts +0 -0
  725. /package/{lib/models → models}/Group/Player/index.js +0 -0
  726. /package/{lib/models → models}/Group/Player/types.d.ts +0 -0
  727. /package/{lib/models → models}/Group/Repertory/File/types.d.ts +0 -0
  728. /package/{lib/models/Metrics → models/Group/Repertory/File}/types.js +0 -0
  729. /package/{lib/models → models}/Group/Repertory/FilePath/index.js +0 -0
  730. /package/{lib/models → models}/Group/StageTemplate/index.d.ts +0 -0
  731. /package/{lib/models → models}/Group/StageTemplate/index.js +0 -0
  732. /package/{lib/models → models}/Group/StageTemplate/types.d.ts +0 -0
  733. /package/{lib/models/Offer/Applicant → models/Group/StageTemplate}/types.js +0 -0
  734. /package/{lib/models → models}/Group/basic.d.ts +0 -0
  735. /package/{lib/models → models}/Group/basic.js +0 -0
  736. /package/{lib/models → models}/Instrument/group.d.ts +0 -0
  737. /package/{lib/models → models}/Instrument/group.js +0 -0
  738. /package/{lib/models → models}/Inventory/Item/index.d.ts +0 -0
  739. /package/{lib/models → models}/Inventory/Item/index.js +0 -0
  740. /package/{lib/models → models}/Inventory/Item/types.d.ts +0 -0
  741. /package/{lib/models → models}/Inventory/index.d.ts +0 -0
  742. /package/{lib/models → models}/Inventory/index.js +0 -0
  743. /package/{lib/models → models}/Inventory/types.d.ts +0 -0
  744. /package/{lib/models → models}/Metrics/index.d.ts +0 -0
  745. /package/{lib/models → models}/Metrics/index.js +0 -0
  746. /package/{lib/models → models}/Metrics/types.d.ts +0 -0
  747. /package/{lib/models/Partnership/Communication → models/Metrics}/types.js +0 -0
  748. /package/{lib/models → models}/Model/index.d.ts +0 -0
  749. /package/{lib/models → models}/Model/index.js +0 -0
  750. /package/{lib/models → models}/Model/lang.d.ts +0 -0
  751. /package/{lib/models → models}/Model/lang.js +0 -0
  752. /package/{lib/models → models}/MusicStyle/index.d.ts +0 -0
  753. /package/{lib/models → models}/MusicStyle/index.js +0 -0
  754. /package/{lib/models → models}/Notification/index.d.ts +0 -0
  755. /package/{lib/models → models}/Notification/index.js +0 -0
  756. /package/{lib/models → models}/Notification/types.d.ts +0 -0
  757. /package/{lib/models → models}/Offer/Applicant/index.d.ts +0 -0
  758. /package/{lib/models → models}/Offer/Applicant/index.js +0 -0
  759. /package/{lib/models → models}/Offer/Applicant/types.d.ts +0 -0
  760. /package/{lib/models/Partnership/Group → models/Offer/Applicant}/types.js +0 -0
  761. /package/{lib/models → models}/Offer/index.d.ts +0 -0
  762. /package/{lib/models → models}/Offer/index.js +0 -0
  763. /package/{lib/models → models}/Partnership/Communication/index.d.ts +0 -0
  764. /package/{lib/models → models}/Partnership/Communication/index.js +0 -0
  765. /package/{lib/models → models}/Partnership/Communication/supabase.d.ts +0 -0
  766. /package/{lib/models → models}/Partnership/Communication/types.d.ts +0 -0
  767. /package/{lib/models/Partnership/Plan → models/Partnership/Communication}/types.js +0 -0
  768. /package/{lib/models → models}/Partnership/Group/supabase.d.ts +0 -0
  769. /package/{lib/models → models}/Partnership/Group/types.d.ts +0 -0
  770. /package/{lib/models/Partnership/SepaPaymentGroup → models/Partnership/Group}/types.js +0 -0
  771. /package/{lib/models → models}/Partnership/Partner/index.d.ts +0 -0
  772. /package/{lib/models → models}/Partnership/Partner/index.js +0 -0
  773. /package/{lib/models → models}/Partnership/Partner/supabase.d.ts +0 -0
  774. /package/{lib/models → models}/Partnership/Partner/types.d.ts +0 -0
  775. /package/{lib/models → models}/Partnership/Payment/index.d.ts +0 -0
  776. /package/{lib/models → models}/Partnership/Payment/index.js +0 -0
  777. /package/{lib/models → models}/Partnership/Payment/supabase.d.ts +0 -0
  778. /package/{lib/models → models}/Partnership/Payment/types.d.ts +0 -0
  779. /package/{lib/models → models}/Partnership/Plan/index.d.ts +0 -0
  780. /package/{lib/models → models}/Partnership/Plan/index.js +0 -0
  781. /package/{lib/models → models}/Partnership/Plan/supabase.d.ts +0 -0
  782. /package/{lib/models → models}/Partnership/Plan/types.d.ts +0 -0
  783. /package/{lib/models/Partnership/Subscription → models/Partnership/Plan}/types.js +0 -0
  784. /package/{lib/models → models}/Partnership/SepaPaymentGroup/index.d.ts +0 -0
  785. /package/{lib/models → models}/Partnership/SepaPaymentGroup/index.js +0 -0
  786. /package/{lib/models → models}/Partnership/SepaPaymentGroup/supabase.d.ts +0 -0
  787. /package/{lib/models → models}/Partnership/SepaPaymentGroup/types.d.ts +0 -0
  788. /package/{lib/models/Player → models/Partnership/SepaPaymentGroup}/types.js +0 -0
  789. /package/{lib/models → models}/Partnership/Subscription/index.d.ts +0 -0
  790. /package/{lib/models → models}/Partnership/Subscription/index.js +0 -0
  791. /package/{lib/models → models}/Partnership/Subscription/supabase.d.ts +0 -0
  792. /package/{lib/models → models}/Partnership/Subscription/types.d.ts +0 -0
  793. /package/{lib/models/User/Group → models/Partnership/Subscription}/types.js +0 -0
  794. /package/{lib/models → models}/Partnership/basic.d.ts +0 -0
  795. /package/{lib/models → models}/Partnership/basic.js +0 -0
  796. /package/{lib/models → models}/Partnership/types.d.ts +0 -0
  797. /package/{lib/models → models}/Player/basic.d.ts +0 -0
  798. /package/{lib/models → models}/Player/basic.js +0 -0
  799. /package/{lib/models → models}/Player/types.d.ts +0 -0
  800. /package/{lib/models/User/Notification → models/Player}/types.js +0 -0
  801. /package/{lib/models → models}/Repertory/basic.d.ts +0 -0
  802. /package/{lib/models → models}/Repertory/basic.js +0 -0
  803. /package/{lib/models → models}/User/Group/index.d.ts +0 -0
  804. /package/{lib/models → models}/User/Group/types.d.ts +0 -0
  805. /package/{lib/models/User/OfferAlarm → models/User/Group}/types.js +0 -0
  806. /package/{lib/models → models}/User/Notification/index.d.ts +0 -0
  807. /package/{lib/models → models}/User/Notification/index.js +0 -0
  808. /package/{lib/models → models}/User/Notification/types.d.ts +0 -0
  809. /package/{lib/models/User/Partnership → models/User/Notification}/types.js +0 -0
  810. /package/{lib/models → models}/User/OfferAlarm/index.d.ts +0 -0
  811. /package/{lib/models → models}/User/OfferAlarm/index.js +0 -0
  812. /package/{lib/models → models}/User/OfferAlarm/types.d.ts +0 -0
  813. /package/{lib/types/messagebirdChatWidget.js → models/User/OfferAlarm/types.js} +0 -0
  814. /package/{lib/models → models}/User/Partnership/index.d.ts +0 -0
  815. /package/{lib/models → models}/User/Partnership/index.js +0 -0
  816. /package/{lib/models → models}/User/Partnership/types.d.ts +0 -0
  817. /package/{lib/types/minVersion.js → models/User/Partnership/types.js} +0 -0
  818. /package/{lib/models → models}/User/basic.d.ts +0 -0
  819. /package/{lib/models → models}/User/basic.js +0 -0
  820. /package/{lib/models → models}/User/extended.d.ts +0 -0
  821. /package/{lib/models → models}/User/extended.js +0 -0
  822. /package/{lib/models → models}/WebhookEvent/index.d.ts +0 -0
  823. /package/{lib/models → models}/WebhookEvent/index.js +0 -0
  824. /package/{lib/models → models}/WebhookEvent/types.d.ts +0 -0
  825. /package/{lib/types/supabase/index.js → models/supabase/Comm/types.js} +0 -0
  826. /package/{lib/types/supabase/overwrites/comm.js → models/supabase/Composer/Composition/Acquisition/types.js} +0 -0
  827. /package/{lib/types/supabase/overwrites/comm_history.js → models/supabase/Composer/Composition/Favorite/types.js} +0 -0
  828. /package/{lib/types/supabase/overwrites/event.js → models/supabase/Composer/Composition/View/types.js} +0 -0
  829. /package/{lib/types/supabase/overwrites/event_history.js → models/supabase/Composer/Payout/status.js} +0 -0
  830. /package/{lib/types/supabase/overwrites/group_history.js → models/supabase/Composer/Payout/types.js} +0 -0
  831. /package/{lib/types/supabase/overwrites/index.js → models/supabase/Composer/PerformanceAttendance/types.js} +0 -0
  832. /package/{lib/types/supabase/overwrites/offer_history.js → models/supabase/Composer/types.js} +0 -0
  833. /package/{lib/types/supabase/overwrites/repertoire.js → models/supabase/Repertoire/types.js} +0 -0
  834. /package/{lib/types/supabase/overwrites/repertoire_history.js → models/supabase/User/Group/types.js} +0 -0
  835. /package/{lib/types/supabase/overwrites/utils.js → models/supabase/User/types.js} +0 -0
  836. /package/{lib/types → types}/messagebirdChatWidget.d.ts +0 -0
  837. /package/{lib/types → types}/minVersion.d.ts +0 -0
  838. /package/{lib/types → types}/payoutRule.d.ts +0 -0
  839. /package/{lib/types/supabase/overwrites/utils.d.ts → types/supabase/overwrites/tables/common/index.d.ts} +0 -0
@@ -1,1629 +0,0 @@
1
- export type Json = string | number | boolean | null | {
2
- [key: string]: Json | undefined;
3
- } | Json[];
4
- export type Database = {
5
- __InternalSupabase: {
6
- PostgrestVersion: '12.2.3 (519615d)';
7
- };
8
- public: {
9
- Tables: {
10
- calendar_event_cancellation: {
11
- Row: {
12
- all_day: boolean;
13
- cancelled_at: string;
14
- description: string | null;
15
- display_name: string | null;
16
- ends_at: string;
17
- event_id: string;
18
- event_type: string;
19
- expires_at: string;
20
- group_name: string;
21
- last_modified: string;
22
- latitude: number | null;
23
- location: string | null;
24
- longitude: number | null;
25
- sequence: number;
26
- starts_at: string;
27
- timezone: string;
28
- url: string | null;
29
- user_id: string;
30
- };
31
- Insert: {
32
- all_day?: boolean;
33
- cancelled_at?: string;
34
- description?: string | null;
35
- display_name?: string | null;
36
- ends_at: string;
37
- event_id: string;
38
- event_type: string;
39
- expires_at?: string;
40
- group_name: string;
41
- last_modified: string;
42
- latitude?: number | null;
43
- location?: string | null;
44
- longitude?: number | null;
45
- sequence: number;
46
- starts_at: string;
47
- timezone: string;
48
- url?: string | null;
49
- user_id: string;
50
- };
51
- Update: {
52
- all_day?: boolean;
53
- cancelled_at?: string;
54
- description?: string | null;
55
- display_name?: string | null;
56
- ends_at?: string;
57
- event_id?: string;
58
- event_type?: string;
59
- expires_at?: string;
60
- group_name?: string;
61
- last_modified?: string;
62
- latitude?: number | null;
63
- location?: string | null;
64
- longitude?: number | null;
65
- sequence?: number;
66
- starts_at?: string;
67
- timezone?: string;
68
- url?: string | null;
69
- user_id?: string;
70
- };
71
- Relationships: [
72
- {
73
- foreignKeyName: 'calendar_event_cancellation_user_id_fkey';
74
- columns: ['user_id'];
75
- isOneToOne: false;
76
- referencedRelation: 'calendar_feed';
77
- referencedColumns: ['user_id'];
78
- }
79
- ];
80
- };
81
- calendar_feed: {
82
- Row: {
83
- content_revision: number;
84
- created_at: string;
85
- enabled: boolean;
86
- include_pending: boolean;
87
- include_tentative: boolean;
88
- revoked_at: string | null;
89
- token_cipher: string | null;
90
- token_hash: string;
91
- updated_at: string;
92
- user_id: string;
93
- };
94
- Insert: {
95
- content_revision?: number;
96
- created_at?: string;
97
- enabled?: boolean;
98
- include_pending?: boolean;
99
- include_tentative?: boolean;
100
- revoked_at?: string | null;
101
- token_cipher?: string | null;
102
- token_hash: string;
103
- updated_at?: string;
104
- user_id: string;
105
- };
106
- Update: {
107
- content_revision?: number;
108
- created_at?: string;
109
- enabled?: boolean;
110
- include_pending?: boolean;
111
- include_tentative?: boolean;
112
- revoked_at?: string | null;
113
- token_cipher?: string | null;
114
- token_hash?: string;
115
- updated_at?: string;
116
- user_id?: string;
117
- };
118
- Relationships: [
119
- {
120
- foreignKeyName: 'calendar_feed_user_id_fkey';
121
- columns: ['user_id'];
122
- isOneToOne: true;
123
- referencedRelation: 'user';
124
- referencedColumns: ['userId'];
125
- }
126
- ];
127
- };
128
- comm: {
129
- Row: {
130
- block_answers: boolean;
131
- comments_count: number;
132
- created_at: string;
133
- deleted_at: string | null;
134
- deleted_by: string | null;
135
- edited_at: string | null;
136
- edited_by: string | null;
137
- group_id: string;
138
- id: string;
139
- owner_id: string;
140
- recipients: string[];
141
- server: boolean;
142
- server_template: string | null;
143
- template_id: string | null;
144
- title: string;
145
- type: string;
146
- };
147
- Insert: {
148
- block_answers?: boolean;
149
- comments_count?: number;
150
- created_at?: string;
151
- deleted_at?: string | null;
152
- deleted_by?: string | null;
153
- edited_at?: string | null;
154
- edited_by?: string | null;
155
- group_id: string;
156
- id: string;
157
- owner_id: string;
158
- recipients: string[];
159
- server: boolean;
160
- server_template?: string | null;
161
- template_id?: string | null;
162
- title: string;
163
- type: string;
164
- };
165
- Update: {
166
- block_answers?: boolean;
167
- comments_count?: number;
168
- created_at?: string;
169
- deleted_at?: string | null;
170
- deleted_by?: string | null;
171
- edited_at?: string | null;
172
- edited_by?: string | null;
173
- group_id?: string;
174
- id?: string;
175
- owner_id?: string;
176
- recipients?: string[];
177
- server?: boolean;
178
- server_template?: string | null;
179
- template_id?: string | null;
180
- title?: string;
181
- type?: string;
182
- };
183
- Relationships: [];
184
- };
185
- comm_history: {
186
- Row: {
187
- action: string;
188
- comm_id: string;
189
- created_at: string;
190
- group_id: string;
191
- id: number;
192
- prev_value: Json | null;
193
- user_id: string;
194
- value: Json | null;
195
- };
196
- Insert: {
197
- action: string;
198
- comm_id: string;
199
- created_at: string;
200
- group_id: string;
201
- id?: number;
202
- prev_value?: Json | null;
203
- user_id: string;
204
- value?: Json | null;
205
- };
206
- Update: {
207
- action?: string;
208
- comm_id?: string;
209
- created_at?: string;
210
- group_id?: string;
211
- id?: number;
212
- prev_value?: Json | null;
213
- user_id?: string;
214
- value?: Json | null;
215
- };
216
- Relationships: [];
217
- };
218
- event: {
219
- Row: {
220
- activeInvitationLink: boolean;
221
- calendarSequence: number;
222
- coverURL: string | null;
223
- createdAt: string;
224
- createdOn: Database['public']['Enums']['created_on'] | null;
225
- datetime: string;
226
- datetimeEnd: string;
227
- deletedAt: string | null;
228
- deletedBy: string | null;
229
- description: string | null;
230
- descriptionSlate: Json[];
231
- displayName: string | null;
232
- id: string;
233
- invitationLink: string | null;
234
- locality: string | null;
235
- location: unknown;
236
- location_lonlat: Database['public']['CompositeTypes']['lonlat'];
237
- maxAttendance: number | null;
238
- notifyAt: string;
239
- online: boolean;
240
- owner: string | null;
241
- playerIds: string[];
242
- players: Json;
243
- promoter: string | null;
244
- relEvents: string[];
245
- repeat: Json | null;
246
- repertory: Json;
247
- repertoryIds: string[];
248
- responseDeadline: Json;
249
- responseDeadlineAt: string;
250
- rollCalledAt: string | null;
251
- rollCalledBy: string | null;
252
- rollCallHistory: Json[];
253
- rollCallReminderAt: string | null;
254
- selectionMode: Database['public']['Enums']['event_selection_mode'] | null;
255
- selectionModeClosedAt: string | null;
256
- shortDynamicLink: string | null;
257
- sites: boolean;
258
- stage: Json | null;
259
- stageTemplateId: string | null;
260
- templateId: string | null;
261
- timezone: string;
262
- type: Database['public']['Enums']['event_type'];
263
- updatedAt: string;
264
- videoURL: string | null;
265
- };
266
- Insert: {
267
- activeInvitationLink: boolean;
268
- calendarSequence?: number;
269
- coverURL?: string | null;
270
- createdAt?: string;
271
- createdOn?: Database['public']['Enums']['created_on'] | null;
272
- datetime: string;
273
- datetimeEnd: string;
274
- deletedAt?: string | null;
275
- deletedBy?: string | null;
276
- description?: string | null;
277
- descriptionSlate: Json[];
278
- displayName?: string | null;
279
- id: string;
280
- invitationLink?: string | null;
281
- locality?: string | null;
282
- location: unknown;
283
- location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
284
- maxAttendance?: number | null;
285
- notifyAt: string;
286
- online: boolean;
287
- owner?: string | null;
288
- playerIds: string[];
289
- players: Json;
290
- promoter?: string | null;
291
- relEvents: string[];
292
- repeat?: Json | null;
293
- repertory: Json;
294
- repertoryIds: string[];
295
- responseDeadline: Json;
296
- responseDeadlineAt: string;
297
- rollCalledAt?: string | null;
298
- rollCalledBy?: string | null;
299
- rollCallHistory: Json[];
300
- rollCallReminderAt?: string | null;
301
- selectionMode?: Database['public']['Enums']['event_selection_mode'] | null;
302
- selectionModeClosedAt?: string | null;
303
- shortDynamicLink?: string | null;
304
- sites?: boolean;
305
- stage?: Json | null;
306
- stageTemplateId?: string | null;
307
- templateId?: string | null;
308
- timezone: string;
309
- type: Database['public']['Enums']['event_type'];
310
- updatedAt?: string;
311
- videoURL?: string | null;
312
- };
313
- Update: {
314
- activeInvitationLink?: boolean;
315
- calendarSequence?: number;
316
- coverURL?: string | null;
317
- createdAt?: string;
318
- createdOn?: Database['public']['Enums']['created_on'] | null;
319
- datetime?: string;
320
- datetimeEnd?: string;
321
- deletedAt?: string | null;
322
- deletedBy?: string | null;
323
- description?: string | null;
324
- descriptionSlate?: Json[];
325
- displayName?: string | null;
326
- id?: string;
327
- invitationLink?: string | null;
328
- locality?: string | null;
329
- location?: unknown;
330
- location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
331
- maxAttendance?: number | null;
332
- notifyAt?: string;
333
- online?: boolean;
334
- owner?: string | null;
335
- playerIds?: string[];
336
- players?: Json;
337
- promoter?: string | null;
338
- relEvents?: string[];
339
- repeat?: Json | null;
340
- repertory?: Json;
341
- repertoryIds?: string[];
342
- responseDeadline?: Json;
343
- responseDeadlineAt?: string;
344
- rollCalledAt?: string | null;
345
- rollCalledBy?: string | null;
346
- rollCallHistory?: Json[];
347
- rollCallReminderAt?: string | null;
348
- selectionMode?: Database['public']['Enums']['event_selection_mode'] | null;
349
- selectionModeClosedAt?: string | null;
350
- shortDynamicLink?: string | null;
351
- sites?: boolean;
352
- stage?: Json | null;
353
- stageTemplateId?: string | null;
354
- templateId?: string | null;
355
- timezone?: string;
356
- type?: Database['public']['Enums']['event_type'];
357
- updatedAt?: string;
358
- videoURL?: string | null;
359
- };
360
- Relationships: [
361
- {
362
- foreignKeyName: 'event_promoter_group_id_fkey';
363
- columns: ['promoter'];
364
- isOneToOne: false;
365
- referencedRelation: 'group';
366
- referencedColumns: ['id'];
367
- }
368
- ];
369
- };
370
- event_history: {
371
- Row: {
372
- action: string;
373
- created_at: string;
374
- event_id: string;
375
- group_id: string;
376
- id: number;
377
- prev_value: Json | null;
378
- user_id: string;
379
- value: Json | null;
380
- };
381
- Insert: {
382
- action: string;
383
- created_at: string;
384
- event_id: string;
385
- group_id: string;
386
- id?: number;
387
- prev_value?: Json | null;
388
- user_id: string;
389
- value?: Json | null;
390
- };
391
- Update: {
392
- action?: string;
393
- created_at?: string;
394
- event_id?: string;
395
- group_id?: string;
396
- id?: number;
397
- prev_value?: Json | null;
398
- user_id?: string;
399
- value?: Json | null;
400
- };
401
- Relationships: [];
402
- };
403
- group: {
404
- Row: {
405
- activeInvitationLink: boolean;
406
- addresses: Json[];
407
- administrators: string[];
408
- config: Json;
409
- configSites: Json;
410
- country: string;
411
- createdAt: string;
412
- createdOn: Database['public']['Enums']['created_on'];
413
- customerId: string | null;
414
- deletedAt: string | null;
415
- deletedBy: string | null;
416
- description: string | null;
417
- displayName: string;
418
- id: string;
419
- instruments: Json;
420
- intercomId: string | null;
421
- invitationEmails: string[];
422
- invitationLink: string | null;
423
- locality: string;
424
- location: unknown;
425
- location_lonlat: Database['public']['CompositeTypes']['lonlat'];
426
- metadata: Json;
427
- musicStyle: string;
428
- onboardingMessages: Json[];
429
- owner: string | null;
430
- partnershipId: string | null;
431
- photoURL: string;
432
- planId: Database['public']['Enums']['group_plan'];
433
- playerIds: string[];
434
- players: Json;
435
- repertoireTags: Json;
436
- rollcallLink: string | null;
437
- satisfactionIndex: Json;
438
- shortDynamicLink: string | null;
439
- socialNetworks: Json | null;
440
- status: Database['public']['Enums']['group_status'];
441
- subscriptionId: string | null;
442
- templates: Json;
443
- trialEndAt: string | null;
444
- updatedAt: string;
445
- username: string;
446
- visitedDashboardAt: Json;
447
- };
448
- Insert: {
449
- activeInvitationLink: boolean;
450
- addresses: Json[];
451
- administrators: string[];
452
- config: Json;
453
- configSites?: Json;
454
- country: string;
455
- createdAt?: string;
456
- createdOn: Database['public']['Enums']['created_on'];
457
- customerId?: string | null;
458
- deletedAt?: string | null;
459
- deletedBy?: string | null;
460
- description?: string | null;
461
- displayName: string;
462
- id: string;
463
- instruments: Json;
464
- intercomId?: string | null;
465
- invitationEmails: string[];
466
- invitationLink?: string | null;
467
- locality: string;
468
- location: unknown;
469
- location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
470
- metadata: Json;
471
- musicStyle: string;
472
- onboardingMessages: Json[];
473
- owner?: string | null;
474
- partnershipId?: string | null;
475
- photoURL: string;
476
- planId: Database['public']['Enums']['group_plan'];
477
- playerIds: string[];
478
- players: Json;
479
- repertoireTags: Json;
480
- rollcallLink?: string | null;
481
- satisfactionIndex: Json;
482
- shortDynamicLink?: string | null;
483
- socialNetworks?: Json | null;
484
- status: Database['public']['Enums']['group_status'];
485
- subscriptionId?: string | null;
486
- templates: Json;
487
- trialEndAt?: string | null;
488
- updatedAt?: string;
489
- username: string;
490
- visitedDashboardAt: Json;
491
- };
492
- Update: {
493
- activeInvitationLink?: boolean;
494
- addresses?: Json[];
495
- administrators?: string[];
496
- config?: Json;
497
- configSites?: Json;
498
- country?: string;
499
- createdAt?: string;
500
- createdOn?: Database['public']['Enums']['created_on'];
501
- customerId?: string | null;
502
- deletedAt?: string | null;
503
- deletedBy?: string | null;
504
- description?: string | null;
505
- displayName?: string;
506
- id?: string;
507
- instruments?: Json;
508
- intercomId?: string | null;
509
- invitationEmails?: string[];
510
- invitationLink?: string | null;
511
- locality?: string;
512
- location?: unknown;
513
- location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
514
- metadata?: Json;
515
- musicStyle?: string;
516
- onboardingMessages?: Json[];
517
- owner?: string | null;
518
- partnershipId?: string | null;
519
- photoURL?: string;
520
- planId?: Database['public']['Enums']['group_plan'];
521
- playerIds?: string[];
522
- players?: Json;
523
- repertoireTags?: Json;
524
- rollcallLink?: string | null;
525
- satisfactionIndex?: Json;
526
- shortDynamicLink?: string | null;
527
- socialNetworks?: Json | null;
528
- status?: Database['public']['Enums']['group_status'];
529
- subscriptionId?: string | null;
530
- templates?: Json;
531
- trialEndAt?: string | null;
532
- updatedAt?: string;
533
- username?: string;
534
- visitedDashboardAt?: Json;
535
- };
536
- Relationships: [];
537
- };
538
- group_history: {
539
- Row: {
540
- action: string;
541
- created_at: string;
542
- group_id: string;
543
- id: number;
544
- prev_value: Json | null;
545
- user_id: string;
546
- value: Json | null;
547
- };
548
- Insert: {
549
- action: string;
550
- created_at: string;
551
- group_id: string;
552
- id?: number;
553
- prev_value?: Json | null;
554
- user_id: string;
555
- value?: Json | null;
556
- };
557
- Update: {
558
- action?: string;
559
- created_at?: string;
560
- group_id?: string;
561
- id?: number;
562
- prev_value?: Json | null;
563
- user_id?: string;
564
- value?: Json | null;
565
- };
566
- Relationships: [];
567
- };
568
- group_payment: {
569
- Row: {
570
- appliedRules: Json;
571
- assignedTo: string;
572
- baseAmount: number | null;
573
- concept: string;
574
- conceptNorm: string | null;
575
- createdAt: string;
576
- createdBy: string;
577
- currency: string;
578
- editedBy: string | null;
579
- eventId: string | null;
580
- groupId: string;
581
- id: string;
582
- note: string | null;
583
- paidAt: string | null;
584
- paidBy: string | null;
585
- paymentMethod: Database['public']['Enums']['group_payment_method'] | null;
586
- playerId: string | null;
587
- status: Database['public']['Enums']['group_payment_status'];
588
- totalAmount: number | null;
589
- type: Database['public']['Enums']['group_payment_type'];
590
- updatedAt: string;
591
- };
592
- Insert: {
593
- appliedRules?: Json;
594
- assignedTo: string;
595
- baseAmount?: number | null;
596
- concept: string;
597
- conceptNorm?: string | null;
598
- createdAt?: string;
599
- createdBy: string;
600
- currency?: string;
601
- editedBy?: string | null;
602
- eventId?: string | null;
603
- groupId: string;
604
- id?: string;
605
- note?: string | null;
606
- paidAt?: string | null;
607
- paidBy?: string | null;
608
- paymentMethod?: Database['public']['Enums']['group_payment_method'] | null;
609
- playerId?: string | null;
610
- status: Database['public']['Enums']['group_payment_status'];
611
- totalAmount?: number | null;
612
- type: Database['public']['Enums']['group_payment_type'];
613
- updatedAt?: string;
614
- };
615
- Update: {
616
- appliedRules?: Json;
617
- assignedTo?: string;
618
- baseAmount?: number | null;
619
- concept?: string;
620
- conceptNorm?: string | null;
621
- createdAt?: string;
622
- createdBy?: string;
623
- currency?: string;
624
- editedBy?: string | null;
625
- eventId?: string | null;
626
- groupId?: string;
627
- id?: string;
628
- note?: string | null;
629
- paidAt?: string | null;
630
- paidBy?: string | null;
631
- paymentMethod?: Database['public']['Enums']['group_payment_method'] | null;
632
- playerId?: string | null;
633
- status?: Database['public']['Enums']['group_payment_status'];
634
- totalAmount?: number | null;
635
- type?: Database['public']['Enums']['group_payment_type'];
636
- updatedAt?: string;
637
- };
638
- Relationships: [];
639
- };
640
- group_payment_history: {
641
- Row: {
642
- action: Database['public']['Enums']['group_payment_history_action'];
643
- changed_at: string;
644
- changed_by: string;
645
- id: string;
646
- new_value: string | null;
647
- old_value: string | null;
648
- payment_id: string;
649
- };
650
- Insert: {
651
- action: Database['public']['Enums']['group_payment_history_action'];
652
- changed_at?: string;
653
- changed_by: string;
654
- id?: string;
655
- new_value?: string | null;
656
- old_value?: string | null;
657
- payment_id: string;
658
- };
659
- Update: {
660
- action?: Database['public']['Enums']['group_payment_history_action'];
661
- changed_at?: string;
662
- changed_by?: string;
663
- id?: string;
664
- new_value?: string | null;
665
- old_value?: string | null;
666
- payment_id?: string;
667
- };
668
- Relationships: [
669
- {
670
- foreignKeyName: 'group_payment_history_payment_id_fkey';
671
- columns: ['payment_id'];
672
- isOneToOne: false;
673
- referencedRelation: 'group_payment';
674
- referencedColumns: ['id'];
675
- }
676
- ];
677
- };
678
- offer: {
679
- Row: {
680
- applicants: Json;
681
- applicantsIds: string[];
682
- country: string;
683
- createdAt: string;
684
- createdBy: string;
685
- createdOn: Database['public']['Enums']['created_on'];
686
- deadlineAt: string | null;
687
- deletedAt: string | null;
688
- deletedBy: string | null;
689
- description: string;
690
- eventId: string | null;
691
- groupId: string;
692
- groupInfo: Json;
693
- id: string;
694
- instrument: string;
695
- locality: string;
696
- location: unknown;
697
- location_lonlat: Database['public']['CompositeTypes']['lonlat'];
698
- selectionClosedAt: string | null;
699
- selectionClosedBy: string | null;
700
- timezone: string;
701
- title: string;
702
- type: Database['public']['Enums']['offer_type'];
703
- updatedAt: string;
704
- updatedBy: string;
705
- };
706
- Insert: {
707
- applicants: Json;
708
- applicantsIds: string[];
709
- country: string;
710
- createdAt: string;
711
- createdBy: string;
712
- createdOn: Database['public']['Enums']['created_on'];
713
- deadlineAt?: string | null;
714
- deletedAt?: string | null;
715
- deletedBy?: string | null;
716
- description: string;
717
- eventId?: string | null;
718
- groupId: string;
719
- groupInfo?: Json;
720
- id: string;
721
- instrument: string;
722
- locality: string;
723
- location: unknown;
724
- location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
725
- selectionClosedAt?: string | null;
726
- selectionClosedBy?: string | null;
727
- timezone: string;
728
- title: string;
729
- type: Database['public']['Enums']['offer_type'];
730
- updatedAt: string;
731
- updatedBy: string;
732
- };
733
- Update: {
734
- applicants?: Json;
735
- applicantsIds?: string[];
736
- country?: string;
737
- createdAt?: string;
738
- createdBy?: string;
739
- createdOn?: Database['public']['Enums']['created_on'];
740
- deadlineAt?: string | null;
741
- deletedAt?: string | null;
742
- deletedBy?: string | null;
743
- description?: string;
744
- eventId?: string | null;
745
- groupId?: string;
746
- groupInfo?: Json;
747
- id?: string;
748
- instrument?: string;
749
- locality?: string;
750
- location?: unknown;
751
- location_lonlat?: Database['public']['CompositeTypes']['lonlat'];
752
- selectionClosedAt?: string | null;
753
- selectionClosedBy?: string | null;
754
- timezone?: string;
755
- title?: string;
756
- type?: Database['public']['Enums']['offer_type'];
757
- updatedAt?: string;
758
- updatedBy?: string;
759
- };
760
- Relationships: [
761
- {
762
- foreignKeyName: 'public_offer_eventId_fkey';
763
- columns: ['eventId'];
764
- isOneToOne: false;
765
- referencedRelation: 'event';
766
- referencedColumns: ['id'];
767
- },
768
- {
769
- foreignKeyName: 'public_offer_groupId_fkey';
770
- columns: ['groupId'];
771
- isOneToOne: false;
772
- referencedRelation: 'group';
773
- referencedColumns: ['id'];
774
- }
775
- ];
776
- };
777
- offer_history: {
778
- Row: {
779
- action: string;
780
- created_at: string;
781
- group_id: string;
782
- id: number;
783
- offer_id: string;
784
- prev_value: Json | null;
785
- user_id: string;
786
- value: Json | null;
787
- };
788
- Insert: {
789
- action: string;
790
- created_at: string;
791
- group_id: string;
792
- id?: number;
793
- offer_id: string;
794
- prev_value?: Json | null;
795
- user_id: string;
796
- value?: Json | null;
797
- };
798
- Update: {
799
- action?: string;
800
- created_at?: string;
801
- group_id?: string;
802
- id?: number;
803
- offer_id?: string;
804
- prev_value?: Json | null;
805
- user_id?: string;
806
- value?: Json | null;
807
- };
808
- Relationships: [];
809
- };
810
- partnership_communication: {
811
- Row: {
812
- attachments: Json;
813
- createdAt: string;
814
- deletedAt: string | null;
815
- id: string;
816
- imagesPath: string[];
817
- imageURL: string | null;
818
- message: Json;
819
- messageHtml: string;
820
- ownerId: string;
821
- ownerName: string;
822
- partnershipId: string;
823
- recipients: string[];
824
- recipientsCount: number;
825
- scheduledAt: string | null;
826
- status: Database['public']['Enums']['partnership_communication_status'];
827
- title: string;
828
- };
829
- Insert: {
830
- attachments?: Json;
831
- createdAt?: string;
832
- deletedAt?: string | null;
833
- id?: string;
834
- imagesPath?: string[];
835
- imageURL?: string | null;
836
- message?: Json;
837
- messageHtml?: string;
838
- ownerId: string;
839
- ownerName: string;
840
- partnershipId: string;
841
- recipients?: string[];
842
- recipientsCount?: number;
843
- scheduledAt?: string | null;
844
- status: Database['public']['Enums']['partnership_communication_status'];
845
- title: string;
846
- };
847
- Update: {
848
- attachments?: Json;
849
- createdAt?: string;
850
- deletedAt?: string | null;
851
- id?: string;
852
- imagesPath?: string[];
853
- imageURL?: string | null;
854
- message?: Json;
855
- messageHtml?: string;
856
- ownerId?: string;
857
- ownerName?: string;
858
- partnershipId?: string;
859
- recipients?: string[];
860
- recipientsCount?: number;
861
- scheduledAt?: string | null;
862
- status?: Database['public']['Enums']['partnership_communication_status'];
863
- title?: string;
864
- };
865
- Relationships: [];
866
- };
867
- partnership_group: {
868
- Row: {
869
- groupId: string;
870
- linkedAt: string;
871
- linkedBy: string | null;
872
- partnershipId: string;
873
- };
874
- Insert: {
875
- groupId: string;
876
- linkedAt?: string;
877
- linkedBy?: string | null;
878
- partnershipId: string;
879
- };
880
- Update: {
881
- groupId?: string;
882
- linkedAt?: string;
883
- linkedBy?: string | null;
884
- partnershipId?: string;
885
- };
886
- Relationships: [
887
- {
888
- foreignKeyName: 'partnership_group_group_id_fkey';
889
- columns: ['groupId'];
890
- isOneToOne: false;
891
- referencedRelation: 'group';
892
- referencedColumns: ['id'];
893
- }
894
- ];
895
- };
896
- partnership_partner: {
897
- Row: {
898
- acceptedAt: string | null;
899
- acceptedBy: string | null;
900
- acceptsCommunications: boolean;
901
- address: Json | null;
902
- birthDate: string | null;
903
- createdAt: string;
904
- createdBy: string;
905
- customFields: Json;
906
- deletedAt: string | null;
907
- deletedBy: string | null;
908
- editedBy: string | null;
909
- email: string | null;
910
- groupIds: string[];
911
- id: string;
912
- lastname: string;
913
- name: string;
914
- NIF: string | null;
915
- partnerNumber: number;
916
- partnershipId: string;
917
- payerId: string | null;
918
- paymentMethod: Database['public']['Enums']['partnership_payment_method'] | null;
919
- phone: string | null;
920
- photoURL: string;
921
- sepaMandate: Json | null;
922
- status: Database['public']['Enums']['partnership_partner_status'];
923
- subscriptionIds: string[];
924
- subscriptions: Json;
925
- tagIds: string[];
926
- updatedAt: string;
927
- userId: string | null;
928
- };
929
- Insert: {
930
- acceptedAt?: string | null;
931
- acceptedBy?: string | null;
932
- acceptsCommunications?: boolean;
933
- address?: Json | null;
934
- birthDate?: string | null;
935
- createdAt?: string;
936
- createdBy: string;
937
- customFields?: Json;
938
- deletedAt?: string | null;
939
- deletedBy?: string | null;
940
- editedBy?: string | null;
941
- email?: string | null;
942
- groupIds?: string[];
943
- id?: string;
944
- lastname?: string;
945
- name: string;
946
- NIF?: string | null;
947
- partnerNumber: number;
948
- partnershipId: string;
949
- payerId?: string | null;
950
- paymentMethod?: Database['public']['Enums']['partnership_payment_method'] | null;
951
- phone?: string | null;
952
- photoURL?: string;
953
- sepaMandate?: Json | null;
954
- status?: Database['public']['Enums']['partnership_partner_status'];
955
- subscriptionIds?: string[];
956
- subscriptions?: Json;
957
- tagIds?: string[];
958
- updatedAt?: string;
959
- userId?: string | null;
960
- };
961
- Update: {
962
- acceptedAt?: string | null;
963
- acceptedBy?: string | null;
964
- acceptsCommunications?: boolean;
965
- address?: Json | null;
966
- birthDate?: string | null;
967
- createdAt?: string;
968
- createdBy?: string;
969
- customFields?: Json;
970
- deletedAt?: string | null;
971
- deletedBy?: string | null;
972
- editedBy?: string | null;
973
- email?: string | null;
974
- groupIds?: string[];
975
- id?: string;
976
- lastname?: string;
977
- name?: string;
978
- NIF?: string | null;
979
- partnerNumber?: number;
980
- partnershipId?: string;
981
- payerId?: string | null;
982
- paymentMethod?: Database['public']['Enums']['partnership_payment_method'] | null;
983
- phone?: string | null;
984
- photoURL?: string;
985
- sepaMandate?: Json | null;
986
- status?: Database['public']['Enums']['partnership_partner_status'];
987
- subscriptionIds?: string[];
988
- subscriptions?: Json;
989
- tagIds?: string[];
990
- updatedAt?: string;
991
- userId?: string | null;
992
- };
993
- Relationships: [
994
- {
995
- foreignKeyName: 'partnership_partner_payer_id_fkey';
996
- columns: ['payerId'];
997
- isOneToOne: false;
998
- referencedRelation: 'partnership_partner';
999
- referencedColumns: ['id'];
1000
- }
1001
- ];
1002
- };
1003
- partnership_payment: {
1004
- Row: {
1005
- amount: number;
1006
- createdAt: string;
1007
- createdBy: string | null;
1008
- dueDate: string;
1009
- editedBy: string | null;
1010
- id: string;
1011
- partnerId: string;
1012
- partnershipId: string;
1013
- payerId: string | null;
1014
- paymentMethod: Database['public']['Enums']['partnership_payment_method'] | null;
1015
- receiptFilePath: string | null;
1016
- sepaEndToEndId: string | null;
1017
- sepaPaymentGroupId: string | null;
1018
- status: Database['public']['Enums']['partnership_payment_status'];
1019
- subscriptionId: string | null;
1020
- title: string;
1021
- updatedAt: string;
1022
- };
1023
- Insert: {
1024
- amount: number;
1025
- createdAt?: string;
1026
- createdBy?: string | null;
1027
- dueDate: string;
1028
- editedBy?: string | null;
1029
- id?: string;
1030
- partnerId: string;
1031
- partnershipId: string;
1032
- payerId?: string | null;
1033
- paymentMethod?: Database['public']['Enums']['partnership_payment_method'] | null;
1034
- receiptFilePath?: string | null;
1035
- sepaEndToEndId?: string | null;
1036
- sepaPaymentGroupId?: string | null;
1037
- status?: Database['public']['Enums']['partnership_payment_status'];
1038
- subscriptionId?: string | null;
1039
- title: string;
1040
- updatedAt?: string;
1041
- };
1042
- Update: {
1043
- amount?: number;
1044
- createdAt?: string;
1045
- createdBy?: string | null;
1046
- dueDate?: string;
1047
- editedBy?: string | null;
1048
- id?: string;
1049
- partnerId?: string;
1050
- partnershipId?: string;
1051
- payerId?: string | null;
1052
- paymentMethod?: Database['public']['Enums']['partnership_payment_method'] | null;
1053
- receiptFilePath?: string | null;
1054
- sepaEndToEndId?: string | null;
1055
- sepaPaymentGroupId?: string | null;
1056
- status?: Database['public']['Enums']['partnership_payment_status'];
1057
- subscriptionId?: string | null;
1058
- title?: string;
1059
- updatedAt?: string;
1060
- };
1061
- Relationships: [
1062
- {
1063
- foreignKeyName: 'partnership_payment_payer_id_fkey';
1064
- columns: ['payerId'];
1065
- isOneToOne: false;
1066
- referencedRelation: 'partnership_partner';
1067
- referencedColumns: ['id'];
1068
- },
1069
- {
1070
- foreignKeyName: 'partnership_payment_sepa_group_id_fkey';
1071
- columns: ['sepaPaymentGroupId'];
1072
- isOneToOne: false;
1073
- referencedRelation: 'partnership_sepa_payment_group';
1074
- referencedColumns: ['id'];
1075
- },
1076
- {
1077
- foreignKeyName: 'partnership_payment_subscription_id_fkey';
1078
- columns: ['subscriptionId'];
1079
- isOneToOne: false;
1080
- referencedRelation: 'partnership_subscription';
1081
- referencedColumns: ['id'];
1082
- }
1083
- ];
1084
- };
1085
- partnership_payment_history: {
1086
- Row: {
1087
- changed_at: string;
1088
- changed_by: string;
1089
- id: string;
1090
- payment_id: string;
1091
- status: Database['public']['Enums']['partnership_payment_status'];
1092
- };
1093
- Insert: {
1094
- changed_at?: string;
1095
- changed_by: string;
1096
- id?: string;
1097
- payment_id: string;
1098
- status: Database['public']['Enums']['partnership_payment_status'];
1099
- };
1100
- Update: {
1101
- changed_at?: string;
1102
- changed_by?: string;
1103
- id?: string;
1104
- payment_id?: string;
1105
- status?: Database['public']['Enums']['partnership_payment_status'];
1106
- };
1107
- Relationships: [
1108
- {
1109
- foreignKeyName: 'partnership_payment_history_payment_id_fkey';
1110
- columns: ['payment_id'];
1111
- isOneToOne: false;
1112
- referencedRelation: 'partnership_payment';
1113
- referencedColumns: ['id'];
1114
- }
1115
- ];
1116
- };
1117
- partnership_plan: {
1118
- Row: {
1119
- createdAt: string;
1120
- createdBy: string;
1121
- deletedAt: string | null;
1122
- deletedBy: string | null;
1123
- description: string;
1124
- editedBy: string | null;
1125
- id: string;
1126
- name: string;
1127
- partnershipId: string;
1128
- price: number;
1129
- schedule: Json;
1130
- subscriptionsCount: number;
1131
- updatedAt: string;
1132
- };
1133
- Insert: {
1134
- createdAt?: string;
1135
- createdBy: string;
1136
- deletedAt?: string | null;
1137
- deletedBy?: string | null;
1138
- description?: string;
1139
- editedBy?: string | null;
1140
- id?: string;
1141
- name: string;
1142
- partnershipId: string;
1143
- price: number;
1144
- schedule: Json;
1145
- subscriptionsCount?: number;
1146
- updatedAt?: string;
1147
- };
1148
- Update: {
1149
- createdAt?: string;
1150
- createdBy?: string;
1151
- deletedAt?: string | null;
1152
- deletedBy?: string | null;
1153
- description?: string;
1154
- editedBy?: string | null;
1155
- id?: string;
1156
- name?: string;
1157
- partnershipId?: string;
1158
- price?: number;
1159
- schedule?: Json;
1160
- subscriptionsCount?: number;
1161
- updatedAt?: string;
1162
- };
1163
- Relationships: [];
1164
- };
1165
- partnership_sepa_payment_group: {
1166
- Row: {
1167
- createdAt: string;
1168
- createdBy: string;
1169
- creditorInfo: Json;
1170
- editedBy: string | null;
1171
- filePath: string | null;
1172
- id: string;
1173
- partnershipId: string;
1174
- paymentsIds: string[];
1175
- updatedAt: string;
1176
- };
1177
- Insert: {
1178
- createdAt?: string;
1179
- createdBy: string;
1180
- creditorInfo: Json;
1181
- editedBy?: string | null;
1182
- filePath?: string | null;
1183
- id?: string;
1184
- partnershipId: string;
1185
- paymentsIds?: string[];
1186
- updatedAt?: string;
1187
- };
1188
- Update: {
1189
- createdAt?: string;
1190
- createdBy?: string;
1191
- creditorInfo?: Json;
1192
- editedBy?: string | null;
1193
- filePath?: string | null;
1194
- id?: string;
1195
- partnershipId?: string;
1196
- paymentsIds?: string[];
1197
- updatedAt?: string;
1198
- };
1199
- Relationships: [];
1200
- };
1201
- partnership_subscription: {
1202
- Row: {
1203
- createdAt: string;
1204
- createdBy: string;
1205
- deletedAt: string | null;
1206
- deletedBy: string | null;
1207
- editedBy: string | null;
1208
- endDate: string | null;
1209
- id: string;
1210
- nextPaymentDate: string | null;
1211
- partnerId: string;
1212
- partnerInfo: Json;
1213
- partnershipId: string;
1214
- planId: string;
1215
- planInfo: Json;
1216
- updatedAt: string;
1217
- };
1218
- Insert: {
1219
- createdAt?: string;
1220
- createdBy: string;
1221
- deletedAt?: string | null;
1222
- deletedBy?: string | null;
1223
- editedBy?: string | null;
1224
- endDate?: string | null;
1225
- id?: string;
1226
- nextPaymentDate?: string | null;
1227
- partnerId: string;
1228
- partnerInfo: Json;
1229
- partnershipId: string;
1230
- planId: string;
1231
- planInfo: Json;
1232
- updatedAt?: string;
1233
- };
1234
- Update: {
1235
- createdAt?: string;
1236
- createdBy?: string;
1237
- deletedAt?: string | null;
1238
- deletedBy?: string | null;
1239
- editedBy?: string | null;
1240
- endDate?: string | null;
1241
- id?: string;
1242
- nextPaymentDate?: string | null;
1243
- partnerId?: string;
1244
- partnerInfo?: Json;
1245
- partnershipId?: string;
1246
- planId?: string;
1247
- planInfo?: Json;
1248
- updatedAt?: string;
1249
- };
1250
- Relationships: [
1251
- {
1252
- foreignKeyName: 'partnership_subscription_plan_id_fkey';
1253
- columns: ['planId'];
1254
- isOneToOne: false;
1255
- referencedRelation: 'partnership_plan';
1256
- referencedColumns: ['id'];
1257
- }
1258
- ];
1259
- };
1260
- repertoire: {
1261
- Row: {
1262
- compositor: string | null;
1263
- created_at: string;
1264
- events: string[];
1265
- group_id: string;
1266
- id: string;
1267
- last_event_datetime: string | null;
1268
- owner_id: string;
1269
- tags: string[];
1270
- title: string;
1271
- visibility: string;
1272
- };
1273
- Insert: {
1274
- compositor?: string | null;
1275
- created_at?: string;
1276
- events: string[];
1277
- group_id: string;
1278
- id: string;
1279
- last_event_datetime?: string | null;
1280
- owner_id: string;
1281
- tags: string[];
1282
- title: string;
1283
- visibility: string;
1284
- };
1285
- Update: {
1286
- compositor?: string | null;
1287
- created_at?: string;
1288
- events?: string[];
1289
- group_id?: string;
1290
- id?: string;
1291
- last_event_datetime?: string | null;
1292
- owner_id?: string;
1293
- tags?: string[];
1294
- title?: string;
1295
- visibility?: string;
1296
- };
1297
- Relationships: [];
1298
- };
1299
- repertoire_history: {
1300
- Row: {
1301
- action: string;
1302
- created_at: string;
1303
- group_id: string;
1304
- id: number;
1305
- prev_value: Json | null;
1306
- theme_id: string;
1307
- user_id: string;
1308
- value: Json | null;
1309
- };
1310
- Insert: {
1311
- action: string;
1312
- created_at: string;
1313
- group_id: string;
1314
- id?: number;
1315
- prev_value?: Json | null;
1316
- theme_id: string;
1317
- user_id: string;
1318
- value?: Json | null;
1319
- };
1320
- Update: {
1321
- action?: string;
1322
- created_at?: string;
1323
- group_id?: string;
1324
- id?: number;
1325
- prev_value?: Json | null;
1326
- theme_id?: string;
1327
- user_id?: string;
1328
- value?: Json | null;
1329
- };
1330
- Relationships: [];
1331
- };
1332
- user: {
1333
- Row: {
1334
- analyticsEnabled: boolean;
1335
- appConfig: Json;
1336
- createdAt: string | null;
1337
- customerIds: string[];
1338
- dashboardConfig: Json;
1339
- deletedAt: string | null;
1340
- description: string | null;
1341
- devices: Json;
1342
- displayName: string | null;
1343
- email: string | null;
1344
- emailSettings: Json;
1345
- fakeUser: boolean;
1346
- federationId: string | null;
1347
- groupInvites: string[];
1348
- groups: string[];
1349
- groupsAdmin: string[];
1350
- language: string | null;
1351
- lastAppLoginAt: string | null;
1352
- lastBiweeklyEmailAt: string | null;
1353
- lastname: string | null;
1354
- lastWebLoginAt: string | null;
1355
- locality: string | null;
1356
- name: string | null;
1357
- notificationSettings: Json;
1358
- partnershipIds: string[];
1359
- photoURL: string | null;
1360
- rawData: Json;
1361
- role: string | null;
1362
- updatedAt: string;
1363
- userId: string;
1364
- username: string | null;
1365
- whatsNew: Json;
1366
- };
1367
- Insert: {
1368
- analyticsEnabled?: boolean;
1369
- appConfig?: Json;
1370
- createdAt?: string | null;
1371
- customerIds?: string[];
1372
- dashboardConfig?: Json;
1373
- deletedAt?: string | null;
1374
- description?: string | null;
1375
- devices?: Json;
1376
- displayName?: string | null;
1377
- email?: string | null;
1378
- emailSettings?: Json;
1379
- fakeUser?: boolean;
1380
- federationId?: string | null;
1381
- groupInvites?: string[];
1382
- groups?: string[];
1383
- groupsAdmin?: string[];
1384
- language?: string | null;
1385
- lastAppLoginAt?: string | null;
1386
- lastBiweeklyEmailAt?: string | null;
1387
- lastname?: string | null;
1388
- lastWebLoginAt?: string | null;
1389
- locality?: string | null;
1390
- name?: string | null;
1391
- notificationSettings?: Json;
1392
- partnershipIds?: string[];
1393
- photoURL?: string | null;
1394
- rawData?: Json;
1395
- role?: string | null;
1396
- updatedAt?: string;
1397
- userId: string;
1398
- username?: string | null;
1399
- whatsNew?: Json;
1400
- };
1401
- Update: {
1402
- analyticsEnabled?: boolean;
1403
- appConfig?: Json;
1404
- createdAt?: string | null;
1405
- customerIds?: string[];
1406
- dashboardConfig?: Json;
1407
- deletedAt?: string | null;
1408
- description?: string | null;
1409
- devices?: Json;
1410
- displayName?: string | null;
1411
- email?: string | null;
1412
- emailSettings?: Json;
1413
- fakeUser?: boolean;
1414
- federationId?: string | null;
1415
- groupInvites?: string[];
1416
- groups?: string[];
1417
- groupsAdmin?: string[];
1418
- language?: string | null;
1419
- lastAppLoginAt?: string | null;
1420
- lastBiweeklyEmailAt?: string | null;
1421
- lastname?: string | null;
1422
- lastWebLoginAt?: string | null;
1423
- locality?: string | null;
1424
- name?: string | null;
1425
- notificationSettings?: Json;
1426
- partnershipIds?: string[];
1427
- photoURL?: string | null;
1428
- rawData?: Json;
1429
- role?: string | null;
1430
- updatedAt?: string;
1431
- userId?: string;
1432
- username?: string | null;
1433
- whatsNew?: Json;
1434
- };
1435
- Relationships: [];
1436
- };
1437
- };
1438
- Views: {
1439
- [_ in never]: never;
1440
- };
1441
- Functions: {
1442
- backfillEventDatetimeEnds: {
1443
- Args: {
1444
- p_apply?: boolean;
1445
- p_events: Json;
1446
- };
1447
- Returns: {
1448
- changed: number;
1449
- matched: number;
1450
- mismatched: number;
1451
- }[];
1452
- };
1453
- generate_partnership_recurring_payment: {
1454
- Args: {
1455
- p_amount: number;
1456
- p_due_date: string;
1457
- p_next_payment_date: string;
1458
- p_partner_id: string;
1459
- p_partnership_id: string;
1460
- p_payer_id?: string;
1461
- p_payment_method: Database['public']['Enums']['partnership_payment_method'];
1462
- p_subscription_id: string;
1463
- p_title: string;
1464
- };
1465
- Returns: {
1466
- created: boolean;
1467
- payment_id: string;
1468
- }[];
1469
- };
1470
- getCalendarFeedEvents: {
1471
- Args: {
1472
- p_include_pending: boolean;
1473
- p_include_tentative: boolean;
1474
- p_range_end: string;
1475
- p_range_start: string;
1476
- p_user_id: string;
1477
- };
1478
- Returns: {
1479
- allDay: boolean;
1480
- description: string;
1481
- endsAt: string;
1482
- eventId: string;
1483
- eventType: string;
1484
- groupName: string;
1485
- language: string;
1486
- lastModified: string;
1487
- latitude: number;
1488
- location: string;
1489
- longitude: number;
1490
- participationStatus: string;
1491
- sequence: number;
1492
- startsAt: string;
1493
- status: string;
1494
- summary: string;
1495
- timezone: string;
1496
- url: string;
1497
- }[];
1498
- };
1499
- immutable_unaccent: {
1500
- Args: {
1501
- '': string;
1502
- };
1503
- Returns: string;
1504
- };
1505
- resolveCalendarFeed: {
1506
- Args: {
1507
- p_token_hash: string;
1508
- };
1509
- Returns: {
1510
- includePending: boolean;
1511
- includeTentative: boolean;
1512
- userId: string;
1513
- }[];
1514
- };
1515
- show_limit: {
1516
- Args: never;
1517
- Returns: number;
1518
- };
1519
- show_trgm: {
1520
- Args: {
1521
- '': string;
1522
- };
1523
- Returns: string[];
1524
- };
1525
- unaccent: {
1526
- Args: {
1527
- '': string;
1528
- };
1529
- Returns: string;
1530
- };
1531
- };
1532
- Enums: {
1533
- created_on: 'app' | 'dashboard' | 'auth' | 'web';
1534
- event_selection_mode: 'open' | 'closed';
1535
- event_type: 'practice' | 'performance' | 'other';
1536
- group_payment_history_action: 'status' | 'amount' | 'concept' | 'method';
1537
- group_payment_method: 'cash' | 'transfer';
1538
- group_payment_status: 'pending' | 'paid' | 'cancelled';
1539
- group_payment_type: 'income' | 'expense';
1540
- group_plan: 'piano' | 'mezzopiano' | 'mezzoforte' | 'forte' | 'fortissimo' | 'tutti';
1541
- group_plan_period: 'yearly' | 'monthly';
1542
- group_status: 'premium' | 'trial' | 'inactive' | 'deleted';
1543
- offer_type: 'group' | 'event';
1544
- partnership_communication_status: 'sent' | 'scheduled';
1545
- partnership_partner_status: 'active' | 'pending' | 'inactive';
1546
- partnership_payment_method: 'CASH' | 'TRANSFER' | 'SEPA' | 'BIZUM';
1547
- partnership_payment_status: 'pending' | 'charged' | 'returned' | 'canceled';
1548
- social_network: 'facebook' | 'twitter' | 'instagram' | 'youtube';
1549
- };
1550
- CompositeTypes: {
1551
- lonlat: {
1552
- longitude: number | null;
1553
- latitude: number | null;
1554
- };
1555
- };
1556
- };
1557
- };
1558
- type DatabaseWithoutInternals = Omit<Database, '__InternalSupabase'>;
1559
- type DefaultSchema = DatabaseWithoutInternals[Extract<keyof Database, 'public'>];
1560
- export type Tables<DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema['Tables'] & DefaultSchema['Views']) | {
1561
- schema: keyof DatabaseWithoutInternals;
1562
- }, TableName extends DefaultSchemaTableNameOrOptions extends {
1563
- schema: keyof DatabaseWithoutInternals;
1564
- } ? keyof (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'] & DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Views']) : never = never> = DefaultSchemaTableNameOrOptions extends {
1565
- schema: keyof DatabaseWithoutInternals;
1566
- } ? (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'] & DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Views'])[TableName] extends {
1567
- Row: infer R;
1568
- } ? R : never : DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema['Tables'] & DefaultSchema['Views']) ? (DefaultSchema['Tables'] & DefaultSchema['Views'])[DefaultSchemaTableNameOrOptions] extends {
1569
- Row: infer R;
1570
- } ? R : never : never;
1571
- export type TablesInsert<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema['Tables'] | {
1572
- schema: keyof DatabaseWithoutInternals;
1573
- }, TableName extends DefaultSchemaTableNameOrOptions extends {
1574
- schema: keyof DatabaseWithoutInternals;
1575
- } ? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'] : never = never> = DefaultSchemaTableNameOrOptions extends {
1576
- schema: keyof DatabaseWithoutInternals;
1577
- } ? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'][TableName] extends {
1578
- Insert: infer I;
1579
- } ? I : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema['Tables'] ? DefaultSchema['Tables'][DefaultSchemaTableNameOrOptions] extends {
1580
- Insert: infer I;
1581
- } ? I : never : never;
1582
- export type TablesUpdate<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema['Tables'] | {
1583
- schema: keyof DatabaseWithoutInternals;
1584
- }, TableName extends DefaultSchemaTableNameOrOptions extends {
1585
- schema: keyof DatabaseWithoutInternals;
1586
- } ? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'] : never = never> = DefaultSchemaTableNameOrOptions extends {
1587
- schema: keyof DatabaseWithoutInternals;
1588
- } ? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'][TableName] extends {
1589
- Update: infer U;
1590
- } ? U : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema['Tables'] ? DefaultSchema['Tables'][DefaultSchemaTableNameOrOptions] extends {
1591
- Update: infer U;
1592
- } ? U : never : never;
1593
- export type Enums<DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema['Enums'] | {
1594
- schema: keyof DatabaseWithoutInternals;
1595
- }, EnumName extends DefaultSchemaEnumNameOrOptions extends {
1596
- schema: keyof DatabaseWithoutInternals;
1597
- } ? keyof DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions['schema']]['Enums'] : never = never> = DefaultSchemaEnumNameOrOptions extends {
1598
- schema: keyof DatabaseWithoutInternals;
1599
- } ? DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions['schema']]['Enums'][EnumName] : DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema['Enums'] ? DefaultSchema['Enums'][DefaultSchemaEnumNameOrOptions] : never;
1600
- export type CompositeTypes<PublicCompositeTypeNameOrOptions extends keyof DefaultSchema['CompositeTypes'] | {
1601
- schema: keyof DatabaseWithoutInternals;
1602
- }, CompositeTypeName extends PublicCompositeTypeNameOrOptions extends {
1603
- schema: keyof DatabaseWithoutInternals;
1604
- } ? keyof DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions['schema']]['CompositeTypes'] : never = never> = PublicCompositeTypeNameOrOptions extends {
1605
- schema: keyof DatabaseWithoutInternals;
1606
- } ? DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions['schema']]['CompositeTypes'][CompositeTypeName] : PublicCompositeTypeNameOrOptions extends keyof DefaultSchema['CompositeTypes'] ? DefaultSchema['CompositeTypes'][PublicCompositeTypeNameOrOptions] : never;
1607
- export declare const Constants: {
1608
- readonly public: {
1609
- readonly Enums: {
1610
- readonly created_on: readonly ["app", "dashboard", "auth", "web"];
1611
- readonly event_selection_mode: readonly ["open", "closed"];
1612
- readonly event_type: readonly ["practice", "performance", "other"];
1613
- readonly group_payment_history_action: readonly ["status", "amount", "concept", "method"];
1614
- readonly group_payment_method: readonly ["cash", "transfer"];
1615
- readonly group_payment_status: readonly ["pending", "paid", "cancelled"];
1616
- readonly group_payment_type: readonly ["income", "expense"];
1617
- readonly group_plan: readonly ["piano", "mezzopiano", "mezzoforte", "forte", "fortissimo", "tutti"];
1618
- readonly group_plan_period: readonly ["yearly", "monthly"];
1619
- readonly group_status: readonly ["premium", "trial", "inactive", "deleted"];
1620
- readonly offer_type: readonly ["group", "event"];
1621
- readonly partnership_communication_status: readonly ["sent", "scheduled"];
1622
- readonly partnership_partner_status: readonly ["active", "pending", "inactive"];
1623
- readonly partnership_payment_method: readonly ["CASH", "TRANSFER", "SEPA", "BIZUM"];
1624
- readonly partnership_payment_status: readonly ["pending", "charged", "returned", "canceled"];
1625
- readonly social_network: readonly ["facebook", "twitter", "instagram", "youtube"];
1626
- };
1627
- };
1628
- };
1629
- export {};