jamespot-user-api 1.0.119 → 1.0.121
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 +11 -11
- 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/JBookmarkApi.html +1 -1
- package/documentation/classes/JCommunityApi.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/JGroupApi.html +9 -9
- package/documentation/classes/JLandApi.html +1 -1
- package/documentation/classes/JMessengerApi.html +1 -1
- package/documentation/classes/JSearchApi.html +6 -6
- package/documentation/classes/JShareApi.html +1 -1
- package/documentation/classes/JTaxonomyApi.html +2 -2
- package/documentation/classes/JUserApi.html +4 -4
- package/documentation/classes/JWedocApi.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/StudioApplicationStatus.html +1 -1
- package/documentation/index.html +1 -1
- package/documentation/interfaces/AccessRightObject.html +1 -1
- package/documentation/interfaces/AdminLicenseUser.html +1 -1
- package/documentation/interfaces/ApiDefaultWrapper.html +1 -1
- package/documentation/interfaces/ApiWrapper.html +1 -1
- package/documentation/interfaces/BaseAutocomplete.html +1 -1
- package/documentation/interfaces/BaseMessage.html +1 -1
- package/documentation/interfaces/Category.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/ObjectListProps.html +1 -1
- package/documentation/interfaces/PagingResults.html +1 -1
- package/documentation/interfaces/RootFolderProps.html +1 -1
- package/documentation/interfaces/SearchCategoryModel.html +1 -1
- package/documentation/interfaces/SearchCategoryValue.html +1 -1
- package/documentation/interfaces/SearchConfig.html +1 -1
- package/documentation/interfaces/SearchFacetModel.html +1 -1
- package/documentation/interfaces/SearchFacetValueModel.html +1 -1
- package/documentation/interfaces/SearchQuery.html +1 -1
- package/documentation/interfaces/SearchQueryFilterModel.html +1 -1
- package/documentation/interfaces/SearchQueryOption.html +1 -1
- package/documentation/interfaces/SearchQueryResult.html +1 -1
- package/documentation/interfaces/SearchQuerySortModel.html +1 -1
- package/documentation/interfaces/SearchResultCatProps.html +1 -1
- package/documentation/interfaces/SearchResultPropsApp.html +1 -1
- package/documentation/interfaces/SearchResultPropsObject.html +1 -1
- package/documentation/interfaces/SpotProps.html +1 -1
- package/documentation/interfaces/Taxonomy.html +1 -1
- package/documentation/interfaces/TaxonomyCreate.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/faq/faq.d.ts +12 -4
- package/lib/src/apis/faq/faq.mock.d.ts +18 -4
- package/lib/src/apis/filebank.d.ts +7 -7
- package/lib/src/types/faq.d.ts +39 -6
- package/lib/src/types/utils.d.ts +6 -2
- package/package.json +1 -1
- package/phpunitMock/articleCreate-faq-category.json +3 -4
- package/phpunitMock/articleGet-faq-category.json +6 -7
- package/phpunitMock/articleUpdate-faq-category.json +3 -4
- package/phpunitMock/faqAccess-success.json +9 -0
- package/phpunitMock/faqAddTheme-success.json +48 -0
- package/phpunitMock/faqCheckItem-success.json +89 -0
- package/phpunitMock/faqDeleteTheme-success.json +48 -0
- package/phpunitMock/faqSetTheme-success.json +11 -0
- package/phpunitMock/objectListFaqQueryList-faq-success.json +192 -0
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
import { JBaseApi } from '../base';
|
|
2
|
-
import { ApiWrapper, CreateFaqCategory, EditFaqCategory,
|
|
2
|
+
import { ApiWrapper, CreateFaqCategory, CreateFaqTheme, EditFaqCategory, ExtendedFaqCategory, FaqAccess, FaqList, FaqView, FaqHookProperties, FaqItemList, FaqTaxonomy, jArticleLittle, Orders, PagingResults, DeleteFaqTheme, EditFaqTheme, ApiDefaultWrapper, Format } from '../../types';
|
|
3
3
|
export declare class JFaqApi extends JBaseApi {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
getCategoriesList<T extends ExtendedFaqCategory<FaqList> = ExtendedFaqCategory<FaqList>>(format?: Format, orders?: Orders): Promise<ApiWrapper<PagingResults<T>>>;
|
|
5
|
+
createCategory<T extends jArticleLittle = FaqView>(params: Omit<CreateFaqCategory, 'type'>, format?: Format): Promise<ApiWrapper<Array<T>>>;
|
|
6
|
+
updateCategory<T extends jArticleLittle = FaqView>(params: Omit<EditFaqCategory, 'type'>, format?: Format): Promise<ApiWrapper<T>>;
|
|
7
|
+
getCategory<T extends jArticleLittle = FaqView>(id: number, format?: Format): Promise<ApiWrapper<T>>;
|
|
7
8
|
deleteCategory(id: number): Promise<ApiWrapper<boolean>>;
|
|
9
|
+
checkItem<T extends FaqItemList>(query: string, page?: number, format?: Format): Promise<ApiWrapper<PagingResults<T & {
|
|
10
|
+
_percent: number;
|
|
11
|
+
}>>>;
|
|
8
12
|
getTaxonomy(): Promise<ApiWrapper<FaqTaxonomy>>;
|
|
9
13
|
getHookProperties(properties?: Array<keyof FaqHookProperties>): Promise<ApiWrapper<FaqHookProperties>>;
|
|
14
|
+
getAccess(): Promise<ApiWrapper<FaqAccess>>;
|
|
15
|
+
createTheme<T extends jArticleLittle = FaqView>(params: CreateFaqTheme, format?: Format): Promise<ApiWrapper<T>>;
|
|
16
|
+
deleteTheme<T extends jArticleLittle = FaqView>(params: DeleteFaqTheme, format?: Format): Promise<ApiWrapper<T>>;
|
|
17
|
+
editTheme(params: EditFaqTheme, format?: Format): Promise<ApiDefaultWrapper>;
|
|
10
18
|
}
|
|
@@ -1,7 +1,21 @@
|
|
|
1
|
-
import { ApiWrapper,
|
|
2
|
-
export declare const faqCreateCategory: ApiWrapper<
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { ApiWrapper, ExtendedFaqCategory, FaqAccess, FaqList, FaqView, FaqHookProperties, FaqItemList, FaqTaxonomy, PagingResults, ApiDefaultWrapper } from '../../types';
|
|
2
|
+
export declare const faqCreateCategory: ApiWrapper<(FaqView & {
|
|
3
|
+
processContext: null;
|
|
4
|
+
})[]>;
|
|
5
|
+
export declare const faqGetCategory: ApiWrapper<FaqView>;
|
|
6
|
+
export declare const faqUpdateCategory: ApiWrapper<FaqView>;
|
|
5
7
|
export declare const faqDeleteCategory: ApiWrapper<boolean>;
|
|
6
8
|
export declare const faqGetTaxonomy: ApiWrapper<FaqTaxonomy>;
|
|
7
9
|
export declare const faqGetHookProperties: ApiWrapper<FaqHookProperties>;
|
|
10
|
+
export declare const faqGetAccess: ApiWrapper<FaqAccess>;
|
|
11
|
+
export declare const faqGetCategoriesList: ApiWrapper<PagingResults<ExtendedFaqCategory<FaqList>>>;
|
|
12
|
+
export declare const faqCheckItem: ApiWrapper<PagingResults<FaqItemList & {
|
|
13
|
+
_percent: number;
|
|
14
|
+
}>>;
|
|
15
|
+
export declare const faqCreateTheme: ApiWrapper<FaqView & {
|
|
16
|
+
processContext: null;
|
|
17
|
+
}>;
|
|
18
|
+
export declare const faqDeleteTheme: ApiWrapper<FaqView & {
|
|
19
|
+
processContext: null;
|
|
20
|
+
}>;
|
|
21
|
+
export declare const faqEditTheme: ApiDefaultWrapper;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { JBaseApi } from './base';
|
|
2
|
-
import { ApiPagingResults, ApiWrapper,
|
|
2
|
+
import { ApiPagingResults, ApiWrapper, jArticleList, jFileLittle, jObjectLittle, Rights } from '../types';
|
|
3
3
|
export interface RootFolderProps {
|
|
4
4
|
id: number;
|
|
5
5
|
title: string;
|
|
6
6
|
uri: string;
|
|
7
|
-
type:
|
|
7
|
+
type: 'rootFolder';
|
|
8
8
|
mainType: string;
|
|
9
9
|
folderColor?: string;
|
|
10
10
|
}
|
|
@@ -31,12 +31,12 @@ export type FolderType = jObjectLittle & {
|
|
|
31
31
|
mainType: string;
|
|
32
32
|
folderColor?: string;
|
|
33
33
|
parentURI?: string;
|
|
34
|
+
_nbItems: number;
|
|
35
|
+
type: 'folder' | 'rootFolder';
|
|
34
36
|
};
|
|
35
|
-
export type
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
export type FileBankDocument = jObjectBase & {
|
|
39
|
-
_attachedFiles: jFileBase[];
|
|
37
|
+
export type FileBankDocument = jArticleList & {
|
|
38
|
+
_attachedFiles: jFileLittle[];
|
|
39
|
+
type: 'document';
|
|
40
40
|
};
|
|
41
41
|
export declare class JFilebankApi extends JBaseApi {
|
|
42
42
|
getBanks(format?: string): Promise<Array<FileBankProps>>;
|
package/lib/src/types/faq.d.ts
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Format, jArticleList, MaybeWithToken } from './utils';
|
|
2
2
|
import { ArticleCreation, AutoCompleteConcept } from '../apis';
|
|
3
3
|
import { ImageSize } from './file';
|
|
4
4
|
import { AudienceAutocomplete } from './autocomplete';
|
|
5
|
-
export type
|
|
6
|
-
faqColor?: string;
|
|
5
|
+
export type FaqView = FaqList & {
|
|
7
6
|
_audience: AudienceAutocomplete[];
|
|
8
|
-
image?: ImageSize | null;
|
|
9
7
|
tags?: AutoCompleteConcept[];
|
|
10
8
|
type: 'faq';
|
|
11
9
|
isWeb: boolean;
|
|
12
10
|
};
|
|
11
|
+
export type FaqList = jArticleList & {
|
|
12
|
+
faqColor?: string;
|
|
13
|
+
image?: ImageSize;
|
|
14
|
+
};
|
|
15
|
+
export type ExtendedFaqCategory<T extends FaqList> = T & {
|
|
16
|
+
_extend: {
|
|
17
|
+
itemsCount: number;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export type FaqItemList = jArticleList & {
|
|
21
|
+
type: 'faqItem';
|
|
22
|
+
hierarchy: {
|
|
23
|
+
category?: string;
|
|
24
|
+
theme?: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
13
27
|
export type CreateFaqCategory = MaybeWithToken<Omit<ArticleCreation, 'idSpot'>> & {
|
|
14
28
|
image?: ImageSize | null;
|
|
15
29
|
tags?: string;
|
|
@@ -19,12 +33,31 @@ export type CreateFaqCategory = MaybeWithToken<Omit<ArticleCreation, 'idSpot'>>
|
|
|
19
33
|
};
|
|
20
34
|
export type EditFaqCategory = CreateFaqCategory & {
|
|
21
35
|
uri: string;
|
|
22
|
-
format?:
|
|
36
|
+
format?: Format;
|
|
23
37
|
};
|
|
24
38
|
export type FaqTaxonomy = {
|
|
25
39
|
title: string;
|
|
26
40
|
id: string;
|
|
27
41
|
};
|
|
28
42
|
export type FaqHookProperties = {
|
|
29
|
-
_web
|
|
43
|
+
_web?: '0' | '1' | '';
|
|
44
|
+
appImage?: string;
|
|
45
|
+
appImageText?: string;
|
|
46
|
+
};
|
|
47
|
+
export type FaqAccess = {
|
|
48
|
+
createCategory: boolean;
|
|
49
|
+
};
|
|
50
|
+
export type CreateFaqTheme = {
|
|
51
|
+
idCategory: number;
|
|
52
|
+
title: string;
|
|
53
|
+
};
|
|
54
|
+
export type DeleteFaqTheme = {
|
|
55
|
+
idCategory: number;
|
|
56
|
+
indexTheme: number;
|
|
57
|
+
deleteEntries?: boolean;
|
|
58
|
+
};
|
|
59
|
+
export type EditFaqTheme = {
|
|
60
|
+
idCategory: number;
|
|
61
|
+
indexTheme: number;
|
|
62
|
+
title: string;
|
|
30
63
|
};
|
package/lib/src/types/utils.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export interface PagingResults<T> {
|
|
|
41
41
|
cnt: number;
|
|
42
42
|
data: Array<T>;
|
|
43
43
|
facets: null | Array<{}>;
|
|
44
|
-
idQuery?: number;
|
|
44
|
+
idQuery?: number | null;
|
|
45
45
|
limit: number;
|
|
46
46
|
page: number;
|
|
47
47
|
}
|
|
@@ -134,7 +134,11 @@ export type MaybeWithToken<T> = T & {
|
|
|
134
134
|
export type MaybeWithParent<T extends jObjectBase = jObjectBase> = {
|
|
135
135
|
_parent?: T;
|
|
136
136
|
};
|
|
137
|
-
|
|
137
|
+
/**
|
|
138
|
+
* @deprecated
|
|
139
|
+
*/
|
|
140
|
+
type Format_DEPRECATED = 'user-api';
|
|
141
|
+
export type Format = 'raw-little' | 'raw-list' | 'raw-view' | Format_DEPRECATED | undefined;
|
|
138
142
|
export type ApiReturn<T extends Format, Little, List = Little, View = List, Default = {}> = T extends 'raw-little' ? Little : T extends 'raw-list' ? List : T extends 'raw-view' ? View : Default;
|
|
139
143
|
export type ValueOf<T> = T[keyof T];
|
|
140
144
|
export {};
|
package/package.json
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"mainType": "article",
|
|
15
15
|
"type": "faq",
|
|
16
16
|
"uri": "faq/19",
|
|
17
|
-
"dateCreation": "2023-
|
|
18
|
-
"dateModified": "2023-
|
|
17
|
+
"dateCreation": "2023-09-20 11:03:55",
|
|
18
|
+
"dateModified": "2023-09-20 11:03:55",
|
|
19
19
|
"title": "FAQ test",
|
|
20
20
|
"_url": "/ng/app/faq/c/19",
|
|
21
21
|
"_right": {
|
|
@@ -40,10 +40,9 @@
|
|
|
40
40
|
"_url": "/user/4",
|
|
41
41
|
"level": 9
|
|
42
42
|
},
|
|
43
|
-
"processContext": null,
|
|
44
43
|
"faqColor": "#111111",
|
|
44
|
+
"processContext": null,
|
|
45
45
|
"_audience": [],
|
|
46
|
-
"image": null,
|
|
47
46
|
"tags": [],
|
|
48
47
|
"isWeb": false
|
|
49
48
|
}
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
"error": 0,
|
|
5
5
|
"messages": [],
|
|
6
6
|
"result": {
|
|
7
|
-
"id":
|
|
7
|
+
"id": 13,
|
|
8
8
|
"mainType": "article",
|
|
9
9
|
"type": "faq",
|
|
10
|
-
"uri": "faq/
|
|
11
|
-
"dateCreation": "2023-09-
|
|
12
|
-
"dateModified": "2023-09-
|
|
10
|
+
"uri": "faq/13",
|
|
11
|
+
"dateCreation": "2023-09-20 11:03:38",
|
|
12
|
+
"dateModified": "2023-09-20 11:03:38",
|
|
13
13
|
"title": "CATEGORY 1",
|
|
14
|
-
"_url": "/ng/app/faq/c/
|
|
14
|
+
"_url": "/ng/app/faq/c/13",
|
|
15
15
|
"_right": {
|
|
16
16
|
"create": true,
|
|
17
17
|
"read": true,
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"type": "user",
|
|
30
30
|
"uri": "user/4",
|
|
31
31
|
"dateCreation": "2019-07-09 15:48:26",
|
|
32
|
-
"dateModified": "
|
|
32
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
33
33
|
"title": "Admin1",
|
|
34
34
|
"_url": "/user/4",
|
|
35
35
|
"level": 9
|
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
"processContext": null,
|
|
38
38
|
"faqColor": "",
|
|
39
39
|
"_audience": [],
|
|
40
|
-
"image": null,
|
|
41
40
|
"tags": [],
|
|
42
41
|
"isWeb": false
|
|
43
42
|
}
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"mainType": "article",
|
|
14
14
|
"type": "faq",
|
|
15
15
|
"uri": "faq/20",
|
|
16
|
-
"dateCreation": "2023-
|
|
17
|
-
"dateModified": "2023-
|
|
16
|
+
"dateCreation": "2023-09-20 11:03:55",
|
|
17
|
+
"dateModified": "2023-09-20 11:03:55",
|
|
18
18
|
"title": "New title",
|
|
19
19
|
"_url": "/ng/app/faq/c/20",
|
|
20
20
|
"_right": {
|
|
@@ -39,10 +39,9 @@
|
|
|
39
39
|
"_url": "/user/4",
|
|
40
40
|
"level": 9
|
|
41
41
|
},
|
|
42
|
-
"processContext": null,
|
|
43
42
|
"faqColor": "#111111",
|
|
43
|
+
"processContext": null,
|
|
44
44
|
"_audience": [],
|
|
45
|
-
"image": null,
|
|
46
45
|
"tags": [],
|
|
47
46
|
"isWeb": false
|
|
48
47
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"o": "faq",
|
|
3
|
+
"f": "addTheme",
|
|
4
|
+
"error": 0,
|
|
5
|
+
"messages": [
|
|
6
|
+
{
|
|
7
|
+
"code": 200,
|
|
8
|
+
"msg": "Enregistrement r\u00e9ussi"
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"result": {
|
|
12
|
+
"id": 85,
|
|
13
|
+
"mainType": "article",
|
|
14
|
+
"type": "faq",
|
|
15
|
+
"uri": "faq/85",
|
|
16
|
+
"dateCreation": "2023-10-04 13:59:38",
|
|
17
|
+
"dateModified": "2023-10-04 14:00:05",
|
|
18
|
+
"title": "CATEGORY 1",
|
|
19
|
+
"_url": "/ng/app/faq/c/85",
|
|
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'>description FAQ FOR TEST categorie 1</div>",
|
|
31
|
+
"_user": {
|
|
32
|
+
"id": 4,
|
|
33
|
+
"mainType": "user",
|
|
34
|
+
"type": "user",
|
|
35
|
+
"uri": "user/4",
|
|
36
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
37
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
38
|
+
"title": "Admin1",
|
|
39
|
+
"_url": "/user/4",
|
|
40
|
+
"level": 9
|
|
41
|
+
},
|
|
42
|
+
"processContext": null,
|
|
43
|
+
"faqColor": "",
|
|
44
|
+
"_audience": [],
|
|
45
|
+
"tags": [],
|
|
46
|
+
"isWeb": false
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"o": "faq",
|
|
3
|
+
"f": "checkItem",
|
|
4
|
+
"error": 0,
|
|
5
|
+
"messages": [],
|
|
6
|
+
"result": {
|
|
7
|
+
"limit": 300,
|
|
8
|
+
"page": 1,
|
|
9
|
+
"cnt": 2,
|
|
10
|
+
"data": [
|
|
11
|
+
{
|
|
12
|
+
"id": 16,
|
|
13
|
+
"mainType": "article",
|
|
14
|
+
"type": "faqItem",
|
|
15
|
+
"uri": "faqItem/16",
|
|
16
|
+
"dateCreation": "2023-09-20 11:03:39",
|
|
17
|
+
"dateModified": "2023-09-20 11:03:39",
|
|
18
|
+
"title": "ORPHAN ENTRY2",
|
|
19
|
+
"_url": "/ng/app/faq/q/16",
|
|
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'>ORPHAN ENTRY2</div>",
|
|
31
|
+
"_user": {
|
|
32
|
+
"id": 4,
|
|
33
|
+
"mainType": "user",
|
|
34
|
+
"type": "user",
|
|
35
|
+
"uri": "user/4",
|
|
36
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
37
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
38
|
+
"title": "Admin1",
|
|
39
|
+
"_url": "/user/4",
|
|
40
|
+
"level": 9
|
|
41
|
+
},
|
|
42
|
+
"_percent": 63.1578947368421,
|
|
43
|
+
"hierarchy": {
|
|
44
|
+
"category": "CATEGORY 2",
|
|
45
|
+
"theme": "FAQ THEME2"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": 18,
|
|
50
|
+
"mainType": "article",
|
|
51
|
+
"type": "faqItem",
|
|
52
|
+
"uri": "faqItem/18",
|
|
53
|
+
"dateCreation": "2023-09-20 11:03:39",
|
|
54
|
+
"dateModified": "2023-09-20 11:03:39",
|
|
55
|
+
"title": "ORPHAN ENTRY3",
|
|
56
|
+
"_url": "/ng/app/faq/q/18",
|
|
57
|
+
"_right": {
|
|
58
|
+
"create": true,
|
|
59
|
+
"read": true,
|
|
60
|
+
"publish": false,
|
|
61
|
+
"administrate": true,
|
|
62
|
+
"update": true,
|
|
63
|
+
"delete": true,
|
|
64
|
+
"comment": true,
|
|
65
|
+
"member": true
|
|
66
|
+
},
|
|
67
|
+
"description": "<div class='content-html'>ORPHAN ENTRY3</div>",
|
|
68
|
+
"_user": {
|
|
69
|
+
"id": 4,
|
|
70
|
+
"mainType": "user",
|
|
71
|
+
"type": "user",
|
|
72
|
+
"uri": "user/4",
|
|
73
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
74
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
75
|
+
"title": "Admin1",
|
|
76
|
+
"_url": "/user/4",
|
|
77
|
+
"level": 9
|
|
78
|
+
},
|
|
79
|
+
"_percent": 63.1578947368421,
|
|
80
|
+
"hierarchy": {
|
|
81
|
+
"category": "CATEGORY 3",
|
|
82
|
+
"theme": "FAQ THEME3"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"facets": [],
|
|
87
|
+
"idQuery": 1695200647
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"o": "faq",
|
|
3
|
+
"f": "deleteTheme",
|
|
4
|
+
"error": 0,
|
|
5
|
+
"messages": [
|
|
6
|
+
{
|
|
7
|
+
"code": 200,
|
|
8
|
+
"msg": "Enregistrement r\u00e9ussi"
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"result": {
|
|
12
|
+
"id": 85,
|
|
13
|
+
"mainType": "article",
|
|
14
|
+
"type": "faq",
|
|
15
|
+
"uri": "faq/85",
|
|
16
|
+
"dateCreation": "2023-10-04 13:59:38",
|
|
17
|
+
"dateModified": "2023-10-04 14:00:05",
|
|
18
|
+
"title": "CATEGORY 1",
|
|
19
|
+
"_url": "/ng/app/faq/c/85",
|
|
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'>description FAQ FOR TEST categorie 1</div>",
|
|
31
|
+
"_user": {
|
|
32
|
+
"id": 4,
|
|
33
|
+
"mainType": "user",
|
|
34
|
+
"type": "user",
|
|
35
|
+
"uri": "user/4",
|
|
36
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
37
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
38
|
+
"title": "Admin1",
|
|
39
|
+
"_url": "/user/4",
|
|
40
|
+
"level": 9
|
|
41
|
+
},
|
|
42
|
+
"processContext": null,
|
|
43
|
+
"faqColor": "",
|
|
44
|
+
"_audience": [],
|
|
45
|
+
"tags": [],
|
|
46
|
+
"isWeb": false
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
{
|
|
2
|
+
"o": "objectList",
|
|
3
|
+
"f": "faqQueryList",
|
|
4
|
+
"error": 0,
|
|
5
|
+
"messages": [],
|
|
6
|
+
"result": {
|
|
7
|
+
"limit": 100,
|
|
8
|
+
"page": 1,
|
|
9
|
+
"cnt": 5,
|
|
10
|
+
"data": [
|
|
11
|
+
{
|
|
12
|
+
"id": 13,
|
|
13
|
+
"mainType": "article",
|
|
14
|
+
"type": "faq",
|
|
15
|
+
"uri": "faq/13",
|
|
16
|
+
"dateCreation": "2023-09-27 11:25:39",
|
|
17
|
+
"dateModified": "2023-09-27 11:26:09",
|
|
18
|
+
"title": "CATEGORY 1",
|
|
19
|
+
"_url": "/ng/app/faq/c/13",
|
|
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'>description FAQ FOR TEST categorie 1</div>",
|
|
31
|
+
"_user": {
|
|
32
|
+
"id": 4,
|
|
33
|
+
"mainType": "user",
|
|
34
|
+
"type": "user",
|
|
35
|
+
"uri": "user/4",
|
|
36
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
37
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
38
|
+
"title": "Admin1",
|
|
39
|
+
"_url": "/user/4",
|
|
40
|
+
"level": 9
|
|
41
|
+
},
|
|
42
|
+
"_extend": {
|
|
43
|
+
"itemsCount": 0
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": 15,
|
|
48
|
+
"mainType": "article",
|
|
49
|
+
"type": "faq",
|
|
50
|
+
"uri": "faq/15",
|
|
51
|
+
"dateCreation": "2023-09-27 11:25:40",
|
|
52
|
+
"dateModified": "2023-09-27 11:26:02",
|
|
53
|
+
"title": "CATEGORY 2",
|
|
54
|
+
"_url": "/ng/app/faq/c/15",
|
|
55
|
+
"_right": {
|
|
56
|
+
"create": true,
|
|
57
|
+
"read": true,
|
|
58
|
+
"publish": false,
|
|
59
|
+
"administrate": true,
|
|
60
|
+
"update": true,
|
|
61
|
+
"delete": true,
|
|
62
|
+
"comment": true,
|
|
63
|
+
"member": true
|
|
64
|
+
},
|
|
65
|
+
"description": "<div class='content-html'>description FAQ FOR TEST categorie 2</div>",
|
|
66
|
+
"_user": {
|
|
67
|
+
"id": 4,
|
|
68
|
+
"mainType": "user",
|
|
69
|
+
"type": "user",
|
|
70
|
+
"uri": "user/4",
|
|
71
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
72
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
73
|
+
"title": "Admin1",
|
|
74
|
+
"_url": "/user/4",
|
|
75
|
+
"level": 9
|
|
76
|
+
},
|
|
77
|
+
"_extend": {
|
|
78
|
+
"itemsCount": 1
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"id": 17,
|
|
83
|
+
"mainType": "article",
|
|
84
|
+
"type": "faq",
|
|
85
|
+
"uri": "faq/17",
|
|
86
|
+
"dateCreation": "2023-09-27 11:25:40",
|
|
87
|
+
"dateModified": "2023-09-27 11:25:40",
|
|
88
|
+
"title": "CATEGORY 3",
|
|
89
|
+
"_url": "/ng/app/faq/c/17",
|
|
90
|
+
"_right": {
|
|
91
|
+
"create": true,
|
|
92
|
+
"read": true,
|
|
93
|
+
"publish": false,
|
|
94
|
+
"administrate": true,
|
|
95
|
+
"update": true,
|
|
96
|
+
"delete": true,
|
|
97
|
+
"comment": false,
|
|
98
|
+
"member": true
|
|
99
|
+
},
|
|
100
|
+
"description": "<div class='content-html'>description FAQ FOR TEST categorie 3</div>",
|
|
101
|
+
"_user": {
|
|
102
|
+
"id": 4,
|
|
103
|
+
"mainType": "user",
|
|
104
|
+
"type": "user",
|
|
105
|
+
"uri": "user/4",
|
|
106
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
107
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
108
|
+
"title": "Admin1",
|
|
109
|
+
"_url": "/user/4",
|
|
110
|
+
"level": 9
|
|
111
|
+
},
|
|
112
|
+
"_extend": {
|
|
113
|
+
"itemsCount": 1
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"id": 19,
|
|
118
|
+
"mainType": "article",
|
|
119
|
+
"type": "faq",
|
|
120
|
+
"uri": "faq/19",
|
|
121
|
+
"dateCreation": "2023-09-27 11:25:56",
|
|
122
|
+
"dateModified": "2023-09-27 11:25:56",
|
|
123
|
+
"title": "FAQ test",
|
|
124
|
+
"_url": "/ng/app/faq/c/19",
|
|
125
|
+
"_right": {
|
|
126
|
+
"create": true,
|
|
127
|
+
"read": true,
|
|
128
|
+
"publish": false,
|
|
129
|
+
"administrate": true,
|
|
130
|
+
"update": true,
|
|
131
|
+
"delete": true,
|
|
132
|
+
"comment": false,
|
|
133
|
+
"member": true
|
|
134
|
+
},
|
|
135
|
+
"description": "<div class='content-html'>FAQ Category description !</div>",
|
|
136
|
+
"_user": {
|
|
137
|
+
"id": 4,
|
|
138
|
+
"mainType": "user",
|
|
139
|
+
"type": "user",
|
|
140
|
+
"uri": "user/4",
|
|
141
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
142
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
143
|
+
"title": "Admin1",
|
|
144
|
+
"_url": "/user/4",
|
|
145
|
+
"level": 9
|
|
146
|
+
},
|
|
147
|
+
"faqColor": "#111111",
|
|
148
|
+
"_extend": {
|
|
149
|
+
"itemsCount": 0
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"id": 20,
|
|
154
|
+
"mainType": "article",
|
|
155
|
+
"type": "faq",
|
|
156
|
+
"uri": "faq/20",
|
|
157
|
+
"dateCreation": "2023-09-27 11:25:57",
|
|
158
|
+
"dateModified": "2023-09-27 11:25:57",
|
|
159
|
+
"title": "New title",
|
|
160
|
+
"_url": "/ng/app/faq/c/20",
|
|
161
|
+
"_right": {
|
|
162
|
+
"create": true,
|
|
163
|
+
"read": true,
|
|
164
|
+
"publish": false,
|
|
165
|
+
"administrate": true,
|
|
166
|
+
"update": true,
|
|
167
|
+
"delete": true,
|
|
168
|
+
"comment": false,
|
|
169
|
+
"member": true
|
|
170
|
+
},
|
|
171
|
+
"description": "<div class='content-html'>New description</div>",
|
|
172
|
+
"_user": {
|
|
173
|
+
"id": 4,
|
|
174
|
+
"mainType": "user",
|
|
175
|
+
"type": "user",
|
|
176
|
+
"uri": "user/4",
|
|
177
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
178
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
179
|
+
"title": "Admin1",
|
|
180
|
+
"_url": "/user/4",
|
|
181
|
+
"level": 9
|
|
182
|
+
},
|
|
183
|
+
"faqColor": "#111111",
|
|
184
|
+
"_extend": {
|
|
185
|
+
"itemsCount": 0
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"facets": null,
|
|
190
|
+
"idQuery": null
|
|
191
|
+
}
|
|
192
|
+
}
|