@spash/frontlib 1.1.0-beta.4 → 1.1.0
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/dist/assets/style.css +1 -1
- package/dist/main.d.ts +3 -0
- package/dist/main.js +6166 -6108
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -341,6 +341,7 @@ export declare interface SessionInput {
|
|
|
341
341
|
bookingProvider?: string;
|
|
342
342
|
bookingProviderData?: string;
|
|
343
343
|
videoUploadEnable?: boolean;
|
|
344
|
+
aiEnabled: boolean;
|
|
344
345
|
}
|
|
345
346
|
|
|
346
347
|
export declare interface SessionPlayer {
|
|
@@ -580,6 +581,7 @@ export declare interface SessionTeam {
|
|
|
580
581
|
|
|
581
582
|
export declare interface SessionType {
|
|
582
583
|
id?: number;
|
|
584
|
+
reference: string;
|
|
583
585
|
}
|
|
584
586
|
|
|
585
587
|
export declare type SIZES = 'md' | 'lg' | 'xl';
|
|
@@ -974,6 +976,7 @@ export { useI18n }
|
|
|
974
976
|
|
|
975
977
|
export declare const useIdle: (time: number, callback?: () => void) => {
|
|
976
978
|
isIdle: Ref<boolean, boolean>;
|
|
979
|
+
cleanup: () => void;
|
|
977
980
|
};
|
|
978
981
|
|
|
979
982
|
export declare const useLuxon: () => {
|