api-map.js
2.79 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
module.exports = {
'/api/product/data': {
api: 'app.product.data',
cache: true,
params: {
product_id: { type: Number },
uid: { type: Number, require: false },
},
},
'/api/coupon/yoho/list': {
api: 'app.coupons.get',
params: {
type: { type: String },
filter: { type: Number },
limit: { type: Number },
page: { type: Number },
},
},
'/api/coupon/yoho/num': {
api: 'app.coupons.getCouponNums',
params: {},
},
'/api/coupon/yoho/getcoupon': {
api: 'app.coupons.bindPCoupon',
params: {
coupon_code: { type: String },
},
},
'/api/coupon/ufo/list': {
api: 'ufo.coupons.get',
path: 'coupon',
ufo: true,
params: {},
},
'/api/ufo/seller/entryGoodsSizeList': {
ufo: true,
api: 'ufo.seller.entryGoodsSizeList',
params: {
productId: { type: Number },
limit: { type: Number },
page: { type: Number },
},
},
'/api/ufo/sellerOrder/computeAdjustPrice': {
ufo: true,
api: 'ufo.sellerOrder.computeAdjustPrice',
params: {
product_id: { type: Number },
storage_id: { type: Number },
new_price: { type: Number },
old_price: { type: Number },
num: { type: Number },
},
},
'/api/ufo/sellerOrder/batchAdjustPrice': {
ufo: true,
api: 'ufo.sellerOrder.batchAdjustPrice',
params: {
product_id: { type: Number },
storage_id: { type: Number },
new_price: { type: Number },
old_price: { type: Number },
num: { type: Number },
},
},
'/api/ufo/sellerOrder/batchDownShelf': {
ufo: true,
api: 'ufo.sellerOrder.batchDownShelf',
params: {
product_id: { type: Number },
storage_id: { type: Number },
old_price: { type: Number },
num: { type: Number },
},
},
/**
* 0元助力
*/
'/api/zero/help/poll/productList': {
api: 'app.search.pool.productList',
params: {
limit: { type: Number },
page: { type: Number },
productPool: { type: String, require: false },
},
},
'/api/zero/help/otherProductList': {
api: 'app.search.zeroHelp.otherProductList',
params: {
productSkn: { type: String },
limit: { type: Number },
page: { type: Number },
},
},
'/api/zero/help/command': {
api: 'app.commonCommand.add',
params: {
// 业务来源,如1-0元免单
source: { type: Number },
// 活动ID
key: { type: Number },
},
},
'/api/zero/help/info': {
api: 'app.zeroHelp.helpInfo',
params: {
// 1-发起人调用,0-助力者调用
type: { type: Number },
userActivityId: { type: Number },
},
},
'/api/yoho/resource': {
service: true,
api: 'operations/api/v5/resource/get',
params: {
content_code: { type: String },
},
},
};