const API = {
  auth: {
    login: "auth/signin",
    verifyOtp: "auth/verify-otp",
    resendOtp: "auth/resend-otp",
    socialLogin: "auth/social-login",
    logOut: "auth/logout",
    vendoredRegister: "auth/create-vendor",
    creator: "auth/creator-register",
  },
  home: {
    seriesCarousal: "web/content/series-list",
    seriesSlider: "web/content/feature-video-list",
    languageList: "web/content/language",
    countryList: "web/content/country",
    reminder: "reminder",
    recommendations: "recommendations/by-category",
  },
  categories: {
    list: "user/category-list",
    seriesListByCategory: "web/content/series/by-category",
  },
  profile: {
    myList: "interactions/saves",
    watchHistory: "watch-history",
    dailuCheckIn: "coin/user/daily-checkin",
    userCoinSetting: "coin/user/coin-settings",
    transactionHistory: "coin/user/coin-purchase-history",
    episodeUnlockedList: "history",
    autoUnlockList: "auto-unlock/list",
    stopAutoUnlock: "auto-unlock/stop",
    startAutoUnlock: "auto-unlock/start",
    reviews: "reviews",
    reminder: "reminder",
    earlyAccess: "early-access",
    checkWalletBalance: "coin-wallet/check-balance",
    subScriptionList: "subscription/admin/subscription-list",
    unLockEpisode: "unlock",
    coinList: "web/coin-pack",
    // purchaseCoin: "/coin/user/purchase-coins",
    purchaseCoin: "/coin/web/create-checkout-session",
    subscription: "/subscription/create-checkout-session",
    cancelSubscription: "/subscription/cancel",
    deleteAccount: "user/delete/",
    adsense: "user/shop-the-scene",
  },
  seriesEpisode: {
    list: "web/content/series/episode-list",
    // list: "content/episode-list",
    like: "interactions/episode",
    save: "interactions/episode",
    watchHistory: "watch-history",
  },
  video: {
    details: "videos/details-video",
    like: "interactions/video",
    save: "interactions/video",
  },
  search: {
    search: "web/content/series-list",
    globalSearch: "web/content/global-search",
  },
  viewCount: {
    episode: "interactions/episode",
    videos: "interactions/episode",
  },
};
export default API;
