jamespot-front-business 1.1.44 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as redux from 'redux';
2
2
  import { Dispatch as Dispatch$1 } from 'redux';
3
3
  import * as jamespot_user_api from 'jamespot-user-api';
4
- import { AnimationConfigurationType, ApplicationType, WidgetsRootState, JamespotUserApi, AudienceAutocomplete, StudioApplicationBase, jTaxonomyLittle, ReservationList, BookableAssetList, AssetReservationConfiguration, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, JLandMap, AdminLicensesNotAssigned, Model as Model$1, NetworkType, WedocFileType, jUserLittle, PagingResults, TVChannelList, TinyMCECommonOptions, jUserList, WidgetKeys, WidgetWrapperProps, WidgetTypeKeys, WidgetDefinitionProps, CombinedWidgetContent, WidgetsState, WidgetVector, WidgetStateProps } from 'jamespot-user-api';
4
+ import { AnimationConfigurationType, ApplicationType, WidgetsRootState, JamespotUserApi, AudienceAutocomplete, StudioApplicationBase, jTaxonomyLittle, ReservationList, BookableAssetList, AssetReservationConfiguration, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, JLandMap, AdminLicensesNotAssigned, MediaLibraryList, ApiPagingResults, ApiWrapper, Model as Model$1, NetworkType, WedocFileType, jUserLittle, PagingResults, TVChannelList, TinyMCECommonOptions, jUserList, WidgetKeys, WidgetWrapperProps, WidgetTypeKeys, WidgetDefinitionProps, CombinedWidgetContent, WidgetsState, WidgetVector, WidgetStateProps } from 'jamespot-user-api';
5
5
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
6
6
  import { EntityState, Dispatch, Action, PayloadAction } from '@reduxjs/toolkit';
7
7
  import * as _reduxjs_toolkit_dist_tsHelpers from '@reduxjs/toolkit/dist/tsHelpers';
@@ -1266,6 +1266,113 @@ declare const Faq: {
1266
1266
  };
1267
1267
  };
1268
1268
 
