jamespot-user-api 1.0.116 → 1.0.117
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/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 +9 -9
- package/lib/src/types/group.d.ts +5 -2
- package/package.json +1 -1
- package/phpunitMock/spotGetProperties-default.json +18 -2
package/lib/src/types/group.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { jUserLittle } from './user';
|
|
1
2
|
import { jObjectLittle } from './utils';
|
|
2
3
|
export type CreateGroup = {
|
|
3
4
|
type: string;
|
|
@@ -30,7 +31,7 @@ export type GroupProperties = {
|
|
|
30
31
|
useTeaser: '' | '1' | '2';
|
|
31
32
|
displayType: string;
|
|
32
33
|
spot_right_user: string;
|
|
33
|
-
rss_feed: Array<RssType> |
|
|
34
|
+
rss_feed: Array<RssType> | null;
|
|
34
35
|
spotDefaultPublishType: string;
|
|
35
36
|
mail_frequency: string;
|
|
36
37
|
mail_comment: '1' | '';
|
|
@@ -71,7 +72,9 @@ export type GroupPropertiesOptions = {
|
|
|
71
72
|
export type RssType = {
|
|
72
73
|
url: string;
|
|
73
74
|
idUser: number;
|
|
74
|
-
send
|
|
75
|
+
send?: boolean;
|
|
76
|
+
_user?: jUserLittle;
|
|
77
|
+
date?: string;
|
|
75
78
|
error?: string;
|
|
76
79
|
};
|
|
77
80
|
export type ValueLabel = {
|
package/package.json
CHANGED
|
@@ -61,10 +61,26 @@
|
|
|
61
61
|
"nounsubscribe": "0",
|
|
62
62
|
"useTeaser": "",
|
|
63
63
|
"displayType": "wall",
|
|
64
|
-
"spot_right_user": "
|
|
64
|
+
"spot_right_user": "3",
|
|
65
65
|
"rss_access": "0",
|
|
66
66
|
"rss_key": "",
|
|
67
|
-
"rss_feed":
|
|
67
|
+
"rss_feed": [
|
|
68
|
+
{
|
|
69
|
+
"url": "http://localhost/rss",
|
|
70
|
+
"idUser": 4,
|
|
71
|
+
"_user": {
|
|
72
|
+
"id": 4,
|
|
73
|
+
"mainType": "user",
|
|
74
|
+
"type": "user",
|
|
75
|
+
"uri": "user/4",
|
|
76
|
+
"dateCreation": "2019-07-09 15:48:26",
|
|
77
|
+
"dateModified": "2019-07-09 15:51:24",
|
|
78
|
+
"title": "Admin1",
|
|
79
|
+
"_url": "/user/4",
|
|
80
|
+
"level": 9
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
],
|
|
68
84
|
"spotDefaultPublishType": "mpArticle",
|
|
69
85
|
"mail_frequency": "-1",
|
|
70
86
|
"mail_comment": "1",
|