Bump DataTable from 2.3.3 to 2.3.4, TinyMCE 8.0.2 to 8.2.0, Stripe-PHP 17.6.0 to 18.1.0, PHPMailer from 6.10.0 to 7.0.0, chartjs from 4.5.0 to 4.5.1

This commit is contained in:
johnnyq
2025-11-02 16:44:59 -05:00
parent 7ea39eb545
commit f733a27ad7
170 changed files with 2280 additions and 885 deletions

View File

@@ -14,6 +14,7 @@ namespace Stripe\Service;
* @property ApplicationFeeService $applicationFees
* @property Apps\AppsServiceFactory $apps
* @property BalanceService $balance
* @property BalanceSettingsService $balanceSettings
* @property BalanceTransactionService $balanceTransactions
* @property Billing\BillingServiceFactory $billing
* @property BillingPortal\BillingPortalServiceFactory $billingPortal
@@ -42,11 +43,13 @@ namespace Stripe\Service;
* @property InvoiceService $invoices
* @property Issuing\IssuingServiceFactory $issuing
* @property MandateService $mandates
* @property PaymentAttemptRecordService $paymentAttemptRecords
* @property PaymentIntentService $paymentIntents
* @property PaymentLinkService $paymentLinks
* @property PaymentMethodConfigurationService $paymentMethodConfigurations
* @property PaymentMethodDomainService $paymentMethodDomains
* @property PaymentMethodService $paymentMethods
* @property PaymentRecordService $paymentRecords
* @property PayoutService $payouts
* @property PlanService $plans
* @property PriceService $prices
@@ -94,6 +97,7 @@ class CoreServiceFactory extends AbstractServiceFactory
'applicationFees' => ApplicationFeeService::class,
'apps' => Apps\AppsServiceFactory::class,
'balance' => BalanceService::class,
'balanceSettings' => BalanceSettingsService::class,
'balanceTransactions' => BalanceTransactionService::class,
'billing' => Billing\BillingServiceFactory::class,
'billingPortal' => BillingPortal\BillingPortalServiceFactory::class,
@@ -122,11 +126,13 @@ class CoreServiceFactory extends AbstractServiceFactory
'invoices' => InvoiceService::class,
'issuing' => Issuing\IssuingServiceFactory::class,
'mandates' => MandateService::class,
'paymentAttemptRecords' => PaymentAttemptRecordService::class,
'paymentIntents' => PaymentIntentService::class,
'paymentLinks' => PaymentLinkService::class,
'paymentMethodConfigurations' => PaymentMethodConfigurationService::class,
'paymentMethodDomains' => PaymentMethodDomainService::class,
'paymentMethods' => PaymentMethodService::class,
'paymentRecords' => PaymentRecordService::class,
'payouts' => PayoutService::class,
'plans' => PlanService::class,
'prices' => PriceService::class,