Skip to content

Commit

Permalink
v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frsechet committed Sep 28, 2021
1 parent ae7940f commit 8400bad
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 25 deletions.
6 changes: 3 additions & 3 deletions bindings/node/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "csml_engine_node"
version = "1.7.0-beta4"
version = "1.7.0"
authors = ["Alexis Merelo <[email protected]>"]
license = "MIT"
build = "build.rs"
Expand All @@ -17,7 +17,7 @@ neon-build = "0.4.0"
[dependencies]
neon = "0.4.0"
neon-serde = "0.4.0"
csml_engine = { version = "1.7.0-beta4", path = "../../../csml_engine", features = ["mongo", "postgresql", "dynamo"]}
csml_interpreter = { version = "1.7.0-beta4", path = "../../../csml_interpreter"}
csml_engine = { version = "1.7.0", path = "../../../csml_engine", features = ["mongo", "postgresql", "dynamo"]}
csml_interpreter = { version = "1.7.0", path = "../../../csml_interpreter"}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
4 changes: 2 additions & 2 deletions csml_engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "csml_engine"
version = "1.7.0-beta4"
version = "1.7.0"
authors = [
"Alexis Merelo <[email protected]>",
"François Falala-Sechet <[email protected]>",
Expand Down Expand Up @@ -82,7 +82,7 @@ default_features = false
optional = true

[dependencies]
csml_interpreter = { version = "1.7.0-beta4", path = "../csml_interpreter" }
csml_interpreter = { version = "1.7.0", path = "../csml_interpreter" }
multimap = "0.8.2"
md-5 = "0.9.1"
chrono = { version = "0.4.19", features = ["serde"]}
Expand Down
2 changes: 1 addition & 1 deletion csml_interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "csml_interpreter"
version = "1.7.0-beta4"
version = "1.7.0"
authors = [
"Alexis Merelo <[email protected]>",
"François Falala-Sechet <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion csml_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "csml_server"
version = "1.7.0-beta4"
version = "1.7.0"
authors = ["François Falala-Sechet <[email protected]>"]
edition = "2018"

Expand Down
43 changes: 25 additions & 18 deletions csml_server/swagger.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: "3.0.0"
info:
version: 1.7.0-beta4
version: 1.7.0
title: CSML Engine
description: CSML Engine Server API specifications
termsOfService: http://csml.dev/terms/
Expand Down Expand Up @@ -107,20 +107,20 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/BotModel'
$ref: "#/components/schemas/BotModel"
responses:
'201':
description: ''
"201":
description: ""
content:
application/json:
schema:
$ref: '#/components/schemas/NewBotVersionResponse'
$ref: "#/components/schemas/NewBotVersionResponse"
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
$ref: "#/components/schemas/Error"

/bots/{bot_id}/versions:
get:
Expand Down Expand Up @@ -152,18 +152,18 @@ paths:
type: string
default: none
responses:
'200':
description: ''
"200":
description: ""
content:
application/json:
schema:
$ref: '#/components/schemas/BotVersionsResponse'
$ref: "#/components/schemas/BotVersionsResponse"
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
$ref: "#/components/schemas/Error"

/bots/{bot_id}/versions/{version_id}:
get:
Expand All @@ -187,18 +187,18 @@ paths:
schema:
type: string
responses:
'200':
description: ''
"200":
description: ""
content:
application/json:
schema:
$ref: '#/components/schemas/BotVersionModel'
$ref: "#/components/schemas/BotVersionModel"
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
$ref: "#/components/schemas/Error"

delete:
description: Delete the requested version
Expand All @@ -221,14 +221,14 @@ paths:
schema:
type: string
responses:
'204':
description: ''
"204":
description: ""
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
$ref: "#/components/schemas/Error"

/conversations:
get:
Expand Down Expand Up @@ -797,6 +797,13 @@ components:
type: string
example: ""
description: if defined, all messages will be POSTed to this URL as they are emitted by the CSML engine
ttl_duration:
type: integer
example: 30
description: number of days after which to expire chatbot usage data. Don't expire data if not set. Overrides corresponding engine environment variable
low_data_mode:
type: boolean
description: if set to true, the chatbot will not store the contents of sent/received messages. Overrides corresponding engine environment variable

PayloadModel:
type: object
Expand Down Expand Up @@ -1070,7 +1077,7 @@ components:
EngineVersion:
type: string
description: The version of the engine this resource was handled with. Can be used for compatibility checks later on.
example: "1.7.0-beta4"
example: "1.7.0"

Error:
type: object
Expand Down

0 comments on commit 8400bad

Please sign in to comment.