@billing-js/react-billing-js
Advanced tools
Comparing version 1.0.86 to 1.0.87
@@ -6,3 +6,3 @@ import React from "react"; | ||
open?: boolean; | ||
maskClassName?: string; | ||
maskClassName?: string | null | undefined; | ||
maskClosable?: boolean; | ||
@@ -9,0 +9,0 @@ visible?: boolean; |
@@ -14,4 +14,3 @@ import "tailwindcss/tailwind.css"; | ||
import getSharedSubscription from "./hooks/SharedSubscription/getSharedSubscription"; | ||
import addSharedSubscriptionUser from "./hooks/SharedSubscription/addSharedSubscriptionUser"; | ||
import removeSharedSubscriptionUser from "./hooks/SharedSubscription/removeSharedSubscriptionUser"; | ||
import updateSharedSubscriptionUsers from "./hooks/SharedSubscription/updateSharedSubscriptionUsers"; | ||
import useAuth from "./hooks/useAuth"; | ||
@@ -21,3 +20,3 @@ import useProducts from "./hooks/useProducts"; | ||
import BillingProvider from "./components/BillingProvider"; | ||
export { BillingProvider, useAuth, useProducts, getProducts, getCustomerSubscriptions, getCustomerPaymentMethods, getCustomerInvoices, addSubscription, cancelSubscription, updateSubscription, attachPaymentMethodToCustomer, detachPaymentMethodFromCustomer, setPaymentMethodAsDefault, applyPromotionCodeToSubscription, getSharedSubscriptionUsers, getSharedSubscription, addSharedSubscriptionUser, removeSharedSubscriptionUser }; | ||
export { BillingProvider, useAuth, useProducts, getProducts, getCustomerSubscriptions, getCustomerPaymentMethods, getCustomerInvoices, addSubscription, cancelSubscription, updateSubscription, attachPaymentMethodToCustomer, detachPaymentMethodFromCustomer, setPaymentMethodAsDefault, applyPromotionCodeToSubscription, getSharedSubscriptionUsers, getSharedSubscription, updateSharedSubscriptionUsers }; | ||
import CustomerPortal from "./components/CustomerPortal"; | ||
@@ -24,0 +23,0 @@ export { CustomerPortal }; |
{ | ||
"name": "@billing-js/react-billing-js", | ||
"version": "1.0.86", | ||
"version": "1.0.87", | ||
"description": "Billing js library", | ||
@@ -5,0 +5,0 @@ "author": "Billing.js", |
@@ -85,7 +85,7 @@ import * as React from "react"; | ||
defaultRecurrence?: RecurrenceTypes; | ||
modal: ModalOptions; | ||
normalizePriceOnRecurrence: NormalizedIntervalType; | ||
signIn: () => void; | ||
onPaymentSuccessful: () => void; | ||
onPaymentError: () => void; | ||
modal?: ModalOptions; | ||
normalizePriceOnRecurrence?: NormalizedIntervalType; | ||
signIn?: () => void; | ||
onPaymentSuccessful?: () => void; | ||
onPaymentError?: () => void; | ||
} | ||
@@ -92,0 +92,0 @@ export interface SelectedPricing extends Stripe.Price { |
Sorry, the diff of this file is too big to display
886103
72
4810