jamespot-user-api 1.0.121 → 1.0.122
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 +11 -11
- package/lib/src/types/faq.d.ts +6 -1
- package/lib/src/types/group.d.ts +2 -0
- package/package.json +1 -1
package/lib/src/types/faq.d.ts
CHANGED
|
@@ -41,8 +41,13 @@ export type FaqTaxonomy = {
|
|
|
41
41
|
};
|
|
42
42
|
export type FaqHookProperties = {
|
|
43
43
|
_web?: '0' | '1' | '';
|
|
44
|
-
appImage?: string;
|
|
45
44
|
appImageText?: string;
|
|
45
|
+
appImage?: string | {
|
|
46
|
+
image: {
|
|
47
|
+
id: string;
|
|
48
|
+
type: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
46
51
|
};
|
|
47
52
|
export type FaqAccess = {
|
|
48
53
|
createCategory: boolean;
|
package/lib/src/types/group.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export type GroupProperties = {
|
|
|
44
44
|
widgets: Array<string>;
|
|
45
45
|
rss_access: '1' | '0';
|
|
46
46
|
rss_key: string;
|
|
47
|
+
fileSyncVersioningType: 'overwrite' | 'author-change';
|
|
47
48
|
_options: GroupPropertiesOptions;
|
|
48
49
|
_errors: [];
|
|
49
50
|
lastRssExecution?: Record<string, string>;
|
|
@@ -68,6 +69,7 @@ export type GroupPropertiesOptions = {
|
|
|
68
69
|
widgets: Array<GroupWidget>;
|
|
69
70
|
custom_widgets: Record<string, GroupCustomWidget> | [];
|
|
70
71
|
isArchive: number;
|
|
72
|
+
fileSyncVersioningType: Array<ValueLabel>;
|
|
71
73
|
};
|
|
72
74
|
export type RssType = {
|
|
73
75
|
url: string;
|