from django.urls import path,re_path
from django.conf import settings
from django.conf.urls.static import static
from panel_apis.views import *



urlpatterns = [
    path('get-content-pages/',getContentPages.as_view(),name='get-content-pages'),
    path('help-support/',HelpSupportUser.as_view(),name='help-support'),
    path('get-faq/',getFaq.as_view(),name='get-faq'),
    path('contact-details/',getContactDetails.as_view(),name='contact-details'),
    path('get-categories/',getCategories.as_view(),name='get-categories'),
    path('get-stones/',getStones.as_view(),name='get-stones'),
    path('get-brands/',getBrands.as_view(),name='get-brands'),
    path('get-services/',getServices.as_view(),name='get-services'),
    path('send-store-request/',storeRequests.as_view(),name='send-store-request'),
    path('get-all-stores/',getAllStores.as_view(),name='get-all-stores'),
    path('search-get-catergories/',searchGetCategories.as_view(),name='search-get-catergories'),
    path('get-store-details/',getStoreDetails.as_view(),name='get-store-details'),
    path('get-category-products/',getCategoryProducts.as_view(),name='get-category-products'),
    path('get-stone-products/',getStoneProducts.as_view(),name='get-stone-products'),
    path('get-product-details/',getProductDetails.as_view(),name='get-product-details'),
    path('search-product/',searchProduct.as_view(),name='search-product'),
    path('add-remove-favourite/',addRemoveFavourite.as_view(),name='add-remove-favourite'),
    path('store-favourite-listing/',storeFavouriteListing.as_view(),name='store-favourite-listing'),
    path('add-to-cart/',addToCart.as_view(),name='add-to-cart'),
    path('get-cart/',getCart.as_view(),name='get-cart'),
    path('remove-cart/',removeCart.as_view(),name='remove-cart'),
    path('checkout-info/',checkoutInfo.as_view(),name='checkout-info'),
    path('add-cutomer-card/',addCustomerCard.as_view(),name='add-customer-cart'),
    path('get-card-list/',getCardList.as_view(),name='get-card-list'),
    path('remove-card/',removeCard.as_view(),name='remove-card'),
    path('set-default-card/',setDefaultCard.as_view(),name="set-default-card"),
    path('place-order/',placeOrder.as_view(),name='place-order'),
    path('order-pay/',orderPay.as_view(),name='order-pay'),
    path('order-pay-moysaar/',orderPayMoysaar.as_view(),name='order-pay-moysaar'),
    path('order-pay-wallet/',orderPayWallet.as_view(),name='order-pay-wallet'),
    path('customer-order-listing/',cutomerOrderListing.as_view(),name='customer-order-listing'),
    path('customer-order-details/',customerOrderDetail.as_view(),name='customer-order-details'),
    path('get-offers/',getOffers.as_view(),name="get-offers"),
    path('get-service-providers/',getServiceProviders.as_view(),name="get-service-providers"),
    path('stone-polishing-request/',stonePolishingRequest.as_view(),name='stone-polishing-request'),
    path('certificate-extraction-request/',extractionRequest.as_view(),name='certificate-extraction-request'),
    path('accessories-maintenance-request/',accessoriesMaintenanceRequest.as_view(),name='accessories-maintenance-request'),
    path('watches-maintenance-request/',watchesMaintenanceRequest.as_view(),name='watches-maintenance-request'),
    path('detailing-accessories-request/',detailingAccessoriesRequest.as_view(),name='detailing-accessories-request'),
    path('gift-arrangement-request/',giftArrangementRequest.as_view(),name='gift-arrangement-request'),
    path('service-applied-list/',serviceAppliedList.as_view(),name='service-applied-list'),
    path('get-services-applied/',servicesAppliedDetails.as_view(),name='get-services-applied'),
    path('filter-offer-section/',filterOfferSection.as_view(),name='filter-offer-section'),
    path('marketing-request/',marketingRequest.as_view(),name='marketing-request/'),
    path('get-customer-notifications/',getCustomerNotifications.as_view(),name='get-customer-notifications'),
    path('clear-customer-notifications/',clearCustomerNotifications.as_view(),name='clear-customer-notifications'),
    path('read-customer-notifications/',readCustomerNotifications.as_view(),name='read-customer-notifications'),
    path('get-vip-store/',getVipStores.as_view(),name='get-vip-stores'),
    path('best-seller-stores',bestSellerStores.as_view(),name='best-seller-stores'),
    # path('get-today-deals/',getTodayDeals.as_view(),name='get-today-deals'),
    path('send-rating-review/',sendRatingReview.as_view(),name='send-rating-review/'),

    # Message Url
    path('get-chat-room-list',getChatRoomList.as_view(),name='get-chat-room-list'),
    path('get-messages-list', getMessagesList.as_view(),name='get-messages-list'),
    path('read-message', readMessage.as_view(),name='read-message'),

    path('add-message',addMessage.as_view(),name='add-message'),
    path('start-chat-room',startChatroom.as_view(),name='start-chat-room'),
    path('contact-us-admin/',contactUsAdmin.as_view(),name='contact-us-admin'),

    #Coupon Url
    path('get-coupon-list/',getCouponList.as_view(),name='get-coupon-list'),
    path('apply-coupon/',applyCoupon.as_view(),name='apply-coupon'),
    path('get-invoice-pdf/',getInvoicePdf.as_view(),name='get-invoice-pdf'),

    path('buyer-wallet-transcation/',buyerWalletTranscation.as_view(),name='buyer-wallet-transcation'),
    path('get-invoice-service-pdf/',getInvoiceServicePdf.as_view(),name='get-invoice-service-pdf'),
    path('order-pay-service/',orderPayService.as_view(),name='order-pay-service'),
    path('order-pay-service-wallet/',orderPayServiceWallet.as_view(),name='order-pay-service-wallet'),

    #ServiceInvoiceCoupone
    path('service-coupon-list/',getCouponListForService.as_view(),name='service-coupon-list'),
    path('apply-service-coupon/',applyServiceCoupon.as_view(),name='apply-service-coupon'),
    path('invoice-service-checkout/',invoiceServiceCheckout.as_view(),name='invoice-service-checkout'),


]

