jamespot-user-api 1.0.47 → 1.0.50
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/JApplication.html +1 -1
- package/documentation/classes/JApplicationApi.html +8 -8
- package/documentation/classes/JArticleApi.html +1 -1
- package/documentation/classes/JAudienceApi.html +1 -1
- package/documentation/classes/JBaseApi.html +1 -1
- package/documentation/classes/JBaseObject.html +1 -1
- package/documentation/classes/JBookmark.html +1 -1
- package/documentation/classes/JBookmarkApi.html +1 -1
- package/documentation/classes/JCommunityApi.html +1 -1
- package/documentation/classes/JConcept.html +1 -1
- package/documentation/classes/JConceptApi.html +1 -1
- package/documentation/classes/JDiapazoneApi.html +1 -1
- package/documentation/classes/JFileApi.html +1 -1
- package/documentation/classes/JFilebankApi.html +1 -1
- package/documentation/classes/JGroupApi.html +1 -1
- 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 -0
- package/documentation/classes/JUser.html +1 -1
- package/documentation/classes/JUserApi.html +3 -3
- package/documentation/classes/JWedocApi.html +1 -1
- package/documentation/classes/JamespotUserApi.html +1 -1
- package/documentation/classes/Network.html +1 -1
- package/documentation/enums/JApplicationStatus.html +1 -1
- package/documentation/index.html +1 -1
- package/documentation/interfaces/ApiError.html +1 -1
- package/documentation/interfaces/ApiWrapper.html +1 -1
- package/documentation/interfaces/AseiGroups.html +1 -1
- package/documentation/interfaces/AseiInstitution.html +1 -1
- package/documentation/interfaces/AseiRights.html +1 -1
- package/documentation/interfaces/AseiTicket.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/CreateGroup.html +1 -1
- package/documentation/interfaces/FileBankProps.html +1 -1
- package/documentation/interfaces/FileOption.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/PagingResults.html +1 -1
- package/documentation/interfaces/Result.html +1 -1
- package/documentation/interfaces/RootFolderProps.html +1 -1
- package/documentation/interfaces/SearchCategoryModel.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/SearchResultProps.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/TmpApplication.html +1 -1
- package/documentation/interfaces/TmpUser.html +1 -1
- package/documentation/interfaces/UserModel.html +1 -1
- package/documentation/modules.html +1 -1
- package/lib/jamespot-user-api.js +1 -1
- package/lib/jamespot-user-api.js.map +1 -1
- package/lib/src/apis/index.d.ts +1 -0
- package/lib/src/apis/jamespotUserApi.d.ts +2 -0
- package/lib/src/apis/share.d.ts +17 -0
- package/lib/src/apis/wedoc.d.ts +11 -12
- package/lib/src/types/index.d.ts +2 -0
- package/lib/src/types/share.d.ts +37 -0
- package/lib/src/types/wedoc.d.ts +47 -0
- package/package.json +1 -1
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Filters, Orders, Rights } from './utils';
|
|
2
|
+
export declare type WedocFileType = {
|
|
3
|
+
dateCreation: string;
|
|
4
|
+
dateModified: string;
|
|
5
|
+
id: string;
|
|
6
|
+
mimetype: string;
|
|
7
|
+
title: string;
|
|
8
|
+
type: string;
|
|
9
|
+
uri: string;
|
|
10
|
+
_extend: Record<string, string>;
|
|
11
|
+
_audience: WedocFileAudienceType[];
|
|
12
|
+
_right: Rights;
|
|
13
|
+
_user: WedocFileUserType;
|
|
14
|
+
};
|
|
15
|
+
export declare type WedocFileAudienceType = {
|
|
16
|
+
id: number;
|
|
17
|
+
title: string;
|
|
18
|
+
uri: string;
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
21
|
+
export declare type WedocFileUserType = {
|
|
22
|
+
id: number;
|
|
23
|
+
title: string;
|
|
24
|
+
uri: string;
|
|
25
|
+
type: string;
|
|
26
|
+
};
|
|
27
|
+
export declare type WedocTemplate = {
|
|
28
|
+
color: string;
|
|
29
|
+
description: string;
|
|
30
|
+
extension: string;
|
|
31
|
+
icon: string;
|
|
32
|
+
label: string;
|
|
33
|
+
};
|
|
34
|
+
export declare type WedocQueryResults = {
|
|
35
|
+
page: number;
|
|
36
|
+
cnt: number;
|
|
37
|
+
limit: number;
|
|
38
|
+
data: WedocFileType[];
|
|
39
|
+
};
|
|
40
|
+
export declare type WedocQueryType = {
|
|
41
|
+
query: string;
|
|
42
|
+
filters: Filters;
|
|
43
|
+
orders: Orders;
|
|
44
|
+
page: number;
|
|
45
|
+
limit: number;
|
|
46
|
+
};
|
|
47
|
+
export declare type WedocEmptyType = {};
|