1269
+ declare const slice$1: _reduxjs_toolkit.Slice<{}, {
1270
+ initHooks: (_: Draft<S>, { payload }: PayloadAction<HookListType>) => {
1271
+ DriveHook?: ({
1272
+ isActive: boolean;
1273
+ } & {
1274
+ drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>>;
1275
+ }) | undefined;
1276
+ calendarHook?: ({
1277
+ isActive: boolean;
1278
+ } & {
1279
+ label: string;
1280
+ }) | undefined;
1281
+ FileBankHook?: ({
1282
+ isActive: boolean;
1283
+ } & {
1284
+ orderBy: string;
1285
+ order: "DESC" | "ASC";
1286
+ }) | undefined;
1287
+ };
1288
+ }, "hooks">;
1289
+ declare type HookRootState = {
1290
+ [slice$1.name]: HookListType;
1291
+ };
1292
+ declare const Hook: {
1293
+ slice: _reduxjs_toolkit.Slice<{}, {
1294
+ initHooks: (_: Draft<S>, { payload }: PayloadAction<HookListType>) => {
1295
+ DriveHook?: ({
1296
+ isActive: boolean;
1297
+ } & {
1298
+ drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>>;
1299
+ }) | undefined;
1300
+ calendarHook?: ({
1301
+ isActive: boolean;
1302
+ } & {
1303
+ label: string;
1304
+ }) | undefined;
1305
+ FileBankHook?: ({
1306
+ isActive: boolean;
1307
+ } & {
1308
+ orderBy: string;
1309
+ order: "DESC" | "ASC";
1310
+ }) | undefined;
1311
+ };
1312
+ }, "hooks">;
1313
+ actions: _reduxjs_toolkit.CaseReducerActions<{
1314
+ initHooks: (_: Draft<S>, { payload }: PayloadAction<HookListType>) => {
1315
+ DriveHook?: ({
1316
+ isActive: boolean;
1317
+ } & {
1318
+ drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>>;
1319
+ }) | undefined;
1320
+ calendarHook?: ({
1321
+ isActive: boolean;
1322
+ } & {
1323
+ label: string;
1324
+ }) | undefined;
1325
+ FileBankHook?: ({
1326
+ isActive: boolean;
1327
+ } & {
1328
+ orderBy: string;
1329
+ order: "DESC" | "ASC";
1330
+ }) | undefined;
1331
+ };
1332
+ }, "hooks">;
1333
+ selectors: {
1334
+ selectHooks: (state: HookRootState) => {
1335
+ DriveHook?: ({
1336
+ isActive: boolean;
1337
+ } & {
1338
+ drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>>;
1339
+ }) | undefined;
1340
+ calendarHook?: ({
1341
+ isActive: boolean;
1342
+ } & {
1343
+ label: string;
1344
+ }) | undefined;
1345
+ FileBankHook?: ({
1346
+ isActive: boolean;
1347
+ } & {
1348
+ orderBy: string;
1349
+ order: "DESC" | "ASC";
1350
+ }) | undefined;
1351
+ };
1352
+ selectHook: <T extends "DriveHook" | "calendarHook" | "FileBankHook">(state: HookRootState, hook: T) => {
1353
+ DriveHook?: ({
1354
+ isActive: boolean;
1355
+ } & {
1356
+ drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>>;
1357
+ }) | undefined;
1358
+ calendarHook?: ({
1359
+ isActive: boolean;
1360
+ } & {
1361
+ label: string;
1362
+ }) | undefined;
1363
+ FileBankHook?: ({
1364
+ isActive: boolean;
1365
+ } & {
1366
+ orderBy: string;
1367
+ order: "DESC" | "ASC";
1368
+ }) | undefined;
1369
+ }[T] | undefined;
1370
+ };
1371
+ utils: {
1372
+ buildDrivesArrayFromObject: (drives: Partial<Record<"drive_microsoft_graph" | "drive_dropbox" | "drive_google", boolean>> | undefined) => string[];
1373
+ };
1374
+ };
1375
+
1269
1376
  declare type MapCreateState = Loading$1 & {
1270
1377
  map: MapCreationFront$1;
1271
1378
  status: 'success' | 'error' | undefined;
@@ -1416,6 +1523,120 @@ declare const jland: {
1416
1523
  };
1417
1524
  };
1418
1525
 
