@bunnyapp/components 1.8.0-beta.40 → 1.8.0-beta.41

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.
@@ -1,5 +1,6 @@
1
1
  import PriceList from '@/types/PriceList';
2
2
  export declare const CheckoutBarSummarySection_QuoteFragment: import("gql.tada").TadaDocumentNode<{
3
+ accountId: string;
3
4
  quoteChanges: {
4
5
  charges: {
5
6
  id: string | null;
@@ -1,4 +1,6 @@
1
- export declare const usePaymentPlugins: () => {
1
+ export declare const usePaymentPlugins: ({ accountId }?: {
2
+ accountId?: string;
3
+ }) => {
2
4
  paymentPlugins: {
3
5
  enabled: boolean;
4
6
  entities: string[];
@@ -105,7 +105,10 @@ declare const QueryKeyFactory: {
105
105
  priceListId: string;
106
106
  token?: string;
107
107
  }) => string[];
108
- paymentPluginsKey: (token?: string) => string[];
108
+ paymentPluginsKey: ({ token, accountId }?: {
109
+ token?: string;
110
+ accountId?: string;
111
+ }) => string[];
109
112
  subscriptionChargeHistogramsKey: ({ subscriptionId, token, }: {
110
113
  subscriptionId: string;
111
114
  token?: string;