docs/src/components/account/BillingProfile/actions.js

40 lines
905 B
JavaScript

import {
billingCreatePaymentMethod,
billingDeletePaymentMethod,
billingFetchInvoices,
billingFetchPaymentMethods,
billingFetchProduct,
billingFetchProfile,
billingFetchProfileSubscriptions,
billingSetDefaultPaymentMethod,
billingUpdateProfile,
} from 'actions/billing';
import {
accountFetchCurrentUser,
accountFetchUser,
accountFetchUserEmails,
accountSelectNamespace,
} from 'actions/account';
import {
repositoryFetchOwnedNamespaces,
} from 'actions/repository';
export default {
accountFetchCurrentUser,
accountFetchUser,
accountFetchUserEmails,
accountSelectNamespace,
billingCreatePaymentMethod,
billingDeletePaymentMethod,
billingFetchInvoices,
billingFetchPaymentMethods,
billingFetchProduct,
billingFetchProfile,
billingFetchProfileSubscriptions,
billingSetDefaultPaymentMethod,
billingUpdateProfile,
repositoryFetchOwnedNamespaces,
};