@glissandoo/lib 1.123.0 → 1.123.2
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/.firebaserc +7 -0
- package/.husky/pre-commit +4 -0
- package/README.md +70 -0
- package/{models → lib/models}/User/index.d.ts +7 -1
- package/{models → lib/models}/User/index.js +9 -0
- package/{models → lib/models}/User/types.d.ts +6 -0
- package/{models → lib/models}/User/types.js +5 -1
- package/{types → lib/types}/supabase/generated.d.ts +0 -36
- package/package.json +1 -1
- package/scripts/setHusky.js +11 -0
- package/supabase/.dev.env +1 -0
- package/supabase/.prod.env +1 -0
- package/supabase/.sample.env +2 -0
- package/supabase/README.md +126 -0
- package/supabase/config.toml +68 -0
- package/supabase/migrations/20231117044943_remote_schema.sql +228 -0
- package/supabase/migrations/20231117124947_event_selection_mode_closed_at_nullable.sql +1 -0
- package/supabase/migrations/20231121002132_remote_schema.sql +31 -0
- package/supabase/migrations/20231121004031_references_nullable.sql +3 -0
- package/supabase/migrations/20231121014339_updated_at_trigger.sql +13 -0
- package/supabase/migrations/20231122111241_remote_schema.sql +25 -0
- package/supabase/migrations/20231124151424_snake_case_to_camel_case.sql +105 -0
- package/supabase/migrations/20231129133721_add_columns_for_sites.sql +11 -0
- package/supabase/migrations/20231129142806_promoter_can_be_null.sql +3 -0
- package/supabase/migrations/20231130125327_group_location_latlon.sql +3 -0
- package/supabase/migrations/20231130150154_error_solvings.sql +9 -0
- package/supabase/migrations/20240405115914_new_columns.sql +9 -0
- package/supabase/migrations/20240405121956_init_offer.sql +81 -0
- package/supabase/migrations/20240503032440_add_columns_to_offer.sql +11 -0
- package/supabase/migrations/20240503101641_add_column_createdOn.sql +19 -0
- package/supabase/migrations/20240506035104_add_groupInfo_to_offer.sql +10 -0
- package/supabase/migrations/20240510110328_add_relationships_to_offer.sql +9 -0
- package/supabase/migrations/20240514100316_offers_public.sql +9 -0
- package/supabase/migrations/20260506013030_add_user_mirror.sql +50 -0
- package/supabase/migrations/20260506013031_add_user_group_mirror.sql +31 -0
- package/supabase/migrations/20260529000000_init_group_payment.sql +79 -0
- package/supabase/migrations/20260529120000_group_payment_realtime.sql +19 -0
- package/supabase/migrations/20260529130000_group_payment_anon_read.sql +16 -0
- package/supabase/migrations/20260601000000_group_payment_concept_norm.sql +20 -0
- package/supabase/migrations/20260605000000_init_partnership_domain.sql +333 -0
- package/supabase/migrations/20260605000100_partnership_recurring_rpc.sql +62 -0
- package/supabase/migrations/20260606000000_partnership_payer.sql +83 -0
- package/supabase/migrations/20260607000000_partnership_partner_number_not_unique.sql +10 -0
- package/supabase/migrations/20260608000000_partnership_payment_method_bizum.sql +2 -0
- package/supabase/migrations/20260609000000_partnership_payment_sepa_end_to_end.sql +13 -0
- package/supabase/migrations/20260617000000_partnership_portal_query_indexes.sql +23 -0
- package/supabase/migrations/20260618000000_partnership_communication_attachments.sql +5 -0
- package/supabase/migrations/20260701000000_partnership_recurring_rpc_drop_ambiguous.sql +29 -0
- package/supabase/migrations/20260713191700_add_personal_calendar_feed.sql +506 -0
- package/supabase/migrations/20260714193734_add_pending_calendar_invitations.sql +403 -0
- package/supabase/migrations/20260714205623_add_event_datetime_end_backfill.sql +64 -0
- package/supabase/migrations/20260729161126_remove_calendar_event_history_dependency.sql +19 -0
- package/supabase/migrations/20260729161202_reconcile_production_remote_schema.sql +135 -0
- package/supabase/migrations/20260804120000_add_calendar_feed_token_cipher.sql +9 -0
- package/supabase/migrations/20260805120000_replace_usergroup_with_group_playerids.sql +363 -0
- package/supabase/seed.sql +2973 -0
- package/models/supabase/User/Group/types.d.ts +0 -6
- package/models/supabase/User/Group/types.js +0 -2
- package/models/supabase/User/types.d.ts +0 -6
- package/models/supabase/User/types.js +0 -2
- package/types/firestore.ts +0 -1998
- package/types/messagebirdChatWidget.ts +0 -20
- package/types/minVersion.ts +0 -4
- package/types/payoutRule.ts +0 -132
- package/types/supabase/generated.ts +0 -1718
- package/types/supabase/index.ts +0 -36
- package/types/supabase/overwrites/comm.ts +0 -18
- package/types/supabase/overwrites/comm_history.ts +0 -10
- package/types/supabase/overwrites/event.ts +0 -28
- package/types/supabase/overwrites/event_history.ts +0 -10
- package/types/supabase/overwrites/group.ts +0 -49
- package/types/supabase/overwrites/group_history.ts +0 -9
- package/types/supabase/overwrites/index.ts +0 -7
- package/types/supabase/overwrites/offer.ts +0 -15
- package/types/supabase/overwrites/offer_history.ts +0 -10
- package/types/supabase/overwrites/repertoire.ts +0 -12
- package/types/supabase/overwrites/repertoire_history.ts +0 -10
- package/types/supabase/overwrites/utils.ts +0 -4
- /package/{functions → lib/functions}/auth.d.ts +0 -0
- /package/{functions → lib/functions}/auth.js +0 -0
- /package/{functions → lib/functions}/calendarFeed.d.ts +0 -0
- /package/{functions → lib/functions}/calendarFeed.js +0 -0
- /package/{functions → lib/functions}/communication.d.ts +0 -0
- /package/{functions → lib/functions}/communication.js +0 -0
- /package/{functions → lib/functions}/communicationComment.d.ts +0 -0
- /package/{functions → lib/functions}/communicationComment.js +0 -0
- /package/{functions → lib/functions}/customer.d.ts +0 -0
- /package/{functions → lib/functions}/customer.js +0 -0
- /package/{functions → lib/functions}/customerGroup.d.ts +0 -0
- /package/{functions → lib/functions}/customerGroup.js +0 -0
- /package/{functions → lib/functions}/event.d.ts +0 -0
- /package/{functions → lib/functions}/event.js +0 -0
- /package/{functions → lib/functions}/eventPlayer.d.ts +0 -0
- /package/{functions → lib/functions}/eventPlayer.js +0 -0
- /package/{functions → lib/functions}/eventRepertory.d.ts +0 -0
- /package/{functions → lib/functions}/eventRepertory.js +0 -0
- /package/{functions → lib/functions}/eventoPayout.d.ts +0 -0
- /package/{functions → lib/functions}/eventoPayout.js +0 -0
- /package/{functions → lib/functions}/federation.d.ts +0 -0
- /package/{functions → lib/functions}/federation.js +0 -0
- /package/{functions → lib/functions}/federationPartnership.d.ts +0 -0
- /package/{functions → lib/functions}/federationPartnership.js +0 -0
- /package/{functions → lib/functions}/group.d.ts +0 -0
- /package/{functions → lib/functions}/group.js +0 -0
- /package/{functions → lib/functions}/groupEventStage.d.ts +0 -0
- /package/{functions → lib/functions}/groupEventStage.js +0 -0
- /package/{functions → lib/functions}/groupModule.d.ts +0 -0
- /package/{functions → lib/functions}/groupModule.js +0 -0
- /package/{functions → lib/functions}/groupPayment.d.ts +0 -0
- /package/{functions → lib/functions}/groupPayment.js +0 -0
- /package/{functions → lib/functions}/groupPayoutRule.d.ts +0 -0
- /package/{functions → lib/functions}/groupPayoutRule.js +0 -0
- /package/{functions → lib/functions}/groupPlayer.d.ts +0 -0
- /package/{functions → lib/functions}/groupPlayer.js +0 -0
- /package/{functions → lib/functions}/groupRepertory.d.ts +0 -0
- /package/{functions → lib/functions}/groupRepertory.js +0 -0
- /package/{functions → lib/functions}/index.d.ts +0 -0
- /package/{functions → lib/functions}/index.js +0 -0
- /package/{functions → lib/functions}/inventory.d.ts +0 -0
- /package/{functions → lib/functions}/inventory.js +0 -0
- /package/{functions → lib/functions}/inventoryItem.d.ts +0 -0
- /package/{functions → lib/functions}/inventoryItem.js +0 -0
- /package/{functions → lib/functions}/jwt.d.ts +0 -0
- /package/{functions → lib/functions}/jwt.js +0 -0
- /package/{functions → lib/functions}/misc.d.ts +0 -0
- /package/{functions → lib/functions}/misc.js +0 -0
- /package/{functions → lib/functions}/notification.d.ts +0 -0
- /package/{functions → lib/functions}/notification.js +0 -0
- /package/{functions → lib/functions}/offer.d.ts +0 -0
- /package/{functions → lib/functions}/offer.js +0 -0
- /package/{functions → lib/functions}/offerApplicant.d.ts +0 -0
- /package/{functions → lib/functions}/offerApplicant.js +0 -0
- /package/{functions → lib/functions}/partnership.d.ts +0 -0
- /package/{functions → lib/functions}/partnership.js +0 -0
- /package/{functions → lib/functions}/partnershipCommunication.d.ts +0 -0
- /package/{functions → lib/functions}/partnershipCommunication.js +0 -0
- /package/{functions → lib/functions}/partnershipGroup.d.ts +0 -0
- /package/{functions → lib/functions}/partnershipGroup.js +0 -0
- /package/{functions → lib/functions}/partnershipPartner.d.ts +0 -0
- /package/{functions → lib/functions}/partnershipPartner.js +0 -0
- /package/{functions → lib/functions}/partnershipPayment.d.ts +0 -0
- /package/{functions → lib/functions}/partnershipPayment.js +0 -0
- /package/{functions → lib/functions}/partnershipPlan.d.ts +0 -0
- /package/{functions → lib/functions}/partnershipPlan.js +0 -0
- /package/{functions → lib/functions}/partnershipSepaPaymentGroup.d.ts +0 -0
- /package/{functions → lib/functions}/partnershipSepaPaymentGroup.js +0 -0
- /package/{functions → lib/functions}/partnershipSubscription.d.ts +0 -0
- /package/{functions → lib/functions}/partnershipSubscription.js +0 -0
- /package/{functions → lib/functions}/regions.d.ts +0 -0
- /package/{functions → lib/functions}/regions.js +0 -0
- /package/{functions → lib/functions}/subscription.d.ts +0 -0
- /package/{functions → lib/functions}/subscription.js +0 -0
- /package/{functions → lib/functions}/user.d.ts +0 -0
- /package/{functions → lib/functions}/user.js +0 -0
- /package/{functions → lib/functions}/userNotification.d.ts +0 -0
- /package/{functions → lib/functions}/userNotification.js +0 -0
- /package/{helpers → lib/helpers}/appScenes.d.ts +0 -0
- /package/{helpers → lib/helpers}/appScenes.js +0 -0
- /package/{helpers → lib/helpers}/audios.d.ts +0 -0
- /package/{helpers → lib/helpers}/audios.js +0 -0
- /package/{helpers → lib/helpers}/auth.d.ts +0 -0
- /package/{helpers → lib/helpers}/auth.js +0 -0
- /package/{helpers → lib/helpers}/badges.d.ts +0 -0
- /package/{helpers → lib/helpers}/badges.js +0 -0
- /package/{helpers → lib/helpers}/collections.d.ts +0 -0
- /package/{helpers → lib/helpers}/collections.js +0 -0
- /package/{helpers → lib/helpers}/communicationTemplate/index.d.ts +0 -0
- /package/{helpers → lib/helpers}/communicationTemplate/index.js +0 -0
- /package/{helpers → lib/helpers}/communicationTemplate/newGroup.d.ts +0 -0
- /package/{helpers → lib/helpers}/communicationTemplate/newGroup.js +0 -0
- /package/{helpers → lib/helpers}/communicationTemplate/newMember.d.ts +0 -0
- /package/{helpers → lib/helpers}/communicationTemplate/newMember.js +0 -0
- /package/{helpers → lib/helpers}/countries.d.ts +0 -0
- /package/{helpers → lib/helpers}/countries.js +0 -0
- /package/{helpers → lib/helpers}/currency.d.ts +0 -0
- /package/{helpers → lib/helpers}/currency.js +0 -0
- /package/{helpers → lib/helpers}/dlinks.d.ts +0 -0
- /package/{helpers → lib/helpers}/dlinks.js +0 -0
- /package/{helpers → lib/helpers}/errors.d.ts +0 -0
- /package/{helpers → lib/helpers}/errors.js +0 -0
- /package/{helpers → lib/helpers}/fileSections/index.d.ts +0 -0
- /package/{helpers → lib/helpers}/fileSections/index.js +0 -0
- /package/{helpers → lib/helpers}/fileSections/orders.d.ts +0 -0
- /package/{helpers → lib/helpers}/fileSections/orders.js +0 -0
- /package/{helpers → lib/helpers}/glissandooAdmin.d.ts +0 -0
- /package/{helpers → lib/helpers}/glissandooAdmin.js +0 -0
- /package/{helpers → lib/helpers}/instruments/index.d.ts +0 -0
- /package/{helpers → lib/helpers}/instruments/index.js +0 -0
- /package/{helpers → lib/helpers}/instruments/lists.d.ts +0 -0
- /package/{helpers → lib/helpers}/instruments/lists.js +0 -0
- /package/{helpers → lib/helpers}/instruments/orders.d.ts +0 -0
- /package/{helpers → lib/helpers}/instruments/orders.js +0 -0
- /package/{helpers → lib/helpers}/musicStyles/index.d.ts +0 -0
- /package/{helpers → lib/helpers}/musicStyles/index.js +0 -0
- /package/{helpers → lib/helpers}/musicStyles/orders.d.ts +0 -0
- /package/{helpers → lib/helpers}/musicStyles/orders.js +0 -0
- /package/{helpers → lib/helpers}/notifications/index.d.ts +0 -0
- /package/{helpers → lib/helpers}/notifications/index.js +0 -0
- /package/{helpers → lib/helpers}/notifications/placeholders.d.ts +0 -0
- /package/{helpers → lib/helpers}/notifications/placeholders.js +0 -0
- /package/{helpers → lib/helpers}/objects.d.ts +0 -0
- /package/{helpers → lib/helpers}/objects.js +0 -0
- /package/{helpers → lib/helpers}/paymentForecast.d.ts +0 -0
- /package/{helpers → lib/helpers}/paymentForecast.js +0 -0
- /package/{helpers → lib/helpers}/payoutRules.d.ts +0 -0
- /package/{helpers → lib/helpers}/payoutRules.js +0 -0
- /package/{helpers → lib/helpers}/plans.d.ts +0 -0
- /package/{helpers → lib/helpers}/plans.js +0 -0
- /package/{helpers → lib/helpers}/rates.d.ts +0 -0
- /package/{helpers → lib/helpers}/rates.js +0 -0
- /package/{helpers → lib/helpers}/reasons.d.ts +0 -0
- /package/{helpers → lib/helpers}/reasons.js +0 -0
- /package/{helpers → lib/helpers}/slate.d.ts +0 -0
- /package/{helpers → lib/helpers}/slate.js +0 -0
- /package/{helpers → lib/helpers}/styles.d.ts +0 -0
- /package/{helpers → lib/helpers}/styles.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/array-includes.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/array-includes.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/as-mutable.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/as-mutable.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/assert-error.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/assert-error.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/index.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/index.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-defined.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-defined.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-empty.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-empty.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-finite.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-finite.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-infinite.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-infinite.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-integer.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-integer.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-present.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-present.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-safe-integer.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/is-safe-integer.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/object-entries.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/object-entries.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/object-from-entries.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/object-from-entries.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/object-has-own.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/object-has-own.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/object-keys.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/object-keys.js +0 -0
- /package/{helpers → lib/helpers}/ts-extras/set-has.d.ts +0 -0
- /package/{helpers → lib/helpers}/ts-extras/set-has.js +0 -0
- /package/{helpers → lib/helpers}/types.d.ts +0 -0
- /package/{helpers → lib/helpers}/types.js +0 -0
- /package/{helpers → lib/helpers}/utils.d.ts +0 -0
- /package/{helpers → lib/helpers}/utils.js +0 -0
- /package/{index.d.ts → lib/index.d.ts} +0 -0
- /package/{index.js → lib/index.js} +0 -0
- /package/{lang → lib/lang}/ca.json +0 -0
- /package/{lang → lib/lang}/de.json +0 -0
- /package/{lang → lib/lang}/en.json +0 -0
- /package/{lang → lib/lang}/es.json +0 -0
- /package/{lang → lib/lang}/eu.json +0 -0
- /package/{lang → lib/lang}/fr.json +0 -0
- /package/{lang → lib/lang}/gl.json +0 -0
- /package/{lang → lib/lang}/index.d.ts +0 -0
- /package/{lang → lib/lang}/index.js +0 -0
- /package/{lang → lib/lang}/it.json +0 -0
- /package/{lang → lib/lang}/nl.json +0 -0
- /package/{lang → lib/lang}/pt.json +0 -0
- /package/{models → lib/models}/Communication/Comment/index.d.ts +0 -0
- /package/{models → lib/models}/Communication/Comment/index.js +0 -0
- /package/{models → lib/models}/Communication/Comment/types.d.ts +0 -0
- /package/{models → lib/models}/Communication/Comment/types.js +0 -0
- /package/{models → lib/models}/Communication/index.d.ts +0 -0
- /package/{models → lib/models}/Communication/index.js +0 -0
- /package/{models → lib/models}/Communication/types.d.ts +0 -0
- /package/{models → lib/models}/Communication/types.js +0 -0
- /package/{models → lib/models}/Counters/Group/Analytics/index.d.ts +0 -0
- /package/{models → lib/models}/Counters/Group/Analytics/index.js +0 -0
- /package/{models → lib/models}/Counters/Group/Analytics/types.d.ts +0 -0
- /package/{models → lib/models}/Counters/Group/Analytics/types.js +0 -0
- /package/{models → lib/models}/Counters/Group/index.d.ts +0 -0
- /package/{models → lib/models}/Counters/Group/index.js +0 -0
- /package/{models → lib/models}/Counters/Group/types.d.ts +0 -0
- /package/{models → lib/models}/Counters/Group/types.js +0 -0
- /package/{models → lib/models}/Counters/event.d.ts +0 -0
- /package/{models → lib/models}/Counters/event.js +0 -0
- /package/{models → lib/models}/Counters/index.d.ts +0 -0
- /package/{models → lib/models}/Counters/index.js +0 -0
- /package/{models → lib/models}/Counters/types.d.ts +0 -0
- /package/{models → lib/models}/Counters/types.js +0 -0
- /package/{models → lib/models}/Customer/Group/index.d.ts +0 -0
- /package/{models → lib/models}/Customer/Group/index.js +0 -0
- /package/{models → lib/models}/Customer/Group/types.d.ts +0 -0
- /package/{models → lib/models}/Customer/Group/types.js +0 -0
- /package/{models → lib/models}/Customer/basic.d.ts +0 -0
- /package/{models → lib/models}/Customer/basic.js +0 -0
- /package/{models → lib/models}/Customer/index.d.ts +0 -0
- /package/{models → lib/models}/Customer/index.js +0 -0
- /package/{models → lib/models}/Customer/types.d.ts +0 -0
- /package/{models → lib/models}/Customer/types.js +0 -0
- /package/{models → lib/models}/Evento/Player/basic.d.ts +0 -0
- /package/{models → lib/models}/Evento/Player/basic.js +0 -0
- /package/{models → lib/models}/Evento/Player/index.d.ts +0 -0
- /package/{models → lib/models}/Evento/Player/index.js +0 -0
- /package/{models → lib/models}/Evento/Player/types.d.ts +0 -0
- /package/{models → lib/models}/Evento/Player/types.js +0 -0
- /package/{models → lib/models}/Evento/Repertory/index.d.ts +0 -0
- /package/{models → lib/models}/Evento/Repertory/index.js +0 -0
- /package/{models → lib/models}/Evento/Repertory/types.d.ts +0 -0
- /package/{models → lib/models}/Evento/Repertory/types.js +0 -0
- /package/{models → lib/models}/Evento/basic.d.ts +0 -0
- /package/{models → lib/models}/Evento/basic.js +0 -0
- /package/{models → lib/models}/Evento/index.d.ts +0 -0
- /package/{models → lib/models}/Evento/index.js +0 -0
- /package/{models → lib/models}/Evento/promoter.d.ts +0 -0
- /package/{models → lib/models}/Evento/promoter.js +0 -0
- /package/{models → lib/models}/Evento/tiny.d.ts +0 -0
- /package/{models → lib/models}/Evento/tiny.js +0 -0
- /package/{models → lib/models}/Evento/types.d.ts +0 -0
- /package/{models → lib/models}/Evento/types.js +0 -0
- /package/{models → lib/models}/Federation/Partnership/index.d.ts +0 -0
- /package/{models → lib/models}/Federation/Partnership/index.js +0 -0
- /package/{models → lib/models}/Federation/Partnership/types.d.ts +0 -0
- /package/{models → lib/models}/Federation/Partnership/types.js +0 -0
- /package/{models → lib/models}/Federation/index.d.ts +0 -0
- /package/{models → lib/models}/Federation/index.js +0 -0
- /package/{models → lib/models}/Federation/types.d.ts +0 -0
- /package/{models → lib/models}/Federation/types.js +0 -0
- /package/{models → lib/models}/Group/Analytics/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Analytics/index.js +0 -0
- /package/{models → lib/models}/Group/Analytics/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Analytics/types.js +0 -0
- /package/{models → lib/models}/Group/Event/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Event/index.js +0 -0
- /package/{models → lib/models}/Group/Event/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Event/types.js +0 -0
- /package/{models → lib/models}/Group/Payment/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Payment/index.js +0 -0
- /package/{models → lib/models}/Group/Payment/supabase.d.ts +0 -0
- /package/{models → lib/models}/Group/Payment/supabase.js +0 -0
- /package/{models → lib/models}/Group/Payment/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Payment/types.js +0 -0
- /package/{models → lib/models}/Group/Player/Event/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Player/Event/index.js +0 -0
- /package/{models → lib/models}/Group/Player/Event/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Player/Event/types.js +0 -0
- /package/{models → lib/models}/Group/Player/Log/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Player/Log/index.js +0 -0
- /package/{models → lib/models}/Group/Player/Log/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Player/Log/types.js +0 -0
- /package/{models → lib/models}/Group/Player/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Player/index.js +0 -0
- /package/{models → lib/models}/Group/Player/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Player/types.js +0 -0
- /package/{models → lib/models}/Group/Repertory/File/Section/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Repertory/File/Section/index.js +0 -0
- /package/{models → lib/models}/Group/Repertory/File/Section/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Repertory/File/Section/types.js +0 -0
- /package/{models → lib/models}/Group/Repertory/File/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Repertory/File/index.js +0 -0
- /package/{models → lib/models}/Group/Repertory/File/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Repertory/File/types.js +0 -0
- /package/{models → lib/models}/Group/Repertory/FilePath/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Repertory/FilePath/index.js +0 -0
- /package/{models → lib/models}/Group/Repertory/index.d.ts +0 -0
- /package/{models → lib/models}/Group/Repertory/index.js +0 -0
- /package/{models → lib/models}/Group/Repertory/types.d.ts +0 -0
- /package/{models → lib/models}/Group/Repertory/types.js +0 -0
- /package/{models → lib/models}/Group/StageTemplate/index.d.ts +0 -0
- /package/{models → lib/models}/Group/StageTemplate/index.js +0 -0
- /package/{models → lib/models}/Group/StageTemplate/types.d.ts +0 -0
- /package/{models → lib/models}/Group/StageTemplate/types.js +0 -0
- /package/{models → lib/models}/Group/basic.d.ts +0 -0
- /package/{models → lib/models}/Group/basic.js +0 -0
- /package/{models → lib/models}/Group/index.d.ts +0 -0
- /package/{models → lib/models}/Group/index.js +0 -0
- /package/{models → lib/models}/Group/types.d.ts +0 -0
- /package/{models → lib/models}/Group/types.js +0 -0
- /package/{models → lib/models}/Instrument/group.d.ts +0 -0
- /package/{models → lib/models}/Instrument/group.js +0 -0
- /package/{models → lib/models}/Instrument/index.d.ts +0 -0
- /package/{models → lib/models}/Instrument/index.js +0 -0
- /package/{models → lib/models}/Inventory/Item/index.d.ts +0 -0
- /package/{models → lib/models}/Inventory/Item/index.js +0 -0
- /package/{models → lib/models}/Inventory/Item/types.d.ts +0 -0
- /package/{models → lib/models}/Inventory/Item/types.js +0 -0
- /package/{models → lib/models}/Inventory/index.d.ts +0 -0
- /package/{models → lib/models}/Inventory/index.js +0 -0
- /package/{models → lib/models}/Inventory/types.d.ts +0 -0
- /package/{models → lib/models}/Inventory/types.js +0 -0
- /package/{models → lib/models}/Metrics/index.d.ts +0 -0
- /package/{models → lib/models}/Metrics/index.js +0 -0
- /package/{models → lib/models}/Metrics/types.d.ts +0 -0
- /package/{models → lib/models}/Metrics/types.js +0 -0
- /package/{models → lib/models}/Model/index.d.ts +0 -0
- /package/{models → lib/models}/Model/index.js +0 -0
- /package/{models → lib/models}/Model/lang.d.ts +0 -0
- /package/{models → lib/models}/Model/lang.js +0 -0
- /package/{models → lib/models}/MusicStyle/index.d.ts +0 -0
- /package/{models → lib/models}/MusicStyle/index.js +0 -0
- /package/{models → lib/models}/Notification/index.d.ts +0 -0
- /package/{models → lib/models}/Notification/index.js +0 -0
- /package/{models → lib/models}/Notification/types.d.ts +0 -0
- /package/{models → lib/models}/Notification/types.js +0 -0
- /package/{models → lib/models}/Offer/Applicant/index.d.ts +0 -0
- /package/{models → lib/models}/Offer/Applicant/index.js +0 -0
- /package/{models → lib/models}/Offer/Applicant/types.d.ts +0 -0
- /package/{models → lib/models}/Offer/Applicant/types.js +0 -0
- /package/{models → lib/models}/Offer/index.d.ts +0 -0
- /package/{models → lib/models}/Offer/index.js +0 -0
- /package/{models → lib/models}/Offer/types.d.ts +0 -0
- /package/{models → lib/models}/Offer/types.js +0 -0
- /package/{models → lib/models}/Partnership/Communication/index.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Communication/index.js +0 -0
- /package/{models → lib/models}/Partnership/Communication/supabase.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Communication/supabase.js +0 -0
- /package/{models → lib/models}/Partnership/Communication/types.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Communication/types.js +0 -0
- /package/{models → lib/models}/Partnership/Group/index.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Group/index.js +0 -0
- /package/{models → lib/models}/Partnership/Group/supabase.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Group/supabase.js +0 -0
- /package/{models → lib/models}/Partnership/Group/types.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Group/types.js +0 -0
- /package/{models → lib/models}/Partnership/Partner/index.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Partner/index.js +0 -0
- /package/{models → lib/models}/Partnership/Partner/supabase.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Partner/supabase.js +0 -0
- /package/{models → lib/models}/Partnership/Partner/types.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Partner/types.js +0 -0
- /package/{models → lib/models}/Partnership/Payment/index.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Payment/index.js +0 -0
- /package/{models → lib/models}/Partnership/Payment/supabase.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Payment/supabase.js +0 -0
- /package/{models → lib/models}/Partnership/Payment/types.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Payment/types.js +0 -0
- /package/{models → lib/models}/Partnership/Plan/index.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Plan/index.js +0 -0
- /package/{models → lib/models}/Partnership/Plan/supabase.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Plan/supabase.js +0 -0
- /package/{models → lib/models}/Partnership/Plan/types.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Plan/types.js +0 -0
- /package/{models → lib/models}/Partnership/SepaPaymentGroup/index.d.ts +0 -0
- /package/{models → lib/models}/Partnership/SepaPaymentGroup/index.js +0 -0
- /package/{models → lib/models}/Partnership/SepaPaymentGroup/supabase.d.ts +0 -0
- /package/{models → lib/models}/Partnership/SepaPaymentGroup/supabase.js +0 -0
- /package/{models → lib/models}/Partnership/SepaPaymentGroup/types.d.ts +0 -0
- /package/{models → lib/models}/Partnership/SepaPaymentGroup/types.js +0 -0
- /package/{models → lib/models}/Partnership/Subscription/index.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Subscription/index.js +0 -0
- /package/{models → lib/models}/Partnership/Subscription/supabase.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Subscription/supabase.js +0 -0
- /package/{models → lib/models}/Partnership/Subscription/types.d.ts +0 -0
- /package/{models → lib/models}/Partnership/Subscription/types.js +0 -0
- /package/{models → lib/models}/Partnership/basic.d.ts +0 -0
- /package/{models → lib/models}/Partnership/basic.js +0 -0
- /package/{models → lib/models}/Partnership/index.d.ts +0 -0
- /package/{models → lib/models}/Partnership/index.js +0 -0
- /package/{models → lib/models}/Partnership/types.d.ts +0 -0
- /package/{models → lib/models}/Partnership/types.js +0 -0
- /package/{models → lib/models}/Player/basic.d.ts +0 -0
- /package/{models → lib/models}/Player/basic.js +0 -0
- /package/{models → lib/models}/Player/types.d.ts +0 -0
- /package/{models → lib/models}/Player/types.js +0 -0
- /package/{models → lib/models}/Repertory/basic.d.ts +0 -0
- /package/{models → lib/models}/Repertory/basic.js +0 -0
- /package/{models → lib/models}/Repertory/types.d.ts +0 -0
- /package/{models → lib/models}/Repertory/types.js +0 -0
- /package/{models → lib/models}/User/Group/index.d.ts +0 -0
- /package/{models → lib/models}/User/Group/index.js +0 -0
- /package/{models → lib/models}/User/Group/types.d.ts +0 -0
- /package/{models → lib/models}/User/Group/types.js +0 -0
- /package/{models → lib/models}/User/Notification/index.d.ts +0 -0
- /package/{models → lib/models}/User/Notification/index.js +0 -0
- /package/{models → lib/models}/User/Notification/types.d.ts +0 -0
- /package/{models → lib/models}/User/Notification/types.js +0 -0
- /package/{models → lib/models}/User/OfferAlarm/index.d.ts +0 -0
- /package/{models → lib/models}/User/OfferAlarm/index.js +0 -0
- /package/{models → lib/models}/User/OfferAlarm/types.d.ts +0 -0
- /package/{models → lib/models}/User/OfferAlarm/types.js +0 -0
- /package/{models → lib/models}/User/Partnership/index.d.ts +0 -0
- /package/{models → lib/models}/User/Partnership/index.js +0 -0
- /package/{models → lib/models}/User/Partnership/types.d.ts +0 -0
- /package/{models → lib/models}/User/Partnership/types.js +0 -0
- /package/{models → lib/models}/User/basic.d.ts +0 -0
- /package/{models → lib/models}/User/basic.js +0 -0
- /package/{models → lib/models}/User/extended.d.ts +0 -0
- /package/{models → lib/models}/User/extended.js +0 -0
- /package/{models → lib/models}/WebhookEvent/index.d.ts +0 -0
- /package/{models → lib/models}/WebhookEvent/index.js +0 -0
- /package/{models → lib/models}/WebhookEvent/types.d.ts +0 -0
- /package/{models → lib/models}/WebhookEvent/types.js +0 -0
- /package/{types → lib/types}/firestore.d.ts +0 -0
- /package/{types → lib/types}/firestore.js +0 -0
- /package/{types → lib/types}/messagebirdChatWidget.d.ts +0 -0
- /package/{types → lib/types}/messagebirdChatWidget.js +0 -0
- /package/{types → lib/types}/minVersion.d.ts +0 -0
- /package/{types → lib/types}/minVersion.js +0 -0
- /package/{types → lib/types}/payoutRule.d.ts +0 -0
- /package/{types → lib/types}/payoutRule.js +0 -0
- /package/{types → lib/types}/supabase/generated.js +0 -0
- /package/{types → lib/types}/supabase/index.d.ts +0 -0
- /package/{types → lib/types}/supabase/index.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/comm.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/comm.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/comm_history.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/comm_history.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/event.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/event.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/event_history.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/event_history.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/group.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/group.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/group_history.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/group_history.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/index.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/index.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/offer.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/offer.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/offer_history.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/offer_history.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/repertoire.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/repertoire.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/repertoire_history.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/repertoire_history.js +0 -0
- /package/{types → lib/types}/supabase/overwrites/utils.d.ts +0 -0
- /package/{types → lib/types}/supabase/overwrites/utils.js +0 -0
package/types/supabase/index.ts
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { MergeDeep } from 'type-fest';
|
|
2
|
-
import { Database as DatabaseGenerated } from './generated';
|
|
3
|
-
import { Overwrite } from './overwrites';
|
|
4
|
-
import { CommOverwrite } from './overwrites/comm';
|
|
5
|
-
import { CommHistory } from './overwrites/comm_history';
|
|
6
|
-
import { EventOverwrite } from './overwrites/event';
|
|
7
|
-
import { EventHistory } from './overwrites/event_history';
|
|
8
|
-
import { GroupOverwrite } from './overwrites/group';
|
|
9
|
-
import { GroupHistory } from './overwrites/group_history';
|
|
10
|
-
import { OfferOverwrite } from './overwrites/offer';
|
|
11
|
-
import { OfferHistory } from './overwrites/offer_history';
|
|
12
|
-
import { RepertoireOverwrite } from './overwrites/repertoire';
|
|
13
|
-
import { RepertoireHistory } from './overwrites/repertoire_history';
|
|
14
|
-
|
|
15
|
-
export type Database = MergeDeep<
|
|
16
|
-
DatabaseGenerated,
|
|
17
|
-
{
|
|
18
|
-
public: {
|
|
19
|
-
Tables: {
|
|
20
|
-
group: Overwrite<GroupOverwrite, 'configSites' | 'socialNetworks'>;
|
|
21
|
-
event: Overwrite<EventOverwrite, 'repeat' | 'stage'>;
|
|
22
|
-
offer: Overwrite<OfferOverwrite>;
|
|
23
|
-
repertoire: Overwrite<RepertoireOverwrite>;
|
|
24
|
-
comm: Overwrite<CommOverwrite>;
|
|
25
|
-
event_history: Overwrite<Omit<EventHistory, 'id'>, 'prev_value' | 'value'>;
|
|
26
|
-
repertoire_history: Overwrite<
|
|
27
|
-
Omit<RepertoireHistory, 'id'>,
|
|
28
|
-
'prev_value' | 'value'
|
|
29
|
-
>;
|
|
30
|
-
group_history: Overwrite<Omit<GroupHistory, 'id'>, 'prev_value' | 'value'>;
|
|
31
|
-
offer_history: Overwrite<Omit<OfferHistory, 'id'>, 'prev_value' | 'value'>;
|
|
32
|
-
comm_history: Overwrite<Omit<CommHistory, 'id'>, 'prev_value' | 'value'>;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
}
|
|
36
|
-
>;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export interface CommOverwrite {
|
|
2
|
-
id: string;
|
|
3
|
-
group_id: string;
|
|
4
|
-
owner_id: string;
|
|
5
|
-
title: string;
|
|
6
|
-
type: string;
|
|
7
|
-
comments_count: number;
|
|
8
|
-
block_answers: boolean;
|
|
9
|
-
template_id: string | null;
|
|
10
|
-
server_template: string | null;
|
|
11
|
-
server: boolean;
|
|
12
|
-
recipients: string[];
|
|
13
|
-
deleted_at: string | null;
|
|
14
|
-
deleted_by: string | null;
|
|
15
|
-
edited_at: string | null;
|
|
16
|
-
edited_by: string | null;
|
|
17
|
-
created_at: string;
|
|
18
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { EventData } from '../../../models/Evento/types';
|
|
2
|
-
|
|
3
|
-
export interface EventRepeatType {
|
|
4
|
-
period: NonNullable<EventData['repeat']>['period'];
|
|
5
|
-
untilAt: string;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export type EventRepeat = EventRepeatType | null;
|
|
9
|
-
|
|
10
|
-
export interface EventResponseDeadline {
|
|
11
|
-
option: EventData['responseDeadline']['option'];
|
|
12
|
-
customAt: string | null;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface EventRollcallHistory {
|
|
16
|
-
changedAt: string;
|
|
17
|
-
changedBy: string;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export interface EventOverwrite {
|
|
21
|
-
descriptionSlate: EventData['descriptionSlate'];
|
|
22
|
-
players: EventData['players'];
|
|
23
|
-
repeat: EventRepeat;
|
|
24
|
-
repertory: EventData['repertory'];
|
|
25
|
-
responseDeadline: EventResponseDeadline;
|
|
26
|
-
rollCallHistory: EventRollcallHistory[];
|
|
27
|
-
stage: EventData['stage'];
|
|
28
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { GroupBasicData, GroupData } from '../../../models/Group/types';
|
|
2
|
-
import { Location } from './utils';
|
|
3
|
-
|
|
4
|
-
export interface GroupAddress {
|
|
5
|
-
address: string;
|
|
6
|
-
location: Location | null;
|
|
7
|
-
default: boolean;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface GroupOnboardingMessage {
|
|
11
|
-
type: string;
|
|
12
|
-
createdAt: string;
|
|
13
|
-
via: string;
|
|
14
|
-
to: string[];
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface GroupTemplateData {
|
|
18
|
-
title: string;
|
|
19
|
-
playerIds: string[];
|
|
20
|
-
updatedAt?: string;
|
|
21
|
-
updatedBy?: string;
|
|
22
|
-
createdAt: string;
|
|
23
|
-
owner: string;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export type GroupSocialNetworks = NonNullable<GroupData['socialNetworks']> | null;
|
|
27
|
-
|
|
28
|
-
export type GroupTemplates = Record<string, GroupTemplateData>;
|
|
29
|
-
|
|
30
|
-
export type GroupVisitedDashboardAt = Record<string, string>;
|
|
31
|
-
|
|
32
|
-
export type GroupBasic = Omit<GroupBasicData, 'location'> & {
|
|
33
|
-
location: Location;
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
export interface GroupOverwrite {
|
|
37
|
-
addresses: GroupAddress[];
|
|
38
|
-
config: GroupData['config'];
|
|
39
|
-
configSites: GroupData['configSites'];
|
|
40
|
-
instruments: GroupData['instruments'];
|
|
41
|
-
metadata: GroupData['metadata'];
|
|
42
|
-
onboardingMessages: GroupOnboardingMessage[];
|
|
43
|
-
players: GroupData['players'];
|
|
44
|
-
repertoireTags: GroupData['repertoireTags'];
|
|
45
|
-
satisfactionIndex: GroupData['satisfactionIndex'];
|
|
46
|
-
socialNetworks: GroupSocialNetworks;
|
|
47
|
-
templates: GroupTemplates;
|
|
48
|
-
visitedDashboardAt: GroupVisitedDashboardAt;
|
|
49
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { DefaultInstrumentId } from '../../../helpers/instruments';
|
|
2
|
-
import { GroupBasic } from './group';
|
|
3
|
-
|
|
4
|
-
export interface OfferApplicantBasicData {
|
|
5
|
-
appliedAt: string;
|
|
6
|
-
selectedAt: string | null;
|
|
7
|
-
discardedAt: string | null;
|
|
8
|
-
message: string | null;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export interface OfferOverwrite {
|
|
12
|
-
instrument: DefaultInstrumentId;
|
|
13
|
-
applicants: Record<string, OfferApplicantBasicData>;
|
|
14
|
-
groupInfo: GroupBasic;
|
|
15
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export interface RepertoireOverwrite {
|
|
2
|
-
id: string;
|
|
3
|
-
group_id: string;
|
|
4
|
-
title: string;
|
|
5
|
-
compositor: string | null;
|
|
6
|
-
tags: string[];
|
|
7
|
-
events: string[];
|
|
8
|
-
owner_id: string;
|
|
9
|
-
created_at: string;
|
|
10
|
-
visibility: string;
|
|
11
|
-
last_event_datetime: string | null;
|
|
12
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|