@jealous-robot-dev/shared-types-responses 1.18.0 → 1.18.1

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.
@@ -10,6 +10,7 @@ export interface ObjectWithTimeStamp<Type> {
10
10
  export declare enum ASSIcons {
11
11
  PREFS = "PREFS",
12
12
  SECURITY = "SECURITY",
13
+ MAKE_SECURE = "MAKE_SECURE",
13
14
  PRIVACY = "PRIVACY",
14
15
  PAYMENTS = "PAYMENTS",
15
16
  TRANSACTIONS = "TRANSACTIONS",
@@ -5,6 +5,7 @@ var ASSIcons;
5
5
  (function (ASSIcons) {
6
6
  ASSIcons["PREFS"] = "PREFS";
7
7
  ASSIcons["SECURITY"] = "SECURITY";
8
+ ASSIcons["MAKE_SECURE"] = "MAKE_SECURE";
8
9
  ASSIcons["PRIVACY"] = "PRIVACY";
9
10
  ASSIcons["PAYMENTS"] = "PAYMENTS";
10
11
  ASSIcons["TRANSACTIONS"] = "TRANSACTIONS";
@@ -1,12 +1,14 @@
1
1
  import { FAQ, LND } from '../common';
2
+ export declare enum UserPreferenceSections {
3
+ LANG = "LANG",
4
+ CURRENCY = "CURRENCY",
5
+ THEME = "THEME"
6
+ }
7
+ export interface UserPreferenceSection extends LND {
8
+ type: UserPreferenceSections;
9
+ }
2
10
  export interface UserPreferencePhrases {
3
- FAQ: {
4
- notice_on_currencies: FAQ;
5
- };
11
+ FAQ: FAQ[];
6
12
  title: string;
7
- sections: {
8
- theme: LND;
9
- currency: LND;
10
- language: LND;
11
- };
13
+ sections: UserPreferenceSection[];
12
14
  }
@@ -1,2 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UserPreferenceSections = void 0;
4
+ var UserPreferenceSections;
5
+ (function (UserPreferenceSections) {
6
+ UserPreferenceSections["LANG"] = "LANG";
7
+ UserPreferenceSections["CURRENCY"] = "CURRENCY";
8
+ UserPreferenceSections["THEME"] = "THEME";
9
+ })(UserPreferenceSections = exports.UserPreferenceSections || (exports.UserPreferenceSections = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.18.0",
3
+ "version": "1.18.1",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",