@jealous-robot-dev/shared-types-responses 1.18.5 → 1.18.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,6 +20,11 @@ export declare enum ASSIcons {
20
20
  PERSONAL_INFO = "PERSONAL_INFO",
21
21
  MSG = "MSG"
22
22
  }
23
+ export declare enum CommonErrorReponses {
24
+ NOT_FOUND = "NOT_FOUND",
25
+ INTERNAL_ERROR = "INTERNAL_ERROR",
26
+ BAD_REQUEST = "BAD_REQUEST"
27
+ }
23
28
  export interface FAQ {
24
29
  question: string;
25
30
  icon: ASSIcons;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Languages = exports.UserPreferences = exports.CurrencyPosition = exports.ASSIcons = void 0;
3
+ exports.Languages = exports.UserPreferences = exports.CurrencyPosition = exports.CommonErrorReponses = exports.ASSIcons = void 0;
4
4
  var ASSIcons;
5
5
  (function (ASSIcons) {
6
6
  ASSIcons["PREFS"] = "PREFS";
@@ -15,6 +15,12 @@ var ASSIcons;
15
15
  ASSIcons["PERSONAL_INFO"] = "PERSONAL_INFO";
16
16
  ASSIcons["MSG"] = "MSG";
17
17
  })(ASSIcons = exports.ASSIcons || (exports.ASSIcons = {}));
18
+ var CommonErrorReponses;
19
+ (function (CommonErrorReponses) {
20
+ CommonErrorReponses["NOT_FOUND"] = "NOT_FOUND";
21
+ CommonErrorReponses["INTERNAL_ERROR"] = "INTERNAL_ERROR";
22
+ CommonErrorReponses["BAD_REQUEST"] = "BAD_REQUEST";
23
+ })(CommonErrorReponses = exports.CommonErrorReponses || (exports.CommonErrorReponses = {}));
18
24
  var CurrencyPosition;
19
25
  (function (CurrencyPosition) {
20
26
  CurrencyPosition["BEFORE"] = "before";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.18.5",
3
+ "version": "1.18.6",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",