@ondewo/sip-client-angular 3.1.0 → 5.1.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 +64 -13
- package/api/ondewo/sip/sip.pb.d.ts +247 -209
- package/api/ondewo/sip/sip.pbsc.d.ts +62 -62
- package/esm2022/api/ondewo/sip/sip.pb.mjs +1495 -0
- package/esm2022/api/ondewo/sip/sip.pbsc.mjs +375 -0
- package/{esm2020 → esm2022}/public-api.mjs +2 -2
- package/{fesm2020 → fesm2022}/ondewo-sip-client-angular.mjs +428 -309
- package/fesm2022/ondewo-sip-client-angular.mjs.map +1 -0
- package/package.json +9 -15
- package/public-api.d.ts +1 -1
- package/esm2020/api/ondewo/sip/sip.pb.mjs +0 -1391
- package/esm2020/api/ondewo/sip/sip.pbsc.mjs +0 -375
- package/fesm2015/ondewo-sip-client-angular.mjs +0 -1768
- package/fesm2015/ondewo-sip-client-angular.mjs.map +0 -1
- package/fesm2020/ondewo-sip-client-angular.mjs.map +0 -1
- package/ondewo-sip-api/README.md +0 -86
- /package/{esm2020 → esm2022}/api/ondewo/sip/sip.pbconf.mjs +0 -0
- /package/{esm2020 → esm2022}/ondewo-sip-client-angular.mjs +0 -0
package/README.md
CHANGED
|
@@ -1,20 +1,35 @@
|
|
|
1
|
-
<
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<table>
|
|
3
|
+
<tr>
|
|
4
|
+
<td>
|
|
5
|
+
<a href="https://ondewo.com/en/products/natural-language-understanding/">
|
|
6
|
+
<img width="400px" src="https://raw.githubusercontent.com/ondewo/ondewo-logos/master/ondewo_we_automate_your_phone_calls.png"/>
|
|
7
|
+
</a>
|
|
8
|
+
</td>
|
|
9
|
+
</tr>
|
|
10
|
+
<tr>
|
|
11
|
+
<td align="center">
|
|
12
|
+
<a href="https://www.linkedin.com/company/ondewo "><img width="40px" src="https://cdn-icons-png.flaticon.com/512/3536/3536505.png"></a>
|
|
13
|
+
<a href="https://www.facebook.com/ondewo"><img width="40px" src="https://cdn-icons-png.flaticon.com/512/733/733547.png"></a>
|
|
14
|
+
<a href="https://twitter.com/ondewo"><img width="40px" src="https://cdn-icons-png.flaticon.com/512/733/733579.png"> </a>
|
|
15
|
+
<a href="https://www.instagram.com/ondewo.ai/"><img width="40px" src="https://cdn-icons-png.flaticon.com/512/174/174855.png"></a>
|
|
16
|
+
<a href="https://badge.fury.io/js/%40ondewo%2Fsip-client-angular"><img src="https://badge.fury.io/js/%40ondewo%2Fsip-client-angular.svg" alt="npm version" height="32"></a>
|
|
17
|
+
</td>
|
|
18
|
+
</tr>
|
|
19
|
+
</table>
|
|
5
20
|
<h1 align="center">
|
|
6
21
|
ONDEWO SIP Client Angular
|
|
7
22
|
</h1>
|
|
8
|
-
|
|
9
|
-
<a href="https://badge.fury.io/js/%40ondewo%2Fsip-client-angular"><img src="https://badge.fury.io/js/%40ondewo%2Fsip-client-angular.svg" alt="npm version" height="18"></a>
|
|
10
|
-
</p>
|
|
11
|
-
</p>
|
|
23
|
+
</div>
|
|
12
24
|
|
|
13
|
-
|
|
25
|
+
## Overview
|
|
14
26
|
|
|
15
|
-
`@ondewo/sip-client-angular` is a compiled version of the [ONDEWO SIP API](https://github.com/ondewo/ondewo-sip-api). Here you can find the SIP API [documentation](https://ondewo.github.io
|
|
27
|
+
`@ondewo/sip-client-angular` is a compiled version of the [ONDEWO SIP API](https://github.com/ondewo/ondewo-sip-api) using the [ONDEWO PROTO COMPILER](https://github.com/ondewo/ondewo-proto-compiler). Here you can find the SIP API [documentation](https://ondewo.github.io).
|
|
16
28
|
|
|
17
|
-
|
|
29
|
+
ONDEWO APIs use [Protocol Buffers](https://github.com/google/protobuf) version 3 (proto3) as their Interface Definition Language (IDL) to define the API interface and the structure of the payload messages. The same interface definition is used for gRPC versions of the API in all languages.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
## Setup
|
|
18
33
|
|
|
19
34
|
Using NPM:
|
|
20
35
|
|
|
@@ -22,6 +37,42 @@ Using NPM:
|
|
|
22
37
|
npm i --save @ondewo/sip-client-angular
|
|
23
38
|
```
|
|
24
39
|
|
|
25
|
-
|
|
40
|
+
Using GitHub:
|
|
41
|
+
|
|
42
|
+
```shell
|
|
43
|
+
git clone https://github.com/ondewo/ondewo-sip-client-angular.git ## Clone repository
|
|
44
|
+
cd ondewo-sip-client-angular ## Change into repo-directoy
|
|
45
|
+
make setup_developer_environment_locally ## Install dependencies
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Package structure
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
npm
|
|
52
|
+
├── api
|
|
53
|
+
│ └── ondewo
|
|
54
|
+
│ └── sip
|
|
55
|
+
│ ├── sip.pbconf.d.ts
|
|
56
|
+
│ ├── sip.pb.d.ts
|
|
57
|
+
│ └── sip.pbsc.d.ts
|
|
58
|
+
├── esm2022
|
|
59
|
+
│ ├── api
|
|
60
|
+
│ │ └── ondewo
|
|
61
|
+
│ │ └── sip
|
|
62
|
+
│ │ ├── sip.pbconf.mjs
|
|
63
|
+
│ │ ├── sip.pb.mjs
|
|
64
|
+
│ │ └── sip.pbsc.mjs
|
|
65
|
+
│ ├── ondewo-sip-client-angular.mjs
|
|
66
|
+
│ └── public-api.mjs
|
|
67
|
+
├── fesm2022
|
|
68
|
+
│ ├── ondewo-sip-client-angular.mjs
|
|
69
|
+
│ └── ondewo-sip-client-angular.mjs.map
|
|
70
|
+
├── ondewo-sip-api
|
|
71
|
+
│ └── README.md
|
|
72
|
+
├── index.d.ts
|
|
73
|
+
├── LICENSE
|
|
74
|
+
├── package.json
|
|
75
|
+
├── public-api.d.ts
|
|
76
|
+
└── README.md
|
|
77
|
+
```
|
|
26
78
|
|
|
27
|
-
Read the full documentation on [GitHub](https://github.com/ondewo/ondewo-sip-client-angular).
|