@shophost/client 2.0.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/README.md +9 -0
- package/package.json +37 -0
- package/src/__generated__/openapi.json +13633 -0
- package/src/__generated__/sdk/client/client.gen.d.ts +2 -0
- package/src/__generated__/sdk/client/client.gen.js +200 -0
- package/src/__generated__/sdk/client/client.gen.js.map +1 -0
- package/src/__generated__/sdk/client/index.d.ts +8 -0
- package/src/__generated__/sdk/client/index.js +7 -0
- package/src/__generated__/sdk/client/index.js.map +1 -0
- package/src/__generated__/sdk/client/types.gen.d.ts +117 -0
- package/src/__generated__/sdk/client/types.gen.js +3 -0
- package/src/__generated__/sdk/client/types.gen.js.map +1 -0
- package/src/__generated__/sdk/client/utils.gen.d.ts +33 -0
- package/src/__generated__/sdk/client/utils.gen.js +221 -0
- package/src/__generated__/sdk/client/utils.gen.js.map +1 -0
- package/src/__generated__/sdk/client.gen.d.ts +12 -0
- package/src/__generated__/sdk/client.gen.js +4 -0
- package/src/__generated__/sdk/client.gen.js.map +1 -0
- package/src/__generated__/sdk/core/auth.gen.d.ts +18 -0
- package/src/__generated__/sdk/core/auth.gen.js +16 -0
- package/src/__generated__/sdk/core/auth.gen.js.map +1 -0
- package/src/__generated__/sdk/core/bodySerializer.gen.d.ts +25 -0
- package/src/__generated__/sdk/core/bodySerializer.gen.js +58 -0
- package/src/__generated__/sdk/core/bodySerializer.gen.js.map +1 -0
- package/src/__generated__/sdk/core/params.gen.d.ts +43 -0
- package/src/__generated__/sdk/core/params.gen.js +101 -0
- package/src/__generated__/sdk/core/params.gen.js.map +1 -0
- package/src/__generated__/sdk/core/pathSerializer.gen.d.ts +33 -0
- package/src/__generated__/sdk/core/pathSerializer.gen.js +115 -0
- package/src/__generated__/sdk/core/pathSerializer.gen.js.map +1 -0
- package/src/__generated__/sdk/core/queryKeySerializer.gen.d.ts +18 -0
- package/src/__generated__/sdk/core/queryKeySerializer.gen.js +100 -0
- package/src/__generated__/sdk/core/queryKeySerializer.gen.js.map +1 -0
- package/src/__generated__/sdk/core/serverSentEvents.gen.d.ts +71 -0
- package/src/__generated__/sdk/core/serverSentEvents.gen.js +135 -0
- package/src/__generated__/sdk/core/serverSentEvents.gen.js.map +1 -0
- package/src/__generated__/sdk/core/types.gen.d.ts +78 -0
- package/src/__generated__/sdk/core/types.gen.js +3 -0
- package/src/__generated__/sdk/core/types.gen.js.map +1 -0
- package/src/__generated__/sdk/core/utils.gen.d.ts +19 -0
- package/src/__generated__/sdk/core/utils.gen.js +88 -0
- package/src/__generated__/sdk/core/utils.gen.js.map +1 -0
- package/src/__generated__/sdk/index.d.ts +2 -0
- package/src/__generated__/sdk/index.js +3 -0
- package/src/__generated__/sdk/index.js.map +1 -0
- package/src/__generated__/sdk/sdk.gen.d.ts +315 -0
- package/src/__generated__/sdk/sdk.gen.js +360 -0
- package/src/__generated__/sdk/sdk.gen.js.map +1 -0
- package/src/__generated__/sdk/types.gen.d.ts +5113 -0
- package/src/__generated__/sdk/types.gen.js +3 -0
- package/src/__generated__/sdk/types.gen.js.map +1 -0
- package/src/index.d.ts +112 -0
- package/src/index.js +147 -0
- package/src/index.js.map +1 -0
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
import { client } from './client.gen';
|
|
3
|
+
/**
|
|
4
|
+
* Ping
|
|
5
|
+
*
|
|
6
|
+
* Pings the relevancy score service to check its availability
|
|
7
|
+
*/
|
|
8
|
+
export const ping = (options) => { var _a; return ((_a = options === null || options === void 0 ? void 0 : options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/ping' }, options)); };
|
|
9
|
+
/**
|
|
10
|
+
* Get Manufacturers
|
|
11
|
+
*
|
|
12
|
+
* Fetches a paginated list of manufacturers for a specific organization
|
|
13
|
+
*/
|
|
14
|
+
export const getManufacturers = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/manufacturers' }, options)); };
|
|
15
|
+
/**
|
|
16
|
+
* Create Manufacturer
|
|
17
|
+
*
|
|
18
|
+
* Creates a new manufacturer for a specific organization
|
|
19
|
+
*/
|
|
20
|
+
export const createManufacturer = (options) => {
|
|
21
|
+
var _a;
|
|
22
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/{organizationId}/manufacturers' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Delete Manufacturer
|
|
26
|
+
*
|
|
27
|
+
* Soft deletes a manufacturer
|
|
28
|
+
*/
|
|
29
|
+
export const deleteManufacturer = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).delete(Object.assign({ url: '/{organizationId}/manufacturers/{id}' }, options)); };
|
|
30
|
+
/**
|
|
31
|
+
* Get Manufacturer
|
|
32
|
+
*/
|
|
33
|
+
export const getManufacturer = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/manufacturers/{id}' }, options)); };
|
|
34
|
+
/**
|
|
35
|
+
* Update Manufacturer
|
|
36
|
+
*
|
|
37
|
+
* Updates an existing manufacturer
|
|
38
|
+
*/
|
|
39
|
+
export const updateManufacturer = (options) => {
|
|
40
|
+
var _a;
|
|
41
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).put(Object.assign(Object.assign({ url: '/{organizationId}/manufacturers/{id}' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Get Organizations
|
|
45
|
+
*
|
|
46
|
+
* Fetches a paginated list of organizations
|
|
47
|
+
*/
|
|
48
|
+
export const getOrganizations = (options) => { var _a; return ((_a = options === null || options === void 0 ? void 0 : options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/organizations' }, options)); };
|
|
49
|
+
/**
|
|
50
|
+
* Create Organization
|
|
51
|
+
*
|
|
52
|
+
* Creates a new organization
|
|
53
|
+
*/
|
|
54
|
+
export const createOrganization = (options) => {
|
|
55
|
+
var _a;
|
|
56
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/organizations' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Delete Organization
|
|
60
|
+
*
|
|
61
|
+
* Deletes a specific organization by ID
|
|
62
|
+
*/
|
|
63
|
+
export const deleteOrganization = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).delete(Object.assign({ url: '/organizations/{organizationId}' }, options)); };
|
|
64
|
+
/**
|
|
65
|
+
* Get Organization
|
|
66
|
+
*
|
|
67
|
+
* Fetches a specific organization by ID
|
|
68
|
+
*/
|
|
69
|
+
export const getOrganization = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/organizations/{organizationId}' }, options)); };
|
|
70
|
+
/**
|
|
71
|
+
* Update Organization
|
|
72
|
+
*
|
|
73
|
+
* Updates a specific organization by ID
|
|
74
|
+
*/
|
|
75
|
+
export const updateOrganization = (options) => {
|
|
76
|
+
var _a;
|
|
77
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).patch(Object.assign(Object.assign({ url: '/organizations/{organizationId}' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Get Vercel Token
|
|
81
|
+
*
|
|
82
|
+
* Returns a Vercel token
|
|
83
|
+
*/
|
|
84
|
+
export const getVercelToken = (options) => {
|
|
85
|
+
var _a;
|
|
86
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/files/token/vercel' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* Create Temporary File
|
|
90
|
+
*
|
|
91
|
+
* Creates a temporary file record and returns its ID
|
|
92
|
+
*/
|
|
93
|
+
export const createTemporaryFile = (options) => {
|
|
94
|
+
var _a;
|
|
95
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/files' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Get Product Categories
|
|
99
|
+
*
|
|
100
|
+
* Fetches a paginated list of product categories for a specific organization
|
|
101
|
+
*/
|
|
102
|
+
export const getProductCategories = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/product-categories' }, options)); };
|
|
103
|
+
/**
|
|
104
|
+
* Create Product Category
|
|
105
|
+
*
|
|
106
|
+
* Creates a new product category for a specific organization
|
|
107
|
+
*/
|
|
108
|
+
export const createProductCategory = (options) => {
|
|
109
|
+
var _a;
|
|
110
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/{organizationId}/product-categories' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Delete Product Category
|
|
114
|
+
*
|
|
115
|
+
* Deletes a specific product category by ID
|
|
116
|
+
*/
|
|
117
|
+
export const deleteProductCategory = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).delete(Object.assign({ url: '/{organizationId}/product-categories/{id}' }, options)); };
|
|
118
|
+
/**
|
|
119
|
+
* Get Product Category
|
|
120
|
+
*
|
|
121
|
+
* Fetches a specific product category by ID
|
|
122
|
+
*/
|
|
123
|
+
export const getProductCategory = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/product-categories/{id}' }, options)); };
|
|
124
|
+
/**
|
|
125
|
+
* Update Product Category
|
|
126
|
+
*
|
|
127
|
+
* Updates a specific product category by ID
|
|
128
|
+
*/
|
|
129
|
+
export const updateProductCategory = (options) => {
|
|
130
|
+
var _a;
|
|
131
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).patch(Object.assign(Object.assign({ url: '/{organizationId}/product-categories/{id}' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* Publish or Unpublish Product Category
|
|
135
|
+
*
|
|
136
|
+
* Sets the published status of an existing product category based on the operation (publish or unpublish)
|
|
137
|
+
*/
|
|
138
|
+
export const updateProductCategoryStatus = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign({ url: '/{organizationId}/product-categories/{id}/status/{operation}' }, options)); };
|
|
139
|
+
/**
|
|
140
|
+
* Get Products
|
|
141
|
+
*
|
|
142
|
+
* Fetches paginated list of products
|
|
143
|
+
*/
|
|
144
|
+
export const getProducts = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/products' }, options)); };
|
|
145
|
+
/**
|
|
146
|
+
* Create Product
|
|
147
|
+
*
|
|
148
|
+
* Creates a new product
|
|
149
|
+
*/
|
|
150
|
+
export const createProduct = (options) => {
|
|
151
|
+
var _a;
|
|
152
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/{organizationId}/products' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
153
|
+
};
|
|
154
|
+
/**
|
|
155
|
+
* Delete Product
|
|
156
|
+
*
|
|
157
|
+
* Deletes a specific product by ID
|
|
158
|
+
*/
|
|
159
|
+
export const deleteProduct = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).delete(Object.assign({ url: '/{organizationId}/products/{id}' }, options)); };
|
|
160
|
+
/**
|
|
161
|
+
* Get Product
|
|
162
|
+
*
|
|
163
|
+
* Fetches a specific product by ID
|
|
164
|
+
*/
|
|
165
|
+
export const getProduct = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/products/{id}' }, options)); };
|
|
166
|
+
/**
|
|
167
|
+
* Update Product
|
|
168
|
+
*
|
|
169
|
+
* Updates a specific product by ID
|
|
170
|
+
*/
|
|
171
|
+
export const updateProduct = (options) => {
|
|
172
|
+
var _a;
|
|
173
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).patch(Object.assign(Object.assign({ url: '/{organizationId}/products/{id}' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* Publish or Unpublish Product
|
|
177
|
+
*
|
|
178
|
+
* Sets the published status of an existing product based on the operation (publish or unpublish)
|
|
179
|
+
*/
|
|
180
|
+
export const updateProductStatus = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign({ url: '/{organizationId}/products/{id}/status/{operation}' }, options)); };
|
|
181
|
+
/**
|
|
182
|
+
* Get Products by Category
|
|
183
|
+
*
|
|
184
|
+
* Fetches a paginated list of products for a specific category
|
|
185
|
+
*/
|
|
186
|
+
export const getProductsByCategory = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/products/by-category/{categoryId}' }, options)); };
|
|
187
|
+
/**
|
|
188
|
+
* Get Shipping Methods
|
|
189
|
+
*
|
|
190
|
+
* Fetches a paginated list of shipping methods for an organization
|
|
191
|
+
*/
|
|
192
|
+
export const getShippingMethods = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/shipping-methods' }, options)); };
|
|
193
|
+
/**
|
|
194
|
+
* Create Shipping Method
|
|
195
|
+
*
|
|
196
|
+
* Creates a new shipping method for an organization
|
|
197
|
+
*/
|
|
198
|
+
export const createShippingMethod = (options) => {
|
|
199
|
+
var _a;
|
|
200
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/{organizationId}/shipping-methods' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
201
|
+
};
|
|
202
|
+
/**
|
|
203
|
+
* Delete Shipping Method
|
|
204
|
+
*
|
|
205
|
+
* Soft deletes a shipping method
|
|
206
|
+
*/
|
|
207
|
+
export const deleteShippingMethod = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).delete(Object.assign({ url: '/{organizationId}/shipping-methods/{id}' }, options)); };
|
|
208
|
+
/**
|
|
209
|
+
* Get Shipping Method
|
|
210
|
+
*/
|
|
211
|
+
export const getShippingMethod = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/shipping-methods/{id}' }, options)); };
|
|
212
|
+
/**
|
|
213
|
+
* Update Shipping Method
|
|
214
|
+
*
|
|
215
|
+
* Updates an existing shipping method
|
|
216
|
+
*/
|
|
217
|
+
export const updateShippingMethod = (options) => {
|
|
218
|
+
var _a;
|
|
219
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).put(Object.assign(Object.assign({ url: '/{organizationId}/shipping-methods/{id}' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
220
|
+
};
|
|
221
|
+
/**
|
|
222
|
+
* Get Eligible Shipping Methods
|
|
223
|
+
*
|
|
224
|
+
* Fetches a list of published shipping methods a user can use
|
|
225
|
+
*/
|
|
226
|
+
export const accessEligibility = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/shipping-methods/access/eligibility' }, options)); };
|
|
227
|
+
/**
|
|
228
|
+
* Get Orders
|
|
229
|
+
*
|
|
230
|
+
* Fetches paginated list of orders
|
|
231
|
+
*/
|
|
232
|
+
export const getOrders = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/orders' }, options)); };
|
|
233
|
+
/**
|
|
234
|
+
* Create Order
|
|
235
|
+
*
|
|
236
|
+
* Creates a new order
|
|
237
|
+
*/
|
|
238
|
+
export const createOrder = (options) => {
|
|
239
|
+
var _a;
|
|
240
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/{organizationId}/orders' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
241
|
+
};
|
|
242
|
+
/**
|
|
243
|
+
* Delete Order
|
|
244
|
+
*
|
|
245
|
+
* Soft deletes order
|
|
246
|
+
*/
|
|
247
|
+
export const deleteOrder = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).delete(Object.assign({ url: '/{organizationId}/orders/{id}' }, options)); };
|
|
248
|
+
/**
|
|
249
|
+
* Get Order
|
|
250
|
+
*/
|
|
251
|
+
export const getOrder = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/orders/{id}' }, options)); };
|
|
252
|
+
/**
|
|
253
|
+
* Change Order Status
|
|
254
|
+
*
|
|
255
|
+
* Changes the status of an existing order based on the operation
|
|
256
|
+
*/
|
|
257
|
+
export const updateOrderStatus = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign({ url: '/{organizationId}/orders/{id}/status/{operation}' }, options)); };
|
|
258
|
+
/**
|
|
259
|
+
* Get Formatted Cart
|
|
260
|
+
*
|
|
261
|
+
* Fetches formatted cart data
|
|
262
|
+
*/
|
|
263
|
+
export const getCartData = (options) => {
|
|
264
|
+
var _a;
|
|
265
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/{organizationId}/cart' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* Get Shipping Address
|
|
269
|
+
*
|
|
270
|
+
* Get the default shipping address for the user
|
|
271
|
+
*/
|
|
272
|
+
export const getShippingAddress = (options) => { var _a; return ((_a = options === null || options === void 0 ? void 0 : options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/shipping' }, options)); };
|
|
273
|
+
/**
|
|
274
|
+
* Create Shipping Address
|
|
275
|
+
*
|
|
276
|
+
* Creates a new shipping address for the user
|
|
277
|
+
*/
|
|
278
|
+
export const createShippingAddress = (options) => {
|
|
279
|
+
var _a;
|
|
280
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/shipping' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
281
|
+
};
|
|
282
|
+
/**
|
|
283
|
+
* Update Shipping Address
|
|
284
|
+
*
|
|
285
|
+
* Updates the shipping address for the user
|
|
286
|
+
*/
|
|
287
|
+
export const updateShippingAddress = (options) => {
|
|
288
|
+
var _a;
|
|
289
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).put(Object.assign(Object.assign({ url: '/shipping' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* Get Places Predictions
|
|
293
|
+
*
|
|
294
|
+
* Returns a list of places for autocompletion based on a search query
|
|
295
|
+
*/
|
|
296
|
+
export const getPredictions = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/places/prediction' }, options)); };
|
|
297
|
+
/**
|
|
298
|
+
* Get Place Details
|
|
299
|
+
*
|
|
300
|
+
* Returns details for a specific place based on its placeId
|
|
301
|
+
*/
|
|
302
|
+
export const getPlaceDetails = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/places/{placeId}' }, options)); };
|
|
303
|
+
/**
|
|
304
|
+
* Get Available Payment Methods
|
|
305
|
+
*
|
|
306
|
+
* Returns a list of available payment methods for the organization.
|
|
307
|
+
*/
|
|
308
|
+
export const getAvailablePaymentMethods = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/payment/methods' }, options)); };
|
|
309
|
+
/**
|
|
310
|
+
* Process Event
|
|
311
|
+
*
|
|
312
|
+
* Receive webhook events from payment providers
|
|
313
|
+
*/
|
|
314
|
+
export const webhook = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign({ url: '/webhook/payment/{provider}' }, options)); };
|
|
315
|
+
/**
|
|
316
|
+
* Get Reservations
|
|
317
|
+
*
|
|
318
|
+
* Get all reservations for an organization
|
|
319
|
+
*/
|
|
320
|
+
export const getReservations = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/reservations' }, options)); };
|
|
321
|
+
/**
|
|
322
|
+
* Create Reservation
|
|
323
|
+
*
|
|
324
|
+
* Create a new reservation
|
|
325
|
+
*/
|
|
326
|
+
export const createReservation = (options) => {
|
|
327
|
+
var _a;
|
|
328
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).post(Object.assign(Object.assign({ url: '/{organizationId}/reservations' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
329
|
+
};
|
|
330
|
+
/**
|
|
331
|
+
* Delete Reservation
|
|
332
|
+
*
|
|
333
|
+
* Delete a reservation
|
|
334
|
+
*/
|
|
335
|
+
export const deleteReservation = (options) => {
|
|
336
|
+
var _a;
|
|
337
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).delete(Object.assign(Object.assign({ url: '/{organizationId}/reservations/{reservationId}' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
338
|
+
};
|
|
339
|
+
/**
|
|
340
|
+
* Get Reservation
|
|
341
|
+
*
|
|
342
|
+
* Get a specific reservation by ID
|
|
343
|
+
*/
|
|
344
|
+
export const getReservation = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/reservations/{reservationId}' }, options)); };
|
|
345
|
+
/**
|
|
346
|
+
* Get User Reservations
|
|
347
|
+
*
|
|
348
|
+
* Get all reservations for a user
|
|
349
|
+
*/
|
|
350
|
+
export const getUserReservations = (options) => { var _a; return ((_a = options.client) !== null && _a !== void 0 ? _a : client).get(Object.assign({ url: '/{organizationId}/reservations/user/{userId}' }, options)); };
|
|
351
|
+
/**
|
|
352
|
+
* Update Reservation Status
|
|
353
|
+
*
|
|
354
|
+
* Update the status of a reservation
|
|
355
|
+
*/
|
|
356
|
+
export const updateReservationStatus = (options) => {
|
|
357
|
+
var _a;
|
|
358
|
+
return ((_a = options.client) !== null && _a !== void 0 ? _a : client).patch(Object.assign(Object.assign({ url: '/{organizationId}/reservations/{reservationId}/{operation}' }, options), { headers: Object.assign({ 'Content-Type': 'application/json' }, options.headers) }));
|
|
359
|
+
};
|
|
360
|
+
//# sourceMappingURL=sdk.gen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../../../../../../packages/client/src/__generated__/sdk/sdk.gen.ts"],"names":[],"mappings":"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"}
|