jamespot-user-api 1.0.127 → 1.0.128
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/JObjectApi.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.map +1 -1
- package/lib/src/apis/article/article.d.ts +1 -1
- package/lib/src/apis/taxonomy/types.d.ts +1 -1
- package/lib/src/types/index.d.ts +2 -0
- package/lib/src/types/network.d.ts +6 -0
- package/lib/src/types/tinymce.d.ts +26 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { JBaseApi } from '../base';
|
|
2
2
|
import { ApiWrapper, BaseMessages, Filters, jArticleList, jArticleLittle, jFileLittle, MaybeWithToken, Orders, PagingResults } from '../../types';
|
|
3
3
|
export type ArticleListConfig = {
|
|
4
|
-
type
|
|
4
|
+
type?: string;
|
|
5
5
|
format?: string;
|
|
6
6
|
query?: string;
|
|
7
7
|
limit?: number;
|
package/lib/src/types/index.d.ts
CHANGED
|
@@ -11,9 +11,11 @@ export * from './faq';
|
|
|
11
11
|
export * from './file';
|
|
12
12
|
export * from './mediaLibrary';
|
|
13
13
|
export * from './model';
|
|
14
|
+
export * from './network';
|
|
14
15
|
export * from './search';
|
|
15
16
|
export * from './share';
|
|
16
17
|
export * from './tvDisplay';
|
|
18
|
+
export * from './tinymce';
|
|
17
19
|
export * from './user';
|
|
18
20
|
export * from './utils';
|
|
19
21
|
export * from './wedoc';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export type TinyMCEDynamicOptions = {
|
|
2
|
+
toolbar: string;
|
|
3
|
+
language: string;
|
|
4
|
+
content_css: string;
|
|
5
|
+
};
|
|
6
|
+
export type TinyMCECommonOptions = TinyMCEDynamicOptions & {
|
|
7
|
+
plugins: string[];
|
|
8
|
+
text_patterns: {
|
|
9
|
+
start: string;
|
|
10
|
+
end?: string;
|
|
11
|
+
format?: string;
|
|
12
|
+
cmd?: string;
|
|
13
|
+
}[];
|
|
14
|
+
height: number;
|
|
15
|
+
menubar: boolean;
|
|
16
|
+
branding: boolean;
|
|
17
|
+
skin: string;
|
|
18
|
+
convert_urls: boolean;
|
|
19
|
+
invalid_elements: string;
|
|
20
|
+
extended_valid_elements: string;
|
|
21
|
+
custom_elements: string;
|
|
22
|
+
inline_boundaries_selector: string;
|
|
23
|
+
toolbar_mode: 'floating' | 'sliding' | 'scrolling' | 'wrap';
|
|
24
|
+
promotion: boolean;
|
|
25
|
+
font_size_formats: string;
|
|
26
|
+
};
|