jamespot-front-business 1.1.29 → 1.1.31

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
@@ -2,7 +2,7 @@ import * as _reduxjs_toolkit from '@reduxjs/toolkit';
2
2
  import { EntityState, Action, Dispatch as Dispatch$1, PayloadAction } from '@reduxjs/toolkit';
3
3
  import * as _reduxjs_toolkit_dist_tsHelpers from '@reduxjs/toolkit/dist/tsHelpers';
4
4
  import * as jamespot_user_api from 'jamespot-user-api';
5
- import { ApplicationType, WidgetsRootState, JamespotUserApi, AudienceAutocomplete, 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, WidgetsState, CombinedWidgetContent, WidgetVector, WidgetStateProps } from 'jamespot-user-api';
5
+ import { ApplicationType, WidgetsRootState, JamespotUserApi, AudienceAutocomplete, StudioApplicationBase, Taxonomy, jObjectLittle, 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, WidgetsState, CombinedWidgetContent, WidgetVector, WidgetStateProps } from 'jamespot-user-api';
6
6
  import * as redux from 'redux';
7
7
  import { Dispatch } from 'redux';
8
8
  import React from 'react';
@@ -46,7 +46,7 @@ declare const Application: {
46
46
  selectors: _reduxjs_toolkit.EntitySelectors<ApplicationType, ApplicationRootState>;
47
47
  };
48
48
 
49
- declare type RootState = Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WidgetsRootState & WedocAppRootState & ShareRootState>;
49
+ declare type RootState = Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WidgetsRootState & WedocAppRootState>;
50
50
  declare type RootDispatch = Dispatch<Action>;
