@jealous-robot-dev/shared-types-responses 1.54.1 → 1.54.2
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.
@@ -1,6 +1,4 @@
|
|
1
|
-
import { QueryResponse } from '../common';
|
2
1
|
import { HostEventPics, HostEventFee, EventTypes, HostingPriceLimits, HostEventTime, CurrencyLmits, ServiceAudience } from '@jealous-robot-dev/drophr-common';
|
3
|
-
import { EventManagerPhrases } from '@jealous-robot-dev/shared-phrases';
|
4
2
|
export declare type UpdatableEventValue = string | HostEventPics[] | HostEventPics | string[] | HostEventFee | ServiceAudience | number | HostEventTime;
|
5
3
|
export interface EventInManager {
|
6
4
|
id: string;
|
@@ -22,8 +20,10 @@ export interface EventInManager {
|
|
22
20
|
}
|
23
21
|
export interface EventManagerData {
|
24
22
|
is_restricted: boolean;
|
25
|
-
events: EventInManager[];
|
26
23
|
fee?: HostingPriceLimits;
|
24
|
+
events: EventInManager[];
|
25
|
+
categories: EventTypes[];
|
26
|
+
audiences: ServiceAudience[];
|
27
27
|
}
|
28
28
|
export interface EventManagerCustomTime {
|
29
29
|
limits: CurrencyLmits;
|
@@ -31,5 +31,3 @@ export interface EventManagerCustomTime {
|
|
31
31
|
originalDuration: number;
|
32
32
|
originalCapacity: number;
|
33
33
|
}
|
34
|
-
export interface EventManagerResponse extends QueryResponse<EventManagerData, EventManagerPhrases> {
|
35
|
-
}
|