hey-pharmacist-ecommerce 1.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.
Files changed (287) hide show
  1. package/README.md +269 -0
  2. package/dist/index.d.mts +564 -0
  3. package/dist/index.d.ts +564 -0
  4. package/dist/index.js +7541 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.mjs +7485 -0
  7. package/dist/index.mjs.map +1 -0
  8. package/package.json +70 -0
  9. package/src/components/CartItem.tsx +103 -0
  10. package/src/components/EmptyState.tsx +27 -0
  11. package/src/components/Footer.tsx +147 -0
  12. package/src/components/Header.tsx +151 -0
  13. package/src/components/OrderCard.tsx +98 -0
  14. package/src/components/ProductCard.tsx +122 -0
  15. package/src/components/ui/Badge.tsx +31 -0
  16. package/src/components/ui/Button.tsx +61 -0
  17. package/src/components/ui/Input.tsx +45 -0
  18. package/src/components/ui/Modal.tsx +79 -0
  19. package/src/components/ui/Skeleton.tsx +46 -0
  20. package/src/hooks/useOrders.ts +98 -0
  21. package/src/hooks/useProducts.ts +125 -0
  22. package/src/index.ts +71 -0
  23. package/src/lib/Apis/api.ts +46 -0
  24. package/src/lib/Apis/apis/addresses-api.ts +1461 -0
  25. package/src/lib/Apis/apis/auth-api.ts +945 -0
  26. package/src/lib/Apis/apis/blogs-api.ts +582 -0
  27. package/src/lib/Apis/apis/cart-api.ts +456 -0
  28. package/src/lib/Apis/apis/categories-api.ts +725 -0
  29. package/src/lib/Apis/apis/chats-api.ts +1101 -0
  30. package/src/lib/Apis/apis/contact-us-api.ts +394 -0
  31. package/src/lib/Apis/apis/discounts-api.ts +763 -0
  32. package/src/lib/Apis/apis/drafts-api.ts +448 -0
  33. package/src/lib/Apis/apis/events-api.ts +1311 -0
  34. package/src/lib/Apis/apis/file-proccesor-api.ts +293 -0
  35. package/src/lib/Apis/apis/health-api.ts +119 -0
  36. package/src/lib/Apis/apis/images-api.ts +271 -0
  37. package/src/lib/Apis/apis/inventory-api.ts +375 -0
  38. package/src/lib/Apis/apis/marketing-api.ts +3099 -0
  39. package/src/lib/Apis/apis/notifications-api.ts +843 -0
  40. package/src/lib/Apis/apis/open-aiapi.ts +513 -0
  41. package/src/lib/Apis/apis/orders-api.ts +1343 -0
  42. package/src/lib/Apis/apis/payment-methods-api.ts +411 -0
  43. package/src/lib/Apis/apis/payments-api.ts +469 -0
  44. package/src/lib/Apis/apis/product-attributes-api.ts +538 -0
  45. package/src/lib/Apis/apis/product-favorite-list-api.ts +321 -0
  46. package/src/lib/Apis/apis/product-variants-api.ts +648 -0
  47. package/src/lib/Apis/apis/products-api.ts +1442 -0
  48. package/src/lib/Apis/apis/review-api.ts +1383 -0
  49. package/src/lib/Apis/apis/roles-api.ts +614 -0
  50. package/src/lib/Apis/apis/shipping-api.ts +703 -0
  51. package/src/lib/Apis/apis/statistics-api.ts +234 -0
  52. package/src/lib/Apis/apis/stores-api.ts +1519 -0
  53. package/src/lib/Apis/apis/sub-categories-api.ts +1208 -0
  54. package/src/lib/Apis/apis/user-groups-api.ts +1198 -0
  55. package/src/lib/Apis/apis/users-api.ts +1403 -0
  56. package/src/lib/Apis/apis/web-hooks-api.ts +198 -0
  57. package/src/lib/Apis/base.ts +70 -0
  58. package/src/lib/Apis/configuration.ts +75 -0
  59. package/src/lib/Apis/index.ts +17 -0
  60. package/src/lib/Apis/models/add-contact-to-list-dto.ts +33 -0
  61. package/src/lib/Apis/models/add-message-dto.ts +56 -0
  62. package/src/lib/Apis/models/address-created-request.ts +134 -0
  63. package/src/lib/Apis/models/address.ts +164 -0
  64. package/src/lib/Apis/models/allow-user-credit-dto.ts +27 -0
  65. package/src/lib/Apis/models/appointment.ts +75 -0
  66. package/src/lib/Apis/models/available-dates-dto.ts +33 -0
  67. package/src/lib/Apis/models/available-suggested-dates-dto.ts +33 -0
  68. package/src/lib/Apis/models/blog.ts +75 -0
  69. package/src/lib/Apis/models/browser-stats-response-dto.ts +40 -0
  70. package/src/lib/Apis/models/bulk-move-subcategories-dto.ts +33 -0
  71. package/src/lib/Apis/models/bulk-unassign-subcategories-dto.ts +27 -0
  72. package/src/lib/Apis/models/campaign-content-response-dto.ts +40 -0
  73. package/src/lib/Apis/models/campaign-draft-dto.ts +175 -0
  74. package/src/lib/Apis/models/campaign-draft-response-dto.ts +40 -0
  75. package/src/lib/Apis/models/campaign-draft-schedule-dto.ts +49 -0
  76. package/src/lib/Apis/models/campaign-draft-schedule-response-dto.ts +40 -0
  77. package/src/lib/Apis/models/campaign-draft-sending-dto.ts +43 -0
  78. package/src/lib/Apis/models/campaign-draft-sending-response-dto.ts +40 -0
  79. package/src/lib/Apis/models/cart-body-dto.ts +40 -0
  80. package/src/lib/Apis/models/cart-body-populated.ts +47 -0
  81. package/src/lib/Apis/models/cart-item-populated.ts +41 -0
  82. package/src/lib/Apis/models/cart-item.ts +33 -0
  83. package/src/lib/Apis/models/cart-response-dto.ts +70 -0
  84. package/src/lib/Apis/models/categories-paginated-response-dto.ts +52 -0
  85. package/src/lib/Apis/models/category-filters.ts +40 -0
  86. package/src/lib/Apis/models/category-populated.ts +106 -0
  87. package/src/lib/Apis/models/category-sub-category-populated.ts +51 -0
  88. package/src/lib/Apis/models/category.ts +99 -0
  89. package/src/lib/Apis/models/categorys-headlines-response-dto.ts +40 -0
  90. package/src/lib/Apis/models/change-user-email-dto.ts +27 -0
  91. package/src/lib/Apis/models/chat.ts +33 -0
  92. package/src/lib/Apis/models/check-notifications-response-dto.ts +33 -0
  93. package/src/lib/Apis/models/contact-aggregated-stats-response-dto.ts +40 -0
  94. package/src/lib/Apis/models/contact-full-dto.ts +93 -0
  95. package/src/lib/Apis/models/contact-full-response-dto.ts +40 -0
  96. package/src/lib/Apis/models/contact-list-stats-response-dto.ts +40 -0
  97. package/src/lib/Apis/models/contact-lists-response-dto.ts +40 -0
  98. package/src/lib/Apis/models/contact-us.ts +81 -0
  99. package/src/lib/Apis/models/country-stats-response-dto.ts +40 -0
  100. package/src/lib/Apis/models/create-address-dto.ts +134 -0
  101. package/src/lib/Apis/models/create-blog-dto.ts +45 -0
  102. package/src/lib/Apis/models/create-category-dto.ts +45 -0
  103. package/src/lib/Apis/models/create-chat-dto.ts +39 -0
  104. package/src/lib/Apis/models/create-contact-dto.ts +39 -0
  105. package/src/lib/Apis/models/create-contact-list-dto.ts +27 -0
  106. package/src/lib/Apis/models/create-discount-dto.ts +208 -0
  107. package/src/lib/Apis/models/create-draft-dto.ts +67 -0
  108. package/src/lib/Apis/models/create-email-template-dto.ts +51 -0
  109. package/src/lib/Apis/models/create-event-dto.ts +52 -0
  110. package/src/lib/Apis/models/create-marketing-campaign-dto.ts +81 -0
  111. package/src/lib/Apis/models/create-message-dto.ts +57 -0
  112. package/src/lib/Apis/models/create-notification-dto.ts +75 -0
  113. package/src/lib/Apis/models/create-product-attribute-dto.ts +33 -0
  114. package/src/lib/Apis/models/create-product-dto.ts +94 -0
  115. package/src/lib/Apis/models/create-review-dto.ts +63 -0
  116. package/src/lib/Apis/models/create-role-dto.ts +57 -0
  117. package/src/lib/Apis/models/create-single-variant-product-dto.ts +155 -0
  118. package/src/lib/Apis/models/create-store-address-dto.ts +134 -0
  119. package/src/lib/Apis/models/create-store-dto.ts +105 -0
  120. package/src/lib/Apis/models/create-sub-category-dto.ts +45 -0
  121. package/src/lib/Apis/models/create-user-dto.ts +89 -0
  122. package/src/lib/Apis/models/create-user-group-dto.ts +39 -0
  123. package/src/lib/Apis/models/create-variant-dto.ts +119 -0
  124. package/src/lib/Apis/models/create-zone-dto.ts +82 -0
  125. package/src/lib/Apis/models/custom-product-dto.ts +63 -0
  126. package/src/lib/Apis/models/default-payment-method-request-dto.ts +27 -0
  127. package/src/lib/Apis/models/delete-file-dto.ts +27 -0
  128. package/src/lib/Apis/models/delete-many-files-dto.ts +27 -0
  129. package/src/lib/Apis/models/discount-paginated-response.ts +52 -0
  130. package/src/lib/Apis/models/discount.ts +245 -0
  131. package/src/lib/Apis/models/discounts-insights-dto.ts +57 -0
  132. package/src/lib/Apis/models/draft.ts +79 -0
  133. package/src/lib/Apis/models/email-invoice-dto.ts +45 -0
  134. package/src/lib/Apis/models/email-template-response-dto.ts +117 -0
  135. package/src/lib/Apis/models/event.ts +76 -0
  136. package/src/lib/Apis/models/extended-product-dto.ts +204 -0
  137. package/src/lib/Apis/models/fileproccesor-upload-body.ts +27 -0
  138. package/src/lib/Apis/models/forget-password.ts +27 -0
  139. package/src/lib/Apis/models/frequently-bought-product-dto.ts +71 -0
  140. package/src/lib/Apis/models/general-stats-response-dto.ts +40 -0
  141. package/src/lib/Apis/models/generate-day-slots-dto.ts +51 -0
  142. package/src/lib/Apis/models/generate-month-slots-dto.ts +57 -0
  143. package/src/lib/Apis/models/generate-week-slots-dto.ts +57 -0
  144. package/src/lib/Apis/models/google-analytics-request-dto.ts +55 -0
  145. package/src/lib/Apis/models/google-analytics-response-dto.ts +39 -0
  146. package/src/lib/Apis/models/group-with-no-users-dto.ts +75 -0
  147. package/src/lib/Apis/models/group-with-users-dto.ts +76 -0
  148. package/src/lib/Apis/models/images-upload-body.ts +27 -0
  149. package/src/lib/Apis/models/index.ts +197 -0
  150. package/src/lib/Apis/models/inventory-paginated-response.ts +75 -0
  151. package/src/lib/Apis/models/link-stats-response-dto.ts +40 -0
  152. package/src/lib/Apis/models/login-dto.ts +33 -0
  153. package/src/lib/Apis/models/manual-discount.ts +49 -0
  154. package/src/lib/Apis/models/manual-order-dto.ts +133 -0
  155. package/src/lib/Apis/models/manual-shipping-dto.ts +45 -0
  156. package/src/lib/Apis/models/marketing-campaign-content-dto.ts +27 -0
  157. package/src/lib/Apis/models/marketing-list-contact-dto.ts +51 -0
  158. package/src/lib/Apis/models/move-subcategory-dto.ts +27 -0
  159. package/src/lib/Apis/models/my-favorite-list-dto.ts +52 -0
  160. package/src/lib/Apis/models/notification.ts +93 -0
  161. package/src/lib/Apis/models/object-id.ts +21 -0
  162. package/src/lib/Apis/models/open-api.ts +33 -0
  163. package/src/lib/Apis/models/order-paginated-response.ts +52 -0
  164. package/src/lib/Apis/models/order.ts +214 -0
  165. package/src/lib/Apis/models/orders-insights-dto.ts +69 -0
  166. package/src/lib/Apis/models/paginated-products-dto.ts +52 -0
  167. package/src/lib/Apis/models/payment-method-data.ts +34 -0
  168. package/src/lib/Apis/models/payment-method.ts +51 -0
  169. package/src/lib/Apis/models/payment-time-line-dto.ts +56 -0
  170. package/src/lib/Apis/models/payment.ts +182 -0
  171. package/src/lib/Apis/models/payments-insights-dto.ts +69 -0
  172. package/src/lib/Apis/models/payments-paginated-response.ts +52 -0
  173. package/src/lib/Apis/models/pick-type-class.ts +51 -0
  174. package/src/lib/Apis/models/populated-chat-dto.ts +95 -0
  175. package/src/lib/Apis/models/populated-discount.ts +246 -0
  176. package/src/lib/Apis/models/populated-order.ts +209 -0
  177. package/src/lib/Apis/models/prefered-pick-or-delivery-time-dto.ts +33 -0
  178. package/src/lib/Apis/models/price-range.ts +33 -0
  179. package/src/lib/Apis/models/product-attribute.ts +57 -0
  180. package/src/lib/Apis/models/product-variant.ts +167 -0
  181. package/src/lib/Apis/models/product.ts +136 -0
  182. package/src/lib/Apis/models/products-insights-dto.ts +45 -0
  183. package/src/lib/Apis/models/rate-dto.ts +123 -0
  184. package/src/lib/Apis/models/refill-request-dto.ts +75 -0
  185. package/src/lib/Apis/models/refill-request.ts +105 -0
  186. package/src/lib/Apis/models/register-or-login-with-gmail.ts +27 -0
  187. package/src/lib/Apis/models/reserve-appointment.ts +261 -0
  188. package/src/lib/Apis/models/review.ts +93 -0
  189. package/src/lib/Apis/models/role.ts +69 -0
  190. package/src/lib/Apis/models/schedule-campaign-draft-dto.ts +27 -0
  191. package/src/lib/Apis/models/send-test-email-dto.ts +28 -0
  192. package/src/lib/Apis/models/shallow-parent-category-dto.ts +33 -0
  193. package/src/lib/Apis/models/shipment-details-dto.ts +88 -0
  194. package/src/lib/Apis/models/shipment-status-dto.ts +117 -0
  195. package/src/lib/Apis/models/shipment-with-order.ts +105 -0
  196. package/src/lib/Apis/models/shipment.ts +104 -0
  197. package/src/lib/Apis/models/shipping-info.ts +88 -0
  198. package/src/lib/Apis/models/single-browser-stats-dto.ts +45 -0
  199. package/src/lib/Apis/models/single-contact-aggregated-stats-dto.ts +129 -0
  200. package/src/lib/Apis/models/single-contact-list-stats-dto.ts +117 -0
  201. package/src/lib/Apis/models/single-country-stats-dto.ts +39 -0
  202. package/src/lib/Apis/models/single-general-stats.ts +153 -0
  203. package/src/lib/Apis/models/single-link-stats-dto.ts +39 -0
  204. package/src/lib/Apis/models/single-message-populated.ts +59 -0
  205. package/src/lib/Apis/models/single-notification-dto.ts +99 -0
  206. package/src/lib/Apis/models/single-product-media.ts +74 -0
  207. package/src/lib/Apis/models/single-recipient-dto.ts +33 -0
  208. package/src/lib/Apis/models/single-suggest-attribute.ts +33 -0
  209. package/src/lib/Apis/models/statistic-dto.ts +171 -0
  210. package/src/lib/Apis/models/store-entity.ts +117 -0
  211. package/src/lib/Apis/models/store.ts +135 -0
  212. package/src/lib/Apis/models/sub-category-headlines-only-response-dto.ts +39 -0
  213. package/src/lib/Apis/models/sub-category.ts +93 -0
  214. package/src/lib/Apis/models/suggest-attributes.ts +28 -0
  215. package/src/lib/Apis/models/suggested-slot.ts +33 -0
  216. package/src/lib/Apis/models/table-cell-dto.ts +33 -0
  217. package/src/lib/Apis/models/table-dto.ts +34 -0
  218. package/src/lib/Apis/models/tadmin-session-data.ts +47 -0
  219. package/src/lib/Apis/models/track-dto.ts +94 -0
  220. package/src/lib/Apis/models/tracking-status-location-base.ts +45 -0
  221. package/src/lib/Apis/models/tracking-status-substatus.ts +39 -0
  222. package/src/lib/Apis/models/tracking-status.ts +71 -0
  223. package/src/lib/Apis/models/transfere-patient-request.ts +123 -0
  224. package/src/lib/Apis/models/transfere-patients-request-dto.ts +99 -0
  225. package/src/lib/Apis/models/tuser-session-data.ts +34 -0
  226. package/src/lib/Apis/models/update-address-dto.ts +134 -0
  227. package/src/lib/Apis/models/update-blog-dto.ts +45 -0
  228. package/src/lib/Apis/models/update-campaign-draft-content-dto.ts +27 -0
  229. package/src/lib/Apis/models/update-category-dto.ts +45 -0
  230. package/src/lib/Apis/models/update-discount-dto.ts +208 -0
  231. package/src/lib/Apis/models/update-event-dto.ts +52 -0
  232. package/src/lib/Apis/models/update-items-order-dto.ts +27 -0
  233. package/src/lib/Apis/models/update-marketing-camp-draft-dto.ts +81 -0
  234. package/src/lib/Apis/models/update-message-dto.ts +57 -0
  235. package/src/lib/Apis/models/update-product-attribute-dto.ts +33 -0
  236. package/src/lib/Apis/models/update-product-dto.ts +96 -0
  237. package/src/lib/Apis/models/update-product-variant-dto.ts +119 -0
  238. package/src/lib/Apis/models/update-refill-request-dto.ts +75 -0
  239. package/src/lib/Apis/models/update-review-dto.ts +63 -0
  240. package/src/lib/Apis/models/update-role-dto.ts +57 -0
  241. package/src/lib/Apis/models/update-store-dto.ts +105 -0
  242. package/src/lib/Apis/models/update-sub-category-dto.ts +45 -0
  243. package/src/lib/Apis/models/update-transfere-patients-request-dto.ts +99 -0
  244. package/src/lib/Apis/models/update-user-dto.ts +239 -0
  245. package/src/lib/Apis/models/update-user-group-dto.ts +39 -0
  246. package/src/lib/Apis/models/update-zone-dto.ts +82 -0
  247. package/src/lib/Apis/models/upload-pdf-body.ts +27 -0
  248. package/src/lib/Apis/models/used-by.ts +87 -0
  249. package/src/lib/Apis/models/user-entity.ts +220 -0
  250. package/src/lib/Apis/models/user-group.ts +75 -0
  251. package/src/lib/Apis/models/user-insights-dto.ts +39 -0
  252. package/src/lib/Apis/models/user-with-no-id.ts +226 -0
  253. package/src/lib/Apis/models/user.ts +232 -0
  254. package/src/lib/Apis/models/users-paginated-response.ts +52 -0
  255. package/src/lib/Apis/models/verify-email-dto.ts +33 -0
  256. package/src/lib/Apis/models/zone-single-size.ts +51 -0
  257. package/src/lib/Apis/models/zone.ts +106 -0
  258. package/src/lib/Apis/wrapper.ts +37 -0
  259. package/src/lib/api/auth.ts +81 -0
  260. package/src/lib/api/cart.ts +42 -0
  261. package/src/lib/api/client.ts +118 -0
  262. package/src/lib/api/orders.ts +53 -0
  263. package/src/lib/api/products.ts +51 -0
  264. package/src/lib/api-adapter/auth-adapter.ts +196 -0
  265. package/src/lib/api-adapter/cart-adapter.ts +193 -0
  266. package/src/lib/api-adapter/config.ts +76 -0
  267. package/src/lib/api-adapter/index.ts +13 -0
  268. package/src/lib/api-adapter/mappers.ts +147 -0
  269. package/src/lib/api-adapter/orders-adapter.ts +195 -0
  270. package/src/lib/api-adapter/products-adapter.ts +194 -0
  271. package/src/lib/types/index.ts +152 -0
  272. package/src/lib/utils/colors.ts +51 -0
  273. package/src/lib/utils/format.ts +48 -0
  274. package/src/providers/AuthProvider.tsx +117 -0
  275. package/src/providers/CartProvider.tsx +131 -0
  276. package/src/providers/EcommerceProvider.tsx +34 -0
  277. package/src/providers/ThemeProvider.tsx +57 -0
  278. package/src/screens/CartScreen.tsx +140 -0
  279. package/src/screens/CheckoutScreen.tsx +340 -0
  280. package/src/screens/CurrentOrdersScreen.tsx +85 -0
  281. package/src/screens/LoginScreen.tsx +149 -0
  282. package/src/screens/OrdersScreen.tsx +86 -0
  283. package/src/screens/ProductDetailScreen.tsx +255 -0
  284. package/src/screens/ProfileScreen.tsx +211 -0
  285. package/src/screens/RegisterScreen.tsx +200 -0
  286. package/src/screens/ShopScreen.tsx +233 -0
  287. package/src/styles/globals.css +51 -0
