jamespot-user-api 1.0.92 → 1.0.94
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/README-internal.md +32 -2
- package/documentation/assets/search.js +1 -1
- package/documentation/classes/AdminStoreApi.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/JConceptApi.html +2 -2
- 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/JLicenseApi.html +4 -4
- package/documentation/classes/JMessengerApi.html +1 -1
- package/documentation/classes/JSearchApi.html +6 -6
- package/documentation/classes/JShareApi.html +1 -1
- 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/WindowBrowser.html +1 -1
- package/documentation/classes/WindowMock.html +2 -2
- package/documentation/enums/StudioApplicationStatus.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/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/FolderProps.html +1 -1
- package/documentation/interfaces/ListFilterSpec.html +1 -1
- package/documentation/interfaces/OF.html +1 -1
- package/documentation/interfaces/ObjectListProps.html +1 -0
- 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/WindowInterface.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/article.d.ts +1 -1
- package/lib/src/apis/concept.d.ts +2 -0
- package/lib/src/apis/user.d.ts +63 -1
- package/lib/src/types/concept.d.ts +15 -0
- package/lib/src/types/listWrapper.d.ts +2 -0
- package/lib/src/types/model.d.ts +7 -1
- package/lib/src/types/taxonomy.d.ts +14 -14
- package/lib/src/types/user.d.ts +10 -0
- package/lib/src/types/utils.d.ts +18 -2
- package/package.json +1 -1
package/README-internal.md
CHANGED
|
@@ -4,13 +4,43 @@ The JamespotUserApi library facilitates the HTTPS calls to the Jamespot Apis. Th
|
|
|
4
4
|
|
|
5
5
|
## How to use
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Run Web on Local
|
|
8
|
+
|
|
9
|
+
This contains the JavaScript calls to the jamespot api (user-api) and lots of type definitions. Most of the Jamespot projects depends upon it. Therefore, it needs to be installed and build first.
|
|
8
10
|
|
|
9
11
|
```
|
|
10
|
-
git clone https://github.com/Jamespot/jamespot-user-api.git
|
|
11
12
|
npm ci
|
|
13
|
+
npm run build
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Web project install order
|
|
17
|
+
|
|
18
|
+
- jamespot-user-api: https://github.com/Jamespot/jamespot-user-api
|
|
19
|
+
- jamespot-front-business: https://github.com/Jamespot/jamespot-front-business
|
|
20
|
+
- jamespot-react-components: https://github.com/Jamespot/jamespot-react-components
|
|
21
|
+
- jamespot-react-core: https://github.com/Jamespot/jamespot-react-core
|
|
22
|
+
- jamespot-react-extensions: https://github.com/Jamespot/jamespot-react-extensions
|
|
23
|
+
|
|
24
|
+
### Run web on Local final
|
|
25
|
+
|
|
26
|
+
Once everything has been installed run on local
|
|
27
|
+
|
|
28
|
+
- jamespot-react-core: `should run on localhost:3030`
|
|
29
|
+
- jamespot-react-extensions: `should run on localhost:3040`
|
|
30
|
+
-
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
npm run local
|
|
12
34
|
```
|
|
13
35
|
|
|
36
|
+
### Solidarity
|
|
37
|
+
|
|
38
|
+
Once everything run, follow this doc to link your solidarity platform to your local dev:
|
|
39
|
+
https://dokuwiki.teleport.jamespot.pro/doku.php?id=dev:utilitaires:solidarity:solidarity_machine&s%5B%5D=hook#installer_jdevhook_facultatif
|
|
40
|
+
|
|
41
|
+
If you don't have a solidarity platform you can follow this to create one:
|
|
42
|
+
https://dokuwiki.teleport.jamespot.pro/doku.php?id=dev:utilitaires:solidarity:branches
|
|
43
|
+
|
|
14
44
|
## Build
|
|
15
45
|
|
|
16
46
|
| commande | format du bundle | avec les mock | hot reload |
|