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