51
51
  declare type ThunkApiConfig<T> = {
52
52
  dispatch: any;
@@ -74,6 +74,413 @@ declare type MapCreationFront = {
74
74
  assignLicense: boolean;
75
75
  };
76
76
 
77
+ declare const AUDIENCE: {
78
+ readonly ALL: "1";
79
+ readonly CUSTOM: "0";
80
+ };
81
+ declare type StudioAudienceType = typeof AUDIENCE.ALL | typeof AUDIENCE.CUSTOM;
82
+ declare enum StatusType {
83
+ draft = "draft",
84
+ installed = "installed",
85
+ suspended = "suspended"
86
+ }
87
+ declare const APP_STATUS_TYPE: {
88
+ DRAFT: StatusType;
89
+ INSTALLED: StatusType;
90
+ SUSPENDED: StatusType;
91
+ };
92
+ declare type AppStatusKeys = keyof typeof APP_STATUS_TYPE;
93
+ declare type AppStatusType = StatusType.draft | StatusType.installed | StatusType.suspended;
94
+ interface StudioAppBase extends StudioApplicationBase {
95
+ articlesCount?: number;
96
+ }
97
+ interface StudioApplication {
98
+ idApp: string;
99
+ status: AppStatusType;
100
+ author?: string;
101
+ manifest: StudioAppManifest;
102
+ inWorkVersion?: StudioApplication;
103
+ }
104
+ interface AppManifest {
105
+ appShortName: string;
106
+ appName: string;
107
+ description: string;
108
+ author?: string;
109
+ typeLabel: string;
110
+ cssColor: string;
111
+ cssClass: {
112
+ label: string;
113
+ value: string;
114
+ };
115
+ version: number;
116
+ dateCreation: Date;
117
+ viewSolr: string;
118
+ checkAccess: boolean;
119
+ accessRightList?: string;
120
+ attrExposed: Array<string>;
121
+ }
122
+ interface StudioAppManifest {
123
+ appShortName: string;
124
+ appName: string;
125
+ description: string;
126
+ author?: string;
127
+ typeLabel: string;
128
+ cssColor: string;
129
+ cssClass: {
130
+ label: string;
131
+ value: string;
132
+ };
133
+ version: number;
134
+ dateCreation: string;
135
+ viewSolr: string;
136
+ checkAccess: boolean;
137
+ accessRightList?: string;
138
+ attrExposed: Array<string>;
139
+ articlesCount?: number;
140
+ }
141
+ interface AppForm {
142
+ formItems: AppFormItem[];
143
+ }
144
+ interface AppFormItem {
145
+ id: string;
146
+ type: AppFormItemType;
147
+ name: string;
148
+ labels?: AppLabelsType;
149
+ mandatory?: boolean;
150
+ fixed: boolean;
151
+ views: AppViewsType;
152
+ table?: string;
153
+ properties?: AppFormProperties;
154
+ }
155
+ declare type AppFormProperties = AbstractAppFormProperties;
156
+ interface AppLabelsType {
157
+ label?: AppLabelContentType;
158
+ description?: AppLabelContentType;
159
+ }
160
+ interface AppLabelContentType {
161
+ content: string;
162
+ mode: labelMode;
163
+ display?: string;
164
+ }
165
+ declare type labelMode = 'SERVER' | 'GLOBAL' | 'RESOURCES' | 'APP';
166
+ interface AppViewsType {
167
+ create: boolean;
168
+ popup: boolean;
169
+ edit: boolean;
170
+ list: boolean;
171
+ filter: boolean;
172
+ view: boolean;
173
+ }
174
+ interface AppFormDescriptionProperties {
175
+ labels: AppLabelsType;
176
+ mandatory: boolean;
177
+ }
178
+ interface AppFormTextProperties {
179
+ labels: AppLabelsType;
180
+ mandatory: boolean;
181
+ }
182
+ interface AppFormAddFileAttachmentProperties {
183
+ labels: AppLabelsType | undefined;
184
+ mandatory: boolean;
185
+ }
186
+ interface AppFormTextAreaProperties {
187
+ labels: AppLabelsType;
188
+ mandatory: boolean;
189
+ }
190
+ interface AppFormTextAreaHTMLProperties {
191
+ labels: AppLabelsType;
192
+ mandatory: boolean;
193
+ }
194
+ interface AppFormDateProperties {
195
+ labels: AppLabelsType;
196
+ mandatory: boolean;
197
+ }
198
+ interface AppFormDateTimeProperties {
199
+ labels: AppLabelsType;
200
+ mandatory: boolean;
201
+ }
202
+ interface AppFormURLProperties {
203
+ labels: AppLabelsType;
204
+ mandatory: boolean;
205
+ }
206
+ interface AppFormEmailProperties {
207
+ labels: AppLabelsType;
208
+ mandatory: boolean;
209
+ }
210
+ interface AppFormNumberProperties {
211
+ labels: AppLabelsType;
212
+ mandatory: boolean;
213
+ digits: boolean;
214
+ }
215
+ interface AppFormRangeProperties {
216
+ labels: AppLabelsType;
217
+ mandatory: boolean;
218
+ minMaxType: 'number';
219
+ min: string;
220
+ max: string;
221
+ }
222
+ interface AppFormCodeHTMLProperties {
223
+ code: HtmlValue;
224
+ }
225
+ declare type AppFormOptionsProperties = Array<AppFormOption>;
226
+ interface AppFormOption {
227
+ label: string;
228
+ mode?: labelMode;
229
+ value: string | number;
230
+ }
231
+ interface AppFormRadioProperties {
232
+ labels: AppLabelsType;
233
+ mandatory: boolean;
234
+ options: AppFormOptionsProperties;
235
+ }
236
+ interface AppFormSelectProperties {
237
+ labels: AppLabelsType;
238
+ mandatory: boolean;
239
+ multiple: boolean;
240
+ explain: boolean;
241
+ options: AppFormOptionsProperties;
242
+ hasDefaultValue: boolean;
243
+ defaultValue?: AppFormOption;
244
+ }
245
+ interface AppFormToggleProperties {
246
+ labels: AppLabelsType;
247
+ mandatory: boolean;
248
+ }
249
+ interface AppFormCheckboxProperties {
250
+ labels: AppLabelsType;
251
+ mandatory: boolean;
252
+ options: AppFormOptionsProperties;
253
+ }
254
+ interface AppFormTagsProperties {
255
+ labels: AppLabelsType;
256
+ mandatory: boolean;
257
+ taxonomy: Partial<Taxonomy> | false;
258
+ }
259
+ interface AppFormIdUserProperties {
260
+ labels: AppLabelsType;
261
+ mandatory: boolean;
262
+ }
263
+ interface AppFormUserLinkProperties {
264
+ labels: AppLabelsType;
265
+ mandatory: boolean;
266
+ }
267
+ interface AppFormContentLinkProperties {
268
+ labels: AppLabelsType;
269
+ mandatory: boolean;
270
+ contentType: {
271
+ label: string;
272
+ value: string;
273
+ };
274
+ }
275
+ interface AppFormAudienceProperties {
276
+ labels: AppLabelsType;
277
+ mandatory: boolean;
278
+ }
279
+ interface AbstractAppFormProperties {
280
+ labels?: AppLabelsType;
281
+ mandatory?: boolean;
282
+ explain?: boolean;
283
+ minMaxType?: 'number' | 'Date' | 'DateTime';
284
+ min?: string;
285
+ max?: string;
286
+ multiple?: boolean;
287
+ options?: AppFormOptionsProperties;
288
+ code?: HtmlValue;
289
+ hasDefaultValue?: boolean;
290
+ defaultValue?: AppFormFieldValueType;
291
+ taxonomy?: Partial<Taxonomy> | false;
292
+ digits?: boolean;
293
+ contentType?: {
294
+ label: string;
295
+ value: string;
296
+ };
297
+ }
298
+ interface HtmlValue {
299
+ html: string;
300
+ text: string;
301
+ }
302
+ interface AppFormItemsView {
303
+ view: ViewName;
304
+ orderChanged: boolean;
305
+ formItemRefs: AppFormItemRefInView[];
306
+ }
307
+ declare type ViewName = 'create' | 'popup' | 'edit' | 'list' | 'filter' | 'view';
308
+ interface AppFormItemRefInView {
309
+ ref: string | AppFormItemType;
310
+ fixedPos?: boolean;
311
+ fixedValue?: AppFormFieldValueType;
312
+ }
313
+ declare type AppFormFieldValueType = string | boolean | string[] | HtmlValue | AppFormOption | AppFormOption[] | AppInstallForType[] | jObjectLittle[];
314
+ declare type AppInstallForType = Partial<{
315
+ id: string;
316
+ uri: string;
317
+ shortUri: string;
318
+ title: string;
319
+ name: string;
320
+ mainType: string;
321
+ type: string;
322
+ label: string;
323
+ cssClass: string;
324
+ cssColor: string;
325
+ class: string;
326
+ Pseudo: string;
327
+ }>;
328
+ declare enum AppFormItemType {
329
+ TITLE = "TITLE",
330
+ IMAGE = "IMAGE",
331
+ DESCRIPTION = "DESCRIPTION",
332
+ IDUSER = "IDUSER",
333
+ PUBLISHTO = "PUBLISHTO",
334
+ SENDALERTTOSUBSCRIBERS = "SENDALERTTOSUBSCRIBERS",
335
+ RECEIVEACOPY = "RECEIVEACOPY",
336
+ TEXT = "TEXT",
337
+ TEXTAREA = "TEXTAREA",
338
+ TEXTAREAHTML = "TEXTAREAHTML",
339
+ DATE = "DATE",
340
+ DATETIME = "DATETIME",
341
+ RANGE = "RANGE",
342
+ NUMBER = "NUMBER",
343
+ URL = "URL",
344
+ EMAIL = "EMAIL",
345
+ SELECT = "SELECT",
346
+ CHECKBOX = "CHECKBOX",
347
+ TOGGLE = "TOGGLE",
348
+ RADIO = "RADIO",
349
+ TAGS = "TAGS",
350
+ ADDFILEATTACHMENT = "ADDFILEATTACHMENT",
351
+ AUDIENCE = "AUDIENCE",
352
+ CODEHTML = "CODEHTML",
353
+ DATECREATION = "DATECREATION",
354
+ USERLINK = "USERLINK",
355
+ CONTENTLINK = "CONTENTLINK"
356
+ }
357
+ declare const AppFormPrimaryList: AppFormItemType[];
358
+ declare const AppFormNotFields: AppFormItemType[];
359
+ declare const AppFormFixedHeadList: {
360
+ create: AppFormItemType[];
361
+ popup: AppFormItemType[];
362
+ edit: AppFormItemType[];
363
+ list: AppFormItemType[];
364
+ filter: AppFormItemType[];
365
+ view: AppFormItemType[];
366
+ };
367
+ declare const AppFormFixedFootList4View: {
368
+ create: AppFormItemType[];
369
+ popup: AppFormItemType[];
370
+ edit: AppFormItemType[];
371
+ list: AppFormItemType[];
372
+ filter: AppFormItemType[];
373
+ view: never[];
374
+ };
375
+ declare const AppFormFixedList: AppFormItemType[];
376
+ declare const AppFormUniqueList: AppFormItemType[];
377
+ declare const AppFormBannedFromViews: Map<AppFormItemType, ViewName[]>;
378
+ declare const AppFormNoFixedValueList: {
379
+ create: AppFormItemType[];
380
+ popup: AppFormItemType[];
381
+ edit: AppFormItemType[];
382
+ list: AppFormItemType[];
383
+ filter: AppFormItemType[];
384
+ view: AppFormItemType[];
385
+ };
386
+ declare const AppFormNoAsFieldList: AppFormItemType[];
387
+ declare const AppFormFieldOnlyInView: AppFormItemType[];
388
+ declare const AppFormNonPrimaryList: AppFormItemType[];
389
+ interface AppTypeServerModel {
390
+ typeName: string;
391
+ typeLabel: string;
392
+ author: string;
393
+ typeLabelPlural: string;
394
+ typeLabelLinkSingular: string;
395
+ typeLabelLinkPlural: string;
396
+ buttonLabel: string;
397
+ buttonLinkLabel: string;
398
+ buttonLinkUrl: string;
399
+ cssClass: string;
400
+ cssColor: string;
401
+ searchTab: string;
402
+ searchTabLabel: string;
403
+ jadAction: string;
404
+ supportedTypes: string;
405
+ mainType: string;
406
+ classImpl: string;
407
+ classCodeLocation: string;
408
+ capture: string;
409
+ tables: Array<AppTableModel>;
410
+ displays?: AppServerDisplaysModel;
411
+ }
412
+ interface AppTableModel {
413
+ tableType: string;
414
+ typeSqlName: string;
415
+ sqlNameColumn: string;
416
+ sqlValueColumn: string;
417
+ joinFieldName: string;
418
+ tablename: string;
419
+ idSqlName: string;
420
+ idFieldName: string;
421
+ attributes: Array<AppTableAttributesModel>;
422
+ }
423
+ interface AppTableAttributesModel {
424
+ attrType: string;
425
+ formatSolr: string;
426
+ label: string;
427
+ description: string;
428
+ mandatory: boolean;
429
+ taxonomy: Taxonomy;
430
+ display: boolean;
431
+ teaser: boolean;
432
+ col: string;
433
+ supportedTypes: string;
434
+ column: string;
435
+ name: string;
436
+ widget: AppAttrWidgetModel;
437
+ solr: AppAttrSolrModel;
438
+ }
439
+ interface AppAttrWidgetModel {
440
+ type: string;
441
+ typeFile: string;
442
+ format: string;
443
+ multiple: string;
444
+ digits: string;
445
+ params: any;
446
+ options: Array<string>;
447
+ }
448
+ interface AppAttrSolrModel {
449
+ type: string;
450
+ indexed: boolean;
451
+ stored: boolean;
452
+ required: boolean;
453
+ multiValued: boolean;
454
+ searchable: boolean;
455
+ used: boolean;
456
+ name: string;
457
+ }
458
+ interface AppServerDisplaysModel {
459
+ create?: AppServerDisplayModel;
460
+ 'create-popup': AppServerDisplayModel;
461
+ edit?: AppServerDisplayModel;
462
+ list?: AppServerDisplayModel;
463
+ display?: AppServerDisplayModel;
464
+ }
465
+ interface AppServerDisplayModel {
466
+ type: string;
467
+ view: string;
468
+ mode: string;
469
+ format: string;
470
+ composants: Array<AppServerViewModel>;
471
+ }
472
+ interface AppServerViewModel {
473
+ element: 'attr' | 'html';
474
+ composants: [];
475
+ name?: string;
476
+ format?: string;
477
+ html?: string;
478
+ }
479
+ declare const STUDIO_VIEW: {
480
+ SOLR: string;
481
+ NOT_SOLR: string;
482
+ };
483
+
77
484
  declare type Loading = {
78
485
  loading: 'idle' | 'pending';
79
486
  };
@@ -115,7 +522,7 @@ declare const AssetReservation: {
115
522
  actions: {
116
523
  fetchBookableAsset: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.BookableAssetList, jamespot_user_api.BaseMessages>, void, {
117
524
  dispatch: any;
118
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & BookableAssetRootState;
525
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & BookableAssetRootState;
119
526
  extra: {
120
527
  jApi: jamespot_user_api.JamespotUserApi;
121
528
  };
@@ -127,7 +534,7 @@ declare const AssetReservation: {
127
534
  }>;
128
535
  fetchConfiguration: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<jamespot_user_api.AssetReservationConfiguration, jamespot_user_api.BaseMessages>, void, {
129
536
  dispatch: any;
130
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & jamespot_user_api.AssetReservationConfiguration & Loading;
537
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & jamespot_user_api.AssetReservationConfiguration & Loading;
131
538
  extra: {
132
539
  jApi: jamespot_user_api.JamespotUserApi;
133
540
  };
@@ -139,7 +546,7 @@ declare const AssetReservation: {
139
546
  }>;
140
547
  fetchReservation: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.ReservationList, jamespot_user_api.BaseMessages>, "history" | undefined, {
141
548
  dispatch: any;
142
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & ReservationRootState;
549
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & ReservationRootState;
143
550
  extra: {
144
551
  jApi: jamespot_user_api.JamespotUserApi;
145
552
  };
@@ -277,7 +684,7 @@ declare const Bookmark: {
277
684
  resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
278
685
  fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.BookmarkRawList<jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle>, jamespot_user_api.BaseMessages>, void, {
279
686
  dispatch: any;
280
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & BookmarkRootState;
687
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & BookmarkRootState;
281
688
  extra: {
282
689
  jApi: jamespot_user_api.JamespotUserApi;
283
690
  };
@@ -294,7 +701,7 @@ declare const Bookmark: {
294
701
  requestId?: string | undefined;
295
702
  }, {
296
703
  dispatch: any;
297
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & BookmarkRootState;
704
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & BookmarkRootState;
298
705
  extra: {
299
706
  jApi: jamespot_user_api.JamespotUserApi;
300
707
  };
@@ -313,7 +720,7 @@ declare const Bookmark: {
313
720
  position: "after" | "before";
314
721
  }, {
315
722
  dispatch: any;
316
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & BookmarkRootState;
723
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & BookmarkRootState;
317
724
  extra: {
318
725
  jApi: jamespot_user_api.JamespotUserApi;
319
726
  };
@@ -330,7 +737,7 @@ declare const Bookmark: {
330
737
  requestId?: string | undefined;
331
738
  }, {
332
739
  dispatch: any;
333
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & BookmarkRootState;
740
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & BookmarkRootState;
334
741
  extra: {
335
742
  jApi: jamespot_user_api.JamespotUserApi;
336
743
  };
@@ -345,7 +752,7 @@ declare const Bookmark: {
345
752
  }>;
346
753
  editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<jamespot_user_api.BookmarkRawList<jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle>>, {
347
754
  dispatch: any;
348
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & BookmarkRootState;
755
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & BookmarkRootState;
349
756
  extra: {
350
757
  jApi: jamespot_user_api.JamespotUserApi;
351
758
  };
@@ -408,7 +815,7 @@ declare const Faq: {
408
815
  };
409
816
  actions: {
410
817
  fetchFaqConfig: _reduxjs_toolkit.AsyncThunk<{
411
- _web: "" | "0" | "1" | undefined;
818
+ _web: "" | "1" | "0" | undefined;
412
819
  appImage: string | {
413
820
  image: {
414
821
  id: string;
@@ -506,7 +913,7 @@ declare const jland: {
506
913
  retrieveAllMaps: boolean;
507
914
  }, {
508
915
  dispatch: any;
509
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & JLandRootState;
916
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & JLandRootState;
510
917
  extra: {
511
918
  jApi: jamespot_user_api.JamespotUserApi;
512
919
  };
@@ -521,7 +928,7 @@ declare const jland: {
521
928
  retrieveAllMaps: boolean;
522
929
  }, {
523
930
  dispatch: any;
524
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & JLandRootState;
931
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & JLandRootState;
525
932
  extra: {
526
933
  jApi: jamespot_user_api.JamespotUserApi;
527
934
  };
@@ -536,7 +943,7 @@ declare const jland: {
536
943
  retrieveAllMaps: boolean;
537
944
  }, {
538
945
  dispatch: any;
539
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & JLandRootState;
946
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & JLandRootState;
540
947
  extra: {
541
948
  jApi: jamespot_user_api.JamespotUserApi;
542
949
  };
@@ -551,7 +958,7 @@ declare const jland: {
551
958
  retrieveAllMaps: boolean;
552
959
  }, {
553
960
  dispatch: any;
554
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & JLandRootState;
961
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & JLandRootState;
555
962
  extra: {
556
963
  jApi: jamespot_user_api.JamespotUserApi;
557
964
  };
@@ -563,7 +970,7 @@ declare const jland: {
563
970
  }>;
564
971
  fetchJLandAvailableLicenses: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.AdminLicensesNotAssigned, void, {
565
972
  dispatch: any;
566
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & JLandRootState;
973
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & JLandRootState;
567
974
  extra: {
568
975
  jApi: jamespot_user_api.JamespotUserApi;
569
976
  };
@@ -578,7 +985,7 @@ declare const jland: {
578
985
  map: MapCreationFront;
579
986
  }, {
580
987
  dispatch: any;
581
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & JLandRootState;
988
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & JLandRootState;
582
989
  extra: {
583
990
  jApi: jamespot_user_api.JamespotUserApi;
584
991
  };
@@ -736,7 +1143,7 @@ declare const WedocApp: {
736
1143
  sort: "DESC" | "ASC";
737
1144
  }, {
738
1145
  dispatch: any;
739
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & WedocAppRootState;
1146
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & WedocAppRootState;
740
1147
  extra: {
741
1148
  jApi: jamespot_user_api.JamespotUserApi;
742
1149
  };
@@ -748,7 +1155,7 @@ declare const WedocApp: {
748
1155
  }>;
749
1156
  fetchRecentFiles: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<jamespot_user_api.PagingResults<jamespot_user_api.WedocFileType>, jamespot_user_api.BaseMessages>, void, {
750
1157
  dispatch: any;
751
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & WedocAppRootState;
1158
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & WedocAppRootState;
752
1159
  extra: {
753
1160
  jApi: jamespot_user_api.JamespotUserApi;
754
1161
  };
@@ -789,7 +1196,7 @@ declare const Share: {
789
1196
  idUser?: number;
790
1197
  }, {
791
1198
  dispatch: any;
792
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & ShareRootState;
1199
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & ShareRootState;
793
1200
  extra: {
794
1201
  jApi: jamespot_user_api.JamespotUserApi;
795
1202
  };
@@ -829,7 +1236,7 @@ declare const TVDisplay: {
829
1236
  actions: {
830
1237
  fetchChannels: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.PagingResults<jamespot_user_api.TVChannelList>, number | void, {
831
1238
  dispatch: any;
832
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & TVDisplayRootState;
1239
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & TVDisplayRootState;
833
1240
  extra: {
834
1241
  jApi: jamespot_user_api.JamespotUserApi;
835
1242
  };
@@ -843,7 +1250,7 @@ declare const TVDisplay: {
843
1250
  channel: Pick<jamespot_user_api.TVChannelList, "id">;
844
1251
  }, {
845
1252
  dispatch: any;
846
- state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & ShareRootState> & TVDisplayRootState;
1253
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & TVDisplayRootState;
847
1254
  extra: {
848
1255
  jApi: jamespot_user_api.JamespotUserApi;
849
1256
  };
@@ -1074,4 +1481,58 @@ declare const WidgetEditor: {
1074
1481
  };
1075
1482
  };
1076
1483
 
1077
- export { Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, EditorProps, EditorsRootState, EditorsState, Faq, FaqRootState, JLandMapFront, JLandRootState, MODE_EDIT, MODE_VIEW, MapCreationFront, Model, ModelRootState, Network, NetworkRootState, ReservationForm, RootDispatch, RootState, Share, ShareRootState, TVDisplay, TVDisplayRootState, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, jland, slice };
1484
+ declare type StudioAppsListState = {
1485
+ studioAppsList: StudioApplication[];
1486
+ loadingStudioAppsList: 'idle' | 'pending';
1487
+ deleteStudioAppStatus: 'idle' | 'pending';
1488
+ };
1489
+ declare type StudioAppsListRootState = {
1490
+ studioAppsList: StudioAppsListState;
1491
+ };
1492
+
1493
+ declare type StudioRootState = {
1494
+ studio: StudioAppsListRootState;
1495
+ };
1496
+ declare const studio: {
1497
+ slice: {
1498
+ name: "studio";
1499
+ reducer: redux.Reducer<redux.CombinedState<{
1500
+ studioAppsList: StudioAppsListState;
1501
+ }>, redux.AnyAction>;
1502
+ };
1503
+ actions: {
1504
+ fetchStudioAppsList: _reduxjs_toolkit.AsyncThunk<StudioAppBase[], undefined, {
1505
+ dispatch: any;
1506
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & StudioRootState;
1507
+ extra: {
1508
+ jApi: jamespot_user_api.JamespotUserApi;
1509
+ };
1510
+ rejectValue?: unknown;
1511
+ serializedErrorType?: unknown;
1512
+ pendingMeta?: unknown;
1513
+ fulfilledMeta?: unknown;
1514
+ rejectedMeta?: unknown;
1515
+ }>;
1516
+ deleteStudioApp: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.BaseMessages, {
1517
+ idApp: string;
1518
+ status: jamespot_user_api.StudioApplicationStatusEnumBased;
1519
+ }, {
1520
+ dispatch: any;
1521
+ state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState> & StudioRootState;
1522
+ extra: {
1523
+ jApi: jamespot_user_api.JamespotUserApi;
1524
+ };
1525
+ rejectValue?: unknown;
1526
+ serializedErrorType?: unknown;
1527
+ pendingMeta?: unknown;
1528
+ fulfilledMeta?: unknown;
1529
+ rejectedMeta?: unknown;
1530
+ }>;
1531
+ setAppsList: _reduxjs_toolkit.ActionCreatorWithPayload<any, "studioAppsList/setAppsList">;
1532
+ };
1533
+ selectors: {
1534
+ selectStudioAppsList: (state: StudioRootState) => StudioAppsListState;
1535
+ };
1536
+ };
1537
+
1538
+ export { APP_STATUS_TYPE, AUDIENCE, AbstractAppFormProperties, AppAttrSolrModel, AppAttrWidgetModel, AppForm, AppFormAddFileAttachmentProperties, AppFormAudienceProperties, AppFormBannedFromViews, AppFormCheckboxProperties, AppFormCodeHTMLProperties, AppFormContentLinkProperties, AppFormDateProperties, AppFormDateTimeProperties, AppFormDescriptionProperties, AppFormEmailProperties, AppFormFieldOnlyInView, AppFormFieldValueType, AppFormFixedFootList4View, AppFormFixedHeadList, AppFormFixedList, AppFormIdUserProperties, AppFormItem, AppFormItemRefInView, AppFormItemType, AppFormItemsView, AppFormNoAsFieldList, AppFormNoFixedValueList, AppFormNonPrimaryList, AppFormNotFields, AppFormNumberProperties, AppFormOption, AppFormOptionsProperties, AppFormPrimaryList, AppFormProperties, AppFormRadioProperties, AppFormRangeProperties, AppFormSelectProperties, AppFormTagsProperties, AppFormTextAreaHTMLProperties, AppFormTextAreaProperties, AppFormTextProperties, AppFormToggleProperties, AppFormURLProperties, AppFormUniqueList, AppFormUserLinkProperties, AppInstallForType, AppLabelContentType, AppLabelsType, AppManifest, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewsType, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, EditorProps, EditorsRootState, EditorsState, Faq, FaqRootState, HtmlValue, JLandMapFront, JLandRootState, MODE_EDIT, MODE_VIEW, MapCreationFront, Model, ModelRootState, Network, NetworkRootState, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, jland, slice, studio };