@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.
- package/functions/auth.d.ts +22 -0
- package/functions/composer.d.ts +13 -0
- package/functions/composerComposition.d.ts +102 -0
- package/functions/composerNotification.d.ts +38 -0
- package/functions/composerPayout.d.ts +20 -0
- package/functions/customer.d.ts +102 -0
- package/functions/event.js +29 -0
- package/functions/eventPlayer.js +13 -0
- package/functions/eventRepertory.d.ts +42 -0
- package/functions/eventRepertory.js +16 -0
- package/functions/groupRepertory.d.ts +250 -0
- package/functions/index.d.ts +256 -0
- package/functions/index.js +261 -0
- package/functions/misc.d.ts +24 -0
- package/functions/regions.js +270 -0
- package/helpers/appScenes.js +109 -0
- package/helpers/auth.d.ts +21 -0
- package/helpers/auth.js +43 -0
- package/helpers/badges.js +162 -0
- package/helpers/catalogBridge.d.ts +121 -0
- package/helpers/catalogBridge.js +95 -0
- package/helpers/collections.js +49 -0
- package/helpers/communicationTemplate/index.d.ts +33 -0
- package/helpers/communicationTemplate/index.js +47 -0
- package/helpers/compositionCategories/genres.d.ts +922 -0
- package/helpers/compositionCategories/genres.js +940 -0
- package/helpers/compositionCategories/index.d.ts +2 -0
- package/helpers/compositionCategories/index.js +18 -0
- package/helpers/compositionCategories/styles.d.ts +181 -0
- package/helpers/compositionCategories/styles.js +197 -0
- package/helpers/compositionSoloistOffstageParts/index.d.ts +34 -0
- package/helpers/compositionSoloistOffstageParts/index.js +117 -0
- package/helpers/currency.d.ts +23 -0
- package/helpers/currency.js +346 -0
- package/helpers/currencyConversion.d.ts +45 -0
- package/helpers/currencyConversion.js +119 -0
- package/helpers/dataStructures/trees/index.d.ts +12 -0
- package/helpers/dataStructures/trees/index.js +71 -0
- package/helpers/dataStructures/trees/types.d.ts +14 -0
- package/helpers/dataStructures/trees/types.js +5 -0
- package/helpers/dlinks.js +12 -0
- package/helpers/errors.d.ts +93 -0
- package/helpers/errors.js +85 -0
- package/helpers/externalUrls.d.ts +12 -0
- package/helpers/externalUrls.js +40 -0
- package/helpers/instruments/index.d.ts +164 -0
- package/helpers/instruments/index.js +344 -0
- package/helpers/instruments/lists.d.ts +6 -0
- package/helpers/instruments/lists.js +21 -0
- package/helpers/musicStyles/index.d.ts +40 -0
- package/helpers/musicStyles/index.js +227 -0
- package/helpers/notifications/index.js +231 -0
- package/helpers/objects.d.ts +15 -0
- package/helpers/objects.js +40 -0
- package/helpers/paymentForecast.js +57 -0
- package/helpers/payoutRules.js +165 -0
- package/helpers/plans.js +99 -0
- package/helpers/rates.d.ts +13 -0
- package/helpers/slate.d.ts +75 -0
- package/helpers/slate.js +26 -0
- package/helpers/ts-extras/array-includes.js +26 -0
- package/helpers/ts-extras/as-mutable.js +20 -0
- package/helpers/ts-extras/assert-error.js +37 -0
- package/helpers/ts-extras/index.js +33 -0
- package/helpers/ts-extras/is-defined.js +21 -0
- package/helpers/ts-extras/is-empty.js +6 -0
- package/helpers/ts-extras/is-infinite.js +11 -0
- package/helpers/ts-extras/is-present.js +21 -0
- package/helpers/ts-extras/object-entries.d.ts +23 -0
- package/helpers/ts-extras/object-from-entries.d.ts +26 -0
- package/helpers/ts-extras/object-has-own.js +25 -0
- package/helpers/ts-extras/object-keys.d.ts +21 -0
- package/helpers/ts-extras/object-keys.js +23 -0
- package/helpers/ts-extras/set-has.js +27 -0
- package/helpers/types.d.ts +69 -0
- package/helpers/types.js +65 -0
- package/lang/ca.json +704 -0
- package/lang/de.json +704 -0
- package/lang/en.json +704 -0
- package/lang/es.json +704 -0
- package/lang/eu.json +704 -0
- package/lang/fr.json +704 -0
- package/lang/gl.json +704 -0
- package/lang/index.js +203 -0
- package/lang/it.json +704 -0
- package/lang/nl.json +704 -0
- package/lang/pt.json +704 -0
- package/models/Communication/types.d.ts +63 -0
- package/models/Communication/types.js +26 -0
- package/models/CompositionGenre/index.d.ts +9 -0
- package/models/CompositionGenre/index.js +16 -0
- package/models/CompositionStyle/index.d.ts +9 -0
- package/models/CompositionStyle/index.js +16 -0
- package/models/Counters/Group/Analytics/types.js +17 -0
- package/models/Customer/index.d.ts +30 -0
- package/models/Customer/index.js +79 -0
- package/models/Customer/types.js +7 -0
- package/models/Evento/Player/types.js +22 -0
- package/models/Evento/Repertory/types.d.ts +8 -0
- package/models/Evento/index.d.ts +94 -0
- package/models/Evento/index.js +256 -0
- package/models/Evento/types.d.ts +177 -0
- package/models/Evento/types.js +55 -0
- package/models/Federation/index.d.ts +28 -0
- package/models/Federation/index.js +85 -0
- package/models/Group/Analytics/types.js +13 -0
- package/models/Group/Payment/supabase.js +46 -0
- package/models/Group/Payment/types.js +38 -0
- package/models/Group/Player/types.js +9 -0
- package/models/Group/Repertory/File/Section/index.d.ts +12 -0
- package/models/Group/Repertory/File/Section/index.js +26 -0
- package/models/Group/Repertory/File/Section/types.d.ts +12 -0
- package/models/Group/Repertory/File/Section/types.js +7 -0
- package/models/Group/Repertory/File/index.d.ts +31 -0
- package/models/Group/Repertory/File/index.js +81 -0
- package/models/Group/Repertory/FilePath/index.d.ts +22 -0
- package/models/Group/Repertory/index.d.ts +64 -0
- package/models/Group/Repertory/index.js +160 -0
- package/models/Group/Repertory/types.d.ts +80 -0
- package/models/Group/Repertory/types.js +14 -0
- package/models/Group/index.d.ts +145 -0
- package/models/Group/index.js +340 -0
- package/models/Group/types.d.ts +272 -0
- package/models/Group/types.js +90 -0
- package/models/Instrument/fromRecord.d.ts +11 -0
- package/models/Instrument/fromRecord.js +33 -0
- package/models/Instrument/index.d.ts +11 -0
- package/models/Instrument/index.js +55 -0
- package/models/Inventory/Item/types.js +15 -0
- package/models/Inventory/types.js +15 -0
- package/models/Notification/types.js +279 -0
- package/models/Offer/types.d.ts +57 -0
- package/models/Offer/types.js +8 -0
- package/models/Partnership/Communication/supabase.js +25 -0
- package/models/Partnership/Group/index.d.ts +29 -0
- package/models/Partnership/Group/index.js +73 -0
- package/models/Partnership/Group/supabase.js +25 -0
- package/models/Partnership/Partner/supabase.js +38 -0
- package/models/Partnership/Partner/types.js +9 -0
- package/models/Partnership/Payment/supabase.js +40 -0
- package/models/Partnership/Payment/types.js +17 -0
- package/models/Partnership/Plan/supabase.js +22 -0
- package/models/Partnership/SepaPaymentGroup/supabase.js +18 -0
- package/models/Partnership/Subscription/supabase.js +23 -0
- package/models/Partnership/index.d.ts +35 -0
- package/models/Partnership/index.js +118 -0
- package/models/Partnership/types.js +8 -0
- package/models/Repertory/types.d.ts +44 -0
- package/models/Repertory/types.js +16 -0
- package/models/User/Group/index.js +45 -0
- package/models/User/index.d.ts +103 -0
- package/models/User/index.js +198 -0
- package/models/User/types.d.ts +142 -0
- package/models/User/types.js +58 -0
- package/models/WebhookEvent/types.js +9 -0
- package/models/supabase/Comm/index.d.ts +24 -0
- package/models/supabase/Comm/index.js +68 -0
- package/models/supabase/Comm/types.d.ts +6 -0
- package/models/supabase/CommHistory/index.d.ts +22 -0
- package/models/supabase/CommHistory/index.js +37 -0
- package/models/supabase/CommHistory/types.d.ts +11 -0
- package/models/supabase/CommHistory/types.js +9 -0
- package/models/supabase/Composer/Composition/Acquisition/index.d.ts +4 -0
- package/models/supabase/Composer/Composition/Acquisition/index.js +9 -0
- package/models/supabase/Composer/Composition/Acquisition/types.d.ts +36 -0
- package/models/supabase/Composer/Composition/Favorite/index.d.ts +4 -0
- package/models/supabase/Composer/Composition/Favorite/index.js +9 -0
- package/models/supabase/Composer/Composition/Favorite/types.d.ts +6 -0
- package/models/supabase/Composer/Composition/View/index.d.ts +4 -0
- package/models/supabase/Composer/Composition/View/index.js +9 -0
- package/models/supabase/Composer/Composition/View/types.d.ts +6 -0
- package/models/supabase/Composer/Composition/index.d.ts +5284 -0
- package/models/supabase/Composer/Composition/index.js +166 -0
- package/models/supabase/Composer/Composition/types.d.ts +96 -0
- package/models/supabase/Composer/Composition/types.js +32 -0
- package/models/supabase/Composer/Notification/index.d.ts +4 -0
- package/models/supabase/Composer/Notification/index.js +9 -0
- package/models/supabase/Composer/Notification/types.d.ts +39 -0
- package/models/supabase/Composer/Notification/types.js +27 -0
- package/models/supabase/Composer/Payout/index.d.ts +4 -0
- package/models/supabase/Composer/Payout/index.js +9 -0
- package/models/supabase/Composer/Payout/status.d.ts +1 -0
- package/models/supabase/Composer/Payout/types.d.ts +5 -0
- package/models/supabase/Composer/PerformanceAttendance/types.d.ts +4 -0
- package/models/supabase/Composer/index.d.ts +78 -0
- package/models/supabase/Composer/index.js +105 -0
- package/models/supabase/Composer/types.d.ts +6 -0
- package/models/supabase/EventHistory/index.d.ts +22 -0
- package/models/supabase/EventHistory/index.js +37 -0
- package/models/supabase/EventHistory/types.d.ts +39 -0
- package/models/supabase/EventHistory/types.js +37 -0
- package/models/supabase/GroupHistory/index.d.ts +21 -0
- package/models/supabase/GroupHistory/index.js +34 -0
- package/models/supabase/GroupHistory/types.d.ts +27 -0
- package/models/supabase/GroupHistory/types.js +25 -0
- package/models/supabase/Model/index.d.ts +10 -0
- package/models/supabase/Model/index.js +21 -0
- package/models/supabase/OfferHistory/index.d.ts +22 -0
- package/models/supabase/OfferHistory/index.js +37 -0
- package/models/supabase/OfferHistory/types.d.ts +18 -0
- package/models/supabase/OfferHistory/types.js +16 -0
- package/models/supabase/Repertoire/index.d.ts +16 -0
- package/models/supabase/Repertoire/index.js +43 -0
- package/models/supabase/Repertoire/types.d.ts +6 -0
- package/models/supabase/RepertoireHistory/index.d.ts +22 -0
- package/models/supabase/RepertoireHistory/index.js +37 -0
- package/models/supabase/RepertoireHistory/types.d.ts +21 -0
- package/models/supabase/RepertoireHistory/types.js +19 -0
- package/models/supabase/User/Group/index.d.ts +11 -0
- package/models/supabase/User/Group/index.js +30 -0
- package/models/supabase/User/Group/types.d.ts +6 -0
- package/models/supabase/User/index.d.ts +13 -0
- package/models/supabase/User/index.js +37 -0
- package/models/supabase/User/types.d.ts +6 -0
- package/package.json +15 -13
- package/types/firestore.d.ts +1746 -0
- package/types/firestore.js +57 -0
- package/types/firestore.ts +1998 -0
- package/types/messagebirdChatWidget.js +2 -0
- package/types/messagebirdChatWidget.ts +20 -0
- package/types/minVersion.js +2 -0
- package/types/minVersion.ts +4 -0
- package/types/payoutRule.js +34 -0
- package/types/payoutRule.ts +132 -0
- package/types/supabase/catalog.d.ts +46 -0
- package/types/supabase/catalog.js +2 -0
- package/types/supabase/catalog.ts +67 -0
- package/types/supabase/composerMetrics.d.ts +27 -0
- package/types/supabase/composerMetrics.js +2 -0
- package/types/supabase/composerMetrics.ts +26 -0
- package/types/supabase/generated.d.ts +4092 -0
- package/types/supabase/generated.js +34 -0
- package/types/supabase/generated.ts +4076 -0
- package/types/supabase/index.d.ts +169 -0
- package/types/supabase/index.js +17 -0
- package/types/supabase/index.ts +307 -0
- package/types/supabase/overwrites/index.d.ts +6 -0
- package/types/supabase/overwrites/index.js +2 -0
- package/types/supabase/overwrites/index.ts +7 -0
- package/types/supabase/overwrites/tables/comm/model.d.ts +4 -0
- package/types/supabase/overwrites/tables/comm/model.js +2 -0
- package/types/supabase/overwrites/tables/comm/model.ts +4 -0
- package/types/supabase/overwrites/tables/comm_history/index.d.ts +7 -0
- package/types/supabase/overwrites/tables/comm_history/index.js +2 -0
- package/types/supabase/overwrites/tables/comm_history/index.ts +9 -0
- package/types/supabase/overwrites/tables/comm_history/model.d.ts +10 -0
- package/types/supabase/overwrites/tables/comm_history/model.js +2 -0
- package/types/supabase/overwrites/tables/comm_history/model.ts +13 -0
- package/types/supabase/overwrites/tables/common/index.js +2 -0
- package/types/supabase/overwrites/tables/common/index.ts +4 -0
- package/types/supabase/overwrites/tables/composer/index.d.ts +9 -0
- package/types/supabase/overwrites/tables/composer/index.js +2 -0
- package/types/supabase/overwrites/tables/composer/index.ts +10 -0
- package/types/supabase/overwrites/tables/composer/model.d.ts +12 -0
- package/types/supabase/overwrites/tables/composer/model.js +2 -0
- package/types/supabase/overwrites/tables/composer/model.ts +15 -0
- package/types/supabase/overwrites/tables/composer/publicModel.d.ts +11 -0
- package/types/supabase/overwrites/tables/composer/publicModel.js +2 -0
- package/types/supabase/overwrites/tables/composer/publicModel.ts +15 -0
- package/types/supabase/overwrites/tables/composerComposition/index.d.ts +18 -0
- package/types/supabase/overwrites/tables/composerComposition/index.js +2 -0
- package/types/supabase/overwrites/tables/composerComposition/index.ts +24 -0
- package/types/supabase/overwrites/tables/composerComposition/model.d.ts +9 -0
- package/types/supabase/overwrites/tables/composerComposition/model.js +2 -0
- package/types/supabase/overwrites/tables/composerComposition/model.ts +26 -0
- package/types/supabase/overwrites/tables/composerComposition/publicModel.d.ts +9 -0
- package/types/supabase/overwrites/tables/composerComposition/publicModel.js +2 -0
- package/types/supabase/overwrites/tables/composerComposition/publicModel.ts +37 -0
- package/types/supabase/overwrites/tables/composerNotification/index.d.ts +19 -0
- package/types/supabase/overwrites/tables/composerNotification/index.js +2 -0
- package/types/supabase/overwrites/tables/composerNotification/index.ts +25 -0
- package/types/supabase/overwrites/tables/composerOwnedTransaction/model.d.ts +2 -0
- package/types/supabase/overwrites/tables/composerOwnedTransaction/model.js +2 -0
- package/types/supabase/overwrites/tables/composerOwnedTransaction/model.ts +3 -0
- package/types/supabase/overwrites/tables/composerPayout/index.d.ts +7 -0
- package/types/supabase/overwrites/tables/composerPayout/index.js +2 -0
- package/types/supabase/overwrites/tables/composerPayout/index.ts +8 -0
- package/types/supabase/overwrites/tables/compositionAcquisition/index.d.ts +4 -0
- package/types/supabase/overwrites/tables/compositionAcquisition/index.js +2 -0
- package/types/supabase/overwrites/tables/compositionAcquisition/index.ts +8 -0
- package/types/supabase/overwrites/tables/compositionAcquisition/model.d.ts +6 -0
- package/types/supabase/overwrites/tables/compositionAcquisition/model.js +2 -0
- package/types/supabase/overwrites/tables/compositionAcquisition/model.ts +11 -0
- package/types/supabase/overwrites/tables/compositionFavorite/index.d.ts +1 -0
- package/types/supabase/overwrites/tables/compositionFavorite/index.js +2 -0
- package/types/supabase/overwrites/tables/compositionFavorite/index.ts +2 -0
- package/types/supabase/overwrites/tables/compositionFavorite/model.d.ts +1 -0
- package/types/supabase/overwrites/tables/compositionFavorite/model.js +2 -0
- package/types/supabase/overwrites/tables/compositionFavorite/model.ts +1 -0
- package/types/supabase/overwrites/tables/compositionView/index.d.ts +1 -0
- package/types/supabase/overwrites/tables/compositionView/index.js +2 -0
- package/types/supabase/overwrites/tables/compositionView/index.ts +2 -0
- package/types/supabase/overwrites/tables/compositionView/model.d.ts +1 -0
- package/types/supabase/overwrites/tables/compositionView/model.js +2 -0
- package/types/supabase/overwrites/tables/compositionView/model.ts +1 -0
- package/types/supabase/overwrites/tables/currencyExchangeRate/index.d.ts +16 -0
- package/types/supabase/overwrites/tables/currencyExchangeRate/index.js +2 -0
- package/types/supabase/overwrites/tables/currencyExchangeRate/index.ts +18 -0
- package/types/supabase/overwrites/tables/event/index.d.ts +23 -0
- package/types/supabase/overwrites/tables/event/index.js +2 -0
- package/types/supabase/overwrites/tables/event/index.ts +28 -0
- package/types/supabase/overwrites/tables/event_history/index.d.ts +7 -0
- package/types/supabase/overwrites/tables/event_history/index.js +2 -0
- package/types/supabase/overwrites/tables/event_history/index.ts +9 -0
- package/types/supabase/overwrites/tables/event_history/model.d.ts +10 -0
- package/types/supabase/overwrites/tables/event_history/model.js +2 -0
- package/types/supabase/overwrites/tables/event_history/model.ts +13 -0
- package/types/supabase/overwrites/tables/group/index.d.ts +38 -0
- package/types/supabase/overwrites/tables/group/index.js +2 -0
- package/types/supabase/overwrites/tables/group/index.ts +45 -0
- package/types/supabase/overwrites/tables/group_history/index.d.ts +7 -0
- package/types/supabase/overwrites/tables/group_history/index.js +2 -0
- package/types/supabase/overwrites/tables/group_history/index.ts +9 -0
- package/types/supabase/overwrites/tables/group_history/model.d.ts +10 -0
- package/types/supabase/overwrites/tables/group_history/model.js +2 -0
- package/types/supabase/overwrites/tables/group_history/model.ts +13 -0
- package/types/supabase/overwrites/tables/offer/index.d.ts +17 -0
- package/types/supabase/overwrites/tables/offer/index.js +2 -0
- package/types/supabase/overwrites/tables/offer/index.ts +20 -0
- package/types/supabase/overwrites/tables/offer_history/index.d.ts +7 -0
- package/types/supabase/overwrites/tables/offer_history/index.js +2 -0
- package/types/supabase/overwrites/tables/offer_history/index.ts +9 -0
- package/types/supabase/overwrites/tables/offer_history/model.d.ts +10 -0
- package/types/supabase/overwrites/tables/offer_history/model.js +2 -0
- package/types/supabase/overwrites/tables/offer_history/model.ts +13 -0
- package/types/supabase/overwrites/tables/repertoire/model.d.ts +7 -0
- package/types/supabase/overwrites/tables/repertoire/model.js +2 -0
- package/types/supabase/overwrites/tables/repertoire/model.ts +7 -0
- package/types/supabase/overwrites/tables/repertoire_history/index.d.ts +7 -0
- package/types/supabase/overwrites/tables/repertoire_history/index.js +2 -0
- package/types/supabase/overwrites/tables/repertoire_history/index.ts +9 -0
- package/types/supabase/overwrites/tables/repertoire_history/model.d.ts +10 -0
- package/types/supabase/overwrites/tables/repertoire_history/model.js +2 -0
- package/types/supabase/overwrites/tables/repertoire_history/model.ts +13 -0
- package/types/supabase/overwrites/tables/user/index.d.ts +11 -0
- package/types/supabase/overwrites/tables/user/index.js +2 -0
- package/types/supabase/overwrites/tables/user/index.ts +13 -0
- package/.firebaserc +0 -7
- package/.husky/pre-commit +0 -4
- package/README.md +0 -70
- package/lib/functions/auth.d.ts +0 -20
- package/lib/functions/customer.d.ts +0 -98
- package/lib/functions/event.js +0 -29
- package/lib/functions/eventPlayer.js +0 -13
- package/lib/functions/eventRepertory.d.ts +0 -40
- package/lib/functions/eventRepertory.js +0 -16
- package/lib/functions/groupRepertory.d.ts +0 -140
- package/lib/functions/index.d.ts +0 -226
- package/lib/functions/index.js +0 -231
- package/lib/functions/misc.d.ts +0 -18
- package/lib/functions/regions.js +0 -240
- package/lib/helpers/appScenes.js +0 -109
- package/lib/helpers/auth.d.ts +0 -28
- package/lib/helpers/auth.js +0 -24
- package/lib/helpers/badges.js +0 -162
- package/lib/helpers/collections.js +0 -49
- package/lib/helpers/communicationTemplate/index.d.ts +0 -32
- package/lib/helpers/communicationTemplate/index.js +0 -47
- package/lib/helpers/currency.d.ts +0 -4
- package/lib/helpers/currency.js +0 -277
- package/lib/helpers/dlinks.js +0 -12
- package/lib/helpers/errors.d.ts +0 -92
- package/lib/helpers/errors.js +0 -84
- package/lib/helpers/instruments/index.d.ts +0 -147
- package/lib/helpers/instruments/index.js +0 -340
- package/lib/helpers/instruments/lists.d.ts +0 -6
- package/lib/helpers/instruments/lists.js +0 -21
- package/lib/helpers/musicStyles/index.d.ts +0 -22
- package/lib/helpers/musicStyles/index.js +0 -148
- package/lib/helpers/notifications/index.js +0 -231
- package/lib/helpers/objects.d.ts +0 -11
- package/lib/helpers/objects.js +0 -39
- package/lib/helpers/paymentForecast.js +0 -58
- package/lib/helpers/payoutRules.js +0 -166
- package/lib/helpers/plans.js +0 -99
- package/lib/helpers/rates.d.ts +0 -13
- package/lib/helpers/slate.d.ts +0 -16
- package/lib/helpers/slate.js +0 -20
- package/lib/helpers/ts-extras/array-includes.js +0 -27
- package/lib/helpers/ts-extras/as-mutable.js +0 -21
- package/lib/helpers/ts-extras/assert-error.js +0 -38
- package/lib/helpers/ts-extras/index.js +0 -33
- package/lib/helpers/ts-extras/is-defined.js +0 -22
- package/lib/helpers/ts-extras/is-empty.js +0 -7
- package/lib/helpers/ts-extras/is-infinite.js +0 -12
- package/lib/helpers/ts-extras/is-present.js +0 -22
- package/lib/helpers/ts-extras/object-entries.d.ts +0 -23
- package/lib/helpers/ts-extras/object-from-entries.d.ts +0 -26
- package/lib/helpers/ts-extras/object-has-own.js +0 -26
- package/lib/helpers/ts-extras/object-keys.d.ts +0 -21
- package/lib/helpers/ts-extras/object-keys.js +0 -24
- package/lib/helpers/ts-extras/set-has.js +0 -28
- package/lib/helpers/types.d.ts +0 -43
- package/lib/helpers/types.js +0 -45
- package/lib/lang/ca.json +0 -470
- package/lib/lang/de.json +0 -470
- package/lib/lang/en.json +0 -470
- package/lib/lang/es.json +0 -470
- package/lib/lang/eu.json +0 -470
- package/lib/lang/fr.json +0 -470
- package/lib/lang/gl.json +0 -470
- package/lib/lang/index.js +0 -202
- package/lib/lang/it.json +0 -470
- package/lib/lang/nl.json +0 -470
- package/lib/lang/pt.json +0 -470
- package/lib/models/Communication/types.d.ts +0 -79
- package/lib/models/Communication/types.js +0 -32
- package/lib/models/Counters/Group/Analytics/types.js +0 -17
- package/lib/models/Customer/index.d.ts +0 -30
- package/lib/models/Customer/index.js +0 -79
- package/lib/models/Customer/types.js +0 -7
- package/lib/models/Evento/Player/types.js +0 -22
- package/lib/models/Evento/Repertory/types.d.ts +0 -7
- package/lib/models/Evento/index.d.ts +0 -93
- package/lib/models/Evento/index.js +0 -255
- package/lib/models/Evento/types.d.ts +0 -208
- package/lib/models/Evento/types.js +0 -87
- package/lib/models/Federation/index.d.ts +0 -28
- package/lib/models/Federation/index.js +0 -85
- package/lib/models/Group/Analytics/types.js +0 -13
- package/lib/models/Group/Payment/supabase.js +0 -46
- package/lib/models/Group/Payment/types.js +0 -38
- package/lib/models/Group/Player/types.js +0 -9
- package/lib/models/Group/Repertory/File/Section/index.d.ts +0 -12
- package/lib/models/Group/Repertory/File/Section/index.js +0 -25
- package/lib/models/Group/Repertory/File/Section/types.d.ts +0 -5
- package/lib/models/Group/Repertory/File/Section/types.js +0 -7
- package/lib/models/Group/Repertory/File/index.d.ts +0 -29
- package/lib/models/Group/Repertory/File/index.js +0 -81
- package/lib/models/Group/Repertory/FilePath/index.d.ts +0 -23
- package/lib/models/Group/Repertory/index.d.ts +0 -56
- package/lib/models/Group/Repertory/index.js +0 -151
- package/lib/models/Group/Repertory/types.d.ts +0 -91
- package/lib/models/Group/Repertory/types.js +0 -24
- package/lib/models/Group/index.d.ts +0 -140
- package/lib/models/Group/index.js +0 -326
- package/lib/models/Group/types.d.ts +0 -291
- package/lib/models/Group/types.js +0 -109
- package/lib/models/Instrument/index.d.ts +0 -9
- package/lib/models/Instrument/index.js +0 -18
- package/lib/models/Inventory/Item/types.js +0 -15
- package/lib/models/Inventory/types.js +0 -15
- package/lib/models/Notification/types.js +0 -279
- package/lib/models/Offer/types.d.ts +0 -69
- package/lib/models/Offer/types.js +0 -21
- package/lib/models/Partnership/Communication/supabase.js +0 -25
- package/lib/models/Partnership/Group/index.d.ts +0 -28
- package/lib/models/Partnership/Group/index.js +0 -61
- package/lib/models/Partnership/Group/supabase.js +0 -25
- package/lib/models/Partnership/Partner/supabase.js +0 -38
- package/lib/models/Partnership/Partner/types.js +0 -9
- package/lib/models/Partnership/Payment/supabase.js +0 -40
- package/lib/models/Partnership/Payment/types.js +0 -17
- package/lib/models/Partnership/Plan/supabase.js +0 -22
- package/lib/models/Partnership/SepaPaymentGroup/supabase.js +0 -18
- package/lib/models/Partnership/Subscription/supabase.js +0 -23
- package/lib/models/Partnership/index.d.ts +0 -34
- package/lib/models/Partnership/index.js +0 -114
- package/lib/models/Partnership/types.js +0 -8
- package/lib/models/Repertory/types.d.ts +0 -32
- package/lib/models/Repertory/types.js +0 -16
- package/lib/models/User/Group/index.js +0 -46
- package/lib/models/User/index.d.ts +0 -103
- package/lib/models/User/index.js +0 -198
- package/lib/models/User/types.d.ts +0 -141
- package/lib/models/User/types.js +0 -58
- package/lib/models/WebhookEvent/types.js +0 -9
- package/lib/types/firestore.d.ts +0 -1747
- package/lib/types/firestore.js +0 -57
- package/lib/types/payoutRule.js +0 -34
- package/lib/types/supabase/generated.d.ts +0 -1629
- package/lib/types/supabase/generated.js +0 -25
- package/lib/types/supabase/index.d.ts +0 -29
- package/lib/types/supabase/overwrites/comm.d.ts +0 -18
- package/lib/types/supabase/overwrites/comm_history.d.ts +0 -10
- package/lib/types/supabase/overwrites/event.d.ts +0 -23
- package/lib/types/supabase/overwrites/event_history.d.ts +0 -10
- package/lib/types/supabase/overwrites/group.d.ts +0 -41
- package/lib/types/supabase/overwrites/group_history.d.ts +0 -9
- package/lib/types/supabase/overwrites/index.d.ts +0 -6
- package/lib/types/supabase/overwrites/offer.d.ts +0 -13
- package/lib/types/supabase/overwrites/offer_history.d.ts +0 -10
- package/lib/types/supabase/overwrites/repertoire.d.ts +0 -12
- package/lib/types/supabase/overwrites/repertoire_history.d.ts +0 -10
- package/scripts/setHusky.js +0 -11
- package/supabase/.dev.env +0 -1
- package/supabase/.prod.env +0 -1
- package/supabase/.sample.env +0 -2
- package/supabase/README.md +0 -126
- package/supabase/config.toml +0 -68
- package/supabase/migrations/20231117044943_remote_schema.sql +0 -228
- package/supabase/migrations/20231117124947_event_selection_mode_closed_at_nullable.sql +0 -1
- package/supabase/migrations/20231121002132_remote_schema.sql +0 -31
- package/supabase/migrations/20231121004031_references_nullable.sql +0 -3
- package/supabase/migrations/20231121014339_updated_at_trigger.sql +0 -13
- package/supabase/migrations/20231122111241_remote_schema.sql +0 -25
- package/supabase/migrations/20231124151424_snake_case_to_camel_case.sql +0 -105
- package/supabase/migrations/20231129133721_add_columns_for_sites.sql +0 -11
- package/supabase/migrations/20231129142806_promoter_can_be_null.sql +0 -3
- package/supabase/migrations/20231130125327_group_location_latlon.sql +0 -3
- package/supabase/migrations/20231130150154_error_solvings.sql +0 -9
- package/supabase/migrations/20240405115914_new_columns.sql +0 -9
- package/supabase/migrations/20240405121956_init_offer.sql +0 -81
- package/supabase/migrations/20240503032440_add_columns_to_offer.sql +0 -11
- package/supabase/migrations/20240503101641_add_column_createdOn.sql +0 -19
- package/supabase/migrations/20240506035104_add_groupInfo_to_offer.sql +0 -10
- package/supabase/migrations/20240510110328_add_relationships_to_offer.sql +0 -9
- package/supabase/migrations/20240514100316_offers_public.sql +0 -9
- package/supabase/migrations/20260506013030_add_user_mirror.sql +0 -50
- package/supabase/migrations/20260506013031_add_user_group_mirror.sql +0 -31
- package/supabase/migrations/20260529000000_init_group_payment.sql +0 -79
- package/supabase/migrations/20260529120000_group_payment_realtime.sql +0 -19
- package/supabase/migrations/20260529130000_group_payment_anon_read.sql +0 -16
- package/supabase/migrations/20260601000000_group_payment_concept_norm.sql +0 -20
- package/supabase/migrations/20260605000000_init_partnership_domain.sql +0 -333
- package/supabase/migrations/20260605000100_partnership_recurring_rpc.sql +0 -62
- package/supabase/migrations/20260606000000_partnership_payer.sql +0 -83
- package/supabase/migrations/20260607000000_partnership_partner_number_not_unique.sql +0 -10
- package/supabase/migrations/20260608000000_partnership_payment_method_bizum.sql +0 -2
- package/supabase/migrations/20260609000000_partnership_payment_sepa_end_to_end.sql +0 -13
- package/supabase/migrations/20260617000000_partnership_portal_query_indexes.sql +0 -23
- package/supabase/migrations/20260618000000_partnership_communication_attachments.sql +0 -5
- package/supabase/migrations/20260701000000_partnership_recurring_rpc_drop_ambiguous.sql +0 -29
- package/supabase/migrations/20260713191700_add_personal_calendar_feed.sql +0 -506
- package/supabase/migrations/20260714193734_add_pending_calendar_invitations.sql +0 -403
- package/supabase/migrations/20260714205623_add_event_datetime_end_backfill.sql +0 -64
- package/supabase/migrations/20260729161126_remove_calendar_event_history_dependency.sql +0 -19
- package/supabase/migrations/20260729161202_reconcile_production_remote_schema.sql +0 -135
- package/supabase/migrations/20260804120000_add_calendar_feed_token_cipher.sql +0 -9
- package/supabase/migrations/20260805120000_replace_usergroup_with_group_playerids.sql +0 -363
- package/supabase/seed.sql +0 -2973
- /package/{lib/functions → functions}/auth.js +0 -0
- /package/{lib/functions → functions}/calendarFeed.d.ts +0 -0
- /package/{lib/functions → functions}/calendarFeed.js +0 -0
- /package/{lib/functions → functions}/communication.d.ts +0 -0
- /package/{lib/functions → functions}/communication.js +0 -0
- /package/{lib/functions → functions}/communicationComment.d.ts +0 -0
- /package/{lib/functions → functions}/communicationComment.js +0 -0
- /package/{lib/functions/customer.js → functions/composer.js} +0 -0
- /package/{lib/functions/customerGroup.js → functions/composerComposition.js} +0 -0
- /package/{lib/functions/eventoPayout.js → functions/composerNotification.js} +0 -0
- /package/{lib/functions/federation.js → functions/composerPayout.js} +0 -0
- /package/{lib/functions/federationPartnership.js → functions/customer.js} +0 -0
- /package/{lib/functions → functions}/customerGroup.d.ts +0 -0
- /package/{lib/functions/group.js → functions/customerGroup.js} +0 -0
- /package/{lib/functions → functions}/event.d.ts +0 -0
- /package/{lib/functions → functions}/eventPlayer.d.ts +0 -0
- /package/{lib/functions → functions}/eventoPayout.d.ts +0 -0
- /package/{lib/functions/groupEventStage.js → functions/eventoPayout.js} +0 -0
- /package/{lib/functions → functions}/federation.d.ts +0 -0
- /package/{lib/functions/groupModule.js → functions/federation.js} +0 -0
- /package/{lib/functions → functions}/federationPartnership.d.ts +0 -0
- /package/{lib/functions/groupPayment.js → functions/federationPartnership.js} +0 -0
- /package/{lib/functions → functions}/group.d.ts +0 -0
- /package/{lib/types/supabase/overwrites → functions}/group.js +0 -0
- /package/{lib/functions → functions}/groupEventStage.d.ts +0 -0
- /package/{lib/functions/groupPayoutRule.js → functions/groupEventStage.js} +0 -0
- /package/{lib/functions → functions}/groupModule.d.ts +0 -0
- /package/{lib/functions/groupPlayer.js → functions/groupModule.js} +0 -0
- /package/{lib/functions → functions}/groupPayment.d.ts +0 -0
- /package/{lib/functions/groupRepertory.js → functions/groupPayment.js} +0 -0
- /package/{lib/functions → functions}/groupPayoutRule.d.ts +0 -0
- /package/{lib/functions/inventory.js → functions/groupPayoutRule.js} +0 -0
- /package/{lib/functions → functions}/groupPlayer.d.ts +0 -0
- /package/{lib/functions/inventoryItem.js → functions/groupPlayer.js} +0 -0
- /package/{lib/functions/jwt.js → functions/groupRepertory.js} +0 -0
- /package/{lib/functions → functions}/inventory.d.ts +0 -0
- /package/{lib/functions/misc.js → functions/inventory.js} +0 -0
- /package/{lib/functions → functions}/inventoryItem.d.ts +0 -0
- /package/{lib/functions/notification.js → functions/inventoryItem.js} +0 -0
- /package/{lib/functions → functions}/jwt.d.ts +0 -0
- /package/{lib/functions/offer.js → functions/jwt.js} +0 -0
- /package/{lib/functions/offerApplicant.js → functions/misc.js} +0 -0
- /package/{lib/functions → functions}/notification.d.ts +0 -0
- /package/{lib/functions/partnership.js → functions/notification.js} +0 -0
- /package/{lib/functions → functions}/offer.d.ts +0 -0
- /package/{lib/types/supabase/overwrites → functions}/offer.js +0 -0
- /package/{lib/functions → functions}/offerApplicant.d.ts +0 -0
- /package/{lib/functions/partnershipCommunication.js → functions/offerApplicant.js} +0 -0
- /package/{lib/functions → functions}/partnership.d.ts +0 -0
- /package/{lib/functions/partnershipGroup.js → functions/partnership.js} +0 -0
- /package/{lib/functions → functions}/partnershipCommunication.d.ts +0 -0
- /package/{lib/functions/partnershipPartner.js → functions/partnershipCommunication.js} +0 -0
- /package/{lib/functions → functions}/partnershipGroup.d.ts +0 -0
- /package/{lib/functions/partnershipPayment.js → functions/partnershipGroup.js} +0 -0
- /package/{lib/functions → functions}/partnershipPartner.d.ts +0 -0
- /package/{lib/functions/partnershipPlan.js → functions/partnershipPartner.js} +0 -0
- /package/{lib/functions → functions}/partnershipPayment.d.ts +0 -0
- /package/{lib/functions/partnershipSepaPaymentGroup.js → functions/partnershipPayment.js} +0 -0
- /package/{lib/functions → functions}/partnershipPlan.d.ts +0 -0
- /package/{lib/functions/partnershipSubscription.js → functions/partnershipPlan.js} +0 -0
- /package/{lib/functions → functions}/partnershipSepaPaymentGroup.d.ts +0 -0
- /package/{lib/functions/subscription.js → functions/partnershipSepaPaymentGroup.js} +0 -0
- /package/{lib/functions → functions}/partnershipSubscription.d.ts +0 -0
- /package/{lib/functions/user.js → functions/partnershipSubscription.js} +0 -0
- /package/{lib/functions → functions}/regions.d.ts +0 -0
- /package/{lib/functions → functions}/subscription.d.ts +0 -0
- /package/{lib/functions/userNotification.js → functions/subscription.js} +0 -0
- /package/{lib/functions → functions}/user.d.ts +0 -0
- /package/{lib/models/Communication/Comment/types.js → functions/user.js} +0 -0
- /package/{lib/functions → functions}/userNotification.d.ts +0 -0
- /package/{lib/models/Counters/Group/types.js → functions/userNotification.js} +0 -0
- /package/{lib/helpers → helpers}/appScenes.d.ts +0 -0
- /package/{lib/helpers → helpers}/audios.d.ts +0 -0
- /package/{lib/helpers → helpers}/audios.js +0 -0
- /package/{lib/helpers → helpers}/badges.d.ts +0 -0
- /package/{lib/helpers → helpers}/collections.d.ts +0 -0
- /package/{lib/helpers → helpers}/communicationTemplate/newGroup.d.ts +0 -0
- /package/{lib/helpers → helpers}/communicationTemplate/newGroup.js +0 -0
- /package/{lib/helpers → helpers}/communicationTemplate/newMember.d.ts +0 -0
- /package/{lib/helpers → helpers}/communicationTemplate/newMember.js +0 -0
- /package/{lib/helpers → helpers}/countries.d.ts +0 -0
- /package/{lib/helpers → helpers}/countries.js +0 -0
- /package/{lib/helpers → helpers}/dlinks.d.ts +0 -0
- /package/{lib/helpers → helpers}/fileSections/index.d.ts +0 -0
- /package/{lib/helpers → helpers}/fileSections/index.js +0 -0
- /package/{lib/helpers → helpers}/fileSections/orders.d.ts +0 -0
- /package/{lib/helpers → helpers}/fileSections/orders.js +0 -0
- /package/{lib/helpers → helpers}/glissandooAdmin.d.ts +0 -0
- /package/{lib/helpers → helpers}/glissandooAdmin.js +0 -0
- /package/{lib/helpers → helpers}/instruments/orders.d.ts +0 -0
- /package/{lib/helpers → helpers}/instruments/orders.js +0 -0
- /package/{lib/helpers → helpers}/musicStyles/orders.d.ts +0 -0
- /package/{lib/helpers → helpers}/musicStyles/orders.js +0 -0
- /package/{lib/helpers → helpers}/notifications/index.d.ts +0 -0
- /package/{lib/helpers → helpers}/notifications/placeholders.d.ts +0 -0
- /package/{lib/helpers → helpers}/notifications/placeholders.js +0 -0
- /package/{lib/helpers → helpers}/paymentForecast.d.ts +0 -0
- /package/{lib/helpers → helpers}/payoutRules.d.ts +0 -0
- /package/{lib/helpers → helpers}/plans.d.ts +0 -0
- /package/{lib/helpers → helpers}/rates.js +0 -0
- /package/{lib/helpers → helpers}/reasons.d.ts +0 -0
- /package/{lib/helpers → helpers}/reasons.js +0 -0
- /package/{lib/helpers → helpers}/styles.d.ts +0 -0
- /package/{lib/helpers → helpers}/styles.js +0 -0
- /package/{lib/helpers → helpers}/ts-extras/array-includes.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/as-mutable.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/assert-error.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/index.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-defined.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-empty.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-finite.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-finite.js +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-infinite.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-integer.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-integer.js +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-present.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-safe-integer.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/is-safe-integer.js +0 -0
- /package/{lib/helpers → helpers}/ts-extras/object-entries.js +0 -0
- /package/{lib/helpers → helpers}/ts-extras/object-from-entries.js +0 -0
- /package/{lib/helpers → helpers}/ts-extras/object-has-own.d.ts +0 -0
- /package/{lib/helpers → helpers}/ts-extras/set-has.d.ts +0 -0
- /package/{lib/helpers → helpers}/utils.d.ts +0 -0
- /package/{lib/helpers → helpers}/utils.js +0 -0
- /package/{lib/index.d.ts → index.d.ts} +0 -0
- /package/{lib/index.js → index.js} +0 -0
- /package/{lib/lang → lang}/index.d.ts +0 -0
- /package/{lib/models → models}/Communication/Comment/index.d.ts +0 -0
- /package/{lib/models → models}/Communication/Comment/index.js +0 -0
- /package/{lib/models → models}/Communication/Comment/types.d.ts +0 -0
- /package/{lib/models/Counters → models/Communication/Comment}/types.js +0 -0
- /package/{lib/models → models}/Communication/index.d.ts +0 -0
- /package/{lib/models → models}/Communication/index.js +0 -0
- /package/{lib/models → models}/Counters/Group/Analytics/index.d.ts +0 -0
- /package/{lib/models → models}/Counters/Group/Analytics/index.js +0 -0
- /package/{lib/models → models}/Counters/Group/Analytics/types.d.ts +0 -0
- /package/{lib/models → models}/Counters/Group/index.d.ts +0 -0
- /package/{lib/models → models}/Counters/Group/index.js +0 -0
- /package/{lib/models → models}/Counters/Group/types.d.ts +0 -0
- /package/{lib/models/Customer → models/Counters}/Group/types.js +0 -0
- /package/{lib/models → models}/Counters/event.d.ts +0 -0
- /package/{lib/models → models}/Counters/event.js +0 -0
- /package/{lib/models → models}/Counters/index.d.ts +0 -0
- /package/{lib/models → models}/Counters/index.js +0 -0
- /package/{lib/models → models}/Counters/types.d.ts +0 -0
- /package/{lib/models/Evento/Repertory → models/Counters}/types.js +0 -0
- /package/{lib/models → models}/Customer/Group/index.d.ts +0 -0
- /package/{lib/models → models}/Customer/Group/index.js +0 -0
- /package/{lib/models → models}/Customer/Group/types.d.ts +0 -0
- /package/{lib/models/Federation/Partnership → models/Customer/Group}/types.js +0 -0
- /package/{lib/models → models}/Customer/basic.d.ts +0 -0
- /package/{lib/models → models}/Customer/basic.js +0 -0
- /package/{lib/models → models}/Customer/types.d.ts +0 -0
- /package/{lib/models → models}/Evento/Player/basic.d.ts +0 -0
- /package/{lib/models → models}/Evento/Player/basic.js +0 -0
- /package/{lib/models → models}/Evento/Player/index.d.ts +0 -0
- /package/{lib/models → models}/Evento/Player/index.js +0 -0
- /package/{lib/models → models}/Evento/Player/types.d.ts +0 -0
- /package/{lib/models → models}/Evento/Repertory/index.d.ts +0 -0
- /package/{lib/models → models}/Evento/Repertory/index.js +0 -0
- /package/{lib/models/Federation → models/Evento/Repertory}/types.js +0 -0
- /package/{lib/models → models}/Evento/basic.d.ts +0 -0
- /package/{lib/models → models}/Evento/basic.js +0 -0
- /package/{lib/models → models}/Evento/promoter.d.ts +0 -0
- /package/{lib/models → models}/Evento/promoter.js +0 -0
- /package/{lib/models → models}/Evento/tiny.d.ts +0 -0
- /package/{lib/models → models}/Evento/tiny.js +0 -0
- /package/{lib/models → models}/Federation/Partnership/index.d.ts +0 -0
- /package/{lib/models → models}/Federation/Partnership/index.js +0 -0
- /package/{lib/models → models}/Federation/Partnership/types.d.ts +0 -0
- /package/{lib/models/Group/Event → models/Federation/Partnership}/types.js +0 -0
- /package/{lib/models → models}/Federation/types.d.ts +0 -0
- /package/{lib/models/Group/Player/Event → models/Federation}/types.js +0 -0
- /package/{lib/models → models}/Group/Analytics/index.d.ts +0 -0
- /package/{lib/models → models}/Group/Analytics/index.js +0 -0
- /package/{lib/models → models}/Group/Analytics/types.d.ts +0 -0
- /package/{lib/models → models}/Group/Event/index.d.ts +0 -0
- /package/{lib/models → models}/Group/Event/index.js +0 -0
- /package/{lib/models → models}/Group/Event/types.d.ts +0 -0
- /package/{lib/models/Group/Player/Log → models/Group/Event}/types.js +0 -0
- /package/{lib/models → models}/Group/Payment/index.d.ts +0 -0
- /package/{lib/models → models}/Group/Payment/index.js +0 -0
- /package/{lib/models → models}/Group/Payment/supabase.d.ts +0 -0
- /package/{lib/models → models}/Group/Payment/types.d.ts +0 -0
- /package/{lib/models → models}/Group/Player/Event/index.d.ts +0 -0
- /package/{lib/models → models}/Group/Player/Event/index.js +0 -0
- /package/{lib/models → models}/Group/Player/Event/types.d.ts +0 -0
- /package/{lib/models/Group/Repertory/File → models/Group/Player/Event}/types.js +0 -0
- /package/{lib/models → models}/Group/Player/Log/index.d.ts +0 -0
- /package/{lib/models → models}/Group/Player/Log/index.js +0 -0
- /package/{lib/models → models}/Group/Player/Log/types.d.ts +0 -0
- /package/{lib/models/Group/StageTemplate → models/Group/Player/Log}/types.js +0 -0
- /package/{lib/models → models}/Group/Player/index.d.ts +0 -0
- /package/{lib/models → models}/Group/Player/index.js +0 -0
- /package/{lib/models → models}/Group/Player/types.d.ts +0 -0
- /package/{lib/models → models}/Group/Repertory/File/types.d.ts +0 -0
- /package/{lib/models/Metrics → models/Group/Repertory/File}/types.js +0 -0
- /package/{lib/models → models}/Group/Repertory/FilePath/index.js +0 -0
- /package/{lib/models → models}/Group/StageTemplate/index.d.ts +0 -0
- /package/{lib/models → models}/Group/StageTemplate/index.js +0 -0
- /package/{lib/models → models}/Group/StageTemplate/types.d.ts +0 -0
- /package/{lib/models/Offer/Applicant → models/Group/StageTemplate}/types.js +0 -0
- /package/{lib/models → models}/Group/basic.d.ts +0 -0
- /package/{lib/models → models}/Group/basic.js +0 -0
- /package/{lib/models → models}/Instrument/group.d.ts +0 -0
- /package/{lib/models → models}/Instrument/group.js +0 -0
- /package/{lib/models → models}/Inventory/Item/index.d.ts +0 -0
- /package/{lib/models → models}/Inventory/Item/index.js +0 -0
- /package/{lib/models → models}/Inventory/Item/types.d.ts +0 -0
- /package/{lib/models → models}/Inventory/index.d.ts +0 -0
- /package/{lib/models → models}/Inventory/index.js +0 -0
- /package/{lib/models → models}/Inventory/types.d.ts +0 -0
- /package/{lib/models → models}/Metrics/index.d.ts +0 -0
- /package/{lib/models → models}/Metrics/index.js +0 -0
- /package/{lib/models → models}/Metrics/types.d.ts +0 -0
- /package/{lib/models/Partnership/Communication → models/Metrics}/types.js +0 -0
- /package/{lib/models → models}/Model/index.d.ts +0 -0
- /package/{lib/models → models}/Model/index.js +0 -0
- /package/{lib/models → models}/Model/lang.d.ts +0 -0
- /package/{lib/models → models}/Model/lang.js +0 -0
- /package/{lib/models → models}/MusicStyle/index.d.ts +0 -0
- /package/{lib/models → models}/MusicStyle/index.js +0 -0
- /package/{lib/models → models}/Notification/index.d.ts +0 -0
- /package/{lib/models → models}/Notification/index.js +0 -0
- /package/{lib/models → models}/Notification/types.d.ts +0 -0
- /package/{lib/models → models}/Offer/Applicant/index.d.ts +0 -0
- /package/{lib/models → models}/Offer/Applicant/index.js +0 -0
- /package/{lib/models → models}/Offer/Applicant/types.d.ts +0 -0
- /package/{lib/models/Partnership/Group → models/Offer/Applicant}/types.js +0 -0
- /package/{lib/models → models}/Offer/index.d.ts +0 -0
- /package/{lib/models → models}/Offer/index.js +0 -0
- /package/{lib/models → models}/Partnership/Communication/index.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Communication/index.js +0 -0
- /package/{lib/models → models}/Partnership/Communication/supabase.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Communication/types.d.ts +0 -0
- /package/{lib/models/Partnership/Plan → models/Partnership/Communication}/types.js +0 -0
- /package/{lib/models → models}/Partnership/Group/supabase.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Group/types.d.ts +0 -0
- /package/{lib/models/Partnership/SepaPaymentGroup → models/Partnership/Group}/types.js +0 -0
- /package/{lib/models → models}/Partnership/Partner/index.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Partner/index.js +0 -0
- /package/{lib/models → models}/Partnership/Partner/supabase.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Partner/types.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Payment/index.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Payment/index.js +0 -0
- /package/{lib/models → models}/Partnership/Payment/supabase.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Payment/types.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Plan/index.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Plan/index.js +0 -0
- /package/{lib/models → models}/Partnership/Plan/supabase.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Plan/types.d.ts +0 -0
- /package/{lib/models/Partnership/Subscription → models/Partnership/Plan}/types.js +0 -0
- /package/{lib/models → models}/Partnership/SepaPaymentGroup/index.d.ts +0 -0
- /package/{lib/models → models}/Partnership/SepaPaymentGroup/index.js +0 -0
- /package/{lib/models → models}/Partnership/SepaPaymentGroup/supabase.d.ts +0 -0
- /package/{lib/models → models}/Partnership/SepaPaymentGroup/types.d.ts +0 -0
- /package/{lib/models/Player → models/Partnership/SepaPaymentGroup}/types.js +0 -0
- /package/{lib/models → models}/Partnership/Subscription/index.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Subscription/index.js +0 -0
- /package/{lib/models → models}/Partnership/Subscription/supabase.d.ts +0 -0
- /package/{lib/models → models}/Partnership/Subscription/types.d.ts +0 -0
- /package/{lib/models/User/Group → models/Partnership/Subscription}/types.js +0 -0
- /package/{lib/models → models}/Partnership/basic.d.ts +0 -0
- /package/{lib/models → models}/Partnership/basic.js +0 -0
- /package/{lib/models → models}/Partnership/types.d.ts +0 -0
- /package/{lib/models → models}/Player/basic.d.ts +0 -0
- /package/{lib/models → models}/Player/basic.js +0 -0
- /package/{lib/models → models}/Player/types.d.ts +0 -0
- /package/{lib/models/User/Notification → models/Player}/types.js +0 -0
- /package/{lib/models → models}/Repertory/basic.d.ts +0 -0
- /package/{lib/models → models}/Repertory/basic.js +0 -0
- /package/{lib/models → models}/User/Group/index.d.ts +0 -0
- /package/{lib/models → models}/User/Group/types.d.ts +0 -0
- /package/{lib/models/User/OfferAlarm → models/User/Group}/types.js +0 -0
- /package/{lib/models → models}/User/Notification/index.d.ts +0 -0
- /package/{lib/models → models}/User/Notification/index.js +0 -0
- /package/{lib/models → models}/User/Notification/types.d.ts +0 -0
- /package/{lib/models/User/Partnership → models/User/Notification}/types.js +0 -0
- /package/{lib/models → models}/User/OfferAlarm/index.d.ts +0 -0
- /package/{lib/models → models}/User/OfferAlarm/index.js +0 -0
- /package/{lib/models → models}/User/OfferAlarm/types.d.ts +0 -0
- /package/{lib/types/messagebirdChatWidget.js → models/User/OfferAlarm/types.js} +0 -0
- /package/{lib/models → models}/User/Partnership/index.d.ts +0 -0
- /package/{lib/models → models}/User/Partnership/index.js +0 -0
- /package/{lib/models → models}/User/Partnership/types.d.ts +0 -0
- /package/{lib/types/minVersion.js → models/User/Partnership/types.js} +0 -0
- /package/{lib/models → models}/User/basic.d.ts +0 -0
- /package/{lib/models → models}/User/basic.js +0 -0
- /package/{lib/models → models}/User/extended.d.ts +0 -0
- /package/{lib/models → models}/User/extended.js +0 -0
- /package/{lib/models → models}/WebhookEvent/index.d.ts +0 -0
- /package/{lib/models → models}/WebhookEvent/index.js +0 -0
- /package/{lib/models → models}/WebhookEvent/types.d.ts +0 -0
- /package/{lib/types/supabase/index.js → models/supabase/Comm/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/comm.js → models/supabase/Composer/Composition/Acquisition/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/comm_history.js → models/supabase/Composer/Composition/Favorite/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/event.js → models/supabase/Composer/Composition/View/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/event_history.js → models/supabase/Composer/Payout/status.js} +0 -0
- /package/{lib/types/supabase/overwrites/group_history.js → models/supabase/Composer/Payout/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/index.js → models/supabase/Composer/PerformanceAttendance/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/offer_history.js → models/supabase/Composer/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/repertoire.js → models/supabase/Repertoire/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/repertoire_history.js → models/supabase/User/Group/types.js} +0 -0
- /package/{lib/types/supabase/overwrites/utils.js → models/supabase/User/types.js} +0 -0
- /package/{lib/types → types}/messagebirdChatWidget.d.ts +0 -0
- /package/{lib/types → types}/minVersion.d.ts +0 -0
- /package/{lib/types → types}/payoutRule.d.ts +0 -0
- /package/{lib/types/supabase/overwrites/utils.d.ts → types/supabase/overwrites/tables/common/index.d.ts} +0 -0
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const date_fns_1 = require("date-fns");
|
|
7
|
+
const lodash_1 = require("lodash");
|
|
8
|
+
const collections_1 = require("../../helpers/collections");
|
|
9
|
+
const currency_1 = require("../../helpers/currency");
|
|
10
|
+
const externalUrls_1 = require("../../helpers/externalUrls");
|
|
11
|
+
const glissandooAdmin_1 = require("../../helpers/glissandooAdmin");
|
|
12
|
+
const orders_1 = require("../../helpers/instruments/orders");
|
|
13
|
+
const objects_1 = require("../../helpers/objects");
|
|
14
|
+
const plans_1 = require("../../helpers/plans");
|
|
15
|
+
const lang_1 = require("../../lang");
|
|
16
|
+
const basic_1 = __importDefault(require("./basic"));
|
|
17
|
+
const types_1 = require("./types");
|
|
18
|
+
class Group extends basic_1.default {
|
|
19
|
+
constructor(doc, lang = lang_1.defaultLocale) {
|
|
20
|
+
super(doc, lang);
|
|
21
|
+
this.getPlayer = (userId) => {
|
|
22
|
+
return userId in this.players ? this.players[userId] : null;
|
|
23
|
+
};
|
|
24
|
+
this.isAdmin = (userId) => {
|
|
25
|
+
return this.admins.includes(userId);
|
|
26
|
+
};
|
|
27
|
+
this.isPlayer = (userId) => {
|
|
28
|
+
return this.playerIds.includes(userId);
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
get owner() {
|
|
32
|
+
return this.data.owner;
|
|
33
|
+
}
|
|
34
|
+
get playerIds() {
|
|
35
|
+
return this.data.playerIds || [];
|
|
36
|
+
}
|
|
37
|
+
get players() {
|
|
38
|
+
return this.data.players || {};
|
|
39
|
+
}
|
|
40
|
+
get playersCount() {
|
|
41
|
+
return this.playerIds.length;
|
|
42
|
+
}
|
|
43
|
+
get description() {
|
|
44
|
+
return this.data.description || null;
|
|
45
|
+
}
|
|
46
|
+
get addresses() {
|
|
47
|
+
return this.data.addresses || [];
|
|
48
|
+
}
|
|
49
|
+
get addressDefault() {
|
|
50
|
+
return this.addresses.find((a) => a.default === true);
|
|
51
|
+
}
|
|
52
|
+
get activeInvitationLink() {
|
|
53
|
+
return this.data.activeInvitationLink || false;
|
|
54
|
+
}
|
|
55
|
+
get invitationLink() {
|
|
56
|
+
const link = `https://glissandoo.com/joingroup/${this.id}`;
|
|
57
|
+
if (lang_1.LanguagesTypes.ES === this.lang) {
|
|
58
|
+
return link;
|
|
59
|
+
}
|
|
60
|
+
return `${link}?lang=${this.lang}`;
|
|
61
|
+
}
|
|
62
|
+
getInvitationLink(landingHost) {
|
|
63
|
+
const link = (0, externalUrls_1.buildGroupInvitationUrl)(landingHost, this.id);
|
|
64
|
+
return lang_1.LanguagesTypes.ES === this.lang ? link : `${link}?lang=${this.lang}`;
|
|
65
|
+
}
|
|
66
|
+
get invitationEmails() {
|
|
67
|
+
return this.data.invitationEmails || [];
|
|
68
|
+
}
|
|
69
|
+
get shortDynamicLink() {
|
|
70
|
+
return `https://app.glissandoo.com/group/${this.username}`;
|
|
71
|
+
}
|
|
72
|
+
getShortDynamicLink(appHost) {
|
|
73
|
+
return (0, externalUrls_1.buildGroupShortDynamicUrl)(appHost, this.username);
|
|
74
|
+
}
|
|
75
|
+
get admins() {
|
|
76
|
+
return this.data.administrators || [];
|
|
77
|
+
}
|
|
78
|
+
get adminPermissions() {
|
|
79
|
+
return this.data.adminPermissions || {};
|
|
80
|
+
}
|
|
81
|
+
permissionsByAdmin(userId) {
|
|
82
|
+
return this.adminPermissions[userId] || [];
|
|
83
|
+
}
|
|
84
|
+
adminsByPermissions(permission) {
|
|
85
|
+
return this.admins.filter((adminId) => {
|
|
86
|
+
const permissions = this.permissionsByAdmin(adminId);
|
|
87
|
+
return permissions.includes(permission);
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
get createdAt() {
|
|
91
|
+
return this.data.createdAt;
|
|
92
|
+
}
|
|
93
|
+
get deletedAt() {
|
|
94
|
+
return this.data.deletedAt || null;
|
|
95
|
+
}
|
|
96
|
+
get deletedBy() {
|
|
97
|
+
return this.data.deletedBy || null;
|
|
98
|
+
}
|
|
99
|
+
get repertoryCount() {
|
|
100
|
+
return this.data.repertoryCount || 0;
|
|
101
|
+
}
|
|
102
|
+
get eventCount() {
|
|
103
|
+
return this.data.eventCount || {};
|
|
104
|
+
}
|
|
105
|
+
get performanceCount() {
|
|
106
|
+
return this.eventCount.performance || 0;
|
|
107
|
+
}
|
|
108
|
+
get practiceCount() {
|
|
109
|
+
return this.eventCount.practice || 0;
|
|
110
|
+
}
|
|
111
|
+
get eventTotalCount() {
|
|
112
|
+
return this.performanceCount + this.practiceCount;
|
|
113
|
+
}
|
|
114
|
+
get communicationCount() {
|
|
115
|
+
return this.data.communicationCount || 0;
|
|
116
|
+
}
|
|
117
|
+
get country() {
|
|
118
|
+
return this.data.country || 'ES';
|
|
119
|
+
}
|
|
120
|
+
get currency() {
|
|
121
|
+
return this.data.currency || currency_1.DEFAULT_CURRENCY;
|
|
122
|
+
}
|
|
123
|
+
get currencySymbol() {
|
|
124
|
+
return (0, currency_1.getCurrencySymbol)(this.currency, this.lang);
|
|
125
|
+
}
|
|
126
|
+
get activePlayers() {
|
|
127
|
+
return Object.keys(this.players);
|
|
128
|
+
}
|
|
129
|
+
get playersList() {
|
|
130
|
+
const players = this.activePlayers.map((playerId) => ({
|
|
131
|
+
...this.players[playerId],
|
|
132
|
+
id: playerId,
|
|
133
|
+
}));
|
|
134
|
+
return (0, orders_1.orderByInstruments)(players, 'mainInstrument', this.instrumentsIds);
|
|
135
|
+
}
|
|
136
|
+
get isActive() {
|
|
137
|
+
return this.exists && !this.deletedAt;
|
|
138
|
+
}
|
|
139
|
+
get isDeleted() {
|
|
140
|
+
return !this.exists || !(0, lodash_1.isNull)(this.deletedAt);
|
|
141
|
+
}
|
|
142
|
+
get intercomId() {
|
|
143
|
+
return this.data.intercom_id || null;
|
|
144
|
+
}
|
|
145
|
+
get partnershipId() {
|
|
146
|
+
return this.data.partnershipId || null;
|
|
147
|
+
}
|
|
148
|
+
get customerId() {
|
|
149
|
+
return this.data.customerId || null;
|
|
150
|
+
}
|
|
151
|
+
get socialNetworks() {
|
|
152
|
+
if (this.data.socialNetworks) {
|
|
153
|
+
return this.data.socialNetworks;
|
|
154
|
+
}
|
|
155
|
+
return {
|
|
156
|
+
[types_1.SocialNetwork.Facebook]: null,
|
|
157
|
+
[types_1.SocialNetwork.Twitter]: null,
|
|
158
|
+
[types_1.SocialNetwork.Instagram]: null,
|
|
159
|
+
[types_1.SocialNetwork.YouTube]: null,
|
|
160
|
+
[types_1.SocialNetwork.Web]: null,
|
|
161
|
+
};
|
|
162
|
+
}
|
|
163
|
+
getSocialNetworkUrl(id) {
|
|
164
|
+
if (id in this.socialNetworks) {
|
|
165
|
+
return this.socialNetworks[id];
|
|
166
|
+
}
|
|
167
|
+
return null;
|
|
168
|
+
}
|
|
169
|
+
get config() {
|
|
170
|
+
const config = this.data.config || {};
|
|
171
|
+
return {
|
|
172
|
+
[types_1.GroupConfigKey.IncludesMembersToEventsWhenJoined]: types_1.GroupConfigKey.IncludesMembersToEventsWhenJoined in config
|
|
173
|
+
? config[types_1.GroupConfigKey.IncludesMembersToEventsWhenJoined]
|
|
174
|
+
: true,
|
|
175
|
+
[types_1.GroupConfigKey.AllowEditInstruments]: types_1.GroupConfigKey.AllowEditInstruments in config
|
|
176
|
+
? config[types_1.GroupConfigKey.AllowEditInstruments]
|
|
177
|
+
: true,
|
|
178
|
+
[types_1.GroupConfigKey.ShowAttendanceToMembers]: types_1.GroupConfigKey.ShowAttendanceToMembers in config
|
|
179
|
+
? config[types_1.GroupConfigKey.ShowAttendanceToMembers]
|
|
180
|
+
: types_1.GroupConfigShowAttendanceToMembers.None,
|
|
181
|
+
[types_1.GroupConfigKey.AllowVerifyGeoLoc]: types_1.GroupConfigKey.AllowVerifyGeoLoc in config
|
|
182
|
+
? config[types_1.GroupConfigKey.AllowVerifyGeoLoc]
|
|
183
|
+
: false,
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
get configSites() {
|
|
187
|
+
const configSites = this.data.configSites || {};
|
|
188
|
+
return {
|
|
189
|
+
[types_1.GroupConfigSitesKey.Active]: types_1.GroupConfigSitesKey.Active in configSites
|
|
190
|
+
? configSites[types_1.GroupConfigSitesKey.Active]
|
|
191
|
+
: false,
|
|
192
|
+
[types_1.GroupConfigSitesKey.ShowEvents]: types_1.GroupConfigSitesKey.ShowEvents in configSites
|
|
193
|
+
? configSites[types_1.GroupConfigSitesKey.ShowEvents]
|
|
194
|
+
: false,
|
|
195
|
+
[types_1.GroupConfigSitesKey.ShowMembers]: types_1.GroupConfigSitesKey.ShowMembers in configSites
|
|
196
|
+
? configSites[types_1.GroupConfigSitesKey.ShowMembers]
|
|
197
|
+
: false,
|
|
198
|
+
};
|
|
199
|
+
}
|
|
200
|
+
get status() {
|
|
201
|
+
return this.data.status;
|
|
202
|
+
}
|
|
203
|
+
get planId() {
|
|
204
|
+
return this.data.planId;
|
|
205
|
+
}
|
|
206
|
+
get templates() {
|
|
207
|
+
return this.data.templates || {};
|
|
208
|
+
}
|
|
209
|
+
get templatesList() {
|
|
210
|
+
return (0, objects_1.mapToArray)(this.templates);
|
|
211
|
+
}
|
|
212
|
+
get satisfactionIndex() {
|
|
213
|
+
return this.data.satisfactionIndex || { current: 0, last: 0 };
|
|
214
|
+
}
|
|
215
|
+
get metadata() {
|
|
216
|
+
return this.data.metadata || {};
|
|
217
|
+
}
|
|
218
|
+
/** @deprecated use isUpgradeRequired */
|
|
219
|
+
get isExpiredTrial() {
|
|
220
|
+
const isOutDateTrial = (0, date_fns_1.isPast)(this.trialEndAt);
|
|
221
|
+
const members = this.activePlayers.length;
|
|
222
|
+
const isAboveMembersLimitPlanFree = members > plans_1.membersPerPlan[plans_1.PlansGroup.Piano];
|
|
223
|
+
return this.status !== types_1.GroupStatus.Premium && isOutDateTrial && isAboveMembersLimitPlanFree;
|
|
224
|
+
}
|
|
225
|
+
get isOutOfMembersLimit() {
|
|
226
|
+
const members = this.activePlayers.length;
|
|
227
|
+
return members > plans_1.membersPerPlan[this.planId];
|
|
228
|
+
}
|
|
229
|
+
get isUpgradePlanRequired() {
|
|
230
|
+
const graceMembers = 4;
|
|
231
|
+
const planMembers = plans_1.membersPerPlan[this.planId] + graceMembers;
|
|
232
|
+
const members = this.activePlayers.length;
|
|
233
|
+
return members > planMembers;
|
|
234
|
+
}
|
|
235
|
+
get firstAnswerAt() {
|
|
236
|
+
return this.data.firstAnswerAt || null;
|
|
237
|
+
}
|
|
238
|
+
get repertoireTags() {
|
|
239
|
+
return this.data.repertoireTags || {};
|
|
240
|
+
}
|
|
241
|
+
get repertoireTagsList() {
|
|
242
|
+
return (0, objects_1.mapToArray)(this.repertoireTags);
|
|
243
|
+
}
|
|
244
|
+
getRepertoireTagName(id) {
|
|
245
|
+
if (!(id in this.repertoireTags))
|
|
246
|
+
return null;
|
|
247
|
+
const tag = this.repertoireTags[id];
|
|
248
|
+
return tag.default ? (0, lang_1.getTranslation)(tag.title, this.lang) : tag.title;
|
|
249
|
+
}
|
|
250
|
+
get trialEndAt() {
|
|
251
|
+
if (this.data.trialEndAt) {
|
|
252
|
+
return this.data.trialEndAt.toDate();
|
|
253
|
+
}
|
|
254
|
+
return (0, date_fns_1.addMonths)(this.createdAt.toDate(), 1);
|
|
255
|
+
}
|
|
256
|
+
get glissandooAdminUrl() {
|
|
257
|
+
return (0, glissandooAdmin_1.getGlissandooAdminEntityURL)(collections_1.CollectionNames.Group, this.id);
|
|
258
|
+
}
|
|
259
|
+
getGlissandooAdminUrl(adminHost) {
|
|
260
|
+
return (0, externalUrls_1.buildAdminEntityUrl)(adminHost, collections_1.CollectionNames.Group, this.id);
|
|
261
|
+
}
|
|
262
|
+
get createdOn() {
|
|
263
|
+
return this.data.createdOn;
|
|
264
|
+
}
|
|
265
|
+
get instruments() {
|
|
266
|
+
return this.data.instruments || {};
|
|
267
|
+
}
|
|
268
|
+
get instrumentsList() {
|
|
269
|
+
return (0, objects_1.orderedMapToArray)(this.instruments);
|
|
270
|
+
}
|
|
271
|
+
get instrumentsIds() {
|
|
272
|
+
return this.instrumentsList.map(({ id }) => id);
|
|
273
|
+
}
|
|
274
|
+
get customInstruments() {
|
|
275
|
+
return Object.fromEntries(Object.entries(this.instruments).filter(([key]) => key.startsWith('customInstrument-')));
|
|
276
|
+
}
|
|
277
|
+
get customInstrumentsList() {
|
|
278
|
+
return (0, objects_1.orderedMapToArray)(this.customInstruments);
|
|
279
|
+
}
|
|
280
|
+
get customInstrumentsIds() {
|
|
281
|
+
return this.customInstrumentsList.map(({ id }) => id);
|
|
282
|
+
}
|
|
283
|
+
get visitedDashboardAt() {
|
|
284
|
+
return this.data.visitedDashboardAt || null;
|
|
285
|
+
}
|
|
286
|
+
get onboardingMessages() {
|
|
287
|
+
return this.data.onboardingMessages || [];
|
|
288
|
+
}
|
|
289
|
+
get rollcallLink() {
|
|
290
|
+
return `https://glissandoo.com/rollcall/${this.id}`;
|
|
291
|
+
}
|
|
292
|
+
getRollcallLink(landingHost) {
|
|
293
|
+
return (0, externalUrls_1.buildRollcallUrl)(landingHost, this.id);
|
|
294
|
+
}
|
|
295
|
+
get subscriptionId() {
|
|
296
|
+
return this.data.subscriptionId || null;
|
|
297
|
+
}
|
|
298
|
+
get questions() {
|
|
299
|
+
return this.data.questions || {};
|
|
300
|
+
}
|
|
301
|
+
get questionsList() {
|
|
302
|
+
return Object.entries(this.questions).map(([id, answers]) => ({
|
|
303
|
+
id,
|
|
304
|
+
...answers,
|
|
305
|
+
}));
|
|
306
|
+
}
|
|
307
|
+
getDefaultQuestion(status) {
|
|
308
|
+
return this.questionsList.find((q) => q.isDefault && q.status === status);
|
|
309
|
+
}
|
|
310
|
+
get customFields() {
|
|
311
|
+
return this.data.customFields || {};
|
|
312
|
+
}
|
|
313
|
+
get customFieldsList() {
|
|
314
|
+
return Object.entries(this.customFields)
|
|
315
|
+
.map(([id, field]) => ({
|
|
316
|
+
id,
|
|
317
|
+
...field,
|
|
318
|
+
}))
|
|
319
|
+
.sort((a, b) => a.order - b.order);
|
|
320
|
+
}
|
|
321
|
+
get inventoryId() {
|
|
322
|
+
return this.data.inventoryId;
|
|
323
|
+
}
|
|
324
|
+
get coverURL() {
|
|
325
|
+
return this.data.coverURL || null;
|
|
326
|
+
}
|
|
327
|
+
get modules() {
|
|
328
|
+
return this.data.modules || {};
|
|
329
|
+
}
|
|
330
|
+
getModule(id) {
|
|
331
|
+
return this.modules[id] || null;
|
|
332
|
+
}
|
|
333
|
+
isModuleEnabled(id) {
|
|
334
|
+
return !!this.getModule(id)?.enabled;
|
|
335
|
+
}
|
|
336
|
+
get payoutRules() {
|
|
337
|
+
return this.data.payoutRules || [];
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
exports.default = Group;
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
import { DocumentReference, GeoPoint, Timestamp } from '@google-cloud/firestore';
|
|
2
|
+
import { CustomInstrumentId, DefaultInstrumentId } from '../../helpers/instruments';
|
|
3
|
+
import { MusicStyleType } from '../../helpers/musicStyles';
|
|
4
|
+
import { PlansGroup } from '../../helpers/plans';
|
|
5
|
+
import { CreatedOn } from '../../helpers/types';
|
|
6
|
+
import { GroupPayoutRuleEntry } from '../../types/payoutRule';
|
|
7
|
+
import { EventPlayerStatus } from '../Evento/Player/types';
|
|
8
|
+
import { EventType } from '../Evento/types';
|
|
9
|
+
import { PlayerBasicData } from '../Player/types';
|
|
10
|
+
export { GroupHistoryAction } from '../supabase/GroupHistory/types';
|
|
11
|
+
export declare enum GroupCustomFieldType {
|
|
12
|
+
TEXT = "text",
|
|
13
|
+
NUMBER = "number",
|
|
14
|
+
DATE = "date",
|
|
15
|
+
SELECT = "select",
|
|
16
|
+
EMAIL = "email",
|
|
17
|
+
PHONE = "phone",
|
|
18
|
+
LINK = "link",
|
|
19
|
+
PARAGRAPH = "paragraph"
|
|
20
|
+
}
|
|
21
|
+
export interface GroupCustomFieldOption {
|
|
22
|
+
id: string;
|
|
23
|
+
value: string;
|
|
24
|
+
}
|
|
25
|
+
export interface GroupCustomField {
|
|
26
|
+
label: string;
|
|
27
|
+
type: GroupCustomFieldType;
|
|
28
|
+
required: boolean;
|
|
29
|
+
allowEditByMember: boolean;
|
|
30
|
+
private?: boolean;
|
|
31
|
+
placeholder: string | null;
|
|
32
|
+
options: GroupCustomFieldOption[];
|
|
33
|
+
order: number;
|
|
34
|
+
createdAt: Timestamp;
|
|
35
|
+
updatedAt: Timestamp;
|
|
36
|
+
createdBy: string;
|
|
37
|
+
updatedBy: string;
|
|
38
|
+
}
|
|
39
|
+
export interface AGroupCustomField extends GroupCustomField {
|
|
40
|
+
id: string;
|
|
41
|
+
}
|
|
42
|
+
export interface GroupOnboardingMessage {
|
|
43
|
+
type: string;
|
|
44
|
+
createdAt: Timestamp;
|
|
45
|
+
via: string;
|
|
46
|
+
to: string[];
|
|
47
|
+
}
|
|
48
|
+
export declare enum AdminPermissions {
|
|
49
|
+
Owner = "owner",
|
|
50
|
+
Events = "events",
|
|
51
|
+
Rollcall = "rollcall",
|
|
52
|
+
Members = "members",
|
|
53
|
+
Repertoire = "repertoire",
|
|
54
|
+
Purchase = "purchase",
|
|
55
|
+
Communications = "communications",
|
|
56
|
+
Offers = "offers",
|
|
57
|
+
Billing = "billing",
|
|
58
|
+
Inventory = "inventory"
|
|
59
|
+
}
|
|
60
|
+
export declare enum GroupConfigKey {
|
|
61
|
+
IncludesMembersToEventsWhenJoined = "includesMembersToEventsWhenJoined",
|
|
62
|
+
AllowEditInstruments = "allowEditInstruments",
|
|
63
|
+
ShowAttendanceToMembers = "showAttendanceToMembers",
|
|
64
|
+
AllowVerifyGeoLoc = "allowVerifyGeoLoc"
|
|
65
|
+
}
|
|
66
|
+
export declare enum GroupConfigSitesKey {
|
|
67
|
+
Active = "active",
|
|
68
|
+
ShowMembers = "showMembers",
|
|
69
|
+
ShowEvents = "showEvents"
|
|
70
|
+
}
|
|
71
|
+
export declare enum GroupConfigShowAttendanceToMembers {
|
|
72
|
+
None = "none",
|
|
73
|
+
OnlyConfirmed = "onlyConfirmed",
|
|
74
|
+
OnlyToSection = "onlyToSection",
|
|
75
|
+
All = "all"
|
|
76
|
+
}
|
|
77
|
+
export declare enum GroupStatus {
|
|
78
|
+
Premium = "premium",
|
|
79
|
+
Trial = "trial",
|
|
80
|
+
Inactive = "inactive",
|
|
81
|
+
Deleted = "deleted"
|
|
82
|
+
}
|
|
83
|
+
export declare enum GroupModuleId {
|
|
84
|
+
Payout = "payout",
|
|
85
|
+
Inventory = "inventory",
|
|
86
|
+
Vacancies = "vacancies",
|
|
87
|
+
Partnership = "partnership",
|
|
88
|
+
MusicSchool = "musicSchool"
|
|
89
|
+
}
|
|
90
|
+
export declare enum GroupModulePlan {
|
|
91
|
+
Free = "free",
|
|
92
|
+
Paid = "paid"
|
|
93
|
+
}
|
|
94
|
+
export interface GroupModuleData {
|
|
95
|
+
enabled: boolean;
|
|
96
|
+
activatedAt: Timestamp | null;
|
|
97
|
+
activatedBy: string | null;
|
|
98
|
+
disabledAt: Timestamp | null;
|
|
99
|
+
disabledBy: string | null;
|
|
100
|
+
plan: GroupModulePlan;
|
|
101
|
+
/**
|
|
102
|
+
* Reserved for future Stripe integration. Not used yet.
|
|
103
|
+
*/
|
|
104
|
+
subscriptionId: string | null;
|
|
105
|
+
stripeCustomerId: string | null;
|
|
106
|
+
stripeSubscriptionId: string | null;
|
|
107
|
+
}
|
|
108
|
+
export type GroupModules = Partial<Record<GroupModuleId, GroupModuleData>>;
|
|
109
|
+
export declare enum SocialNetwork {
|
|
110
|
+
Facebook = "facebook",
|
|
111
|
+
Twitter = "twitter",
|
|
112
|
+
Instagram = "instagram",
|
|
113
|
+
YouTube = "youtube",
|
|
114
|
+
Web = "web"
|
|
115
|
+
}
|
|
116
|
+
export interface GroupAddressData {
|
|
117
|
+
address: string;
|
|
118
|
+
location: GeoPoint | null;
|
|
119
|
+
default: boolean;
|
|
120
|
+
}
|
|
121
|
+
export interface GroupTemplateData {
|
|
122
|
+
title: string;
|
|
123
|
+
playerIds: string[];
|
|
124
|
+
updatedAt: Timestamp;
|
|
125
|
+
updatedBy: string;
|
|
126
|
+
createdAt: Timestamp;
|
|
127
|
+
owner: string;
|
|
128
|
+
}
|
|
129
|
+
export interface AGroupTemplateData extends GroupTemplateData {
|
|
130
|
+
id: string;
|
|
131
|
+
}
|
|
132
|
+
export interface GroupAlgoliaData extends Omit<GroupBasicData, 'location'> {
|
|
133
|
+
objectID: string;
|
|
134
|
+
_geoloc: {
|
|
135
|
+
lat: number;
|
|
136
|
+
lng: number;
|
|
137
|
+
};
|
|
138
|
+
country: string;
|
|
139
|
+
playerCount: number;
|
|
140
|
+
repertoryCount: number;
|
|
141
|
+
eventCount: number;
|
|
142
|
+
communicationCount: number;
|
|
143
|
+
status: GroupStatus;
|
|
144
|
+
si: number;
|
|
145
|
+
siChange: 'up' | 'down' | 'equal';
|
|
146
|
+
createdOn: CreatedOn;
|
|
147
|
+
createdAt: number;
|
|
148
|
+
memberForecast: string;
|
|
149
|
+
sites: boolean;
|
|
150
|
+
}
|
|
151
|
+
export interface AGroupBasicData extends GroupBasicData {
|
|
152
|
+
id: string;
|
|
153
|
+
}
|
|
154
|
+
export interface GroupTinyData {
|
|
155
|
+
displayName: string;
|
|
156
|
+
photoURL: string;
|
|
157
|
+
}
|
|
158
|
+
export interface GroupBasicData extends GroupTinyData {
|
|
159
|
+
username: string;
|
|
160
|
+
musicStyle: MusicStyleType;
|
|
161
|
+
locality: string;
|
|
162
|
+
location: GeoPoint;
|
|
163
|
+
}
|
|
164
|
+
export declare enum GroupRepertoireTagReserved {
|
|
165
|
+
NoTag = "$noTag"
|
|
166
|
+
}
|
|
167
|
+
export declare enum GroupRepertoireTagDefault {
|
|
168
|
+
First = "repertoireTags.1",
|
|
169
|
+
Second = "repertoireTags.2",
|
|
170
|
+
Third = "repertoireTags.3",
|
|
171
|
+
Fourth = "repertoireTags.4",
|
|
172
|
+
Principal = "repertoireTags.principal"
|
|
173
|
+
}
|
|
174
|
+
export interface GroupConfig {
|
|
175
|
+
[GroupConfigKey.IncludesMembersToEventsWhenJoined]: boolean;
|
|
176
|
+
[GroupConfigKey.AllowEditInstruments]: boolean;
|
|
177
|
+
[GroupConfigKey.ShowAttendanceToMembers]: GroupConfigShowAttendanceToMembers;
|
|
178
|
+
[GroupConfigKey.AllowVerifyGeoLoc]: boolean;
|
|
179
|
+
}
|
|
180
|
+
export interface GroupConfigSites {
|
|
181
|
+
[GroupConfigSitesKey.Active]: boolean;
|
|
182
|
+
[GroupConfigSitesKey.ShowMembers]: boolean;
|
|
183
|
+
[GroupConfigSitesKey.ShowEvents]: boolean;
|
|
184
|
+
}
|
|
185
|
+
export interface GroupRepertoireTag {
|
|
186
|
+
title: string;
|
|
187
|
+
default: boolean;
|
|
188
|
+
}
|
|
189
|
+
export interface AGroupRepertoireTag extends GroupRepertoireTag {
|
|
190
|
+
id: string;
|
|
191
|
+
}
|
|
192
|
+
export interface DefaultGroupInstrument {
|
|
193
|
+
order: number;
|
|
194
|
+
}
|
|
195
|
+
export interface CustomGroupInstrument extends DefaultGroupInstrument {
|
|
196
|
+
icon: string;
|
|
197
|
+
name: string;
|
|
198
|
+
basedOnInstrument: DefaultInstrumentId;
|
|
199
|
+
}
|
|
200
|
+
export interface AGroupDefaultInstrument extends DefaultGroupInstrument {
|
|
201
|
+
id: DefaultInstrumentId;
|
|
202
|
+
}
|
|
203
|
+
export interface AGroupCustomInstrument extends CustomGroupInstrument {
|
|
204
|
+
id: CustomInstrumentId;
|
|
205
|
+
}
|
|
206
|
+
export type AGroupInstrument = AGroupDefaultInstrument | AGroupCustomInstrument;
|
|
207
|
+
export interface GroupEventQuestion {
|
|
208
|
+
updatedBy: string;
|
|
209
|
+
title: string;
|
|
210
|
+
status: EventPlayerStatus;
|
|
211
|
+
isDefault: boolean;
|
|
212
|
+
answers: {
|
|
213
|
+
id: string;
|
|
214
|
+
text: string;
|
|
215
|
+
}[];
|
|
216
|
+
allowNotes: boolean;
|
|
217
|
+
multiselect: boolean;
|
|
218
|
+
}
|
|
219
|
+
export interface AGroupEventQuestion extends GroupEventQuestion {
|
|
220
|
+
id: string;
|
|
221
|
+
}
|
|
222
|
+
export type GroupInstruments = Partial<Record<DefaultInstrumentId, DefaultGroupInstrument>> & Record<CustomInstrumentId, CustomGroupInstrument>;
|
|
223
|
+
export interface GroupData extends GroupBasicData {
|
|
224
|
+
playerIds: string[];
|
|
225
|
+
players: Record<string, PlayerBasicData>;
|
|
226
|
+
templates: Record<string, GroupTemplateData>;
|
|
227
|
+
administrators: string[];
|
|
228
|
+
adminPermissions: Record<string, AdminPermissions[]>;
|
|
229
|
+
addresses: GroupAddressData[];
|
|
230
|
+
activeInvitationLink: boolean;
|
|
231
|
+
invitationEmails: string[];
|
|
232
|
+
invitationLink: string | null;
|
|
233
|
+
rollcallLink: string | null;
|
|
234
|
+
shortDynamicLink: string | null;
|
|
235
|
+
intercom_id: string | null;
|
|
236
|
+
description: string | null;
|
|
237
|
+
deletedAt: Timestamp | null;
|
|
238
|
+
deletedBy: string | null;
|
|
239
|
+
socialNetworks?: Record<SocialNetwork, string | null>;
|
|
240
|
+
config: GroupConfig;
|
|
241
|
+
configSites: GroupConfigSites;
|
|
242
|
+
satisfactionIndex: {
|
|
243
|
+
current: number;
|
|
244
|
+
last: number;
|
|
245
|
+
};
|
|
246
|
+
status: GroupStatus;
|
|
247
|
+
planId: PlansGroup;
|
|
248
|
+
partnershipId: string | null;
|
|
249
|
+
customerId: string | null;
|
|
250
|
+
repertoryCount: number;
|
|
251
|
+
eventCount: Record<EventType, number>;
|
|
252
|
+
communicationCount: number;
|
|
253
|
+
country: string;
|
|
254
|
+
currency: string;
|
|
255
|
+
instruments: GroupInstruments;
|
|
256
|
+
metadata: Record<string, string>;
|
|
257
|
+
firstAnswerAt: Timestamp | null;
|
|
258
|
+
repertoireTags: Record<string, GroupRepertoireTag>;
|
|
259
|
+
trialEndAt: Timestamp | null;
|
|
260
|
+
visitedDashboardAt: Record<string, Timestamp>;
|
|
261
|
+
onboardingMessages: GroupOnboardingMessage[];
|
|
262
|
+
subscriptionId: string | null;
|
|
263
|
+
questions: Record<string, GroupEventQuestion>;
|
|
264
|
+
customFields: Record<string, GroupCustomField>;
|
|
265
|
+
inventoryId: string;
|
|
266
|
+
coverURL: string | null;
|
|
267
|
+
modules: GroupModules;
|
|
268
|
+
payoutRules: GroupPayoutRuleEntry[];
|
|
269
|
+
readonly createdOn: CreatedOn;
|
|
270
|
+
readonly owner: DocumentReference;
|
|
271
|
+
readonly createdAt: Timestamp;
|
|
272
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GroupRepertoireTagDefault = exports.GroupRepertoireTagReserved = exports.SocialNetwork = exports.GroupModulePlan = exports.GroupModuleId = exports.GroupStatus = exports.GroupConfigShowAttendanceToMembers = exports.GroupConfigSitesKey = exports.GroupConfigKey = exports.AdminPermissions = exports.GroupCustomFieldType = exports.GroupHistoryAction = void 0;
|
|
4
|
+
var types_1 = require("../supabase/GroupHistory/types");
|
|
5
|
+
Object.defineProperty(exports, "GroupHistoryAction", { enumerable: true, get: function () { return types_1.GroupHistoryAction; } });
|
|
6
|
+
// types/CustomFields.ts
|
|
7
|
+
var GroupCustomFieldType;
|
|
8
|
+
(function (GroupCustomFieldType) {
|
|
9
|
+
GroupCustomFieldType["TEXT"] = "text";
|
|
10
|
+
GroupCustomFieldType["NUMBER"] = "number";
|
|
11
|
+
GroupCustomFieldType["DATE"] = "date";
|
|
12
|
+
GroupCustomFieldType["SELECT"] = "select";
|
|
13
|
+
GroupCustomFieldType["EMAIL"] = "email";
|
|
14
|
+
GroupCustomFieldType["PHONE"] = "phone";
|
|
15
|
+
GroupCustomFieldType["LINK"] = "link";
|
|
16
|
+
GroupCustomFieldType["PARAGRAPH"] = "paragraph";
|
|
17
|
+
})(GroupCustomFieldType || (exports.GroupCustomFieldType = GroupCustomFieldType = {}));
|
|
18
|
+
var AdminPermissions;
|
|
19
|
+
(function (AdminPermissions) {
|
|
20
|
+
AdminPermissions["Owner"] = "owner";
|
|
21
|
+
AdminPermissions["Events"] = "events";
|
|
22
|
+
AdminPermissions["Rollcall"] = "rollcall";
|
|
23
|
+
AdminPermissions["Members"] = "members";
|
|
24
|
+
AdminPermissions["Repertoire"] = "repertoire";
|
|
25
|
+
AdminPermissions["Purchase"] = "purchase";
|
|
26
|
+
AdminPermissions["Communications"] = "communications";
|
|
27
|
+
AdminPermissions["Offers"] = "offers";
|
|
28
|
+
AdminPermissions["Billing"] = "billing";
|
|
29
|
+
AdminPermissions["Inventory"] = "inventory";
|
|
30
|
+
})(AdminPermissions || (exports.AdminPermissions = AdminPermissions = {}));
|
|
31
|
+
var GroupConfigKey;
|
|
32
|
+
(function (GroupConfigKey) {
|
|
33
|
+
GroupConfigKey["IncludesMembersToEventsWhenJoined"] = "includesMembersToEventsWhenJoined";
|
|
34
|
+
GroupConfigKey["AllowEditInstruments"] = "allowEditInstruments";
|
|
35
|
+
GroupConfigKey["ShowAttendanceToMembers"] = "showAttendanceToMembers";
|
|
36
|
+
GroupConfigKey["AllowVerifyGeoLoc"] = "allowVerifyGeoLoc";
|
|
37
|
+
})(GroupConfigKey || (exports.GroupConfigKey = GroupConfigKey = {}));
|
|
38
|
+
var GroupConfigSitesKey;
|
|
39
|
+
(function (GroupConfigSitesKey) {
|
|
40
|
+
GroupConfigSitesKey["Active"] = "active";
|
|
41
|
+
GroupConfigSitesKey["ShowMembers"] = "showMembers";
|
|
42
|
+
GroupConfigSitesKey["ShowEvents"] = "showEvents";
|
|
43
|
+
})(GroupConfigSitesKey || (exports.GroupConfigSitesKey = GroupConfigSitesKey = {}));
|
|
44
|
+
var GroupConfigShowAttendanceToMembers;
|
|
45
|
+
(function (GroupConfigShowAttendanceToMembers) {
|
|
46
|
+
GroupConfigShowAttendanceToMembers["None"] = "none";
|
|
47
|
+
GroupConfigShowAttendanceToMembers["OnlyConfirmed"] = "onlyConfirmed";
|
|
48
|
+
GroupConfigShowAttendanceToMembers["OnlyToSection"] = "onlyToSection";
|
|
49
|
+
GroupConfigShowAttendanceToMembers["All"] = "all";
|
|
50
|
+
})(GroupConfigShowAttendanceToMembers || (exports.GroupConfigShowAttendanceToMembers = GroupConfigShowAttendanceToMembers = {}));
|
|
51
|
+
var GroupStatus;
|
|
52
|
+
(function (GroupStatus) {
|
|
53
|
+
GroupStatus["Premium"] = "premium";
|
|
54
|
+
GroupStatus["Trial"] = "trial";
|
|
55
|
+
GroupStatus["Inactive"] = "inactive";
|
|
56
|
+
GroupStatus["Deleted"] = "deleted";
|
|
57
|
+
})(GroupStatus || (exports.GroupStatus = GroupStatus = {}));
|
|
58
|
+
var GroupModuleId;
|
|
59
|
+
(function (GroupModuleId) {
|
|
60
|
+
GroupModuleId["Payout"] = "payout";
|
|
61
|
+
GroupModuleId["Inventory"] = "inventory";
|
|
62
|
+
GroupModuleId["Vacancies"] = "vacancies";
|
|
63
|
+
GroupModuleId["Partnership"] = "partnership";
|
|
64
|
+
GroupModuleId["MusicSchool"] = "musicSchool";
|
|
65
|
+
})(GroupModuleId || (exports.GroupModuleId = GroupModuleId = {}));
|
|
66
|
+
var GroupModulePlan;
|
|
67
|
+
(function (GroupModulePlan) {
|
|
68
|
+
GroupModulePlan["Free"] = "free";
|
|
69
|
+
GroupModulePlan["Paid"] = "paid";
|
|
70
|
+
})(GroupModulePlan || (exports.GroupModulePlan = GroupModulePlan = {}));
|
|
71
|
+
var SocialNetwork;
|
|
72
|
+
(function (SocialNetwork) {
|
|
73
|
+
SocialNetwork["Facebook"] = "facebook";
|
|
74
|
+
SocialNetwork["Twitter"] = "twitter";
|
|
75
|
+
SocialNetwork["Instagram"] = "instagram";
|
|
76
|
+
SocialNetwork["YouTube"] = "youtube";
|
|
77
|
+
SocialNetwork["Web"] = "web";
|
|
78
|
+
})(SocialNetwork || (exports.SocialNetwork = SocialNetwork = {}));
|
|
79
|
+
var GroupRepertoireTagReserved;
|
|
80
|
+
(function (GroupRepertoireTagReserved) {
|
|
81
|
+
GroupRepertoireTagReserved["NoTag"] = "$noTag";
|
|
82
|
+
})(GroupRepertoireTagReserved || (exports.GroupRepertoireTagReserved = GroupRepertoireTagReserved = {}));
|
|
83
|
+
var GroupRepertoireTagDefault;
|
|
84
|
+
(function (GroupRepertoireTagDefault) {
|
|
85
|
+
GroupRepertoireTagDefault["First"] = "repertoireTags.1";
|
|
86
|
+
GroupRepertoireTagDefault["Second"] = "repertoireTags.2";
|
|
87
|
+
GroupRepertoireTagDefault["Third"] = "repertoireTags.3";
|
|
88
|
+
GroupRepertoireTagDefault["Fourth"] = "repertoireTags.4";
|
|
89
|
+
GroupRepertoireTagDefault["Principal"] = "repertoireTags.principal";
|
|
90
|
+
})(GroupRepertoireTagDefault || (exports.GroupRepertoireTagDefault = GroupRepertoireTagDefault = {}));
|