@spash/frontlib 0.0.29-beta.1 → 0.0.30-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/main.d.ts +5 -1
  2. package/dist/main.js +2889 -2857
  3. package/package.json +1 -1
package/dist/main.d.ts CHANGED
@@ -516,6 +516,10 @@ export declare interface SessionTeam {
516
516
  team: Team;
517
517
  maxConsecutiveGoals?: number;
518
518
  maxInvincibilityDuration?: number;
519
+ teamPadelStat: {
520
+ id: number;
521
+ score: number;
522
+ };
519
523
  }
520
524
 
521
525
  export declare interface SessionType {
@@ -707,7 +711,7 @@ export declare const useLuxon: () => {
707
711
 
708
712
  export declare const useSse: (apiUrl?: string) => {
709
713
  eventSource: Ref<EventSource | undefined, EventSource | undefined>;
710
- addSubscriber: (topics: string[], callback?: SseCallback) => EventSource;
714
+ addSubscriber: (topics: string[] | string, callback?: SseCallback) => EventSource;
711
715
  getActiveSseConnections: () => EventSource[];
712
716
  closeAllConnections: () => void;
713
717
  };