@jealous-robot-dev/shared-types-responses 1.17.22 → 1.17.27

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.
@@ -40,3 +40,7 @@ export interface LandingPageData {
40
40
  static_content_path: string;
41
41
  sections: LangdingPageSections[];
42
42
  }
43
+ export interface LPVitalData {
44
+ data: LandingPageData;
45
+ bg: LPBg;
46
+ }
@@ -29,6 +29,7 @@ export declare enum Pages {
29
29
  }
30
30
  export declare const GUEST_EXPERIENCE_PAGES: Pages[];
31
31
  export declare const HOST_EXPERIENCE_PAGES: Pages[];
32
+ export declare const SHARED_EXPERIENCE_PAGES: Pages[];
32
33
  export declare const AUTH_EXPERIENCE_PAGES: Pages[];
33
34
  export declare enum UITHEME {
34
35
  DARK = "dark",
@@ -74,6 +75,8 @@ export declare enum Paths {
74
75
  INVITE = "/invite",
75
76
  LOGIN_OR_SIGNUP = "/login_or_signup",
76
77
  FORGOT_PASSWORD = "/forgot_password",
78
+ SEARCH_USERS = "/search/users",
79
+ SEARCH_EVENTS = "/search/events",
77
80
  PAYMENT_HISTORY = "/payment-history",
78
81
  PERFORMANCE = "/performance/reviews"
79
82
  }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Paths = exports.TextDirection = exports.UITHEME = exports.AUTH_EXPERIENCE_PAGES = exports.HOST_EXPERIENCE_PAGES = exports.GUEST_EXPERIENCE_PAGES = exports.Pages = void 0;
3
+ exports.Paths = exports.TextDirection = exports.UITHEME = exports.AUTH_EXPERIENCE_PAGES = exports.SHARED_EXPERIENCE_PAGES = exports.HOST_EXPERIENCE_PAGES = exports.GUEST_EXPERIENCE_PAGES = exports.Pages = void 0;
4
4
  var Pages;
5
5
  (function (Pages) {
6
6
  Pages["NOTIFICATIONS"] = "notifications";
@@ -38,8 +38,13 @@ exports.GUEST_EXPERIENCE_PAGES = [
38
38
  exports.HOST_EXPERIENCE_PAGES = [
39
39
  Pages.EVENT_MANAGER, Pages.HOST, Pages.PERFORMANCE
40
40
  ];
41
+ exports.SHARED_EXPERIENCE_PAGES = [
42
+ Pages.PAYMENT_HISTORY, Pages.NOTIFICATIONS,
43
+ Pages.MESSENGER, Pages.SCHEDULE
44
+ ];
41
45
  exports.AUTH_EXPERIENCE_PAGES = [
42
- Pages.FORGOT_PASSWORD, Pages.LOGIN_OR_SIGNUP, Pages.RESET_PASSWORD
46
+ Pages.FORGOT_PASSWORD, Pages.LOGIN_OR_SIGNUP,
47
+ Pages.RESET_PASSWORD
43
48
  ];
44
49
  var UITHEME;
45
50
  (function (UITHEME) {
@@ -68,6 +73,8 @@ var Paths;
68
73
  Paths["INVITE"] = "/invite";
69
74
  Paths["LOGIN_OR_SIGNUP"] = "/login_or_signup";
70
75
  Paths["FORGOT_PASSWORD"] = "/forgot_password";
76
+ Paths["SEARCH_USERS"] = "/search/users";
77
+ Paths["SEARCH_EVENTS"] = "/search/events";
71
78
  Paths["PAYMENT_HISTORY"] = "/payment-history";
72
79
  Paths["PERFORMANCE"] = "/performance/reviews";
73
80
  })(Paths = exports.Paths || (exports.Paths = {}));
@@ -47,7 +47,12 @@ export interface SHField {
47
47
  href: string;
48
48
  label: string;
49
49
  type: SHFieldLinkType;
50
+ has_notification?: boolean;
50
51
  is_bold?: boolean;
51
52
  with_hr?: boolean;
52
53
  page?: Pages;
53
54
  }
55
+ export interface SHConfig {
56
+ with_preferences?: boolean;
57
+ fields: SHField[];
58
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.17.22",
3
+ "version": "1.17.27",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",