@jealous-robot-dev/shared-types-responses 1.32.13 → 1.32.16
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,32 @@ 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
|
+
}
|
45
52
|
export interface ViewEventCommonPhrases {
|
46
53
|
read_more: string;
|
47
54
|
show_more: string;
|
48
55
|
show_less: string;
|
49
56
|
load_more: string;
|
57
|
+
report: {
|
58
|
+
label: string;
|
59
|
+
form: {
|
60
|
+
success: LND;
|
61
|
+
title: string;
|
62
|
+
cancel: string;
|
63
|
+
submit: string;
|
64
|
+
description: string;
|
65
|
+
reasons: {
|
66
|
+
title: string;
|
67
|
+
id: ServiceReportReasons;
|
68
|
+
}[];
|
69
|
+
};
|
70
|
+
};
|
50
71
|
}
|
51
72
|
export interface ViewEventBriefOverview {
|
52
73
|
title: string;
|
@@ -62,6 +83,8 @@ export interface ViewEventIntroPhrases {
|
|
62
83
|
save: string;
|
63
84
|
}
|
64
85
|
export declare enum BasicRulesSectionIDs {
|
86
|
+
HIGH_RATE = "HIGH_RATE",
|
87
|
+
GOLD_BADGE = "GOLD_BADGE",
|
65
88
|
HOW_TO_JOIN = "HOW_TO_JOIN",
|
66
89
|
PRIVATE_MEETING = "PRIVATE_MEETING",
|
67
90
|
MULTI_GUEST_MEETING = "MULTI_GUEST_MEETING"
|
@@ -90,13 +113,17 @@ export interface ViewEventPhrasesHowToParticipate {
|
|
90
113
|
}[];
|
91
114
|
}
|
92
115
|
export interface ViewEventAboutHostPhrases {
|
116
|
+
about: string;
|
93
117
|
reviews: string;
|
94
118
|
website: string;
|
95
|
-
|
119
|
+
gold_badge: string;
|
96
120
|
use_drophr: string;
|
97
121
|
member_since: string;
|
98
122
|
login_to_view: string;
|
123
|
+
about_gold_badge: LND;
|
99
124
|
ask_a_question: string;
|
125
|
+
cancellation_rate: string;
|
126
|
+
about_cancellation_rate: LND;
|
100
127
|
}
|
101
128
|
export interface ViewEventHostData {
|
102
129
|
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,20 @@ 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 = exports.ServiceReportReasons || (exports.ServiceReportReasons = {}));
|
22
31
|
//basic rules
|
23
32
|
var BasicRulesSectionIDs;
|
24
33
|
(function (BasicRulesSectionIDs) {
|
34
|
+
BasicRulesSectionIDs["HIGH_RATE"] = "HIGH_RATE";
|
35
|
+
BasicRulesSectionIDs["GOLD_BADGE"] = "GOLD_BADGE";
|
25
36
|
BasicRulesSectionIDs["HOW_TO_JOIN"] = "HOW_TO_JOIN";
|
26
37
|
BasicRulesSectionIDs["PRIVATE_MEETING"] = "PRIVATE_MEETING";
|
27
38
|
BasicRulesSectionIDs["MULTI_GUEST_MEETING"] = "MULTI_GUEST_MEETING";
|