· 6 years ago · Mar 03, 2019, 04:32 AM
1/*
2=========================
3=== ÐТОМЫ ===
4=========================
5*/
6 //логин/региÑтрациÑ/Ñигн-ин
7 const auth = {
8 email,
9 password,
10 OAuthToken,
11 type, // (fb/email)
12 }
13
14
15 //обновление ÑеÑÑии опциональные Ð¿Ð¾Ð»Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ðµ влиÑÑŽÑ‚ на Ñоздание ÑеÑÑии
16 const sesssionConfig = {
17 version,
18 platform,
19 pushToken,
20 expiresIn,
21 deleteIn,
22 }
23
24 const customer = {
25 id,
26 profileId,
27 createdAt,
28 updatedAt,
29 phone,
30 email,
31 fullName,
32 }
33
34 const customerUpdation = {
35 phone,
36 fullName,
37 }
38
39 const partner = {
40 id,
41 profileId,
42 companyName ,
43 description ,
44 categoryIds,
45 img,
46 urlMainPage,
47 urlStore,
48 urlSearchProducts,
49 discountValue,
50 discountType,
51 discountStart,
52 discountEnd,
53 }
54
55 const partnerUpdation = {
56 companyName,
57 description,
58 categoryIds,
59 urlMainPage,
60 urlStore,
61 urlSearchProducts,
62 discountValue,
63 discountType,
64 discountStart,
65 discountEnd,
66 }