jamespot-user-api 1.0.161 → 1.0.163
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/JBusinessNetworkingApi.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/JGlobalApi.html +1 -1
- package/documentation/classes/JGroupApi.html +12 -12
- 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/GroupModerateStatus.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/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/jia/jia.d.ts +2 -2
- package/lib/src/types/index.d.ts +1 -0
- package/lib/src/types/jia.d.ts +1 -0
- package/lib/src/types/widgets.d.ts +0 -4
- package/package.json +1 -1
- package/phpunitMock/articleGet-with-widgets.json +2 -10
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { JBaseApi } from '../base';
|
|
2
2
|
import { ApiWrapper } from '../../types';
|
|
3
|
-
import { TextEnhanceResponse } from '../../types/jia';
|
|
3
|
+
import { JIACapabilities, TextEnhanceResponse } from '../../types/jia';
|
|
4
4
|
export declare class JIAApi extends JBaseApi {
|
|
5
5
|
textEnhancement({ text, capacity, }: {
|
|
6
6
|
text?: string;
|
|
7
|
-
capacity?:
|
|
7
|
+
capacity?: JIACapabilities;
|
|
8
8
|
}): Promise<ApiWrapper<TextEnhanceResponse>>;
|
|
9
9
|
}
|
package/lib/src/types/index.d.ts
CHANGED
package/lib/src/types/jia.d.ts
CHANGED
|
@@ -126,10 +126,6 @@ export type WidgetArticleTitleContent = {
|
|
|
126
126
|
};
|
|
127
127
|
export type WidgetArticleTextContent = {
|
|
128
128
|
text?: string;
|
|
129
|
-
color?: string;
|
|
130
|
-
fontSize?: string;
|
|
131
|
-
lineHeight?: string;
|
|
132
|
-
linkColor?: string;
|
|
133
129
|
};
|
|
134
130
|
export type WidgetApiContent = {
|
|
135
131
|
url?: string;
|
package/package.json
CHANGED
|
@@ -43,11 +43,7 @@
|
|
|
43
43
|
"name": "widget-article-text",
|
|
44
44
|
"uniqid": "6617b75730ea4",
|
|
45
45
|
"content": {
|
|
46
|
-
"text": "Hello world"
|
|
47
|
-
"color": "white",
|
|
48
|
-
"fontSize": "12",
|
|
49
|
-
"lineHeight": "12",
|
|
50
|
-
"linkColor": "red"
|
|
46
|
+
"text": "Hello world"
|
|
51
47
|
}
|
|
52
48
|
}
|
|
53
49
|
},
|
|
@@ -95,11 +91,7 @@
|
|
|
95
91
|
"name": "widget-article-text",
|
|
96
92
|
"uniqid": "6617b75730ea4",
|
|
97
93
|
"content": {
|
|
98
|
-
"text": "Hello world"
|
|
99
|
-
"color": "white",
|
|
100
|
-
"fontSize": "12",
|
|
101
|
-
"lineHeight": "12",
|
|
102
|
-
"linkColor": "red"
|
|
94
|
+
"text": "Hello world"
|
|
103
95
|
}
|
|
104
96
|
}
|
|
105
97
|
}
|