-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
64 lines (52 loc) · 1.78 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
64
// ! Recuerden hacer export de cada interface
// ! que necesiten exponer para ser consumida
// ! por las aplicaciones de Ionic y Angular
export {AdminRole, AdminUser} from './src/admin/admin';
export {Biker, BikerStatus} from './src/biker/biker';
export {Business, BusinessContact, BusinessContactType} from './src/business/business';
export {Customer} from './src/customer/customer';
export {
Order,
OrderItem,
OrderStatus,
PaymentMethod,
statusInSpanish,
paymentMethodInSpanish
} from './src/order/order';
export {Rating} from './src/rating/rating';
export {AverageRating} from './src/rating/averageRating';
export {DeliveryAvailable} from './src/other/deliveryAvailable';
export {Product} from './src/product/product';
export {Tag} from './src/product/tag';
export {ConfigItem, SinpeData} from './src/admin/configItem';
export {UserStatus, Coords, UserType} from './src/other/shared';
export {Message} from "./src/order/chat";
/**
* Colecciones de Firestore
*/
export enum FirestoreCollections {
/** Coleccion de {@link AdminUser} */
adminUsers = 'adminUsers',
/** Coleccion de {@link Biker} */
bikers = 'bikers',
/** Coleccion de {@link Business} */
businesses = 'businesses',
/** Coleccion de {@link Customer} */
customers = 'customers',
/** Coleccion de {@link Order} */
orders = 'orders',
/** Coleccion de {@link Rating} */
ratings = 'ratings',
/** Coleccion de {@link Message} */
chat = 'chat',
/** Coleccion de {@link AverageRating} */
averageRating = 'averageRating',
/** Coleccion de {@link DeliveryAvailable} */
deliveriesAvailable = 'deliveriesAvailable',
/** Coleccion de {@link Product} */
products = 'products',
/** Coleccion de {@link Tag} */
tags = 'tags',
/** Coleccion de {@link ConfigItem} */
configItems = 'configItems'
}