btrz-api-client 6.0.0 → 7.1.0
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.
- package/lib/client-standalone-min.js +2 -2
- package/lib/client.js +1 -1
- package/lib/endpoints/inventory/{station-types.js → station-classes.js} +11 -11
- package/lib/endpoints/sales/cart.js +66 -52
- package/package.json +1 -1
- package/src/client.js +1 -1
- package/src/endpoints/inventory/{station-types.js → station-classes.js} +11 -11
- package/src/endpoints/sales/cart.js +10 -1
- package/test/endpoints/inventory/station-types.test.js +19 -19
- package/test/endpoints/sales/cart.test.js +7 -1
- package/types/client.d.ts +13 -7
- package/types/endpoints/inventory/station-classes.d.ts +38 -0
- package/types/endpoints/inventory/station-types.d.ts +8 -8
- package/types/endpoints/sales/cart.d.ts +6 -0
- package/types/initializedClient.d.ts +13 -7
package/lib/client.js
CHANGED
|
@@ -102,7 +102,7 @@ function createInventory(_ref) {
|
|
|
102
102
|
scheduleGroups: require("./endpoints/inventory/schedule-groups.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
103
103
|
bundles: require("./endpoints/inventory/bundles.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
104
104
|
stationGroups: require("./endpoints/inventory/station-groups.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
105
|
-
|
|
105
|
+
stationClasses: require("./endpoints/inventory/station-classes.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
106
106
|
zonePrices: require("./endpoints/inventory/zone-prices.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
107
107
|
zonePriceOverages: require("./endpoints/inventory/zone-price-overages.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
108
108
|
travellerCardProviders: require("./endpoints/inventory/traveller-card-providers.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _require = require("
|
|
3
|
+
var _require = require("../endpoints_helpers.js"),
|
|
4
4
|
authorizationHeaders = _require.authorizationHeaders;
|
|
5
5
|
|
|
6
|
-
function
|
|
6
|
+
function stationClassFactory(_ref) {
|
|
7
7
|
var client = _ref.client,
|
|
8
8
|
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
9
9
|
|
|
@@ -15,7 +15,7 @@ function stationTypeFactory(_ref) {
|
|
|
15
15
|
headers = _ref2.headers;
|
|
16
16
|
|
|
17
17
|
return client({
|
|
18
|
-
url: "/station-
|
|
18
|
+
url: "/station-classes",
|
|
19
19
|
method: "get",
|
|
20
20
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers }),
|
|
21
21
|
params: query
|
|
@@ -25,13 +25,13 @@ function stationTypeFactory(_ref) {
|
|
|
25
25
|
function get(_ref3) {
|
|
26
26
|
var token = _ref3.token,
|
|
27
27
|
jwtToken = _ref3.jwtToken,
|
|
28
|
-
|
|
28
|
+
stationClassId = _ref3.stationClassId,
|
|
29
29
|
_ref3$query = _ref3.query,
|
|
30
30
|
query = _ref3$query === undefined ? {} : _ref3$query,
|
|
31
31
|
headers = _ref3.headers;
|
|
32
32
|
|
|
33
33
|
return client({
|
|
34
|
-
url: "/station-
|
|
34
|
+
url: "/station-classes/" + stationClassId,
|
|
35
35
|
method: "get",
|
|
36
36
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers }),
|
|
37
37
|
params: query
|
|
@@ -41,12 +41,12 @@ function stationTypeFactory(_ref) {
|
|
|
41
41
|
function update(_ref4) {
|
|
42
42
|
var token = _ref4.token,
|
|
43
43
|
jwtToken = _ref4.jwtToken,
|
|
44
|
-
|
|
44
|
+
stationClassId = _ref4.stationClassId,
|
|
45
45
|
data = _ref4.data,
|
|
46
46
|
headers = _ref4.headers;
|
|
47
47
|
|
|
48
48
|
return client({
|
|
49
|
-
url: "/station-
|
|
49
|
+
url: "/station-classes/" + stationClassId,
|
|
50
50
|
method: "put",
|
|
51
51
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers }),
|
|
52
52
|
data: data
|
|
@@ -56,11 +56,11 @@ function stationTypeFactory(_ref) {
|
|
|
56
56
|
function remove(_ref5) {
|
|
57
57
|
var token = _ref5.token,
|
|
58
58
|
jwtToken = _ref5.jwtToken,
|
|
59
|
-
|
|
59
|
+
stationClassId = _ref5.stationClassId,
|
|
60
60
|
headers = _ref5.headers;
|
|
61
61
|
|
|
62
62
|
return client({
|
|
63
|
-
url: "/station-
|
|
63
|
+
url: "/station-classes/" + stationClassId,
|
|
64
64
|
method: "delete",
|
|
65
65
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
66
66
|
});
|
|
@@ -73,7 +73,7 @@ function stationTypeFactory(_ref) {
|
|
|
73
73
|
headers = _ref6.headers;
|
|
74
74
|
|
|
75
75
|
return client({
|
|
76
|
-
url: "/station-
|
|
76
|
+
url: "/station-classes",
|
|
77
77
|
method: "post",
|
|
78
78
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers }),
|
|
79
79
|
data: data
|
|
@@ -89,4 +89,4 @@ function stationTypeFactory(_ref) {
|
|
|
89
89
|
};
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
module.exports =
|
|
92
|
+
module.exports = stationClassFactory;
|
|
@@ -77,20 +77,33 @@ function cartFactory(_ref) {
|
|
|
77
77
|
headers = _ref6.headers;
|
|
78
78
|
|
|
79
79
|
return client({
|
|
80
|
-
url: "/
|
|
80
|
+
url: "/carts/" + cartId + "/paid-in-items/" + itemId,
|
|
81
|
+
method: "delete",
|
|
82
|
+
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function deletePaidInItems(_ref7) {
|
|
87
|
+
var token = _ref7.token,
|
|
88
|
+
cartId = _ref7.cartId,
|
|
89
|
+
jwtToken = _ref7.jwtToken,
|
|
90
|
+
headers = _ref7.headers;
|
|
91
|
+
|
|
92
|
+
return client({
|
|
93
|
+
url: "/carts/" + cartId + "/paid-in-items",
|
|
81
94
|
method: "delete",
|
|
82
95
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
83
96
|
});
|
|
84
97
|
}
|
|
85
98
|
|
|
86
99
|
var loyaltyPointsAmount = {
|
|
87
|
-
get: function get(
|
|
88
|
-
var token =
|
|
89
|
-
jwtToken =
|
|
90
|
-
cartId =
|
|
91
|
-
|
|
92
|
-
query =
|
|
93
|
-
headers =
|
|
100
|
+
get: function get(_ref8) {
|
|
101
|
+
var token = _ref8.token,
|
|
102
|
+
jwtToken = _ref8.jwtToken,
|
|
103
|
+
cartId = _ref8.cartId,
|
|
104
|
+
_ref8$query = _ref8.query,
|
|
105
|
+
query = _ref8$query === undefined ? {} : _ref8$query,
|
|
106
|
+
headers = _ref8.headers;
|
|
94
107
|
|
|
95
108
|
return client({
|
|
96
109
|
url: "/carts/" + cartId + "/loyalty-points-amount",
|
|
@@ -100,12 +113,12 @@ function cartFactory(_ref) {
|
|
|
100
113
|
}
|
|
101
114
|
};
|
|
102
115
|
|
|
103
|
-
function patch(
|
|
104
|
-
var token =
|
|
105
|
-
jwtToken =
|
|
106
|
-
cartId =
|
|
107
|
-
data =
|
|
108
|
-
headers =
|
|
116
|
+
function patch(_ref9) {
|
|
117
|
+
var token = _ref9.token,
|
|
118
|
+
jwtToken = _ref9.jwtToken,
|
|
119
|
+
cartId = _ref9.cartId,
|
|
120
|
+
data = _ref9.data,
|
|
121
|
+
headers = _ref9.headers;
|
|
109
122
|
|
|
110
123
|
return client({
|
|
111
124
|
url: "/cart/" + cartId,
|
|
@@ -116,11 +129,11 @@ function cartFactory(_ref) {
|
|
|
116
129
|
}
|
|
117
130
|
|
|
118
131
|
var partialDepositStatus = {
|
|
119
|
-
get: function get(
|
|
120
|
-
var token =
|
|
121
|
-
jwtToken =
|
|
122
|
-
shiftId =
|
|
123
|
-
headers =
|
|
132
|
+
get: function get(_ref10) {
|
|
133
|
+
var token = _ref10.token,
|
|
134
|
+
jwtToken = _ref10.jwtToken,
|
|
135
|
+
shiftId = _ref10.shiftId,
|
|
136
|
+
headers = _ref10.headers;
|
|
124
137
|
|
|
125
138
|
return client.get("/cart/" + shiftId + "/partial-deposit-status", {
|
|
126
139
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
@@ -129,11 +142,11 @@ function cartFactory(_ref) {
|
|
|
129
142
|
};
|
|
130
143
|
|
|
131
144
|
var payments = {
|
|
132
|
-
delete: function _delete(
|
|
133
|
-
var token =
|
|
134
|
-
cartId =
|
|
135
|
-
jwtToken =
|
|
136
|
-
headers =
|
|
145
|
+
delete: function _delete(_ref11) {
|
|
146
|
+
var token = _ref11.token,
|
|
147
|
+
cartId = _ref11.cartId,
|
|
148
|
+
jwtToken = _ref11.jwtToken,
|
|
149
|
+
headers = _ref11.headers;
|
|
137
150
|
|
|
138
151
|
return client({
|
|
139
152
|
url: "/carts/" + cartId + "/payments",
|
|
@@ -141,12 +154,12 @@ function cartFactory(_ref) {
|
|
|
141
154
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
142
155
|
});
|
|
143
156
|
},
|
|
144
|
-
put: function put(
|
|
145
|
-
var token =
|
|
146
|
-
cartId =
|
|
147
|
-
jwtToken =
|
|
148
|
-
headers =
|
|
149
|
-
payment =
|
|
157
|
+
put: function put(_ref12) {
|
|
158
|
+
var token = _ref12.token,
|
|
159
|
+
cartId = _ref12.cartId,
|
|
160
|
+
jwtToken = _ref12.jwtToken,
|
|
161
|
+
headers = _ref12.headers,
|
|
162
|
+
payment = _ref12.payment;
|
|
150
163
|
|
|
151
164
|
return client({
|
|
152
165
|
url: "/carts/" + cartId + "/payments",
|
|
@@ -158,13 +171,13 @@ function cartFactory(_ref) {
|
|
|
158
171
|
};
|
|
159
172
|
|
|
160
173
|
var taxExemptPaymentMethod = {
|
|
161
|
-
post: function post(
|
|
162
|
-
var token =
|
|
163
|
-
cartId =
|
|
164
|
-
jwtToken =
|
|
165
|
-
headers =
|
|
166
|
-
|
|
167
|
-
data =
|
|
174
|
+
post: function post(_ref13) {
|
|
175
|
+
var token = _ref13.token,
|
|
176
|
+
cartId = _ref13.cartId,
|
|
177
|
+
jwtToken = _ref13.jwtToken,
|
|
178
|
+
headers = _ref13.headers,
|
|
179
|
+
_ref13$data = _ref13.data,
|
|
180
|
+
data = _ref13$data === undefined ? {} : _ref13$data;
|
|
168
181
|
|
|
169
182
|
return client({
|
|
170
183
|
url: "/carts/" + cartId + "/tax-exempt-payment-method",
|
|
@@ -176,14 +189,14 @@ function cartFactory(_ref) {
|
|
|
176
189
|
};
|
|
177
190
|
|
|
178
191
|
var financingCosts = {
|
|
179
|
-
create: function create(
|
|
180
|
-
var token =
|
|
181
|
-
jwtToken =
|
|
182
|
-
headers =
|
|
183
|
-
cartId =
|
|
184
|
-
financingCost =
|
|
185
|
-
|
|
186
|
-
query =
|
|
192
|
+
create: function create(_ref14) {
|
|
193
|
+
var token = _ref14.token,
|
|
194
|
+
jwtToken = _ref14.jwtToken,
|
|
195
|
+
headers = _ref14.headers,
|
|
196
|
+
cartId = _ref14.cartId,
|
|
197
|
+
financingCost = _ref14.financingCost,
|
|
198
|
+
_ref14$query = _ref14.query,
|
|
199
|
+
query = _ref14$query === undefined ? {} : _ref14$query;
|
|
187
200
|
|
|
188
201
|
return client({
|
|
189
202
|
url: "/carts/" + cartId + "/financing-costs",
|
|
@@ -195,13 +208,13 @@ function cartFactory(_ref) {
|
|
|
195
208
|
}
|
|
196
209
|
});
|
|
197
210
|
},
|
|
198
|
-
delete: function _delete(
|
|
199
|
-
var token =
|
|
200
|
-
jwtToken =
|
|
201
|
-
headers =
|
|
202
|
-
cartId =
|
|
203
|
-
|
|
204
|
-
query =
|
|
211
|
+
delete: function _delete(_ref15) {
|
|
212
|
+
var token = _ref15.token,
|
|
213
|
+
jwtToken = _ref15.jwtToken,
|
|
214
|
+
headers = _ref15.headers,
|
|
215
|
+
cartId = _ref15.cartId,
|
|
216
|
+
_ref15$query = _ref15.query,
|
|
217
|
+
query = _ref15$query === undefined ? {} : _ref15$query;
|
|
205
218
|
|
|
206
219
|
return client({
|
|
207
220
|
url: "/carts/" + cartId + "/financing-costs",
|
|
@@ -218,6 +231,7 @@ function cartFactory(_ref) {
|
|
|
218
231
|
add: add,
|
|
219
232
|
deleteItems: deleteItems,
|
|
220
233
|
deletePaidInItem: deletePaidInItem,
|
|
234
|
+
deletePaidInItems: deletePaidInItems,
|
|
221
235
|
loyaltyPointsAmount: loyaltyPointsAmount,
|
|
222
236
|
patch: patch,
|
|
223
237
|
partialDepositStatus: partialDepositStatus,
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -89,7 +89,7 @@ function createInventory({baseURL, headers, timeout, overrideFn, internalAuthTok
|
|
|
89
89
|
scheduleGroups: require("./endpoints/inventory/schedule-groups.js")({client, internalAuthTokenProvider}),
|
|
90
90
|
bundles: require("./endpoints/inventory/bundles.js")({client, internalAuthTokenProvider}),
|
|
91
91
|
stationGroups: require("./endpoints/inventory/station-groups.js")({client, internalAuthTokenProvider}),
|
|
92
|
-
|
|
92
|
+
stationClasses: require("./endpoints/inventory/station-classes.js")({client, internalAuthTokenProvider}),
|
|
93
93
|
zonePrices: require("./endpoints/inventory/zone-prices.js")({client, internalAuthTokenProvider}),
|
|
94
94
|
zonePriceOverages: require("./endpoints/inventory/zone-price-overages.js")({client, internalAuthTokenProvider}),
|
|
95
95
|
travellerCardProviders: require("./endpoints/inventory/traveller-card-providers.js")({client, internalAuthTokenProvider}),
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
const {authorizationHeaders} = require("
|
|
1
|
+
const {authorizationHeaders} = require("../endpoints_helpers.js");
|
|
2
2
|
|
|
3
|
-
function
|
|
3
|
+
function stationClassFactory({client, internalAuthTokenProvider}) {
|
|
4
4
|
function all({token, jwtToken, query = {}, headers}) {
|
|
5
5
|
return client({
|
|
6
|
-
url: "/station-
|
|
6
|
+
url: "/station-classes",
|
|
7
7
|
method: "get",
|
|
8
8
|
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers}),
|
|
9
9
|
params: query
|
|
10
10
|
});
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
function get({token, jwtToken,
|
|
13
|
+
function get({token, jwtToken, stationClassId, query = {}, headers}) {
|
|
14
14
|
return client({
|
|
15
|
-
url: `/station-
|
|
15
|
+
url: `/station-classes/${stationClassId}`,
|
|
16
16
|
method: "get",
|
|
17
17
|
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers}),
|
|
18
18
|
params: query
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
function update({token, jwtToken,
|
|
22
|
+
function update({token, jwtToken, stationClassId, data, headers}) {
|
|
23
23
|
return client({
|
|
24
|
-
url: `/station-
|
|
24
|
+
url: `/station-classes/${stationClassId}`,
|
|
25
25
|
method: "put",
|
|
26
26
|
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers}),
|
|
27
27
|
data
|
|
28
28
|
});
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
function remove({token, jwtToken,
|
|
31
|
+
function remove({token, jwtToken, stationClassId, headers}) {
|
|
32
32
|
return client({
|
|
33
|
-
url: `/station-
|
|
33
|
+
url: `/station-classes/${stationClassId}`,
|
|
34
34
|
method: "delete",
|
|
35
35
|
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|
|
36
36
|
});
|
|
@@ -38,7 +38,7 @@ function stationTypeFactory({client, internalAuthTokenProvider}) {
|
|
|
38
38
|
|
|
39
39
|
function create({token, jwtToken, data, headers}) {
|
|
40
40
|
return client({
|
|
41
|
-
url: "/station-
|
|
41
|
+
url: "/station-classes",
|
|
42
42
|
method: "post",
|
|
43
43
|
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers}),
|
|
44
44
|
data
|
|
@@ -54,4 +54,4 @@ function stationTypeFactory({client, internalAuthTokenProvider}) {
|
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
module.exports =
|
|
57
|
+
module.exports = stationClassFactory;
|
|
@@ -43,7 +43,15 @@ function cartFactory({client, internalAuthTokenProvider}) {
|
|
|
43
43
|
|
|
44
44
|
function deletePaidInItem({token, cartId, itemId, jwtToken, headers}) {
|
|
45
45
|
return client({
|
|
46
|
-
url: `/
|
|
46
|
+
url: `/carts/${cartId}/paid-in-items/${itemId}`,
|
|
47
|
+
method: "delete",
|
|
48
|
+
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function deletePaidInItems({token, cartId, jwtToken, headers}) {
|
|
53
|
+
return client({
|
|
54
|
+
url: `/carts/${cartId}/paid-in-items`,
|
|
47
55
|
method: "delete",
|
|
48
56
|
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|
|
49
57
|
});
|
|
@@ -134,6 +142,7 @@ function cartFactory({client, internalAuthTokenProvider}) {
|
|
|
134
142
|
add,
|
|
135
143
|
deleteItems,
|
|
136
144
|
deletePaidInItem,
|
|
145
|
+
deletePaidInItems,
|
|
137
146
|
loyaltyPointsAmount,
|
|
138
147
|
patch,
|
|
139
148
|
partialDepositStatus,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const {axiosMock, expectRequest} = require("./../../test-helpers.js");
|
|
2
2
|
const api = require("./../../../src/client.js").createApiClient({baseURL: "http://test.com"});
|
|
3
3
|
|
|
4
|
-
describe("inventory/station-
|
|
4
|
+
describe("inventory/station-classes", () => {
|
|
5
5
|
const token = "I owe you a token";
|
|
6
6
|
const jwtToken = "I owe you a JWT token";
|
|
7
7
|
|
|
@@ -9,20 +9,20 @@ describe("inventory/station-types", () => {
|
|
|
9
9
|
axiosMock.restore();
|
|
10
10
|
});
|
|
11
11
|
|
|
12
|
-
it("should list station-
|
|
13
|
-
axiosMock.onGet("/station-
|
|
14
|
-
return api.inventory.
|
|
12
|
+
it("should list station-classes", () => {
|
|
13
|
+
axiosMock.onGet("/station-classes").reply(expectRequest({statusCode: 200, token, jwtToken}));
|
|
14
|
+
return api.inventory.stationClasses.all({token, jwtToken});
|
|
15
15
|
});
|
|
16
16
|
|
|
17
|
-
it("should get a station-
|
|
18
|
-
const
|
|
19
|
-
axiosMock.onGet(`/station-
|
|
20
|
-
return api.inventory.
|
|
17
|
+
it("should get a station-classes", () => {
|
|
18
|
+
const stationClassId = "123123123123";
|
|
19
|
+
axiosMock.onGet(`/station-classes/${stationClassId}`).reply(expectRequest({statusCode: 200, token, jwtToken}));
|
|
20
|
+
return api.inventory.stationClasses.get({token, jwtToken, stationClassId});
|
|
21
21
|
});
|
|
22
22
|
|
|
23
|
-
it("should create a station-
|
|
24
|
-
axiosMock.onPost("/station-
|
|
25
|
-
return api.inventory.
|
|
23
|
+
it("should create a station-classes", () => {
|
|
24
|
+
axiosMock.onPost("/station-classes").reply(expectRequest({statusCode: 200, token, jwtToken}));
|
|
25
|
+
return api.inventory.stationClasses.create({
|
|
26
26
|
jwtToken,
|
|
27
27
|
token,
|
|
28
28
|
data: {
|
|
@@ -33,20 +33,20 @@ describe("inventory/station-types", () => {
|
|
|
33
33
|
});
|
|
34
34
|
});
|
|
35
35
|
|
|
36
|
-
it("should update a station-
|
|
37
|
-
const
|
|
36
|
+
it("should update a station-classes", () => {
|
|
37
|
+
const stationClassId = "123123123123";
|
|
38
38
|
const data = {
|
|
39
39
|
name: "new",
|
|
40
40
|
code: 100,
|
|
41
41
|
ord: 10
|
|
42
42
|
};
|
|
43
|
-
axiosMock.onPut(`/station-
|
|
44
|
-
return api.inventory.
|
|
43
|
+
axiosMock.onPut(`/station-classes/${stationClassId}`).reply(expectRequest({statusCode: 200, token, jwtToken}));
|
|
44
|
+
return api.inventory.stationClasses.update({jwtToken, token, stationClassId, data});
|
|
45
45
|
});
|
|
46
46
|
|
|
47
|
-
it("should delete a station-
|
|
48
|
-
const
|
|
49
|
-
axiosMock.onDelete(`/station-
|
|
50
|
-
return api.inventory.
|
|
47
|
+
it("should delete a station-classes", () => {
|
|
48
|
+
const stationClassId = "123123123123";
|
|
49
|
+
axiosMock.onDelete(`/station-classes/${stationClassId}`).reply(expectRequest({statusCode: 200, token, jwtToken}));
|
|
50
|
+
return api.inventory.stationClasses.remove({jwtToken, token, stationClassId});
|
|
51
51
|
});
|
|
52
52
|
});
|
|
@@ -98,7 +98,13 @@ describe("sales/cart", () => {
|
|
|
98
98
|
it("should delete a paid in item from a cart", () => {
|
|
99
99
|
const cartId = "someCartId";
|
|
100
100
|
const itemId = "itemId";
|
|
101
|
-
axiosMock.onDelete(`/
|
|
101
|
+
axiosMock.onDelete(`/carts/${cartId}/paid-in-items/${itemId}`).reply(expectRequest({statusCode: 200, token, jwtToken}));
|
|
102
102
|
return api.sales.cart.deletePaidInItem({jwtToken, token, cartId, itemId});
|
|
103
103
|
});
|
|
104
|
+
|
|
105
|
+
it("should delete all paid in items from a cart", () => {
|
|
106
|
+
const cartId = "someCartId";
|
|
107
|
+
axiosMock.onDelete(`/carts/${cartId}/paid-in-items`).reply(expectRequest({statusCode: 200, token, jwtToken}));
|
|
108
|
+
return api.sales.cart.deletePaidInItems({jwtToken, token, cartId});
|
|
109
|
+
});
|
|
104
110
|
});
|
package/types/client.d.ts
CHANGED
|
@@ -1352,31 +1352,31 @@ export function createApiClient(options: {
|
|
|
1352
1352
|
headers: any;
|
|
1353
1353
|
}) => any;
|
|
1354
1354
|
};
|
|
1355
|
-
|
|
1355
|
+
stationClasses: {
|
|
1356
1356
|
all: ({ token, jwtToken, query, headers }: {
|
|
1357
1357
|
token: any;
|
|
1358
1358
|
jwtToken: any;
|
|
1359
1359
|
query?: {};
|
|
1360
1360
|
headers: any;
|
|
1361
1361
|
}) => any;
|
|
1362
|
-
get: ({ token, jwtToken,
|
|
1362
|
+
get: ({ token, jwtToken, stationClassId, query, headers }: {
|
|
1363
1363
|
token: any;
|
|
1364
1364
|
jwtToken: any;
|
|
1365
|
-
|
|
1365
|
+
stationClassId: any;
|
|
1366
1366
|
query?: {};
|
|
1367
1367
|
headers: any;
|
|
1368
1368
|
}) => any;
|
|
1369
|
-
update: ({ token, jwtToken,
|
|
1369
|
+
update: ({ token, jwtToken, stationClassId, data, headers }: {
|
|
1370
1370
|
token: any;
|
|
1371
1371
|
jwtToken: any;
|
|
1372
|
-
|
|
1372
|
+
stationClassId: any;
|
|
1373
1373
|
data: any;
|
|
1374
1374
|
headers: any;
|
|
1375
1375
|
}) => any;
|
|
1376
|
-
remove: ({ token, jwtToken,
|
|
1376
|
+
remove: ({ token, jwtToken, stationClassId, headers }: {
|
|
1377
1377
|
token: any;
|
|
1378
1378
|
jwtToken: any;
|
|
1379
|
-
|
|
1379
|
+
stationClassId: any;
|
|
1380
1380
|
headers: any;
|
|
1381
1381
|
}) => any;
|
|
1382
1382
|
create: ({ token, jwtToken, data, headers }: {
|
|
@@ -3013,6 +3013,12 @@ export function createApiClient(options: {
|
|
|
3013
3013
|
jwtToken: any;
|
|
3014
3014
|
headers: any;
|
|
3015
3015
|
}) => any;
|
|
3016
|
+
deletePaidInItems: ({ token, cartId, jwtToken, headers }: {
|
|
3017
|
+
token: any;
|
|
3018
|
+
cartId: any;
|
|
3019
|
+
jwtToken: any;
|
|
3020
|
+
headers: any;
|
|
3021
|
+
}) => any;
|
|
3016
3022
|
loyaltyPointsAmount: {
|
|
3017
3023
|
get({ token, jwtToken, cartId, query, headers }: {
|
|
3018
3024
|
token: any;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export = stationClassFactory;
|
|
2
|
+
declare function stationClassFactory({ client, internalAuthTokenProvider }: {
|
|
3
|
+
client: any;
|
|
4
|
+
internalAuthTokenProvider: any;
|
|
5
|
+
}): {
|
|
6
|
+
all: ({ token, jwtToken, query, headers }: {
|
|
7
|
+
token: any;
|
|
8
|
+
jwtToken: any;
|
|
9
|
+
query?: {};
|
|
10
|
+
headers: any;
|
|
11
|
+
}) => any;
|
|
12
|
+
get: ({ token, jwtToken, stationClassId, query, headers }: {
|
|
13
|
+
token: any;
|
|
14
|
+
jwtToken: any;
|
|
15
|
+
stationClassId: any;
|
|
16
|
+
query?: {};
|
|
17
|
+
headers: any;
|
|
18
|
+
}) => any;
|
|
19
|
+
update: ({ token, jwtToken, stationClassId, data, headers }: {
|
|
20
|
+
token: any;
|
|
21
|
+
jwtToken: any;
|
|
22
|
+
stationClassId: any;
|
|
23
|
+
data: any;
|
|
24
|
+
headers: any;
|
|
25
|
+
}) => any;
|
|
26
|
+
remove: ({ token, jwtToken, stationClassId, headers }: {
|
|
27
|
+
token: any;
|
|
28
|
+
jwtToken: any;
|
|
29
|
+
stationClassId: any;
|
|
30
|
+
headers: any;
|
|
31
|
+
}) => any;
|
|
32
|
+
create: ({ token, jwtToken, data, headers }: {
|
|
33
|
+
token: any;
|
|
34
|
+
jwtToken: any;
|
|
35
|
+
data: any;
|
|
36
|
+
headers: any;
|
|
37
|
+
}) => any;
|
|
38
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export =
|
|
2
|
-
declare function
|
|
1
|
+
export = stationClassFactory;
|
|
2
|
+
declare function stationClassFactory({ client, internalAuthTokenProvider }: {
|
|
3
3
|
client: any;
|
|
4
4
|
internalAuthTokenProvider: any;
|
|
5
5
|
}): {
|
|
@@ -9,24 +9,24 @@ declare function stationTypeFactory({ client, internalAuthTokenProvider }: {
|
|
|
9
9
|
query?: {};
|
|
10
10
|
headers: any;
|
|
11
11
|
}) => any;
|
|
12
|
-
get: ({ token, jwtToken,
|
|
12
|
+
get: ({ token, jwtToken, stationClassId, query, headers }: {
|
|
13
13
|
token: any;
|
|
14
14
|
jwtToken: any;
|
|
15
|
-
|
|
15
|
+
stationClassId: any;
|
|
16
16
|
query?: {};
|
|
17
17
|
headers: any;
|
|
18
18
|
}) => any;
|
|
19
|
-
update: ({ token, jwtToken,
|
|
19
|
+
update: ({ token, jwtToken, stationClassId, data, headers }: {
|
|
20
20
|
token: any;
|
|
21
21
|
jwtToken: any;
|
|
22
|
-
|
|
22
|
+
stationClassId: any;
|
|
23
23
|
data: any;
|
|
24
24
|
headers: any;
|
|
25
25
|
}) => any;
|
|
26
|
-
remove: ({ token, jwtToken,
|
|
26
|
+
remove: ({ token, jwtToken, stationClassId, headers }: {
|
|
27
27
|
token: any;
|
|
28
28
|
jwtToken: any;
|
|
29
|
-
|
|
29
|
+
stationClassId: any;
|
|
30
30
|
headers: any;
|
|
31
31
|
}) => any;
|
|
32
32
|
create: ({ token, jwtToken, data, headers }: {
|
|
@@ -36,6 +36,12 @@ declare function cartFactory({ client, internalAuthTokenProvider }: {
|
|
|
36
36
|
jwtToken: any;
|
|
37
37
|
headers: any;
|
|
38
38
|
}) => any;
|
|
39
|
+
deletePaidInItems: ({ token, cartId, jwtToken, headers }: {
|
|
40
|
+
token: any;
|
|
41
|
+
cartId: any;
|
|
42
|
+
jwtToken: any;
|
|
43
|
+
headers: any;
|
|
44
|
+
}) => any;
|
|
39
45
|
loyaltyPointsAmount: {
|
|
40
46
|
get({ token, jwtToken, cartId, query, headers }: {
|
|
41
47
|
token: any;
|
|
@@ -1306,31 +1306,31 @@ declare const _exports: {
|
|
|
1306
1306
|
headers: any;
|
|
1307
1307
|
}) => any;
|
|
1308
1308
|
};
|
|
1309
|
-
|
|
1309
|
+
stationClasses: {
|
|
1310
1310
|
all: ({ token, jwtToken, query, headers }: {
|
|
1311
1311
|
token: any;
|
|
1312
1312
|
jwtToken: any;
|
|
1313
1313
|
query?: {};
|
|
1314
1314
|
headers: any;
|
|
1315
1315
|
}) => any;
|
|
1316
|
-
get: ({ token, jwtToken,
|
|
1316
|
+
get: ({ token, jwtToken, stationClassId, query, headers }: {
|
|
1317
1317
|
token: any;
|
|
1318
1318
|
jwtToken: any;
|
|
1319
|
-
|
|
1319
|
+
stationClassId: any;
|
|
1320
1320
|
query?: {};
|
|
1321
1321
|
headers: any;
|
|
1322
1322
|
}) => any;
|
|
1323
|
-
update: ({ token, jwtToken,
|
|
1323
|
+
update: ({ token, jwtToken, stationClassId, data, headers }: {
|
|
1324
1324
|
token: any;
|
|
1325
1325
|
jwtToken: any;
|
|
1326
|
-
|
|
1326
|
+
stationClassId: any;
|
|
1327
1327
|
data: any;
|
|
1328
1328
|
headers: any;
|
|
1329
1329
|
}) => any;
|
|
1330
|
-
remove: ({ token, jwtToken,
|
|
1330
|
+
remove: ({ token, jwtToken, stationClassId, headers }: {
|
|
1331
1331
|
token: any;
|
|
1332
1332
|
jwtToken: any;
|
|
1333
|
-
|
|
1333
|
+
stationClassId: any;
|
|
1334
1334
|
headers: any;
|
|
1335
1335
|
}) => any;
|
|
1336
1336
|
create: ({ token, jwtToken, data, headers }: {
|
|
@@ -2967,6 +2967,12 @@ declare const _exports: {
|
|
|
2967
2967
|
jwtToken: any;
|
|
2968
2968
|
headers: any;
|
|
2969
2969
|
}) => any;
|
|
2970
|
+
deletePaidInItems: ({ token, cartId, jwtToken, headers }: {
|
|
2971
|
+
token: any;
|
|
2972
|
+
cartId: any;
|
|
2973
|
+
jwtToken: any;
|
|
2974
|
+
headers: any;
|
|
2975
|
+
}) => any;
|
|
2970
2976
|
loyaltyPointsAmount: {
|
|
2971
2977
|
get({ token, jwtToken, cartId, query, headers }: {
|
|
2972
2978
|
token: any;
|