-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
63 lines (63 loc) · 2.14 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
export { Address } from './opendelivery/address';
export { LatLng } from './opendelivery/location';
export { EntityType, Merchant, MerchantType } from './opendelivery/merchant';
export {
MerchantAddress,
MerchantBasicInfo,
} from './opendelivery/merchant/basic-info';
export { MerchantCategory } from './opendelivery/merchant/category';
export { Image } from './opendelivery/merchant/image';
export { Menu } from './opendelivery/merchant/menu';
export { Availability } from './opendelivery/merchant/menu/availability';
export { Category } from './opendelivery/merchant/menu/category';
export { Item, ItemOffer } from './opendelivery/merchant/menu/item';
export {
Allergen,
Diet,
NutritionalInfo,
} from './opendelivery/merchant/menu/item/nutritional-info';
export { Option, OptionGroup } from './opendelivery/merchant/menu/option';
export {
PutMerchantOnboardingRequest,
PutMerchantOnboardingResponse,
} from './opendelivery/merchant/payloads/onboarding';
export { GetMerchantStatusResponse } from './opendelivery/merchant/payloads/status';
export {
MerchantUpdateAvailabilityRequest,
MerchantUpdateCategoryRequest,
MerchantUpdateEmptyRequest,
MerchantUpdateEntityBaseRequest,
MerchantUpdateItemOfferRequest,
MerchantUpdateItemRequest,
MerchantUpdateMenuRequest,
MerchantUpdateOptionGroupRequest,
MerchantUpdateOptionRequest,
MerchantUpdateRequest,
MerchantUpdateServiceRequest,
MerchantUpdateStatusRequest,
} from './opendelivery/merchant/payloads/update';
export {
Service,
ServiceStatus,
ServiceType,
} from './opendelivery/merchant/service';
export { ServiceArea } from './opendelivery/merchant/service/area';
export {
DayOfWeek,
ServiceHours,
TimePeriods,
} from './opendelivery/merchant/service/hours';
export {
ScheduleTimeWindow,
ServiceSchedule,
ServiceTiming,
ServiceTimingType,
} from './opendelivery/merchant/service/timing';
export { Status } from './opendelivery/merchant/status';
export { Price } from './opendelivery/price';
export { Version } from './opendelivery/versions';
export {
EventsMethod,
GetMerchantVersionsResponse,
GetOrderingAppVersionsResponse,
} from './opendelivery/versions/payloads/requests';