@jealous-robot-dev/shared-types-responses 1.20.9 → 1.20.11

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.
@@ -86,6 +86,7 @@ export interface VerifyEmailPhrases {
86
86
  title: string;
87
87
  description: string;
88
88
  input: AuthFormInputField;
89
+ resend: LND;
89
90
  }
90
91
  export interface VerifyDevicePhrases {
91
92
  title: string;
@@ -3,12 +3,14 @@ import { QueryResponse } from '../common';
3
3
  export declare enum UserPrivacyCheckboxes {
4
4
  AFOAU = "appearForOnlyAuthenticatedUsers",
5
5
  PE = "publicEmail",
6
- PL = "publicLocation"
6
+ PL = "publicLocation",
7
+ PBD = "publicBirthday"
7
8
  }
8
9
  export interface UserPrivacy {
9
10
  [UserPrivacyCheckboxes.AFOAU]: boolean;
10
11
  [UserPrivacyCheckboxes.PE]: boolean;
11
12
  [UserPrivacyCheckboxes.PL]: boolean;
13
+ [UserPrivacyCheckboxes.PBD]: boolean;
12
14
  }
13
15
  export interface UserPrivacyCheckboxSectionPhrases<ID extends UserPrivacyCheckboxes> {
14
16
  id: ID;
@@ -18,10 +20,7 @@ export interface UserPrivacyCheckboxSectionPhrases<ID extends UserPrivacyCheckbo
18
20
  export interface UserPrivacyPhrases {
19
21
  settings: {
20
22
  privacy: string;
21
- connections: string;
22
- checkboxfields: [UserPrivacyCheckboxSectionPhrases<UserPrivacyCheckboxes.AFOAU>, UserPrivacyCheckboxSectionPhrases<UserPrivacyCheckboxes.PE>, UserPrivacyCheckboxSectionPhrases<UserPrivacyCheckboxes.PL>];
23
- connect: string;
24
- disconnect: string;
23
+ checkboxfields: [UserPrivacyCheckboxSectionPhrases<UserPrivacyCheckboxes.AFOAU>, UserPrivacyCheckboxSectionPhrases<UserPrivacyCheckboxes.PBD>, UserPrivacyCheckboxSectionPhrases<UserPrivacyCheckboxes.PE>, UserPrivacyCheckboxSectionPhrases<UserPrivacyCheckboxes.PL>];
25
24
  };
26
25
  FAQ: FAQ[];
27
26
  }
@@ -6,4 +6,5 @@ var UserPrivacyCheckboxes;
6
6
  UserPrivacyCheckboxes["AFOAU"] = "appearForOnlyAuthenticatedUsers";
7
7
  UserPrivacyCheckboxes["PE"] = "publicEmail";
8
8
  UserPrivacyCheckboxes["PL"] = "publicLocation";
9
+ UserPrivacyCheckboxes["PBD"] = "publicBirthday";
9
10
  })(UserPrivacyCheckboxes = exports.UserPrivacyCheckboxes || (exports.UserPrivacyCheckboxes = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.20.9",
3
+ "version": "1.20.11",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",