Skip to content

Commit

Permalink
Preparing for Release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
teddius committed May 21, 2023
1 parent 12c8833 commit 50f9702
Show file tree
Hide file tree
Showing 59 changed files with 19,921 additions and 6,862 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ export
# Variables
########################################################

ONDEWO_CSI_VERSION = 3.0.0
ONDEWO_CSI_VERSION = 3.2.0

CSI_API_GIT_BRANCH=tags/3.0.0
ONDEWO_PROTO_COMPILER_GIT_BRANCH=tags/4.1.1
CSI_API_GIT_BRANCH=tags/3.2.0
ONDEWO_PROTO_COMPILER_GIT_BRANCH=tags/4.2.0
ONDEWO_PROTO_COMPILER_DIR=ondewo-proto-compiler
CSI_APIS_DIR=src/ondewo-csi-api
CSI_PROTOS_DIR=${CSI_APIS_DIR}/ondewo
Expand Down
7 changes: 7 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History

*****************
## Release ONDEWO CSI Nodejs Client 3.2.0

### Improvements
* Tracking API Version [3.2.0](https://github.com/ondewo/ondewo-csi-api/releases/tag/3.2.0) ( [Documentation](https://ondewo.github.io/ondewo-csi-api/) )


*****************
## Release ONDEWO CSI Nodejs Client 3.0.0

Expand Down
16 changes: 15 additions & 1 deletion api/google/api/annotations_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,21 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = function () {
if (this) {
return this;
}
if (typeof window !== 'undefined') {
return window;
}
if (typeof global !== 'undefined') {
return global;
}
if (typeof self !== 'undefined') {
return self;
}
return Function('return this')();
}.call(null);

var google_api_http_pb = require('../../google/api/http_pb.js');
goog.object.extend(proto, google_api_http_pb);
Expand Down
16 changes: 15 additions & 1 deletion api/google/protobuf/any_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,21 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = function () {
if (this) {
return this;
}
if (typeof window !== 'undefined') {
return window;
}
if (typeof global !== 'undefined') {
return global;
}
if (typeof self !== 'undefined') {
return self;
}
return Function('return this')();
}.call(null);

goog.exportSymbol('proto.google.protobuf.Any', null, global);
/**
Expand Down
16 changes: 15 additions & 1 deletion api/google/protobuf/empty_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,21 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = function () {
if (this) {
return this;
}
if (typeof window !== 'undefined') {
return window;
}
if (typeof global !== 'undefined') {
return global;
}
if (typeof self !== 'undefined') {
return self;
}
return Function('return this')();
}.call(null);

goog.exportSymbol('proto.google.protobuf.Empty', null, global);
/**
Expand Down
16 changes: 15 additions & 1 deletion api/google/protobuf/field_mask_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,21 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = function () {
if (this) {
return this;
}
if (typeof window !== 'undefined') {
return window;
}
if (typeof global !== 'undefined') {
return global;
}
if (typeof self !== 'undefined') {
return self;
}
return Function('return this')();
}.call(null);

goog.exportSymbol('proto.google.protobuf.FieldMask', null, global);
/**
Expand Down
16 changes: 15 additions & 1 deletion api/google/protobuf/struct_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,21 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = function () {
if (this) {
return this;
}
if (typeof window !== 'undefined') {
return window;
}
if (typeof global !== 'undefined') {
return global;
}
if (typeof self !== 'undefined') {
return self;
}
return Function('return this')();
}.call(null);

goog.exportSymbol('proto.google.protobuf.ListValue', null, global);
goog.exportSymbol('proto.google.protobuf.NullValue', null, global);
Expand Down
16 changes: 15 additions & 1 deletion api/google/protobuf/timestamp_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,21 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = function () {
if (this) {
return this;
}
if (typeof window !== 'undefined') {
return window;
}
if (typeof global !== 'undefined') {
return global;
}
if (typeof self !== 'undefined') {
return self;
}
return Function('return this')();
}.call(null);

goog.exportSymbol('proto.google.protobuf.Timestamp', null, global);
/**
Expand Down
16 changes: 15 additions & 1 deletion api/google/rpc/status_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,21 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = function () {
if (this) {
return this;
}
if (typeof window !== 'undefined') {
return window;
}
if (typeof global !== 'undefined') {
return global;
}
if (typeof self !== 'undefined') {
return self;
}
return Function('return this')();
}.call(null);

var google_protobuf_any_pb = require('google-protobuf/google/protobuf/any_pb.js');
goog.object.extend(proto, google_protobuf_any_pb);
Expand Down
16 changes: 15 additions & 1 deletion api/google/type/latlng_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,21 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = function () {
if (this) {
return this;
}
if (typeof window !== 'undefined') {
return window;
}
if (typeof global !== 'undefined') {
return global;
}
if (typeof self !== 'undefined') {
return self;
}
return Function('return this')();
}.call(null);

goog.exportSymbol('proto.google.type.LatLng', null, global);
/**
Expand Down
4 changes: 3 additions & 1 deletion api/ondewo/csi/conversation_grpc_pb.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// GENERATED CODE -- DO NOT EDIT!

// Original file comments:
// Copyright 2021 ONDEWO GmbH
// Copyright 2021-2023 ONDEWO GmbH
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -336,6 +336,7 @@ var ConversationsService = (exports.ConversationsService = {
responseSerialize: serialize_ondewo_csi_CheckUpstreamHealthResponse,
responseDeserialize: deserialize_ondewo_csi_CheckUpstreamHealthResponse
},
// Get the control stream to control sip, t2s, s2t etc. during a conversation
getControlStream: {
path: '/ondewo.csi.Conversations/GetControlStream',
requestStream: false,
Expand All @@ -347,6 +348,7 @@ var ConversationsService = (exports.ConversationsService = {
responseSerialize: serialize_ondewo_csi_ControlStreamResponse,
responseDeserialize: deserialize_ondewo_csi_ControlStreamResponse
},
// Send a message on the control stream to control sip, t2s, s2t etc. during a conversation
setControlStatus: {
path: '/ondewo.csi.Conversations/SetControlStatus',
requestStream: false,
Expand Down
55 changes: 6 additions & 49 deletions api/ondewo/csi/conversation_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ export class S2sStreamResponse extends jspb.Message {
getDetectIntentResponse(): ondewo_nlu_session_pb.DetectIntentResponse | undefined;
setDetectIntentResponse(value?: ondewo_nlu_session_pb.DetectIntentResponse): S2sStreamResponse;

hasSynthetizeResponse(): boolean;
clearSynthetizeResponse(): void;
getSynthetizeResponse(): ondewo_t2s_text_to_speech_pb.SynthesizeResponse | undefined;
setSynthetizeResponse(value?: ondewo_t2s_text_to_speech_pb.SynthesizeResponse): S2sStreamResponse;
hasSynthesizeResponse(): boolean;
clearSynthesizeResponse(): void;
getSynthesizeResponse(): ondewo_t2s_text_to_speech_pb.SynthesizeResponse | undefined;
setSynthesizeResponse(value?: ondewo_t2s_text_to_speech_pb.SynthesizeResponse): S2sStreamResponse;

hasSipTrigger(): boolean;
clearSipTrigger(): void;
Expand All @@ -175,14 +175,14 @@ export class S2sStreamResponse extends jspb.Message {
export namespace S2sStreamResponse {
export type AsObject = {
detectIntentResponse?: ondewo_nlu_session_pb.DetectIntentResponse.AsObject;
synthetizeResponse?: ondewo_t2s_text_to_speech_pb.SynthesizeResponse.AsObject;
synthesizeResponse?: ondewo_t2s_text_to_speech_pb.SynthesizeResponse.AsObject;
sipTrigger?: SipTrigger.AsObject;
};

export enum ResponseCase {
RESPONSE_NOT_SET = 0,
DETECT_INTENT_RESPONSE = 1,
SYNTHETIZE_RESPONSE = 2,
SYNTHESIZE_RESPONSE = 2,
SIP_TRIGGER = 3
}
}
Expand Down Expand Up @@ -342,49 +342,6 @@ export namespace SetControlStatusResponse {
};
}

export class CondtionValueUnion extends jspb.Message {
hasIntValue(): boolean;
clearIntValue(): void;
getIntValue(): number;
setIntValue(value: number): CondtionValueUnion;

hasFloatValue(): boolean;
clearFloatValue(): void;
getFloatValue(): number;
setFloatValue(value: number): CondtionValueUnion;

hasDatetimeValue(): boolean;
clearDatetimeValue(): void;
getDatetimeValue(): google_protobuf_timestamp_pb.Timestamp | undefined;
setDatetimeValue(value?: google_protobuf_timestamp_pb.Timestamp): CondtionValueUnion;

getUniononeofCase(): CondtionValueUnion.UniononeofCase;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): CondtionValueUnion.AsObject;
static toObject(includeInstance: boolean, msg: CondtionValueUnion): CondtionValueUnion.AsObject;
static extensions: { [key: number]: jspb.ExtensionFieldInfo<jspb.Message> };
static extensionsBinary: { [key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message> };
static serializeBinaryToWriter(message: CondtionValueUnion, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): CondtionValueUnion;
static deserializeBinaryFromReader(message: CondtionValueUnion, reader: jspb.BinaryReader): CondtionValueUnion;
}

export namespace CondtionValueUnion {
export type AsObject = {
intValue: number;
floatValue: number;
datetimeValue?: google_protobuf_timestamp_pb.Timestamp.AsObject;
};

export enum UniononeofCase {
UNIONONEOF_NOT_SET = 0,
INT_VALUE = 1,
FLOAT_VALUE = 2,
DATETIME_VALUE = 3
}
}

export class Condition extends jspb.Message {
getType(): ConditionType;
setType(value: ConditionType): Condition;
Expand Down
Loading

0 comments on commit 50f9702

Please sign in to comment.