@jealous-robot-dev/shared-types-responses 1.55.12 → 1.55.14
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.
@@ -39,6 +39,7 @@ export interface CheckoutDetails {
|
|
39
39
|
fee: {
|
40
40
|
net: number;
|
41
41
|
currency: string;
|
42
|
+
public_key: string;
|
42
43
|
service_fee: number;
|
43
44
|
tax?: SalesTaxDetails;
|
44
45
|
};
|
@@ -47,6 +48,5 @@ export interface CheckoutDetails {
|
|
47
48
|
export interface CheckoutSubmission {
|
48
49
|
amount: number;
|
49
50
|
currency: string;
|
50
|
-
public_key: string;
|
51
51
|
intent_secret: string;
|
52
52
|
}
|
@@ -1,6 +1,4 @@
|
|
1
|
-
import { EventImpressionPhrases } from '@jealous-robot-dev/shared-phrases';
|
2
1
|
import { EventTypes } from '@jealous-robot-dev/drophr-common';
|
3
|
-
import { QueryResponse } from "../common";
|
4
2
|
import { UserInEvent } from "./events";
|
5
3
|
export interface EventImpressionData {
|
6
4
|
id: string;
|
@@ -15,5 +13,3 @@ export interface EventImpressionData {
|
|
15
13
|
starts_at: number;
|
16
14
|
host: UserInEvent;
|
17
15
|
}
|
18
|
-
export interface EventImpressionResponse extends QueryResponse<EventImpressionData, EventImpressionPhrases> {
|
19
|
-
}
|
@@ -5,6 +5,7 @@ export interface EventInSearch {
|
|
5
5
|
raiting: number;
|
6
6
|
capacity: number;
|
7
7
|
type: EventTypes;
|
8
|
+
is_saved: boolean;
|
8
9
|
pics: HostEventPics[];
|
9
10
|
reviews_count: number;
|
10
11
|
audience: ServiceAudience;
|
@@ -12,5 +13,4 @@ export interface EventInSearch {
|
|
12
13
|
amount: number;
|
13
14
|
isMin: boolean;
|
14
15
|
};
|
15
|
-
is_saved: boolean;
|
16
16
|
}
|