@jealous-robot-dev/shared-types-responses 1.31.16 → 1.31.19

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.
@@ -16,7 +16,8 @@ export declare enum EventSectionIDs {
16
16
  SMART_DATE_PICKER = "SMART_DATE_PICKER",
17
17
  REVIEWS = "REVIEWS",
18
18
  DATES = "DATES",
19
- TIPS = "TIPS & REQUIREMENTS"
19
+ TIPS = "TIPS & REQUIREMENTS",
20
+ CANCELLATION_RULES = "CANCELLATION RULES"
20
21
  }
21
22
  export interface ViewEventCommonData {
22
23
  id: string;
@@ -170,6 +171,11 @@ export interface ViewEventTipsPhrases {
170
171
  title: string;
171
172
  entries: LND[];
172
173
  }
174
+ export interface ViewEventCancellationPhrases {
175
+ title: string;
176
+ description: string;
177
+ learn_more: string;
178
+ }
173
179
  export interface ViewEventNavigationPhrases {
174
180
  overview: string;
175
181
  host_info: string;
@@ -17,6 +17,7 @@ var EventSectionIDs;
17
17
  EventSectionIDs["REVIEWS"] = "REVIEWS";
18
18
  EventSectionIDs["DATES"] = "DATES";
19
19
  EventSectionIDs["TIPS"] = "TIPS & REQUIREMENTS";
20
+ EventSectionIDs["CANCELLATION_RULES"] = "CANCELLATION RULES";
20
21
  })(EventSectionIDs = exports.EventSectionIDs || (exports.EventSectionIDs = {}));
21
22
  //basic rules
22
23
  var BasicRulesSectionIDs;
@@ -13,17 +13,15 @@ export declare enum FormEventFields {
13
13
  }
14
14
  export declare const FEFListed: FormEventFields[];
15
15
  export declare enum EventTypes {
16
- LIVE_TRANSLATION = "LIVE_TRANSLATION",
17
- LECTURES_WEBINARS = "LECTURES_WEBINARS",
18
16
  TEACHING = "TEACHING",
19
17
  PHYSICAL_ACTIVITY = "PHYSICAL_ACTIVITY",
20
- ART = "ART",
21
18
  RELAXATION = "RELAXATION",
22
19
  YOGA = "YOGA",
23
20
  PRIVATE_CONSULTATION = "PRIVATE_CONSULTATION",
24
- COOKING_GUIDE = "COOKING_GUIDE",
25
21
  DEVELOPERS_AND_TECH = "DEVELOPERS_AND_TECH",
26
- ENTERTAINMENT = "ENTERTAINMENT"
22
+ ENTERTAINMENT = "ENTERTAINMENT",
23
+ CRYPTOS = "CRYPTOS",
24
+ NFT = "NFT"
27
25
  }
28
26
  export declare const ETListed: EventTypes[];
29
27
  export declare enum EventTimeModes {
@@ -22,23 +22,20 @@ exports.FEFListed = [
22
22
  ];
23
23
  var EventTypes;
24
24
  (function (EventTypes) {
25
- EventTypes["LIVE_TRANSLATION"] = "LIVE_TRANSLATION";
26
- EventTypes["LECTURES_WEBINARS"] = "LECTURES_WEBINARS";
27
25
  EventTypes["TEACHING"] = "TEACHING";
28
26
  EventTypes["PHYSICAL_ACTIVITY"] = "PHYSICAL_ACTIVITY";
29
- EventTypes["ART"] = "ART";
30
27
  EventTypes["RELAXATION"] = "RELAXATION";
31
28
  EventTypes["YOGA"] = "YOGA";
32
29
  EventTypes["PRIVATE_CONSULTATION"] = "PRIVATE_CONSULTATION";
33
- EventTypes["COOKING_GUIDE"] = "COOKING_GUIDE";
34
30
  EventTypes["DEVELOPERS_AND_TECH"] = "DEVELOPERS_AND_TECH";
35
31
  EventTypes["ENTERTAINMENT"] = "ENTERTAINMENT";
32
+ EventTypes["CRYPTOS"] = "CRYPTOS";
33
+ EventTypes["NFT"] = "NFT";
36
34
  })(EventTypes = exports.EventTypes || (exports.EventTypes = {}));
37
35
  exports.ETListed = [
38
- EventTypes.ART, EventTypes.COOKING_GUIDE, EventTypes.DEVELOPERS_AND_TECH,
39
- EventTypes.ENTERTAINMENT, EventTypes.LECTURES_WEBINARS, EventTypes.LIVE_TRANSLATION,
40
- EventTypes.PHYSICAL_ACTIVITY, EventTypes.PRIVATE_CONSULTATION, EventTypes.RELAXATION,
41
- EventTypes.TEACHING, EventTypes.YOGA
36
+ EventTypes.CRYPTOS, EventTypes.NFT, EventTypes.DEVELOPERS_AND_TECH,
37
+ EventTypes.ENTERTAINMENT, EventTypes.TEACHING, EventTypes.YOGA,
38
+ EventTypes.PHYSICAL_ACTIVITY, EventTypes.PRIVATE_CONSULTATION, EventTypes.RELAXATION
42
39
  ];
43
40
  var EventTimeModes;
44
41
  (function (EventTimeModes) {
@@ -3,4 +3,5 @@ export * from './invite';
3
3
  export * from './collections';
4
4
  export * from './cancellations';
5
5
  export * from './search-user';
6
+ export * from './not-found';
6
7
  export * from './404';
@@ -15,4 +15,5 @@ __exportStar(require("./invite"), exports);
15
15
  __exportStar(require("./collections"), exports);
16
16
  __exportStar(require("./cancellations"), exports);
17
17
  __exportStar(require("./search-user"), exports);
18
+ __exportStar(require("./not-found"), exports);
18
19
  __exportStar(require("./404"), exports);
@@ -0,0 +1,6 @@
1
+ export interface UserNotFoundPage {
2
+ title: string;
3
+ page_title: string;
4
+ go_to_main: string;
5
+ description: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.31.16",
3
+ "version": "1.31.19",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",