jamespot-front-business 1.2.45 → 1.2.46
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/types.d.ts +21 -8
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1173,11 +1173,12 @@ declare const Animations: {
|
|
|
1173
1173
|
};
|
|
1174
1174
|
actions: {
|
|
1175
1175
|
saveCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, {
|
|
1176
|
-
name: "Autumn" | "Christmas" | "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
1176
|
+
name: "Movember" | "PinkOctober" | "Autumn" | "Christmas" | "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
1177
1177
|
audience: string[];
|
|
1178
1178
|
auto: boolean;
|
|
1179
1179
|
activeClickEffect: number;
|
|
1180
1180
|
activeDecor: number;
|
|
1181
|
+
decorLoader?: boolean | undefined;
|
|
1181
1182
|
}, {
|
|
1182
1183
|
dispatch: AppDispatch;
|
|
1183
1184
|
state: RootState$1;
|
|
@@ -1236,11 +1237,12 @@ declare const Animations: {
|
|
|
1236
1237
|
rejectedMeta?: unknown;
|
|
1237
1238
|
}>;
|
|
1238
1239
|
fetchCurrentAnimationApp: _reduxjs_toolkit.AsyncThunk<{
|
|
1239
|
-
name: "Autumn" | "Christmas" | "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
1240
|
+
name: "Movember" | "PinkOctober" | "Autumn" | "Christmas" | "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
1240
1241
|
audience: string[];
|
|
1241
1242
|
auto: boolean;
|
|
1242
1243
|
activeClickEffect: number;
|
|
1243
1244
|
activeDecor: number;
|
|
1245
|
+
decorLoader?: boolean | undefined;
|
|
1244
1246
|
} | null, void, {
|
|
1245
1247
|
dispatch: AppDispatch;
|
|
1246
1248
|
state: RootState$1;
|
|
@@ -1323,20 +1325,22 @@ declare const Animations: {
|
|
|
1323
1325
|
};
|
|
1324
1326
|
selectors: {
|
|
1325
1327
|
selectCurrentAnimation: (state: RootState$1) => {
|
|
1326
|
-
name: "Autumn" | "Christmas" | "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
1328
|
+
name: "Movember" | "PinkOctober" | "Autumn" | "Christmas" | "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
1327
1329
|
audience: string[];
|
|
1328
1330
|
auto: boolean;
|
|
1329
1331
|
activeClickEffect: number;
|
|
1330
1332
|
activeDecor: number;
|
|
1333
|
+
decorLoader?: boolean | undefined;
|
|
1331
1334
|
} | null;
|
|
1332
1335
|
isActiveAnimation: (state: RootState$1) => boolean;
|
|
1333
1336
|
isToggleLoading: (state: RootState$1) => boolean;
|
|
1334
1337
|
selectAnimationConfigurationApp: (state: RootState$1) => {
|
|
1335
|
-
name: "Autumn" | "Christmas" | "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
1338
|
+
name: "Movember" | "PinkOctober" | "Autumn" | "Christmas" | "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
1336
1339
|
audience: string[];
|
|
1337
1340
|
auto: boolean;
|
|
1338
1341
|
activeClickEffect: number;
|
|
1339
1342
|
activeDecor: number;
|
|
1343
|
+
decorLoader?: boolean | undefined;
|
|
1340
1344
|
} | null | undefined;
|
|
1341
1345
|
};
|
|
1342
1346
|
getAnimationsRTHandlers: (dispatch: AppDispatch) => Array<jamespot_user_api.RTMessageHandler<"ANIMATIONS", jamespot_user_api.Namespaces["ANIMATIONS"]>>;
|
|
@@ -1894,13 +1898,13 @@ declare const Bookmark: {
|
|
|
1894
1898
|
} | undefined;
|
|
1895
1899
|
};
|
|
1896
1900
|
getRTHandlers: (dispatch: AppDispatch) => ({
|
|
1897
|
-
namespace: "BOOKMARKS";
|
|
1898
|
-
function: "update" | "add" | "delete";
|
|
1899
|
-
handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "update", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "add", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "delete", {}, {}>) => void;
|
|
1900
|
-
} | {
|
|
1901
1901
|
namespace: "CUSTOM-ACTION";
|
|
1902
1902
|
function: "update" | "add" | "remove";
|
|
1903
1903
|
handler: (message: jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "update", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "add", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "remove", {}, {}>) => void;
|
|
1904
|
+
} | {
|
|
1905
|
+
namespace: "BOOKMARKS";
|
|
1906
|
+
function: "update" | "add" | "delete";
|
|
1907
|
+
handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "update", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "add", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "delete", {}, {}>) => void;
|
|
1904
1908
|
})[];
|
|
1905
1909
|
};
|
|
1906
1910
|
|
|
@@ -2589,6 +2593,9 @@ declare const Hook: {
|
|
|
2589
2593
|
icon: string;
|
|
2590
2594
|
isActive: boolean;
|
|
2591
2595
|
} | undefined;
|
|
2596
|
+
AnimationsHook?: {
|
|
2597
|
+
isActive: boolean;
|
|
2598
|
+
} | undefined;
|
|
2592
2599
|
BusinessContactHook?: {
|
|
2593
2600
|
label: string;
|
|
2594
2601
|
isActive: boolean;
|
|
@@ -2747,6 +2754,9 @@ declare const Hook: {
|
|
|
2747
2754
|
icon: string;
|
|
2748
2755
|
isActive: boolean;
|
|
2749
2756
|
} | undefined;
|
|
2757
|
+
AnimationsHook?: {
|
|
2758
|
+
isActive: boolean;
|
|
2759
|
+
} | undefined;
|
|
2750
2760
|
BusinessContactHook?: {
|
|
2751
2761
|
label: string;
|
|
2752
2762
|
isActive: boolean;
|
|
@@ -2905,6 +2915,9 @@ declare const Hook: {
|
|
|
2905
2915
|
icon: string;
|
|
2906
2916
|
isActive: boolean;
|
|
2907
2917
|
} | undefined;
|
|
2918
|
+
AnimationsHook?: {
|
|
2919
|
+
isActive: boolean;
|
|
2920
|
+
} | undefined;
|
|
2908
2921
|
BusinessContactHook?: {
|
|
2909
2922
|
label: string;
|
|
2910
2923
|
isActive: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-front-business",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.46",
|
|
4
4
|
"description": "typescript utils",
|
|
5
5
|
"main": "dist/cjs.js",
|
|
6
6
|
"module": "dist/esm.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"eslint-config-prettier": "^8.10.2",
|
|
32
32
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
33
33
|
"eslint-plugin-import": "^2.32.0",
|
|
34
|
-
"jamespot-user-api": "^1.2.
|
|
34
|
+
"jamespot-user-api": "^1.2.46",
|
|
35
35
|
"jest": "^30.1.2",
|
|
36
36
|
"jest-environment-jsdom": "^30.1.2",
|
|
37
37
|
"prettier": "^3.6.2",
|