@forteplatforms/sdk 1.0.149 → 1.0.150

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.
@@ -26,13 +26,13 @@ export interface ForteApiException {
26
26
  * @type {string}
27
27
  * @memberof ForteApiException
28
28
  */
29
- forteExceptionType?: string;
29
+ message?: string;
30
30
  /**
31
31
  *
32
32
  * @type {string}
33
33
  * @memberof ForteApiException
34
34
  */
35
- message?: string;
35
+ forteExceptionType?: string;
36
36
  }
37
37
  /**
38
38
  * @export
@@ -143,8 +143,8 @@ function ForteApiExceptionFromJSONTyped(json, ignoreDiscriminator) {
143
143
  }
144
144
  return {
145
145
  'errorCode': json['errorCode'] == null ? undefined : json['errorCode'],
146
- 'forteExceptionType': json['forteExceptionType'] == null ? undefined : json['forteExceptionType'],
147
146
  'message': json['message'] == null ? undefined : json['message'],
147
+ 'forteExceptionType': json['forteExceptionType'] == null ? undefined : json['forteExceptionType'],
148
148
  };
149
149
  }
150
150
  function ForteApiExceptionToJSON(json) {
@@ -157,7 +157,7 @@ function ForteApiExceptionToJSONTyped(value, ignoreDiscriminator) {
157
157
  }
158
158
  return {
159
159
  'errorCode': value['errorCode'],
160
- 'forteExceptionType': value['forteExceptionType'],
161
160
  'message': value['message'],
161
+ 'forteExceptionType': value['forteExceptionType'],
162
162
  };
163
163
  }
@@ -80,7 +80,7 @@ exports.querystring = querystring;
80
80
  exports.exists = exists;
81
81
  exports.mapValues = mapValues;
82
82
  exports.canConsumeForm = canConsumeForm;
83
- exports.BASE_PATH = "http://localhost".replace(/\/+$/, "");
83
+ exports.BASE_PATH = "https://api.forteplatforms.com".replace(/\/+$/, "");
84
84
  var Configuration = /** @class */ (function () {
85
85
  function Configuration(configuration) {
86
86
  if (configuration === void 0) { configuration = {}; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forteplatforms/sdk",
3
- "version": "1.0.149",
3
+ "version": "1.0.150",
4
4
  "description": "Official TypeScript SDK for Forte Platforms",
5
5
  "author": "Forte Platforms <support@forteplatforms.com>",
6
6
  "repository": {