1526
+ declare type MediaLibraryRootState = {
1527
+ mediaLibrary: MediaLibraryState;
1528
+ };
1529
+ declare type MediaLibraryState = {
1530
+ loading: 'idle' | 'pending';
1531
+ page: number;
1532
+ nbResults: number;
1533
+ folders: Array<MediaLibraryList>;
1534
+ unclassifiedFiles: {
1535
+ list: Array<MediaLibraryList>;
1536
+ page: number;
1537
+ totalPages: number;
1538
+ };
1539
+ mediaLibraryAccess: boolean;
1540
+ };
1541
+ declare const mediaLibrarySlice: _reduxjs_toolkit.Slice<MediaLibraryState, {
1542
+ setPage(state: Draft<S>, action: PayloadAction<number>): any;
1543
+ setFolderList(state: Draft<S>, action: PayloadAction<Array<MediaLibraryList>>): any;
1544
+ setFileUnclassifiedList(state: Draft<S>, action: PayloadAction<{
1545
+ list: Array<MediaLibraryList>;
1546
+ page: number;
1547
+ totalPages: number;
1548
+ }>): any;
1549
+ }, "mediaLibrary">;
1550
+ declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryList, jamespot_user_api.BaseMessages>, void, {
1551
+ dispatch: any;
1552
+ state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & MediaLibraryRootState;
1553
+ extra: {
1554
+ jApi: jamespot_user_api.JamespotUserApi;
1555
+ };
1556
+ rejectValue?: unknown;
1557
+ serializedErrorType?: unknown;
1558
+ pendingMeta?: unknown;
1559
+ fulfilledMeta?: unknown;
1560
+ rejectedMeta?: unknown;
1561
+ }>;
1562
+ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryList, jamespot_user_api.BaseMessages>, number, {
1563
+ dispatch: any;
1564
+ state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & MediaLibraryRootState;
1565
+ extra: {
1566
+ jApi: jamespot_user_api.JamespotUserApi;
1567
+ };
1568
+ rejectValue?: unknown;
1569
+ serializedErrorType?: unknown;
1570
+ pendingMeta?: unknown;
1571
+ fulfilledMeta?: unknown;
1572
+ rejectedMeta?: unknown;
1573
+ }>;
1574
+ declare const fetchMediaLibraryConfig: _reduxjs_toolkit.AsyncThunk<ApiWrapper<boolean, jamespot_user_api.BaseMessages>, void, {
1575
+ dispatch: any;
1576
+ state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & MediaLibraryRootState;
1577
+ extra: {
1578
+ jApi: jamespot_user_api.JamespotUserApi;
1579
+ };
1580
+ rejectValue?: unknown;
1581
+ serializedErrorType?: unknown;
1582
+ pendingMeta?: unknown;
1583
+ fulfilledMeta?: unknown;
1584
+ rejectedMeta?: unknown;
1585
+ }>;
1586
+ declare const mediaLibraryReducer: redux.Reducer<MediaLibraryState, redux.AnyAction>;
1587
+ declare const MediaLibrary: {
1588
+ slice: _reduxjs_toolkit.Slice<MediaLibraryState, {
1589
+ setPage(state: Draft<S>, action: PayloadAction<number>): any;
1590
+ setFolderList(state: Draft<S>, action: PayloadAction<Array<MediaLibraryList>>): any;
1591
+ setFileUnclassifiedList(state: Draft<S>, action: PayloadAction<{
1592
+ list: Array<MediaLibraryList>;
1593
+ page: number;
1594
+ totalPages: number;
1595
+ }>): any;
1596
+ }, "mediaLibrary">;
1597
+ actions: {
1598
+ fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryList, jamespot_user_api.BaseMessages>, void, {
1599
+ dispatch: any;
1600
+ state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & MediaLibraryRootState;
1601
+ extra: {
1602
+ jApi: jamespot_user_api.JamespotUserApi;
1603
+ };
1604
+ rejectValue?: unknown;
1605
+ serializedErrorType?: unknown;
1606
+ pendingMeta?: unknown;
1607
+ fulfilledMeta?: unknown;
1608
+ rejectedMeta?: unknown;
1609
+ }>;
1610
+ fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryList, jamespot_user_api.BaseMessages>, number, {
1611
+ dispatch: any;
1612
+ state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & MediaLibraryRootState;
1613
+ extra: {
1614
+ jApi: jamespot_user_api.JamespotUserApi;
1615
+ };
1616
+ rejectValue?: unknown;
1617
+ serializedErrorType?: unknown;
1618
+ pendingMeta?: unknown;
1619
+ fulfilledMeta?: unknown;
1620
+ rejectedMeta?: unknown;
1621
+ }>;
1622
+ fetchMediaLibraryConfig: _reduxjs_toolkit.AsyncThunk<ApiWrapper<boolean, jamespot_user_api.BaseMessages>, void, {
1623
+ dispatch: any;
1624
+ state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & MediaLibraryRootState;
1625
+ extra: {
1626
+ jApi: jamespot_user_api.JamespotUserApi;
1627
+ };
1628
+ rejectValue?: unknown;
1629
+ serializedErrorType?: unknown;
1630
+ pendingMeta?: unknown;
1631
+ fulfilledMeta?: unknown;
1632
+ rejectedMeta?: unknown;
1633
+ }>;
1634
+ };
1635
+ selectors: {
1636
+ selectMediaLibrary: (state: MediaLibraryRootState) => MediaLibraryState;
1637
+ };
1638
+ };
1639
+
1419
1640
  declare type ModelRootState = {
1420
1641
  entities: {
1421
1642
  models: EntityState<Model$1>;
@@ -1781,18 +2002,114 @@ declare const TinyMCE: {
1781
2002
  declare type UserCurrentRootState = {
1782
2003
  userCurrent: jUserList;
1783
2004
  };
1784
- declare const slice: _reduxjs_toolkit.Slice<jUserList, {
1785
- init: (_: Draft<S>, { payload }: PayloadAction<jUserList>) => jUserList;
2005
+ declare const slice: _reduxjs_toolkit.Slice<zod.objectOutputType<{
2006
+ type: zod.ZodString;
2007
+ id: zod.ZodNumber;
2008
+ mainType: zod.ZodString;
2009
+ uri: zod.ZodString;
2010
+ dateCreation: zod.ZodString;
2011
+ dateModified: zod.ZodString;
2012
+ title: zod.ZodString;
2013
+ _url: zod.ZodString;
2014
+ level: zod.ZodNativeEnum<{
2015
+ readonly ADMIN: 9;
2016
+ readonly USER: 5;
2017
+ readonly EXTERNAL: 3;
2018
+ readonly GUEST: 0;
2019
+ }>;
2020
+ active: zod.ZodNumber;
2021
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">, {
2022
+ init: (_: Draft<S>, { payload }: PayloadAction<jUserList>) => zod.objectOutputType<{
2023
+ type: zod.ZodString;
2024
+ id: zod.ZodNumber;
2025
+ mainType: zod.ZodString;
2026
+ uri: zod.ZodString;
2027
+ dateCreation: zod.ZodString;
2028
+ dateModified: zod.ZodString;
2029
+ title: zod.ZodString;
2030
+ _url: zod.ZodString;
2031
+ level: zod.ZodNativeEnum<{
2032
+ readonly ADMIN: 9;
2033
+ readonly USER: 5;
2034
+ readonly EXTERNAL: 3;
2035
+ readonly GUEST: 0;
2036
+ }>;
2037
+ active: zod.ZodNumber;
2038
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">;
1786
2039
  }, "userCurrent">;
1787
2040
  declare const UserCurrent: {
1788
- slice: _reduxjs_toolkit.Slice<jUserList, {
1789
- init: (_: Draft<S>, { payload }: PayloadAction<jUserList>) => jUserList;
2041
+ slice: _reduxjs_toolkit.Slice<zod.objectOutputType<{
2042
+ type: zod.ZodString;
2043
+ id: zod.ZodNumber;
2044
+ mainType: zod.ZodString;
2045
+ uri: zod.ZodString;
2046
+ dateCreation: zod.ZodString;
2047
+ dateModified: zod.ZodString;
2048
+ title: zod.ZodString;
2049
+ _url: zod.ZodString;
2050
+ level: zod.ZodNativeEnum<{
2051
+ readonly ADMIN: 9;
2052
+ readonly USER: 5;
2053
+ readonly EXTERNAL: 3;
2054
+ readonly GUEST: 0;
2055
+ }>;
2056
+ active: zod.ZodNumber;
2057
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">, {
2058
+ init: (_: Draft<S>, { payload }: PayloadAction<jUserList>) => zod.objectOutputType<{
2059
+ type: zod.ZodString;
2060
+ id: zod.ZodNumber;
2061
+ mainType: zod.ZodString;
2062
+ uri: zod.ZodString;
2063
+ dateCreation: zod.ZodString;
2064
+ dateModified: zod.ZodString;
2065
+ title: zod.ZodString;
2066
+ _url: zod.ZodString;
2067
+ level: zod.ZodNativeEnum<{
2068
+ readonly ADMIN: 9;
2069
+ readonly USER: 5;
2070
+ readonly EXTERNAL: 3;
2071
+ readonly GUEST: 0;
2072
+ }>;
2073
+ active: zod.ZodNumber;
2074
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">;
1790
2075
  }, "userCurrent">;
1791
2076
  actions: {
1792
- init: _reduxjs_toolkit.ActionCreatorWithPayload<jUserList, "userCurrent/init">;
2077
+ init: _reduxjs_toolkit.ActionCreatorWithPayload<zod.objectOutputType<{
2078
+ type: zod.ZodString;
2079
+ id: zod.ZodNumber;
2080
+ mainType: zod.ZodString;
2081
+ uri: zod.ZodString;
2082
+ dateCreation: zod.ZodString;
2083
+ dateModified: zod.ZodString;
2084
+ title: zod.ZodString;
2085
+ _url: zod.ZodString;
2086
+ level: zod.ZodNativeEnum<{
2087
+ readonly ADMIN: 9;
2088
+ readonly USER: 5;
2089
+ readonly EXTERNAL: 3;
2090
+ readonly GUEST: 0;
2091
+ }>;
2092
+ active: zod.ZodNumber;
2093
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">, "userCurrent/init">;
1793
2094
  };
1794
2095
  selectors: {
1795
- get: (state: UserCurrentRootState) => jUserList;
2096
+ get: (state: UserCurrentRootState) => zod.objectOutputType<{
2097
+ type: zod.ZodString;
2098
+ id: zod.ZodNumber;
2099
+ mainType: zod.ZodString;
2100
+ uri: zod.ZodString;
2101
+ dateCreation: zod.ZodString;
2102
+ dateModified: zod.ZodString;
2103
+ title: zod.ZodString;
2104
+ _url: zod.ZodString;
2105
+ level: zod.ZodNativeEnum<{
2106
+ readonly ADMIN: 9;
2107
+ readonly USER: 5;
2108
+ readonly EXTERNAL: 3;
2109
+ readonly GUEST: 0;
2110
+ }>;
2111
+ active: zod.ZodNumber;
2112
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">;
1796
2113
  };
1797
2114
  utils: {
1798
2115
  isAdmin: (userCurrent: jUserList) => boolean;
@@ -1975,7 +2292,7 @@ declare type CurrentStudioAppRootState = {
1975
2292
  };
1976
2293
 
1977
2294
  declare type StudioAppsListState = {
1978
- studioAppsList: StudioApplication[];
2295
+ studioAppsList?: StudioApplication[];
1979
2296
  loadingStudioAppsList: 'idle' | 'pending';
1980
2297
  deleteStudioAppStatus: 'idle' | 'pending';
1981
2298
  suspendStudioAppStatus: 'idle' | 'pending';
@@ -2137,4 +2454,4 @@ declare const studio: {
2137
2454
  };
2138
2455
  };
2139
2456
 
2140
- export { APP_STATUS_TYPE, AUDIENCE, AnimationSliceRootState, Animations, AnimationsRootState, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormUniqueList, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Comment, CommentRootState, ContentTypePropertyValue, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, JLandMapFront, JLandRootState, JType, MODE_EDIT, MODE_VIEW, MapCreationFront, MapExtraFieldsWithView, Model, ModelRootState, Network, NetworkRootState, Platform, PlatformRootState, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, animationsReducer, animationsSlice, deleteCurrentAnimation, fetchCurrentAnimation, fetchCurrentAnimationApp, jland, saveCurrentAnimation, slice, studio, toggleAnimationIsActive, updateWidgetContent, viewsList };
2457
+ export { APP_STATUS_TYPE, AUDIENCE, AnimationSliceRootState, Animations, AnimationsRootState, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormUniqueList, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Comment, CommentRootState, ContentTypePropertyValue, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, Hook, HookRootState, JLandMapFront, JLandRootState, JType, MODE_EDIT, MODE_VIEW, MapCreationFront, MapExtraFieldsWithView, MediaLibrary, MediaLibraryRootState, MediaLibraryState, Model, ModelRootState, Network, NetworkRootState, Platform, PlatformRootState, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, animationsReducer, animationsSlice, deleteCurrentAnimation, fetchCurrentAnimation, fetchCurrentAnimationApp, fetchMediaLibraryConfig, fetchMediaLibraryFolders, fetchMediaLibraryUnclassifiedFiles, jland, mediaLibraryReducer, mediaLibrarySlice, saveCurrentAnimation, slice, studio, toggleAnimationIsActive, updateWidgetContent, viewsList };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamespot-front-business",
3
- "version": "1.1.44",
3
+ "version": "1.1.46",
4
4
  "description": "typescript utils",
5
5
  "main": "dist/cjs.js",
6
6
  "module": "dist/esm.js",
@@ -39,7 +39,7 @@
39
39
  "dependencies": {
40
40
  "@reduxjs/toolkit": "1.9.0",
41
41
  "@types/uuid": "^9.0.8",
42
- "jamespot-user-api": "^1.0.154",
42
+ "jamespot-user-api": "^1.0.156",
43
43
  "react-redux": "7.2.9",
44
44
  "redux": "4.2.0",
45
45
  "uuid": "^9.0.1"