jamespot-user-api 1.0.186 → 1.0.188
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/documentation/assets/search.js +1 -1
- package/documentation/classes/AdminLicenseApi.html +14 -14
- package/documentation/classes/AdminStoreApi.html +1 -1
- package/documentation/classes/AdminUtilsApi.html +1 -1
- package/documentation/classes/JApplicationApi.html +8 -8
- package/documentation/classes/JArticleApi.html +1 -1
- package/documentation/classes/JAssetReservation.html +1 -1
- package/documentation/classes/JAudienceApi.html +1 -1
- package/documentation/classes/JBaseApi.html +1 -1
- package/documentation/classes/JBbbApi.html +1 -1
- package/documentation/classes/JBookmarkApi.html +1 -1
- package/documentation/classes/JBusinessNetworkingApi.html +1 -1
- package/documentation/classes/JCommunityApi.html +1 -1
- package/documentation/classes/JDatasourceApi.html +1 -1
- package/documentation/classes/JDiapazoneApi.html +1 -1
- package/documentation/classes/JFaqApi.html +1 -1
- package/documentation/classes/JFileApi.html +5 -5
- package/documentation/classes/JFilebankApi.html +1 -1
- package/documentation/classes/JGlobalApi.html +1 -1
- package/documentation/classes/JGroupApi.html +13 -13
- package/documentation/classes/JIAApi.html +1 -1
- package/documentation/classes/JLandApi.html +1 -1
- package/documentation/classes/JMessengerApi.html +1 -1
- package/documentation/classes/JObjectApi.html +1 -1
- package/documentation/classes/JSearchApi.html +6 -6
- package/documentation/classes/JShareApi.html +1 -1
- package/documentation/classes/JSocialActionApi.html +1 -1
- package/documentation/classes/JTaxonomyApi.html +2 -2
- package/documentation/classes/JUserApi.html +7 -7
- package/documentation/classes/JWedocApi.html +1 -1
- package/documentation/classes/JWidgetApi.html +1 -1
- package/documentation/classes/JamespotUserApi.html +1 -1
- package/documentation/classes/Network.html +1 -1
- package/documentation/classes/TVDisplayApi.html +1 -1
- package/documentation/classes/WindowBrowser.html +1 -1
- package/documentation/enums/BookmarkType.html +1 -1
- package/documentation/enums/Format.html +1 -1
- package/documentation/enums/GroupModerateStatus.html +1 -1
- package/documentation/enums/StudioApplicationStatus.html +1 -1
- package/documentation/enums/WidgetsName.html +1 -1
- package/documentation/index.html +1 -1
- package/documentation/interfaces/AccessRightObject.html +1 -1
- package/documentation/interfaces/ApiDefaultWrapper.html +1 -1
- package/documentation/interfaces/ApiWrapper.html +1 -1
- package/documentation/interfaces/BaseMessage.html +1 -1
- package/documentation/interfaces/FileBankProps.html +1 -1
- package/documentation/interfaces/FolderProps.html +1 -1
- package/documentation/interfaces/ListFilterSpec.html +1 -1
- package/documentation/interfaces/OF.html +1 -1
- package/documentation/interfaces/PagingResults.html +1 -1
- package/documentation/interfaces/RootFolderProps.html +1 -1
- package/documentation/interfaces/SpotProps.html +1 -1
- package/documentation/interfaces/TaxonomyCreate.html +1 -1
- package/documentation/interfaces/WidgetType.html +1 -1
- package/documentation/interfaces/WindowInterface.html +1 -1
- package/documentation/modules.html +11 -11
- package/lib/jamespot-user-api.js +1 -1
- package/lib/jamespot-user-api.js.map +1 -1
- package/lib/src/apis/group/group.d.ts +13 -1
- package/lib/src/apis/group/group.mock.d.ts +2 -1
- package/lib/src/apis/tvDisplay/tvDisplay.d.ts +48 -8
- package/lib/src/types/article.d.ts +360 -60
- package/lib/src/types/asei.d.ts +36 -6
- package/lib/src/types/assetReservation.d.ts +156 -26
- package/lib/src/types/businessContact.d.ts +24 -4
- package/lib/src/types/comment.d.ts +36 -6
- package/lib/src/types/faq.d.ts +192 -32
- package/lib/src/types/jLand.d.ts +60 -10
- package/lib/src/types/mediaLibrary.d.ts +36 -6
- package/lib/src/types/meeting.d.ts +108 -18
- package/lib/src/types/pollSurvey.d.ts +108 -18
- package/lib/src/types/quizz.d.ts +108 -18
- package/lib/src/types/socialEvent.d.ts +108 -18
- package/lib/src/types/support.d.ts +108 -18
- package/lib/src/types/surveyDate.d.ts +108 -18
- package/lib/src/types/tvDisplay.d.ts +900 -150
- package/lib/src/types/widgets/default.d.ts +206 -24
- package/lib/src/types/widgets/widgetCheckList.d.ts +52 -10
- package/lib/src/types/widgets.d.ts +442 -68
- package/lib/src/util/index.d.ts +2 -1
- package/lib/src/util/meeting.d.ts +222 -0
- package/lib/src/util/meeting.test.d.ts +1 -0
- package/lib/src/util/socialEvent.d.ts +222 -0
- package/lib/src/util/socialEvent.test.d.ts +1 -0
- package/lib/src/util/widget.d.ts +6 -1
- package/package.json +1 -1
- package/phpunitMock/objectListSpotArticles-default.json +156 -0
package/lib/src/util/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
export * from './ensure';
|
|
2
2
|
export * from './file';
|
|
3
|
+
export * from './group';
|
|
3
4
|
export * from './images';
|
|
4
5
|
export * from './network';
|
|
5
6
|
export * from './object';
|
|
7
|
+
export * from './socialEvent';
|
|
6
8
|
export * from './string';
|
|
7
9
|
export * from './taxonomy';
|
|
8
10
|
export * from './uri';
|
|
9
|
-
export * from './group';
|
|
10
11
|
export * from './widget';
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
export declare const ensureIsViewMeeting: (o: unknown) => o is {
|
|
2
|
+
type: string;
|
|
3
|
+
id: number;
|
|
4
|
+
mainType: string;
|
|
5
|
+
uri: string;
|
|
6
|
+
dateCreation: string;
|
|
7
|
+
dateModified: string;
|
|
8
|
+
title: string;
|
|
9
|
+
_url: string;
|
|
10
|
+
_user: import("..").jObjectBase & {
|
|
11
|
+
title: string;
|
|
12
|
+
_url: string;
|
|
13
|
+
} & {
|
|
14
|
+
[key: string]: string | number | null;
|
|
15
|
+
level: 0 | 3 | 5 | 9;
|
|
16
|
+
dateCreation: string;
|
|
17
|
+
dateModified: string;
|
|
18
|
+
};
|
|
19
|
+
_right: import("..").Rights;
|
|
20
|
+
_audience: (import("..").jUserLittle | {
|
|
21
|
+
type: string;
|
|
22
|
+
id: number;
|
|
23
|
+
mainType: string;
|
|
24
|
+
uri: string;
|
|
25
|
+
dateCreation: string;
|
|
26
|
+
dateModified: string;
|
|
27
|
+
title: string;
|
|
28
|
+
_url: string;
|
|
29
|
+
privacy: number;
|
|
30
|
+
category: number;
|
|
31
|
+
} | {
|
|
32
|
+
type: "folder" | "rootFolder";
|
|
33
|
+
id: number;
|
|
34
|
+
mainType: string;
|
|
35
|
+
uri: string;
|
|
36
|
+
title: string;
|
|
37
|
+
_url: string;
|
|
38
|
+
dateCreation?: string | undefined;
|
|
39
|
+
dateModified?: string | null | undefined;
|
|
40
|
+
folderColor?: string | undefined;
|
|
41
|
+
})[];
|
|
42
|
+
_attachedFiles: {
|
|
43
|
+
type: string;
|
|
44
|
+
id: number;
|
|
45
|
+
mainType: string;
|
|
46
|
+
uri: string;
|
|
47
|
+
dateCreation: string;
|
|
48
|
+
dateModified: string | null;
|
|
49
|
+
title: string;
|
|
50
|
+
_url: string;
|
|
51
|
+
mimetype: string;
|
|
52
|
+
size: number;
|
|
53
|
+
path?: string | undefined;
|
|
54
|
+
}[];
|
|
55
|
+
description?: string | null | undefined;
|
|
56
|
+
image?: {
|
|
57
|
+
width: number;
|
|
58
|
+
height: number;
|
|
59
|
+
} | undefined;
|
|
60
|
+
articleWidgets?: import("..").WidgetWrapperGeneric<({
|
|
61
|
+
layers?: string[] | undefined;
|
|
62
|
+
} & import("..").WidgetArticleAttachmentType) | ({
|
|
63
|
+
layers?: string[] | undefined;
|
|
64
|
+
} & import("..").WidgetArticleButtonType) | ({
|
|
65
|
+
layers?: string[] | undefined;
|
|
66
|
+
} & import("..").WidgetArticleGalleryType) | ({
|
|
67
|
+
layers?: string[] | undefined;
|
|
68
|
+
} & import("..").WidgetArticleImageType) | ({
|
|
69
|
+
layers?: string[] | undefined;
|
|
70
|
+
} & import("..").WidgetArticleTitleType) | ({
|
|
71
|
+
layers?: string[] | undefined;
|
|
72
|
+
} & import("..").WidgetArticleTextType) | ({
|
|
73
|
+
layers?: string[] | undefined;
|
|
74
|
+
} & import("..").WidgetArticleSliderType) | ({
|
|
75
|
+
layers?: string[] | undefined;
|
|
76
|
+
} & import("..").WidgetType<{
|
|
77
|
+
widgets?: import("..").WidgetBaseType[] | undefined;
|
|
78
|
+
arr?: import("..").WidgetCheckListContentArr[] | undefined;
|
|
79
|
+
css?: Record<string, string> | undefined;
|
|
80
|
+
edit?: boolean | undefined;
|
|
81
|
+
}>) | ({
|
|
82
|
+
layers?: string[] | undefined;
|
|
83
|
+
} & import("..").WidgetDatasourceTableType) | ({
|
|
84
|
+
layers?: string[] | undefined;
|
|
85
|
+
} & {
|
|
86
|
+
name: import("..").WidgetsName.ExcelDatasourceTable;
|
|
87
|
+
uniqid: string;
|
|
88
|
+
content: {
|
|
89
|
+
uri?: string | undefined;
|
|
90
|
+
limit?: number | boolean | undefined;
|
|
91
|
+
tableColumnsData?: {
|
|
92
|
+
name?: string | undefined;
|
|
93
|
+
label?: string | undefined;
|
|
94
|
+
isVisible?: boolean | undefined;
|
|
95
|
+
textEllipsis?: boolean | undefined;
|
|
96
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
97
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
98
|
+
}[] | undefined;
|
|
99
|
+
tableHeadColor?: string | undefined;
|
|
100
|
+
tableHeadTextColor?: string | undefined;
|
|
101
|
+
tableHeadIconColor?: string | undefined;
|
|
102
|
+
tableRowColor?: string | undefined;
|
|
103
|
+
tableRowTextColor?: string | undefined;
|
|
104
|
+
tableBorderRadius?: number | undefined;
|
|
105
|
+
tableSizedColumns?: boolean | undefined;
|
|
106
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
107
|
+
};
|
|
108
|
+
}) | ({
|
|
109
|
+
layers?: string[] | undefined;
|
|
110
|
+
} & import("..").WidgetPresenceType)>[] | undefined;
|
|
111
|
+
} & {
|
|
112
|
+
type: string;
|
|
113
|
+
id: number;
|
|
114
|
+
mainType: string;
|
|
115
|
+
uri: string;
|
|
116
|
+
dateCreation: string;
|
|
117
|
+
dateModified: string;
|
|
118
|
+
title: string;
|
|
119
|
+
_url: string;
|
|
120
|
+
place: string;
|
|
121
|
+
_user: import("..").jObjectBase & {
|
|
122
|
+
title: string;
|
|
123
|
+
_url: string;
|
|
124
|
+
} & {
|
|
125
|
+
[key: string]: string | number | null;
|
|
126
|
+
level: 0 | 3 | 5 | 9;
|
|
127
|
+
dateCreation: string;
|
|
128
|
+
dateModified: string;
|
|
129
|
+
};
|
|
130
|
+
_right: import("..").Rights;
|
|
131
|
+
dateStart: string;
|
|
132
|
+
dateEnd: string;
|
|
133
|
+
_audience: (import("..").jUserLittle | {
|
|
134
|
+
type: string;
|
|
135
|
+
id: number;
|
|
136
|
+
mainType: string;
|
|
137
|
+
uri: string;
|
|
138
|
+
dateCreation: string;
|
|
139
|
+
dateModified: string;
|
|
140
|
+
title: string;
|
|
141
|
+
_url: string;
|
|
142
|
+
privacy: number;
|
|
143
|
+
category: number;
|
|
144
|
+
} | {
|
|
145
|
+
type: "folder" | "rootFolder";
|
|
146
|
+
id: number;
|
|
147
|
+
mainType: string;
|
|
148
|
+
uri: string;
|
|
149
|
+
title: string;
|
|
150
|
+
_url: string;
|
|
151
|
+
dateCreation?: string | undefined;
|
|
152
|
+
dateModified?: string | null | undefined;
|
|
153
|
+
folderColor?: string | undefined;
|
|
154
|
+
})[];
|
|
155
|
+
address: string;
|
|
156
|
+
noGestion: boolean;
|
|
157
|
+
description?: string | null | undefined;
|
|
158
|
+
image?: {
|
|
159
|
+
width: number;
|
|
160
|
+
height: number;
|
|
161
|
+
} | undefined;
|
|
162
|
+
articleWidgets?: import("..").WidgetWrapperGeneric<({
|
|
163
|
+
layers?: string[] | undefined;
|
|
164
|
+
} & import("..").WidgetArticleAttachmentType) | ({
|
|
165
|
+
layers?: string[] | undefined;
|
|
166
|
+
} & import("..").WidgetArticleButtonType) | ({
|
|
167
|
+
layers?: string[] | undefined;
|
|
168
|
+
} & import("..").WidgetArticleGalleryType) | ({
|
|
169
|
+
layers?: string[] | undefined;
|
|
170
|
+
} & import("..").WidgetArticleImageType) | ({
|
|
171
|
+
layers?: string[] | undefined;
|
|
172
|
+
} & import("..").WidgetArticleTitleType) | ({
|
|
173
|
+
layers?: string[] | undefined;
|
|
174
|
+
} & import("..").WidgetArticleTextType) | ({
|
|
175
|
+
layers?: string[] | undefined;
|
|
176
|
+
} & import("..").WidgetArticleSliderType) | ({
|
|
177
|
+
layers?: string[] | undefined;
|
|
178
|
+
} & import("..").WidgetType<{
|
|
179
|
+
widgets?: import("..").WidgetBaseType[] | undefined;
|
|
180
|
+
arr?: import("..").WidgetCheckListContentArr[] | undefined;
|
|
181
|
+
css?: Record<string, string> | undefined;
|
|
182
|
+
edit?: boolean | undefined;
|
|
183
|
+
}>) | ({
|
|
184
|
+
layers?: string[] | undefined;
|
|
185
|
+
} & import("..").WidgetDatasourceTableType) | ({
|
|
186
|
+
layers?: string[] | undefined;
|
|
187
|
+
} & {
|
|
188
|
+
name: import("..").WidgetsName.ExcelDatasourceTable;
|
|
189
|
+
uniqid: string;
|
|
190
|
+
content: {
|
|
191
|
+
uri?: string | undefined;
|
|
192
|
+
limit?: number | boolean | undefined;
|
|
193
|
+
tableColumnsData?: {
|
|
194
|
+
name?: string | undefined;
|
|
195
|
+
label?: string | undefined;
|
|
196
|
+
isVisible?: boolean | undefined;
|
|
197
|
+
textEllipsis?: boolean | undefined;
|
|
198
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
199
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
200
|
+
}[] | undefined;
|
|
201
|
+
tableHeadColor?: string | undefined;
|
|
202
|
+
tableHeadTextColor?: string | undefined;
|
|
203
|
+
tableHeadIconColor?: string | undefined;
|
|
204
|
+
tableRowColor?: string | undefined;
|
|
205
|
+
tableRowTextColor?: string | undefined;
|
|
206
|
+
tableBorderRadius?: number | undefined;
|
|
207
|
+
tableSizedColumns?: boolean | undefined;
|
|
208
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
209
|
+
};
|
|
210
|
+
}) | ({
|
|
211
|
+
layers?: string[] | undefined;
|
|
212
|
+
} & import("..").WidgetPresenceType)>[] | undefined;
|
|
213
|
+
} & {
|
|
214
|
+
textColor: string;
|
|
215
|
+
allDay: null;
|
|
216
|
+
useQrcode: null;
|
|
217
|
+
bgColor: string;
|
|
218
|
+
agenda: string;
|
|
219
|
+
report: string;
|
|
220
|
+
reportFile: never[];
|
|
221
|
+
urlGestion?: string | null | undefined;
|
|
222
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
export declare const ensureIsViewEvent: (o: unknown) => o is {
|
|
2
|
+
type: string;
|
|
3
|
+
id: number;
|
|
4
|
+
mainType: string;
|
|
5
|
+
uri: string;
|
|
6
|
+
dateCreation: string;
|
|
7
|
+
dateModified: string;
|
|
8
|
+
title: string;
|
|
9
|
+
_url: string;
|
|
10
|
+
_user: import("..").jObjectBase & {
|
|
11
|
+
title: string;
|
|
12
|
+
_url: string;
|
|
13
|
+
} & {
|
|
14
|
+
[key: string]: string | number | null;
|
|
15
|
+
level: 0 | 3 | 5 | 9;
|
|
16
|
+
dateCreation: string;
|
|
17
|
+
dateModified: string;
|
|
18
|
+
};
|
|
19
|
+
_right: import("..").Rights;
|
|
20
|
+
_audience: (import("..").jUserLittle | {
|
|
21
|
+
type: string;
|
|
22
|
+
id: number;
|
|
23
|
+
mainType: string;
|
|
24
|
+
uri: string;
|
|
25
|
+
dateCreation: string;
|
|
26
|
+
dateModified: string;
|
|
27
|
+
title: string;
|
|
28
|
+
_url: string;
|
|
29
|
+
privacy: number;
|
|
30
|
+
category: number;
|
|
31
|
+
} | {
|
|
32
|
+
type: "folder" | "rootFolder";
|
|
33
|
+
id: number;
|
|
34
|
+
mainType: string;
|
|
35
|
+
uri: string;
|
|
36
|
+
title: string;
|
|
37
|
+
_url: string;
|
|
38
|
+
dateCreation?: string | undefined;
|
|
39
|
+
dateModified?: string | null | undefined;
|
|
40
|
+
folderColor?: string | undefined;
|
|
41
|
+
})[];
|
|
42
|
+
_attachedFiles: {
|
|
43
|
+
type: string;
|
|
44
|
+
id: number;
|
|
45
|
+
mainType: string;
|
|
46
|
+
uri: string;
|
|
47
|
+
dateCreation: string;
|
|
48
|
+
dateModified: string | null;
|
|
49
|
+
title: string;
|
|
50
|
+
_url: string;
|
|
51
|
+
mimetype: string;
|
|
52
|
+
size: number;
|
|
53
|
+
path?: string | undefined;
|
|
54
|
+
}[];
|
|
55
|
+
description?: string | null | undefined;
|
|
56
|
+
image?: {
|
|
57
|
+
width: number;
|
|
58
|
+
height: number;
|
|
59
|
+
} | undefined;
|
|
60
|
+
articleWidgets?: import("..").WidgetWrapperGeneric<({
|
|
61
|
+
layers?: string[] | undefined;
|
|
62
|
+
} & import("..").WidgetArticleAttachmentType) | ({
|
|
63
|
+
layers?: string[] | undefined;
|
|
64
|
+
} & import("..").WidgetArticleButtonType) | ({
|
|
65
|
+
layers?: string[] | undefined;
|
|
66
|
+
} & import("..").WidgetArticleGalleryType) | ({
|
|
67
|
+
layers?: string[] | undefined;
|
|
68
|
+
} & import("..").WidgetArticleImageType) | ({
|
|
69
|
+
layers?: string[] | undefined;
|
|
70
|
+
} & import("..").WidgetArticleTitleType) | ({
|
|
71
|
+
layers?: string[] | undefined;
|
|
72
|
+
} & import("..").WidgetArticleTextType) | ({
|
|
73
|
+
layers?: string[] | undefined;
|
|
74
|
+
} & import("..").WidgetArticleSliderType) | ({
|
|
75
|
+
layers?: string[] | undefined;
|
|
76
|
+
} & import("..").WidgetType<{
|
|
77
|
+
widgets?: import("..").WidgetBaseType[] | undefined;
|
|
78
|
+
arr?: import("..").WidgetCheckListContentArr[] | undefined;
|
|
79
|
+
css?: Record<string, string> | undefined;
|
|
80
|
+
edit?: boolean | undefined;
|
|
81
|
+
}>) | ({
|
|
82
|
+
layers?: string[] | undefined;
|
|
83
|
+
} & import("..").WidgetDatasourceTableType) | ({
|
|
84
|
+
layers?: string[] | undefined;
|
|
85
|
+
} & {
|
|
86
|
+
name: import("..").WidgetsName.ExcelDatasourceTable;
|
|
87
|
+
uniqid: string;
|
|
88
|
+
content: {
|
|
89
|
+
uri?: string | undefined;
|
|
90
|
+
limit?: number | boolean | undefined;
|
|
91
|
+
tableColumnsData?: {
|
|
92
|
+
name?: string | undefined;
|
|
93
|
+
label?: string | undefined;
|
|
94
|
+
isVisible?: boolean | undefined;
|
|
95
|
+
textEllipsis?: boolean | undefined;
|
|
96
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
97
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
98
|
+
}[] | undefined;
|
|
99
|
+
tableHeadColor?: string | undefined;
|
|
100
|
+
tableHeadTextColor?: string | undefined;
|
|
101
|
+
tableHeadIconColor?: string | undefined;
|
|
102
|
+
tableRowColor?: string | undefined;
|
|
103
|
+
tableRowTextColor?: string | undefined;
|
|
104
|
+
tableBorderRadius?: number | undefined;
|
|
105
|
+
tableSizedColumns?: boolean | undefined;
|
|
106
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
107
|
+
};
|
|
108
|
+
}) | ({
|
|
109
|
+
layers?: string[] | undefined;
|
|
110
|
+
} & import("..").WidgetPresenceType)>[] | undefined;
|
|
111
|
+
} & {
|
|
112
|
+
type: string;
|
|
113
|
+
id: number;
|
|
114
|
+
mainType: string;
|
|
115
|
+
uri: string;
|
|
116
|
+
dateCreation: string;
|
|
117
|
+
dateModified: string;
|
|
118
|
+
title: string;
|
|
119
|
+
_url: string;
|
|
120
|
+
place: string;
|
|
121
|
+
_user: import("..").jObjectBase & {
|
|
122
|
+
title: string;
|
|
123
|
+
_url: string;
|
|
124
|
+
} & {
|
|
125
|
+
[key: string]: string | number | null;
|
|
126
|
+
level: 0 | 3 | 5 | 9;
|
|
127
|
+
dateCreation: string;
|
|
128
|
+
dateModified: string;
|
|
129
|
+
};
|
|
130
|
+
_right: import("..").Rights;
|
|
131
|
+
dateStart: string;
|
|
132
|
+
dateEnd: string;
|
|
133
|
+
_audience: (import("..").jUserLittle | {
|
|
134
|
+
type: string;
|
|
135
|
+
id: number;
|
|
136
|
+
mainType: string;
|
|
137
|
+
uri: string;
|
|
138
|
+
dateCreation: string;
|
|
139
|
+
dateModified: string;
|
|
140
|
+
title: string;
|
|
141
|
+
_url: string;
|
|
142
|
+
privacy: number;
|
|
143
|
+
category: number;
|
|
144
|
+
} | {
|
|
145
|
+
type: "folder" | "rootFolder";
|
|
146
|
+
id: number;
|
|
147
|
+
mainType: string;
|
|
148
|
+
uri: string;
|
|
149
|
+
title: string;
|
|
150
|
+
_url: string;
|
|
151
|
+
dateCreation?: string | undefined;
|
|
152
|
+
dateModified?: string | null | undefined;
|
|
153
|
+
folderColor?: string | undefined;
|
|
154
|
+
})[];
|
|
155
|
+
address: string;
|
|
156
|
+
noGestion: boolean;
|
|
157
|
+
description?: string | null | undefined;
|
|
158
|
+
image?: {
|
|
159
|
+
width: number;
|
|
160
|
+
height: number;
|
|
161
|
+
} | undefined;
|
|
162
|
+
articleWidgets?: import("..").WidgetWrapperGeneric<({
|
|
163
|
+
layers?: string[] | undefined;
|
|
164
|
+
} & import("..").WidgetArticleAttachmentType) | ({
|
|
165
|
+
layers?: string[] | undefined;
|
|
166
|
+
} & import("..").WidgetArticleButtonType) | ({
|
|
167
|
+
layers?: string[] | undefined;
|
|
168
|
+
} & import("..").WidgetArticleGalleryType) | ({
|
|
169
|
+
layers?: string[] | undefined;
|
|
170
|
+
} & import("..").WidgetArticleImageType) | ({
|
|
171
|
+
layers?: string[] | undefined;
|
|
172
|
+
} & import("..").WidgetArticleTitleType) | ({
|
|
173
|
+
layers?: string[] | undefined;
|
|
174
|
+
} & import("..").WidgetArticleTextType) | ({
|
|
175
|
+
layers?: string[] | undefined;
|
|
176
|
+
} & import("..").WidgetArticleSliderType) | ({
|
|
177
|
+
layers?: string[] | undefined;
|
|
178
|
+
} & import("..").WidgetType<{
|
|
179
|
+
widgets?: import("..").WidgetBaseType[] | undefined;
|
|
180
|
+
arr?: import("..").WidgetCheckListContentArr[] | undefined;
|
|
181
|
+
css?: Record<string, string> | undefined;
|
|
182
|
+
edit?: boolean | undefined;
|
|
183
|
+
}>) | ({
|
|
184
|
+
layers?: string[] | undefined;
|
|
185
|
+
} & import("..").WidgetDatasourceTableType) | ({
|
|
186
|
+
layers?: string[] | undefined;
|
|
187
|
+
} & {
|
|
188
|
+
name: import("..").WidgetsName.ExcelDatasourceTable;
|
|
189
|
+
uniqid: string;
|
|
190
|
+
content: {
|
|
191
|
+
uri?: string | undefined;
|
|
192
|
+
limit?: number | boolean | undefined;
|
|
193
|
+
tableColumnsData?: {
|
|
194
|
+
name?: string | undefined;
|
|
195
|
+
label?: string | undefined;
|
|
196
|
+
isVisible?: boolean | undefined;
|
|
197
|
+
textEllipsis?: boolean | undefined;
|
|
198
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
199
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
200
|
+
}[] | undefined;
|
|
201
|
+
tableHeadColor?: string | undefined;
|
|
202
|
+
tableHeadTextColor?: string | undefined;
|
|
203
|
+
tableHeadIconColor?: string | undefined;
|
|
204
|
+
tableRowColor?: string | undefined;
|
|
205
|
+
tableRowTextColor?: string | undefined;
|
|
206
|
+
tableBorderRadius?: number | undefined;
|
|
207
|
+
tableSizedColumns?: boolean | undefined;
|
|
208
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
209
|
+
};
|
|
210
|
+
}) | ({
|
|
211
|
+
layers?: string[] | undefined;
|
|
212
|
+
} & import("..").WidgetPresenceType)>[] | undefined;
|
|
213
|
+
} & {
|
|
214
|
+
textColor: string;
|
|
215
|
+
allDay: null;
|
|
216
|
+
useQrcode: null;
|
|
217
|
+
bgColor: string;
|
|
218
|
+
socialEventUseCeiling: null;
|
|
219
|
+
socialEventCeiling: null;
|
|
220
|
+
hideFromCalendar: null;
|
|
221
|
+
urlGestion?: string | null | undefined;
|
|
222
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/lib/src/util/widget.d.ts
CHANGED
|
@@ -15,7 +15,12 @@ export declare const ensureWidgetWrapperProps: (o: unknown) => o is import("../t
|
|
|
15
15
|
layers?: string[] | undefined;
|
|
16
16
|
} & WidgetArticleSliderType) | ({
|
|
17
17
|
layers?: string[] | undefined;
|
|
18
|
-
} & import("../types").WidgetType<
|
|
18
|
+
} & import("../types").WidgetType<{
|
|
19
|
+
widgets?: import("../types").WidgetBaseType[] | undefined;
|
|
20
|
+
arr?: import("../types").WidgetCheckListContentArr[] | undefined;
|
|
21
|
+
css?: Record<string, string> | undefined;
|
|
22
|
+
edit?: boolean | undefined;
|
|
23
|
+
}>) | ({
|
|
19
24
|
layers?: string[] | undefined;
|
|
20
25
|
} & WidgetDatasourceTableType) | ({
|
|
21
26
|
layers?: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
{
|
|
2
|
+
"o": "objectList",
|
|
3
|
+
"f": "spotArticles",
|
|
4
|
+
"error": 0,
|
|
5
|
+
"messages": [],
|
|
6
|
+
"result": {
|
|
7
|
+
"limit": 10,
|
|
8
|
+
"page": 1,
|
|
9
|
+
"cnt": 3,
|
|
10
|
+
"data": [
|
|
11
|
+
{
|
|
12
|
+
"id": 342,
|
|
13
|
+
"mainType": "article",
|
|
14
|
+
"type": "mpArticle",
|
|
15
|
+
"uri": "mpArticle/342",
|
|
16
|
+
"dateCreation": "2024-09-30 12:12:09",
|
|
17
|
+
"dateModified": "2024-09-30 12:10:09",
|
|
18
|
+
"title": "tags : French and Vietnamese",
|
|
19
|
+
"_url": "/article/342",
|
|
20
|
+
"_right": {
|
|
21
|
+
"create": true,
|
|
22
|
+
"read": true,
|
|
23
|
+
"publish": false,
|
|
24
|
+
"administrate": true,
|
|
25
|
+
"update": true,
|
|
26
|
+
"delete": true,
|
|
27
|
+
"comment": true,
|
|
28
|
+
"member": true
|
|
29
|
+
},
|
|
30
|
+
"description": "<div class='content-html'></div>",
|
|
31
|
+
"_user": {
|
|
32
|
+
"id": 2,
|
|
33
|
+
"mainType": "user",
|
|
34
|
+
"type": "user",
|
|
35
|
+
"uri": "user/2",
|
|
36
|
+
"dateCreation": "2019-04-01 15:59:41",
|
|
37
|
+
"dateModified": "2019-07-19 09:40:03",
|
|
38
|
+
"title": "Browser.Stack",
|
|
39
|
+
"_url": "/user/2",
|
|
40
|
+
"level": 9
|
|
41
|
+
},
|
|
42
|
+
"_audience": [
|
|
43
|
+
{
|
|
44
|
+
"id": 31,
|
|
45
|
+
"mainType": "spot",
|
|
46
|
+
"type": "spot",
|
|
47
|
+
"uri": "spot/31",
|
|
48
|
+
"dateCreation": "2024-09-30 12:10:07",
|
|
49
|
+
"dateModified": "2024-09-30 12:10:09",
|
|
50
|
+
"title": "My newSpot for testObjectListSpotArticles",
|
|
51
|
+
"_url": "/group/31",
|
|
52
|
+
"privacy": 1,
|
|
53
|
+
"category": 1
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"articleWidgets": []
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": 340,
|
|
60
|
+
"mainType": "article",
|
|
61
|
+
"type": "mpArticle",
|
|
62
|
+
"uri": "mpArticle/340",
|
|
63
|
+
"dateCreation": "2024-09-30 12:11:09",
|
|
64
|
+
"dateModified": "2024-09-30 12:10:09",
|
|
65
|
+
"title": "tags : English",
|
|
66
|
+
"_url": "/article/340",
|
|
67
|
+
"_right": {
|
|
68
|
+
"create": true,
|
|
69
|
+
"read": true,
|
|
70
|
+
"publish": false,
|
|
71
|
+
"administrate": true,
|
|
72
|
+
"update": true,
|
|
73
|
+
"delete": true,
|
|
74
|
+
"comment": true,
|
|
75
|
+
"member": true
|
|
76
|
+
},
|
|
77
|
+
"description": "<div class='content-html'></div>",
|
|
78
|
+
"_user": {
|
|
79
|
+
"id": 2,
|
|
80
|
+
"mainType": "user",
|
|
81
|
+
"type": "user",
|
|
82
|
+
"uri": "user/2",
|
|
83
|
+
"dateCreation": "2019-04-01 15:59:41",
|
|
84
|
+
"dateModified": "2019-07-19 09:40:03",
|
|
85
|
+
"title": "Browser.Stack",
|
|
86
|
+
"_url": "/user/2",
|
|
87
|
+
"level": 9
|
|
88
|
+
},
|
|
89
|
+
"_audience": [
|
|
90
|
+
{
|
|
91
|
+
"id": 31,
|
|
92
|
+
"mainType": "spot",
|
|
93
|
+
"type": "spot",
|
|
94
|
+
"uri": "spot/31",
|
|
95
|
+
"dateCreation": "2024-09-30 12:10:07",
|
|
96
|
+
"dateModified": "2024-09-30 12:10:09",
|
|
97
|
+
"title": "My newSpot for testObjectListSpotArticles",
|
|
98
|
+
"_url": "/group/31",
|
|
99
|
+
"privacy": 1,
|
|
100
|
+
"category": 1
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"articleWidgets": []
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": 338,
|
|
107
|
+
"mainType": "article",
|
|
108
|
+
"type": "mpArticle",
|
|
109
|
+
"uri": "mpArticle/338",
|
|
110
|
+
"dateCreation": "2024-09-30 12:10:09",
|
|
111
|
+
"dateModified": "2024-09-30 12:10:09",
|
|
112
|
+
"title": "no tags",
|
|
113
|
+
"_url": "/article/338",
|
|
114
|
+
"_right": {
|
|
115
|
+
"create": true,
|
|
116
|
+
"read": true,
|
|
117
|
+
"publish": false,
|
|
118
|
+
"administrate": true,
|
|
119
|
+
"update": true,
|
|
120
|
+
"delete": true,
|
|
121
|
+
"comment": true,
|
|
122
|
+
"member": true
|
|
123
|
+
},
|
|
124
|
+
"description": "<div class='content-html'></div>",
|
|
125
|
+
"_user": {
|
|
126
|
+
"id": 2,
|
|
127
|
+
"mainType": "user",
|
|
128
|
+
"type": "user",
|
|
129
|
+
"uri": "user/2",
|
|
130
|
+
"dateCreation": "2019-04-01 15:59:41",
|
|
131
|
+
"dateModified": "2019-07-19 09:40:03",
|
|
132
|
+
"title": "Browser.Stack",
|
|
133
|
+
"_url": "/user/2",
|
|
134
|
+
"level": 9
|
|
135
|
+
},
|
|
136
|
+
"_audience": [
|
|
137
|
+
{
|
|
138
|
+
"id": 31,
|
|
139
|
+
"mainType": "spot",
|
|
140
|
+
"type": "spot",
|
|
141
|
+
"uri": "spot/31",
|
|
142
|
+
"dateCreation": "2024-09-30 12:10:07",
|
|
143
|
+
"dateModified": "2024-09-30 12:10:09",
|
|
144
|
+
"title": "My newSpot for testObjectListSpotArticles",
|
|
145
|
+
"_url": "/group/31",
|
|
146
|
+
"privacy": 1,
|
|
147
|
+
"category": 1
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"articleWidgets": []
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"facets": null,
|
|
154
|
+
"idQuery": null
|
|
155
|
+
}
|
|
156
|
+
}
|