@jealous-robot-dev/shared-types-responses 1.32.12 → 1.32.15

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.
@@ -42,11 +42,34 @@ export interface ViewEventPicturePhrases {
42
42
  close: string;
43
43
  show_all_photos: string;
44
44
  }
45
+ export declare enum ServiceReportReasons {
46
+ SCAM = "SCAM",
47
+ INCOMPETENCE = "INCOMPETENCE",
48
+ HATE_OR_RACISM = "HATE_OR_RACISM",
49
+ POLICY_VIOLATION = "POLICY_VIOLATION",
50
+ ABUSIVE_BEHAVIOUR = "ABUSIVE_BEHAVIOUR",
51
+ IMPROPER_BEHAVIOUR = "IMPROPER_BEHAVIOUR"
52
+ }
45
53
  export interface ViewEventCommonPhrases {
46
54
  read_more: string;
47
55
  show_more: string;
48
56
  show_less: string;
49
57
  load_more: string;
58
+ report: {
59
+ label: string;
60
+ form: {
61
+ success: LND;
62
+ title: string;
63
+ cancel: string;
64
+ submit: string;
65
+ description: string;
66
+ reasons: {
67
+ title: string;
68
+ description: string;
69
+ id: ServiceReportReasons;
70
+ }[];
71
+ };
72
+ };
50
73
  }
51
74
  export interface ViewEventBriefOverview {
52
75
  title: string;
@@ -62,6 +85,8 @@ export interface ViewEventIntroPhrases {
62
85
  save: string;
63
86
  }
64
87
  export declare enum BasicRulesSectionIDs {
88
+ HIGH_RATE = "HIGH_RATE",
89
+ GOLD_BADGE = "GOLD_BADGE",
65
90
  HOW_TO_JOIN = "HOW_TO_JOIN",
66
91
  PRIVATE_MEETING = "PRIVATE_MEETING",
67
92
  MULTI_GUEST_MEETING = "MULTI_GUEST_MEETING"
@@ -90,13 +115,17 @@ export interface ViewEventPhrasesHowToParticipate {
90
115
  }[];
91
116
  }
92
117
  export interface ViewEventAboutHostPhrases {
118
+ about: string;
93
119
  reviews: string;
94
120
  website: string;
95
- acceptance: string;
121
+ gold_badge: string;
96
122
  use_drophr: string;
97
123
  member_since: string;
98
124
  login_to_view: string;
125
+ about_gold_badge: LND;
99
126
  ask_a_question: string;
127
+ cancellation_rate: string;
128
+ about_cancellation_rate: LND;
100
129
  }
101
130
  export interface ViewEventHostData {
102
131
  is_available: boolean;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BasicRulesSectionIDs = exports.EventSectionIDs = void 0;
3
+ exports.BasicRulesSectionIDs = exports.ServiceReportReasons = exports.EventSectionIDs = void 0;
4
4
  var EventSectionIDs;
5
5
  (function (EventSectionIDs) {
6
6
  EventSectionIDs["INTRO"] = "INTRO";
@@ -19,9 +19,21 @@ var EventSectionIDs;
19
19
  EventSectionIDs["TIPS"] = "TIPS & REQUIREMENTS";
20
20
  EventSectionIDs["CANCELLATION_RULES"] = "CANCELLATION RULES";
21
21
  })(EventSectionIDs = exports.EventSectionIDs || (exports.EventSectionIDs = {}));
22
+ //common
23
+ var ServiceReportReasons;
24
+ (function (ServiceReportReasons) {
25
+ ServiceReportReasons["SCAM"] = "SCAM";
26
+ ServiceReportReasons["INCOMPETENCE"] = "INCOMPETENCE";
27
+ ServiceReportReasons["HATE_OR_RACISM"] = "HATE_OR_RACISM";
28
+ ServiceReportReasons["POLICY_VIOLATION"] = "POLICY_VIOLATION";
29
+ ServiceReportReasons["ABUSIVE_BEHAVIOUR"] = "ABUSIVE_BEHAVIOUR";
30
+ ServiceReportReasons["IMPROPER_BEHAVIOUR"] = "IMPROPER_BEHAVIOUR";
31
+ })(ServiceReportReasons = exports.ServiceReportReasons || (exports.ServiceReportReasons = {}));
22
32
  //basic rules
23
33
  var BasicRulesSectionIDs;
24
34
  (function (BasicRulesSectionIDs) {
35
+ BasicRulesSectionIDs["HIGH_RATE"] = "HIGH_RATE";
36
+ BasicRulesSectionIDs["GOLD_BADGE"] = "GOLD_BADGE";
25
37
  BasicRulesSectionIDs["HOW_TO_JOIN"] = "HOW_TO_JOIN";
26
38
  BasicRulesSectionIDs["PRIVATE_MEETING"] = "PRIVATE_MEETING";
27
39
  BasicRulesSectionIDs["MULTI_GUEST_MEETING"] = "MULTI_GUEST_MEETING";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.32.12",
3
+ "version": "1.32.15",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",