@itleanchatbot/shared-models-js-postgres 1.1.85 → 1.1.86

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itleanchatbot/shared-models-js-postgres",
3
- "version": "1.1.85",
3
+ "version": "1.1.86",
4
4
  "description": "Shared Models JS Postgres",
5
5
  "main": "index.js",
6
6
  "license": "ISC",
@@ -3,6 +3,7 @@ const APIS_RESOURCES_BODY_TYPES = {
3
3
  HTML: 'html',
4
4
  TEXT: 'text',
5
5
  XML: 'xml',
6
+ URL_ENCODE: 'url-encode'
6
7
  }
7
8
 
8
9
  const APIS_RESOURCES_BODY_TYPE = [
@@ -10,6 +11,7 @@ const APIS_RESOURCES_BODY_TYPES = {
10
11
  APIS_RESOURCES_BODY_TYPES.HTML,
11
12
  APIS_RESOURCES_BODY_TYPES.TEXT,
12
13
  APIS_RESOURCES_BODY_TYPES.XML,
14
+ APIS_RESOURCES_BODY_TYPES.URL_ENCODE
13
15
  ]
14
16
 
15
17
  const ApiResourcesBodiesModel = (sequelize, Sequelize) => {