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.
- package/README.md +269 -0
- package/dist/index.d.mts +564 -0
- package/dist/index.d.ts +564 -0
- package/dist/index.js +7541 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +7485 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +70 -0
- package/src/components/CartItem.tsx +103 -0
- package/src/components/EmptyState.tsx +27 -0
- package/src/components/Footer.tsx +147 -0
- package/src/components/Header.tsx +151 -0
- package/src/components/OrderCard.tsx +98 -0
- package/src/components/ProductCard.tsx +122 -0
- package/src/components/ui/Badge.tsx +31 -0
- package/src/components/ui/Button.tsx +61 -0
- package/src/components/ui/Input.tsx +45 -0
- package/src/components/ui/Modal.tsx +79 -0
- package/src/components/ui/Skeleton.tsx +46 -0
- package/src/hooks/useOrders.ts +98 -0
- package/src/hooks/useProducts.ts +125 -0
- package/src/index.ts +71 -0
- package/src/lib/Apis/api.ts +46 -0
- package/src/lib/Apis/apis/addresses-api.ts +1461 -0
- package/src/lib/Apis/apis/auth-api.ts +945 -0
- package/src/lib/Apis/apis/blogs-api.ts +582 -0
- package/src/lib/Apis/apis/cart-api.ts +456 -0
- package/src/lib/Apis/apis/categories-api.ts +725 -0
- package/src/lib/Apis/apis/chats-api.ts +1101 -0
- package/src/lib/Apis/apis/contact-us-api.ts +394 -0
- package/src/lib/Apis/apis/discounts-api.ts +763 -0
- package/src/lib/Apis/apis/drafts-api.ts +448 -0
- package/src/lib/Apis/apis/events-api.ts +1311 -0
- package/src/lib/Apis/apis/file-proccesor-api.ts +293 -0
- package/src/lib/Apis/apis/health-api.ts +119 -0
- package/src/lib/Apis/apis/images-api.ts +271 -0
- package/src/lib/Apis/apis/inventory-api.ts +375 -0
- package/src/lib/Apis/apis/marketing-api.ts +3099 -0
- package/src/lib/Apis/apis/notifications-api.ts +843 -0
- package/src/lib/Apis/apis/open-aiapi.ts +513 -0
- package/src/lib/Apis/apis/orders-api.ts +1343 -0
- package/src/lib/Apis/apis/payment-methods-api.ts +411 -0
- package/src/lib/Apis/apis/payments-api.ts +469 -0
- package/src/lib/Apis/apis/product-attributes-api.ts +538 -0
- package/src/lib/Apis/apis/product-favorite-list-api.ts +321 -0
- package/src/lib/Apis/apis/product-variants-api.ts +648 -0
- package/src/lib/Apis/apis/products-api.ts +1442 -0
- package/src/lib/Apis/apis/review-api.ts +1383 -0
- package/src/lib/Apis/apis/roles-api.ts +614 -0
- package/src/lib/Apis/apis/shipping-api.ts +703 -0
- package/src/lib/Apis/apis/statistics-api.ts +234 -0
- package/src/lib/Apis/apis/stores-api.ts +1519 -0
- package/src/lib/Apis/apis/sub-categories-api.ts +1208 -0
- package/src/lib/Apis/apis/user-groups-api.ts +1198 -0
- package/src/lib/Apis/apis/users-api.ts +1403 -0
- package/src/lib/Apis/apis/web-hooks-api.ts +198 -0
- package/src/lib/Apis/base.ts +70 -0
- package/src/lib/Apis/configuration.ts +75 -0
- package/src/lib/Apis/index.ts +17 -0
- package/src/lib/Apis/models/add-contact-to-list-dto.ts +33 -0
- package/src/lib/Apis/models/add-message-dto.ts +56 -0
- package/src/lib/Apis/models/address-created-request.ts +134 -0
- package/src/lib/Apis/models/address.ts +164 -0
- package/src/lib/Apis/models/allow-user-credit-dto.ts +27 -0
- package/src/lib/Apis/models/appointment.ts +75 -0
- package/src/lib/Apis/models/available-dates-dto.ts +33 -0
- package/src/lib/Apis/models/available-suggested-dates-dto.ts +33 -0
- package/src/lib/Apis/models/blog.ts +75 -0
- package/src/lib/Apis/models/browser-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/bulk-move-subcategories-dto.ts +33 -0
- package/src/lib/Apis/models/bulk-unassign-subcategories-dto.ts +27 -0
- package/src/lib/Apis/models/campaign-content-response-dto.ts +40 -0
- package/src/lib/Apis/models/campaign-draft-dto.ts +175 -0
- package/src/lib/Apis/models/campaign-draft-response-dto.ts +40 -0
- package/src/lib/Apis/models/campaign-draft-schedule-dto.ts +49 -0
- package/src/lib/Apis/models/campaign-draft-schedule-response-dto.ts +40 -0
- package/src/lib/Apis/models/campaign-draft-sending-dto.ts +43 -0
- package/src/lib/Apis/models/campaign-draft-sending-response-dto.ts +40 -0
- package/src/lib/Apis/models/cart-body-dto.ts +40 -0
- package/src/lib/Apis/models/cart-body-populated.ts +47 -0
- package/src/lib/Apis/models/cart-item-populated.ts +41 -0
- package/src/lib/Apis/models/cart-item.ts +33 -0
- package/src/lib/Apis/models/cart-response-dto.ts +70 -0
- package/src/lib/Apis/models/categories-paginated-response-dto.ts +52 -0
- package/src/lib/Apis/models/category-filters.ts +40 -0
- package/src/lib/Apis/models/category-populated.ts +106 -0
- package/src/lib/Apis/models/category-sub-category-populated.ts +51 -0
- package/src/lib/Apis/models/category.ts +99 -0
- package/src/lib/Apis/models/categorys-headlines-response-dto.ts +40 -0
- package/src/lib/Apis/models/change-user-email-dto.ts +27 -0
- package/src/lib/Apis/models/chat.ts +33 -0
- package/src/lib/Apis/models/check-notifications-response-dto.ts +33 -0
- package/src/lib/Apis/models/contact-aggregated-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/contact-full-dto.ts +93 -0
- package/src/lib/Apis/models/contact-full-response-dto.ts +40 -0
- package/src/lib/Apis/models/contact-list-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/contact-lists-response-dto.ts +40 -0
- package/src/lib/Apis/models/contact-us.ts +81 -0
- package/src/lib/Apis/models/country-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/create-address-dto.ts +134 -0
- package/src/lib/Apis/models/create-blog-dto.ts +45 -0
- package/src/lib/Apis/models/create-category-dto.ts +45 -0
- package/src/lib/Apis/models/create-chat-dto.ts +39 -0
- package/src/lib/Apis/models/create-contact-dto.ts +39 -0
- package/src/lib/Apis/models/create-contact-list-dto.ts +27 -0
- package/src/lib/Apis/models/create-discount-dto.ts +208 -0
- package/src/lib/Apis/models/create-draft-dto.ts +67 -0
- package/src/lib/Apis/models/create-email-template-dto.ts +51 -0
- package/src/lib/Apis/models/create-event-dto.ts +52 -0
- package/src/lib/Apis/models/create-marketing-campaign-dto.ts +81 -0
- package/src/lib/Apis/models/create-message-dto.ts +57 -0
- package/src/lib/Apis/models/create-notification-dto.ts +75 -0
- package/src/lib/Apis/models/create-product-attribute-dto.ts +33 -0
- package/src/lib/Apis/models/create-product-dto.ts +94 -0
- package/src/lib/Apis/models/create-review-dto.ts +63 -0
- package/src/lib/Apis/models/create-role-dto.ts +57 -0
- package/src/lib/Apis/models/create-single-variant-product-dto.ts +155 -0
- package/src/lib/Apis/models/create-store-address-dto.ts +134 -0
- package/src/lib/Apis/models/create-store-dto.ts +105 -0
- package/src/lib/Apis/models/create-sub-category-dto.ts +45 -0
- package/src/lib/Apis/models/create-user-dto.ts +89 -0
- package/src/lib/Apis/models/create-user-group-dto.ts +39 -0
- package/src/lib/Apis/models/create-variant-dto.ts +119 -0
- package/src/lib/Apis/models/create-zone-dto.ts +82 -0
- package/src/lib/Apis/models/custom-product-dto.ts +63 -0
- package/src/lib/Apis/models/default-payment-method-request-dto.ts +27 -0
- package/src/lib/Apis/models/delete-file-dto.ts +27 -0
- package/src/lib/Apis/models/delete-many-files-dto.ts +27 -0
- package/src/lib/Apis/models/discount-paginated-response.ts +52 -0
- package/src/lib/Apis/models/discount.ts +245 -0
- package/src/lib/Apis/models/discounts-insights-dto.ts +57 -0
- package/src/lib/Apis/models/draft.ts +79 -0
- package/src/lib/Apis/models/email-invoice-dto.ts +45 -0
- package/src/lib/Apis/models/email-template-response-dto.ts +117 -0
- package/src/lib/Apis/models/event.ts +76 -0
- package/src/lib/Apis/models/extended-product-dto.ts +204 -0
- package/src/lib/Apis/models/fileproccesor-upload-body.ts +27 -0
- package/src/lib/Apis/models/forget-password.ts +27 -0
- package/src/lib/Apis/models/frequently-bought-product-dto.ts +71 -0
- package/src/lib/Apis/models/general-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/generate-day-slots-dto.ts +51 -0
- package/src/lib/Apis/models/generate-month-slots-dto.ts +57 -0
- package/src/lib/Apis/models/generate-week-slots-dto.ts +57 -0
- package/src/lib/Apis/models/google-analytics-request-dto.ts +55 -0
- package/src/lib/Apis/models/google-analytics-response-dto.ts +39 -0
- package/src/lib/Apis/models/group-with-no-users-dto.ts +75 -0
- package/src/lib/Apis/models/group-with-users-dto.ts +76 -0
- package/src/lib/Apis/models/images-upload-body.ts +27 -0
- package/src/lib/Apis/models/index.ts +197 -0
- package/src/lib/Apis/models/inventory-paginated-response.ts +75 -0
- package/src/lib/Apis/models/link-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/login-dto.ts +33 -0
- package/src/lib/Apis/models/manual-discount.ts +49 -0
- package/src/lib/Apis/models/manual-order-dto.ts +133 -0
- package/src/lib/Apis/models/manual-shipping-dto.ts +45 -0
- package/src/lib/Apis/models/marketing-campaign-content-dto.ts +27 -0
- package/src/lib/Apis/models/marketing-list-contact-dto.ts +51 -0
- package/src/lib/Apis/models/move-subcategory-dto.ts +27 -0
- package/src/lib/Apis/models/my-favorite-list-dto.ts +52 -0
- package/src/lib/Apis/models/notification.ts +93 -0
- package/src/lib/Apis/models/object-id.ts +21 -0
- package/src/lib/Apis/models/open-api.ts +33 -0
- package/src/lib/Apis/models/order-paginated-response.ts +52 -0
- package/src/lib/Apis/models/order.ts +214 -0
- package/src/lib/Apis/models/orders-insights-dto.ts +69 -0
- package/src/lib/Apis/models/paginated-products-dto.ts +52 -0
- package/src/lib/Apis/models/payment-method-data.ts +34 -0
- package/src/lib/Apis/models/payment-method.ts +51 -0
- package/src/lib/Apis/models/payment-time-line-dto.ts +56 -0
- package/src/lib/Apis/models/payment.ts +182 -0
- package/src/lib/Apis/models/payments-insights-dto.ts +69 -0
- package/src/lib/Apis/models/payments-paginated-response.ts +52 -0
- package/src/lib/Apis/models/pick-type-class.ts +51 -0
- package/src/lib/Apis/models/populated-chat-dto.ts +95 -0
- package/src/lib/Apis/models/populated-discount.ts +246 -0
- package/src/lib/Apis/models/populated-order.ts +209 -0
- package/src/lib/Apis/models/prefered-pick-or-delivery-time-dto.ts +33 -0
- package/src/lib/Apis/models/price-range.ts +33 -0
- package/src/lib/Apis/models/product-attribute.ts +57 -0
- package/src/lib/Apis/models/product-variant.ts +167 -0
- package/src/lib/Apis/models/product.ts +136 -0
- package/src/lib/Apis/models/products-insights-dto.ts +45 -0
- package/src/lib/Apis/models/rate-dto.ts +123 -0
- package/src/lib/Apis/models/refill-request-dto.ts +75 -0
- package/src/lib/Apis/models/refill-request.ts +105 -0
- package/src/lib/Apis/models/register-or-login-with-gmail.ts +27 -0
- package/src/lib/Apis/models/reserve-appointment.ts +261 -0
- package/src/lib/Apis/models/review.ts +93 -0
- package/src/lib/Apis/models/role.ts +69 -0
- package/src/lib/Apis/models/schedule-campaign-draft-dto.ts +27 -0
- package/src/lib/Apis/models/send-test-email-dto.ts +28 -0
- package/src/lib/Apis/models/shallow-parent-category-dto.ts +33 -0
- package/src/lib/Apis/models/shipment-details-dto.ts +88 -0
- package/src/lib/Apis/models/shipment-status-dto.ts +117 -0
- package/src/lib/Apis/models/shipment-with-order.ts +105 -0
- package/src/lib/Apis/models/shipment.ts +104 -0
- package/src/lib/Apis/models/shipping-info.ts +88 -0
- package/src/lib/Apis/models/single-browser-stats-dto.ts +45 -0
- package/src/lib/Apis/models/single-contact-aggregated-stats-dto.ts +129 -0
- package/src/lib/Apis/models/single-contact-list-stats-dto.ts +117 -0
- package/src/lib/Apis/models/single-country-stats-dto.ts +39 -0
- package/src/lib/Apis/models/single-general-stats.ts +153 -0
- package/src/lib/Apis/models/single-link-stats-dto.ts +39 -0
- package/src/lib/Apis/models/single-message-populated.ts +59 -0
- package/src/lib/Apis/models/single-notification-dto.ts +99 -0
- package/src/lib/Apis/models/single-product-media.ts +74 -0
- package/src/lib/Apis/models/single-recipient-dto.ts +33 -0
- package/src/lib/Apis/models/single-suggest-attribute.ts +33 -0
- package/src/lib/Apis/models/statistic-dto.ts +171 -0
- package/src/lib/Apis/models/store-entity.ts +117 -0
- package/src/lib/Apis/models/store.ts +135 -0
- package/src/lib/Apis/models/sub-category-headlines-only-response-dto.ts +39 -0
- package/src/lib/Apis/models/sub-category.ts +93 -0
- package/src/lib/Apis/models/suggest-attributes.ts +28 -0
- package/src/lib/Apis/models/suggested-slot.ts +33 -0
- package/src/lib/Apis/models/table-cell-dto.ts +33 -0
- package/src/lib/Apis/models/table-dto.ts +34 -0
- package/src/lib/Apis/models/tadmin-session-data.ts +47 -0
- package/src/lib/Apis/models/track-dto.ts +94 -0
- package/src/lib/Apis/models/tracking-status-location-base.ts +45 -0
- package/src/lib/Apis/models/tracking-status-substatus.ts +39 -0
- package/src/lib/Apis/models/tracking-status.ts +71 -0
- package/src/lib/Apis/models/transfere-patient-request.ts +123 -0
- package/src/lib/Apis/models/transfere-patients-request-dto.ts +99 -0
- package/src/lib/Apis/models/tuser-session-data.ts +34 -0
- package/src/lib/Apis/models/update-address-dto.ts +134 -0
- package/src/lib/Apis/models/update-blog-dto.ts +45 -0
- package/src/lib/Apis/models/update-campaign-draft-content-dto.ts +27 -0
- package/src/lib/Apis/models/update-category-dto.ts +45 -0
- package/src/lib/Apis/models/update-discount-dto.ts +208 -0
- package/src/lib/Apis/models/update-event-dto.ts +52 -0
- package/src/lib/Apis/models/update-items-order-dto.ts +27 -0
- package/src/lib/Apis/models/update-marketing-camp-draft-dto.ts +81 -0
- package/src/lib/Apis/models/update-message-dto.ts +57 -0
- package/src/lib/Apis/models/update-product-attribute-dto.ts +33 -0
- package/src/lib/Apis/models/update-product-dto.ts +96 -0
- package/src/lib/Apis/models/update-product-variant-dto.ts +119 -0
- package/src/lib/Apis/models/update-refill-request-dto.ts +75 -0
- package/src/lib/Apis/models/update-review-dto.ts +63 -0
- package/src/lib/Apis/models/update-role-dto.ts +57 -0
- package/src/lib/Apis/models/update-store-dto.ts +105 -0
- package/src/lib/Apis/models/update-sub-category-dto.ts +45 -0
- package/src/lib/Apis/models/update-transfere-patients-request-dto.ts +99 -0
- package/src/lib/Apis/models/update-user-dto.ts +239 -0
- package/src/lib/Apis/models/update-user-group-dto.ts +39 -0
- package/src/lib/Apis/models/update-zone-dto.ts +82 -0
- package/src/lib/Apis/models/upload-pdf-body.ts +27 -0
- package/src/lib/Apis/models/used-by.ts +87 -0
- package/src/lib/Apis/models/user-entity.ts +220 -0
- package/src/lib/Apis/models/user-group.ts +75 -0
- package/src/lib/Apis/models/user-insights-dto.ts +39 -0
- package/src/lib/Apis/models/user-with-no-id.ts +226 -0
- package/src/lib/Apis/models/user.ts +232 -0
- package/src/lib/Apis/models/users-paginated-response.ts +52 -0
- package/src/lib/Apis/models/verify-email-dto.ts +33 -0
- package/src/lib/Apis/models/zone-single-size.ts +51 -0
- package/src/lib/Apis/models/zone.ts +106 -0
- package/src/lib/Apis/wrapper.ts +37 -0
- package/src/lib/api/auth.ts +81 -0
- package/src/lib/api/cart.ts +42 -0
- package/src/lib/api/client.ts +118 -0
- package/src/lib/api/orders.ts +53 -0
- package/src/lib/api/products.ts +51 -0
- package/src/lib/api-adapter/auth-adapter.ts +196 -0
- package/src/lib/api-adapter/cart-adapter.ts +193 -0
- package/src/lib/api-adapter/config.ts +76 -0
- package/src/lib/api-adapter/index.ts +13 -0
- package/src/lib/api-adapter/mappers.ts +147 -0
- package/src/lib/api-adapter/orders-adapter.ts +195 -0
- package/src/lib/api-adapter/products-adapter.ts +194 -0
- package/src/lib/types/index.ts +152 -0
- package/src/lib/utils/colors.ts +51 -0
- package/src/lib/utils/format.ts +48 -0
- package/src/providers/AuthProvider.tsx +117 -0
- package/src/providers/CartProvider.tsx +131 -0
- package/src/providers/EcommerceProvider.tsx +34 -0
- package/src/providers/ThemeProvider.tsx +57 -0
- package/src/screens/CartScreen.tsx +140 -0
- package/src/screens/CheckoutScreen.tsx +340 -0
- package/src/screens/CurrentOrdersScreen.tsx +85 -0
- package/src/screens/LoginScreen.tsx +149 -0
- package/src/screens/OrdersScreen.tsx +86 -0
- package/src/screens/ProductDetailScreen.tsx +255 -0
- package/src/screens/ProfileScreen.tsx +211 -0
- package/src/screens/RegisterScreen.tsx +200 -0
- package/src/screens/ShopScreen.tsx +233 -0
- package/src/styles/globals.css +51 -0
|
@@ -0,0 +1,703 @@
|
|
|
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 { CartBodyDTO } from '../models';
|
|
20
|
+
import { CreateZoneDto } from '../models';
|
|
21
|
+
import { Shipment } from '../models';
|
|
22
|
+
import { ShipmentWithOrder } from '../models';
|
|
23
|
+
import { UpdateZoneDto } from '../models';
|
|
24
|
+
import { Zone } from '../models';
|
|
25
|
+
/**
|
|
26
|
+
* ShippingApi - axios parameter creator
|
|
27
|
+
* @export
|
|
28
|
+
*/
|
|
29
|
+
export const ShippingApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
|
+
return {
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @summary Create zone
|
|
34
|
+
* @param {CreateZoneDto} body
|
|
35
|
+
* @param {*} [options] Override http request option.
|
|
36
|
+
* @throws {RequiredError}
|
|
37
|
+
*/
|
|
38
|
+
createZone: async (body: CreateZoneDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39
|
+
// verify required parameter 'body' is not null or undefined
|
|
40
|
+
if (body === null || body === undefined) {
|
|
41
|
+
throw new RequiredError('body','Required parameter body was null or undefined when calling createZone.');
|
|
42
|
+
}
|
|
43
|
+
const localVarPath = `/shipping/zones/create`;
|
|
44
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
45
|
+
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
46
|
+
let baseOptions;
|
|
47
|
+
if (configuration) {
|
|
48
|
+
baseOptions = configuration.baseOptions;
|
|
49
|
+
}
|
|
50
|
+
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
|
51
|
+
const localVarHeaderParameter = {} as any;
|
|
52
|
+
const localVarQueryParameter = {} as any;
|
|
53
|
+
|
|
54
|
+
// authentication bearer required
|
|
55
|
+
// http bearer authentication required
|
|
56
|
+
if (configuration && configuration.accessToken) {
|
|
57
|
+
const accessToken = typeof configuration.accessToken === 'function'
|
|
58
|
+
? await configuration.accessToken()
|
|
59
|
+
: await configuration.accessToken;
|
|
60
|
+
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// authentication x-store-key required
|
|
64
|
+
if (configuration && configuration.apiKey) {
|
|
65
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
66
|
+
? await configuration.apiKey("x-store-key")
|
|
67
|
+
: await configuration.apiKey;
|
|
68
|
+
localVarHeaderParameter["x-store-key"] = localVarApiKeyValue;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
72
|
+
|
|
73
|
+
const query = new URLSearchParams(localVarUrlObj.search);
|
|
74
|
+
for (const key in localVarQueryParameter) {
|
|
75
|
+
query.set(key, localVarQueryParameter[key]);
|
|
76
|
+
}
|
|
77
|
+
for (const key in options.params) {
|
|
78
|
+
query.set(key, options.params[key]);
|
|
79
|
+
}
|
|
80
|
+
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
81
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
82
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
83
|
+
const needsSerialization = (typeof body !== "string") || (localVarRequestOptions.headers ||= {})['Content-Type'] === 'application/json';
|
|
84
|
+
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
85
|
+
|
|
86
|
+
return {
|
|
87
|
+
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
88
|
+
options: localVarRequestOptions,
|
|
89
|
+
};
|
|
90
|
+
},
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @summary Get all shipments
|
|
94
|
+
* @param {*} [options] Override http request option.
|
|
95
|
+
* @throws {RequiredError}
|
|
96
|
+
*/
|
|
97
|
+
getAllShipments: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98
|
+
const localVarPath = `/shipping/shipments`;
|
|
99
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
100
|
+
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
101
|
+
let baseOptions;
|
|
102
|
+
if (configuration) {
|
|
103
|
+
baseOptions = configuration.baseOptions;
|
|
104
|
+
}
|
|
105
|
+
const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
|
|
106
|
+
const localVarHeaderParameter = {} as any;
|
|
107
|
+
const localVarQueryParameter = {} as any;
|
|
108
|
+
|
|
109
|
+
// authentication bearer required
|
|
110
|
+
// http bearer authentication required
|
|
111
|
+
if (configuration && configuration.accessToken) {
|
|
112
|
+
const accessToken = typeof configuration.accessToken === 'function'
|
|
113
|
+
? await configuration.accessToken()
|
|
114
|
+
: await configuration.accessToken;
|
|
115
|
+
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// authentication x-store-key required
|
|
119
|
+
if (configuration && configuration.apiKey) {
|
|
120
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
121
|
+
? await configuration.apiKey("x-store-key")
|
|
122
|
+
: await configuration.apiKey;
|
|
123
|
+
localVarHeaderParameter["x-store-key"] = localVarApiKeyValue;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
const query = new URLSearchParams(localVarUrlObj.search);
|
|
127
|
+
for (const key in localVarQueryParameter) {
|
|
128
|
+
query.set(key, localVarQueryParameter[key]);
|
|
129
|
+
}
|
|
130
|
+
for (const key in options.params) {
|
|
131
|
+
query.set(key, options.params[key]);
|
|
132
|
+
}
|
|
133
|
+
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
134
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
135
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
136
|
+
|
|
137
|
+
return {
|
|
138
|
+
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
139
|
+
options: localVarRequestOptions,
|
|
140
|
+
};
|
|
141
|
+
},
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @summary Get all user shipments
|
|
145
|
+
* @param {*} [options] Override http request option.
|
|
146
|
+
* @throws {RequiredError}
|
|
147
|
+
*/
|
|
148
|
+
getAllUserShipments: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
149
|
+
const localVarPath = `/shipping/user/shipments`;
|
|
150
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
151
|
+
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
152
|
+
let baseOptions;
|
|
153
|
+
if (configuration) {
|
|
154
|
+
baseOptions = configuration.baseOptions;
|
|
155
|
+
}
|
|
156
|
+
const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
|
|
157
|
+
const localVarHeaderParameter = {} as any;
|
|
158
|
+
const localVarQueryParameter = {} as any;
|
|
159
|
+
|
|
160
|
+
// authentication bearer required
|
|
161
|
+
// http bearer authentication required
|
|
162
|
+
if (configuration && configuration.accessToken) {
|
|
163
|
+
const accessToken = typeof configuration.accessToken === 'function'
|
|
164
|
+
? await configuration.accessToken()
|
|
165
|
+
: await configuration.accessToken;
|
|
166
|
+
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
// authentication x-store-key required
|
|
170
|
+
if (configuration && configuration.apiKey) {
|
|
171
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
172
|
+
? await configuration.apiKey("x-store-key")
|
|
173
|
+
: await configuration.apiKey;
|
|
174
|
+
localVarHeaderParameter["x-store-key"] = localVarApiKeyValue;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
const query = new URLSearchParams(localVarUrlObj.search);
|
|
178
|
+
for (const key in localVarQueryParameter) {
|
|
179
|
+
query.set(key, localVarQueryParameter[key]);
|
|
180
|
+
}
|
|
181
|
+
for (const key in options.params) {
|
|
182
|
+
query.set(key, options.params[key]);
|
|
183
|
+
}
|
|
184
|
+
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
185
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
186
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
187
|
+
|
|
188
|
+
return {
|
|
189
|
+
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
190
|
+
options: localVarRequestOptions,
|
|
191
|
+
};
|
|
192
|
+
},
|
|
193
|
+
/**
|
|
194
|
+
*
|
|
195
|
+
* @summary Get order shipment
|
|
196
|
+
* @param {string} orderId
|
|
197
|
+
* @param {*} [options] Override http request option.
|
|
198
|
+
* @throws {RequiredError}
|
|
199
|
+
*/
|
|
200
|
+
getOrderShipment: async (orderId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
201
|
+
// verify required parameter 'orderId' is not null or undefined
|
|
202
|
+
if (orderId === null || orderId === undefined) {
|
|
203
|
+
throw new RequiredError('orderId','Required parameter orderId was null or undefined when calling getOrderShipment.');
|
|
204
|
+
}
|
|
205
|
+
const localVarPath = `/shipping/order/shipment/{orderId}`
|
|
206
|
+
.replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
|
|
207
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
208
|
+
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
209
|
+
let baseOptions;
|
|
210
|
+
if (configuration) {
|
|
211
|
+
baseOptions = configuration.baseOptions;
|
|
212
|
+
}
|
|
213
|
+
const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
|
|
214
|
+
const localVarHeaderParameter = {} as any;
|
|
215
|
+
const localVarQueryParameter = {} as any;
|
|
216
|
+
|
|
217
|
+
// authentication bearer required
|
|
218
|
+
// http bearer authentication required
|
|
219
|
+
if (configuration && configuration.accessToken) {
|
|
220
|
+
const accessToken = typeof configuration.accessToken === 'function'
|
|
221
|
+
? await configuration.accessToken()
|
|
222
|
+
: await configuration.accessToken;
|
|
223
|
+
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
// authentication x-store-key required
|
|
227
|
+
if (configuration && configuration.apiKey) {
|
|
228
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
229
|
+
? await configuration.apiKey("x-store-key")
|
|
230
|
+
: await configuration.apiKey;
|
|
231
|
+
localVarHeaderParameter["x-store-key"] = localVarApiKeyValue;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
const query = new URLSearchParams(localVarUrlObj.search);
|
|
235
|
+
for (const key in localVarQueryParameter) {
|
|
236
|
+
query.set(key, localVarQueryParameter[key]);
|
|
237
|
+
}
|
|
238
|
+
for (const key in options.params) {
|
|
239
|
+
query.set(key, options.params[key]);
|
|
240
|
+
}
|
|
241
|
+
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
242
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
243
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
244
|
+
|
|
245
|
+
return {
|
|
246
|
+
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
247
|
+
options: localVarRequestOptions,
|
|
248
|
+
};
|
|
249
|
+
},
|
|
250
|
+
/**
|
|
251
|
+
*
|
|
252
|
+
* @summary Get shipping rates
|
|
253
|
+
* @param {CartBodyDTO} body
|
|
254
|
+
* @param {string} addressId
|
|
255
|
+
* @param {*} [options] Override http request option.
|
|
256
|
+
* @throws {RequiredError}
|
|
257
|
+
*/
|
|
258
|
+
getShippingRates: async (body: CartBodyDTO, addressId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
259
|
+
// verify required parameter 'body' is not null or undefined
|
|
260
|
+
if (body === null || body === undefined) {
|
|
261
|
+
throw new RequiredError('body','Required parameter body was null or undefined when calling getShippingRates.');
|
|
262
|
+
}
|
|
263
|
+
// verify required parameter 'addressId' is not null or undefined
|
|
264
|
+
if (addressId === null || addressId === undefined) {
|
|
265
|
+
throw new RequiredError('addressId','Required parameter addressId was null or undefined when calling getShippingRates.');
|
|
266
|
+
}
|
|
267
|
+
const localVarPath = `/shipping/rates/{addressId}`
|
|
268
|
+
.replace(`{${"addressId"}}`, encodeURIComponent(String(addressId)));
|
|
269
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
270
|
+
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
271
|
+
let baseOptions;
|
|
272
|
+
if (configuration) {
|
|
273
|
+
baseOptions = configuration.baseOptions;
|
|
274
|
+
}
|
|
275
|
+
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
|
276
|
+
const localVarHeaderParameter = {} as any;
|
|
277
|
+
const localVarQueryParameter = {} as any;
|
|
278
|
+
|
|
279
|
+
// authentication bearer required
|
|
280
|
+
// http bearer authentication required
|
|
281
|
+
if (configuration && configuration.accessToken) {
|
|
282
|
+
const accessToken = typeof configuration.accessToken === 'function'
|
|
283
|
+
? await configuration.accessToken()
|
|
284
|
+
: await configuration.accessToken;
|
|
285
|
+
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
// authentication x-store-key required
|
|
289
|
+
if (configuration && configuration.apiKey) {
|
|
290
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
291
|
+
? await configuration.apiKey("x-store-key")
|
|
292
|
+
: await configuration.apiKey;
|
|
293
|
+
localVarHeaderParameter["x-store-key"] = localVarApiKeyValue;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
297
|
+
|
|
298
|
+
const query = new URLSearchParams(localVarUrlObj.search);
|
|
299
|
+
for (const key in localVarQueryParameter) {
|
|
300
|
+
query.set(key, localVarQueryParameter[key]);
|
|
301
|
+
}
|
|
302
|
+
for (const key in options.params) {
|
|
303
|
+
query.set(key, options.params[key]);
|
|
304
|
+
}
|
|
305
|
+
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
306
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
307
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
308
|
+
const needsSerialization = (typeof body !== "string") || (localVarRequestOptions.headers ||= {})['Content-Type'] === 'application/json';
|
|
309
|
+
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
310
|
+
|
|
311
|
+
return {
|
|
312
|
+
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
313
|
+
options: localVarRequestOptions,
|
|
314
|
+
};
|
|
315
|
+
},
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @summary Get zones
|
|
319
|
+
* @param {*} [options] Override http request option.
|
|
320
|
+
* @throws {RequiredError}
|
|
321
|
+
*/
|
|
322
|
+
getZones: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
323
|
+
const localVarPath = `/shipping/zones`;
|
|
324
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
325
|
+
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
326
|
+
let baseOptions;
|
|
327
|
+
if (configuration) {
|
|
328
|
+
baseOptions = configuration.baseOptions;
|
|
329
|
+
}
|
|
330
|
+
const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
|
|
331
|
+
const localVarHeaderParameter = {} as any;
|
|
332
|
+
const localVarQueryParameter = {} as any;
|
|
333
|
+
|
|
334
|
+
// authentication bearer required
|
|
335
|
+
// http bearer authentication required
|
|
336
|
+
if (configuration && configuration.accessToken) {
|
|
337
|
+
const accessToken = typeof configuration.accessToken === 'function'
|
|
338
|
+
? await configuration.accessToken()
|
|
339
|
+
: await configuration.accessToken;
|
|
340
|
+
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
// authentication x-store-key required
|
|
344
|
+
if (configuration && configuration.apiKey) {
|
|
345
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
346
|
+
? await configuration.apiKey("x-store-key")
|
|
347
|
+
: await configuration.apiKey;
|
|
348
|
+
localVarHeaderParameter["x-store-key"] = localVarApiKeyValue;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
const query = new URLSearchParams(localVarUrlObj.search);
|
|
352
|
+
for (const key in localVarQueryParameter) {
|
|
353
|
+
query.set(key, localVarQueryParameter[key]);
|
|
354
|
+
}
|
|
355
|
+
for (const key in options.params) {
|
|
356
|
+
query.set(key, options.params[key]);
|
|
357
|
+
}
|
|
358
|
+
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
359
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
360
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
361
|
+
|
|
362
|
+
return {
|
|
363
|
+
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
364
|
+
options: localVarRequestOptions,
|
|
365
|
+
};
|
|
366
|
+
},
|
|
367
|
+
/**
|
|
368
|
+
*
|
|
369
|
+
* @summary Update zone
|
|
370
|
+
* @param {UpdateZoneDto} body
|
|
371
|
+
* @param {string} zoneId
|
|
372
|
+
* @param {*} [options] Override http request option.
|
|
373
|
+
* @throws {RequiredError}
|
|
374
|
+
*/
|
|
375
|
+
updateZone: async (body: UpdateZoneDto, zoneId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
376
|
+
// verify required parameter 'body' is not null or undefined
|
|
377
|
+
if (body === null || body === undefined) {
|
|
378
|
+
throw new RequiredError('body','Required parameter body was null or undefined when calling updateZone.');
|
|
379
|
+
}
|
|
380
|
+
// verify required parameter 'zoneId' is not null or undefined
|
|
381
|
+
if (zoneId === null || zoneId === undefined) {
|
|
382
|
+
throw new RequiredError('zoneId','Required parameter zoneId was null or undefined when calling updateZone.');
|
|
383
|
+
}
|
|
384
|
+
const localVarPath = `/shipping/zones/{zoneId}`
|
|
385
|
+
.replace(`{${"zoneId"}}`, encodeURIComponent(String(zoneId)));
|
|
386
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
387
|
+
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
388
|
+
let baseOptions;
|
|
389
|
+
if (configuration) {
|
|
390
|
+
baseOptions = configuration.baseOptions;
|
|
391
|
+
}
|
|
392
|
+
const localVarRequestOptions :AxiosRequestConfig = { method: 'PUT', ...baseOptions, ...options};
|
|
393
|
+
const localVarHeaderParameter = {} as any;
|
|
394
|
+
const localVarQueryParameter = {} as any;
|
|
395
|
+
|
|
396
|
+
// authentication bearer required
|
|
397
|
+
// http bearer authentication required
|
|
398
|
+
if (configuration && configuration.accessToken) {
|
|
399
|
+
const accessToken = typeof configuration.accessToken === 'function'
|
|
400
|
+
? await configuration.accessToken()
|
|
401
|
+
: await configuration.accessToken;
|
|
402
|
+
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
// authentication x-store-key required
|
|
406
|
+
if (configuration && configuration.apiKey) {
|
|
407
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
408
|
+
? await configuration.apiKey("x-store-key")
|
|
409
|
+
: await configuration.apiKey;
|
|
410
|
+
localVarHeaderParameter["x-store-key"] = localVarApiKeyValue;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
414
|
+
|
|
415
|
+
const query = new URLSearchParams(localVarUrlObj.search);
|
|
416
|
+
for (const key in localVarQueryParameter) {
|
|
417
|
+
query.set(key, localVarQueryParameter[key]);
|
|
418
|
+
}
|
|
419
|
+
for (const key in options.params) {
|
|
420
|
+
query.set(key, options.params[key]);
|
|
421
|
+
}
|
|
422
|
+
localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
423
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
424
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
425
|
+
const needsSerialization = (typeof body !== "string") || (localVarRequestOptions.headers ||= {})['Content-Type'] === 'application/json';
|
|
426
|
+
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
427
|
+
|
|
428
|
+
return {
|
|
429
|
+
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
430
|
+
options: localVarRequestOptions,
|
|
431
|
+
};
|
|
432
|
+
},
|
|
433
|
+
}
|
|
434
|
+
};
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* ShippingApi - functional programming interface
|
|
438
|
+
* @export
|
|
439
|
+
*/
|
|
440
|
+
export const ShippingApiFp = function(configuration?: Configuration) {
|
|
441
|
+
return {
|
|
442
|
+
/**
|
|
443
|
+
*
|
|
444
|
+
* @summary Create zone
|
|
445
|
+
* @param {CreateZoneDto} body
|
|
446
|
+
* @param {*} [options] Override http request option.
|
|
447
|
+
* @throws {RequiredError}
|
|
448
|
+
*/
|
|
449
|
+
async createZone(body: CreateZoneDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Zone>>> {
|
|
450
|
+
const localVarAxiosArgs = await ShippingApiAxiosParamCreator(configuration).createZone(body, options);
|
|
451
|
+
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
452
|
+
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
453
|
+
return axios.request(axiosRequestArgs);
|
|
454
|
+
};
|
|
455
|
+
},
|
|
456
|
+
/**
|
|
457
|
+
*
|
|
458
|
+
* @summary Get all shipments
|
|
459
|
+
* @param {*} [options] Override http request option.
|
|
460
|
+
* @throws {RequiredError}
|
|
461
|
+
*/
|
|
462
|
+
async getAllShipments(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<ShipmentWithOrder>>>> {
|
|
463
|
+
const localVarAxiosArgs = await ShippingApiAxiosParamCreator(configuration).getAllShipments(options);
|
|
464
|
+
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
465
|
+
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
466
|
+
return axios.request(axiosRequestArgs);
|
|
467
|
+
};
|
|
468
|
+
},
|
|
469
|
+
/**
|
|
470
|
+
*
|
|
471
|
+
* @summary Get all user shipments
|
|
472
|
+
* @param {*} [options] Override http request option.
|
|
473
|
+
* @throws {RequiredError}
|
|
474
|
+
*/
|
|
475
|
+
async getAllUserShipments(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<Shipment>>>> {
|
|
476
|
+
const localVarAxiosArgs = await ShippingApiAxiosParamCreator(configuration).getAllUserShipments(options);
|
|
477
|
+
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
478
|
+
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
479
|
+
return axios.request(axiosRequestArgs);
|
|
480
|
+
};
|
|
481
|
+
},
|
|
482
|
+
/**
|
|
483
|
+
*
|
|
484
|
+
* @summary Get order shipment
|
|
485
|
+
* @param {string} orderId
|
|
486
|
+
* @param {*} [options] Override http request option.
|
|
487
|
+
* @throws {RequiredError}
|
|
488
|
+
*/
|
|
489
|
+
async getOrderShipment(orderId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Shipment>>> {
|
|
490
|
+
const localVarAxiosArgs = await ShippingApiAxiosParamCreator(configuration).getOrderShipment(orderId, options);
|
|
491
|
+
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
492
|
+
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
493
|
+
return axios.request(axiosRequestArgs);
|
|
494
|
+
};
|
|
495
|
+
},
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @summary Get shipping rates
|
|
499
|
+
* @param {CartBodyDTO} body
|
|
500
|
+
* @param {string} addressId
|
|
501
|
+
* @param {*} [options] Override http request option.
|
|
502
|
+
* @throws {RequiredError}
|
|
503
|
+
*/
|
|
504
|
+
async getShippingRates(body: CartBodyDTO, addressId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
|
505
|
+
const localVarAxiosArgs = await ShippingApiAxiosParamCreator(configuration).getShippingRates(body, addressId, options);
|
|
506
|
+
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
507
|
+
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
508
|
+
return axios.request(axiosRequestArgs);
|
|
509
|
+
};
|
|
510
|
+
},
|
|
511
|
+
/**
|
|
512
|
+
*
|
|
513
|
+
* @summary Get zones
|
|
514
|
+
* @param {*} [options] Override http request option.
|
|
515
|
+
* @throws {RequiredError}
|
|
516
|
+
*/
|
|
517
|
+
async getZones(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<Zone>>>> {
|
|
518
|
+
const localVarAxiosArgs = await ShippingApiAxiosParamCreator(configuration).getZones(options);
|
|
519
|
+
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
520
|
+
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
521
|
+
return axios.request(axiosRequestArgs);
|
|
522
|
+
};
|
|
523
|
+
},
|
|
524
|
+
/**
|
|
525
|
+
*
|
|
526
|
+
* @summary Update zone
|
|
527
|
+
* @param {UpdateZoneDto} body
|
|
528
|
+
* @param {string} zoneId
|
|
529
|
+
* @param {*} [options] Override http request option.
|
|
530
|
+
* @throws {RequiredError}
|
|
531
|
+
*/
|
|
532
|
+
async updateZone(body: UpdateZoneDto, zoneId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Zone>>> {
|
|
533
|
+
const localVarAxiosArgs = await ShippingApiAxiosParamCreator(configuration).updateZone(body, zoneId, options);
|
|
534
|
+
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
535
|
+
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
536
|
+
return axios.request(axiosRequestArgs);
|
|
537
|
+
};
|
|
538
|
+
},
|
|
539
|
+
}
|
|
540
|
+
};
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* ShippingApi - factory interface
|
|
544
|
+
* @export
|
|
545
|
+
*/
|
|
546
|
+
export const ShippingApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
547
|
+
return {
|
|
548
|
+
/**
|
|
549
|
+
*
|
|
550
|
+
* @summary Create zone
|
|
551
|
+
* @param {CreateZoneDto} body
|
|
552
|
+
* @param {*} [options] Override http request option.
|
|
553
|
+
* @throws {RequiredError}
|
|
554
|
+
*/
|
|
555
|
+
async createZone(body: CreateZoneDto, options?: AxiosRequestConfig): Promise<AxiosResponse<Zone>> {
|
|
556
|
+
return ShippingApiFp(configuration).createZone(body, options).then((request) => request(axios, basePath));
|
|
557
|
+
},
|
|
558
|
+
/**
|
|
559
|
+
*
|
|
560
|
+
* @summary Get all shipments
|
|
561
|
+
* @param {*} [options] Override http request option.
|
|
562
|
+
* @throws {RequiredError}
|
|
563
|
+
*/
|
|
564
|
+
async getAllShipments(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<ShipmentWithOrder>>> {
|
|
565
|
+
return ShippingApiFp(configuration).getAllShipments(options).then((request) => request(axios, basePath));
|
|
566
|
+
},
|
|
567
|
+
/**
|
|
568
|
+
*
|
|
569
|
+
* @summary Get all user shipments
|
|
570
|
+
* @param {*} [options] Override http request option.
|
|
571
|
+
* @throws {RequiredError}
|
|
572
|
+
*/
|
|
573
|
+
async getAllUserShipments(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<Shipment>>> {
|
|
574
|
+
return ShippingApiFp(configuration).getAllUserShipments(options).then((request) => request(axios, basePath));
|
|
575
|
+
},
|
|
576
|
+
/**
|
|
577
|
+
*
|
|
578
|
+
* @summary Get order shipment
|
|
579
|
+
* @param {string} orderId
|
|
580
|
+
* @param {*} [options] Override http request option.
|
|
581
|
+
* @throws {RequiredError}
|
|
582
|
+
*/
|
|
583
|
+
async getOrderShipment(orderId: string, options?: AxiosRequestConfig): Promise<AxiosResponse<Shipment>> {
|
|
584
|
+
return ShippingApiFp(configuration).getOrderShipment(orderId, options).then((request) => request(axios, basePath));
|
|
585
|
+
},
|
|
586
|
+
/**
|
|
587
|
+
*
|
|
588
|
+
* @summary Get shipping rates
|
|
589
|
+
* @param {CartBodyDTO} body
|
|
590
|
+
* @param {string} addressId
|
|
591
|
+
* @param {*} [options] Override http request option.
|
|
592
|
+
* @throws {RequiredError}
|
|
593
|
+
*/
|
|
594
|
+
async getShippingRates(body: CartBodyDTO, addressId: string, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
|
595
|
+
return ShippingApiFp(configuration).getShippingRates(body, addressId, options).then((request) => request(axios, basePath));
|
|
596
|
+
},
|
|
597
|
+
/**
|
|
598
|
+
*
|
|
599
|
+
* @summary Get zones
|
|
600
|
+
* @param {*} [options] Override http request option.
|
|
601
|
+
* @throws {RequiredError}
|
|
602
|
+
*/
|
|
603
|
+
async getZones(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<Zone>>> {
|
|
604
|
+
return ShippingApiFp(configuration).getZones(options).then((request) => request(axios, basePath));
|
|
605
|
+
},
|
|
606
|
+
/**
|
|
607
|
+
*
|
|
608
|
+
* @summary Update zone
|
|
609
|
+
* @param {UpdateZoneDto} body
|
|
610
|
+
* @param {string} zoneId
|
|
611
|
+
* @param {*} [options] Override http request option.
|
|
612
|
+
* @throws {RequiredError}
|
|
613
|
+
*/
|
|
614
|
+
async updateZone(body: UpdateZoneDto, zoneId: string, options?: AxiosRequestConfig): Promise<AxiosResponse<Zone>> {
|
|
615
|
+
return ShippingApiFp(configuration).updateZone(body, zoneId, options).then((request) => request(axios, basePath));
|
|
616
|
+
},
|
|
617
|
+
};
|
|
618
|
+
};
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* ShippingApi - object-oriented interface
|
|
622
|
+
* @export
|
|
623
|
+
* @class ShippingApi
|
|
624
|
+
* @extends {BaseAPI}
|
|
625
|
+
*/
|
|
626
|
+
export class ShippingApi extends BaseAPI {
|
|
627
|
+
/**
|
|
628
|
+
*
|
|
629
|
+
* @summary Create zone
|
|
630
|
+
* @param {CreateZoneDto} body
|
|
631
|
+
* @param {*} [options] Override http request option.
|
|
632
|
+
* @throws {RequiredError}
|
|
633
|
+
* @memberof ShippingApi
|
|
634
|
+
*/
|
|
635
|
+
public async createZone(body: CreateZoneDto, options?: AxiosRequestConfig) : Promise<AxiosResponse<Zone>> {
|
|
636
|
+
return ShippingApiFp(this.configuration).createZone(body, options).then((request) => request(this.axios, this.basePath));
|
|
637
|
+
}
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @summary Get all shipments
|
|
641
|
+
* @param {*} [options] Override http request option.
|
|
642
|
+
* @throws {RequiredError}
|
|
643
|
+
* @memberof ShippingApi
|
|
644
|
+
*/
|
|
645
|
+
public async getAllShipments(options?: AxiosRequestConfig) : Promise<AxiosResponse<Array<ShipmentWithOrder>>> {
|
|
646
|
+
return ShippingApiFp(this.configuration).getAllShipments(options).then((request) => request(this.axios, this.basePath));
|
|
647
|
+
}
|
|
648
|
+
/**
|
|
649
|
+
*
|
|
650
|
+
* @summary Get all user shipments
|
|
651
|
+
* @param {*} [options] Override http request option.
|
|
652
|
+
* @throws {RequiredError}
|
|
653
|
+
* @memberof ShippingApi
|
|
654
|
+
*/
|
|
655
|
+
public async getAllUserShipments(options?: AxiosRequestConfig) : Promise<AxiosResponse<Array<Shipment>>> {
|
|
656
|
+
return ShippingApiFp(this.configuration).getAllUserShipments(options).then((request) => request(this.axios, this.basePath));
|
|
657
|
+
}
|
|
658
|
+
/**
|
|
659
|
+
*
|
|
660
|
+
* @summary Get order shipment
|
|
661
|
+
* @param {string} orderId
|
|
662
|
+
* @param {*} [options] Override http request option.
|
|
663
|
+
* @throws {RequiredError}
|
|
664
|
+
* @memberof ShippingApi
|
|
665
|
+
*/
|
|
666
|
+
public async getOrderShipment(orderId: string, options?: AxiosRequestConfig) : Promise<AxiosResponse<Shipment>> {
|
|
667
|
+
return ShippingApiFp(this.configuration).getOrderShipment(orderId, options).then((request) => request(this.axios, this.basePath));
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
*
|
|
671
|
+
* @summary Get shipping rates
|
|
672
|
+
* @param {CartBodyDTO} body
|
|
673
|
+
* @param {string} addressId
|
|
674
|
+
* @param {*} [options] Override http request option.
|
|
675
|
+
* @throws {RequiredError}
|
|
676
|
+
* @memberof ShippingApi
|
|
677
|
+
*/
|
|
678
|
+
public async getShippingRates(body: CartBodyDTO, addressId: string, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
|
679
|
+
return ShippingApiFp(this.configuration).getShippingRates(body, addressId, options).then((request) => request(this.axios, this.basePath));
|
|
680
|
+
}
|
|
681
|
+
/**
|
|
682
|
+
*
|
|
683
|
+
* @summary Get zones
|
|
684
|
+
* @param {*} [options] Override http request option.
|
|
685
|
+
* @throws {RequiredError}
|
|
686
|
+
* @memberof ShippingApi
|
|
687
|
+
*/
|
|
688
|
+
public async getZones(options?: AxiosRequestConfig) : Promise<AxiosResponse<Array<Zone>>> {
|
|
689
|
+
return ShippingApiFp(this.configuration).getZones(options).then((request) => request(this.axios, this.basePath));
|
|
690
|
+
}
|
|
691
|
+
/**
|
|
692
|
+
*
|
|
693
|
+
* @summary Update zone
|
|
694
|
+
* @param {UpdateZoneDto} body
|
|
695
|
+
* @param {string} zoneId
|
|
696
|
+
* @param {*} [options] Override http request option.
|
|
697
|
+
* @throws {RequiredError}
|
|
698
|
+
* @memberof ShippingApi
|
|
699
|
+
*/
|
|
700
|
+
public async updateZone(body: UpdateZoneDto, zoneId: string, options?: AxiosRequestConfig) : Promise<AxiosResponse<Zone>> {
|
|
701
|
+
return ShippingApiFp(this.configuration).updateZone(body, zoneId, options).then((request) => request(this.axios, this.basePath));
|
|
702
|
+
}
|
|
703
|
+
}
|