jamespot-front-business 1.3.7 → 1.3.8
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/src/index.d.ts +2 -0
- package/dist/src/store/admin/logs/logs.d.ts +97 -0
- package/dist/src/store/admin/logs/logs.mock.d.ts +64 -0
- package/dist/src/store/admin/logs/logsNavigation.d.ts +23 -0
- package/dist/src/store/admin/logs/logsObjects.d.ts +23 -0
- package/dist/src/store/admin/logs/logsSearch.d.ts +23 -0
- package/dist/src/store/admin/logs/types.d.ts +12 -0
- package/dist/src/store/animations/animationStats.d.ts +19 -0
- package/dist/src/store/animations/animationStatsCurrent.d.ts +17 -0
- package/dist/src/store/animations/animations.d.ts +150 -0
- package/dist/src/store/animations/animations.mock.d.ts +9 -0
- package/dist/src/store/animations/animationsList.d.ts +75 -0
- package/dist/src/store/animations/animationsRTHandlers.d.ts +3 -0
- package/dist/src/store/animations/animationsRTHandlers.mock.d.ts +4 -0
- package/dist/src/store/animations/types.d.ts +22 -0
- package/dist/src/store/application/application.d.ts +48 -0
- package/dist/src/store/application/application.mock.d.ts +4 -0
- package/dist/src/store/application/application.types.d.ts +5 -0
- package/dist/src/store/article/article.d.ts +3 -0
- package/dist/src/store/article/articleRTHandlers.d.ts +2 -0
- package/dist/src/store/article/articleRTHandlers.mock.d.ts +4 -0
- package/dist/src/store/assetReservation/assetReservation.d.ts +74 -0
- package/dist/src/store/assetReservation/assetReservation.types.d.ts +31 -0
- package/dist/src/store/assetReservation/bookableAsset.d.ts +15 -0
- package/dist/src/store/assetReservation/bookableAsset.mock.d.ts +2 -0
- package/dist/src/store/assetReservation/configuration.d.ts +25 -0
- package/dist/src/store/assetReservation/configuration.mock.d.ts +17 -0
- package/dist/src/store/assetReservation/reservation.d.ts +20 -0
- package/dist/src/store/assetReservation/reservation.mock.d.ts +2 -0
- package/dist/src/store/bookmark/bookmark.d.ts +472 -0
- package/dist/src/store/bookmark/bookmark.types.d.ts +31 -0
- package/dist/src/store/bookmark/bookmarkList.d.ts +226 -0
- package/dist/src/store/bookmark/bookmarkList.mock.d.ts +201 -0
- package/dist/src/store/bookmark/bookmarkRTHandlers.d.ts +5 -0
- package/dist/src/store/bookmark/bookmarkRTHandlers.mock.d.ts +94 -0
- package/dist/src/store/bookmark/editBookmarkForm.d.ts +52 -0
- package/dist/src/store/bookmark/editBookmarkForm.mock.d.ts +4 -0
- package/dist/src/store/calendar/calendar.d.ts +347 -0
- package/dist/src/store/calendar/calendar.types.d.ts +22 -0
- package/dist/src/store/calendar/calendarEvents.d.ts +164 -0
- package/dist/src/store/calendar/calendarEvents.mock.d.ts +6 -0
- package/dist/src/store/calendar/calendarRTHandlers.d.ts +5 -0
- package/dist/src/store/calendar/calendarRTHandlers.mock.d.ts +16 -0
- package/dist/src/store/comment/comment.d.ts +66 -0
- package/dist/src/store/comment/comment.types.d.ts +18 -0
- package/dist/src/store/comment/commentList.d.ts +52 -0
- package/dist/src/store/comment/commentList.mock.d.ts +2 -0
- package/dist/src/store/comment/commentRTHandlers.d.ts +3 -0
- package/dist/src/store/comment/commentRTHandlers.mock.d.ts +102 -0
- package/dist/src/store/comment/commentsLikeRTHandlers.d.ts +3 -0
- package/dist/src/store/comment/commentsLikeRTHandlers.mock.d.ts +96 -0
- package/dist/src/store/contentReport/contentReport.d.ts +89 -0
- package/dist/src/store/contentReport/contentReport.mock.d.ts +3 -0
- package/dist/src/store/contentReport/contentReport.types.d.ts +17 -0
- package/dist/src/store/extraBot/extraBot.const.d.ts +7 -0
- package/dist/src/store/extraBot/extraBot.d.ts +167 -0
- package/dist/src/store/extraBot/extraBot.mock.d.ts +8 -0
- package/dist/src/store/extraBot/extraBot.types.d.ts +21 -0
- package/dist/src/store/faq/faq.d.ts +67 -0
- package/dist/src/store/faq/faq.types.d.ts +14 -0
- package/dist/src/store/faq/faqCategories.d.ts +20 -0
- package/dist/src/store/faq/faqCategories.mock.d.ts +2 -0
- package/dist/src/store/faq/faqConfig.d.ts +26 -0
- package/dist/src/store/faq/faqConfig.mock.d.ts +3 -0
- package/dist/src/store/fileIntegrity/fileIntegrity.const.d.ts +7 -0
- package/dist/src/store/fileIntegrity/fileIntegrity.d.ts +116 -0
- package/dist/src/store/fileIntegrity/fileIntegrity.mock.d.ts +4 -0
- package/dist/src/store/fileIntegrity/fileIntegrity.types.d.ts +12 -0
- package/dist/src/store/hook/hook.d.ts +505 -0
- package/dist/src/store/hook/hook.mock.d.ts +2 -0
- package/dist/src/store/hook/hook.types.d.ts +4 -0
- package/dist/src/store/hook/utils/driveHook.utils.d.ts +2 -0
- package/dist/src/store/index.d.ts +30 -0
- package/dist/src/store/jland/jland.d.ts +130 -0
- package/dist/src/store/jland/jland.types.d.ts +39 -0
- package/dist/src/store/jland/mapCreate.d.ts +21 -0
- package/dist/src/store/jland/mapCreate.mock.d.ts +82 -0
- package/dist/src/store/jland/mapList.d.ts +93 -0
- package/dist/src/store/jland/mapList.mock.d.ts +105 -0
- package/dist/src/store/jland/utils.d.ts +3 -0
- package/dist/src/store/magicPad/magicPad.d.ts +59 -0
- package/dist/src/store/magicPad/magicPad.mock.d.ts +2 -0
- package/dist/src/store/magicPad/magicPad.types.d.ts +15 -0
- package/dist/src/store/mediaLibrary/mediaLibrary.const.d.ts +7 -0
- package/dist/src/store/mediaLibrary/mediaLibrary.d.ts +454 -0
- package/dist/src/store/mediaLibrary/mediaLibrary.types.d.ts +24 -0
- package/dist/src/store/mediaLibrary/medialibrary.mock.d.ts +72 -0
- package/dist/src/store/model/model.d.ts +51 -0
- package/dist/src/store/model/model.mock.d.ts +144 -0
- package/dist/src/store/model/model.types.d.ts +5 -0
- package/dist/src/store/network/network.d.ts +29 -0
- package/dist/src/store/network/network.types.d.ts +10 -0
- package/dist/src/store/network/networkStatics.d.ts +5 -0
- package/dist/src/store/platform/platform.d.ts +20 -0
- package/dist/src/store/platform/platform.types.d.ts +11 -0
- package/dist/src/store/platform/platformConfig.d.ts +5 -0
- package/dist/src/store/share/share.actions.d.ts +16 -0
- package/dist/src/store/share/share.d.ts +29 -0
- package/dist/src/store/share/share.mock.d.ts +2 -0
- package/dist/src/store/share/share.slice.d.ts +5 -0
- package/dist/src/store/share/share.types.d.ts +9 -0
- package/dist/src/store/socialActions/socialActions.d.ts +49 -0
- package/dist/src/store/socialActions/socialActions.mock.d.ts +2 -0
- package/dist/src/store/studio/StudioAppsList.d.ts +108 -0
- package/dist/src/store/studio/appListMocks/appInWorkNoValue.d.ts +4 -0
- package/dist/src/store/studio/appListMocks/studioSuspendedTransformed.d.ts +2624 -0
- package/dist/src/store/studio/currentStudioApp.d.ts +54 -0
- package/dist/src/store/studio/mocks/erikBug/erikList.mock.d.ts +587 -0
- package/dist/src/store/studio/mocks/erikBug/getActiviteCE.mock.d.ts +1028 -0
- package/dist/src/store/studio/mocks/erikBug/getConge.mock.d.ts +3 -0
- package/dist/src/store/studio/mocks/erikBug/getCongeSaved.mock.d.ts +11 -0
- package/dist/src/store/studio/mocks/erikBug/getEmploi.mock.d.ts +1022 -0
- package/dist/src/store/studio/mocks/erikBug/getEmploiSaved.mock.d.ts +11 -0
- package/dist/src/store/studio/mocks/erikBug/getEquipment.mock.d.ts +1020 -0
- package/dist/src/store/studio/mocks/erikBug/getEquipmentSaved.mock.d.ts +11 -0
- package/dist/src/store/studio/mocks/erikBug/getIncident.mock.d.ts +3 -0
- package/dist/src/store/studio/mocks/erikBug/getIncidentSaved.mock.d.ts +11 -0
- package/dist/src/store/studio/mocks/erikBug/getTelephoneSaved.mock.d.ts +11 -0
- package/dist/src/store/studio/mocks/erikBug/getTrad.mock.d.ts +996 -0
- package/dist/src/store/studio/mocks/erikBug/taxoList.mock.d.ts +16 -0
- package/dist/src/store/studio/mocks/publishtoAndHtmlIssues/StudioList.d.ts +47 -0
- package/dist/src/store/studio/mocks/publishtoAndHtmlIssues/app1.d.ts +1016 -0
- package/dist/src/store/studio/studio.d.ts +172 -0
- package/dist/src/store/studio/studio.types.d.ts +572 -0
- package/dist/src/store/studio/studioAppsList.mock.d.ts +896 -0
- package/dist/src/store/studio/utils/appToXml.d.ts +6 -0
- package/dist/src/store/studio/utils/cloneStudioAppFromExistingApp.d.ts +2 -0
- package/dist/src/store/studio/utils/createNewStudioApp.d.ts +11 -0
- package/dist/src/store/studio/utils/generateNewFormField.d.ts +2 -0
- package/dist/src/store/studio/utils/installedToV2/fieldBuilders.d.ts +219 -0
- package/dist/src/store/studio/utils/installedToV2/installedToV2.d.ts +13 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/allFieldsInstalled.mock.d.ts +1300 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/allFieldsInstalled2.mock.d.ts +1274 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/allFieldsV2-2.mock.d.ts +2 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/allFieldsV2.mock.d.ts +2 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/baseAppAudienceInstalled.mock.d.ts +860 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/baseAppAudienceV2.mock.d.ts +2 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/baseAppFluxInstalled.mock.d.ts +774 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/baseAppFluxV2.mock.d.ts +2 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/baseAppInstalled.mock.d.ts +782 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/baseAppV2.mock.d.ts +2 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/selectCommentModif.mock.d.ts +2 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/selectCommentModifInstalled.mock.d.ts +787 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/simpleFieldsInstalled.mock.d.ts +852 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/simpleFieldsV2.mock.d.ts +2 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/specialApp.mock.d.ts +834 -0
- package/dist/src/store/studio/utils/installedToV2/mocks/wrongFixedAndHtmlData.d.ts +1308 -0
- package/dist/src/store/studio/utils/migrateJson.d.ts +3 -0
- package/dist/src/store/studio/utils/serverAppsToStudioApps.d.ts +3 -0
- package/dist/src/store/studio/utils/studioApplication.mock.d.ts +32 -0
- package/dist/src/store/teamWork/teamWork.d.ts +46 -0
- package/dist/src/store/teamWork/teamWorkRTHandlers.d.ts +3 -0
- package/dist/src/store/teamWork/teamWorkRTHandlers.mock.d.ts +2 -0
- package/dist/src/store/teamWork/teamWorkToDo.d.ts +20 -0
- package/dist/src/store/teamWork/teamWorkToDo.mock.d.ts +2 -0
- package/dist/src/store/teamWork/types.d.ts +10 -0
- package/dist/src/store/tinymce/tinyMCEOptions.d.ts +5 -0
- package/dist/src/store/tinymce/tinymce.d.ts +52 -0
- package/dist/src/store/tinymce/tinymce.types.d.ts +10 -0
- package/dist/src/store/toast/toast.d.ts +35 -0
- package/dist/src/store/toast/toast.types.d.ts +19 -0
- package/dist/src/store/tvDisplay/channelsList.d.ts +36 -0
- package/dist/src/store/tvDisplay/channelsList.mock.d.ts +3 -0
- package/dist/src/store/tvDisplay/tvDisplay.d.ts +54 -0
- package/dist/src/store/tvDisplay/tvDisplay.types.d.ts +12 -0
- package/dist/src/store/tvDisplay/utils.d.ts +2 -0
- package/dist/src/store/tvDisplay/utils.mock.d.ts +5 -0
- package/dist/src/store/user/user.types.d.ts +4 -0
- package/dist/src/store/user/userCurrent.d.ts +21 -0
- package/dist/src/store/user/userCurrent.mock.d.ts +36 -0
- package/dist/src/store/wedoc/wedoc.actions.d.ts +85 -0
- package/dist/src/store/wedoc/wedoc.d.ts +165 -0
- package/dist/src/store/wedoc/wedoc.mock.d.ts +3 -0
- package/dist/src/store/wedoc/wedoc.slice.d.ts +8 -0
- package/dist/src/store/wedoc/wedoc.types.d.ts +22 -0
- package/dist/src/store/widget/definitions/widget-article-attachment.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-article-button.d.ts +16 -0
- package/dist/src/store/widget/definitions/widget-article-gallery.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-article-image.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-article-slider.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-article-text.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-article-title.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-calendar-calDav.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-check-list.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-color.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-contact-cardDav.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-datasource-table.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-emails-imap.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-excel-datasource-table.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-extension.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-lucca-absence.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-presence.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-quick-survey.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-user-profile.d.ts +3 -0
- package/dist/src/store/widget/definitions/widget-welcome.d.ts +3 -0
- package/dist/src/store/widget/utils.d.ts +1 -0
- package/dist/src/store/widget/widget.const.d.ts +4 -0
- package/dist/src/store/widget/widget.d.ts +135 -0
- package/dist/src/store/widget/widget.def.d.ts +2 -0
- package/dist/src/store/widget/widget.factory.d.ts +4 -0
- package/dist/src/store/widget/widget.slice.d.ts +98 -0
- package/dist/src/store/widget/widgetRTHandlers.d.ts +3 -0
- package/dist/src/store/widgetEditor/widgetEditor.d.ts +31 -0
- package/dist/src/store/widgetEditor/widgetEditor.types.d.ts +16 -0
- package/dist/src/tests-utils/mockStore.d.ts +172 -0
- package/dist/src/tests-utils/testsUtils.d.ts +38 -0
- package/dist/src/types/index.d.ts +15 -0
- package/dist/src/types/oldStudio.d.ts +165 -0
- package/dist/src/types/store.d.ts +48 -0
- package/dist/src/types/utils.d.ts +18 -0
- package/dist/src/utils/errors.utils.d.ts +2 -0
- package/package.json +2 -2
|
@@ -0,0 +1,505 @@
|
|
|
1
|
+
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
+
import { HookListType, LicenseHookListType } from 'jamespot-user-api';
|
|
3
|
+
import { RootState } from '../../types/store';
|
|
4
|
+
export declare const Hook: {
|
|
5
|
+
slice: import('@reduxjs/toolkit').Slice<{}, {
|
|
6
|
+
initHooks: (_: import('@reduxjs/toolkit').WritableDraft<{}>, { payload }: PayloadAction<HookListType>) => {
|
|
7
|
+
BigBlueButtonHook?: {
|
|
8
|
+
label: string;
|
|
9
|
+
isActive: boolean;
|
|
10
|
+
hasLicense: boolean;
|
|
11
|
+
} | undefined;
|
|
12
|
+
ExternalAppHook?: {
|
|
13
|
+
isActive: boolean;
|
|
14
|
+
hasLicense: boolean;
|
|
15
|
+
} | undefined;
|
|
16
|
+
DigitalWorkplaceHook?: {
|
|
17
|
+
isActive: boolean;
|
|
18
|
+
hasLicense: boolean;
|
|
19
|
+
v2: boolean;
|
|
20
|
+
} | undefined;
|
|
21
|
+
LuccaAbsenceHook?: {
|
|
22
|
+
label: string;
|
|
23
|
+
isActive: boolean;
|
|
24
|
+
hasLicense: boolean;
|
|
25
|
+
} | undefined;
|
|
26
|
+
MagicPadHook?: {
|
|
27
|
+
label: string;
|
|
28
|
+
isActive: boolean;
|
|
29
|
+
hasLicense: boolean;
|
|
30
|
+
} | undefined;
|
|
31
|
+
MagicWandHook?: {
|
|
32
|
+
label: string;
|
|
33
|
+
isActive: boolean;
|
|
34
|
+
hasLicense: boolean;
|
|
35
|
+
menuItems: {
|
|
36
|
+
type: string;
|
|
37
|
+
text: string;
|
|
38
|
+
actions: string;
|
|
39
|
+
}[] | null;
|
|
40
|
+
} | undefined;
|
|
41
|
+
MediaLibraryHook?: {
|
|
42
|
+
isActive: boolean;
|
|
43
|
+
hasLicense: boolean;
|
|
44
|
+
} | undefined;
|
|
45
|
+
OfficeHook?: {
|
|
46
|
+
label: string;
|
|
47
|
+
isActive: boolean;
|
|
48
|
+
hasLicense: boolean;
|
|
49
|
+
} | undefined;
|
|
50
|
+
SpotHook?: {
|
|
51
|
+
label: string;
|
|
52
|
+
isActive: boolean;
|
|
53
|
+
hasLicense: boolean;
|
|
54
|
+
} | undefined;
|
|
55
|
+
StudioHook?: {
|
|
56
|
+
isActive: boolean;
|
|
57
|
+
hasLicense: boolean;
|
|
58
|
+
oldViewOptionProperty: boolean;
|
|
59
|
+
} | undefined;
|
|
60
|
+
TwoFactorAuthenticationHook?: {
|
|
61
|
+
name: string;
|
|
62
|
+
isActive: boolean;
|
|
63
|
+
hasLicense: boolean;
|
|
64
|
+
providers: Partial<Record<"loginPassword" | "saml" | "oAuth", "mandatory" | "no" | "optional">>;
|
|
65
|
+
banLifespan: number;
|
|
66
|
+
} | undefined;
|
|
67
|
+
VisioConnectHook?: {
|
|
68
|
+
label: string;
|
|
69
|
+
isActive: boolean;
|
|
70
|
+
hasLicense: boolean;
|
|
71
|
+
} | undefined;
|
|
72
|
+
WeDocHook?: {
|
|
73
|
+
color: string;
|
|
74
|
+
description: string;
|
|
75
|
+
label: string;
|
|
76
|
+
isActive: boolean;
|
|
77
|
+
templates: {
|
|
78
|
+
color: string;
|
|
79
|
+
description: string;
|
|
80
|
+
label: string;
|
|
81
|
+
icon: string;
|
|
82
|
+
extension: string;
|
|
83
|
+
}[];
|
|
84
|
+
allowAllDocuments: boolean;
|
|
85
|
+
allowPdfEdit: boolean;
|
|
86
|
+
hasLicense: boolean;
|
|
87
|
+
} | undefined;
|
|
88
|
+
AdminAdvancedHook?: {
|
|
89
|
+
sendAlert: boolean;
|
|
90
|
+
isActive: boolean;
|
|
91
|
+
} | undefined;
|
|
92
|
+
AnimatedMeetingHook?: {
|
|
93
|
+
create: boolean;
|
|
94
|
+
color: string;
|
|
95
|
+
description: string;
|
|
96
|
+
label: string;
|
|
97
|
+
icon: string;
|
|
98
|
+
isActive: boolean;
|
|
99
|
+
} | undefined;
|
|
100
|
+
AnimationsHook?: {
|
|
101
|
+
isActive: boolean;
|
|
102
|
+
} | undefined;
|
|
103
|
+
BusinessContactHook?: {
|
|
104
|
+
label: string;
|
|
105
|
+
isActive: boolean;
|
|
106
|
+
} | undefined;
|
|
107
|
+
calendarHook?: {
|
|
108
|
+
label: string;
|
|
109
|
+
isActive: boolean;
|
|
110
|
+
defaultView: "list" | "month" | "week" | "day";
|
|
111
|
+
iCalendarUrls: {
|
|
112
|
+
all: string;
|
|
113
|
+
accepted: string;
|
|
114
|
+
};
|
|
115
|
+
externalGestion: boolean;
|
|
116
|
+
recurringEventsEnabled: boolean;
|
|
117
|
+
} | undefined;
|
|
118
|
+
ContentFactoryHook?: {
|
|
119
|
+
label: string;
|
|
120
|
+
isActive: boolean;
|
|
121
|
+
canCreateTemplate: boolean;
|
|
122
|
+
} | undefined;
|
|
123
|
+
DriveHook?: {
|
|
124
|
+
isActive: boolean;
|
|
125
|
+
drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>>;
|
|
126
|
+
} | undefined;
|
|
127
|
+
ExtraBotHook?: {
|
|
128
|
+
create: boolean;
|
|
129
|
+
label: string;
|
|
130
|
+
isActive: boolean;
|
|
131
|
+
} | undefined;
|
|
132
|
+
FAQHook?: {
|
|
133
|
+
isActive: boolean;
|
|
134
|
+
manage: boolean;
|
|
135
|
+
} | undefined;
|
|
136
|
+
FileBankHook?: {
|
|
137
|
+
isActive: boolean;
|
|
138
|
+
order: "ASC" | "DESC";
|
|
139
|
+
orderBy: string;
|
|
140
|
+
} | undefined;
|
|
141
|
+
FileIntegrityHook?: {
|
|
142
|
+
isActive: boolean;
|
|
143
|
+
} | undefined;
|
|
144
|
+
JitsiHook?: {
|
|
145
|
+
create: boolean;
|
|
146
|
+
label: string;
|
|
147
|
+
isActive: boolean;
|
|
148
|
+
} | undefined;
|
|
149
|
+
MessengerHook?: {
|
|
150
|
+
isActive: boolean;
|
|
151
|
+
maxParticipants: number;
|
|
152
|
+
minParticipantsForSpotDiscussion: number;
|
|
153
|
+
} | undefined;
|
|
154
|
+
SharedContentHook?: {
|
|
155
|
+
isActive: boolean;
|
|
156
|
+
} | undefined;
|
|
157
|
+
spotRssFeed?: {
|
|
158
|
+
isActive: boolean;
|
|
159
|
+
} | undefined;
|
|
160
|
+
SurveyDateHook?: {
|
|
161
|
+
isActive: boolean;
|
|
162
|
+
} | undefined;
|
|
163
|
+
WidgetHook?: {
|
|
164
|
+
create: boolean;
|
|
165
|
+
isActive: boolean;
|
|
166
|
+
autorize: ("message" | "comment" | "article" | "board" | undefined)[];
|
|
167
|
+
} | undefined;
|
|
168
|
+
};
|
|
169
|
+
}, "hooks", "hooks", import('@reduxjs/toolkit').SliceSelectors<{}>>;
|
|
170
|
+
actions: import('@reduxjs/toolkit').CaseReducerActions<{
|
|
171
|
+
initHooks: (_: import('@reduxjs/toolkit').WritableDraft<{}>, { payload }: PayloadAction<HookListType>) => {
|
|
172
|
+
BigBlueButtonHook?: {
|
|
173
|
+
label: string;
|
|
174
|
+
isActive: boolean;
|
|
175
|
+
hasLicense: boolean;
|
|
176
|
+
} | undefined;
|
|
177
|
+
ExternalAppHook?: {
|
|
178
|
+
isActive: boolean;
|
|
179
|
+
hasLicense: boolean;
|
|
180
|
+
} | undefined;
|
|
181
|
+
DigitalWorkplaceHook?: {
|
|
182
|
+
isActive: boolean;
|
|
183
|
+
hasLicense: boolean;
|
|
184
|
+
v2: boolean;
|
|
185
|
+
} | undefined;
|
|
186
|
+
LuccaAbsenceHook?: {
|
|
187
|
+
label: string;
|
|
188
|
+
isActive: boolean;
|
|
189
|
+
hasLicense: boolean;
|
|
190
|
+
} | undefined;
|
|
191
|
+
MagicPadHook?: {
|
|
192
|
+
label: string;
|
|
193
|
+
isActive: boolean;
|
|
194
|
+
hasLicense: boolean;
|
|
195
|
+
} | undefined;
|
|
196
|
+
MagicWandHook?: {
|
|
197
|
+
label: string;
|
|
198
|
+
isActive: boolean;
|
|
199
|
+
hasLicense: boolean;
|
|
200
|
+
menuItems: {
|
|
201
|
+
type: string;
|
|
202
|
+
text: string;
|
|
203
|
+
actions: string;
|
|
204
|
+
}[] | null;
|
|
205
|
+
} | undefined;
|
|
206
|
+
MediaLibraryHook?: {
|
|
207
|
+
isActive: boolean;
|
|
208
|
+
hasLicense: boolean;
|
|
209
|
+
} | undefined;
|
|
210
|
+
OfficeHook?: {
|
|
211
|
+
label: string;
|
|
212
|
+
isActive: boolean;
|
|
213
|
+
hasLicense: boolean;
|
|
214
|
+
} | undefined;
|
|
215
|
+
SpotHook?: {
|
|
216
|
+
label: string;
|
|
217
|
+
isActive: boolean;
|
|
218
|
+
hasLicense: boolean;
|
|
219
|
+
} | undefined;
|
|
220
|
+
StudioHook?: {
|
|
221
|
+
isActive: boolean;
|
|
222
|
+
hasLicense: boolean;
|
|
223
|
+
oldViewOptionProperty: boolean;
|
|
224
|
+
} | undefined;
|
|
225
|
+
TwoFactorAuthenticationHook?: {
|
|
226
|
+
name: string;
|
|
227
|
+
isActive: boolean;
|
|
228
|
+
hasLicense: boolean;
|
|
229
|
+
providers: Partial<Record<"loginPassword" | "saml" | "oAuth", "mandatory" | "no" | "optional">>;
|
|
230
|
+
banLifespan: number;
|
|
231
|
+
} | undefined;
|
|
232
|
+
VisioConnectHook?: {
|
|
233
|
+
label: string;
|
|
234
|
+
isActive: boolean;
|
|
235
|
+
hasLicense: boolean;
|
|
236
|
+
} | undefined;
|
|
237
|
+
WeDocHook?: {
|
|
238
|
+
color: string;
|
|
239
|
+
description: string;
|
|
240
|
+
label: string;
|
|
241
|
+
isActive: boolean;
|
|
242
|
+
templates: {
|
|
243
|
+
color: string;
|
|
244
|
+
description: string;
|
|
245
|
+
label: string;
|
|
246
|
+
icon: string;
|
|
247
|
+
extension: string;
|
|
248
|
+
}[];
|
|
249
|
+
allowAllDocuments: boolean;
|
|
250
|
+
allowPdfEdit: boolean;
|
|
251
|
+
hasLicense: boolean;
|
|
252
|
+
} | undefined;
|
|
253
|
+
AdminAdvancedHook?: {
|
|
254
|
+
sendAlert: boolean;
|
|
255
|
+
isActive: boolean;
|
|
256
|
+
} | undefined;
|
|
257
|
+
AnimatedMeetingHook?: {
|
|
258
|
+
create: boolean;
|
|
259
|
+
color: string;
|
|
260
|
+
description: string;
|
|
261
|
+
label: string;
|
|
262
|
+
icon: string;
|
|
263
|
+
isActive: boolean;
|
|
264
|
+
} | undefined;
|
|
265
|
+
AnimationsHook?: {
|
|
266
|
+
isActive: boolean;
|
|
267
|
+
} | undefined;
|
|
268
|
+
BusinessContactHook?: {
|
|
269
|
+
label: string;
|
|
270
|
+
isActive: boolean;
|
|
271
|
+
} | undefined;
|
|
272
|
+
calendarHook?: {
|
|
273
|
+
label: string;
|
|
274
|
+
isActive: boolean;
|
|
275
|
+
defaultView: "list" | "month" | "week" | "day";
|
|
276
|
+
iCalendarUrls: {
|
|
277
|
+
all: string;
|
|
278
|
+
accepted: string;
|
|
279
|
+
};
|
|
280
|
+
externalGestion: boolean;
|
|
281
|
+
recurringEventsEnabled: boolean;
|
|
282
|
+
} | undefined;
|
|
283
|
+
ContentFactoryHook?: {
|
|
284
|
+
label: string;
|
|
285
|
+
isActive: boolean;
|
|
286
|
+
canCreateTemplate: boolean;
|
|
287
|
+
} | undefined;
|
|
288
|
+
DriveHook?: {
|
|
289
|
+
isActive: boolean;
|
|
290
|
+
drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>>;
|
|
291
|
+
} | undefined;
|
|
292
|
+
ExtraBotHook?: {
|
|
293
|
+
create: boolean;
|
|
294
|
+
label: string;
|
|
295
|
+
isActive: boolean;
|
|
296
|
+
} | undefined;
|
|
297
|
+
FAQHook?: {
|
|
298
|
+
isActive: boolean;
|
|
299
|
+
manage: boolean;
|
|
300
|
+
} | undefined;
|
|
301
|
+
FileBankHook?: {
|
|
302
|
+
isActive: boolean;
|
|
303
|
+
order: "ASC" | "DESC";
|
|
304
|
+
orderBy: string;
|
|
305
|
+
} | undefined;
|
|
306
|
+
FileIntegrityHook?: {
|
|
307
|
+
isActive: boolean;
|
|
308
|
+
} | undefined;
|
|
309
|
+
JitsiHook?: {
|
|
310
|
+
create: boolean;
|
|
311
|
+
label: string;
|
|
312
|
+
isActive: boolean;
|
|
313
|
+
} | undefined;
|
|
314
|
+
MessengerHook?: {
|
|
315
|
+
isActive: boolean;
|
|
316
|
+
maxParticipants: number;
|
|
317
|
+
minParticipantsForSpotDiscussion: number;
|
|
318
|
+
} | undefined;
|
|
319
|
+
SharedContentHook?: {
|
|
320
|
+
isActive: boolean;
|
|
321
|
+
} | undefined;
|
|
322
|
+
spotRssFeed?: {
|
|
323
|
+
isActive: boolean;
|
|
324
|
+
} | undefined;
|
|
325
|
+
SurveyDateHook?: {
|
|
326
|
+
isActive: boolean;
|
|
327
|
+
} | undefined;
|
|
328
|
+
WidgetHook?: {
|
|
329
|
+
create: boolean;
|
|
330
|
+
isActive: boolean;
|
|
331
|
+
autorize: ("message" | "comment" | "article" | "board" | undefined)[];
|
|
332
|
+
} | undefined;
|
|
333
|
+
};
|
|
334
|
+
}, "hooks">;
|
|
335
|
+
selectors: {
|
|
336
|
+
selectHooks: (state: RootState) => {
|
|
337
|
+
BigBlueButtonHook?: {
|
|
338
|
+
label: string;
|
|
339
|
+
isActive: boolean;
|
|
340
|
+
hasLicense: boolean;
|
|
341
|
+
} | undefined;
|
|
342
|
+
ExternalAppHook?: {
|
|
343
|
+
isActive: boolean;
|
|
344
|
+
hasLicense: boolean;
|
|
345
|
+
} | undefined;
|
|
346
|
+
DigitalWorkplaceHook?: {
|
|
347
|
+
isActive: boolean;
|
|
348
|
+
hasLicense: boolean;
|
|
349
|
+
v2: boolean;
|
|
350
|
+
} | undefined;
|
|
351
|
+
LuccaAbsenceHook?: {
|
|
352
|
+
label: string;
|
|
353
|
+
isActive: boolean;
|
|
354
|
+
hasLicense: boolean;
|
|
355
|
+
} | undefined;
|
|
356
|
+
MagicPadHook?: {
|
|
357
|
+
label: string;
|
|
358
|
+
isActive: boolean;
|
|
359
|
+
hasLicense: boolean;
|
|
360
|
+
} | undefined;
|
|
361
|
+
MagicWandHook?: {
|
|
362
|
+
label: string;
|
|
363
|
+
isActive: boolean;
|
|
364
|
+
hasLicense: boolean;
|
|
365
|
+
menuItems: {
|
|
366
|
+
type: string;
|
|
367
|
+
text: string;
|
|
368
|
+
actions: string;
|
|
369
|
+
}[] | null;
|
|
370
|
+
} | undefined;
|
|
371
|
+
MediaLibraryHook?: {
|
|
372
|
+
isActive: boolean;
|
|
373
|
+
hasLicense: boolean;
|
|
374
|
+
} | undefined;
|
|
375
|
+
OfficeHook?: {
|
|
376
|
+
label: string;
|
|
377
|
+
isActive: boolean;
|
|
378
|
+
hasLicense: boolean;
|
|
379
|
+
} | undefined;
|
|
380
|
+
SpotHook?: {
|
|
381
|
+
label: string;
|
|
382
|
+
isActive: boolean;
|
|
383
|
+
hasLicense: boolean;
|
|
384
|
+
} | undefined;
|
|
385
|
+
StudioHook?: {
|
|
386
|
+
isActive: boolean;
|
|
387
|
+
hasLicense: boolean;
|
|
388
|
+
oldViewOptionProperty: boolean;
|
|
389
|
+
} | undefined;
|
|
390
|
+
TwoFactorAuthenticationHook?: {
|
|
391
|
+
name: string;
|
|
392
|
+
isActive: boolean;
|
|
393
|
+
hasLicense: boolean;
|
|
394
|
+
providers: Partial<Record<"loginPassword" | "saml" | "oAuth", "mandatory" | "no" | "optional">>;
|
|
395
|
+
banLifespan: number;
|
|
396
|
+
} | undefined;
|
|
397
|
+
VisioConnectHook?: {
|
|
398
|
+
label: string;
|
|
399
|
+
isActive: boolean;
|
|
400
|
+
hasLicense: boolean;
|
|
401
|
+
} | undefined;
|
|
402
|
+
WeDocHook?: {
|
|
403
|
+
color: string;
|
|
404
|
+
description: string;
|
|
405
|
+
label: string;
|
|
406
|
+
isActive: boolean;
|
|
407
|
+
templates: {
|
|
408
|
+
color: string;
|
|
409
|
+
description: string;
|
|
410
|
+
label: string;
|
|
411
|
+
icon: string;
|
|
412
|
+
extension: string;
|
|
413
|
+
}[];
|
|
414
|
+
allowAllDocuments: boolean;
|
|
415
|
+
allowPdfEdit: boolean;
|
|
416
|
+
hasLicense: boolean;
|
|
417
|
+
} | undefined;
|
|
418
|
+
AdminAdvancedHook?: {
|
|
419
|
+
sendAlert: boolean;
|
|
420
|
+
isActive: boolean;
|
|
421
|
+
} | undefined;
|
|
422
|
+
AnimatedMeetingHook?: {
|
|
423
|
+
create: boolean;
|
|
424
|
+
color: string;
|
|
425
|
+
description: string;
|
|
426
|
+
label: string;
|
|
427
|
+
icon: string;
|
|
428
|
+
isActive: boolean;
|
|
429
|
+
} | undefined;
|
|
430
|
+
AnimationsHook?: {
|
|
431
|
+
isActive: boolean;
|
|
432
|
+
} | undefined;
|
|
433
|
+
BusinessContactHook?: {
|
|
434
|
+
label: string;
|
|
435
|
+
isActive: boolean;
|
|
436
|
+
} | undefined;
|
|
437
|
+
calendarHook?: {
|
|
438
|
+
label: string;
|
|
439
|
+
isActive: boolean;
|
|
440
|
+
defaultView: "list" | "month" | "week" | "day";
|
|
441
|
+
iCalendarUrls: {
|
|
442
|
+
all: string;
|
|
443
|
+
accepted: string;
|
|
444
|
+
};
|
|
445
|
+
externalGestion: boolean;
|
|
446
|
+
recurringEventsEnabled: boolean;
|
|
447
|
+
} | undefined;
|
|
448
|
+
ContentFactoryHook?: {
|
|
449
|
+
label: string;
|
|
450
|
+
isActive: boolean;
|
|
451
|
+
canCreateTemplate: boolean;
|
|
452
|
+
} | undefined;
|
|
453
|
+
DriveHook?: {
|
|
454
|
+
isActive: boolean;
|
|
455
|
+
drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>>;
|
|
456
|
+
} | undefined;
|
|
457
|
+
ExtraBotHook?: {
|
|
458
|
+
create: boolean;
|
|
459
|
+
label: string;
|
|
460
|
+
isActive: boolean;
|
|
461
|
+
} | undefined;
|
|
462
|
+
FAQHook?: {
|
|
463
|
+
isActive: boolean;
|
|
464
|
+
manage: boolean;
|
|
465
|
+
} | undefined;
|
|
466
|
+
FileBankHook?: {
|
|
467
|
+
isActive: boolean;
|
|
468
|
+
order: "ASC" | "DESC";
|
|
469
|
+
orderBy: string;
|
|
470
|
+
} | undefined;
|
|
471
|
+
FileIntegrityHook?: {
|
|
472
|
+
isActive: boolean;
|
|
473
|
+
} | undefined;
|
|
474
|
+
JitsiHook?: {
|
|
475
|
+
create: boolean;
|
|
476
|
+
label: string;
|
|
477
|
+
isActive: boolean;
|
|
478
|
+
} | undefined;
|
|
479
|
+
MessengerHook?: {
|
|
480
|
+
isActive: boolean;
|
|
481
|
+
maxParticipants: number;
|
|
482
|
+
minParticipantsForSpotDiscussion: number;
|
|
483
|
+
} | undefined;
|
|
484
|
+
SharedContentHook?: {
|
|
485
|
+
isActive: boolean;
|
|
486
|
+
} | undefined;
|
|
487
|
+
spotRssFeed?: {
|
|
488
|
+
isActive: boolean;
|
|
489
|
+
} | undefined;
|
|
490
|
+
SurveyDateHook?: {
|
|
491
|
+
isActive: boolean;
|
|
492
|
+
} | undefined;
|
|
493
|
+
WidgetHook?: {
|
|
494
|
+
create: boolean;
|
|
495
|
+
isActive: boolean;
|
|
496
|
+
autorize: ("message" | "comment" | "article" | "board" | undefined)[];
|
|
497
|
+
} | undefined;
|
|
498
|
+
};
|
|
499
|
+
selectHook: <T extends keyof HookListType>(state: RootState, hook: T) => HookListType[T] | undefined;
|
|
500
|
+
hasHookLicense: <T extends keyof LicenseHookListType>(state: RootState, hook: T) => boolean;
|
|
501
|
+
};
|
|
502
|
+
utils: {
|
|
503
|
+
buildDrivesArrayFromObject: (drives: Partial<Record<import('jamespot-user-api').Drive, boolean>> | undefined) => string[];
|
|
504
|
+
};
|
|
505
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export * from './article/article';
|
|
2
|
+
export * from './admin/logs/logs';
|
|
3
|
+
export * from './animations/animations';
|
|
4
|
+
export * from './application/application';
|
|
5
|
+
export * from './assetReservation/assetReservation';
|
|
6
|
+
export * from './contentReport/contentReport';
|
|
7
|
+
export * from './bookmark/bookmark';
|
|
8
|
+
export * from './calendar/calendar';
|
|
9
|
+
export * from './comment/comment';
|
|
10
|
+
export * from './extraBot/extraBot';
|
|
11
|
+
export * from './faq/faq';
|
|
12
|
+
export * from './fileIntegrity/fileIntegrity';
|
|
13
|
+
export * from './hook/hook';
|
|
14
|
+
export * from './jland/jland';
|
|
15
|
+
export * from './magicPad/magicPad';
|
|
16
|
+
export * from './mediaLibrary/mediaLibrary';
|
|
17
|
+
export * from './model/model';
|
|
18
|
+
export * from './network/network';
|
|
19
|
+
export * from './platform/platform';
|
|
20
|
+
export * from './toast/toast';
|
|
21
|
+
export * from './wedoc/wedoc';
|
|
22
|
+
export * from './share/share';
|
|
23
|
+
export * from './teamWork/teamWork';
|
|
24
|
+
export * from './tvDisplay/tvDisplay';
|
|
25
|
+
export * from './tinymce/tinymce';
|
|
26
|
+
export * from './user/userCurrent';
|
|
27
|
+
export * from './widget/widget';
|
|
28
|
+
export * from './widgetEditor/widgetEditor';
|
|
29
|
+
export * from './socialActions/socialActions';
|
|
30
|
+
export * from './studio/studio';
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { RootState } from '../../types';
|
|
2
|
+
export declare const jland: {
|
|
3
|
+
slice: {
|
|
4
|
+
name: "jland";
|
|
5
|
+
reducer: import('@reduxjs/toolkit').Reducer<{
|
|
6
|
+
jLandMapList: {
|
|
7
|
+
maps: Array<import('./jland.types').JLandMapFront>;
|
|
8
|
+
availableLicenses: import('jamespot-user-api').AdminLicensesNotAssigned;
|
|
9
|
+
loading: "idle" | "pending";
|
|
10
|
+
loadingAvailableLicenses: "idle" | "pending";
|
|
11
|
+
loadingLicenseOperation: {
|
|
12
|
+
[key: number]: "idle" | "pending" | undefined;
|
|
13
|
+
};
|
|
14
|
+
loadingMapDeletion: "idle" | "pending";
|
|
15
|
+
};
|
|
16
|
+
mapCreate: import('./jland.types').MapCreateState;
|
|
17
|
+
}, import('@reduxjs/toolkit').UnknownAction, Partial<{
|
|
18
|
+
jLandMapList: {
|
|
19
|
+
maps: Array<import('./jland.types').JLandMapFront>;
|
|
20
|
+
availableLicenses: import('jamespot-user-api').AdminLicensesNotAssigned;
|
|
21
|
+
loading: "idle" | "pending";
|
|
22
|
+
loadingAvailableLicenses: "idle" | "pending";
|
|
23
|
+
loadingLicenseOperation: {
|
|
24
|
+
[key: number]: "idle" | "pending" | undefined;
|
|
25
|
+
};
|
|
26
|
+
loadingMapDeletion: "idle" | "pending";
|
|
27
|
+
} | undefined;
|
|
28
|
+
mapCreate: import('./jland.types').MapCreateState | undefined;
|
|
29
|
+
}>>;
|
|
30
|
+
};
|
|
31
|
+
actions: {
|
|
32
|
+
assignLicense: import('@reduxjs/toolkit').AsyncThunk<boolean | undefined, {
|
|
33
|
+
map: import('./jland.types').JLandMapFront;
|
|
34
|
+
retrieveAllMaps: boolean;
|
|
35
|
+
}, {
|
|
36
|
+
dispatch: import('../..').AppDispatch;
|
|
37
|
+
state: RootState;
|
|
38
|
+
extra: {
|
|
39
|
+
jApi: import('jamespot-user-api').JamespotUserApi;
|
|
40
|
+
};
|
|
41
|
+
rejectValue?: unknown;
|
|
42
|
+
serializedErrorType?: unknown;
|
|
43
|
+
pendingMeta?: unknown;
|
|
44
|
+
fulfilledMeta?: unknown;
|
|
45
|
+
rejectedMeta?: unknown;
|
|
46
|
+
}>;
|
|
47
|
+
unassignLicense: import('@reduxjs/toolkit').AsyncThunk<boolean | undefined, {
|
|
48
|
+
map: import('./jland.types').JLandMapFront;
|
|
49
|
+
retrieveAllMaps: boolean;
|
|
50
|
+
}, {
|
|
51
|
+
dispatch: import('../..').AppDispatch;
|
|
52
|
+
state: RootState;
|
|
53
|
+
extra: {
|
|
54
|
+
jApi: import('jamespot-user-api').JamespotUserApi;
|
|
55
|
+
};
|
|
56
|
+
rejectValue?: unknown;
|
|
57
|
+
serializedErrorType?: unknown;
|
|
58
|
+
pendingMeta?: unknown;
|
|
59
|
+
fulfilledMeta?: unknown;
|
|
60
|
+
rejectedMeta?: unknown;
|
|
61
|
+
}>;
|
|
62
|
+
deleteJlandMap: import('@reduxjs/toolkit').AsyncThunk<boolean | undefined, {
|
|
63
|
+
map: import('./jland.types').JLandMapFront;
|
|
64
|
+
retrieveAllMaps: boolean;
|
|
65
|
+
}, {
|
|
66
|
+
dispatch: import('../..').AppDispatch;
|
|
67
|
+
state: RootState;
|
|
68
|
+
extra: {
|
|
69
|
+
jApi: import('jamespot-user-api').JamespotUserApi;
|
|
70
|
+
};
|
|
71
|
+
rejectValue?: unknown;
|
|
72
|
+
serializedErrorType?: unknown;
|
|
73
|
+
pendingMeta?: unknown;
|
|
74
|
+
fulfilledMeta?: unknown;
|
|
75
|
+
rejectedMeta?: unknown;
|
|
76
|
+
}>;
|
|
77
|
+
fetchJLandMaps: import('@reduxjs/toolkit').AsyncThunk<import('./jland.types').JLandMapFront[], {
|
|
78
|
+
jlandUrlBase: string;
|
|
79
|
+
retrieveAllMaps: boolean;
|
|
80
|
+
}, {
|
|
81
|
+
dispatch: import('../..').AppDispatch;
|
|
82
|
+
state: RootState;
|
|
83
|
+
extra: {
|
|
84
|
+
jApi: import('jamespot-user-api').JamespotUserApi;
|
|
85
|
+
};
|
|
86
|
+
rejectValue?: unknown;
|
|
87
|
+
serializedErrorType?: unknown;
|
|
88
|
+
pendingMeta?: unknown;
|
|
89
|
+
fulfilledMeta?: unknown;
|
|
90
|
+
rejectedMeta?: unknown;
|
|
91
|
+
}>;
|
|
92
|
+
fetchJLandAvailableLicenses: import('@reduxjs/toolkit').AsyncThunk<Record<string, number>, void, {
|
|
93
|
+
dispatch: import('../..').AppDispatch;
|
|
94
|
+
state: RootState;
|
|
95
|
+
extra: {
|
|
96
|
+
jApi: import('jamespot-user-api').JamespotUserApi;
|
|
97
|
+
};
|
|
98
|
+
rejectValue?: unknown;
|
|
99
|
+
serializedErrorType?: unknown;
|
|
100
|
+
pendingMeta?: unknown;
|
|
101
|
+
fulfilledMeta?: unknown;
|
|
102
|
+
rejectedMeta?: unknown;
|
|
103
|
+
}>;
|
|
104
|
+
createMap: import('@reduxjs/toolkit').AsyncThunk<import('./jland.types').JLandMap[] | undefined, {
|
|
105
|
+
jlandUrlBase: string;
|
|
106
|
+
map: import('./jland.types').MapCreationFront;
|
|
107
|
+
}, {
|
|
108
|
+
dispatch: import('../..').AppDispatch;
|
|
109
|
+
state: RootState;
|
|
110
|
+
extra: {
|
|
111
|
+
jApi: import('jamespot-user-api').JamespotUserApi;
|
|
112
|
+
};
|
|
113
|
+
rejectValue?: unknown;
|
|
114
|
+
serializedErrorType?: unknown;
|
|
115
|
+
pendingMeta?: unknown;
|
|
116
|
+
fulfilledMeta?: unknown;
|
|
117
|
+
rejectedMeta?: unknown;
|
|
118
|
+
}>;
|
|
119
|
+
setMap: import('@reduxjs/toolkit').ActionCreatorWithPayload<import('./jland.types').MapCreationFront, "mapCreate/setMap">;
|
|
120
|
+
resetCreateMapState: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<"mapCreate/resetCreateMapState">;
|
|
121
|
+
};
|
|
122
|
+
selectors: {
|
|
123
|
+
selectJLandMaps: (state: RootState) => import('./jland.types').JLandMapFront[];
|
|
124
|
+
selectJLandAvailableLicenses: (state: RootState) => Record<string, number>;
|
|
125
|
+
selectMapCreate: (state: RootState) => import('./jland.types').MapCreateState;
|
|
126
|
+
};
|
|
127
|
+
utils: {
|
|
128
|
+
buildUrlToJland: (map: Pick<import('./jland.types').JLandMap, "uri">, hostname: string, urlBase: string) => string;
|
|
129
|
+
};
|
|
130
|
+
};
|