@sovity.de/edc-client 10.5.1 → 12.0.0

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.md CHANGED
@@ -1,4 +1,23 @@
1
- <!-- PROJECT LOGO -->
1
+ <!--
2
+ Copyright 2025 sovity GmbH
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ https://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+
16
+ SPDX-License-Identifier: Apache-2.0
17
+
18
+ Contributors:
19
+ sovity - init and continued development
20
+ -->
2
21
  <br />
3
22
  <div align="center">
4
23
  <a href="https://github.com/sovity/edc-ce">
@@ -19,8 +38,8 @@
19
38
  TypeScript Client Library to be imported and used in arbitrary applications like
20
39
  frontends or NodeJS projects.
21
40
 
22
- You can find our API Wrapper Project
23
- [here](https://github.com/sovity/edc-ce/tree/main/extensions/wrapper).
41
+ You can find our API definitions
42
+ [here](https://github.com/sovity/edc-ce/tree/main/connector/ce/libs/api).
24
43
 
25
44
  ## How to install
26
45
 
@@ -45,9 +64,6 @@ const edcClient: EdcClient = buildEdcClient({
45
64
  let kpiData: KpiResult = await edcClient.useCaseApi.getKpis();
46
65
  ```
47
66
 
48
- A minimal example project using the typescript API client can be found
49
- [here](https://github.com/sovity/edc-ce/tree/main/extensions/wrapper/clients/typescript-client-example).
50
-
51
67
  ### Example Using OAuth2 Client Credentials
52
68
 
53
69
  ```typescript