@jealous-robot-dev/shared-types-responses 1.26.5 → 1.26.9
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.
|
@@ -48,15 +48,20 @@ export interface EventCheckoutPhrases {
|
|
|
48
48
|
};
|
|
49
49
|
}
|
|
50
50
|
export interface CheckoutEventDetails {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
51
|
+
id: string;
|
|
52
|
+
sid: string;
|
|
53
|
+
fee: number;
|
|
54
|
+
pic: string;
|
|
55
|
+
name: string;
|
|
56
|
+
type: string;
|
|
57
|
+
raiting: number;
|
|
58
|
+
reviews: number;
|
|
59
|
+
language: string;
|
|
60
|
+
order_id: string;
|
|
61
|
+
duration: number;
|
|
62
|
+
starts_at: string;
|
|
63
|
+
}
|
|
64
|
+
export declare enum FeeChargingReponses {
|
|
65
|
+
SUCCEDED = "SUCCEDED",
|
|
66
|
+
FAILED = "FAILED"
|
|
62
67
|
}
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FeeChargingReponses = void 0;
|
|
4
|
+
var FeeChargingReponses;
|
|
5
|
+
(function (FeeChargingReponses) {
|
|
6
|
+
FeeChargingReponses["SUCCEDED"] = "SUCCEDED";
|
|
7
|
+
FeeChargingReponses["FAILED"] = "FAILED";
|
|
8
|
+
})(FeeChargingReponses = exports.FeeChargingReponses || (exports.FeeChargingReponses = {}));
|
|
@@ -110,6 +110,7 @@ export interface EventSessionTime {
|
|
|
110
110
|
sid: string;
|
|
111
111
|
duration: number;
|
|
112
112
|
starts_at: string;
|
|
113
|
+
can_book: boolean;
|
|
113
114
|
is_almost_taken: boolean;
|
|
114
115
|
}
|
|
115
116
|
export interface ViewEventDates {
|
|
@@ -130,6 +131,8 @@ export interface ViewEventDatesCalendarPhrases {
|
|
|
130
131
|
export interface ViewEventCommonDatePhrases {
|
|
131
132
|
choose: string;
|
|
132
133
|
person: string;
|
|
134
|
+
sold: string;
|
|
135
|
+
almost_sold: string;
|
|
133
136
|
show_more_dates?: string;
|
|
134
137
|
}
|
|
135
138
|
export interface ViewEventDatesMatchesPhrases {
|