@ondewo/csi-client-nodejs
v5.2.0
Published
ONDEWO Communication System Integration (CSI) Client library for Nodejs
Readme
Overview
@ondewo/csi-client-nodejs is a compiled version of the ONDEWO CSI API using the ONDEWO PROTO COMPILER. Here you can find the CSI 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/csi-client-nodejsUsing GitHub:
git clone https://github.com/ondewo/ondewo-csi-client-nodejs.git ## Clone repository
cd ondewo-csi-client-nodejs ## Change into repo-directoy
make setup_developer_environment_locally ## Install dependenciesPackage structure
npm
├── api
│ ├── google
│ │ ├── api
│ │ │ ├── annotations_grpc_pb.js
│ │ │ ├── annotations_pb.d.ts
│ │ │ └── annotations_pb.js
│ │ ├── protobuf
│ │ │ ├── any_grpc_pb.js
│ │ │ ├── any_pb.d.ts
│ │ │ ├── any_pb.js
│ │ │ ├── empty_grpc_pb.js
│ │ │ ├── empty_pb.d.ts
│ │ │ ├── empty_pb.js
│ │ │ ├── field_mask_grpc_pb.js
│ │ │ ├── field_mask_pb.d.ts
│ │ │ ├── field_mask_pb.js
│ │ │ ├── struct_grpc_pb.js
│ │ │ ├── struct_pb.d.ts
│ │ │ ├── struct_pb.js
│ │ │ ├── timestamp_grpc_pb.js
│ │ │ ├── timestamp_pb.d.ts
│ │ │ └── timestamp_pb.js
│ │ ├── rpc
│ │ │ ├── status_grpc_pb.js
│ │ │ ├── status_pb.d.ts
│ │ │ └── status_pb.js
│ │ └── type
│ │ ├── latlng_grpc_pb.js
│ │ ├── latlng_pb.d.ts
│ │ └── latlng_pb.js
│ └── ondewo
│ ├── csi
│ │ ├── conversation_grpc_pb.d.ts
│ │ ├── conversation_grpc_pb.js
│ │ ├── conversation_pb.d.ts
│ │ └── conversation_pb.js
│ ├── nlu
│ │ ├── agent_grpc_pb.d.ts
│ │ ├── agent_grpc_pb.js
│ │ ├── agent_pb.d.ts
│ │ ├── agent_pb.js
│ │ ├── aiservices_grpc_pb.d.ts
│ │ ├── aiservices_grpc_pb.js
│ │ ├── aiservices_pb.d.ts
│ │ ├── aiservices_pb.js
│ │ ├── ...
│ ├── s2t
│ │ ├── speech-to-text_grpc_pb.d.ts
│ │ ├── speech-to-text_grpc_pb.js
│ │ ├── speech-to-text_pb.d.ts
│ │ └── speech-to-text_pb.js
│ └── t2s
│ ├── text-to-speech_grpc_pb.d.ts
│ ├── text-to-speech_grpc_pb.js
│ ├── text-to-speech_pb.d.ts
│ └── text-to-speech_pb.js
├── LICENSE
├── package.json
├── public-api.d.ts
├── public-api.js
└── README.md
