@spash/frontlib 1.2.8 → 1.2.10

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 +7 -0
  2. package/dist/main.js +4047 -3960
  3. package/package.json +1 -1
package/dist/main.d.ts CHANGED
@@ -154,6 +154,11 @@ export declare interface Field {
154
154
  advertHmiLoadingImage: string;
155
155
  }
156
156
 
157
+ declare interface KeyComparisonResult {
158
+ missingInObj2: string[];
159
+ missingInObj1: string[];
160
+ }
161
+
157
162
  export declare interface Player {
158
163
  id: number;
159
164
  name: string;
@@ -650,6 +655,7 @@ export declare interface SportCenter {
650
655
  extraTimeEnabled: boolean;
651
656
  keepAliveInterval: number;
652
657
  }[];
658
+ bookingProvider: string;
653
659
  }
654
660
 
655
661
  declare interface SseCallback {
@@ -972,6 +978,7 @@ export declare const useHelper: ({ t, router }?: {
972
978
  arrayUniqueValue: (array: any[], key: string) => any[];
973
979
  sleep: (ms: number) => Promise<unknown>;
974
980
  checkIfComponentExists: (componentName: string) => boolean;
981
+ compareObjectKeys: (obj1: Record<string, unknown>, obj2: Record<string, unknown>, prefix?: string) => KeyComparisonResult;
975
982
  };
976
983
 
977
984
  export { useI18n }