5.1.0 • Published 7 months ago

@ondewo/sip-client-angular v5.1.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
7 months ago

Overview

@ondewo/sip-client-angular is a compiled version of the ONDEWO SIP API using the ONDEWO PROTO COMPILER. Here you can find the SIP API documentation.

ONDEWO APIs use Protocol Buffers 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.

Setup

Using NPM:

npm i --save @ondewo/sip-client-angular

Using GitHub:

git clone https://github.com/ondewo/ondewo-sip-client-angular.git ## Clone repository
cd ondewo-sip-client-angular                                      ## Change into repo-directoy
make setup_developer_environment_locally                          ## Install dependencies

Package structure

npm
├── api
│   └── ondewo
│       └── sip
│           ├── sip.pbconf.d.ts
│           ├── sip.pb.d.ts
│           └── sip.pbsc.d.ts
├── esm2022
│   ├── api
│   │   └── ondewo
│   │       └── sip
│   │           ├── sip.pbconf.mjs
│   │           ├── sip.pb.mjs
│   │           └── sip.pbsc.mjs
│   ├── ondewo-sip-client-angular.mjs
│   └── public-api.mjs
├── fesm2022
│   ├── ondewo-sip-client-angular.mjs
│   └── ondewo-sip-client-angular.mjs.map
├── ondewo-sip-api
│   └── README.md
├── index.d.ts
├── LICENSE
├── package.json
├── public-api.d.ts
└── README.md