@@ -0,0 +1,293 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Hey Pharamcist API
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+ import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
15
+ import { Configuration } from '../configuration';
16
+ // Some imports not used depending on template conditions
17
+ // @ts-ignore
18
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
19
+ import { DeleteFileDto } from '../models';
20
+ import { DeleteManyFilesDto } from '../models';
21
+ /**
22
+ * FileProccesorApi - axios parameter creator
23
+ * @export
24
+ */
25
+ export const FileProccesorApiAxiosParamCreator = function (configuration?: Configuration) {
26
+ return {
27
+ /**
28
+ *
29
+ * @summary Delete file from S3
30
+ * @param {DeleteFileDto} body
31
+ * @param {*} [options] Override http request option.
32
+ * @throws {RequiredError}
33
+ */
34
+ deleteFileFromS3: async (body: DeleteFileDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
35
+ // verify required parameter 'body' is not null or undefined
36
+ if (body === null || body === undefined) {
37
+ throw new RequiredError('body','Required parameter body was null or undefined when calling deleteFileFromS3.');
38
+ }
39
+ const localVarPath = `/file-proccesor/delete`;
40
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
41
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
42
+ let baseOptions;
43
+ if (configuration) {
44
+ baseOptions = configuration.baseOptions;
45
+ }
46
+ const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
47
+ const localVarHeaderParameter = {} as any;
48
+ const localVarQueryParameter = {} as any;
49
+
50
+ localVarHeaderParameter['Content-Type'] = 'application/json';
51
+
52
+ const query = new URLSearchParams(localVarUrlObj.search);
53
+ for (const key in localVarQueryParameter) {
54
+ query.set(key, localVarQueryParameter[key]);
55
+ }
56
+ for (const key in options.params) {
57
+ query.set(key, options.params[key]);
58
+ }
59
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
60
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
61
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
62
+ const needsSerialization = (typeof body !== "string") || (localVarRequestOptions.headers ||= {})['Content-Type'] === 'application/json';
63
+ localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
64
+
65
+ return {
66
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
67
+ options: localVarRequestOptions,
68
+ };
69
+ },
70
+ /**
71
+ *
72
+ * @summary Delete many files from S3
73
+ * @param {DeleteManyFilesDto} body
74
+ * @param {*} [options] Override http request option.
75
+ * @throws {RequiredError}
76
+ */
77
+ deleteManyFilesFromS3: async (body: DeleteManyFilesDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
78
+ // verify required parameter 'body' is not null or undefined
79
+ if (body === null || body === undefined) {
80
+ throw new RequiredError('body','Required parameter body was null or undefined when calling deleteManyFilesFromS3.');
81
+ }
82
+ const localVarPath = `/file-proccesor/delete-many`;
83
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
84
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
85
+ let baseOptions;
86
+ if (configuration) {
87
+ baseOptions = configuration.baseOptions;
88
+ }
89
+ const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
90
+ const localVarHeaderParameter = {} as any;
91
+ const localVarQueryParameter = {} as any;
92
+
93
+ localVarHeaderParameter['Content-Type'] = 'application/json';
94
+
95
+ const query = new URLSearchParams(localVarUrlObj.search);
96
+ for (const key in localVarQueryParameter) {
97
+ query.set(key, localVarQueryParameter[key]);
98
+ }
99
+ for (const key in options.params) {
100
+ query.set(key, options.params[key]);
101
+ }
102
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
103
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
104
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
105
+ const needsSerialization = (typeof body !== "string") || (localVarRequestOptions.headers ||= {})['Content-Type'] === 'application/json';
106
+ localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
107
+
108
+ return {
109
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
110
+ options: localVarRequestOptions,
111
+ };
112
+ },
113
+ /**
114
+ *
115
+ * @summary Upload file to S3
116
+ * @param {Blob} file
117
+ * @param {*} [options] Override http request option.
118
+ * @throws {RequiredError}
119
+ */
120
+ uploadFileToS3Form: async (file: Blob, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
121
+ // verify required parameter 'file' is not null or undefined
122
+ if (file === null || file === undefined) {
123
+ throw new RequiredError('file','Required parameter file was null or undefined when calling uploadFileToS3Form.');
124
+ }
125
+ const localVarPath = `/file-proccesor/upload`;
126
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
127
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
128
+ let baseOptions;
129
+ if (configuration) {
130
+ baseOptions = configuration.baseOptions;
131
+ }
132
+ const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
133
+ const localVarHeaderParameter = {} as any;
134
+ const localVarQueryParameter = {} as any;
135
+ const localVarFormParams = new FormData();
136
+
137
+
138
+ if (file !== undefined) {
139
+ localVarFormParams.append('file', file as any);
140
+ }
141
+
142
+ localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
143
+ const query = new URLSearchParams(localVarUrlObj.search);
144
+ for (const key in localVarQueryParameter) {
145
+ query.set(key, localVarQueryParameter[key]);
146
+ }
147
+ for (const key in options.params) {
148
+ query.set(key, options.params[key]);
149
+ }
150
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
151
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
152
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
153
+ localVarRequestOptions.data = localVarFormParams;
154
+
155
+ return {
156
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
157
+ options: localVarRequestOptions,
158
+ };
159
+ },
160
+ }
161
+ };
162
+
163
+ /**
164
+ * FileProccesorApi - functional programming interface
165
+ * @export
166
+ */
167
+ export const FileProccesorApiFp = function(configuration?: Configuration) {
168
+ return {
169
+ /**
170
+ *
171
+ * @summary Delete file from S3
172
+ * @param {DeleteFileDto} body
173
+ * @param {*} [options] Override http request option.
174
+ * @throws {RequiredError}
175
+ */
176
+ async deleteFileFromS3(body: DeleteFileDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<boolean>>> {
177
+ const localVarAxiosArgs = await FileProccesorApiAxiosParamCreator(configuration).deleteFileFromS3(body, options);
178
+ return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
179
+ const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
180
+ return axios.request(axiosRequestArgs);
181
+ };
182
+ },
183
+ /**
184
+ *
185
+ * @summary Delete many files from S3
186
+ * @param {DeleteManyFilesDto} body
187
+ * @param {*} [options] Override http request option.
188
+ * @throws {RequiredError}
189
+ */
190
+ async deleteManyFilesFromS3(body: DeleteManyFilesDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<boolean>>> {
191
+ const localVarAxiosArgs = await FileProccesorApiAxiosParamCreator(configuration).deleteManyFilesFromS3(body, options);
192
+ return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
193
+ const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
194
+ return axios.request(axiosRequestArgs);
195
+ };
196
+ },
197
+ /**
198
+ *
199
+ * @summary Upload file to S3
200
+ * @param {Blob} file
201
+ * @param {*} [options] Override http request option.
202
+ * @throws {RequiredError}
203
+ */
204
+ async uploadFileToS3Form(file: Blob, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<string>>> {
205
+ const localVarAxiosArgs = await FileProccesorApiAxiosParamCreator(configuration).uploadFileToS3Form(file, options);
206
+ return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
207
+ const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
208
+ return axios.request(axiosRequestArgs);
209
+ };
210
+ },
211
+ }
212
+ };
213
+
214
+ /**
215
+ * FileProccesorApi - factory interface
216
+ * @export
217
+ */
218
+ export const FileProccesorApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
219
+ return {
220
+ /**
221
+ *
222
+ * @summary Delete file from S3
223
+ * @param {DeleteFileDto} body
224
+ * @param {*} [options] Override http request option.
225
+ * @throws {RequiredError}
226
+ */
227
+ async deleteFileFromS3(body: DeleteFileDto, options?: AxiosRequestConfig): Promise<AxiosResponse<boolean>> {
228
+ return FileProccesorApiFp(configuration).deleteFileFromS3(body, options).then((request) => request(axios, basePath));
229
+ },
230
+ /**
231
+ *
232
+ * @summary Delete many files from S3
233
+ * @param {DeleteManyFilesDto} body
234
+ * @param {*} [options] Override http request option.
235
+ * @throws {RequiredError}
236
+ */
237
+ async deleteManyFilesFromS3(body: DeleteManyFilesDto, options?: AxiosRequestConfig): Promise<AxiosResponse<boolean>> {
238
+ return FileProccesorApiFp(configuration).deleteManyFilesFromS3(body, options).then((request) => request(axios, basePath));
239
+ },
240
+ /**
241
+ *
242
+ * @summary Upload file to S3
243
+ * @param {Blob} file
244
+ * @param {*} [options] Override http request option.
245
+ * @throws {RequiredError}
246
+ */
247
+ async uploadFileToS3Form(file: Blob, options?: AxiosRequestConfig): Promise<AxiosResponse<string>> {
248
+ return FileProccesorApiFp(configuration).uploadFileToS3Form(file, options).then((request) => request(axios, basePath));
249
+ },
250
+ };
251
+ };
252
+
253
+ /**
254
+ * FileProccesorApi - object-oriented interface
255
+ * @export
256
+ * @class FileProccesorApi
257
+ * @extends {BaseAPI}
258
+ */
259
+ export class FileProccesorApi extends BaseAPI {
260
+ /**
261
+ *
262
+ * @summary Delete file from S3
263
+ * @param {DeleteFileDto} body
264
+ * @param {*} [options] Override http request option.
265
+ * @throws {RequiredError}
266
+ * @memberof FileProccesorApi
267
+ */
268
+ public async deleteFileFromS3(body: DeleteFileDto, options?: AxiosRequestConfig) : Promise<AxiosResponse<boolean>> {
269
+ return FileProccesorApiFp(this.configuration).deleteFileFromS3(body, options).then((request) => request(this.axios, this.basePath));
270
+ }
271
+ /**
272
+ *
273
+ * @summary Delete many files from S3
274
+ * @param {DeleteManyFilesDto} body
275
+ * @param {*} [options] Override http request option.
276
+ * @throws {RequiredError}
277
+ * @memberof FileProccesorApi
278
+ */
279
+ public async deleteManyFilesFromS3(body: DeleteManyFilesDto, options?: AxiosRequestConfig) : Promise<AxiosResponse<boolean>> {
280
+ return FileProccesorApiFp(this.configuration).deleteManyFilesFromS3(body, options).then((request) => request(this.axios, this.basePath));
281
+ }
282
+ /**
283
+ *
284
+ * @summary Upload file to S3
285
+ * @param {Blob} file
286
+ * @param {*} [options] Override http request option.
287
+ * @throws {RequiredError}
288
+ * @memberof FileProccesorApi
289
+ */
290
+ public async uploadFileToS3Form(file: Blob, options?: AxiosRequestConfig) : Promise<AxiosResponse<string>> {
291
+ return FileProccesorApiFp(this.configuration).uploadFileToS3Form(file, options).then((request) => request(this.axios, this.basePath));
292
+ }
293
+ }
@@ -0,0 +1,119 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Hey Pharamcist API
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+ import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
15
+ import { Configuration } from '../configuration';
16
+ // Some imports not used depending on template conditions
17
+ // @ts-ignore
18
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
19
+ /**
20
+ * HealthApi - axios parameter creator
21
+ * @export
22
+ */
23
+ export const HealthApiAxiosParamCreator = function (configuration?: Configuration) {
24
+ return {
25
+ /**
26
+ *
27
+ * @summary Health check endpoint
28
+ * @param {*} [options] Override http request option.
29
+ * @throws {RequiredError}
30
+ */
31
+ check: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
32
+ const localVarPath = `/health`;
33
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
34
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
35
+ let baseOptions;
36
+ if (configuration) {
37
+ baseOptions = configuration.baseOptions;
38
+ }
39
+ const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
40
+ const localVarHeaderParameter = {} as any;
41
+ const localVarQueryParameter = {} as any;
42
+
43
+ const query = new URLSearchParams(localVarUrlObj.search);
44
+ for (const key in localVarQueryParameter) {
45
+ query.set(key, localVarQueryParameter[key]);
46
+ }
47
+ for (const key in options.params) {
48
+ query.set(key, options.params[key]);
49
+ }
50
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
51
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
52
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
53
+
54
+ return {
55
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
56
+ options: localVarRequestOptions,
57
+ };
58
+ },
59
+ }
60
+ };
61
+
62
+ /**
63
+ * HealthApi - functional programming interface
64
+ * @export
65
+ */
66
+ export const HealthApiFp = function(configuration?: Configuration) {
67
+ return {
68
+ /**
69
+ *
70
+ * @summary Health check endpoint
71
+ * @param {*} [options] Override http request option.
72
+ * @throws {RequiredError}
73
+ */
74
+ async check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
75
+ const localVarAxiosArgs = await HealthApiAxiosParamCreator(configuration).check(options);
76
+ return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
77
+ const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
78
+ return axios.request(axiosRequestArgs);
79
+ };
80
+ },
81
+ }
82
+ };
83
+
84
+ /**
85
+ * HealthApi - factory interface
86
+ * @export
87
+ */
88
+ export const HealthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
89
+ return {
90
+ /**
91
+ *
92
+ * @summary Health check endpoint
93
+ * @param {*} [options] Override http request option.
94
+ * @throws {RequiredError}
95
+ */
96
+ async check(options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
97
+ return HealthApiFp(configuration).check(options).then((request) => request(axios, basePath));
98
+ },
99
+ };
100
+ };
101
+
102
+ /**
103
+ * HealthApi - object-oriented interface
104
+ * @export
105
+ * @class HealthApi
106
+ * @extends {BaseAPI}
107
+ */
108
+ export class HealthApi extends BaseAPI {
109
+ /**
110
+ *
111
+ * @summary Health check endpoint
112
+ * @param {*} [options] Override http request option.
113
+ * @throws {RequiredError}
114
+ * @memberof HealthApi
115
+ */
116
+ public async check(options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
117
+ return HealthApiFp(this.configuration).check(options).then((request) => request(this.axios, this.basePath));
118
+ }
119
+ }
@@ -0,0 +1,271 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Hey Pharamcist API
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+ import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
15
+ import { Configuration } from '../configuration';
16
+ // Some imports not used depending on template conditions
17
+ // @ts-ignore
18
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
19
+ /**
20
+ * ImagesApi - axios parameter creator
21
+ * @export
22
+ */
23
+ export const ImagesApiAxiosParamCreator = function (configuration?: Configuration) {
24
+ return {
25
+ /**
26
+ *
27
+ * @param {*} [options] Override http request option.
28
+ * @throws {RequiredError}
29
+ */
30
+ deleteFromS3: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
31
+ const localVarPath = `/images/delete`;
32
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
33
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
34
+ let baseOptions;
35
+ if (configuration) {
36
+ baseOptions = configuration.baseOptions;
37
+ }
38
+ const localVarRequestOptions :AxiosRequestConfig = { method: 'DELETE', ...baseOptions, ...options};
39
+ const localVarHeaderParameter = {} as any;
40
+ const localVarQueryParameter = {} as any;
41
+
42
+ const query = new URLSearchParams(localVarUrlObj.search);
43
+ for (const key in localVarQueryParameter) {
44
+ query.set(key, localVarQueryParameter[key]);
45
+ }
46
+ for (const key in options.params) {
47
+ query.set(key, options.params[key]);
48
+ }
49
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
50
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
51
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
52
+
53
+ return {
54
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
55
+ options: localVarRequestOptions,
56
+ };
57
+ },
58
+ /**
59
+ *
60
+ * @param {Blob} file
61
+ * @param {*} [options] Override http request option.
62
+ * @throws {RequiredError}
63
+ */
64
+ uploadImageForm: async (file: Blob, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
65
+ // verify required parameter 'file' is not null or undefined
66
+ if (file === null || file === undefined) {
67
+ throw new RequiredError('file','Required parameter file was null or undefined when calling uploadImageForm.');
68
+ }
69
+ const localVarPath = `/images/upload`;
70
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
71
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
72
+ let baseOptions;
73
+ if (configuration) {
74
+ baseOptions = configuration.baseOptions;
75
+ }
76
+ const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
77
+ const localVarHeaderParameter = {} as any;
78
+ const localVarQueryParameter = {} as any;
79
+ const localVarFormParams = new FormData();
80
+
81
+
82
+ if (file !== undefined) {
83
+ localVarFormParams.append('file', file as any);
84
+ }
85
+
86
+ localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
87
+ const query = new URLSearchParams(localVarUrlObj.search);
88
+ for (const key in localVarQueryParameter) {
89
+ query.set(key, localVarQueryParameter[key]);
90
+ }
91
+ for (const key in options.params) {
92
+ query.set(key, options.params[key]);
93
+ }
94
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
95
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
96
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
97
+ localVarRequestOptions.data = localVarFormParams;
98
+
99
+ return {
100
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
101
+ options: localVarRequestOptions,
102
+ };
103
+ },
104
+ /**
105
+ *
106
+ * @param {Blob} file
107
+ * @param {*} [options] Override http request option.
108
+ * @throws {RequiredError}
109
+ */
110
+ uploadPdfForm: async (file: Blob, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
111
+ // verify required parameter 'file' is not null or undefined
112
+ if (file === null || file === undefined) {
113
+ throw new RequiredError('file','Required parameter file was null or undefined when calling uploadPdfForm.');
114
+ }
115
+ const localVarPath = `/images/upload/pdf`;
116
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
117
+ const localVarUrlObj = new URL(localVarPath, 'https://example.com');
118
+ let baseOptions;
119
+ if (configuration) {
120
+ baseOptions = configuration.baseOptions;
121
+ }
122
+ const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
123
+ const localVarHeaderParameter = {} as any;
124
+ const localVarQueryParameter = {} as any;
125
+ const localVarFormParams = new FormData();
126
+
127
+
128
+ if (file !== undefined) {
129
+ localVarFormParams.append('file', file as any);
130
+ }
131
+
132
+ localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
133
+ const query = new URLSearchParams(localVarUrlObj.search);
134
+ for (const key in localVarQueryParameter) {
135
+ query.set(key, localVarQueryParameter[key]);
136
+ }
137
+ for (const key in options.params) {
138
+ query.set(key, options.params[key]);
139
+ }
140
+ localVarUrlObj.search = (new URLSearchParams(query)).toString();
141
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
142
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
143
+ localVarRequestOptions.data = localVarFormParams;
144
+
145
+ return {
146
+ url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
147
+ options: localVarRequestOptions,
148
+ };
149
+ },
150
+ }
151
+ };
152
+
153
+ /**
154
+ * ImagesApi - functional programming interface
155
+ * @export
156
+ */
157
+ export const ImagesApiFp = function(configuration?: Configuration) {
158
+ return {
159
+ /**
160
+ *
161
+ * @param {*} [options] Override http request option.
162
+ * @throws {RequiredError}
163
+ */
164
+ async deleteFromS3(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
165
+ const localVarAxiosArgs = await ImagesApiAxiosParamCreator(configuration).deleteFromS3(options);
166
+ return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
167
+ const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
168
+ return axios.request(axiosRequestArgs);
169
+ };
170
+ },
171
+ /**
172
+ *
173
+ * @param {Blob} file
174
+ * @param {*} [options] Override http request option.
175
+ * @throws {RequiredError}
176
+ */
177
+ async uploadImageForm(file: Blob, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
178
+ const localVarAxiosArgs = await ImagesApiAxiosParamCreator(configuration).uploadImageForm(file, options);
179
+ return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
180
+ const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
181
+ return axios.request(axiosRequestArgs);
182
+ };
183
+ },
184
+ /**
185
+ *
186
+ * @param {Blob} file
187
+ * @param {*} [options] Override http request option.
188
+ * @throws {RequiredError}
189
+ */
190
+ async uploadPdfForm(file: Blob, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
191
+ const localVarAxiosArgs = await ImagesApiAxiosParamCreator(configuration).uploadPdfForm(file, options);
192
+ return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
193
+ const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
194
+ return axios.request(axiosRequestArgs);
195
+ };
196
+ },
197
+ }
198
+ };
199
+
200
+ /**
201
+ * ImagesApi - factory interface
202
+ * @export
203
+ */
204
+ export const ImagesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
205
+ return {
206
+ /**
207
+ *
208
+ * @param {*} [options] Override http request option.
209
+ * @throws {RequiredError}
210
+ */
211
+ async deleteFromS3(options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
212
+ return ImagesApiFp(configuration).deleteFromS3(options).then((request) => request(axios, basePath));
213
+ },
214
+ /**
215
+ *
216
+ * @param {Blob} file
217
+ * @param {*} [options] Override http request option.
218
+ * @throws {RequiredError}
219
+ */
220
+ async uploadImageForm(file: Blob, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
221
+ return ImagesApiFp(configuration).uploadImageForm(file, options).then((request) => request(axios, basePath));
222
+ },
223
+ /**
224
+ *
225
+ * @param {Blob} file
226
+ * @param {*} [options] Override http request option.
227
+ * @throws {RequiredError}
228
+ */
229
+ async uploadPdfForm(file: Blob, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
230
+ return ImagesApiFp(configuration).uploadPdfForm(file, options).then((request) => request(axios, basePath));
231
+ },
232
+ };
233
+ };
234
+
235
+ /**
236
+ * ImagesApi - object-oriented interface
237
+ * @export
238
+ * @class ImagesApi
239
+ * @extends {BaseAPI}
240
+ */
241
+ export class ImagesApi extends BaseAPI {
242
+ /**
243
+ *
244
+ * @param {*} [options] Override http request option.
245
+ * @throws {RequiredError}
246
+ * @memberof ImagesApi
247
+ */
248
+ public async deleteFromS3(options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
249
+ return ImagesApiFp(this.configuration).deleteFromS3(options).then((request) => request(this.axios, this.basePath));
250
+ }
251
+ /**
252
+ *
253
+ * @param {Blob} file
254
+ * @param {*} [options] Override http request option.
255
+ * @throws {RequiredError}
256
+ * @memberof ImagesApi
257
+ */
258
+ public async uploadImageForm(file: Blob, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
259
+ return ImagesApiFp(this.configuration).uploadImageForm(file, options).then((request) => request(this.axios, this.basePath));
260
+ }
261
+ /**
262
+ *
263
+ * @param {Blob} file
264
+ * @param {*} [options] Override http request option.
265
+ * @throws {RequiredError}
266
+ * @memberof ImagesApi
267
+ */
268
+ public async uploadPdfForm(file: Blob, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
269
+ return ImagesApiFp(this.configuration).uploadPdfForm(file, options).then((request) => request(this.axios, this.basePath));
270
+ }
271
+ }